Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DInterp.h302 bool Add(InterpState &S, CodePtr OpPC) { in Add()
320 bool Sub(InterpState &S, CodePtr OpPC) { in Sub()
338 bool Mul(InterpState &S, CodePtr OpPC) { in Mul()
409 bool Rem(InterpState &S, CodePtr OpPC) { in Rem()
429 bool Div(InterpState &S, CodePtr OpPC) { in Div()
783 bool EQ(InterpState &S, CodePtr OpPC) { in EQ()
814 bool NE(InterpState &S, CodePtr OpPC) { in NE()
821 bool LT(InterpState &S, CodePtr OpPC) { in LT()
828 bool LE(InterpState &S, CodePtr OpPC) { in LE()
836 bool GT(InterpState &S, CodePtr OpPC) { in GT()
[all …]
H A DInterp.cpp56 static void diagnoseNonConstVariable(InterpState &S, CodePtr OpPC, in diagnoseNonConstVariable()
148 void cleanupAfterFunctionCall(InterpState &S, CodePtr OpPC) { in cleanupAfterFunctionCall()
198 bool CheckArray(InterpState &S, CodePtr OpPC, const Pointer &Ptr) { in CheckArray()
206 bool CheckLive(InterpState &S, CodePtr OpPC, const Pointer &Ptr, in CheckLive()
278 bool CheckNull(InterpState &S, CodePtr OpPC, const Pointer &Ptr, in CheckNull()
287 bool CheckRange(InterpState &S, CodePtr OpPC, const Pointer &Ptr, in CheckRange()
296 bool CheckRange(InterpState &S, CodePtr OpPC, const Pointer &Ptr, in CheckRange()
359 bool CheckLoad(InterpState &S, CodePtr OpPC, const Pointer &Ptr) { in CheckLoad()
463 bool CheckCallDepth(InterpState &S, CodePtr OpPC) { in CheckCallDepth()
501 bool CheckPotentialReinterpretCast(InterpState &S, CodePtr OpPC, in CheckPotentialReinterpretCast()
[all …]
H A DInterpBuiltin.cpp185 static bool interp__builtin_strcmp(InterpState &S, CodePtr OpPC, in interp__builtin_strcmp()
224 static bool interp__builtin_strlen(InterpState &S, CodePtr OpPC, in interp__builtin_strlen()
255 static bool interp__builtin_nan(InterpState &S, CodePtr OpPC, in interp__builtin_nan()
316 static bool interp__builtin_inf(InterpState &S, CodePtr OpPC, in interp__builtin_inf()
338 static bool interp__builtin_fmin(InterpState &S, CodePtr OpPC, in interp__builtin_fmin()
357 static bool interp__builtin_fmax(InterpState &S, CodePtr OpPC, in interp__builtin_fmax()
380 static bool interp__builtin_isnan(InterpState &S, CodePtr OpPC, in interp__builtin_isnan()
397 static bool interp__builtin_isinf(InterpState &S, CodePtr OpPC, in interp__builtin_isinf()
502 static bool interp__builtin_fabs(InterpState &S, CodePtr OpPC, in interp__builtin_fabs()
607 static bool interp__builtin_ffs(InterpState &S, CodePtr OpPC, in interp__builtin_ffs()
[all …]
H A DDisasm.cpp25 template <typename T> inline T ReadArg(Program &P, CodePtr &OpPC) { in ReadArg()
34 template <> inline Floating ReadArg<Floating>(Program &P, CodePtr &OpPC) { in ReadArg()
H A DEvalEmitter.h101 CodePtr OpPC; variable