Searched refs:Dep (Results 1 - 10 of 10) 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.cpp770 MemDepResult Dep; local
773 Dep = getCallSiteDependencyFrom(QueryCS, isReadonlyCall,ScanPos, DirtyBB);
777 Dep = MemDepResult::getNonLocal();
779 Dep = MemDepResult::getNonFuncLocal();
785 ExistingResult->setResult(Dep);
787 Cache.push_back(NonLocalDepEntry(DirtyBB, Dep));
791 if (!Dep.isNonLocal()) {
794 if (Instruction *Inst = Dep.getInst())
885 MemDepResult Dep = getPointerDependencyFrom(Loc, isLoad, ScanPos, BB); local
890 ExistingResult->setResult(Dep);
1094 MemDepResult Dep = GetNonLocalInfoForBlock(Loc, isLoad, BB, Cache, local
[all...]
H A DMemDepPrinter.cpp38 typedef std::pair<InstTypePair, const BasicBlock *> Dep; typedef in struct:__anon7297::MemDepPrinter
39 typedef SmallSetVector<Dep, 4> DepSet;
/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
93 SDep() : Dep(0, Data) {}
99 : Dep(S, kind), Contents(), Latency(latency) {
121 if (Dep != Other.Dep || Latency != Other.Latency) return false;
122 switch (Dep.getInt()) {
155 return Dep.getPointer();
160 Dep.setPointer(SU);
165 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.cpp651 MemDepResult Dep = MD->getPointerDependencyFrom(Loc, false, InstPt, BB); local
652 while (Dep.isDef() || Dep.isClobber()) {
653 Instruction *Dependency = Dep.getInst();
676 Dep = MD->getPointerDependencyFrom(Loc, false, Next, BB);
679 if (Dep.isNonLocal())
H A DGVN.cpp1743 MemDepResult Dep = MD->getDependency(L); local
1747 if (Dep.isClobber() && TD) {
1759 if (StoreInst *DepSI = dyn_cast<StoreInst>(Dep.getInst())) {
1772 if (LoadInst *DepLI = dyn_cast<LoadInst>(Dep.getInst())) {
1787 if (MemIntrinsic *DepMI = dyn_cast<MemIntrinsic>(Dep.getInst())) {
1796 DEBUG(dbgs() << "GVN COERCED INST:\n" << *Dep.getInst() << '\n'
1810 if (Dep.isClobber()) {
1815 Instruction *I = Dep.getInst();
1822 if (Dep.isNonLocal())
1825 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.cpp6427 Flt, Dbl, LDbl, SI, SL, SLL, UI, UL, ULL, Dep=-1
6435 /* SL*/ { Flt, Dbl, LDbl, SL, SL, SLL, Dep, UL, ULL },
6436 /* SLL*/ { Flt, Dbl, LDbl, SLL, SLL, SLL, Dep, Dep, ULL },
6437 /* UI*/ { Flt, Dbl, LDbl, UI, Dep, Dep, UI, UL, ULL },
6438 /* UL*/ { Flt, Dbl, LDbl, UL, UL, Dep, UL, UL, ULL },
6447 if (Idx != Dep) return getArithmeticType(Idx);

Completed in 3770 milliseconds