Home
last modified time | relevance | path

Searched refs:PointerTy (Results 1 – 9 of 9) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DPointerIntPair.h43 template <typename PointerTy, unsigned IntBits, typename IntType = unsigned,
44 typename PtrTraits = PointerLikeTypeTraits<PointerTy>,
45 typename Info = PointerIntPairInfo<PointerTy, IntBits, PtrTraits>>
51 PointerIntPair(PointerTy PtrVal, IntType IntVal) { in PointerIntPair()
54 explicit PointerIntPair(PointerTy PtrVal) { initWithPointer(PtrVal); } in PointerIntPair()
56 PointerTy getPointer() const { return Info::getPointer(Value); } in getPointer()
62 void setPointer(PointerTy PtrVal) { in setPointer()
70 void initWithPointer(PointerTy PtrVal) { in initWithPointer()
74 void setPointerAndInt(PointerTy PtrVal, IntType IntVal) { in setPointerAndInt()
79 PointerTy const *getAddrOfPointer() const { in getAddrOfPointer()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DPointerIntPair.h42 template <typename PointerTy, unsigned IntBits, typename IntType = unsigned,
43 typename PtrTraits = PointerLikeTypeTraits<PointerTy>,
44 typename Info = PointerIntPairInfo<PointerTy, IntBits, PtrTraits>>
53 PointerIntPair(PointerTy PtrVal, IntType IntVal) { in PointerIntPair()
57 explicit PointerIntPair(PointerTy PtrVal) { initWithPointer(PtrVal); } in PointerIntPair()
59 PointerTy getPointer() const { return Info::getPointer(Value); } in getPointer()
63 void setPointer(PointerTy PtrVal) LLVM_LVALUE_FUNCTION { in setPointer()
71 void initWithPointer(PointerTy PtrVal) LLVM_LVALUE_FUNCTION { in initWithPointer()
75 void setPointerAndInt(PointerTy PtrVal, IntType IntVal) LLVM_LVALUE_FUNCTION { in setPointerAndInt()
80 PointerTy const *getAddrOfPointer() const { in getAddrOfPointer()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/
DGenericValue.h21 using PointerTy = void *; variable
31 PointerTy PointerVal;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/
DExecutionEngine.cpp749 GV.PointerVal = PointerTy(uintptr_t(GV.IntVal.getZExtValue())); in getConstantValue()
1044 if (StoreBytes != sizeof(PointerTy)) in StoreValueToMemory()
1047 *((PointerTy*)Ptr) = Val.PointerVal; in StoreValueToMemory()
1089 Result.PointerVal = *((PointerTy*)Ptr); in LoadValueFromMemory()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DSROA.cpp1580 APInt Offset, Type *PointerTy, Twine NamePrefix) { in getAdjustedPtr() argument
1598 PointerType *TargetPtrTy = cast<PointerType>(PointerTy); in getAdjustedPtr()
1605 PointerTy = TargetTy->getPointerTo(AS); in getAdjustedPtr()
1634 if (P->getType() == PointerTy) in getAdjustedPtr()
1660 Ptr, IRB.getInt8PtrTy(PointerTy->getPointerAddressSpace()), in getAdjustedPtr()
2389 Value *getNewAllocaSlicePtr(IRBuilderTy &IRB, Type *PointerTy) { in getNewAllocaSlicePtr() argument
2417 APInt(DL.getIndexTypeSizeInBits(PointerTy), Offset), in getNewAllocaSlicePtr()
2418 PointerTy, in getNewAllocaSlicePtr()
3096 Type *PointerTy = IRB.getInt8PtrTy(OldPtr->getType()->getPointerAddressSpace()); in visitIntrinsicInst() local
3097 Value *Ptr = getNewAllocaSlicePtr(IRB, PointerTy); in visitIntrinsicInst()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DTargetLowering.h1236 EVT PointerTy(getPointerTy(DL, PTy->getAddressSpace()));
1237 EltTy = PointerTy.getTypeForEVT(Ty->getContext());
1254 EVT PointerTy(getPointerMemTy(DL, PT->getAddressSpace()));
1255 Elm = PointerTy.getTypeForEVT(Ty->getContext());
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm-c/
DCore.h1425 unsigned LLVMGetPointerAddressSpace(LLVMTypeRef PointerTy);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DCore.cpp770 unsigned LLVMGetPointerAddressSpace(LLVMTypeRef PointerTy) { in LLVMGetPointerAddressSpace() argument
771 return unwrap<PointerType>(PointerTy)->getAddressSpace(); in LLVMGetPointerAddressSpace()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Interpreter/
DExecution.cpp1536 Dest.PointerVal = PointerTy(intptr_t(Src.IntVal.getZExtValue())); in executeIntToPtrInst()