HomeSort by: relevance | last modified time | path
    Searched refs:PointerType (Results 1 - 25 of 335) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenTypeCache.h 23 class PointerType;
56 llvm::PointerType *VoidPtrTy;
57 llvm::PointerType *Int8PtrTy;
62 llvm::PointerType *VoidPtrPtrTy;
63 llvm::PointerType *Int8PtrPtrTy;
68 llvm::PointerType *AllocaVoidPtrTy;
69 llvm::PointerType *AllocaInt8PtrTy;
CGOpenCLRuntime.h 40 llvm::PointerType *SamplerTy;
69 llvm::PointerType *getSamplerType(const Type *T);
80 llvm::PointerType *getGenericVoidPointerType();
CGOpenCLRuntime.cpp 46 return llvm::PointerType::get( \
53 return llvm::PointerType::get(
56 return llvm::PointerType::get(
59 return llvm::PointerType::get(
62 return llvm::PointerType::get(
66 return llvm::PointerType::get( \
82 PipeTy = llvm::PointerType::get(llvm::StructType::create(
89 llvm::PointerType *CGOpenCLRuntime::getSamplerType(const Type *T) {
91 SamplerTy = llvm::PointerType::get(llvm::StructType::create(
118 llvm::PointerType *CGOpenCLRuntime::getGenericVoidPointerType()
    [all...]
Address.h 43 llvm::PointerType *getType() const {
44 return llvm::cast<llvm::PointerType>(getPointer()->getType());
  /src/external/apache2/llvm/dist/llvm/lib/IR/
BuiltinGCs.cpp 77 const PointerType *PT = cast<PointerType>(Ty);
109 const PointerType *PT = cast<PointerType>(Ty);
Type.cpp 97 if (auto *PTy = dyn_cast<PointerType>(this)) {
98 if (auto *OtherPTy = dyn_cast<PointerType>(Ty))
205 PointerType *Type::getHalfPtrTy(LLVMContext &C, unsigned AS) {
209 PointerType *Type::getBFloatPtrTy(LLVMContext &C, unsigned AS) {
213 PointerType *Type::getFloatPtrTy(LLVMContext &C, unsigned AS) {
217 PointerType *Type::getDoublePtrTy(LLVMContext &C, unsigned AS) {
221 PointerType *Type::getX86_FP80PtrTy(LLVMContext &C, unsigned AS) {
225 PointerType *Type::getFP128PtrTy(LLVMContext &C, unsigned AS) {
229 PointerType *Type::getPPC_FP128PtrTy(LLVMContext &C, unsigned AS) {
233 PointerType *Type::getX86_MMXPtrTy(LLVMContext &C, unsigned AS)
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
PrettyFunctionDumper.h 22 enum class PointerType { None, Pointer, Reference };
25 PointerType Pointer);
26 void start(const PDBSymbolFunc &Symbol, PointerType Pointer);
PrettyTypedefDumper.cpp 60 FunctionDumper::PointerType Pointer = FunctionDumper::PointerType::Pointer;
62 Pointer = FunctionDumper::PointerType::Reference;
76 Dumper.start(Symbol, nullptr, FunctionDumper::PointerType::None);
PrettyFunctionDumper.cpp 53 const char *Name, PointerType Pointer) {
72 if (Pointer == PointerType::None) {
90 if (Pointer == PointerType::Reference)
116 void FunctionDumper::start(const PDBSymbolFunc &Symbol, PointerType Pointer) {
154 if (Pointer == PointerType::Pointer)
156 else if (Pointer == FunctionDumper::PointerType::Reference)
167 if (Pointer != FunctionDumper::PointerType::None)
176 if (Pointer != FunctionDumper::PointerType::None) {
177 if (Pointer == PointerType::Pointer)
179 else if (Pointer == FunctionDumper::PointerType::Reference
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Type.h 34 class PointerType;
228 /// True if this is an instance of PointerType.
469 static PointerType *getHalfPtrTy(LLVMContext &C, unsigned AS = 0);
470 static PointerType *getBFloatPtrTy(LLVMContext &C, unsigned AS = 0);
471 static PointerType *getFloatPtrTy(LLVMContext &C, unsigned AS = 0);
472 static PointerType *getDoublePtrTy(LLVMContext &C, unsigned AS = 0);
473 static PointerType *getX86_FP80PtrTy(LLVMContext &C, unsigned AS = 0);
474 static PointerType *getFP128PtrTy(LLVMContext &C, unsigned AS = 0);
475 static PointerType *getPPC_FP128PtrTy(LLVMContext &C, unsigned AS = 0);
476 static PointerType *getX86_MMXPtrTy(LLVMContext &C, unsigned AS = 0)
    [all...]
DerivedTypes.h 162 /// PointerType::getElementType() to access the function's type, since that's
634 class PointerType : public Type {
635 explicit PointerType(Type *ElType, unsigned AddrSpace);
636 explicit PointerType(LLVMContext &C, unsigned AddrSpace);
641 PointerType(const PointerType &) = delete;
642 PointerType &operator=(const PointerType &) = delete;
646 static PointerType *get(Type *ElementType, unsigned AddressSpace);
649 static PointerType *get(LLVMContext &C, unsigned AddressSpace)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
NVPTXLowerAlloca.cpp 73 auto ETy = cast<PointerType>(allocaInst->getType())->getElementType();
74 auto LocalAddrTy = PointerType::get(ETy, ADDRESS_SPACE_LOCAL);
76 auto GenericAddrTy = PointerType::get(ETy, ADDRESS_SPACE_GENERIC);
NVPTXLowerArgs.cpp 231 PointerType *PType = dyn_cast<PointerType>(Arg->getType());
269 Arg, PointerType::get(StructType, ADDRESS_SPACE_PARAM), Arg->getName(),
290 Arg, PointerType::get(StructType, ADDRESS_SPACE_PARAM), Arg->getName(),
318 Ptr, PointerType::get(Ptr->getType()->getPointerElementType(),
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
CastToStructChecker.cpp 45 const PointerType *OrigPTy = dyn_cast<PointerType>(OrigTy.getTypePtr());
46 const PointerType *ToPTy = dyn_cast<PointerType>(ToTy.getTypePtr());
MallocSizeofChecker.cpp 139 if (B->isVoidPointerType() && A->getAs<PointerType>())
149 if (const PointerType *ptrA = A->getAs<PointerType>())
150 if (const PointerType *ptrB = B->getAs<PointerType>()) {
CastSizeChecker.cpp 93 const PointerType *ToPTy = dyn_cast<PointerType>(ToTy.getTypePtr());
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/
PDBSymbolTypePointer.h 21 DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::PointerType)
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
LowerMemIntrinsics.cpp 32 unsigned SrcAS = cast<PointerType>(SrcAddr->getType())->getAddressSpace();
33 unsigned DstAS = cast<PointerType>(DstAddr->getType())->getAddressSpace();
53 PointerType *SrcOpType = PointerType::get(LoopOpType, SrcAS);
54 PointerType *DstOpType = PointerType::get(LoopOpType, DstAS);
108 PointerType *SrcPtrType = PointerType::get(OpTy, SrcAS);
118 PointerType *DstPtrType = PointerType::get(OpTy, DstAS)
    [all...]
  /src/external/apache2/llvm/dist/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)) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/AVR/
AVR.h 44 return cast<PointerType>(V->getType())->getAddressSpace() == ProgramMemory;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/CFGuard/
CFGuard.cpp 152 PointerType *GuardFnPtrType = nullptr;
194 PointerType *PTy = PointerType::get(CalledOperandType, 0);
235 GuardFnPtrType = PointerType::get(GuardFnType, 0);
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
CocoaConventions.cpp 41 const PointerType* PT = RetTy->castAs<PointerType>();
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
LowerEmuTLS.cpp 89 PointerType *VoidPtrType = Type::getInt8PtrTy(C);
118 PointerType *InitPtrType = InitValue ?
119 PointerType::getUnqual(InitValue->getType()) : VoidPtrType;
  /src/external/apache2/llvm/dist/llvm/lib/FuzzMutate/
RandomIRBuilder.cpp 57 cast<PointerType>(Ptr->getType())->getElementType(), Ptr, "L", &*IP);
127 Ptr = UndefValue::get(PointerType::get(V->getType(), 0));
142 if (auto PtrTy = dyn_cast<PointerType>(Inst->getType())) {
  /src/external/apache2/llvm/dist/clang/tools/clang-offload-wrapper/
ClangOffloadWrapper.cpp 99 PointerType *getEntryPtrTy() { return PointerType::getUnqual(getEntryTy()); }
115 PointerType *getDeviceImagePtrTy() {
116 return PointerType::getUnqual(getDeviceImageTy());
133 PointerType *getBinDescPtrTy() {
134 return PointerType::getUnqual(getBinDescTy());

Completed in 98 milliseconds

1 2 3 4 5 6 7 8 91011>>