/external/llvm/unittests/ADT/ |
D | DAGDeltaAlgorithmTest.cpp | 61 std::vector<edge_ty> Deps; in TEST() local 65 Deps.clear(); in TEST() 66 Deps.push_back(std::make_pair(3, 1)); in TEST() 72 EXPECT_EQ(fixed_set(4, 1, 3, 5, 7), FDA.Run(range(20), Deps)); in TEST() 79 Deps.clear(); in TEST() 80 Deps.push_back(std::make_pair(1, 0)); in TEST() 81 Deps.push_back(std::make_pair(2, 0)); in TEST() 82 Deps.push_back(std::make_pair(4, 0)); in TEST() 83 Deps.push_back(std::make_pair(3, 2)); in TEST() 91 EXPECT_EQ(fixed_set(4, 0, 1, 2, 3), FDA2.Run(range(5), Deps)); in TEST() [all …]
|
/external/llvm/lib/Analysis/ |
D | MemDepPrinter.cpp | 41 DepSetMap Deps; member 59 Deps.clear(); in releaseMemory() 109 Deps[Inst].insert(std::make_pair(getInstTypePair(Res), in runOnFunction() 115 DepSet &InstDeps = Deps[Inst]; in runOnFunction() 126 Deps[Inst].insert(std::make_pair(getInstTypePair(0, Unknown), in runOnFunction() 135 Deps[Inst].insert(std::make_pair(getInstTypePair(0, Unknown), in runOnFunction() 148 DepSet &InstDeps = Deps[Inst]; in runOnFunction() 164 DepSetMap::const_iterator DI = Deps.find(Inst); in print() 165 if (DI == Deps.end()) in print()
|
/external/llvm/lib/CodeGen/ |
D | MachineTraceMetrics.cpp | 640 SmallVectorImpl<DataDep> &Deps, in getDataDeps() argument 655 Deps.push_back(DataDep(MRI, Reg, MO.getOperandNo())); in getDataDeps() 664 SmallVectorImpl<DataDep> &Deps, in getPHIDeps() argument 674 Deps.push_back(DataDep(MRI, Reg, i)); in getPHIDeps() 700 SmallVectorImpl<DataDep> &Deps, in updatePhysDepsDownwards() argument 727 Deps.push_back(DataDep(I->MI, I->Op, MO.getOperandNo())); in updatePhysDepsDownwards() 806 SmallVector<DataDep, 8> Deps; in computeInstrDepths() local 836 Deps.clear(); in computeInstrDepths() 838 getPHIDeps(UseMI, Deps, TBI.Pred, MTM.MRI); in computeInstrDepths() 839 else if (getDataDeps(UseMI, Deps, MTM.MRI)) in computeInstrDepths() [all …]
|
D | InlineSpiller.cpp | 119 TinyPtrVector<VNInfo*> Deps; member 331 for (unsigned i = 0, e = SVI.Deps.size(); i != e; ++i) in operator <<() 332 OS << ' ' << SVI.Deps[i]->id << '@' << SVI.Deps[i]->def; in operator <<() 355 SVI->second.Deps.push_back(VNI); in propagateSiblingValue() 368 TinyPtrVector<VNInfo*> *Deps = VNI ? &FirstDeps : &SVI->second.Deps; in propagateSiblingValue() local 375 DEBUG(dbgs() << " prop to " << Deps->size() << ": " in propagateSiblingValue() 385 for (TinyPtrVector<VNInfo*>::iterator DepI = Deps->begin(), in propagateSiblingValue() 386 DepE = Deps->end(); DepI != DepE; ++DepI) { in propagateSiblingValue() 563 SVI->second.Deps.push_back(PHIs[pi]); in traceSiblingValue()
|
D | MachineScheduler.cpp | 2429 SmallVectorImpl<SDep> &Deps = isTop ? SU->Preds : SU->Succs; in reschedulePhysRegCopies() local 2433 for (SmallVectorImpl<SDep>::iterator I = Deps.begin(), E = Deps.end(); in reschedulePhysRegCopies()
|
/external/llvm/lib/Transforms/Scalar/ |
D | GVN.cpp | 681 void AnalyzeLoadAvailability(LoadInst *LI, LoadDepVect &Deps, 1345 void GVN::AnalyzeLoadAvailability(LoadInst *LI, LoadDepVect &Deps, in AnalyzeLoadAvailability() argument 1353 unsigned NumDeps = Deps.size(); in AnalyzeLoadAvailability() 1355 BasicBlock *DepBB = Deps[i].getBB(); in AnalyzeLoadAvailability() 1356 MemDepResult DepInfo = Deps[i].getResult(); in AnalyzeLoadAvailability() 1367 Value *Address = Deps[i].getAddress(); in AnalyzeLoadAvailability() 1666 LoadDepVect Deps; in processNonLocalLoad() local 1668 MD->getNonLocalPointerDependency(Loc, true, LI->getParent(), Deps); in processNonLocalLoad() 1673 unsigned NumDeps = Deps.size(); in processNonLocalLoad() 1680 !Deps[0].getResult().isDef() && !Deps[0].getResult().isClobber()) { in processNonLocalLoad() [all …]
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | SymbolManager.cpp | 381 if (const SymbolRefSmallVectorTy *Deps = SymMgr.getDependentSymbols(sym)) { in markDependentsLive() local 382 for (SymbolRefSmallVectorTy::const_iterator I = Deps->begin(), in markDependentsLive() 383 E = Deps->end(); I != E; ++I) { in markDependentsLive()
|
/external/chromium_org/tools/gn/ |
D | variables.cc | 823 INSERT_VARIABLE(Deps) in GetTargetVariables()
|
/external/chromium_org/tools/gn/secondary/tools/grit/ |
D | grit_rule.gni | 82 # Deps set on the template invocation will go on the grit script running
|