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

1 2

  /external/llvm/runtime/libprofile/
CommonProfiling.c 135 int PTy = ArgumentInfo;
137 if (write(OutFile, &PTy, sizeof(int)) < 0 ||
162 int PTy;
166 PTy = PT;
167 if( write(outFile, &PTy, sizeof(int)) < 0 ||
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCUtil.cpp 97 if (PointerType *PTy = dyn_cast<PointerType>(A0->getType())) {
98 Type *ETy = PTy->getElementType();
132 if (PointerType *PTy = dyn_cast<PointerType>(A0->getType()))
133 if (PointerType *Pte = dyn_cast<PointerType>(PTy->getElementType()))
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp 727 const PointerType *Pty = gv->getType();
728 if (Pty->getAddressSpace() != llvm::ADDRESS_SPACE_SHARED)
    [all...]
NVPTXISelLowering.cpp 454 const PointerType *PTy = dyn_cast<PointerType>(Ty);
455 assert(PTy && "Param with byval attribute should be a pointer type");
456 Type *ETy = PTy->getElementType();
766 const PointerType *PTy = dyn_cast<PointerType>(Args[i].Ty);
767 assert(PTy && "Type of a byval parameter should be pointer");
768 ComputeValueVTs(*this, PTy->getElementType(), vtparts);
    [all...]
  /external/llvm/lib/IR/
Verifier.cpp 479 PointerType *PTy = dyn_cast<PointerType>(ATy->getElementType());
480 Assert1(PTy, "wrong type for intrinsic global variable", &GV);
831 if (PointerType *PTy = dyn_cast<PointerType>(Ty))
833 PTy->getElementType()->isSized(),
    [all...]
ConstantFold.cpp 107 if (PointerType *PTy = dyn_cast<PointerType>(V->getType()))
109 if (PTy->getAddressSpace() == DPTy->getAddressSpace()
115 Type *ElTy = PTy->getElementType();
369 if (PointerType *PTy = dyn_cast<PointerType>(Ty))
370 if (!PTy->getElementType()->isIntegerTy(1))
372 getFoldedSizeOf(PointerType::get(IntegerType::get(PTy->getContext(), 1),
373 PTy->getAddressSpace()),
434 if (PointerType *PTy = dyn_cast<PointerType>(Ty))
435 if (!PTy->getElementType()->isIntegerTy(1))
437 getFoldedAlignOf(PointerType::get(IntegerType::get(PTy->getContext()
    [all...]
AsmWriter.cpp 241 PointerType *PTy = cast<PointerType>(Ty);
242 print(PTy->getElementType(), OS);
243 if (unsigned AddressSpace = PTy->getAddressSpace())
256 VectorType *PTy = cast<VectorType>(Ty);
257 OS << "<" << PTy->getNumElements() << " x ";
258 print(PTy->getElementType(), OS);
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp     [all...]
InstCombineCasts.cpp 84 PointerType *PTy = cast<PointerType>(CI.getType());
91 Type *CastElTy = PTy->getElementType();
    [all...]
  /external/llvm/lib/Analysis/
ScalarEvolutionExpander.cpp 397 PointerType *PTy,
400 Type *ElTy = PTy->getElementType();
518 Type::getInt8PtrTy(Ty->getContext(), PTy->getAddressSpace()));
604 if (V->getType() != PTy)
605 Casted = InsertNoopCastOfTo(Casted, PTy);
736 } else if (PointerType *PTy = dyn_cast<PointerType>(Sum->getType())) {
749 Sum = expandAddToGEP(NewOps.begin(), NewOps.end(), PTy, Ty, Sum);
750 } else if (PointerType *PTy = dyn_cast<PointerType>(Op->getType())) {
759 Sum = expandAddToGEP(NewOps.begin(), NewOps.end(), PTy, Ty, expand(Op));
    [all...]
LazyValueInfo.cpp 615 PointerType *PTy = cast<PointerType>(Val->getType());
616 Result = LVILatticeVal::getNot(ConstantPointerNull::get(PTy));
643 PointerType *PTy = cast<PointerType>(Val->getType());
644 Result = LVILatticeVal::getNot(ConstantPointerNull::get(PTy));
    [all...]
  /external/llvm/include/llvm/Analysis/
ScalarEvolutionExpander.h 214 PointerType *PTy, Type *Ty, Value *V);
  /external/clang/lib/CodeGen/
CodeGenTypes.cpp 417 const PointerType *PTy = cast<PointerType>(Ty);
418 QualType ETy = PTy->getPointeeType();
TargetInfo.cpp     [all...]
CodeGenModule.cpp     [all...]
CGExprCXX.cpp 160 if (const PointerType *PTy = T->getAs<PointerType>())
161 T = PTy->getPointeeType();
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 402 PointerType *PTy = cast<PointerType>(T);
405 TypeVals.push_back(VE.getTypeID(PTy->getElementType()));
406 unsigned AddressSpace = PTy->getAddressSpace();
    [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/AsmParser/
LLParser.cpp     [all...]
  /external/clang/lib/Sema/
SemaPseudoObject.cpp     [all...]
  /external/llvm/lib/Analysis/IPA/
InlineCost.cpp     [all...]
  /external/clang/lib/AST/
DeclPrinter.cpp 110 else if (const PointerType* PTy = BaseType->getAs<PointerType>())
111 BaseType = PTy->getPointeeType();
    [all...]
  /external/llvm/lib/Target/Mips/
MipsISelLowering.cpp     [all...]

Completed in 1518 milliseconds

1 2