Home
last modified time | relevance | path

Searched refs:DV (Results 1 – 25 of 57) sorted by relevance

123

/external/llvm/lib/CodeGen/
DExecutionDepsFix.cpp181 DomainValue *retain(DomainValue *DV) { in retain() argument
182 if (DV) ++DV->Refs; in retain()
183 return DV; in retain()
189 void setLiveReg(int rx, DomainValue *DV);
230 void ExeDepsFix::release(DomainValue *DV) { in release() argument
231 while (DV) { in release()
232 assert(DV->Refs && "Bad DomainValue"); in release()
233 if (--DV->Refs) in release()
237 if (DV->AvailableDomains && !DV->isCollapsed()) in release()
238 collapse(DV, DV->getFirstDomain()); in release()
[all …]
/external/llvm/lib/Analysis/
DDivergenceAnalysis.cpp132 DenseSet<const Value *> &DV) in DivergencePropagator() argument
133 : F(F), TTI(TTI), DT(DT), PDT(PDT), DV(DV) {} in DivergencePropagator()
156 DenseSet<const Value *> &DV; // Stores all divergent values. member in __anona8d582c50211::DivergencePropagator
161 DV.clear(); in populateWithSourcesOfDivergence()
165 DV.insert(&I); in populateWithSourcesOfDivergence()
171 DV.insert(&Arg); in populateWithSourcesOfDivergence()
194 if (!cast<PHINode>(I)->hasConstantValue() && DV.insert(I).second) in exploreSyncDependency()
239 if (DV.insert(UserInst).second) in findUsersOutsideInfluenceRegion()
267 if (DV.insert(UserInst).second) in exploreDataDependency()
DDependenceAnalysis.cpp236 DV = CommonLevels ? new DVEntry[CommonLevels] : nullptr; in FullDependence()
244 return DV[Level - 1].Direction; in getDirection()
251 return DV[Level - 1].Distance; in getDistance()
260 return DV[Level - 1].Scalar; in isScalar()
268 return DV[Level - 1].PeelFirst; in isPeelFirst()
276 return DV[Level - 1].PeelLast; in isPeelLast()
283 return DV[Level - 1].Splitable; in isSplitable()
1081 Result.DV[Level].Distance = SE->getConstant(Distance); in strongSIVtest()
1084 Result.DV[Level].Direction &= Dependence::DVEntry::LT; in strongSIVtest()
1086 Result.DV[Level].Direction &= Dependence::DVEntry::GT; in strongSIVtest()
[all …]
/external/llvm/lib/CodeGen/AsmPrinter/
DDwarfCompileUnit.cpp463 std::unique_ptr<DIE> DwarfCompileUnit::constructVariableDIE(DbgVariable &DV, in constructVariableDIE() argument
465 auto D = constructVariableDIEImpl(DV, Abstract); in constructVariableDIE()
466 DV.setDIE(*D); in constructVariableDIE()
471 DwarfCompileUnit::constructVariableDIEImpl(const DbgVariable &DV, in constructVariableDIEImpl() argument
474 auto VariableDie = make_unique<DIE>(DV.getTag()); in constructVariableDIEImpl()
477 applyVariableAttributes(DV, *VariableDie); in constructVariableDIEImpl()
483 unsigned Offset = DV.getDotDebugLocOffset(); in constructVariableDIEImpl()
490 if (const MachineInstr *DVInsn = DV.getMInsn()) { in constructVariableDIEImpl()
498 addVariableAddress(DV, *VariableDie, Location); in constructVariableDIEImpl()
500 addVariableAddress(DV, *VariableDie, MachineLocation(RegOp.getReg())); in constructVariableDIEImpl()
[all …]
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,
DDwarfFile.cpp140 DIVariable DV = Var->getVariable(); in addScopeVariable() local
142 if (unsigned ArgNum = DV->getArg()) { in addScopeVariable()
DDwarfDebug.cpp930 for (DIVariable DV : SP->getVariables()) { in collectVariableInfo() local
931 if (!Processed.insert(InlinedVariable(DV, nullptr)).second) in collectVariableInfo()
933 if (LexicalScope *Scope = LScopes.findLexicalScope(DV->getScope())) { in collectVariableInfo()
934 ensureAbstractVariableIsCreatedIfScoped(InlinedVariable(DV, nullptr), in collectVariableInfo()
938 make_unique<DbgVariable>(DV, nullptr, NoExpr, this)); in collectVariableInfo()
1219 for (DIVariable DV : SP->getVariables()) { in endFunction() local
1220 if (!ProcessedVars.insert(InlinedVariable(DV, nullptr)).second) in endFunction()
1222 ensureAbstractVariableIsCreated(InlinedVariable(DV, nullptr), in endFunction()
1223 DV->getScope()); in endFunction()
1477 DIVariable DV = Value.getVariable(); in emitDebugLocValue() local
[all …]
DDwarfUnit.h278 void addBlockByrefAddress(const DbgVariable &DV, DIE &Die,
DDwarfDebug.h338 void createAbstractVariable(const DIVariable &DV, LexicalScope *Scope);
/external/clang/lib/StaticAnalyzer/Checkers/
DNonNullParamChecker.cpp96 Optional<DefinedSVal> DV = V.getAs<DefinedSVal>(); in checkPreCall() local
97 if (!DV) in checkPreCall()
101 assert(!haveRefTypeParam || DV->getAs<Loc>()); in checkPreCall()
103 if (haveAttrNonNull && !DV->getAs<Loc>()) { in checkPreCall()
115 DV->getAs<nonloc::CompoundVal>()) { in checkPreCall()
119 DV = V.getAs<DefinedSVal>(); in checkPreCall()
139 std::tie(stateNotNull, stateNull) = CM.assumeDual(state, *DV); in checkPreCall()
DDivZeroChecker.cpp61 Optional<DefinedSVal> DV = Denom.getAs<DefinedSVal>(); in checkPreStmt() local
65 if (!DV) in checkPreStmt()
71 std::tie(stateNotZero, stateZero) = CM.assumeDual(C.getState(), *DV); in checkPreStmt()
79 bool TaintedD = C.getState()->isTainted(*DV); in checkPreStmt()
DBoolAssignmentChecker.cpp72 Optional<DefinedSVal> DV = val.getAs<DefinedSVal>(); in checkBind() local
73 if (!DV) in checkBind()
86 svalBuilder.evalBinOp(state, BO_GE, *DV, zeroVal, in checkBind()
122 svalBuilder.evalBinOp(state, BO_LE, *DV, OneVal, in checkBind()
DStreamChecker.cpp344 Optional<DefinedSVal> DV = SV.getAs<DefinedSVal>(); in CheckNullStream() local
345 if (!DV) in CheckNullStream()
350 std::tie(stateNotNull, stateNull) = CM.assumeDual(state, *DV); in CheckNullStream()
/external/llvm/lib/IR/
DDebugInfo.cpp228 DIVariable DV = dyn_cast<MDLocalVariable>(N); in processDeclare() local
229 if (!DV) in processDeclare()
232 if (!NodesSeen.insert(DV).second) in processDeclare()
234 processScope(DV->getScope()); in processDeclare()
235 processType(DV->getType().resolve(TypeIdentifierMap)); in processDeclare()
244 DIVariable DV = dyn_cast<MDLocalVariable>(N); in processValue() local
245 if (!DV) in processValue()
248 if (!NodesSeen.insert(DV).second) in processValue()
250 processScope(DV->getScope()); in processValue()
251 processType(DV->getType().resolve(TypeIdentifierMap)); in processValue()
/external/clang/test/Sema/
Dms_class_layout.cpp138 struct DV : BV { struct
140 struct EV : CV, DV {
/external/clang/test/Analysis/
Dderived-to-base.cpp48 class DV : virtual public B, public C {}; class
56 DV dv; in test()
133 class DV : virtual public B, virtual public C {}; class
136 DV d; in testVirtual()
/external/llvm/include/llvm/Support/
DFormat.h150 FormattedNumber(uint64_t HV, int64_t DV, unsigned W, bool H, bool U, in FormattedNumber() argument
152 : HexValue(HV), DecValue(DV), Width(W), Hex(H), Upper(U), in FormattedNumber()
/external/libxml2/result/HTML/
Dwired.html.err161 <option value="http://www.hotbot.com/?SM=MC&DV=0&LG=any&RD=RG&DC=10&DE=2&_v=2&O
164 <option value="http://www.hotbot.com/?SM=MC&DV=0&LG=any&RD=RG&DC=10&DE=2&_v=2&O
167 <option value="http://www.hotbot.com/?SM=MC&DV=0&LG=any&RD=RG&DC=10&DE=2&_v=2&O
170 <option value="http://www.hotbot.com/?SM=MC&DV=0&LG=any&RD=RG&DC=10&DE=2&_v=2&O
173 <option value="http://www.hotbot.com/?SM=MC&DV=0&LG=any&RD=RG&DC=10&DE=2&_v=2&O
176 <option value="http://www.hotbot.com/?SM=MC&DV=0&LG=any&RD=RG&DC=10&DE=2&_v=2&O
179 option value="http://www.hotbot.com/?SM=MC&DV=0&LG=any&RD=RG&DC=10&DE=2&_v=2&OPs
182 lue="http://www.hotbot.com/?SM=MC&DV=0&LG=any&RD=RG&DC=10&DE=2&_v=2&OPs=MDRTP&MT
/external/cblas/testing/
Dc_dblat1.f155 DOUBLE PRECISION DTRUE1(5), DTRUE3(5), DTRUE5(8,5,2), DV(8,5,2), local
171 DATA DV/0.1D0, 2.0D0, 2.0D0, 2.0D0, 2.0D0, 2.0D0,
208 SX(I) = DV(I,NP1,INCX)
Dc_sblat1.f155 REAL DTRUE1(5), DTRUE3(5), DTRUE5(8,5,2), DV(8,5,2), local
171 DATA DV/0.1E0, 2.0E0, 2.0E0, 2.0E0, 2.0E0, 2.0E0,
208 SX(I) = DV(I,NP1,INCX)
/external/llvm/include/llvm/Analysis/
DDependenceAnalysis.h222 ~FullDependence() override { delete[] DV; } in ~FullDependence()
270 DVEntry *DV; variable
/external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
DSkPdfFieldDictionary_autogen.cpp107 SkPdfNativeObject* SkPdfFieldDictionary::DV(SkPdfNativeDoc* doc) { in DV() function in SkPdfFieldDictionary
/external/eigen/blas/testing/
Ddblat1.f254 DOUBLE PRECISION DTRUE1(5), DTRUE3(5), DTRUE5(8,5,2), DV(8,5,2), local
270 DATA DV/0.1D0, 2.0D0, 2.0D0, 2.0D0, 2.0D0, 2.0D0,
307 SX(I) = DV(I,NP1,INCX)
/external/clang/lib/StaticAnalyzer/Core/
DBugReporterVisitors.cpp997 if (Optional<DefinedSVal> DV = V.getAs<DefinedSVal>()) { in trackNullOrUndefValue() local
998 if (!DV->isZeroConstant() && LVState->isNull(*DV).isConstrainedTrue() && in trackNullOrUndefValue()
1001 llvm::make_unique<SuppressInlineDefensiveChecksVisitor>(*DV, in trackNullOrUndefValue()
/external/icu/icu4c/source/data/region/
Det.txt82 CD{"Kongo DV"}

123