/external/llvm/include/llvm/Support/ |
D | InstVisitor.h | 183 RetTy visitPtrToIntInst(PtrToIntInst &I) { DELEGATE(CastInst); } in visitPtrToIntInst()
|
/external/llvm/lib/ExecutionEngine/Interpreter/ |
D | Interpreter.h | 159 void visitPtrToIntInst(PtrToIntInst &I);
|
D | Execution.cpp | 1131 void Interpreter::visitPtrToIntInst(PtrToIntInst &I) { in visitPtrToIntInst()
|
/external/llvm/lib/Transforms/Scalar/ |
D | CodeGenPrepare.cpp | 853 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()
|
D | GVN.cpp | 704 StoredVal = new PtrToIntInst(StoredVal, StoredValTy, "", InsertPt); in CoerceAvailableValueToLoadType() 729 StoredVal = new PtrToIntInst(StoredVal, StoredValTy, "", InsertPt); in CoerceAvailableValueToLoadType()
|
D | ObjCARC.cpp | 1001 if (isa<PtrToIntInst>(P)) in isStoredObjCPointer()
|
/external/llvm/lib/VMCore/ |
D | Instructions.cpp | 1984 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()
|
D | Verifier.cpp | 256 void visitPtrToIntInst(PtrToIntInst &I); 1018 void Verifier::visitPtrToIntInst(PtrToIntInst &I) { in visitPtrToIntInst()
|
/external/llvm/include/llvm/ |
D | Instruction.def | 151 HANDLE_CAST_INST(39, PtrToInt, PtrToIntInst) // Pointer -> Integer
|
D | Instructions.h | 2906 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/ |
D | InstCombine.h | 167 Instruction *visitPtrToInt(PtrToIntInst &CI);
|
D | InstCombineCasts.cpp | 1369 assert(isa<PtrToIntInst>(CI)); in commonPointerCastTransforms() 1370 return new PtrToIntInst(NGEP, CI.getType()); in commonPointerCastTransforms() 1378 Instruction *InstCombiner::visitPtrToInt(PtrToIntInst &CI) { in visitPtrToInt()
|
D | InstCombineCompares.cpp | 1532 } else if (PtrToIntInst *RHSC = dyn_cast<PtrToIntInst>(ICI.getOperand(1))) { in visitICmpInstWithCastAndCast()
|
/external/llvm/lib/Analysis/ |
D | InlineCost.cpp | 106 isa<PtrToIntInst>(CI)) in analyzeBasicBlock()
|
D | InstructionSimplify.cpp | 1601 if (MaxRecurse && TD && isa<PtrToIntInst>(LI) && in SimplifyICmpInst() 1609 } else if (PtrToIntInst *RI = dyn_cast<PtrToIntInst>(RHS)) { in SimplifyICmpInst()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGBuilder.h | 60 class PtrToIntInst; variable
|
/external/llvm/lib/Transforms/Utils/ |
D | SimplifyCFG.cpp | 468 if (PtrToIntInst *PTII = dyn_cast<PtrToIntInst>(CV)) in isValueEqualityComparison()
|
/external/llvm/include/llvm-c/ |
D | Core.h | 483 macro(PtrToIntInst) \
|