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

/external/clang/test/PCH/
H A Dcxx-templates.cpp27 Dep<A>::Ty ty;
28 Dep<A> a;
H A Dcxx-templates.h44 struct Dep { struct
/external/llvm/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:__anon8608::MemDepPrinter
39 typedef SmallSetVector<Dep, 4> DepSet;
/external/llvm/lib/CodeGen/
H A DMachineTraceMetrics.cpp736 const DataDep &Dep = Deps[i];
738 BlockInfo[Dep.DefMI->getParent()->getNumber()];
743 unsigned DepCycle = Cycles.lookup(Dep.DefMI).Depth;
745 if (!Dep.DefMI->isTransient())
747 Dep.DefMI, Dep.DefOp,
748 UseMI, Dep.UseOp,
832 static bool pushDepHeight(const DataDep &Dep,
837 // Adjust height by Dep.DefMI latency.
838 if (!Dep
[all...]
/external/llvm/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...]
/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/Transforms/Scalar/
H A DDeadStoreElimination.cpp628 MemDepResult Dep = MD->getPointerDependencyFrom(Loc, false, InstPt, BB); local
629 while (Dep.isDef() || Dep.isClobber()) {
630 Instruction *Dependency = Dep.getInst();
653 Dep = MD->getPointerDependencyFrom(Loc, false, Next, BB);
656 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...]
/external/clang/include/clang/AST/
H A DTemplateName.h216 explicit TemplateName(DependentTemplateName *Dep) : Storage(Dep) { } argument
/external/clang/lib/Sema/
H A DSemaOverload.cpp6457 Dep=-1,
6466 /* SL*/ { Flt, Dbl, LDbl, SL, SL, SLL, S128, Dep, UL, ULL, U128 },
6467 /* SLL*/ { Flt, Dbl, LDbl, SLL, SLL, SLL, S128, Dep, Dep, ULL, U128 },
6469 /* UI*/ { Flt, Dbl, LDbl, UI, Dep, Dep, S128, UI, UL, ULL, U128 },
6470 /* UL*/ { Flt, Dbl, LDbl, UL, UL, Dep, S128, UL, UL, ULL, U128 },
6480 if (Idx != Dep) return getArithmeticType(Idx);

Completed in 321 milliseconds