Home
last modified time | relevance | path

Searched defs:LV (Results 1 – 25 of 46) sorted by relevance

12

/external/clang/lib/AST/
DAPValue.cpp35 struct APValue::LV : LVBase { struct in APValue
36 static const unsigned InlinePathSpace =
42 union {
47 LV() { PathLength = (unsigned)-1; } in LV() argument
48 ~LV() { resizePath(0); } in ~LV()
50 void resizePath(unsigned Length) { in resizePath()
60 bool hasPath() const { return PathLength != (unsigned)-1; } in hasPath()
61 bool hasPathPtr() const { return hasPath() && PathLength > InlinePathSpace; } in hasPathPtr()
63 LValuePathEntry *getPath() { return hasPathPtr() ? PathPtr : Path; } in getPath()
64 const LValuePathEntry *getPath() const { in getPath()
DDecl.cpp232 LinkageInfo LV; in getLVForTemplateParameterList() local
306 LinkageInfo LV; in getLVForTemplateArgumentList() local
373 mergeTemplateLV(LinkageInfo &LV, const FunctionDecl *fn, in mergeTemplateLV()
450 static void mergeTemplateLV(LinkageInfo &LV, in mergeTemplateLV()
502 static void mergeTemplateLV(LinkageInfo &LV, in mergeTemplateLV()
635 LinkageInfo LV; in getLVForNamespaceScopeDecl() local
845 LinkageInfo LV; in getLVForClassMember() local
1112 LinkageInfo LV; in getLVForLocalDecl() local
1131 LinkageInfo LV; in getLVForLocalDecl() local
1161 LinkageInfo LV; in getLVForLocalDecl() local
[all …]
DExprConstant.cpp2976 LValue &LV, in HandleMemberPointerAccess()
3058 LValue &LV, in HandleMemberPointerAccess()
5518 LValue LV; in VisitInitListExpr() local
5908 static bool EvaluateBuiltinConstantPForLValue(const LValue &LV) { in EvaluateBuiltinConstantPForLValue()
5944 LValue LV; in EvaluateBuiltinConstantP() local
7217 LValue LV; in VisitCastExpr() local
7263 ComplexValue LV; in VisitUnaryReal() local
7276 ComplexValue LV; in VisitUnaryImag() local
7975 LValue LV; in Evaluate() local
7986 LValue LV; in Evaluate() local
[all …]
DType.cpp2303 LinkageInfo LV = computeLinkageInfo(MPT->getClass()); in computeLinkageInfo() local
2318 LinkageInfo LV = computeLinkageInfo(FPT->getReturnType()); in computeLinkageInfo() local
2352 LinkageInfo LV = computeLinkageInfo(this); in getLinkageAndVisibility() local
/external/clang/lib/CodeGen/
DCGExpr.cpp168 LValue LV = MakeAddrLValue(Location, E->getType()); in EmitAnyExprToMem() local
383 LValue LV = MakeAddrLValue(Object, E->getType()); in EmitMaterializeTemporaryExpr() local
406 LValue LV = EmitLValue(E); in EmitReferenceBindingToExpr() local
675 EmitComplexPrePostIncDec(const UnaryOperator *E, LValue LV, in EmitComplexPrePostIncDec()
752 LValue LV; in EmitCheckedLValue() local
1252 RValue CodeGenFunction::EmitLoadOfLValue(LValue LV, SourceLocation Loc) { in EmitLoadOfLValue()
1293 RValue CodeGenFunction::EmitLoadOfBitfieldLValue(LValue LV) { in EmitLoadOfBitfieldLValue()
1326 RValue CodeGenFunction::EmitLoadOfExtVectorElementLValue(LValue LV) { in EmitLoadOfExtVectorElementLValue()
1357 RValue CodeGenFunction::EmitLoadOfGlobalRegLValue(LValue LV) { in EmitLoadOfGlobalRegLValue()
1642 LValue &LV, in setObjCGCLValueClass()
[all …]
DCGExprAgg.cpp180 LValue LV = CGF.EmitPseudoObjectLValue(E); in VisitPseudoObjectExpr() local
207 LValue LV = CGF.EmitLValue(E); in EmitAggLoadOfLValue() local
568 LValue LV = CGF.EmitCheckedLValue(E->getSubExpr(), in VisitCastExpr() local
772 LValue LV = CGF.EmitPointerToDataMemberBinaryExpr(E); in VisitPointerToDataMemberBinaryOperator() local
1037 AggExprEmitter::EmitInitializationToLValue(Expr *E, LValue LV) { in EmitInitializationToLValue()
1207 LValue LV = CGF.EmitLValueForFieldInitialization(DestLV, field); in VisitInitListExpr() local
1381 LValue LV = MakeAddrLValue(Temp, E->getType()); in EmitAggExprToLValue() local
DCGExprComplex.cpp160 LValue LV = CGF.EmitLValue(E->getSubExpr()); in VisitPrePostIncDec() local
691 LValue LV = EmitCompoundAssignLValue(E, Func, Val); in EmitCompoundAssign() local
726 LValue LV = EmitBinAssignLValue(E, Val); in VisitBinAssign() local
DCGExprScalar.cpp90 Value *EmitLoadOfLValue(LValue LV, SourceLocation Loc) { in EmitLoadOfLValue()
255 LValue LV = CGF.EmitObjCIsaExpr(E); in VisitObjCIsaExpr() local
292 LValue LV = EmitLValue(E->getSubExpr()); in VisitUnaryPostDec() local
296 LValue LV = EmitLValue(E->getSubExpr()); in VisitUnaryPostInc() local
300 LValue LV = EmitLValue(E->getSubExpr()); in VisitUnaryPreDec() local
304 LValue LV = EmitLValue(E->getSubExpr()); in VisitUnaryPreInc() local
1544 ScalarExprEmitter::EmitScalarPrePostIncDec(const UnaryOperator *E, LValue LV, in EmitScalarPrePostIncDec()
3317 EmitScalarPrePostIncDec(const UnaryOperator *E, LValue LV, in EmitScalarPrePostIncDec()
DCGObjCRuntime.cpp100 LValue LV = CGF.MakeNaturalAlignAddrLValue(V, IvarTy); in EmitValueForIvarAtOffset() local
DCGObjC.cpp126 LValue LV = LValue::MakeAddr(Builder.CreateStructGEP(Objects, i), in EmitObjCCollectionLiteral() local
848 LValue LV = EmitLValueForIvar(TypeOfSelfObject(), LoadObjCSelf(), ivar, 0); in generateObjCGetterBody() local
931 LValue LV = EmitLValueForIvar(TypeOfSelfObject(), LoadObjCSelf(), ivar, 0); in generateObjCGetterBody() local
1369 LValue LV = EmitLValueForIvar(TypeOfSelfObject(), in GenerateObjCCtorDtorMethod() local
DCGCall.cpp598 CodeGenFunction::ExpandTypeFromArgs(QualType Ty, LValue LV, in ExpandTypeFromArgs()
608 LValue LV = MakeAddrLValue(EltAddr, EltTy); in ExpandTypeFromArgs() local
1586 LValue LV = MakeAddrLValue(Alloca, Ty, Align); in EmitFunctionProlog() local
2538 LValue LV = MakeAddrLValue(RV.getAggregateAddr(), Ty); in ExpandTypeToArgs() local
DCGStmt.cpp2059 LValue LV = CGF.EmitLValueForFieldInitialization(SlotLV, *CurField); in InitCapturedStruct() local
2148 LValue LV = MakeNaturalAlignAddrLValue(CapturedStmtInfo->getContextValue(), in GenerateCapturedStmtFunction() local
/external/clang/lib/StaticAnalyzer/Checkers/
DPointerArithChecker.cpp41 SVal LV = state->getSVal(B->getLHS(), LCtx); in checkPreStmt() local
DPointerSubChecker.cpp44 SVal LV = state->getSVal(B->getLHS(), LCtx); in checkPreStmt() local
DCallAndMessageChecker.cpp214 if (Optional<nonloc::LazyCompoundVal> LV = in PreVisitProcessArg() local
/external/llvm/include/llvm/Analysis/
DSparsePropagation.h84 virtual Constant *GetConstant(LatticeVal LV, Value *Val, SparseSolver &SS) { in GetConstant()
/external/clang/lib/StaticAnalyzer/Core/
DSValBuilder.cpp342 if (Optional<Loc> LV = lhs.getAs<Loc>()) { in evalBinOp() local
440 if (Optional<nonloc::LocAsInteger> LV = val.getAs<nonloc::LocAsInteger>()) { in evalCast() local
DSimpleConstraintManager.cpp72 if (Optional<Loc> LV = Cond.getAs<Loc>()) { in assume() local
DSVals.cpp179 if (Optional<loc::ConcreteInt> LV = getAs<loc::ConcreteInt>()) in isConstant() local
DExprEngine.cpp145 if (Optional<Loc> LV = V.getAs<Loc>()) { in getInitialState() local
161 if (Optional<Loc> LV = V.getAs<Loc>()) { in getInitialState() local
1567 if (Optional<loc::GotoLabel> LV = V.getAs<loc::GotoLabel>()) { in processIndirectGoto() local
2266 if (Optional<Loc> LV = X.getAs<Loc>()) in VisitGCCAsmStmt() local
/external/llvm/lib/Analysis/
DSparsePropagation.cpp57 LatticeVal LV; in getOrInitValueState() local
/external/llvm/lib/Transforms/Scalar/
DSCCP.cpp373 LatticeVal &LV = I.first->second; in getValueState() local
399 LatticeVal &LV = I.first->second; in getStructValueState() local
1268 LatticeVal &LV = getStructValueState(I, i); in ResolvedUndefsIn() local
1275 LatticeVal &LV = getValueState(I); in ResolvedUndefsIn() local
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DProgramState.h652 inline ProgramStateRef ProgramState::bindLoc(SVal LV, SVal V) const { in bindLoc()
711 inline SVal ProgramState::getRawSVal(Loc LV, QualType T) const { in getRawSVal()
/external/clang/lib/Analysis/
DLiveVariables.cpp196 LiveVariablesImpl &LV; member in __anon16278f4f0411::TransferFunctions
503 LiveVariablesImpl *LV = new LiveVariablesImpl(AC, killAtAssign); in computeLiveness() local
/external/llvm/lib/CodeGen/
DPHIElimination.cpp52 LiveVariables *LV; member in __anonfa0ae0a70111::PHIElimination

12