Home
last modified time | relevance | path

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

123456789

/third_party/node/deps/v8/src/base/
Dpointer-with-payload.h16 template <typename PointerType>
19 alignof(PointerType) >= 8 ? 3 : alignof(PointerType) >= 4 ? 2 : 1;
39 template <typename PointerType, typename PayloadType, int NumPayloadBits>
44 explicit PointerWithPayload(PointerType* pointer)
56 PointerWithPayload(PointerType* pointer, PayloadType payload) {
60 V8_INLINE PointerType* GetPointer() const {
61 return reinterpret_cast<PointerType*>(pointer_with_payload_ & kPointerMask);
65 V8_INLINE PointerType* GetPointerWithKnownPayload(PayloadType payload) const {
67 return reinterpret_cast<PointerType*>(pointer_with_payload_ -
71 V8_INLINE PointerType* operator->() const { return GetPointer(); }
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/IR/
DType.h28 class PointerType; variable
400 static PointerType *getHalfPtrTy(LLVMContext &C, unsigned AS = 0);
401 static PointerType *getFloatPtrTy(LLVMContext &C, unsigned AS = 0);
402 static PointerType *getDoublePtrTy(LLVMContext &C, unsigned AS = 0);
403 static PointerType *getX86_FP80PtrTy(LLVMContext &C, unsigned AS = 0);
404 static PointerType *getFP128PtrTy(LLVMContext &C, unsigned AS = 0);
405 static PointerType *getPPC_FP128PtrTy(LLVMContext &C, unsigned AS = 0);
406 static PointerType *getX86_MMXPtrTy(LLVMContext &C, unsigned AS = 0);
407 static PointerType *getIntNPtrTy(LLVMContext &C, unsigned N, unsigned AS = 0);
408 static PointerType *getInt1PtrTy(LLVMContext &C, unsigned AS = 0);
[all …]
DDerivedTypes.h443 class PointerType : public Type {
444 explicit PointerType(Type *ElType, unsigned AddrSpace);
449 PointerType(const PointerType &) = delete;
450 PointerType &operator=(const PointerType &) = delete;
454 static PointerType *get(Type *ElementType, unsigned AddressSpace);
458 static PointerType *getUnqual(Type *ElementType) { in getUnqual()
459 return PointerType::get(ElementType, 0); in getUnqual()
480 return cast<PointerType>(getScalarType())->getAddressSpace(); in getPointerAddressSpace()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DType.h34 class PointerType; variable
445 static PointerType *getHalfPtrTy(LLVMContext &C, unsigned AS = 0);
446 static PointerType *getFloatPtrTy(LLVMContext &C, unsigned AS = 0);
447 static PointerType *getDoublePtrTy(LLVMContext &C, unsigned AS = 0);
448 static PointerType *getX86_FP80PtrTy(LLVMContext &C, unsigned AS = 0);
449 static PointerType *getFP128PtrTy(LLVMContext &C, unsigned AS = 0);
450 static PointerType *getPPC_FP128PtrTy(LLVMContext &C, unsigned AS = 0);
451 static PointerType *getX86_MMXPtrTy(LLVMContext &C, unsigned AS = 0);
452 static PointerType *getIntNPtrTy(LLVMContext &C, unsigned N, unsigned AS = 0);
453 static PointerType *getInt1PtrTy(LLVMContext &C, unsigned AS = 0);
[all …]
DDerivedTypes.h579 class PointerType : public Type {
580 explicit PointerType(Type *ElType, unsigned AddrSpace);
585 PointerType(const PointerType &) = delete;
586 PointerType &operator=(const PointerType &) = delete;
590 static PointerType *get(Type *ElementType, unsigned AddressSpace);
594 static PointerType *getUnqual(Type *ElementType) { in getUnqual()
595 return PointerType::get(ElementType, 0); in getUnqual()
636 return cast<PointerType>(getScalarType())->getAddressSpace(); in getPointerAddressSpace()
DInlineAsm.h27 class PointerType; variable
72 PointerType *getType() const { in getType()
73 return reinterpret_cast<PointerType*>(Value::getType()); in getType()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DType.cpp90 if (auto *PTy = dyn_cast<PointerType>(this)) { in canLosslesslyBitCastTo()
91 if (auto *OtherPTy = dyn_cast<PointerType>(Ty)) in canLosslesslyBitCastTo()
188 PointerType *Type::getHalfPtrTy(LLVMContext &C, unsigned AS) { in getHalfPtrTy()
192 PointerType *Type::getFloatPtrTy(LLVMContext &C, unsigned AS) { in getFloatPtrTy()
196 PointerType *Type::getDoublePtrTy(LLVMContext &C, unsigned AS) { in getDoublePtrTy()
200 PointerType *Type::getX86_FP80PtrTy(LLVMContext &C, unsigned AS) { in getX86_FP80PtrTy()
204 PointerType *Type::getFP128PtrTy(LLVMContext &C, unsigned AS) { in getFP128PtrTy()
208 PointerType *Type::getPPC_FP128PtrTy(LLVMContext &C, unsigned AS) { in getPPC_FP128PtrTy()
212 PointerType *Type::getX86_MMXPtrTy(LLVMContext &C, unsigned AS) { in getX86_MMXPtrTy()
216 PointerType *Type::getIntNPtrTy(LLVMContext &C, unsigned N, unsigned AS) { in getIntNPtrTy()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DLowerMemIntrinsics.cpp46 unsigned SrcAS = cast<PointerType>(SrcAddr->getType())->getAddressSpace(); in createMemCpyLoopKnownSize()
47 unsigned DstAS = cast<PointerType>(DstAddr->getType())->getAddressSpace(); in createMemCpyLoopKnownSize()
60 PointerType *SrcOpType = PointerType::get(LoopOpType, SrcAS); in createMemCpyLoopKnownSize()
61 PointerType *DstOpType = PointerType::get(LoopOpType, DstAS); in createMemCpyLoopKnownSize()
111 PointerType *SrcPtrType = PointerType::get(OpTy, SrcAS); in createMemCpyLoopKnownSize()
120 PointerType *DstPtrType = PointerType::get(OpTy, DstAS); in createMemCpyLoopKnownSize()
154 unsigned SrcAS = cast<PointerType>(SrcAddr->getType())->getAddressSpace(); in createMemCpyLoopUnknownSize()
155 unsigned DstAS = cast<PointerType>(DstAddr->getType())->getAddressSpace(); in createMemCpyLoopUnknownSize()
156 PointerType *SrcOpType = PointerType::get(LoopOpType, SrcAS); in createMemCpyLoopUnknownSize()
157 PointerType *DstOpType = PointerType::get(LoopOpType, DstAS); in createMemCpyLoopUnknownSize()
[all …]
/third_party/skia/third_party/externals/angle2/src/libANGLE/
Dentry_points_utils.h54 template <angle::EntryPoint EP, typename PointerType>
55 struct DefaultReturnValue<EP, const PointerType *>
57 static constexpr const PointerType *kValue = nullptr;
60 template <angle::EntryPoint EP, typename PointerType>
61 struct DefaultReturnValue<EP, PointerType *>
63 static constexpr PointerType *kValue = nullptr;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DBuiltinGCs.cpp77 const PointerType *PT = cast<PointerType>(Ty); in isGCManagedPointer()
109 const PointerType *PT = cast<PointerType>(Ty); in isGCManagedPointer()
DLowerEmuTLS.cpp87 PointerType *VoidPtrType = Type::getInt8PtrTy(C); in addEmuTlsVar()
116 PointerType *InitPtrType = InitValue ? in addEmuTlsVar()
117 PointerType::getUnqual(InitValue->getType()) : VoidPtrType; in addEmuTlsVar()
DShadowStackGCLowering.cpp190 PointerType *FrameMapPtrTy = PointerType::getUnqual(FrameMapTy); in doInitialization()
201 EltTys.push_back(PointerType::getUnqual(StackEntryTy)); in doInitialization()
204 PointerType *StackEntryPtrTy = PointerType::getUnqual(StackEntryTy); in doInitialization()
/third_party/json/docs/mkdocs/docs/api/basic_json/
Dget_ptr.md4 template<typename PointerType>
5 PointerType get_ptr() noexcept;
7 template<typename PointerType>
8 constexpr const PointerType get_ptr() const noexcept;
15 `PointerType`
Dget.md15 template<typename PointerType>
16 PointerType get_ptr();
18 template<typename PointerType>
19 constexpr const PointerType get_ptr() const noexcept;
74 `PointerType`
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Frontend/OpenMP/
DOMPConstants.cpp49 PointerType *llvm::omp::types::VarName##Ptr = nullptr;
52 PointerType *llvm::omp::types::VarName##Ptr = nullptr;
68 VarName##Ptr = PointerType::getUnqual(VarName); in initializeTypes()
74 VarName##Ptr = PointerType::getUnqual(T); in initializeTypes()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Frontend/OpenMP/
DOMPConstants.h24 class PointerType; variable
90 extern PointerType *VarName##Ptr;
93 extern PointerType *VarName##Ptr;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/
DNVPTXLowerArgs.cpp157 PointerType *PType = dyn_cast<PointerType>(Arg->getType()); in handleByValParam()
171 Arg, PointerType::get(StructType, ADDRESS_SPACE_PARAM), Arg->getName(), in handleByValParam()
195 Ptr, PointerType::get(Ptr->getType()->getPointerElementType(), in markPointerAsGlobal()
DNVPTXLowerAlloca.cpp73 auto ETy = cast<PointerType>(allocaInst->getType())->getElementType(); in runOnFunction()
74 auto LocalAddrTy = PointerType::get(ETy, ADDRESS_SPACE_LOCAL); in runOnFunction()
76 auto GenericAddrTy = PointerType::get(ETy, ADDRESS_SPACE_GENERIC); in runOnFunction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/CFGuard/
DCFGuard.cpp152 PointerType *GuardFnPtrType = nullptr;
194 PointerType *PTy = PointerType::get(CalledOperandType, 0); in insertCFGuardDispatch()
240 GuardFnPtrType = PointerType::get(GuardFnType, 0); in doInitialization()
/third_party/rust/crates/bindgen/bindgen-tests/tests/headers/
Dtemplateref_opaque.hpp5 struct PointerType { struct
11 typedef typename detail::PointerType<T> Pointer; argument
/third_party/vixl/src/aarch64/
Dpointer-auth-aarch64.cc133 uint64_t Simulator::CalculatePACMask(uint64_t ptr, PointerType type, int ttbr) { in CalculatePACMask()
145 PointerType type) { in AuthPAC()
167 PointerType type) { in AddPAC()
190 uint64_t Simulator::StripPAC(uint64_t ptr, PointerType type) { in StripPAC()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/FuzzMutate/
DRandomIRBuilder.cpp57 cast<PointerType>(Ptr->getType())->getElementType(), Ptr, "L", &*IP); in newSource()
127 Ptr = UndefValue::get(PointerType::get(V->getType(), 0)); in newSink()
142 if (auto PtrTy = dyn_cast<PointerType>(Inst->getType())) { in findPointer()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Coroutines/
DCoroInternal.h58 PointerType *const Int8Ptr;
153 PointerType *getSwitchResumePointerType() const { in getSwitchResumePointerType()
156 return cast<PointerType>(FrameTy->getElementType(SwitchFieldIndex::Resume)); in getSwitchResumePointerType()
/third_party/mesa3d/src/gallium/frontends/clover/llvm/codegen/
Dcommon.cpp206 isa< ::llvm::PointerType>(arg_type) && arg.hasByValAttr() ? in make_kernel_args()
207 cast< ::llvm::PointerType>(arg_type)->getPointerElementType() : arg_type; in make_kernel_args()
211 cast< ::llvm::PointerType>(actual_type)->getAddressSpace(); in make_kernel_args()
218 ::llvm::PointerType>(actual_type)->getPointerElementType(); in make_kernel_args()
/third_party/node/deps/v8/src/execution/arm64/
Dpointer-auth-arm64.cc211 uint64_t Simulator::CalculatePACMask(uint64_t ptr, PointerType type, int ttbr) { in CalculatePACMask()
220 PointerType type) { in AuthPAC()
243 PointerType type) { in AddPAC()
264 uint64_t Simulator::StripPAC(uint64_t ptr, PointerType type) { in StripPAC()

123456789