HomeSort by relevance Sort by last modified time
    Searched defs:PTy (Results 1 - 25 of 37) sorted by null

1 2

  /external/llvm/lib/Transforms/Utils/
CloneModule.cpp 70 auto *PTy = cast<PointerType>(I->getType());
72 GlobalAlias::create(PTy->getElementType(), PTy->getAddressSpace(),
  /external/llvm/lib/IR/
Globals.cpp 272 PointerType *PTy = Aliasee->getType();
273 return create(PTy->getElementType(), PTy->getAddressSpace(), Link, Name,
Module.cpp 213 PointerType *PTy = PointerType::get(Ty, GVTy->getPointerAddressSpace());
214 if (GVTy != PTy)
215 return ConstantExpr::getBitCast(GV, PTy);
AsmWriter.cpp 246 PointerType *PTy = cast<PointerType>(Ty);
247 print(PTy->getElementType(), OS);
248 if (unsigned AddressSpace = PTy->getAddressSpace())
261 VectorType *PTy = cast<VectorType>(Ty);
262 OS << "<" << PTy->getNumElements() << " x ";
263 print(PTy->getElementType(), OS);
    [all...]
Instructions.cpp     [all...]
Verifier.cpp 444 PointerType *PTy = dyn_cast<PointerType>(ATy->getElementType());
445 Assert1(PTy, "wrong type for intrinsic global variable", &GV);
853 if (PointerType *PTy = dyn_cast<PointerType>(Ty)) {
854 if (!PTy->getElementType()->isSized())
    [all...]
  /external/clang/lib/CodeGen/
CodeGenTypes.cpp 415 const PointerType *PTy = cast<PointerType>(Ty);
416 QualType ETy = PTy->getPointeeType();
CGDecl.cpp 214 llvm::PointerType *PTy = llvm::PointerType::get(LTy, ExpectedAddrSpace);
215 return llvm::ConstantExpr::getAddrSpaceCast(GV, PTy);
    [all...]
  /external/llvm/lib/CodeGen/
GlobalMerge.cpp 228 auto *PTy = cast<PointerType>(GEP->getType());
229 GlobalAlias::create(PTy->getElementType(), PTy->getAddressSpace(),
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.h 160 PointerType *PTy = dyn_cast<PointerType>(GVar->getType());
162 if (PTy && PTy->getAddressSpace() != 0) {
NVPTXAsmPrinter.cpp     [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp 744 auto *PTy = dyn_cast<PointerType>(AliaseeType);
745 if (!PTy)
747 Type *Ty = PTy->getElementType();
748 unsigned AddrSpace = PTy->getAddressSpace();
    [all...]
  /external/llvm/lib/Analysis/
LazyValueInfo.cpp 616 PointerType *PTy = cast<PointerType>(Val->getType());
617 Result = LVILatticeVal::getNot(ConstantPointerNull::get(PTy));
644 PointerType *PTy = cast<PointerType>(Val->getType());
645 Result = LVILatticeVal::getNot(ConstantPointerNull::get(PTy));
    [all...]
ConstantFolding.cpp 395 PointerType *PTy = cast<PointerType>(C->getType());
396 Type *LoadTy = PTy->getElementType();
401 unsigned AS = PTy->getAddressSpace();
    [all...]
  /external/llvm/lib/Analysis/IPA/
InlineCost.cpp     [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 407 PointerType *PTy = cast<PointerType>(T);
410 TypeVals.push_back(VE.getTypeID(PTy->getElementType()));
411 unsigned AddressSpace = PTy->getAddressSpace();
    [all...]
  /external/llvm/lib/Linker/
LinkModules.cpp     [all...]
  /external/llvm/lib/Transforms/IPO/
MergeFunctions.cpp     [all...]
GlobalOpt.cpp     [all...]
  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp 329 PointerType *PTy = cast<PointerType>(T);
332 TypeVals.push_back(VE.getTypeID(PTy->getElementType()));
333 unsigned AddressSpace = PTy->getAddressSpace();
    [all...]
  /frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriter.cpp 269 PointerType *PTy = cast<PointerType>(T);
272 TypeVals.push_back(VE.getTypeID(PTy->getElementType()));
273 unsigned AddressSpace = PTy->getAddressSpace();
    [all...]
  /frameworks/compile/slang/BitWriter_3_2/
BitcodeWriter.cpp 275 PointerType *PTy = cast<PointerType>(T);
278 TypeVals.push_back(VE.getTypeID(PTy->getElementType()));
279 unsigned AddressSpace = PTy->getAddressSpace();
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp     [all...]

Completed in 287 milliseconds

1 2