Searched refs:PairTy (Results 1 – 8 of 8) sorted by relevance
/external/llvm/include/llvm/Analysis/ |
D | MemoryDependenceAnalysis.h | 96 typedef PointerIntPair<Instruction*, 2, DepType> PairTy; typedef 97 PairTy Value; 98 explicit MemDepResult(PairTy V) : Value(V) {} in MemDepResult() 106 return MemDepResult(PairTy(Inst, Def)); in getDef() 110 return MemDepResult(PairTy(Inst, Clobber)); in getClobber() 114 PairTy(reinterpret_cast<Instruction*>(NonLocal), Other)); in getNonLocal() 118 PairTy(reinterpret_cast<Instruction*>(NonFuncLocal), Other)); in getNonFuncLocal() 122 PairTy(reinterpret_cast<Instruction*>(Unknown), Other)); in getUnknown() 183 return MemDepResult(PairTy(Inst, Invalid)); in getDirty()
|
D | CallGraph.h | 435 typedef std::pair<const Function *, CallGraphNode *> PairTy; 436 typedef std::pointer_to_unary_function<PairTy, CallGraphNode &> DerefFun; 447 static CallGraphNode &CGdereference(PairTy P) { return *P.second; }
|
/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/Analysis/ |
D | CallGraph.h | 205 typedef std::pair<const clang::Decl*, clang::CallGraphNode*> PairTy; 206 typedef std::pointer_to_unary_function<PairTy, clang::CallGraphNode&> DerefFun; 216 static clang::CallGraphNode &CGdereference(PairTy P) { 230 typedef std::pair<const clang::Decl*, clang::CallGraphNode*> PairTy; 231 typedef std::pointer_to_unary_function<PairTy, clang::CallGraphNode&> DerefFun; 242 static clang::CallGraphNode &CGdereference(PairTy P) {
|
/external/clang/include/clang/AST/ |
D | BaseSubobject.h | 69 typedef std::pair<const clang::CXXRecordDecl *, clang::CharUnits> PairTy; 70 return DenseMapInfo<PairTy>::getHashValue(PairTy(Base.getBase(),
|
/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/CodeGen/SelectionDAG/ |
D | LegalizeDAG.cpp | 3867 EVT PairTy = Node->getValueType(0); in ExpandNode() local 3868 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, PairTy, Node->getOperand(0)); in ExpandNode() 3869 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, dl, PairTy, Node->getOperand(1)); in ExpandNode() 3870 Tmp2 = DAG.getNode(ISD::SHL, dl, PairTy, Tmp2, in ExpandNode() 3871 DAG.getConstant(PairTy.getSizeInBits()/2, in ExpandNode() 3872 TLI.getShiftAmountTy(PairTy))); in ExpandNode() 3873 Results.push_back(DAG.getNode(ISD::OR, dl, PairTy, Tmp1, Tmp2)); in ExpandNode()
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | RetainCountChecker.cpp | 477 typedef std::pair<IdentifierInfo*, Selector> PairTy; in getHashValue() typedef 478 return DenseMapInfo<PairTy>::getHashValue(PairTy(V.getIdentifier(), in getHashValue()
|