Home
last modified time | relevance | path

Searched refs:Deps (Results 1 – 7 of 7) sorted by relevance

/external/llvm/unittests/ADT/
DDAGDeltaAlgorithmTest.cpp61 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/
DMemDepPrinter.cpp41 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/include/llvm/CodeGen/
DScheduleDAGInstrs.h44 LoopDeps Deps; variable
53 assert(Deps.empty() && "stale loop dependencies"); in VisitLoop()
85 Deps.insert(std::make_pair(MOReg, std::make_pair(&MO, Count))); in VisitRegion()
/external/llvm/lib/CodeGen/
DInlineSpiller.cpp116 TinyPtrVector<VNInfo*> Deps; member
328 for (unsigned i = 0, e = SVI.Deps.size(); i != e; ++i) in operator <<()
329 OS << ' ' << SVI.Deps[i]->id << '@' << SVI.Deps[i]->def; in operator <<()
350 SVI->second.Deps.push_back(VNI); in propagateSiblingValue()
365 TinyPtrVector<VNInfo*> *Deps = VNI ? &FirstDeps : &SVI->second.Deps; in propagateSiblingValue() local
372 DEBUG(dbgs() << " prop to " << Deps->size() << ": " in propagateSiblingValue()
382 for (TinyPtrVector<VNInfo*>::iterator DepI = Deps->begin(), in propagateSiblingValue()
383 DepE = Deps->end(); DepI != DepE; ++DepI) { in propagateSiblingValue()
561 SVI->second.Deps.push_back(PHIs[pi]); in traceSiblingValue()
DScheduleDAGInstrs.cpp130 LoopRegs.Deps.clear(); in startBlock()
326 LoopDependencies::LoopDeps::iterator I = LoopRegs.Deps.find(MO.getReg()); in addPhysRegDeps()
327 if (I != LoopRegs.Deps.end()) { in addPhysRegDeps()
366 LoopRegs.Deps.erase(I); in addPhysRegDeps()
/external/clang/lib/StaticAnalyzer/Core/
DSymbolManager.cpp396 if (const SymbolRefSmallVectorTy *Deps = SymMgr.getDependentSymbols(sym)) { in markDependentsLive() local
397 for (SymbolRefSmallVectorTy::const_iterator I = Deps->begin(), in markDependentsLive()
398 E = Deps->end(); I != E; ++I) { in markDependentsLive()
/external/llvm/lib/Transforms/Scalar/
DGVN.cpp1323 SmallVector<NonLocalDepResult, 64> Deps; in processNonLocalLoad() local
1325 MD->getNonLocalPointerDependency(Loc, true, LI->getParent(), Deps); in processNonLocalLoad()
1332 unsigned NumDeps = Deps.size(); in processNonLocalLoad()
1339 !Deps[0].getResult().isDef() && !Deps[0].getResult().isClobber()) { in processNonLocalLoad()
1356 BasicBlock *DepBB = Deps[i].getBB(); in processNonLocalLoad()
1357 MemDepResult DepInfo = Deps[i].getResult(); in processNonLocalLoad()
1368 Value *Address = Deps[i].getAddress(); in processNonLocalLoad()