Home
last modified time | relevance | path

Searched refs:LVal (Results 1 – 3 of 3) sorted by relevance

/external/clang/lib/AST/
DAPValue.cpp533 const LV &LVal = *((const LV*)(const char*)Data); in getLValuePath() local
534 return ArrayRef<LValuePathEntry>(LVal.getPath(), LVal.PathLength); in getLValuePath()
545 LV &LVal = *((LV*)(char*)Data); in setLValue() local
546 LVal.BaseAndIsOnePastTheEnd.setPointer(B); in setLValue()
547 LVal.BaseAndIsOnePastTheEnd.setInt(false); in setLValue()
548 LVal.Offset = O; in setLValue()
549 LVal.CallIndex = CallIndex; in setLValue()
550 LVal.resizePath((unsigned)-1); in setLValue()
557 LV &LVal = *((LV*)(char*)Data); in setLValue() local
558 LVal.BaseAndIsOnePastTheEnd.setPointer(B); in setLValue()
[all …]
DExprConstant.cpp964 QualType Type, const LValue &LVal) { in CheckLValueConstantExpression() argument
967 APValue::LValueBase Base = LVal.getLValueBase(); in CheckLValueConstantExpression()
968 const SubobjectDesignator &Designator = LVal.getLValueDesignator(); in CheckLValueConstantExpression()
987 LVal.getLValueCallIndex() == 0) && in CheckLValueConstantExpression()
1081 LValue LVal; in CheckConstantExpression() local
1082 LVal.setFrom(Info.Ctx, Value); in CheckConstantExpression()
1083 return CheckLValueConstantExpression(Info, DiagLoc, Type, LVal); in CheckConstantExpression()
1090 const ValueDecl *GetLValueBaseDecl(const LValue &LVal) { in GetLValueBaseDecl() argument
1091 return LVal.Base.dyn_cast<const ValueDecl*>(); in GetLValueBaseDecl()
1337 static bool HandleLValueMember(EvalInfo &Info, const Expr *E, LValue &LVal, in HandleLValueMember() argument
[all …]
/external/llvm/lib/Transforms/Scalar/
DLoopStrengthReduce.cpp2313 static bool isCompatibleIVType(Value *LVal, Value *RVal) { in isCompatibleIVType() argument
2314 Type *LType = LVal->getType(); in isCompatibleIVType()