Searched refs:DV (Results 1 - 25 of 35) sorted by relevance

12

/external/clang/lib/StaticAnalyzer/Checkers/
H A DDivZeroChecker.cpp61 Optional<DefinedSVal> DV = Denom.getAs<DefinedSVal>(); local
65 if (!DV)
71 std::tie(stateNotZero, stateZero) = CM.assumeDual(C.getState(), *DV);
79 bool TaintedD = C.getState()->isTainted(*DV);
H A DNonNullParamChecker.cpp96 Optional<DefinedSVal> DV = V.getAs<DefinedSVal>(); local
97 if (!DV)
101 assert(!haveRefTypeParam || DV->getAs<Loc>());
103 if (haveAttrNonNull && !DV->getAs<Loc>()) {
115 DV->getAs<nonloc::CompoundVal>()) {
119 DV = V.getAs<DefinedSVal>();
139 std::tie(stateNotNull, stateNull) = CM.assumeDual(state, *DV);
H A DBoolAssignmentChecker.cpp72 Optional<DefinedSVal> DV = val.getAs<DefinedSVal>();
73 if (!DV)
86 svalBuilder.evalBinOp(state, BO_GE, *DV, zeroVal,
122 svalBuilder.evalBinOp(state, BO_LE, *DV, OneVal,
H A DStreamChecker.cpp344 Optional<DefinedSVal> DV = SV.getAs<DefinedSVal>(); local
345 if (!DV)
350 std::tie(stateNotNull, stateNull) = CM.assumeDual(state, *DV);
/external/llvm/lib/CodeGen/
H A DExecutionDepsFix.cpp181 DomainValue *retain(DomainValue *DV) {
182 if (DV) ++DV->Refs;
183 return DV;
189 void setLiveReg(int rx, DomainValue *DV);
228 /// Release a reference to DV. When the last reference is released,
230 void ExeDepsFix::release(DomainValue *DV) {
231 while (DV) {
232 assert(DV->Refs && "Bad DomainValue");
233 if (--DV
251 DomainValue *DV = DVRef; local
[all...]
H A DLiveDebugVariables.cpp397 DIVariable DV = cast<MDLocalVariable>(Variable); local
399 printExtendedName(OS, DV, dl);
/external/llvm/lib/Analysis/
H A DDivergenceAnalysis.cpp132 DenseSet<const Value *> &DV)
133 : F(F), TTI(TTI), DT(DT), PDT(PDT), DV(DV) {}
156 DenseSet<const Value *> &DV; // Stores all divergent values. member in class:__anon10334::DivergencePropagator
161 DV.clear();
165 DV.insert(&I);
171 DV.insert(&Arg);
194 if (!cast<PHINode>(I)->hasConstantValue() && DV.insert(I).second)
239 if (DV.insert(UserInst).second)
267 if (DV
130 DivergencePropagator(Function &F, TargetTransformInfo &TTI, DominatorTree &DT, PostDominatorTree &PDT, DenseSet<const Value *> &DV) argument
[all...]
H A DDependenceAnalysis.cpp236 DV = CommonLevels ? new DVEntry[CommonLevels] : nullptr;
244 return DV[Level - 1].Direction;
251 return DV[Level - 1].Distance;
260 return DV[Level - 1].Scalar;
268 return DV[Level - 1].PeelFirst;
276 return DV[Level - 1].PeelLast;
283 return DV[Level - 1].Splitable;
1081 Result.DV[Level].Distance = SE->getConstant(Distance);
1084 Result.DV[Level].Direction &= Dependence::DVEntry::LT;
1086 Result.DV[Leve
[all...]
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.cpp463 std::unique_ptr<DIE> DwarfCompileUnit::constructVariableDIE(DbgVariable &DV, argument
465 auto D = constructVariableDIEImpl(DV, Abstract);
466 DV.setDIE(*D);
471 DwarfCompileUnit::constructVariableDIEImpl(const DbgVariable &DV, argument
474 auto VariableDie = make_unique<DIE>(DV.getTag());
477 applyVariableAttributes(DV, *VariableDie);
483 unsigned Offset = DV.getDotDebugLocOffset();
490 if (const MachineInstr *DVInsn = DV.getMInsn()) {
498 addVariableAddress(DV, *VariableDie, Location);
500 addVariableAddress(DV, *VariableDi
534 constructVariableDIE( DbgVariable &DV, const LexicalScope &Scope, DIE *&ObjectPointer) argument
729 addVariableAddress(const DbgVariable &DV, DIE &Die, MachineLocation Location) argument
761 addComplexAddress(const DbgVariable &DV, DIE &Die, dwarf::Attribute Attribute, const MachineLocation &Location) argument
[all...]
H A DDwarfCompileUnit.h61 std::unique_ptr<DIE> constructVariableDIEImpl(const DbgVariable &DV,
138 std::unique_ptr<DIE> constructVariableDIE(DbgVariable &DV,
141 std::unique_ptr<DIE> constructVariableDIE(DbgVariable &DV,
196 void addVariableAddress(const DbgVariable &DV, DIE &Die,
206 void addComplexAddress(const DbgVariable &DV, DIE &Die,
H A DDwarfFile.cpp140 DIVariable DV = Var->getVariable(); local
142 if (unsigned ArgNum = DV->getArg()) {
H A DDwarfDebug.cpp930 for (DIVariable DV : SP->getVariables()) {
931 if (!Processed.insert(InlinedVariable(DV, nullptr)).second)
933 if (LexicalScope *Scope = LScopes.findLexicalScope(DV->getScope())) {
934 ensureAbstractVariableIsCreatedIfScoped(InlinedVariable(DV, nullptr),
938 make_unique<DbgVariable>(DV, nullptr, NoExpr, this));
1219 for (DIVariable DV : SP->getVariables()) {
1220 if (!ProcessedVars.insert(InlinedVariable(DV, nullptr)).second)
1222 ensureAbstractVariableIsCreated(InlinedVariable(DV, nullptr),
1223 DV->getScope());
1477 DIVariable DV local
[all...]
H A DDwarfDebug.h338 void createAbstractVariable(const DIVariable &DV, LexicalScope *Scope);
H A DDwarfUnit.h278 void addBlockByrefAddress(const DbgVariable &DV, DIE &Die,
/external/clang/test/Sema/
H A Dms_class_layout.cpp138 struct DV : BV { struct in inherits:BV
140 struct EV : CV, DV {
463 // CHECK: 0 | struct DV
470 // CHECK: %struct.DV = type { %struct.BV }
473 // CHECK-NEXT: 0 | struct DV (primary base)
486 // CHECK: %struct.EV = type { %struct.DV, %struct.CV.base, i32, %struct.BV }
487 // CHECK: %struct.EV.base = type { %struct.DV, %struct.CV.base }
/external/llvm/lib/IR/
H A DDebugInfo.cpp228 DIVariable DV = dyn_cast<MDLocalVariable>(N); local
229 if (!DV)
232 if (!NodesSeen.insert(DV).second)
234 processScope(DV->getScope());
235 processType(DV->getType().resolve(TypeIdentifierMap));
244 DIVariable DV = dyn_cast<MDLocalVariable>(N); local
245 if (!DV)
248 if (!NodesSeen.insert(DV).second)
250 processScope(DV->getScope());
251 processType(DV
[all...]
/external/llvm/include/llvm/Support/
H A DFormat.h150 FormattedNumber(uint64_t HV, int64_t DV, unsigned W, bool H, bool U, argument
152 : HexValue(HV), DecValue(DV), Width(W), Hex(H), Upper(U),
/external/clang/test/Analysis/
H A Dderived-to-base.cpp48 class DV : virtual public B, public C {}; class in namespace:VirtualBaseClasses
56 DV dv;
133 class DV : virtual public B, virtual public C {}; class in namespace:DynamicMultipleInheritanceUpcast
136 DV d;
/external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfFieldDictionary_autogen.cpp107 SkPdfNativeObject* SkPdfFieldDictionary::DV(SkPdfNativeDoc* doc) { function in class:SkPdfFieldDictionary
108 SkPdfNativeObject* ret = get("DV", "");
116 return get("DV", "") != NULL;
/external/llvm/include/llvm/Analysis/
H A DDependenceAnalysis.h222 ~FullDependence() override { delete[] DV; }
270 DVEntry *DV; member in class:llvm::FullDependence
/external/cblas/testing/
H A Dc_dblat1.f155 DOUBLE PRECISION DTRUE1(5), DTRUE3(5), DTRUE5(8,5,2), DV(8,5,2), local in subroutine:CHECK1
171 DATA DV/0.1D0, 2.0D0, 2.0D0, 2.0D0, 2.0D0, 2.0D0,
208 SX(I) = DV(I,NP1,INCX)
H A Dc_sblat1.f155 REAL DTRUE1(5), DTRUE3(5), DTRUE5(8,5,2), DV(8,5,2), local in subroutine:CHECK1
171 DATA DV/0.1E0, 2.0E0, 2.0E0, 2.0E0, 2.0E0, 2.0E0,
208 SX(I) = DV(I,NP1,INCX)
/external/clang/lib/StaticAnalyzer/Core/
H A DBugReporterVisitors.cpp997 if (Optional<DefinedSVal> DV = V.getAs<DefinedSVal>()) {
998 if (!DV->isZeroConstant() && LVState->isNull(*DV).isConstrainedTrue() &&
1001 llvm::make_unique<SuppressInlineDefensiveChecksVisitor>(*DV,
/external/eigen/blas/testing/
H A Ddblat1.f254 DOUBLE PRECISION DTRUE1(5), DTRUE3(5), DTRUE5(8,5,2), DV(8,5,2), local in subroutine:CHECK1
270 DATA DV/0.1D0, 2.0D0, 2.0D0, 2.0D0, 2.0D0, 2.0D0,
307 SX(I) = DV(I,NP1,INCX)
H A Dsblat1.f254 REAL DTRUE1(5), DTRUE3(5), DTRUE5(8,5,2), DV(8,5,2), local in subroutine:CHECK1
270 DATA DV/0.1E0, 2.0E0, 2.0E0, 2.0E0, 2.0E0, 2.0E0,
307 SX(I) = DV(I,NP1,INCX)

Completed in 644 milliseconds

12