Lines Matching refs:PC
34 static bool Ret(InterpState &S, CodePtr &PC, APValue &Result) { in Ret() argument
43 PC = S.Current->getRetPC(); in Ret()
56 static bool RetVoid(InterpState &S, CodePtr &PC, APValue &Result) { in RetVoid() argument
64 PC = S.Current->getRetPC(); in RetVoid()
82 static bool Jmp(InterpState &S, CodePtr &PC, int32_t Offset) { in Jmp() argument
83 PC += Offset; in Jmp()
87 static bool Jt(InterpState &S, CodePtr &PC, int32_t Offset) { in Jt() argument
89 PC += Offset; in Jt()
94 static bool Jf(InterpState &S, CodePtr &PC, int32_t Offset) { in Jf() argument
96 PC += Offset; in Jf()
483 CodePtr PC = S.Current->getPC(); in Interpret() local
486 if (!PC) in Interpret()
490 auto Op = PC.read<Opcode>(); in Interpret()
491 CodePtr OpPC = PC; in Interpret()