Searched refs:pushInteger (Results 1 – 1 of 1) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/ |
H A D | InterpBuiltin.cpp | 74 static void pushInteger(InterpState &S, const APSInt &Val, QualType QT) { in pushInteger() function 91 static void pushInteger(InterpState &S, T Val, QualType QT) { in pushInteger() function 93 pushInteger(S, APSInt(Val, !std::is_signed_v<T>), QT); in pushInteger() 95 pushInteger(S, in pushInteger() 203 pushInteger(S, Result, Call->getType()); in interp__builtin_strcmp() 235 pushInteger(S, Len, Call->getType()); in interp__builtin_strlen() 370 pushInteger(S, Arg.isNan(), Call->getType()); in interp__builtin_isnan() 380 pushInteger(S, Arg.isSignaling(), Call->getType()); in interp__builtin_issignaling() 391 pushInteger(S, IsInf ? (Arg.isNegative() ? -1 : 1) : 0, Call->getType()); in interp__builtin_isinf() 393 pushInteger(S, Arg.isInf(), Call->getType()); in interp__builtin_isinf() [all …]
|