Home
last modified time | relevance | path

Searched refs:DV (Results 1 – 25 of 67) 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 …]
DLiveDebugValues.cpp63 bool operator==(const DebugVariable &DV) const { in operator ==()
64 return (Var == DV.Var) && (InlinedAt == DV.InlinedAt); in operator ==()
/external/llvm/lib/Analysis/
DDivergenceAnalysis.cpp88 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()
DDependenceAnalysis.cpp237 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/
DDwarfCompileUnit.cpp470 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 …]
DDwarfCompileUnit.h67 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,
DDwarfFile.cpp140 const DILocalVariable *DV = Var->getVariable(); in addScopeVariable() local
142 if (unsigned ArgNum = DV->getArg()) { in addScopeVariable()
DDwarfDebug.cpp962 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()
DDwarfUnit.h278 void addBlockByrefAddress(const DbgVariable &DV, DIE &Die,
DDwarfDebug.h339 void createAbstractVariable(const DILocalVariable *DV, LexicalScope *Scope);
/external/llvm/test/CodeGen/ARM/
Dfast-isel-vaddd.ll6 %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/
DNonNullParamChecker.cpp97 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()
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.cpp343 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/
DDebugInfo.cpp219 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/
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.h152 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/
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/llvm/include/llvm/Analysis/
DDependenceAnalysis.h228 DV(std::move(RHS.DV)) {} in FullDependence()
276 std::unique_ptr<DVEntry[]> DV; variable
/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/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()

123