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

1 2

  /external/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/Analysis/
ScalarEvolutionExpander.cpp 398 PointerType *PTy,
401 Type *ElTy = PTy->getElementType();
519 Type::getInt8PtrTy(Ty->getContext(), PTy->getAddressSpace()));
605 if (V->getType() != PTy)
606 Casted = InsertNoopCastOfTo(Casted, PTy);
737 } else if (PointerType *PTy = dyn_cast<PointerType>(Sum->getType())) {
750 Sum = expandAddToGEP(NewOps.begin(), NewOps.end(), PTy, Ty, Sum);
751 } else if (PointerType *PTy = dyn_cast<PointerType>(Op->getType())) {
760 Sum = expandAddToGEP(NewOps.begin(), NewOps.end(), PTy, Ty, expand(Op));
    [all...]
LazyValueInfo.cpp 607 PointerType *PTy = cast<PointerType>(Val->getType());
608 Result = LVILatticeVal::getNot(ConstantPointerNull::get(PTy));
635 PointerType *PTy = cast<PointerType>(Val->getType());
636 Result = LVILatticeVal::getNot(ConstantPointerNull::get(PTy));
    [all...]
  /external/llvm/lib/VMCore/
Verifier.cpp 552 if (PointerType *PTy = dyn_cast<PointerType>(Ty)) {
553 Assert1(!ByValI || PTy->getElementType()->isSized(),
    [all...]
ConstantFold.cpp 103 if (PointerType *PTy = dyn_cast<PointerType>(V->getType()))
105 if (PTy->getAddressSpace() == DPTy->getAddressSpace()
111 Type *ElTy = PTy->getElementType();
365 if (PointerType *PTy = dyn_cast<PointerType>(Ty))
366 if (!PTy->getElementType()->isIntegerTy(1))
368 getFoldedSizeOf(PointerType::get(IntegerType::get(PTy->getContext(), 1),
369 PTy->getAddressSpace()),
430 if (PointerType *PTy = dyn_cast<PointerType>(Ty))
431 if (!PTy->getElementType()->isIntegerTy(1))
433 getFoldedAlignOf(PointerType::get(IntegerType::get(PTy->getContext()
    [all...]
AsmWriter.cpp 238 PointerType *PTy = cast<PointerType>(Ty);
239 print(PTy->getElementType(), OS);
240 if (unsigned AddressSpace = PTy->getAddressSpace())
253 VectorType *PTy = cast<VectorType>(Ty);
254 OS << "<" << PTy->getNumElements() << " x ";
255 print(PTy->getElementType(), OS);
    [all...]
Instructions.cpp     [all...]
Type.cpp 737 if (PointerType *PTy = dyn_cast<PointerType>(ElemTy))
738 ElemTy = PTy->getElementType();
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp     [all...]
  /external/llvm/include/llvm/Analysis/
ScalarEvolutionExpander.h 208 PointerType *PTy, Type *Ty, Value *V);
  /external/clang/lib/CodeGen/
CGExprCXX.cpp 77 if (const PointerType *PTy = DerivedType->getAs<PointerType>())
78 DerivedType = PTy->getPointeeType();
185 if (const PointerType * PTy = dyn_cast<PointerType>(PQTy)) {
186 DI->getOrCreateRecordType(PTy->getPointeeType(),
    [all...]
CodeGenModule.cpp     [all...]
CodeGenTypes.cpp 394 const PointerType *PTy = cast<PointerType>(Ty);
395 QualType ETy = PTy->getPointeeType();
TargetInfo.cpp 782 llvm::Type *PTy =
784 llvm::Value *AddrTyped = Builder.CreateBitCast(Addr, PTy);
    [all...]
CodeGenModule.h 872 llvm::PointerType *PTy,
    [all...]
CGExpr.cpp     [all...]
CGClass.cpp     [all...]
  /external/clang/lib/Sema/
SemaPseudoObject.cpp     [all...]
SemaExpr.cpp 472 QualType PTy = Context.isPromotableBitField(E);
473 if (!PTy.isNull()) {
474 E = ImpCastExprToType(E, PTy, CK_IntegralCast).take();
    [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp 747 PointerType *PTy = dyn_cast<PointerType>(Ty);
748 if (PTy == 0) {
776 if (FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType()))
779 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
787 PointerType *PTy = dyn_cast<PointerType>(Ty);
788 if (PTy == 0) {
814 if (FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType()))
817 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 285 PointerType *PTy = cast<PointerType>(T);
288 TypeVals.push_back(VE.getTypeID(PTy->getElementType()));
289 unsigned AddressSpace = PTy->getAddressSpace();
    [all...]
  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp 338 PointerType *PTy = cast<PointerType>(T);
341 TypeVals.push_back(VE.getTypeID(PTy->getElementType()));
342 unsigned AddressSpace = PTy->getAddressSpace();
    [all...]
  /frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriter.cpp 277 PointerType *PTy = cast<PointerType>(T);
280 TypeVals.push_back(VE.getTypeID(PTy->getElementType()));
281 unsigned AddressSpace = PTy->getAddressSpace();
    [all...]
  /external/clang/lib/AST/
DeclPrinter.cpp 109 else if (const PointerType* PTy = BaseType->getAs<PointerType>())
110 BaseType = PTy->getPointeeType();
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeDAG.cpp     [all...]

Completed in 573 milliseconds

1 2