Home
last modified time | relevance | path

Searched refs:IntPtr (Results 1 – 12 of 12) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/Object/
H A DCOFFObjectFile.cpp537 uintptr_t IntPtr = 0; in getHintName() local
592 uintptr_t IntPtr = 0; in initImportTablePtr() local
615 uintptr_t IntPtr = 0; in initDelayImportTablePtr() local
639 uintptr_t IntPtr = 0; in initExportTablePtr() local
658 uintptr_t IntPtr = 0; in initBaseRelocPtr() local
666 IntPtr); in initBaseRelocPtr()
689 uintptr_t IntPtr = 0; in initDebugDirectoryPtr() local
724 uintptr_t IntPtr = 0; in initTLSDirectoryPtr() local
748 uintptr_t IntPtr = 0; in initLoadConfigPtr() local
1468 uintptr_t IntPtr = 0; in importedSymbolBegin() local
[all …]
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/orc/
H A Dexecutor_address.h85 uintptr_t IntPtr = static_cast<uintptr_t>(Addr); variable
86 assert(IntPtr == Addr && "ExecutorAddr value out of range for uintptr_t");
87 return Wrap(reinterpret_cast<T>(IntPtr));
94 uintptr_t IntPtr = static_cast<uintptr_t>(Addr); variable
95 assert(IntPtr == Addr && "ExecutorAddr value out of range for uintptr_t");
96 return Wrap(reinterpret_cast<T *>(IntPtr));
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Shared/
H A DExecutorAddress.h90 uintptr_t IntPtr = static_cast<uintptr_t>(Addr); variable
91 assert(IntPtr == Addr && "ExecutorAddr value out of range for uintptr_t");
92 return Wrap(reinterpret_cast<T>(IntPtr));
100 uintptr_t IntPtr = static_cast<uintptr_t>(Addr); variable
101 assert(IntPtr == Addr && "ExecutorAddr value out of range for uintptr_t");
102 return Wrap(reinterpret_cast<T *>(IntPtr));
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DR600ISelDAGToDAG.cpp26 bool SelectGlobalValueConstantOffset(SDValue Addr, SDValue &IntPtr);
69 SDValue &IntPtr) { in SelectGlobalValueConstantOffset() argument
71 IntPtr = in SelectGlobalValueConstantOffset()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DIntrinsicLowering.cpp337 Type *IntPtr = DL.getIntPtrType(Context); in LowerIntrinsicCall() local
338 Value *Size = Builder.CreateIntCast(CI->getArgOperand(2), IntPtr, in LowerIntrinsicCall()
348 Type *IntPtr = DL.getIntPtrType(Context); in LowerIntrinsicCall() local
349 Value *Size = Builder.CreateIntCast(CI->getArgOperand(2), IntPtr, in LowerIntrinsicCall()
360 Type *IntPtr = DL.getIntPtrType(Op0->getType()); in LowerIntrinsicCall() local
361 Value *Size = Builder.CreateIntCast(CI->getArgOperand(2), IntPtr, in LowerIntrinsicCall()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/
H A DJITSymbol.h52 uintptr_t IntPtr = static_cast<uintptr_t>(Addr); in jitTargetAddressToPointer() local
53 assert(IntPtr == Addr && "JITTargetAddress value out of range for uintptr_t"); in jitTargetAddressToPointer()
54 return reinterpret_cast<T>(IntPtr); in jitTargetAddressToPointer()
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp404 uintptr_t IntPtr = 0; in printSEHTable() local
405 if (Error E = Obj->getVaPtr(TableVA, IntPtr)) in printSEHTable()
408 const support::ulittle32_t *P = (const support::ulittle32_t *)IntPtr; in printSEHTable()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopIdiomRecognize.cpp971 Type *IntPtr, const SCEV *StoreSizeSCEV, in getStartForNegStride() argument
973 const SCEV *Index = SE->getTruncateOrZeroExtend(BECount, IntPtr); in getStartForNegStride()
977 SE->getTruncateOrZeroExtend(StoreSizeSCEV, IntPtr), in getStartForNegStride()
988 static const SCEV *getNumBytes(const SCEV *BECount, Type *IntPtr, in getNumBytes() argument
992 SE->getTripCountFromExitCount(BECount, IntPtr, CurLoop); in getNumBytes()
994 SE->getTruncateOrZeroExtend(StoreSizeSCEV, IntPtr), in getNumBytes()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprScalar.cpp5424 auto *IntPtr = Builder.CreatePtrToInt(Ptr, IntPtrTy); in EmitCheckedInBoundsGEP() local
5425 auto *ComputedGEP = Builder.CreateAdd(IntPtr, EvaluatedGEP.TotalOffset); in EmitCheckedInBoundsGEP()
5463 auto *PosOrZeroValid = Builder.CreateICmpUGE(ComputedGEP, IntPtr); in EmitCheckedInBoundsGEP()
5466 llvm::Value *NegValid = Builder.CreateICmpULT(ComputedGEP, IntPtr); in EmitCheckedInBoundsGEP()
5474 ValidGEP = Builder.CreateICmpUGE(ComputedGEP, IntPtr); in EmitCheckedInBoundsGEP()
5480 ValidGEP = Builder.CreateICmpULE(ComputedGEP, IntPtr); in EmitCheckedInBoundsGEP()
5490 llvm::Value *DynamicArgs[] = {IntPtr, ComputedGEP}; in EmitCheckedInBoundsGEP()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp67 SDValue IntPtr; member
1584 SDValue IntPtr; in getSignAsIntValue() local
1588 IntPtr = StackPtr; in getSignAsIntValue()
1593 IntPtr = in getSignAsIntValue()
1599 State.IntPtr = IntPtr; in getSignAsIntValue()
1600 State.IntValue = DAG.getExtLoad(ISD::EXTLOAD, DL, LoadTy, State.Chain, IntPtr, in getSignAsIntValue()
1615 SDValue Chain = DAG.getTruncStore(State.Chain, DL, NewIntValue, State.IntPtr, in modifySignAsInt()
H A DSelectionDAGBuilder.cpp4250 EVT IntPtr = TLI.getPointerTy(DL, I.getAddressSpace()); in visitAlloca() local
4251 if (AllocSize.getValueType() != IntPtr) in visitAlloca()
4252 AllocSize = DAG.getZExtOrTrunc(AllocSize, dl, IntPtr); in visitAlloca()
4255 AllocSize = DAG.getNode(ISD::MUL, dl, IntPtr, AllocSize, in visitAlloca()
4256 DAG.getVScale(dl, IntPtr, in visitAlloca()
4257 APInt(IntPtr.getScalarSizeInBits(), in visitAlloca()
4262 AllocSize = DAG.getNode(ISD::MUL, dl, IntPtr, AllocSize, in visitAlloca()
4263 DAG.getZExtOrTrunc(TySizeValue, dl, IntPtr)); in visitAlloca()
4280 DAG.getConstant(StackAlignMask, dl, IntPtr), Flags); in visitAlloca()
4284 DAG.getConstant(~StackAlignMask, dl, IntPtr)); in visitAlloca()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DOpenCLBuiltins.td374 def IntPtr : Type<"intptr_t", QualType<"Context.getIntPtrType()">>;