Home
last modified time | relevance | path

Searched refs:PtrToIntInst (Results 1 – 18 of 18) sorted by relevance

/external/llvm/include/llvm/Support/
DInstVisitor.h183 RetTy visitPtrToIntInst(PtrToIntInst &I) { DELEGATE(CastInst); } in visitPtrToIntInst()
/external/llvm/lib/ExecutionEngine/Interpreter/
DInterpreter.h159 void visitPtrToIntInst(PtrToIntInst &I);
DExecution.cpp1131 void Interpreter::visitPtrToIntInst(PtrToIntInst &I) { in visitPtrToIntInst()
/external/llvm/lib/Transforms/Scalar/
DCodeGenPrepare.cpp853 V = new PtrToIntInst(V, IntPtrTy, "sunkaddr", InsertPt); in OptimizeMemoryInst()
866 V = new PtrToIntInst(V, IntPtrTy, "sunkaddr", InsertPt); in OptimizeMemoryInst()
885 Value *V = new PtrToIntInst(AddrMode.BaseGV, IntPtrTy, "sunkaddr", in OptimizeMemoryInst()
DGVN.cpp704 StoredVal = new PtrToIntInst(StoredVal, StoredValTy, "", InsertPt); in CoerceAvailableValueToLoadType()
729 StoredVal = new PtrToIntInst(StoredVal, StoredValTy, "", InsertPt); in CoerceAvailableValueToLoadType()
DObjCARC.cpp1001 if (isa<PtrToIntInst>(P)) in isStoredObjCPointer()
/external/llvm/lib/VMCore/
DInstructions.cpp1984 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertBefore); in Create()
2007 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertAtEnd); in Create()
2493 PtrToIntInst::PtrToIntInst( in PtrToIntInst() function in PtrToIntInst
2499 PtrToIntInst::PtrToIntInst( in PtrToIntInst() function in PtrToIntInst
3114 PtrToIntInst *PtrToIntInst::clone_impl() const { in clone_impl()
3115 return new PtrToIntInst(getOperand(0), getType()); in clone_impl()
DVerifier.cpp256 void visitPtrToIntInst(PtrToIntInst &I);
1018 void Verifier::visitPtrToIntInst(PtrToIntInst &I) { in visitPtrToIntInst()
/external/llvm/include/llvm/
DInstruction.def151 HANDLE_CAST_INST(39, PtrToInt, PtrToIntInst) // Pointer -> Integer
DInstructions.h2906 class PtrToIntInst : public CastInst {
2909 virtual PtrToIntInst *clone_impl() const;
2913 PtrToIntInst(
2921 PtrToIntInst(
2929 static inline bool classof(const PtrToIntInst *) { return true; }
/external/llvm/lib/Transforms/InstCombine/
DInstCombine.h167 Instruction *visitPtrToInt(PtrToIntInst &CI);
DInstCombineCasts.cpp1369 assert(isa<PtrToIntInst>(CI)); in commonPointerCastTransforms()
1370 return new PtrToIntInst(NGEP, CI.getType()); in commonPointerCastTransforms()
1378 Instruction *InstCombiner::visitPtrToInt(PtrToIntInst &CI) { in visitPtrToInt()
DInstCombineCompares.cpp1532 } else if (PtrToIntInst *RHSC = dyn_cast<PtrToIntInst>(ICI.getOperand(1))) { in visitICmpInstWithCastAndCast()
/external/llvm/lib/Analysis/
DInlineCost.cpp106 isa<PtrToIntInst>(CI)) in analyzeBasicBlock()
DInstructionSimplify.cpp1601 if (MaxRecurse && TD && isa<PtrToIntInst>(LI) && in SimplifyICmpInst()
1609 } else if (PtrToIntInst *RI = dyn_cast<PtrToIntInst>(RHS)) { in SimplifyICmpInst()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.h60 class PtrToIntInst; variable
/external/llvm/lib/Transforms/Utils/
DSimplifyCFG.cpp468 if (PtrToIntInst *PTII = dyn_cast<PtrToIntInst>(CV)) in isValueEqualityComparison()
/external/llvm/include/llvm-c/
DCore.h483 macro(PtrToIntInst) \