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

/macosx-10.10/llvmCore-3425.0.34/unittests/ADT/
H A DDAGDeltaAlgorithmTest.cpp61 std::vector<edge_ty> Deps; local
65 Deps.clear();
66 Deps.push_back(std::make_pair(3, 1));
72 EXPECT_EQ(fixed_set(4, 1, 3, 5, 7), FDA.Run(range(20), Deps));
79 Deps.clear();
80 Deps.push_back(std::make_pair(1, 0));
81 Deps.push_back(std::make_pair(2, 0));
82 Deps.push_back(std::make_pair(4, 0));
83 Deps.push_back(std::make_pair(3, 2));
91 EXPECT_EQ(fixed_set(4, 0, 1, 2, 3), FDA2.Run(range(5), Deps));
[all...]
/macosx-10.10/llvmCore-3425.0.34/lib/Analysis/
H A DMemDepPrinter.cpp41 DepSetMap Deps; member in struct:__anon10158::MemDepPrinter
59 Deps.clear();
109 Deps[Inst].insert(std::make_pair(getInstTypePair(Res),
115 DepSet &InstDeps = Deps[Inst];
126 Deps[Inst].insert(std::make_pair(getInstTypePair(0, Unknown),
135 Deps[Inst].insert(std::make_pair(getInstTypePair(0, Unknown),
148 DepSet &InstDeps = Deps[Inst];
164 DepSetMap::const_iterator DI = Deps.find(Inst);
165 if (DI == Deps.end())
/macosx-10.10/llvmCore-3425.0.34/lib/CodeGen/
H A DMachineTraceMetrics.cpp547 SmallVectorImpl<DataDep> &Deps,
562 Deps.push_back(DataDep(MRI, Reg, MO.getOperandNo()));
569 // This will add at most one dependency to Deps.
571 SmallVectorImpl<DataDep> &Deps,
581 Deps.push_back(DataDep(MRI, Reg, i));
607 SmallVectorImpl<DataDep> &Deps,
634 Deps.push_back(DataDep(I->MI, I->Op, MO.getOperandNo()));
713 SmallVector<DataDep, 8> Deps;
730 Deps.clear();
732 getPHIDeps(UseMI, Deps, TB
[all...]
H A DInlineSpiller.cpp115 TinyPtrVector<VNInfo*> Deps; member in struct:__anon10215::InlineSpiller::SibValueInfo
326 for (unsigned i = 0, e = SVI.Deps.size(); i != e; ++i)
327 OS << ' ' << SVI.Deps[i]->id << '@' << SVI.Deps[i]->def;
348 SVI->second.Deps.push_back(VNI);
363 TinyPtrVector<VNInfo*> *Deps = VNI ? &FirstDeps : &SVI->second.Deps; local
370 DEBUG(dbgs() << " prop to " << Deps->size() << ": "
380 for (TinyPtrVector<VNInfo*>::iterator DepI = Deps->begin(),
381 DepE = Deps
[all...]
/macosx-10.10/llvmCore-3425.0.34/lib/Transforms/Scalar/
H A DGVN.cpp1335 SmallVector<NonLocalDepResult, 64> Deps; local
1337 MD->getNonLocalPointerDependency(Loc, true, LI->getParent(), Deps);
1339 // << Deps.size() << *LI << '\n');
1344 unsigned NumDeps = Deps.size();
1351 !Deps[0].getResult().isDef() && !Deps[0].getResult().isClobber()) {
1368 BasicBlock *DepBB = Deps[i].getBB();
1369 MemDepResult DepInfo = Deps[i].getResult();
1380 Value *Address = Deps[i].getAddress();

Completed in 196 milliseconds