Searched refs:CallIndex (Results 1 – 7 of 7) sorted by relevance
/external/clang/lib/AST/ |
D | APValue.cpp | 31 unsigned CallIndex; member 581 return ((const LV*)(const char*)Data.buffer)->CallIndex; in getLValueCallIndex() 585 unsigned CallIndex) { in setLValue() argument 591 LVal.CallIndex = CallIndex; in setLValue() 597 unsigned CallIndex) { in setLValue() argument 603 LVal.CallIndex = CallIndex; in setLValue()
|
D | ExprConstant.cpp | 575 CallStackFrame *getCallFrame(unsigned CallIndex) { in getCallFrame() 576 assert(CallIndex && "no call index in getCallFrame"); in getCallFrame() 580 while (Frame->Index > CallIndex) in getCallFrame() 582 return (Frame->Index == CallIndex) ? Frame : nullptr; in getCallFrame() 1072 unsigned CallIndex : 31; member 1078 unsigned getLValueCallIndex() const { return CallIndex; } in getLValueCallIndex() 1084 V = APValue(Base, Offset, APValue::NoLValuePath(), CallIndex); in moveInto() 1087 Designator.IsOnePastTheEnd, CallIndex); in moveInto() 1094 CallIndex = V.getLValueCallIndex(); in setFrom() 1102 CallIndex = I; in set() [all …]
|
/external/clang/include/clang/AST/ |
D | APValue.h | 138 APValue(LValueBase B, const CharUnits &O, NoLValuePath N, unsigned CallIndex) in APValue() argument 140 MakeLValue(); setLValue(B, O, N, CallIndex); in APValue() 143 bool OnePastTheEnd, unsigned CallIndex) in APValue() argument 145 MakeLValue(); setLValue(B, O, Path, OnePastTheEnd, CallIndex); in APValue() 377 unsigned CallIndex); 380 unsigned CallIndex);
|
/external/llvm-project/clang/lib/AST/ |
D | APValue.cpp | 110 : Local.CallIndex; in getCallIndex() 131 ID.AddInteger(Local.CallIndex); in Profile() 142 return LHS.Local.CallIndex == RHS.Local.CallIndex && in operator ==()
|
D | ExprConstant.cpp | 492 CallRef() : OrigCallee(), CallIndex(0), Version() {} in CallRef() 493 CallRef(const FunctionDecl *Callee, unsigned CallIndex, unsigned Version) in CallRef() 494 : OrigCallee(Callee), CallIndex(CallIndex), Version(Version) {} in CallRef() 511 unsigned CallIndex; member 1005 getCallFrameAndDepth(unsigned CallIndex) { in getCallFrameAndDepth() argument 1006 assert(CallIndex && "no call index in getCallFrameAndDepth"); in getCallFrameAndDepth() 1011 while (Frame->Index > CallIndex) { in getCallFrameAndDepth() 1015 if (Frame->Index == CallIndex) in getCallFrameAndDepth() 1041 CallStackFrame *Frame = getCallFrameAndDepth(Call.CallIndex).first; in getParamSlot() 1858 assert(Args.CallIndex == Index && "creating parameter in wrong frame"); in createParam() [all …]
|
/external/llvm-project/clang/include/clang/AST/ |
D | APValue.h | 188 unsigned CallIndex, Version;
|
/external/llvm-project/clang/lib/Serialization/ |
D | ASTReader.cpp | 9051 unsigned CallIndex = asImpl().readUInt32(); in readAPValue() local 9054 Base = APValue::LValueBase(asImpl().readExpr(), CallIndex, Version); in readAPValue() 9058 CallIndex, Version); in readAPValue()
|