HomeSort by relevance Sort by last modified time
    Searched refs:PointerType (Results 1 - 25 of 220) sorted by null

1 2 3 4 5 6 7 8 9

  /external/llvm/lib/Transforms/Instrumentation/
ProfilingUtils.h 25 class PointerType;
29 PointerType *arrayType = 0);
  /external/clang/lib/StaticAnalyzer/Checkers/
CastToStructChecker.cpp 41 const PointerType *OrigPTy = dyn_cast<PointerType>(OrigTy.getTypePtr());
42 const PointerType *ToPTy = dyn_cast<PointerType>(ToTy.getTypePtr());
CastSizeChecker.cpp 36 const PointerType *ToPTy = dyn_cast<PointerType>(ToTy.getTypePtr());
MallocSizeofChecker.cpp 147 if (const PointerType *ptrA = A->getAs<PointerType>())
148 if (const PointerType *ptrB = B->getAs<PointerType>()) {
184 QualType PointeeType = CastedType->getAs<PointerType>()->getPointeeType();
NSErrorChecker.cpp 293 const PointerType* PPT = T->getAs<PointerType>();
313 const PointerType* PPT = T->getAs<PointerType>();
CheckSecuritySyntaxOnly.cpp 316 const PointerType *PT = dyn_cast<PointerType>(FPT->getArgType(0));
358 const PointerType *PT = dyn_cast<PointerType>(FPT->getArgType(1));
400 const PointerType *PT = dyn_cast<PointerType>(FPT->getArgType(0));
577 const PointerType *PT = dyn_cast<PointerType>(FPT->getArgType(i));
607 const PointerType *PT = dyn_cast<PointerType>(FTP->getArgType(0))
    [all...]
  /external/llvm/include/llvm/
Type.h 23 class PointerType;
202 /// isPointerTy - True if this is an instance of PointerType.
378 static PointerType *getHalfPtrTy(LLVMContext &C, unsigned AS = 0);
379 static PointerType *getFloatPtrTy(LLVMContext &C, unsigned AS = 0);
380 static PointerType *getDoublePtrTy(LLVMContext &C, unsigned AS = 0);
381 static PointerType *getX86_FP80PtrTy(LLVMContext &C, unsigned AS = 0);
382 static PointerType *getFP128PtrTy(LLVMContext &C, unsigned AS = 0);
383 static PointerType *getPPC_FP128PtrTy(LLVMContext &C, unsigned AS = 0);
384 static PointerType *getX86_MMXPtrTy(LLVMContext &C, unsigned AS = 0);
385 static PointerType *getIntNPtrTy(LLVMContext &C, unsigned N, unsigned AS = 0)
    [all...]
DerivedTypes.h 143 /// CompositeType - Common super class of ArrayType, StructType, PointerType
429 /// PointerType - Class to represent pointers.
431 class PointerType : public SequentialType {
432 PointerType(const PointerType &); // Do not implement
433 const PointerType &operator=(const PointerType &); // Do not implement
434 explicit PointerType(Type *ElType, unsigned AddrSpace);
436 /// PointerType::get - This constructs a pointer to an object of the specified
438 static PointerType *get(Type *ElementType, unsigned AddressSpace)
    [all...]
InlineAsm.h 25 class PointerType;
43 friend struct ConstantCreator<InlineAsm, PointerType, InlineAsmKeyType>;
45 PointerType, InlineAsm, false>;
55 InlineAsm(PointerType *Ty, const std::string &AsmString,
78 PointerType *getType() const {
79 return reinterpret_cast<PointerType*>(Value::getType());
  /external/clang/lib/CodeGen/
CGCUDANV.cpp 35 llvm::PointerType *CharPtrTy, *VoidPtrTy;
55 CharPtrTy = llvm::PointerType::getUnqual(Types.ConvertType(Ctx.CharTy));
56 VoidPtrTy = cast<llvm::PointerType>(Types.ConvertType(Ctx.VoidPtrTy));
88 assert(isa<llvm::PointerType>(V->getType()) && "Arg type not PointerType");
89 ArgTypes.push_back(cast<llvm::PointerType>(V->getType())->getElementType());
CGCall.cpp 601 cast<llvm::PointerType>(SrcPtr->getType())->getElementType();
617 if (isa<llvm::PointerType>(Val->getType())) {
619 if (isa<llvm::PointerType>(Ty))
627 if (isa<llvm::PointerType>(DestIntTy))
633 if (isa<llvm::PointerType>(Ty))
650 cast<llvm::PointerType>(SrcPtr->getType())->getElementType();
660 SrcTy = cast<llvm::PointerType>(SrcPtr->getType())->getElementType();
667 if ((isa<llvm::IntegerType>(Ty) || isa<llvm::PointerType>(Ty)) &&
668 (isa<llvm::IntegerType>(SrcTy) || isa<llvm::PointerType>(SrcTy))) {
682 CGF.Builder.CreateBitCast(SrcPtr, llvm::PointerType::getUnqual(Ty))
    [all...]
  /external/clang/lib/Sema/
SemaFixItUtils.cpp 35 if (isa<PointerType>(From) && isa<PointerType>(To)) {
37 (cast<PointerType>(From))->getPointeeType());
39 (cast<PointerType>(To))->getPointeeType());
94 if (const PointerType *FromPtrTy = dyn_cast<PointerType>(FromQTy)) {
128 if (isa<PointerType>(ToQTy)) {
SemaCast.cpp 401 const PointerType *T1PtrType = T1->getAs<PointerType>(),
402 *T2PtrType = T2->getAs<PointerType>();
547 const PointerType *DestPointer = DestType->getAs<PointerType>();
580 if (const PointerType *SrcPointer = SrcType->getAs<PointerType>()) {
    [all...]
  /external/llvm/lib/VMCore/
Type.cpp 238 return cast<PointerType>(this)->getAddressSpace();
269 PointerType *Type::getHalfPtrTy(LLVMContext &C, unsigned AS) {
273 PointerType *Type::getFloatPtrTy(LLVMContext &C, unsigned AS) {
277 PointerType *Type::getDoublePtrTy(LLVMContext &C, unsigned AS) {
281 PointerType *Type::getX86_FP80PtrTy(LLVMContext &C, unsigned AS) {
285 PointerType *Type::getFP128PtrTy(LLVMContext &C, unsigned AS) {
289 PointerType *Type::getPPC_FP128PtrTy(LLVMContext &C, unsigned AS) {
293 PointerType *Type::getX86_MMXPtrTy(LLVMContext &C, unsigned AS) {
297 PointerType *Type::getIntNPtrTy(LLVMContext &C, unsigned N, unsigned AS) {
301 PointerType *Type::getInt1PtrTy(LLVMContext &C, unsigned AS)
    [all...]
IRBuilder.cpp 43 PointerType *PT = cast<PointerType>(Ptr->getType());
122 assert(isa<PointerType>(Ptr->getType()) &&
137 assert(isa<PointerType>(Ptr->getType()) &&
  /external/clang/lib/Analysis/
CocoaConventions.cpp 42 const PointerType* PT = RetTy->getAs<PointerType>();
FormatString.cpp 239 const PointerType *PT = argTy->getAs<PointerType>();
312 const PointerType *PT = argTy->getAs<PointerType>();
332 const PointerType *PT = argTy->getAs<PointerType>();
368 if (const PointerType *PT = argTy->getAs<PointerType>()) {
  /external/llvm/examples/BrainF/
BrainFDriver.cpp 62 PointerType::getUnqual(PointerType::getUnqual(
  /external/llvm/lib/Target/Hexagon/
HexagonRemoveSZExtArgs.cpp 55 if (!isa<PointerType>(Arg->getType())) {
  /external/llvm/lib/Target/NVPTX/
NVPTXLowerAggrCopies.cpp 52 dyn_cast<PointerType>(srcAddr->getType())->getAddressSpace();
54 dyn_cast<PointerType>(dstAddr->getType())->getAddressSpace();
90 dyn_cast<PointerType>(dstAddr->getType())->getAddressSpace();
94 PointerType::get(val->getType(), dstAS));
  /external/llvm/lib/Transforms/Utils/
ModuleUtils.cpp 27 IRB.getInt32Ty(), PointerType::getUnqual(FnTy), NULL);
  /external/llvm/unittests/Bitcode/
BitReaderTest.cpp 39 PointerType* Int8Ptr = Type::getInt8PtrTy(Mod->getContext());
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 62 cast<PointerType>(MI->getArgOperand(1)->getType())->getAddressSpace();
64 cast<PointerType>(MI->getArgOperand(0)->getType())->getAddressSpace();
67 Type *NewSrcPtrTy = PointerType::get(IntType, SrcAddrSp);
68 Type *NewDstPtrTy = PointerType::get(IntType, DstAddrSp);
78 Type *SrcETy = cast<PointerType>(StrippedDest->getType())
99 NewSrcPtrTy = PointerType::get(SrcETy, SrcAddrSp);
100 NewDstPtrTy = PointerType::get(SrcETy, DstAddrSp);
145 unsigned DstAddrSp = cast<PointerType>(Dest->getType())->getAddressSpace();
146 Type *NewDstPtrTy = PointerType::get(ITy, DstAddrSp);
478 PointerType::getUnqual(II->getType()))
    [all...]
  /external/mesa3d/src/pixelflinger2/
llvm_scanline.cpp 424 PointerType * vectorPtr = PointerType::get(vectorType, 0);
426 PointerType * intPointerType = PointerType::get(intType, 0);
427 PointerType * bytePointerType = PointerType::get(builder.getInt8Ty(), 0);
455 PointerType * intPointerType = PointerType::get(intType, 0);
457 PointerType * bytePointerType = PointerType::get(byteType, 0)
    [all...]
  /external/llvm/unittests/VMCore/
TypeBuilderTest.cpp 75 EXPECT_EQ(PointerType::getUnqual(Type::getInt8PtrTy(getGlobalContext())),
82 EXPECT_EQ(PointerType::getUnqual(Type::getInt8PtrTy(getGlobalContext())),
89 EXPECT_EQ(PointerType::getUnqual(Type::getInt8PtrTy(getGlobalContext())),
234 EXPECT_EQ(PointerType::getUnqual(StructType::get(
240 EXPECT_EQ(PointerType::getUnqual(StructType::get(
246 EXPECT_EQ(PointerType::getUnqual(StructType::get(

Completed in 291 milliseconds

1 2 3 4 5 6 7 8 9