Home
last modified time | relevance | path

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

/external/llvm/lib/Analysis/
DCodeMetrics.cpp82 if (CI->isLosslessCast() || isa<IntToPtrInst>(CI) || isa<PtrToIntInst>(CI)) in isInstructionFree()
DInlineCost.cpp114 bool visitPtrToInt(PtrToIntInst &I);
371 bool CallAnalyzer::visitPtrToInt(PtrToIntInst &I) { in visitPtrToInt()
DInstructionSimplify.cpp1873 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/
DInstVisitor.h186 RetTy visitPtrToIntInst(PtrToIntInst &I) { DELEGATE(CastInst);} in visitPtrToIntInst()
/external/llvm/lib/ExecutionEngine/Interpreter/
DInterpreter.h165 void visitPtrToIntInst(PtrToIntInst &I);
DExecution.cpp1114 void Interpreter::visitPtrToIntInst(PtrToIntInst &I) { in visitPtrToIntInst()
/external/llvm/lib/VMCore/
DInstructions.cpp2285 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()
DVerifier.cpp259 void visitPtrToIntInst(PtrToIntInst &I);
1026 void Verifier::visitPtrToIntInst(PtrToIntInst &I) { in visitPtrToIntInst()
/external/llvm/include/llvm/
DInstruction.def154 HANDLE_CAST_INST(42, PtrToInt, PtrToIntInst) // Pointer -> Integer
DInstructions.h3527 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/
DInstCombine.h172 Instruction *visitPtrToInt(PtrToIntInst &CI);
DInstCombineCasts.cpp1364 assert(isa<PtrToIntInst>(CI)); in commonPointerCastTransforms()
1365 return new PtrToIntInst(NGEP, CI.getType()); in commonPointerCastTransforms()
1373 Instruction *InstCombiner::visitPtrToInt(PtrToIntInst &CI) { in visitPtrToInt()
DInstCombineCompares.cpp1559 } else if (PtrToIntInst *RHSC = dyn_cast<PtrToIntInst>(ICI.getOperand(1))) { in visitICmpInstWithCastAndCast()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.h60 class PtrToIntInst; variable
/external/llvm/lib/Transforms/Scalar/
DGVN.cpp766 StoredVal = new PtrToIntInst(StoredVal, StoredValTy, "", InsertPt); in CoerceAvailableValueToLoadType()
791 StoredVal = new PtrToIntInst(StoredVal, StoredValTy, "", InsertPt); in CoerceAvailableValueToLoadType()
DObjCARC.cpp1216 if (isa<PtrToIntInst>(P)) in isStoredObjCPointer()
/external/llvm/lib/Transforms/Utils/
DSimplifyCFG.cpp470 if (PtrToIntInst *PTII = dyn_cast<PtrToIntInst>(CV)) in isValueEqualityComparison()
/external/llvm/include/llvm-c/
DCore.h1054 macro(PtrToIntInst) \