Lines Matching refs:Current

38   assert(S.Current->getFrameOffset() == S.Stk.size() && "Invalid frame");  in Ret()
40 S.Current->popArgs(); in Ret()
42 if (InterpFrame *Caller = S.Current->Caller) { in Ret()
43 PC = S.Current->getRetPC(); in Ret()
44 delete S.Current; in Ret()
45 S.Current = Caller; in Ret()
48 delete S.Current; in Ret()
49 S.Current = nullptr; in Ret()
59 assert(S.Current->getFrameOffset() == S.Stk.size() && "Invalid frame"); in RetVoid()
61 S.Current->popArgs(); in RetVoid()
63 if (InterpFrame *Caller = S.Current->Caller) { in RetVoid()
64 PC = S.Current->getRetPC(); in RetVoid()
65 delete S.Current; in RetVoid()
66 S.Current = Caller; in RetVoid()
68 delete S.Current; in RetVoid()
69 S.Current = nullptr; in RetVoid()
106 const SourceInfo &Loc = S.Current->getSource(OpPC); in CheckInitialized()
138 const SourceInfo &Loc = S.Current->getSource(OpPC); in CheckActive()
156 const SourceInfo &E = S.Current->getSource(OpPC); in CheckTemporary()
172 S.FFDiag(S.Current->getLocation(OpPC), diag::note_constexpr_modify_global); in CheckGlobal()
187 const SourceInfo &Loc = S.Current->getSource(OpPC); in CheckExtern()
197 const SourceInfo &E = S.Current->getSource(OpPC); in CheckArray()
205 const auto &Src = S.Current->getSource(OpPC); in CheckLive()
216 const auto &Src = S.Current->getSource(OpPC); in CheckLive()
236 const SourceInfo &Loc = S.Current->getSource(OpPC); in CheckNull()
245 const SourceInfo &Loc = S.Current->getSource(OpPC); in CheckRange()
254 const SourceInfo &Loc = S.Current->getSource(OpPC); in CheckRange()
266 const SourceInfo &Loc = S.Current->getSource(OpPC); in CheckConst()
277 const SourceInfo &Loc = S.Current->getSource(OpPC); in CheckMutable()
338 const SourceLocation &Loc = S.Current->getLocation(OpPC); in CheckCallable()
345 const SourceLocation &Loc = S.Current->getLocation(OpPC); in CheckCallable()
381 const SourceInfo &Loc = S.Current->getSource(OpPC); in CheckThis()
398 const SourceInfo &E = S.Current->getSource(OpPC); in CheckPure()
436 DiagnoseUninitializedSubobject(S, S.Current->getSource(OpPC), ElemType, in CheckArrayInitialized()
462 DiagnoseUninitializedSubobject(S, S.Current->getSource(OpPC), in CheckFieldsInitialized()
481 const InterpFrame *StartFrame = S.Current; in Interpret()
482 assert(!S.Current->isRoot()); in Interpret()
483 CodePtr PC = S.Current->getPC(); in Interpret()