Searched defs:PointerTy (Results 1 - 7 of 7) sorted by relevance

/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.cpp212 static bool TypeInfoIsInStandardLibrary(const PointerType *PointerTy) { argument
213 QualType PointeeTy = PointerTy->getPointeeType();
237 if (const PointerType *PointerTy = dyn_cast<PointerType>(Ty))
238 return TypeInfoIsInStandardLibrary(PointerTy);
289 if (const PointerType *PointerTy = dyn_cast<PointerType>(Ty))
290 return ContainsIncompleteClassType(PointerTy->getPointeeType());
H A DCodeGenFunction.cpp231 llvm::PointerType *PointerTy = Int8PtrTy; local
232 llvm::Type *ProfileFuncArgs[] = { PointerTy, PointerTy };
243 llvm::ConstantExpr::getBitCast(CurFn, PointerTy),
/external/llvm/lib/Target/Hexagon/
H A DHexagonISelDAGToDAG.cpp310 MVT PointerTy = TLI.getPointerTy(); local
314 CurDAG->getTargetGlobalAddress(GV, dl, PointerTy, 0);
316 dl, PointerTy,
326 SDValue TargetConstOff = CurDAG->getTargetConstant(Offset, PointerTy);
684 MVT PointerTy = TLI.getPointerTy(); local
688 CurDAG->getTargetGlobalAddress(GV, dl, PointerTy, 0);
690 dl, PointerTy,
701 CurDAG->getTargetConstant(Offset,PointerTy),
/external/llvm/lib/VMCore/
H A DCore.cpp396 unsigned LLVMGetPointerAddressSpace(LLVMTypeRef PointerTy) { argument
397 return unwrap<PointerType>(PointerTy)->getAddressSpace();
/external/clang/lib/Sema/
H A DSemaExpr.cpp4726 /// \brief Return false if the NullExpr can be promoted to PointerTy,
4729 QualType PointerTy) {
4730 if ((!PointerTy->isAnyPointerType() && !PointerTy->isBlockPointerType()) ||
4735 NullExpr = S.ImpCastExprToType(NullExpr.take(), PointerTy, CK_NullToPointer);
4728 checkConditionalNullPointer(Sema &S, ExprResult &NullExpr, QualType PointerTy) argument
H A DSemaOverload.cpp6116 const PointerType *PointerTy = Ty->getAs<PointerType>(); local
6118 if (!PointerTy) {
6123 PointeeTy = PointerTy->getPointeeType();
6183 const MemberPointerType *PointerTy = Ty->getAs<MemberPointerType>(); local
6184 assert(PointerTy && "type was not a member pointer type!");
6186 QualType PointeeTy = PointerTy->getPointeeType();
6193 const Type *ClassTy = PointerTy->getClass();

Completed in 2399 milliseconds