Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/
H A DAlignmentFromAssumptions.cpp263 if (PtrToIntInst *PToI = dyn_cast<PtrToIntInst>(AndLHS)) { in extractAlignmentInfo()
272 if (PtrToIntInst *PToI = dyn_cast<PtrToIntInst>(OpUnk->getValue())) { in extractAlignmentInfo()
/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DStackProtector.cpp165 } else if (const PtrToIntInst *SI = dyn_cast<PtrToIntInst>(U)) { in HasAddressTaken()
H A DAnalysis.cpp262 } else if (isa<PtrToIntInst>(I)) { in getNoopInput()
/freebsd-12.1/contrib/llvm/include/llvm/Analysis/
H A DPtrUseVisitor.h260 void visitPtrToIntInst(PtrToIntInst &I) { in visitPtrToIntInst()
/freebsd-12.1/contrib/llvm/lib/Transforms/ObjCARC/
H A DProvenanceAnalysis.cpp104 if (isa<PtrToIntInst>(P)) in IsStoredObjCPointer()
/freebsd-12.1/contrib/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.h147 void visitPtrToIntInst(PtrToIntInst &I);
H A DExecution.cpp1699 void Interpreter::visitPtrToIntInst(PtrToIntInst &I) { in visitPtrToIntInst()
/freebsd-12.1/contrib/llvm/lib/IR/
H A DInstructions.cpp2587 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertBefore); in Create()
2609 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertAtEnd); in Create()
3235 PtrToIntInst::PtrToIntInst( in PtrToIntInst() function in PtrToIntInst
3241 PtrToIntInst::PtrToIntInst( in PtrToIntInst() function in PtrToIntInst
3909 PtrToIntInst *PtrToIntInst::cloneImpl() const { in cloneImpl()
3910 return new PtrToIntInst(getOperand(0), getType()); in cloneImpl()
H A DVerifier.cpp445 void visitPtrToIntInst(PtrToIntInst &I);
2652 void Verifier::visitPtrToIntInst(PtrToIntInst &I) { in visitPtrToIntInst()
/freebsd-12.1/contrib/llvm/include/llvm/IR/
H A DInstVisitor.h188 RetTy visitPtrToIntInst(PtrToIntInst &I) { DELEGATE(CastInst);} in visitPtrToIntInst()
H A DInstruction.def193 HANDLE_CAST_INST(46, PtrToInt, PtrToIntInst) // Pointer -> Integer
H A DInstructions.h4805 class PtrToIntInst : public CastInst {
4811 PtrToIntInst *cloneImpl() const;
4815 PtrToIntInst(
4823 PtrToIntInst(
/freebsd-12.1/contrib/llvm/lib/Analysis/
H A DCFLGraph.h275 void visitPtrToIntInst(PtrToIntInst &Inst) { in visitPtrToIntInst()
H A DInlineCost.cpp252 bool visitPtrToInt(PtrToIntInst &I);
644 bool CallAnalyzer::visitPtrToInt(PtrToIntInst &I) { in visitPtrToInt()
H A DVectorUtils.cpp403 if (isa<BitCastInst>(I) || isa<PtrToIntInst>(I) || isa<IntToPtrInst>(I) || in computeMinimumValueSizes()
H A DInstructionSimplify.cpp3372 if (MaxRecurse && isa<PtrToIntInst>(LI) && in SimplifyICmpInst()
3380 } else if (PtrToIntInst *RI = dyn_cast<PtrToIntInst>(RHS)) { in SimplifyICmpInst()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Expression/
H A DIRInterpreter.cpp1234 const PtrToIntInst *ptr_to_int_inst = dyn_cast<PtrToIntInst>(inst); in Interpret()
/freebsd-12.1/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineInternal.h389 Instruction *visitPtrToInt(PtrToIntInst &CI);
H A DInstCombinePHI.cpp136 if (auto *PI = dyn_cast<PtrToIntInst>(Arg)) { in FoldIntegerTypedPHI()
H A DInstCombineCompares.cpp576 if (!isa<IntToPtrInst>(V) && !isa<PtrToIntInst>(V) && in canRewriteGEPAsOffset()
582 if (isa<IntToPtrInst>(V) || isa<PtrToIntInst>(V)) { in canRewriteGEPAsOffset()
816 if (auto *CI = dyn_cast<PtrToIntInst>(V)) { in getAsConstantIndexedAddress()
H A DInstCombineCasts.cpp1798 Instruction *InstCombiner::visitPtrToInt(PtrToIntInst &CI) { in visitPtrToInt()
/freebsd-12.1/contrib/llvm/include/llvm-c/
H A DCore.h1586 macro(PtrToIntInst) \
/freebsd-12.1/contrib/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp707 if (PtrToIntInst *PTII = dyn_cast<PtrToIntInst>(CV)) { in isValueEqualityComparison()
/freebsd-12.1/contrib/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp1309 return V->getType()->isPointerTy() || isa<PtrToIntInst>(V); in isPointerOperand()
H A DMemorySanitizer.cpp1882 void visitPtrToIntInst(PtrToIntInst &I) { in visitPtrToIntInst()