HomeSort by relevance Sort by last modified time
    Searched refs:PointerType (Results 1 - 25 of 214) 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());
NSErrorChecker.cpp 293 const PointerType* PPT = T->getAs<PointerType>();
313 const PointerType* PPT = T->getAs<PointerType>();
CheckSecuritySyntaxOnly.cpp 315 const PointerType *PT = dyn_cast<PointerType>(FPT->getArgType(0));
357 const PointerType *PT = dyn_cast<PointerType>(FPT->getArgType(1));
399 const PointerType *PT = dyn_cast<PointerType>(FPT->getArgType(0));
576 const PointerType *PT = dyn_cast<PointerType>(FPT->getArgType(i));
606 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;
36 friend struct ConstantCreator<InlineAsm, PointerType, InlineAsmKeyType>;
38 PointerType, InlineAsm, false>;
47 InlineAsm(PointerType *Ty, const std::string &AsmString,
68 PointerType *getType() const {
69 return reinterpret_cast<PointerType*>(Value::getType());
  /external/llvm/lib/Target/PTX/
PTXSelectionDAGInfo.cpp 61 EVT PointerType = Subtarget->is64Bit() ? MVT::i64 : MVT::i32;
70 DAG.getNode(ISD::ADD, dl, PointerType, Src,
71 DAG.getConstant(SrcOff, PointerType)),
82 DAG.getNode(ISD::ADD, dl, PointerType, Dst,
83 DAG.getConstant(DstOff, PointerType)),
109 DAG.getNode(ISD::ADD, dl, PointerType, Src,
110 DAG.getConstant(SrcOff, PointerType)),
132 DAG.getNode(ISD::ADD, dl, PointerType, Dst,
133 DAG.getConstant(DstOff, PointerType)),
PTXAsmPrinter.cpp 293 if (PointerType::classof(gv->getType())) {
294 PointerType* pointerTy = dyn_cast<PointerType>(gv->getType());
347 if (isa<ArrayType>(gv->getType()) || isa<PointerType>(gv->getType()))
427 const PointerType *PtrType = dyn_cast<const PointerType>(ArgType);
  /external/llvm/include/llvm/Analysis/
MemoryBuiltins.h 20 class PointerType;
49 /// getMallocType - Returns the PointerType resulting from the malloc call.
50 /// The PointerType depends on the number of bitcast uses of the malloc call:
51 /// 0: PointerType is the malloc calls' return type.
52 /// 1: PointerType is the bitcast's result type.
53 /// >1: Unique PointerType cannot be determined, return NULL.
54 PointerType *getMallocType(const CallInst *CI);
58 /// 0: PointerType is the malloc calls' return type.
59 /// 1: PointerType is the bitcast's result type.
60 /// >1: Unique PointerType cannot be determined, return NULL
    [all...]
  /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());
  /external/llvm/lib/Analysis/
MemoryBuiltins.cpp 131 /// getMallocType - Returns the PointerType resulting from the malloc call.
132 /// The PointerType depends on the number of bitcast uses of the malloc call:
133 /// 0: PointerType is the calls' return type.
134 /// 1: PointerType is the bitcast's result type.
135 /// >1: Unique PointerType cannot be determined, return NULL.
136 PointerType *llvm::getMallocType(const CallInst *CI) {
139 PointerType *MallocType = NULL;
146 MallocType = cast<PointerType>(BCI->getDestTy());
156 return cast<PointerType>(CI->getType());
164 /// 0: PointerType is the malloc calls' return type
    [all...]
  /external/clang/lib/Sema/
SemaFixItUtils.cpp 34 if (isa<PointerType>(From) && isa<PointerType>(To)) {
36 (cast<PointerType>(From))->getPointeeType());
38 (cast<PointerType>(To))->getPointeeType());
93 if (const PointerType *FromPtrTy = dyn_cast<PointerType>(FromQTy)) {
127 if (isa<PointerType>(ToQTy)) {
  /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 40 const PointerType* PT = RetTy->getAs<PointerType>();
FormatString.cpp 293 const PointerType *PT = argTy->getAs<PointerType>();
313 const PointerType *PT = argTy->getAs<PointerType>();
348 if (const PointerType *PT = argTy->getAs<PointerType>()) {
  /external/llvm/examples/BrainF/
BrainFDriver.cpp 63 PointerType::getUnqual(PointerType::getUnqual(
  /external/llvm/lib/Target/Hexagon/
HexagonRemoveSZExtArgs.cpp 55 if (!isa<PointerType>(Arg->getType())) {
  /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/
InstCombineLoadStoreAlloca.cpp 163 PointerType *DestTy = cast<PointerType>(CI->getType());
165 if (PointerType *SrcTy = dyn_cast<PointerType>(CastOp->getType())) {
185 SrcTy = cast<PointerType>(CastOp->getType());
329 Type *DestPTy = cast<PointerType>(CI->getType())->getElementType();
330 PointerType *SrcTy = dyn_cast<PointerType>(CastOp->getType());
366 SrcTy = PointerType::get(SrcPTy, SrcTy->getAddressSpace());
376 cast<PointerType>(CI->getType())->getAddressSpace() |
    [all...]
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);
147 unsigned DstAddrSp = cast<PointerType>(Dest->getType())->getAddressSpace();
148 Type *NewDstPtrTy = PointerType::get(ITy, DstAddrSp);
550 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...]

Completed in 310 milliseconds

1 2 3 4 5 6 7 8 9