Home
last modified time | relevance | path

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

/external/llvm/unittests/ADT/
DDAGDeltaAlgorithmTest.cpp78 std::vector<edge_ty> Deps; in TEST() local
82 Deps.clear(); in TEST()
83 Deps.push_back(std::make_pair(3, 1)); in TEST()
89 EXPECT_EQ(fixed_set(4, 1, 3, 5, 7), FDA.Run(range(20), Deps)); in TEST()
96 Deps.clear(); in TEST()
97 Deps.push_back(std::make_pair(1, 0)); in TEST()
98 Deps.push_back(std::make_pair(2, 0)); in TEST()
99 Deps.push_back(std::make_pair(4, 0)); in TEST()
100 Deps.push_back(std::make_pair(3, 2)); in TEST()
108 EXPECT_EQ(fixed_set(4, 0, 1, 2, 3), FDA2.Run(range(5), Deps)); in TEST()
[all …]
/external/llvm/lib/Analysis/
DMemDepPrinter.cpp32 DepSetMap Deps; member
50 Deps.clear(); in releaseMemory()
84 Deps[Inst].insert(std::make_pair(InstAndClobberFlag(Res.getInst(), in runOnFunction()
91 DepSet &InstDeps = Deps[Inst]; in runOnFunction()
120 DepSet &InstDeps = Deps[Inst]; in runOnFunction()
140 DepSetMap::const_iterator DI = Deps.find(Inst); in print()
141 if (DI == Deps.end()) in print()
/external/llvm/lib/CodeGen/
DScheduleDAGInstrs.h42 LoopDeps Deps; variable
51 Deps.clear(); in VisitLoop()
82 Deps.insert(std::make_pair(MOReg, std::make_pair(&MO, Count))); in VisitRegion()
DScheduleDAGInstrs.cpp350 LoopDependencies::LoopDeps::iterator I = LoopRegs.Deps.find(Reg); in BuildSchedGraph()
351 if (I != LoopRegs.Deps.end()) { in BuildSchedGraph()
387 LoopRegs.Deps.erase(I); in BuildSchedGraph()
/external/llvm/lib/Transforms/Scalar/
DGVN.cpp1263 SmallVector<NonLocalDepResult, 64> Deps; in processNonLocalLoad() local
1265 MD->getNonLocalPointerDependency(Loc, true, LI->getParent(), Deps); in processNonLocalLoad()
1272 if (Deps.size() > 100) in processNonLocalLoad()
1277 if (Deps.size() == 1 && Deps[0].getResult().isUnknown()) { in processNonLocalLoad()
1293 for (unsigned i = 0, e = Deps.size(); i != e; ++i) { in processNonLocalLoad()
1294 BasicBlock *DepBB = Deps[i].getBB(); in processNonLocalLoad()
1295 MemDepResult DepInfo = Deps[i].getResult(); in processNonLocalLoad()
1306 Value *Address = Deps[i].getAddress(); in processNonLocalLoad()