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

/external/llvm/include/llvm/ExecutionEngine/
H A DGenericValue.h23 typedef void* PointerTy; typedef in namespace:llvm
34 PointerTy PointerVal;
/external/clang/lib/CodeGen/
H A DCodeGenFunction.cpp308 llvm::PointerType *PointerTy = Int8PtrTy; local
309 llvm::Type *ProfileFuncArgs[] = { PointerTy, PointerTy };
320 llvm::ConstantExpr::getBitCast(CurFn, PointerTy),
H A DItaniumCXXABI.cpp2181 static bool TypeInfoIsInStandardLibrary(const PointerType *PointerTy) { argument
2182 QualType PointeeTy = PointerTy->getPointeeType();
2206 if (const PointerType *PointerTy = dyn_cast<PointerType>(Ty))
2207 return TypeInfoIsInStandardLibrary(PointerTy);
2262 if (const PointerType *PointerTy = dyn_cast<PointerType>(Ty))
2263 return ContainsIncompleteClassType(PointerTy->getPointeeType());
/external/llvm/lib/Target/Hexagon/
H A DHexagonISelDAGToDAG.cpp398 MVT PointerTy = getTargetLowering()->getPointerTy(); local
402 CurDAG->getTargetGlobalAddress(GV, dl, PointerTy, 0);
404 dl, PointerTy,
414 SDValue TargetConstOff = CurDAG->getTargetConstant(Offset, PointerTy);
781 MVT PointerTy = getTargetLowering()->getPointerTy(); local
785 CurDAG->getTargetGlobalAddress(GV, dl, PointerTy, 0);
787 dl, PointerTy,
798 CurDAG->getTargetConstant(Offset,PointerTy),
/external/llvm/lib/Transforms/Scalar/
H A DSROA.cpp1428 /// resulting pointer has PointerTy.
1443 APInt Offset, Type *PointerTy,
1461 Type *TargetTy = PointerTy->getPointerElementType();
1479 if (P->getType() == PointerTy) {
1513 Ptr, IRB.getInt8PtrTy(PointerTy->getPointerAddressSpace()),
1525 if (Ptr->getType() != PointerTy)
1526 Ptr = IRB.CreateBitCast(Ptr, PointerTy, NamePrefix + "sroa_cast");
2112 Value *getNewAllocaSlicePtr(IRBuilderTy &IRB, Type *PointerTy) { argument
2140 APInt(DL.getPointerSizeInBits(), Offset), PointerTy,
1442 getAdjustedPtr(IRBuilderTy &IRB, const DataLayout &DL, Value *Ptr, APInt Offset, Type *PointerTy, Twine NamePrefix) argument
/external/clang/lib/Sema/
H A DSemaStmt.cpp2207 QualType PointerTy = PVD->getType(); local
2208 if (PointerTy->isPointerType() && ArrayTy->isArrayType()) {
2210 << RangeLoc << PVD << ArrayTy << PointerTy; local
H A DSemaOverload.cpp6617 const PointerType *PointerTy = Ty->getAs<PointerType>(); local
6619 if (!PointerTy) {
6624 PointeeTy = PointerTy->getPointeeType();
6684 const MemberPointerType *PointerTy = Ty->getAs<MemberPointerType>(); local
6685 assert(PointerTy && "type was not a member pointer type!");
6687 QualType PointeeTy = PointerTy->getPointeeType();
6694 const Type *ClassTy = PointerTy->getClass();
H A DSemaExpr.cpp5489 /// \brief Return false if the NullExpr can be promoted to PointerTy,
5492 QualType PointerTy) {
5493 if ((!PointerTy->isAnyPointerType() && !PointerTy->isBlockPointerType()) ||
5498 NullExpr = S.ImpCastExprToType(NullExpr.get(), PointerTy, CK_NullToPointer);
5491 checkConditionalNullPointer(Sema &S, ExprResult &NullExpr, QualType PointerTy) argument
/external/llvm/lib/IR/
H A DCore.cpp490 unsigned LLVMGetPointerAddressSpace(LLVMTypeRef PointerTy) { argument
491 return unwrap<PointerType>(PointerTy)->getAddressSpace();

Completed in 440 milliseconds