| /freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
| H A D | WebAssemblyLowerRefTypesIntPtrConv.cpp | 64 PtrToIntInst *PTI = dyn_cast<PtrToIntInst>(&*I); in runOnFunction()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/ |
| H A D | ProvenanceAnalysis.cpp | 102 if (isa<PtrToIntInst>(P)) in IsStoredObjCPointer()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | PtrUseVisitor.h | 268 void visitPtrToIntInst(PtrToIntInst &I) { in visitPtrToIntInst()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/ |
| H A D | NVPTXLowerArgs.cpp | 302 if (auto *PI = dyn_cast<PtrToIntInst>(I.OldInstruction)) { in INITIALIZE_PASS_DEPENDENCY() 478 void visitPtrToIntInst(PtrToIntInst &I) { in visitPtrToIntInst()
|
| /freebsd/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()
|
| /freebsd/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 | 4913 class PtrToIntInst : public CastInst { 4919 LLVM_ABI PtrToIntInst *cloneImpl() const; 4924 PtrToIntInst(Value *S, ///< The value to be converted
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | StackProtector.cpp | 295 if (AI == cast<PtrToIntInst>(I)->getOperand(0)) in HasAddressTaken()
|
| H A D | Analysis.cpp | 324 } else if (isa<PtrToIntInst>(I)) { in getNoopInput()
|
| /freebsd/contrib/llvm-project/llvm/lib/IR/ |
| H A D | Instructions.cpp | 3049 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertBefore); in Create() 3457 PtrToIntInst::PtrToIntInst(Value *S, Type *Ty, const Twine &Name, in PtrToIntInst() function in PtrToIntInst 4426 PtrToIntInst *PtrToIntInst::cloneImpl() const { in cloneImpl() 4427 return new PtrToIntInst(getOperand(0), getType()); in cloneImpl()
|
| /freebsd/contrib/llvm-project/lldb/source/Expression/ |
| H A D | IRInterpreter.cpp | 1216 const PtrToIntInst *ptr_to_int_inst = cast<PtrToIntInst>(inst); in Interpret()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombinePHI.cpp | 179 if (auto *PI = dyn_cast<PtrToIntInst>(Arg)) { in foldIntegerTypedPHI() 342 if (!all_of(PN.users(), [](User *U) { return isa<PtrToIntInst>(U); })) in foldPHIArgIntToPtrToPHI()
|
| H A D | InstCombineInternal.h | 144 Instruction *visitPtrToInt(PtrToIntInst &CI);
|
| H A D | InstructionCombining.cpp | 417 auto *PtrToInt = dyn_cast<PtrToIntInst>(IntToPtr->getOperand(0)); in simplifyIntToPtrRoundTripCast() 3221 isa<PtrToIntInst>(U.getUser()); in visitGetElementPtrInst()
|
| /freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | Loads.cpp | 806 if (isa<ICmpInst, PtrToIntInst>(User)) in isPointerUseReplacable()
|
| H A D | InlineCost.cpp | 500 bool visitPtrToInt(PtrToIntInst &I); 1887 bool CallAnalyzer::visitPtrToInt(PtrToIntInst &I) { in visitPtrToInt()
|
| H A D | VectorUtils.cpp | 883 if (isa<BitCastInst>(I) || isa<PtrToIntInst>(I) || isa<IntToPtrInst>(I) || in computeMinimumValueSizes()
|
| H A D | InstructionSimplify.cpp | 3805 if (MaxRecurse && isa<PtrToIntInst>(LI) && in simplifyICmpInst() 3813 } else if (PtrToIntInst *RI = dyn_cast<PtrToIntInst>(RHS)) { in simplifyICmpInst()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
| H A D | AddressSanitizer.cpp | 1602 return V->getType()->isPointerTy() || isa<PtrToIntInst>(V); in isPointerOperand() 3633 isa<PtrToIntInst>(LocalStackBaseAlloca) in processStaticAllocas() 3634 ? cast<PtrToIntInst>(LocalStackBaseAlloca)->getPointerOperand() in processStaticAllocas()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPULowerBufferFatPointers.cpp | 1364 PtrParts visitPtrToIntInst(PtrToIntInst &PI); 1924 PtrParts SplitPtrStructs::visitPtrToIntInst(PtrToIntInst &PI) { in visitPtrToIntInst()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | SimplifyIndVar.cpp | 952 if ((isa<PtrToIntInst>(UseInst)) || (isa<TruncInst>(UseInst))) in simplifyUsers()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm-c/ |
| H A D | Core.h | 1955 macro(PtrToIntInst) \
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/SandboxIR/ |
| H A D | Instruction.h | 2367 class PtrToIntInst final : public CastInstImpl<Instruction::Opcode::PtrToInt> {
|