Searched refs:PairTy (Results 1 – 7 of 7) sorted by relevance
/external/llvm/include/llvm/Analysis/ |
D | MemoryDependenceAnalysis.h | 84 typedef PointerIntPair<Instruction*, 2, DepType> PairTy; typedef 85 PairTy Value; 86 explicit MemDepResult(PairTy V) : Value(V) {} in MemDepResult() 94 return MemDepResult(PairTy(Inst, Def)); in getDef() 98 return MemDepResult(PairTy(Inst, Clobber)); in getClobber() 101 return MemDepResult(PairTy(0, NonLocal)); in getNonLocal() 104 return MemDepResult(PairTy(0, Clobber)); in getUnknown() 149 return MemDepResult(PairTy(Inst, Invalid)); in getDirty()
|
D | CallGraph.h | 345 typedef std::pair<const Function*, CallGraphNode*> PairTy; 346 typedef std::pointer_to_unary_function<PairTy, CallGraphNode&> DerefFun; 357 static CallGraphNode &CGdereference(PairTy P) {
|
/external/llvm/lib/CodeGen/ |
D | MachineModuleInfoImpls.cpp | 28 typedef std::pair<MCSymbol*, MachineModuleInfoImpl::StubValueTy> PairTy; in SortSymbolPair() typedef 29 const MCSymbol *LHSS = ((const PairTy *)LHS)->first; in SortSymbolPair() 30 const MCSymbol *RHSS = ((const PairTy *)RHS)->first; in SortSymbolPair()
|
/external/clang/include/clang/Index/ |
D | CallGraph.h | 127 typedef std::pair<clang::idx::Entity, NodeType*> PairTy; 128 typedef std::pointer_to_unary_function<PairTy, NodeType*> DerefFun; 141 static NodeType *CGDeref(PairTy P) { return P.second; }
|
/external/llvm/test/Transforms/ScalarRepl/ |
D | phi-select.ll | 7 %PairTy = type {i32, i32} 65 %A = alloca %PairTy 67 ; CHECK: %A = alloca %PairTy 68 %B = getelementptr %PairTy* %A, i32 0, i32 0 70 %C = getelementptr %PairTy* %A, i32 0, i32 1
|
/external/llvm/lib/Analysis/ |
D | LazyValueInfo.cpp | 330 typedef std::pair<AssertingVH<BasicBlock>, Value*> PairTy; typedef 333 static inline PairTy getEmptyKey() { in getEmptyKey() 337 static inline PairTy getTombstoneKey() { in getTombstoneKey() 341 static unsigned getHashValue( const PairTy &Val) { in getHashValue() 345 static bool isEqual(const PairTy &LHS, const PairTy &RHS) { in isEqual()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | LegalizeDAG.cpp | 3607 EVT PairTy = Node->getValueType(0); in ExpandNode() local 3608 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, PairTy, Node->getOperand(0)); in ExpandNode() 3609 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, dl, PairTy, Node->getOperand(1)); in ExpandNode() 3610 Tmp2 = DAG.getNode(ISD::SHL, dl, PairTy, Tmp2, in ExpandNode() 3611 DAG.getConstant(PairTy.getSizeInBits()/2, in ExpandNode() 3612 TLI.getShiftAmountTy(PairTy))); in ExpandNode() 3613 Results.push_back(DAG.getNode(ISD::OR, dl, PairTy, Tmp1, Tmp2)); in ExpandNode()
|