Searched refs:PtrToIntInst (Results 1 – 18 of 18) sorted by relevance
/external/llvm/lib/Analysis/ |
D | CodeMetrics.cpp | 82 if (CI->isLosslessCast() || isa<IntToPtrInst>(CI) || isa<PtrToIntInst>(CI)) in isInstructionFree()
|
D | InlineCost.cpp | 114 bool visitPtrToInt(PtrToIntInst &I); 371 bool CallAnalyzer::visitPtrToInt(PtrToIntInst &I) { in visitPtrToInt()
|
D | InstructionSimplify.cpp | 1873 if (MaxRecurse && Q.TD && isa<PtrToIntInst>(LI) && in SimplifyICmpInst() 1881 } else if (PtrToIntInst *RI = dyn_cast<PtrToIntInst>(RHS)) { in SimplifyICmpInst()
|
/external/llvm/include/llvm/Support/ |
D | InstVisitor.h | 186 RetTy visitPtrToIntInst(PtrToIntInst &I) { DELEGATE(CastInst);} in visitPtrToIntInst()
|
/external/llvm/lib/ExecutionEngine/Interpreter/ |
D | Interpreter.h | 165 void visitPtrToIntInst(PtrToIntInst &I);
|
D | Execution.cpp | 1114 void Interpreter::visitPtrToIntInst(PtrToIntInst &I) { in visitPtrToIntInst()
|
/external/llvm/lib/VMCore/ |
D | Instructions.cpp | 2285 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertBefore); in Create() 2306 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertAtEnd); in Create() 2793 PtrToIntInst::PtrToIntInst( in PtrToIntInst() function in PtrToIntInst 2799 PtrToIntInst::PtrToIntInst( in PtrToIntInst() function in PtrToIntInst 3435 PtrToIntInst *PtrToIntInst::clone_impl() const { in clone_impl() 3436 return new PtrToIntInst(getOperand(0), getType()); in clone_impl()
|
D | Verifier.cpp | 259 void visitPtrToIntInst(PtrToIntInst &I); 1026 void Verifier::visitPtrToIntInst(PtrToIntInst &I) { in visitPtrToIntInst()
|
/external/llvm/include/llvm/ |
D | Instruction.def | 154 HANDLE_CAST_INST(42, PtrToInt, PtrToIntInst) // Pointer -> Integer
|
D | Instructions.h | 3527 class PtrToIntInst : public CastInst { 3530 virtual PtrToIntInst *clone_impl() const; 3534 PtrToIntInst( 3542 PtrToIntInst( 3550 static inline bool classof(const PtrToIntInst *) { return true; }
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombine.h | 172 Instruction *visitPtrToInt(PtrToIntInst &CI);
|
D | InstCombineCasts.cpp | 1364 assert(isa<PtrToIntInst>(CI)); in commonPointerCastTransforms() 1365 return new PtrToIntInst(NGEP, CI.getType()); in commonPointerCastTransforms() 1373 Instruction *InstCombiner::visitPtrToInt(PtrToIntInst &CI) { in visitPtrToInt()
|
D | InstCombineCompares.cpp | 1559 } else if (PtrToIntInst *RHSC = dyn_cast<PtrToIntInst>(ICI.getOperand(1))) { in visitICmpInstWithCastAndCast()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGBuilder.h | 60 class PtrToIntInst; variable
|
/external/llvm/lib/Transforms/Scalar/ |
D | GVN.cpp | 766 StoredVal = new PtrToIntInst(StoredVal, StoredValTy, "", InsertPt); in CoerceAvailableValueToLoadType() 791 StoredVal = new PtrToIntInst(StoredVal, StoredValTy, "", InsertPt); in CoerceAvailableValueToLoadType()
|
D | ObjCARC.cpp | 1216 if (isa<PtrToIntInst>(P)) in isStoredObjCPointer()
|
/external/llvm/lib/Transforms/Utils/ |
D | SimplifyCFG.cpp | 470 if (PtrToIntInst *PTII = dyn_cast<PtrToIntInst>(CV)) in isValueEqualityComparison()
|
/external/llvm/include/llvm-c/ |
D | Core.h | 1054 macro(PtrToIntInst) \
|