Searched refs:PairTy (Results 1 - 7 of 7) sorted by relevance

/freebsd-10.0-release/contrib/llvm/lib/CodeGen/
H A DMachineModuleInfoImpls.cpp28 typedef std::pair<MCSymbol*, MachineModuleInfoImpl::StubValueTy> PairTy; typedef
29 const MCSymbol *LHSS = ((const PairTy *)LHS)->first;
30 const MCSymbol *RHSS = ((const PairTy *)RHS)->first;
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/AST/
H A DBaseSubobject.h69 typedef std::pair<const clang::CXXRecordDecl *, clang::CharUnits> PairTy; typedef
70 return DenseMapInfo<PairTy>::getHashValue(PairTy(Base.getBase(),
/freebsd-10.0-release/contrib/llvm/include/llvm/Analysis/
H A DMemoryDependenceAnalysis.h97 typedef PointerIntPair<Instruction*, 2, DepType> PairTy; typedef in class:llvm::MemDepResult
98 PairTy Value;
99 explicit MemDepResult(PairTy V) : Value(V) {}
107 return MemDepResult(PairTy(Inst, Def));
111 return MemDepResult(PairTy(Inst, Clobber));
115 PairTy(reinterpret_cast<Instruction*>(NonLocal), Other));
119 PairTy(reinterpret_cast<Instruction*>(NonFuncLocal), Other));
123 PairTy(reinterpret_cast<Instruction*>(Unknown), Other));
184 return MemDepResult(PairTy(Inst, Invalid));
H A DCallGraph.h345 typedef std::pair<const Function*, CallGraphNode*> PairTy; typedef in struct:GraphTraits
346 typedef std::pointer_to_unary_function<PairTy, CallGraphNode&> DerefFun;
357 static CallGraphNode &CGdereference(PairTy P) {
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/Analysis/
H A DCallGraph.h205 typedef std::pair<const clang::Decl*, clang::CallGraphNode*> PairTy; typedef in struct:llvm::GraphTraits
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; typedef in struct:llvm::GraphTraits
231 typedef std::pointer_to_unary_function<PairTy, clang::CallGraphNode&> DerefFun;
242 static clang::CallGraphNode &CGdereference(PairTy P) {
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DRetainCountChecker.cpp488 typedef std::pair<IdentifierInfo*, Selector> PairTy; typedef
489 return DenseMapInfo<PairTy>::getHashValue(PairTy(V.getIdentifier(),
/freebsd-10.0-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp3542 EVT PairTy = Node->getValueType(0);
3543 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, PairTy, Node->getOperand(0));
3544 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, dl, PairTy, Node->getOperand(1));
3545 Tmp2 = DAG.getNode(ISD::SHL, dl, PairTy, Tmp2,
3546 DAG.getConstant(PairTy.getSizeInBits()/2,
3547 TLI.getShiftAmountTy(PairTy)));
3548 Results.push_back(DAG.getNode(ISD::OR, dl, PairTy, Tmp1, Tmp2));

Completed in 150 milliseconds