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

1 2 3

  /external/swiftshader/third_party/LLVM/runtime/libprofile/
CommonProfiling.c 103 int PTy = ArgumentInfo;
105 if (write(OutFile, &PTy, sizeof(int)) < 0 ||
130 int PTy;
134 PTy = PT;
135 if( write(outFile, &PTy, sizeof(int)) < 0 ||
  /external/llvm/lib/Target/NVPTX/
NVPTXLowerAlloca.cpp 72 auto PTy = dyn_cast<PointerType>(allocaInst->getType());
73 auto ETy = PTy->getElementType();
NVPTXAsmPrinter.h 161 PointerType *PTy = dyn_cast<PointerType>(v0->getType());
163 if (PTy && PTy->getAddressSpace() != 0) {
NVPTXISelLowering.cpp     [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonTargetObjectFile.cpp 278 const VectorType *PTy = cast<const VectorType>(Ty);
279 return getSmallestAddressableSize(PTy->getElementType(), GV, TM);
  /external/llvm/lib/IR/
Globals.cpp 353 PointerType *PTy = Aliasee->getType();
354 return create(PTy->getElementType(), PTy->getAddressSpace(), Link, Name,
Module.cpp 237 PointerType *PTy = PointerType::get(Ty, GVTy->getPointerAddressSpace());
238 if (GVTy != PTy)
239 return ConstantExpr::getBitCast(GV, PTy);
  /external/clang/lib/CodeGen/
CodeGenTypes.cpp 506 const PointerType *PTy = cast<PointerType>(Ty);
507 QualType ETy = PTy->getPointeeType();
CGDeclCXX.cpp 166 llvm::PointerType *PTy = llvm::PointerType::get(LTy, ExpectedAddrSpace);
167 DeclPtr = llvm::ConstantExpr::getAddrSpaceCast(DeclPtr, PTy);
  /external/llvm/unittests/Support/
Casting.cpp 249 class PTy {
252 PTy(Base *B) : B(B) {}
262 template <> struct simplify_type<pointer_wrappers::PTy> {
264 static SimpleType getSimplifiedValue(pointer_wrappers::PTy &P) {
268 template <> struct simplify_type<const pointer_wrappers::PTy> {
270 static SimpleType getSimplifiedValue(const pointer_wrappers::PTy &P) {
285 pointer_wrappers::PTy MN(nullptr);
286 pointer_wrappers::PTy MB(&B);
287 pointer_wrappers::PTy MD(&D);
290 const pointer_wrappers::PTy CN(nullptr)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/AsmParser/
LLParser.cpp 752 PointerType *PTy = dyn_cast<PointerType>(Ty);
753 if (PTy == 0) {
781 if (FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType()))
784 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
792 PointerType *PTy = dyn_cast<PointerType>(Ty);
793 if (PTy == 0) {
819 if (FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType()))
822 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstCombineVectorOps.cpp 80 VectorType *PTy = cast<VectorType>(V->getType());
81 unsigned Width = PTy->getNumElements();
83 return UndefValue::get(PTy->getElementType());
86 return UndefValue::get(PTy->getElementType());
88 return Constant::getNullValue(PTy->getElementType());
113 return UndefValue::get(PTy->getElementType());
  /external/llvm/lib/Transforms/Instrumentation/
IndirectCallPromotion.cpp 240 Type *PTy = DirectCalleeType->getFunctionParamType(I);
242 if (PTy == ATy)
244 if (!CastInst::castIsValid(Instruction::BitCast, CS.getArgument(I), PTy))
483 Type *PTy = DirectCalleeType->getParamType(I);
484 if (ATy != PTy) {
485 BitCastInst *BI = new BitCastInst(NewCS.getArgument(I), PTy, "", NewInst);
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/IR/
DataLayout.h 332 auto *PTy = dyn_cast<PointerType>(Ty);
333 return PTy && isNonIntegralPointerType(PTy);
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/IR/
DataLayout.h 332 auto *PTy = dyn_cast<PointerType>(Ty);
333 return PTy && isNonIntegralPointerType(PTy);
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/IR/
DataLayout.h 332 auto *PTy = dyn_cast<PointerType>(Ty);
333 return PTy && isNonIntegralPointerType(PTy);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
DataLayout.h 332 auto *PTy = dyn_cast<PointerType>(Ty);
333 return PTy && isNonIntegralPointerType(PTy);
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/IR/
DataLayout.h 332 auto *PTy = dyn_cast<PointerType>(Ty);
333 return PTy && isNonIntegralPointerType(PTy);
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/IR/
DataLayout.h 332 auto *PTy = dyn_cast<PointerType>(Ty);
333 return PTy && isNonIntegralPointerType(PTy);
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/IR/
DataLayout.h 332 auto *PTy = dyn_cast<PointerType>(Ty);
333 return PTy && isNonIntegralPointerType(PTy);
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
DataLayout.h 332 auto *PTy = dyn_cast<PointerType>(Ty);
333 return PTy && isNonIntegralPointerType(PTy);
  /external/llvm/lib/AsmParser/
LLParser.cpp 746 auto *PTy = dyn_cast<PointerType>(AliaseeType);
747 if (!PTy)
749 unsigned AddrSpace = PTy->getAddressSpace();
751 if (IsAlias && Ty != PTy->getElementType())
756 if (!IsAlias && !PTy->getElementType()->isFunctionTy())
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/
LazyValueInfo.cpp 633 PointerType *PTy = cast<PointerType>(Val->getType());
634 Result = LVILatticeVal::getNot(ConstantPointerNull::get(PTy));
661 PointerType *PTy = cast<PointerType>(Val->getType());
662 Result = LVILatticeVal::getNot(ConstantPointerNull::get(PTy));
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
ELFWriter.cpp 486 VectorType *PTy = CP->getType();
487 for (unsigned I = 0, E = PTy->getNumElements(); I < E; ++I)
    [all...]
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 410 auto *PTy = cast<PointerType>(C->getType());
415 unsigned AS = PTy->getAddressSpace();
    [all...]

Completed in 3295 milliseconds

1 2 3