Searched refs:PointerTy (Results 1 - 13 of 13) sorted by relevance

/external/llvm/include/llvm/ADT/
H A DPointerIntPair.h39 template <typename PointerTy, unsigned IntBits, typename IntType=unsigned,
40 typename PtrTraits = PointerLikeTypeTraits<PointerTy> >
60 PointerIntPair(PointerTy Ptr, IntType Int) : Value(0) {
67 PointerTy getPointer() const {
76 void setPointer(PointerTy Ptr) {
94 PointerTy const *getAddrOfPointer() const {
98 PointerTy *getAddrOfPointer() {
102 return reinterpret_cast<PointerTy *>(&Value);
121 template<typename PointerTy, unsigned IntBits, typename IntType>
122 struct isPodLike<PointerIntPair<PointerTy, IntBit
[all...]
/external/llvm/include/llvm/ExecutionEngine/
H A DGenericValue.h23 typedef void* PointerTy; typedef in namespace:llvm
30 PointerTy PointerVal;
/external/clang/lib/CodeGen/
H A DCGRTTI.cpp213 static bool TypeInfoIsInStandardLibrary(const PointerType *PointerTy) { argument
214 QualType PointeeTy = PointerTy->getPointeeType();
238 if (const PointerType *PointerTy = dyn_cast<PointerType>(Ty))
239 return TypeInfoIsInStandardLibrary(PointerTy);
290 if (const PointerType *PointerTy = dyn_cast<PointerType>(Ty))
291 return ContainsIncompleteClassType(PointerTy->getPointeeType());
H A DCodeGenFunction.cpp230 llvm::PointerType *PointerTy = Int8PtrTy; local
231 llvm::Type *ProfileFuncArgs[] = { PointerTy, PointerTy };
242 llvm::ConstantExpr::getBitCast(CurFn, PointerTy),
/external/llvm/lib/Target/Hexagon/
H A DHexagonISelDAGToDAG.cpp308 MVT PointerTy = TLI.getPointerTy(); local
312 CurDAG->getTargetGlobalAddress(GV, dl, PointerTy, 0);
314 dl, PointerTy,
324 SDValue TargetConstOff = CurDAG->getTargetConstant(Offset, PointerTy);
682 MVT PointerTy = TLI.getPointerTy(); local
686 CurDAG->getTargetGlobalAddress(GV, dl, PointerTy, 0);
688 dl, PointerTy,
699 CurDAG->getTargetConstant(Offset,PointerTy),
/external/llvm/include/llvm/Target/
H A DTargetLowering.h134 MVT getPointerTy() const { return PointerTy; }
513 if (Ty->isPointerTy()) return PointerTy;
520 Elm = EVT(PointerTy).getTypeForEVT(Ty->getContext());
1675 /// PointerTy - The type to use for pointers, usually i32 or i64.
1677 MVT PointerTy;
/external/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp285 // Endian safe: Array[i] = (PointerTy)Dest;
656 GV.PointerVal = PointerTy(uintptr_t(GV.IntVal.getZExtValue()));
875 if (StoreBytes != sizeof(PointerTy))
878 *((PointerTy*)Ptr) = Val.PointerVal;
935 Result.PointerVal = *((PointerTy*)Ptr);
/external/llvm/include/llvm-c/
H A DCore.h909 unsigned LLVMGetPointerAddressSpace(LLVMTypeRef PointerTy);
/external/clang/lib/Sema/
H A DSemaOverload.cpp6098 const PointerType *PointerTy = Ty->getAs<PointerType>(); local
6100 if (!PointerTy) {
6109 PointeeTy = PointerTy->getPointeeType();
6156 const MemberPointerType *PointerTy = Ty->getAs<MemberPointerType>(); local
6157 assert(PointerTy && "type was not a member pointer type!");
6159 QualType PointeeTy = PointerTy->getPointeeType();
6166 const Type *ClassTy = PointerTy->getClass();
H A DSemaExpr.cpp4539 /// \brief Return false if the NullExpr can be promoted to PointerTy,
4542 QualType PointerTy) {
4543 if ((!PointerTy->isAnyPointerType() && !PointerTy->isBlockPointerType()) ||
4548 NullExpr = S.ImpCastExprToType(NullExpr.take(), PointerTy, CK_NullToPointer);
4541 checkConditionalNullPointer(Sema &S, ExprResult &NullExpr, QualType PointerTy) argument
/external/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp1032 Dest.PointerVal = PointerTy(intptr_t(Src.IntVal.getZExtValue()));
/external/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp594 PointerTy = MVT::getIntegerVT(8*TD->getPointerSize());
920 return PointerTy.SimpleTy;
/external/llvm/lib/VMCore/
H A DCore.cpp377 unsigned LLVMGetPointerAddressSpace(LLVMTypeRef PointerTy) { argument
378 return unwrap<PointerType>(PointerTy)->getAddressSpace();

Completed in 285 milliseconds