Searched refs:ETy (Results 1 - 17 of 17) sorted by relevance

/external/llvm/include/llvm/Transforms/IPO/
H A DPassManagerBuilder.h136 void addExtensionsToPM(ExtensionPointTy ETy, PassManagerBase &PM) const;
/external/llvm/lib/Transforms/ObjCARC/
H A DObjCARCUtil.cpp98 Type *ETy = PTy->getElementType(); local
100 if (ETy->isIntegerTy(8))
120 if (PointerType *Pte = dyn_cast<PointerType>(ETy))
/external/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.cpp1363 Type *ETy = PTy->getElementType(); local
1489 O << " .align " << (int) TD->getPrefTypeAlignment(ETy);
1493 if (ETy->isSingleValueType()) {
1496 if (ETy->isIntegerTy(1))
1499 O << getPTXFundamentalTypeStr(ETy, false);
1532 switch (ETy->getTypeID()) {
1536 ElementSize = TD->getTypeStoreSize(ETy);
1666 Type *ETy = PTy->getElementType(); local
1671 O << " .align " << (int) TD->getPrefTypeAlignment(ETy);
1675 if (ETy
1716 Type *ETy = VTy->getElementType(); local
1731 Type *ETy = STy->getElementType(i); local
1857 Type *ETy = PTy->getElementType(); local
1912 Type *ETy = PTy->getElementType(); local
2130 const Type *ETy = CPV->getType(); local
[all...]
H A DNVPTXISelLowering.cpp590 Type *ETy = PTy->getElementType(); local
593 unsigned sz = getDataLayout()->getTypeAllocSize(ETy);
/external/clang/lib/CodeGen/
H A DCodeGenTypes.cpp408 QualType ETy = RTy->getPointeeType(); local
409 llvm::Type *PointeeType = ConvertTypeForMem(ETy);
410 unsigned AS = Context.getTargetAddressSpace(ETy);
416 QualType ETy = PTy->getPointeeType(); local
417 llvm::Type *PointeeType = ConvertTypeForMem(ETy);
420 unsigned AS = Context.getTargetAddressSpace(ETy);
H A DCodeGenTBAA.cpp147 if (const EnumType *ETy = dyn_cast<EnumType>(Ty)) {
152 if (!Features.CPlusPlus || !ETy->getDecl()->isExternallyVisible())
157 MContext.mangleTypeName(QualType(ETy, 0), Out);
/external/llvm/lib/Transforms/IPO/
H A DPassManagerBuilder.cpp94 void PassManagerBuilder::addExtensionsToPM(ExtensionPointTy ETy, argument
97 if ((*GlobalExtensions)[i].first == ETy)
100 if (Extensions[i].first == ETy)
/external/clang/lib/Analysis/
H A DFormatString.cpp279 if (const EnumType *ETy = argTy->getAs<EnumType>())
280 argTy = ETy->getDecl()->getIntegerType();
296 if (const EnumType *ETy = argTy->getAs<EnumType>())
297 argTy = ETy->getDecl()->getIntegerType();
H A DScanfFormatString.cpp405 if (const EnumType *ETy = PT->getAs<EnumType>())
406 PT = ETy->getDecl()->getIntegerType();
H A DPrintfFormatString.cpp455 if (const EnumType *ETy = QT->getAs<EnumType>())
456 QT = ETy->getDecl()->getIntegerType();
/external/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp1363 StructType *ETy = dyn_cast<StructType>(InitList->getType()->getElementType());
1365 if (!ETy || ETy->getNumElements() < 2 || ETy->getNumElements() > 3)
1367 if (!isa<IntegerType>(ETy->getTypeAtIndex(0U)) ||
1368 !isa<PointerType>(ETy->getTypeAtIndex(1U))) return; // Not (int, ptr).
1369 if (ETy->getNumElements() == 3 && !isa<PointerType>(ETy->getTypeAtIndex(2U)))
1385 if (ETy->getNumElements() == 3 && !CS->getOperand(2)->isNullValue())
/external/llvm/lib/IR/
H A DAsmWriter.cpp907 Type *ETy = CA->getType()->getElementType(); local
909 TypePrinter.print(ETy, Out);
916 TypePrinter.print(ETy, Out);
935 Type *ETy = CA->getType()->getElementType(); local
937 TypePrinter.print(ETy, Out);
944 TypePrinter.print(ETy, Out);
985 Type *ETy = CV->getType()->getVectorElementType(); local
987 TypePrinter.print(ETy, Out);
993 TypePrinter.print(ETy, Out);
H A DVerifier.cpp430 Type *ETy = STy->getTypeAtIndex(2); local
431 Assert1(ETy->isPointerTy() &&
432 cast<PointerType>(ETy)->getElementType()->isIntegerTy(8),
/external/llvm/include/llvm/CodeGen/
H A DSelectionDAGNodes.h1842 ISD::MemIndexedMode AM, ISD::LoadExtType ETy, EVT MemVT,
1845 SubclassData |= (unsigned short)ETy;
1846 assert(getExtensionType() == ETy && "LoadExtType encoding error!");
1841 LoadSDNode(SDValue *ChainPtrOff, unsigned Order, DebugLoc dl, SDVTList VTs, ISD::MemIndexedMode AM, ISD::LoadExtType ETy, EVT MemVT, MachineMemOperand *MMO) argument
/external/llvm/lib/Analysis/
H A DScalarEvolution.cpp1498 Type *ETy = getEffectiveSCEVType(Ops[0]->getType());
1500 assert(getEffectiveSCEVType(Ops[i]->getType()) == ETy &&
1901 Type *ETy = getEffectiveSCEVType(Ops[0]->getType());
1903 assert(getEffectiveSCEVType(Ops[i]->getType()) == ETy &&
2369 Type *ETy = getEffectiveSCEVType(Operands[0]->getType());
2371 assert(getEffectiveSCEVType(Operands[i]->getType()) == ETy &&
2487 Type *ETy = getEffectiveSCEVType(Ops[0]->getType());
2489 assert(getEffectiveSCEVType(Ops[i]->getType()) == ETy &&
2591 Type *ETy = getEffectiveSCEVType(Ops[0]->getType());
2593 assert(getEffectiveSCEVType(Ops[i]->getType()) == ETy
[all...]
/external/clang/lib/AST/
H A DASTContext.cpp7107 if (const EnumType* ETy = LHS->getAs<EnumType>()) {
7108 return mergeEnumWithInteger(*this, ETy, RHS, false);
7110 if (const EnumType* ETy = RHS->getAs<EnumType>()) {
7111 return mergeEnumWithInteger(*this, ETy, LHS, BlockReturnType);
7411 if (const EnumType *ETy = T->getAs<EnumType>())
7412 T = ETy->getDecl()->getIntegerType();
/external/clang/lib/Sema/
H A DSemaStmt.cpp2376 QualType ETy = E->getType(); local
2384 if (DiagnoseAssignmentResult(ConvTy, StarLoc, DestTy, ETy, E, AA_Passing))

Completed in 385 milliseconds