/external/clang/lib/AST/ |
D | APValue.cpp | 35 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()
|
D | StmtCXX.cpp | 81 Decl *LV = cast<DeclStmt>(getLoopVarStmt())->getSingleDecl(); in getLoopVariable() local
|
D | Decl.cpp | 245 LinkageInfo LV; in getLVForTemplateParameterList() local 318 LinkageInfo LV; in getLVForTemplateArgumentList() local 385 mergeTemplateLV(LinkageInfo &LV, const FunctionDecl *fn, in mergeTemplateLV() 462 static void mergeTemplateLV(LinkageInfo &LV, in mergeTemplateLV() 514 static void mergeTemplateLV(LinkageInfo &LV, in mergeTemplateLV() 654 LinkageInfo LV; in getLVForNamespaceScopeDecl() local 868 LinkageInfo LV; in getLVForClassMember() local 1144 LinkageInfo LV; in getLVForLocalDecl() local 1163 LinkageInfo LV; in getLVForLocalDecl() local 1193 LinkageInfo LV; in getLVForLocalDecl() local [all …]
|
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/ |
D | ProcessImplicitDefs.h | 31 LiveVariables *LV; variable
|
/external/clang/lib/CodeGen/ |
D | CGExpr.cpp | 190 LValue LV = MakeAddrLValue(Location, E->getType()); in EmitAnyExprToMem() local 463 LValue LV = MakeAddrLValue(Object, E->getType(), in EmitMaterializeTemporaryExpr() local 487 LValue LV = EmitLValue(E); in EmitReferenceBindingToExpr() local 772 EmitComplexPrePostIncDec(const UnaryOperator *E, LValue LV, in EmitComplexPrePostIncDec() 890 LValue LV = EmitLValue(UO->getSubExpr()); in EmitPointerWithAlignment() local 944 LValue LV; in EmitCheckedLValue() local 1440 RValue CodeGenFunction::EmitLoadOfLValue(LValue LV, SourceLocation Loc) { in EmitLoadOfLValue() 1486 RValue CodeGenFunction::EmitLoadOfBitfieldLValue(LValue LV) { in EmitLoadOfBitfieldLValue() 1517 RValue CodeGenFunction::EmitLoadOfExtVectorElementLValue(LValue LV) { in EmitLoadOfExtVectorElementLValue() 1546 Address CodeGenFunction::EmitExtVectorElementLValue(LValue LV) { in EmitExtVectorElementLValue() [all …]
|
D | CGExprAgg.cpp | 189 LValue LV = CGF.EmitPseudoObjectLValue(E); in VisitPseudoObjectExpr() local 217 LValue LV = CGF.EmitLValue(E); in EmitAggLoadOfLValue() local 582 LValue LV = CGF.EmitCheckedLValue(E->getSubExpr(), in VisitCastExpr() local 791 LValue LV = CGF.EmitPointerToDataMemberBinaryExpr(E); in VisitPointerToDataMemberBinaryOperator() local 1063 AggExprEmitter::EmitInitializationToLValue(Expr *E, LValue LV) { in EmitInitializationToLValue() 1267 LValue LV = CGF.EmitLValueForFieldInitialization(DestLV, field); in VisitInitListExpr() local 1452 LValue LV = MakeAddrLValue(Temp, E->getType()); in EmitAggExprToLValue() local
|
D | CGExprScalar.cpp | 92 Value *EmitLoadOfLValue(LValue LV, SourceLocation Loc) { in EmitLoadOfLValue() 297 LValue LV = CGF.EmitObjCIsaExpr(E); in VisitObjCIsaExpr() local 336 LValue LV = EmitLValue(E->getSubExpr()); in VisitUnaryPostDec() local 340 LValue LV = EmitLValue(E->getSubExpr()); in VisitUnaryPostInc() local 344 LValue LV = EmitLValue(E->getSubExpr()); in VisitUnaryPreDec() local 348 LValue LV = EmitLValue(E->getSubExpr()); in VisitUnaryPreInc() local 1369 LValue LV = CGF.MakeAddrLValue(Addr, DestTy); in VisitCastExpr() local 1626 ScalarExprEmitter::EmitScalarPrePostIncDec(const UnaryOperator *E, LValue LV, in EmitScalarPrePostIncDec() 3474 EmitScalarPrePostIncDec(const UnaryOperator *E, LValue LV, in EmitScalarPrePostIncDec()
|
D | CGExprComplex.cpp | 167 LValue LV = CGF.EmitLValue(E->getSubExpr()); in VisitPrePostIncDec() local 897 LValue LV = EmitCompoundAssignLValue(E, Func, Val); in EmitCompoundAssign() local 932 LValue LV = EmitBinAssignLValue(E, Val); in VisitBinAssign() local
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
D | PHIElimination.cpp | 117 if (LiveVariables *LV = getAnalysisIfAvailable<LiveVariables>()) { in runOnMachineFunction() local 236 LiveVariables *LV = getAnalysisIfAvailable<LiveVariables>(); in LowerAtomicPHINode() local 407 LiveVariables &LV, in SplitPHIEdges()
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | PointerSubChecker.cpp | 44 SVal LV = state->getSVal(B->getLHS(), LCtx); in checkPreStmt() local
|
D | NullabilityChecker.cpp | 362 SVal LV, QualType T) { in checkValueAtLValForInvariantViolation() 389 SVal LV = State->getLValue(ParamDecl, LocCtxt); in checkParamsForPreconditionViolation() local 421 SVal LV = State->getLValue(IvarDecl, SelfVal); in checkSelfIvarsForInvariantViolation() local
|
/external/llvm/lib/Target/Hexagon/ |
D | RDFDeadCode.h | 55 Liveness LV; member
|
D | HexagonRDFOpt.cpp | 314 Liveness LV(*MRI, G); in runOnMachineFunction() local
|
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/ |
D | SparsePropagation.h | 84 virtual Constant *GetConstant(LatticeVal LV, Value *Val, SparseSolver &SS) { in GetConstant()
|
/external/llvm/include/llvm/Analysis/ |
D | SparsePropagation.h | 83 virtual Constant *GetConstant(LatticeVal LV, Value *Val, SparseSolver &SS) { in GetConstant()
|
/external/llvm/lib/Transforms/Scalar/ |
D | SCCP.cpp | 390 LatticeVal &LV = I.first->second; in getValueState() local 416 LatticeVal &LV = I.first->second; in getStructValueState() local 1266 LatticeVal &LV = getStructValueState(&I, i); in ResolvedUndefsIn() local 1273 LatticeVal &LV = getValueState(&I); in ResolvedUndefsIn() local 1518 [](LatticeVal &LV) { return LV.isOverdefined(); })) in tryToReplaceWithConstant()
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | SValBuilder.cpp | 375 if (Optional<Loc> LV = lhs.getAs<Loc>()) { in evalBinOp() local 512 if (Optional<nonloc::LocAsInteger> LV = val.getAs<nonloc::LocAsInteger>()) { in evalCast() local
|
D | SVals.cpp | 179 if (Optional<loc::ConcreteInt> LV = getAs<loc::ConcreteInt>()) in isConstant() local
|
D | SimpleConstraintManager.cpp | 72 if (Optional<Loc> LV = Cond.getAs<Loc>()) { in assume() local
|
/external/llvm/lib/Analysis/ |
D | SparsePropagation.cpp | 57 LatticeVal LV; in getOrInitValueState() local
|
/external/swiftshader/third_party/LLVM/lib/Analysis/ |
D | SparsePropagation.cpp | 56 LatticeVal LV; in getOrInitValueState() local
|
/external/clang/lib/Analysis/ |
D | LiveVariables.cpp | 195 LiveVariablesImpl &LV; member in __anonfd39d0770411::TransferFunctions 498 LiveVariablesImpl *LV = new LiveVariablesImpl(AC, killAtAssign); in computeLiveness() local
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
D | ProgramState.h | 688 inline ProgramStateRef ProgramState::bindLoc(SVal LV, SVal V) const { in bindLoc() 747 inline SVal ProgramState::getRawSVal(Loc LV, QualType T) const { in getRawSVal()
|
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/ |
D | SCCP.cpp | 383 LatticeVal &LV = I.first->second; in getValueState() local 409 LatticeVal &LV = I.first->second; in getStructValueState() local 1452 LatticeVal &LV = getStructValueState(I, i); in ResolvedUndefsIn() local 1459 LatticeVal &LV = getValueState(I); in ResolvedUndefsIn() local
|
/external/llvm/lib/CodeGen/ |
D | PHIElimination.cpp | 56 LiveVariables *LV; member in __anone9c59ccf0111::PHIElimination
|