Lines Matching defs:PC
42 static bool Jmp(InterpState &S, CodePtr &PC, int32_t Offset) {
43 PC += Offset;
47 static bool Jt(InterpState &S, CodePtr &PC, int32_t Offset) {
49 PC += Offset;
54 static bool Jf(InterpState &S, CodePtr &PC, int32_t Offset) {
56 PC += Offset;
219 // CallExpr we're look for is at the return PC of the current function, i.e.
939 CodePtr PC = S.Current->getPC();
942 if (!PC)
946 auto Op = PC.read<Opcode>();
947 CodePtr OpPC = PC;