/external/llvm/lib/CodeGen/ |
D | ExecutionDepsFix.cpp | 181 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/ |
D | DivergenceAnalysis.cpp | 132 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()
|
D | DependenceAnalysis.cpp | 236 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/ |
D | DwarfCompileUnit.cpp | 463 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 …]
|
D | DwarfCompileUnit.h | 61 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,
|
D | DwarfFile.cpp | 140 DIVariable DV = Var->getVariable(); in addScopeVariable() local 142 if (unsigned ArgNum = DV->getArg()) { in addScopeVariable()
|
D | DwarfDebug.cpp | 930 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 …]
|
D | DwarfUnit.h | 278 void addBlockByrefAddress(const DbgVariable &DV, DIE &Die,
|
D | DwarfDebug.h | 338 void createAbstractVariable(const DIVariable &DV, LexicalScope *Scope);
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | NonNullParamChecker.cpp | 96 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()
|
D | DivZeroChecker.cpp | 61 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()
|
D | BoolAssignmentChecker.cpp | 72 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()
|
D | StreamChecker.cpp | 344 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/ |
D | DebugInfo.cpp | 228 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/ |
D | ms_class_layout.cpp | 138 struct DV : BV { struct 140 struct EV : CV, DV {
|
/external/clang/test/Analysis/ |
D | derived-to-base.cpp | 48 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/ |
D | Format.h | 150 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/ |
D | wired.html.err | 161 <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/ |
D | c_dblat1.f | 155 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)
|
D | c_sblat1.f | 155 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/ |
D | DependenceAnalysis.h | 222 ~FullDependence() override { delete[] DV; } in ~FullDependence() 270 DVEntry *DV; variable
|
/external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/ |
D | SkPdfFieldDictionary_autogen.cpp | 107 SkPdfNativeObject* SkPdfFieldDictionary::DV(SkPdfNativeDoc* doc) { in DV() function in SkPdfFieldDictionary
|
/external/eigen/blas/testing/ |
D | dblat1.f | 254 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/ |
D | BugReporterVisitors.cpp | 997 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/ |
D | et.txt | 82 CD{"Kongo DV"}
|