Home
last modified time | relevance | path

Searched defs:OpPC (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/
H A DInterp.h165 static bool handleOverflow(InterpState &S, CodePtr OpPC, const T &SrcValue) { in handleOverflow()
181 bool CheckShift(InterpState &S, CodePtr OpPC, const LT &LHS, const RT &RHS, in CheckShift()
228 bool CheckDivRem(InterpState &S, CodePtr OpPC, const T &LHS, const T &RHS) { in CheckDivRem()
257 bool CheckArraySize(InterpState &S, CodePtr OpPC, SizeT *NumElements, in CheckArraySize()
369 bool AddSubMulHelper(InterpState &S, CodePtr OpPC, unsigned Bits, const T &LHS, in AddSubMulHelper()
410 bool Add(InterpState &S, CodePtr OpPC) { in Add()
425 inline bool Addf(InterpState &S, CodePtr OpPC, uint32_t FPOI) { in Addf()
437 bool Sub(InterpState &S, CodePtr OpPC) { in Sub()
445 inline bool Subf(InterpState &S, CodePtr OpPC, uint32_t FPOI) { in Subf()
457 bool Mul(InterpState &S, CodePtr OpPC) { in Mul()
[all …]
H A DInterp.cpp76 CodePtr OpPC = PC; in BCP() local
128 static void diagnoseMissingInitializer(InterpState &S, CodePtr OpPC, in diagnoseMissingInitializer()
137 static bool diagnoseUnknownDecl(InterpState &S, CodePtr OpPC, in diagnoseUnknownDecl()
173 static void diagnoseNonConstVariable(InterpState &S, CodePtr OpPC, in diagnoseNonConstVariable()
210 static bool CheckTemporary(InterpState &S, CodePtr OpPC, const Pointer &Ptr, in CheckTemporary()
235 static bool CheckGlobal(InterpState &S, CodePtr OpPC, const Pointer &Ptr) { in CheckGlobal()
256 void cleanupAfterFunctionCall(InterpState &S, CodePtr OpPC, in cleanupAfterFunctionCall()
323 bool CheckActive(InterpState &S, CodePtr OpPC, const Pointer &Ptr, in CheckActive()
385 bool CheckExtern(InterpState &S, CodePtr OpPC, const Pointer &Ptr) { in CheckExtern()
402 bool CheckArray(InterpState &S, CodePtr OpPC, const Pointer &Ptr) { in CheckArray()
[all …]
H A DInterpBuiltin.cpp131 static void diagnoseNonConstexprBuiltin(InterpState &S, CodePtr OpPC, in diagnoseNonConstexprBuiltin()
145 static bool interp__builtin_is_constant_evaluated(InterpState &S, CodePtr OpPC, in interp__builtin_is_constant_evaluated()
176 static bool interp__builtin_assume(InterpState &S, CodePtr OpPC, in interp__builtin_assume()
184 static bool interp__builtin_strcmp(InterpState &S, CodePtr OpPC, in interp__builtin_strcmp()
266 static bool interp__builtin_strlen(InterpState &S, CodePtr OpPC, in interp__builtin_strlen()
321 static bool interp__builtin_nan(InterpState &S, CodePtr OpPC, in interp__builtin_nan()
383 static bool interp__builtin_inf(InterpState &S, CodePtr OpPC, in interp__builtin_inf()
396 static bool interp__builtin_copysign(InterpState &S, CodePtr OpPC, in interp__builtin_copysign()
410 static bool interp__builtin_fmin(InterpState &S, CodePtr OpPC, in interp__builtin_fmin()
424 static bool interp__builtin_fmax(InterpState &S, CodePtr OpPC, in interp__builtin_fmax()
[all …]
H A DInterpBuiltinBitCast.cpp173 static bool CheckBitcastType(InterpState &S, CodePtr OpPC, QualType T, in CheckBitcastType()
326 bool clang::interp::DoBitCast(InterpState &S, CodePtr OpPC, const Pointer &Ptr, in DoBitCast()
359 bool clang::interp::DoBitCastPtr(InterpState &S, CodePtr OpPC, in DoBitCastPtr()
367 bool clang::interp::DoBitCastPtr(InterpState &S, CodePtr OpPC, in DoBitCastPtr()
471 bool clang::interp::DoMemcpy(InterpState &S, CodePtr OpPC, in DoMemcpy()
H A DDisasm.cpp36 inline static std::string printArg(Program &P, CodePtr &OpPC) { in printArg()
52 template <> inline std::string printArg<Floating>(Program &P, CodePtr &OpPC) { in printArg()
71 inline std::string printArg<IntegralAP<false>>(Program &P, CodePtr &OpPC) { in printArg()
89 inline std::string printArg<IntegralAP<true>>(Program &P, CodePtr &OpPC) { in printArg()
106 template <> inline std::string printArg<FixedPoint>(Program &P, CodePtr &OpPC) { in printArg()
H A DEvalEmitter.h125 CodePtr OpPC; variable