| /src/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
| H A D | WebAssemblyLowerRefTypesIntPtrConv.cpp | 64 PtrToIntInst *PTI = dyn_cast<PtrToIntInst>(&*I); in runOnFunction()
|
| /src/contrib/llvm-project/llvm/lib/Target/NVPTX/ |
| H A D | NVPTXLowerArgs.cpp | 283 if (auto *PI = dyn_cast<PtrToIntInst>(I.OldInstruction)) { in INITIALIZE_PASS_DEPENDENCY() 397 isa<PtrToIntInst>(CurUser))) in adjustByValArgAlignment() 433 (isa<CallInst>(V) || isa<StoreInst>(V) || isa<PtrToIntInst>(V))) in handleByValParam() 448 !isa<PtrToIntInst>(V)) in handleByValParam()
|
| /src/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/ |
| H A D | ProvenanceAnalysis.cpp | 100 if (isa<PtrToIntInst>(P)) in IsStoredObjCPointer()
|
| /src/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | PtrUseVisitor.h | 255 void visitPtrToIntInst(PtrToIntInst &I) { in visitPtrToIntInst()
|
| /src/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/ |
| H A D | Interpreter.h | 146 void visitPtrToIntInst(PtrToIntInst &I);
|
| H A D | Execution.cpp | 1711 void Interpreter::visitPtrToIntInst(PtrToIntInst &I) { in visitPtrToIntInst()
|
| /src/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | InstVisitor.h | 185 RetTy visitPtrToIntInst(PtrToIntInst &I) { DELEGATE(CastInst);} in visitPtrToIntInst()
|
| H A D | Instruction.def | 193 HANDLE_CAST_INST(47, PtrToInt, PtrToIntInst) // Pointer -> Integer
|
| H A D | Instructions.h | 4741 class PtrToIntInst : public CastInst { 4747 PtrToIntInst *cloneImpl() const; 4751 PtrToIntInst(Value *S, ///< The value to be converted
|
| /src/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | StackProtector.cpp | 279 if (AI == cast<PtrToIntInst>(I)->getOperand(0)) in HasAddressTaken()
|
| H A D | Analysis.cpp | 324 } else if (isa<PtrToIntInst>(I)) { in getNoopInput()
|
| /src/contrib/llvm-project/llvm/lib/IR/ |
| H A D | Instructions.cpp | 2986 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertBefore); in Create() 3403 PtrToIntInst::PtrToIntInst(Value *S, Type *Ty, const Twine &Name, in PtrToIntInst() function in PtrToIntInst 4294 PtrToIntInst *PtrToIntInst::cloneImpl() const { in cloneImpl() 4295 return new PtrToIntInst(getOperand(0), getType()); in cloneImpl()
|
| /src/contrib/llvm-project/lldb/source/Expression/ |
| H A D | IRInterpreter.cpp | 1234 const PtrToIntInst *ptr_to_int_inst = cast<PtrToIntInst>(inst); in Interpret()
|
| /src/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombinePHI.cpp | 147 if (auto *PI = dyn_cast<PtrToIntInst>(Arg)) { in foldIntegerTypedPHI() 310 if (!all_of(PN.users(), [](User *U) { return isa<PtrToIntInst>(U); })) in foldPHIArgIntToPtrToPHI()
|
| H A D | InstCombineInternal.h | 145 Instruction *visitPtrToInt(PtrToIntInst &CI);
|
| H A D | InstructionCombining.cpp | 388 auto *PtrToInt = dyn_cast<PtrToIntInst>(IntToPtr->getOperand(0)); in simplifyIntToPtrRoundTripCast() 2936 isa<PtrToIntInst>(U.getUser()); in visitGetElementPtrInst()
|
| H A D | InstCombineCasts.cpp | 2028 Instruction *InstCombinerImpl::visitPtrToInt(PtrToIntInst &CI) { in visitPtrToInt()
|
| /src/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | Loads.cpp | 731 if (isa<ICmpInst, PtrToIntInst>(User)) in isPointerUseReplacable()
|
| H A D | InlineCost.cpp | 472 bool visitPtrToInt(PtrToIntInst &I); 1725 bool CallAnalyzer::visitPtrToInt(PtrToIntInst &I) { in visitPtrToInt()
|
| H A D | VectorUtils.cpp | 671 if (isa<BitCastInst>(I) || isa<PtrToIntInst>(I) || isa<IntToPtrInst>(I) || in computeMinimumValueSizes()
|
| H A D | InstructionSimplify.cpp | 3815 if (MaxRecurse && isa<PtrToIntInst>(LI) && in simplifyICmpInst() 3823 } else if (PtrToIntInst *RI = dyn_cast<PtrToIntInst>(RHS)) { in simplifyICmpInst()
|
| /src/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPULowerBufferFatPointers.cpp | 754 PtrParts visitPtrToIntInst(PtrToIntInst &PI); 1289 PtrParts SplitPtrStructs::visitPtrToIntInst(PtrToIntInst &PI) { in visitPtrToIntInst()
|
| /src/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
| H A D | AddressSanitizer.cpp | 1535 return V->getType()->isPointerTy() || isa<PtrToIntInst>(V); in isPointerOperand() 3552 isa<PtrToIntInst>(LocalStackBaseAlloca) in processStaticAllocas() 3553 ? cast<PtrToIntInst>(LocalStackBaseAlloca)->getPointerOperand() in processStaticAllocas()
|
| /src/contrib/llvm-project/llvm/include/llvm-c/ |
| H A D | Core.h | 1903 macro(PtrToIntInst) \
|
| /src/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | SimplifyIndVar.cpp | 950 if ((isa<PtrToIntInst>(UseInst)) || (isa<TruncInst>(UseInst))) in simplifyUsers()
|