Home
last modified time | relevance | path

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

/minix3/external/bsd/llvm/dist/llvm/lib/Transforms/Scalar/
H A DAlignmentFromAssumptions.cpp272 if (PtrToIntInst *PToI = dyn_cast<PtrToIntInst>(AndLHS)) { in extractAlignmentInfo()
281 if (PtrToIntInst *PToI = dyn_cast<PtrToIntInst>(OpUnk->getValue())) { in extractAlignmentInfo()
H A DGVN.cpp885 StoredVal = new PtrToIntInst(StoredVal, StoredValTy, "", InsertPt); in CoerceAvailableValueToLoadType()
910 StoredVal = new PtrToIntInst(StoredVal, StoredValTy, "", InsertPt); in CoerceAvailableValueToLoadType()
/minix3/external/bsd/llvm/dist/llvm/include/llvm/Analysis/
H A DPtrUseVisitor.h242 void visitPtrToIntInst(PtrToIntInst &I) { in visitPtrToIntInst()
/minix3/external/bsd/llvm/dist/llvm/lib/Transforms/ObjCARC/
H A DProvenanceAnalysis.cpp94 if (isa<PtrToIntInst>(P)) in IsStoredObjCPointer()
/minix3/external/bsd/llvm/dist/llvm/lib/CodeGen/
H A DStackProtector.cpp161 } else if (const PtrToIntInst *SI = dyn_cast<PtrToIntInst>(U)) { in HasAddressTaken()
H A DAnalysis.cpp261 } else if (isa<PtrToIntInst>(I)) { in getNoopInput()
/minix3/external/bsd/llvm/dist/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.h168 void visitPtrToIntInst(PtrToIntInst &I);
H A DExecution.cpp1699 void Interpreter::visitPtrToIntInst(PtrToIntInst &I) { in visitPtrToIntInst()
/minix3/external/bsd/llvm/dist/llvm/include/llvm/IR/
H A DInstVisitor.h191 RetTy visitPtrToIntInst(PtrToIntInst &I) { DELEGATE(CastInst);} in visitPtrToIntInst()
H A DInstruction.def154 HANDLE_CAST_INST(42, PtrToInt, PtrToIntInst) // Pointer -> Integer
H A DInstructions.h3695 class PtrToIntInst : public CastInst {
3698 PtrToIntInst *clone_impl() const override;
3702 PtrToIntInst(
3710 PtrToIntInst(
/minix3/external/bsd/llvm/dist/llvm/lib/IR/
H A DInstructions.cpp2420 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertBefore); in Create()
2442 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertAtEnd); in Create()
3076 PtrToIntInst::PtrToIntInst( in PtrToIntInst() function in PtrToIntInst
3082 PtrToIntInst::PtrToIntInst( in PtrToIntInst() function in PtrToIntInst
3733 PtrToIntInst *PtrToIntInst::clone_impl() const { in clone_impl()
3734 return new PtrToIntInst(getOperand(0), getType()); in clone_impl()
H A DVerifier.cpp321 void visitPtrToIntInst(PtrToIntInst &I);
1469 void Verifier::visitPtrToIntInst(PtrToIntInst &I) { in visitPtrToIntInst()
/minix3/external/bsd/llvm/dist/llvm/lib/Analysis/IPA/
H A DInlineCost.cpp128 bool visitPtrToInt(PtrToIntInst &I);
398 bool CallAnalyzer::visitPtrToInt(PtrToIntInst &I) { in visitPtrToInt()
/minix3/external/bsd/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstCombine.h216 Instruction *visitPtrToInt(PtrToIntInst &CI);
H A DInstCombineCasts.cpp1458 assert(isa<PtrToIntInst>(CI)); in commonPointerCastTransforms()
1459 return new PtrToIntInst(NGEP, CI.getType()); in commonPointerCastTransforms()
1467 Instruction *InstCombiner::visitPtrToInt(PtrToIntInst &CI) { in visitPtrToInt()
H A DInstCombineCompares.cpp1936 } else if (PtrToIntInst *RHSC = dyn_cast<PtrToIntInst>(ICI.getOperand(1))) { in visitICmpInstWithCastAndCast()
/minix3/external/bsd/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.h63 class PtrToIntInst; variable
/minix3/external/bsd/llvm/dist/llvm/include/llvm-c/
H A DCore.h1220 macro(PtrToIntInst) \
/minix3/external/bsd/llvm/dist/llvm/lib/Analysis/
H A DInstructionSimplify.cpp2356 if (MaxRecurse && Q.DL && isa<PtrToIntInst>(LI) && in SimplifyICmpInst()
2364 } else if (PtrToIntInst *RI = dyn_cast<PtrToIntInst>(RHS)) { in SimplifyICmpInst()
/minix3/external/bsd/llvm/dist/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp809 return V->getType()->isPointerTy() || isa<PtrToIntInst>(V); in isPointerOperand()
H A DMemorySanitizer.cpp1236 void visitPtrToIntInst(PtrToIntInst &I) { in visitPtrToIntInst()
/minix3/external/bsd/llvm/dist/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp567 if (PtrToIntInst *PTII = dyn_cast<PtrToIntInst>(CV)) { in isValueEqualityComparison()