/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 …]
|
D | LiveDebugValues.cpp | 63 bool operator==(const DebugVariable &DV) const { in operator ==() 64 return (Var == DV.Var) && (InlinedAt == DV.InlinedAt); in operator ==()
|
/external/llvm/lib/Analysis/ |
D | DivergenceAnalysis.cpp | 88 PostDominatorTree &PDT, DenseSet<const Value *> &DV) in DivergencePropagator() argument 89 : F(F), TTI(TTI), DT(DT), PDT(PDT), DV(DV) {} in DivergencePropagator() 112 DenseSet<const Value *> &DV; // Stores all divergent values. member in __anon9d6d970a0111::DivergencePropagator 117 DV.clear(); in populateWithSourcesOfDivergence() 121 DV.insert(&I); in populateWithSourcesOfDivergence() 127 DV.insert(&Arg); in populateWithSourcesOfDivergence() 150 if (!cast<PHINode>(I)->hasConstantValue() && DV.insert(&*I).second) in exploreSyncDependency() 195 if (DV.insert(UserInst).second) in findUsersOutsideInfluenceRegion() 235 if (DV.insert(UserInst).second) in exploreDataDependency()
|
D | DependenceAnalysis.cpp | 237 DV = make_unique<DVEntry[]>(CommonLevels); in FullDependence() 245 return DV[Level - 1].Direction; in getDirection() 252 return DV[Level - 1].Distance; in getDistance() 261 return DV[Level - 1].Scalar; in isScalar() 269 return DV[Level - 1].PeelFirst; in isPeelFirst() 277 return DV[Level - 1].PeelLast; in isPeelLast() 284 return DV[Level - 1].Splitable; in isSplitable() 1132 Result.DV[Level].Distance = SE->getConstant(Distance); in strongSIVtest() 1135 Result.DV[Level].Direction &= Dependence::DVEntry::LT; in strongSIVtest() 1137 Result.DV[Level].Direction &= Dependence::DVEntry::GT; in strongSIVtest() [all …]
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | DwarfCompileUnit.cpp | 470 DIE *DwarfCompileUnit::constructVariableDIE(DbgVariable &DV, bool Abstract) { in constructVariableDIE() argument 471 auto D = constructVariableDIEImpl(DV, Abstract); in constructVariableDIE() 472 DV.setDIE(*D); in constructVariableDIE() 476 DIE *DwarfCompileUnit::constructVariableDIEImpl(const DbgVariable &DV, in constructVariableDIEImpl() argument 479 auto VariableDie = DIE::get(DIEValueAllocator, DV.getTag()); in constructVariableDIEImpl() 482 applyVariableAttributes(DV, *VariableDie); in constructVariableDIEImpl() 488 unsigned Offset = DV.getDebugLocListIndex(); in constructVariableDIEImpl() 495 if (const MachineInstr *DVInsn = DV.getMInsn()) { in constructVariableDIEImpl() 503 addVariableAddress(DV, *VariableDie, Location); in constructVariableDIEImpl() 505 addVariableAddress(DV, *VariableDie, MachineLocation(RegOp.getReg())); in constructVariableDIEImpl() [all …]
|
D | DwarfCompileUnit.h | 67 DIE *constructVariableDIEImpl(const DbgVariable &DV, bool Abstract); 148 DIE *constructVariableDIE(DbgVariable &DV, bool Abstract = false); 150 DIE *constructVariableDIE(DbgVariable &DV, const LexicalScope &Scope, 204 void addVariableAddress(const DbgVariable &DV, DIE &Die, 214 void addComplexAddress(const DbgVariable &DV, DIE &Die,
|
D | DwarfFile.cpp | 140 const DILocalVariable *DV = Var->getVariable(); in addScopeVariable() local 142 if (unsigned ArgNum = DV->getArg()) { in addScopeVariable()
|
D | DwarfDebug.cpp | 962 for (const DILocalVariable *DV : SP->getVariables()) { in collectVariableInfo() local 963 if (Processed.insert(InlinedVariable(DV, nullptr)).second) in collectVariableInfo() 964 if (LexicalScope *Scope = LScopes.findLexicalScope(DV->getScope())) in collectVariableInfo() 965 createConcreteVariable(*Scope, InlinedVariable(DV, nullptr)); in collectVariableInfo() 1240 for (const DILocalVariable *DV : SP->getVariables()) { in endFunction() local 1241 if (!ProcessedVars.insert(InlinedVariable(DV, nullptr)).second) in endFunction() 1243 ensureAbstractVariableIsCreated(InlinedVariable(DV, nullptr), in endFunction() 1244 DV->getScope()); in endFunction()
|
D | DwarfUnit.h | 278 void addBlockByrefAddress(const DbgVariable &DV, DIE &Die,
|
D | DwarfDebug.h | 339 void createAbstractVariable(const DILocalVariable *DV, LexicalScope *Scope);
|
/external/llvm/test/CodeGen/ARM/ |
D | fast-isel-vaddd.ll | 6 %union.DV = type { <2 x double> } 16 %Ad = alloca %union.DV, align 16 17 %tmp32 = getelementptr inbounds %union.DV, %union.DV* %Ad, i32 0, i32 0 29 call fastcc void @printDV(%union.DV* %Ad) 33 declare hidden fastcc void @printDV(%union.DV* nocapture readonly)
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | NonNullParamChecker.cpp | 97 Optional<DefinedSVal> DV = V.getAs<DefinedSVal>(); in checkPreCall() local 98 if (!DV) in checkPreCall() 102 assert(!haveRefTypeParam || DV->getAs<Loc>()); in checkPreCall() 104 if (haveAttrNonNull && !DV->getAs<Loc>()) { in checkPreCall() 116 DV->getAs<nonloc::CompoundVal>()) { in checkPreCall() 120 DV = V.getAs<DefinedSVal>(); in checkPreCall() 140 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 | 343 Optional<DefinedSVal> DV = SV.getAs<DefinedSVal>(); in CheckNullStream() local 344 if (!DV) in CheckNullStream() 349 std::tie(stateNotNull, stateNull) = CM.assumeDual(state, *DV); in CheckNullStream()
|
/external/llvm/lib/IR/ |
D | DebugInfo.cpp | 219 auto *DV = dyn_cast<DILocalVariable>(N); in processDeclare() local 220 if (!DV) in processDeclare() 223 if (!NodesSeen.insert(DV).second) in processDeclare() 225 processScope(DV->getScope()); in processDeclare() 226 processType(DV->getType().resolve(TypeIdentifierMap)); in processDeclare() 235 auto *DV = dyn_cast<DILocalVariable>(N); in processValue() local 236 if (!DV) in processValue() 239 if (!NodesSeen.insert(DV).second) in processValue() 241 processScope(DV->getScope()); in processValue() 242 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 | 152 FormattedNumber(uint64_t HV, int64_t DV, unsigned W, bool H, bool U, in FormattedNumber() argument 154 : 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/llvm/include/llvm/Analysis/ |
D | DependenceAnalysis.h | 228 DV(std::move(RHS.DV)) {} in FullDependence() 276 std::unique_ptr<DVEntry[]> DV; variable
|
/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/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()
|