Searched refs:Dep (Results 1 - 6 of 6) sorted by relevance

/macosx-10.10.1/llvmCore-3425.0.34/lib/Analysis/
H A DMemoryDependenceAnalysis.cpp704 MemDepResult Dep; local
707 Dep = getCallSiteDependencyFrom(QueryCS, isReadonlyCall,ScanPos, DirtyBB);
711 Dep = MemDepResult::getNonLocal();
713 Dep = MemDepResult::getNonFuncLocal();
719 ExistingResult->setResult(Dep);
721 Cache.push_back(NonLocalDepEntry(DirtyBB, Dep));
725 if (!Dep.isNonLocal()) {
728 if (Instruction *Inst = Dep.getInst())
819 MemDepResult Dep = getPointerDependencyFrom(Loc, isLoad, ScanPos, BB); local
824 ExistingResult->setResult(Dep);
1028 MemDepResult Dep = GetNonLocalInfoForBlock(Loc, isLoad, BB, Cache, local
[all...]
H A DMemDepPrinter.cpp38 typedef std::pair<InstTypePair, const BasicBlock *> Dep; typedef in struct:__anon9893::MemDepPrinter
39 typedef SmallSetVector<Dep, 4> DepSet;
/macosx-10.10.1/llvmCore-3425.0.34/lib/CodeGen/
H A DMachineTraceMetrics.cpp739 const DataDep &Dep = Deps[i];
741 BlockInfo[Dep.DefMI->getParent()->getNumber()];
746 unsigned DepCycle = Cycles.lookup(Dep.DefMI).Depth;
748 if (!Dep.DefMI->isTransient())
750 .computeOperandLatency(Dep.DefMI, Dep.DefOp, UseMI, Dep.UseOp,
830 static bool pushDepHeight(const DataDep &Dep,
835 // Adjust height by Dep.DefMI latency.
836 if (!Dep
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/CodeGen/
H A DScheduleDAG.h56 /// Dep - A pointer to the depending/depended-on SUnit, and an enum
58 PointerIntPair<SUnit *, 2, Kind> Dep; member in class:llvm::SDep
95 SDep() : Dep(0, Data) {}
101 : Dep(S, kind), Contents(), Latency(latency), MinLatency(latency) {
124 if (Dep != Other.Dep) return false;
125 switch (Dep.getInt()) {
175 return Dep.getPointer();
180 Dep.setPointer(SU);
185 return Dep
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/lib/Transforms/Scalar/
H A DDeadStoreElimination.cpp669 MemDepResult Dep = MD->getPointerDependencyFrom(Loc, false, InstPt, BB); local
670 while (Dep.isDef() || Dep.isClobber()) {
671 Instruction *Dependency = Dep.getInst();
694 Dep = MD->getPointerDependencyFrom(Loc, false, Next, BB);
697 if (Dep.isNonLocal())
H A DGVN.cpp1802 MemDepResult Dep = MD->getDependency(L); local
1806 if (Dep.isClobber() && TD) {
1818 if (StoreInst *DepSI = dyn_cast<StoreInst>(Dep.getInst())) {
1831 if (LoadInst *DepLI = dyn_cast<LoadInst>(Dep.getInst())) {
1846 if (MemIntrinsic *DepMI = dyn_cast<MemIntrinsic>(Dep.getInst())) {
1855 DEBUG(dbgs() << "GVN COERCED INST:\n" << *Dep.getInst() << '\n'
1869 if (Dep.isClobber()) {
1874 Instruction *I = Dep.getInst();
1881 if (Dep.isNonLocal())
1884 if (!Dep
[all...]

Completed in 141 milliseconds