HomeSort by relevance Sort by last modified time
    Searched refs:Dep (Results 1 - 15 of 15) sorted by null

  /external/clang/test/PCH/
cxx-templates.cpp 29 Dep<A>::Ty ty;
30 Dep<A> a;
cxx-templates.h 44 struct Dep {
  /external/llvm/include/llvm/CodeGen/
ScheduleDAG.h 74 /// Dep - A pointer to the depending/depended-on SUnit, and an enum
76 PointerIntPair<SUnit *, 2, Kind> Dep;
103 SDep() : Dep(0, Data) {}
107 : Dep(S, kind), Contents() {
126 : Dep(S, Order), Contents(), Latency(0), MinLatency(0) {
132 if (Dep != Other.Dep) return false;
133 switch (Dep.getInt()) {
180 return Dep.getPointer();
185 Dep.setPointer(SU)
    [all...]
  /external/llvm/lib/CodeGen/
ScheduleDAGInstrs.cpp 261 SDep Dep;
263 Dep = SDep(SU, SDep::Artificial);
265 Dep = SDep(SU, SDep::Data, *Alias);
267 Dep.setMinLatency(
271 Dep.setLatency(
275 ST.adjustSchedDependency(SU, UseSU, Dep);
276 UseSU->addPred(Dep);
309 SDep Dep(SU, Kind, /*Reg=*/*Alias);
312 Dep.setMinLatency(OutLatency);
313 Dep.setLatency(OutLatency)
    [all...]
MachineTraceMetrics.cpp 739 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.DefMI->isTransient()
    [all...]
  /external/llvm/lib/Analysis/
MemoryDependenceAnalysis.cpp 720 MemDepResult Dep;
723 Dep = getCallSiteDependencyFrom(QueryCS, isReadonlyCall,ScanPos, DirtyBB);
727 Dep = MemDepResult::getNonLocal();
729 Dep = MemDepResult::getNonFuncLocal();
735 ExistingResult->setResult(Dep);
737 Cache.push_back(NonLocalDepEntry(DirtyBB, Dep));
741 if (!Dep.isNonLocal()) {
744 if (Instruction *Inst = Dep.getInst())
    [all...]
MemDepPrinter.cpp 38 typedef std::pair<InstTypePair, const BasicBlock *> Dep;
39 typedef SmallSetVector<Dep, 4> DepSet;
64 static InstTypePair getInstTypePair(MemDepResult dep) {
65 if (dep.isClobber())
66 return InstTypePair(dep.getInst(), Clobber);
67 if (dep.isDef())
68 return InstTypePair(dep.getInst(), Def);
69 if (dep.isNonFuncLocal())
70 return InstTypePair(dep.getInst(), NonFuncLocal);
71 assert(dep.isUnknown() && "unexptected dependence type")
    [all...]
DependenceAnalysis.cpp     [all...]
  /external/v8/test/cctest/
cctest.h 41 #define DEPENDENT_TEST(Name, Dep) \
43 CcTest register_test_##Name(Test##Name, __FILE__, #Name, #Dep, true); \
  /external/llvm/lib/Transforms/Scalar/
DeadStoreElimination.cpp 669 MemDepResult Dep = MD->getPointerDependencyFrom(Loc, false, InstPt, BB);
670 while (Dep.isDef() || Dep.isClobber()) {
671 Instruction *Dependency = Dep.getInst();
694 Dep = MD->getPointerDependencyFrom(Loc, false, Next, BB);
697 if (Dep.isNonLocal())
GVN.cpp 863 dbgs() << "STORE/LOAD DEP WITH COMMON POINTER MISSED:\n"
891 dbgs() << "STORE LOAD DEP WITH COMMON BASE:\n"
    [all...]
  /external/clang/include/clang/AST/
TemplateName.h 217 explicit TemplateName(DependentTemplateName *Dep) : Storage(Dep) { }
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGSDNodes.cpp 482 // If this is a ctrl dep, latency is 1.
488 SDep Dep = isChain ? SDep(OpSU, SDep::Barrier)
490 Dep.setLatency(OpLatency);
492 computeOperandLatency(OpN, N, i, Dep);
493 ST.adjustSchedDependency(OpSU, SU, Dep);
496 if (!SU->addPred(Dep) && !Dep.isCtrl() && OpSU->NumRegDefsLeft > 1) {
620 unsigned OpIdx, SDep& dep) const{
625 if (dep.getKind() != SDep::Data)
643 dep.setLatency(Latency)
    [all...]
  /external/llvm/include/llvm/Analysis/
DependenceAnalysis.h 300 const SCEV *getSplitIteration(const Dependence *Dep, unsigned Level);
    [all...]
  /external/clang/lib/Sema/
SemaOverload.cpp     [all...]

Completed in 801 milliseconds