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

/external/clang/test/PCH/
H A Dcxx-templates.cpp34 Dep<A>::Ty ty;
35 Dep<A> a;
H A Dcxx-templates.h44 struct Dep { struct
/external/llvm/lib/CodeGen/
H A DScheduleDAGInstrs.cpp264 SDep Dep; local
266 Dep = SDep(SU, SDep::Artificial);
271 Dep = SDep(SU, SDep::Data, *Alias);
274 Dep.setLatency(
278 ST.adjustSchedDependency(SU, UseSU, Dep);
279 UseSU->addPred(Dep);
312 SDep Dep(SU, Kind, /*Reg=*/*Alias);
313 Dep.setLatency(
315 DefSU->addPred(Dep);
389 SDep Dep(S
[all...]
H A DMachineTraceMetrics.cpp845 const DataDep &Dep = Deps[i];
847 BlockInfo[Dep.DefMI->getParent()->getNumber()];
852 unsigned DepCycle = Cycles.lookup(Dep.DefMI).Depth;
854 if (!Dep.DefMI->isTransient())
856 .computeOperandLatency(Dep.DefMI, Dep.DefOp, UseMI, Dep.UseOp);
934 static bool pushDepHeight(const DataDep &Dep,
939 // Adjust height by Dep.DefMI latency.
940 if (!Dep
[all...]
/external/llvm/include/llvm/CodeGen/
H A DScheduleDAG.h74 /// Dep - A pointer to the depending/depended-on SUnit, and an enum
76 PointerIntPair<SUnit *, 2, Kind> Dep; member in class:llvm::SDep
98 SDep() : Dep(0, Data) {}
102 : Dep(S, kind), Contents() {
120 : Dep(S, Order), Contents(), Latency(0) {
126 if (Dep != Other.Dep) return false;
127 switch (Dep.getInt()) {
161 return Dep.getPointer();
166 Dep
[all...]
/external/llvm/lib/Analysis/
H A DMemoryDependenceAnalysis.cpp720 MemDepResult Dep; local
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())
835 MemDepResult Dep = getPointerDependencyFrom(Loc, isLoad, ScanPos, BB); local
840 ExistingResult->setResult(Dep);
1052 MemDepResult Dep = GetNonLocalInfoForBlock(Loc, isLoad, BB, Cache, local
[all...]
H A DMemDepPrinter.cpp38 typedef std::pair<InstTypePair, const BasicBlock *> Dep; typedef in struct:__anon21093::MemDepPrinter
39 typedef SmallSetVector<Dep, 4> DepSet;
H A DDependenceAnalysis.cpp3648 const SCEV *DependenceAnalysis::getSplitIteration(const Dependence *Dep, argument
3650 assert(Dep && "expected a pointer to a Dependence");
3651 assert(Dep->isSplitable(SplitLevel) &&
3652 "Dep should be splitable at SplitLevel");
3653 Instruction *Src = Dep->getSrc();
3654 Instruction *Dst = Dep->getDst();
/external/v8/test/cctest/
H A Dcctest.h41 #define DEPENDENT_TEST(Name, Dep) \
43 CcTest register_test_##Name(Test##Name, __FILE__, #Name, #Dep, true); \
/external/llvm/lib/Target/R600/
H A DR600Packetizer.cpp186 const SDep &Dep = SUJ->Succs[i]; local
187 if (Dep.getSUnit() != SUI)
189 if (Dep.getKind() == SDep::Anti)
191 if (Dep.getKind() == SDep::Output)
/external/llvm/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.cpp1790 MemDepResult Dep = MD->getDependency(L); local
1794 if (Dep.isClobber() && TD) {
1806 if (StoreInst *DepSI = dyn_cast<StoreInst>(Dep.getInst())) {
1819 if (LoadInst *DepLI = dyn_cast<LoadInst>(Dep.getInst())) {
1834 if (MemIntrinsic *DepMI = dyn_cast<MemIntrinsic>(Dep.getInst())) {
1843 DEBUG(dbgs() << "GVN COERCED INST:\n" << *Dep.getInst() << '\n'
1857 if (Dep.isClobber()) {
1862 Instruction *I = Dep.getInst();
1869 if (Dep.isNonLocal())
1872 if (!Dep
[all...]
/external/chromium_org/v8/test/cctest/
H A Dcctest.h41 #define DEPENDENT_TEST(Name, Dep) \
43 CcTest register_test_##Name(Test##Name, __FILE__, #Name, #Dep, true); \
/external/clang/include/clang/AST/
H A DTemplateName.h217 explicit TemplateName(DependentTemplateName *Dep) : Storage(Dep) { } argument
/external/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGSDNodes.cpp488 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) {
/external/llvm/include/llvm/Analysis/
H A DDependenceAnalysis.h334 const SCEV *getSplitIteration(const Dependence *Dep, unsigned Level);
/external/clang/lib/Sema/
H A DSemaOverload.cpp6668 Dep=-1,
6677 /* SL*/ { Flt, Dbl, LDbl, SL, SL, SLL, S128, Dep, UL, ULL, U128 },
6678 /* SLL*/ { Flt, Dbl, LDbl, SLL, SLL, SLL, S128, Dep, Dep, ULL, U128 },
6680 /* UI*/ { Flt, Dbl, LDbl, UI, Dep, Dep, S128, UI, UL, ULL, U128 },
6681 /* UL*/ { Flt, Dbl, LDbl, UL, UL, Dep, S128, UL, UL, ULL, U128 },
6691 if (Idx != Dep) return getArithmeticType(Idx);

Completed in 450 milliseconds