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

/external/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.cpp1064 Type *ETy = PTy->getElementType(); local
1181 O << " .align " << (int) TD->getPrefTypeAlignment(ETy);
1185 if (ETy->isPrimitiveType() || ETy->isIntegerTy() || isa<PointerType>(ETy)) {
1188 if (ETy->isIntegerTy(1))
1191 O << getPTXFundamentalTypeStr(ETy, false);
1213 switch (ETy->getTypeID()) {
1217 ElementSize = TD->getTypeStoreSize(ETy);
1347 Type *ETy local
1397 Type *ETy = VTy->getElementType(); local
1412 Type *ETy = STy->getElementType(i); local
1524 Type *ETy = PTy->getElementType(); local
1579 Type *ETy = PTy->getElementType(); local
1775 const Type *ETy = CPV->getType(); local
[all...]
H A DNVPTXISelLowering.cpp456 Type *ETy = PTy->getElementType(); local
459 unsigned sz = getDataLayout()->getTypeAllocSize(ETy);
/external/llvm/include/llvm/Transforms/IPO/
H A DPassManagerBuilder.h124 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/clang/lib/CodeGen/
H A DCodeGenTypes.cpp410 QualType ETy = RTy->getPointeeType(); local
411 llvm::Type *PointeeType = ConvertTypeForMem(ETy);
412 unsigned AS = Context.getTargetAddressSpace(ETy);
418 QualType ETy = PTy->getPointeeType(); local
419 llvm::Type *PointeeType = ConvertTypeForMem(ETy);
422 unsigned AS = Context.getTargetAddressSpace(ETy);
H A DCodeGenTBAA.cpp152 if (const EnumType *ETy = dyn_cast<EnumType>(Ty)) {
157 if (!Features.CPlusPlus || !ETy->getDecl()->isExternallyVisible())
164 MContext.mangleCXXRTTIName(QualType(ETy, 0), Out);
/external/llvm/lib/Transforms/IPO/
H A DPassManagerBuilder.cpp89 void PassManagerBuilder::addExtensionsToPM(ExtensionPointTy ETy, argument
92 if ((*GlobalExtensions)[i].first == ETy)
95 if (Extensions[i].first == ETy)
/external/clang/lib/Analysis/
H A DFormatString.cpp258 if (const EnumType *ETy = argTy->getAs<EnumType>())
259 argTy = ETy->getDecl()->getIntegerType();
275 if (const EnumType *ETy = argTy->getAs<EnumType>())
276 argTy = ETy->getDecl()->getIntegerType();
H A DPrintfFormatString.cpp434 if (const EnumType *ETy = QT->getAs<EnumType>())
435 QT = ETy->getDecl()->getIntegerType();
H A DScanfFormatString.cpp384 if (const EnumType *ETy = QT->getAs<EnumType>())
385 QT = ETy->getDecl()->getIntegerType();
/external/llvm/lib/IR/
H A DAsmWriter.cpp906 Type *ETy = CA->getType()->getElementType(); local
908 TypePrinter.print(ETy, Out);
915 TypePrinter.print(ETy, Out);
934 Type *ETy = CA->getType()->getElementType(); local
936 TypePrinter.print(ETy, Out);
943 TypePrinter.print(ETy, Out);
984 Type *ETy = CV->getType()->getVectorElementType(); local
986 TypePrinter.print(ETy, Out);
992 TypePrinter.print(ETy, Out);
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.h361 DIE *constructEnumTypeDIE(DIEnumerator ETy);
H A DAsmPrinter.cpp1306 StructType *ETy = dyn_cast<StructType>(InitList->getType()->getElementType());
1307 if (!ETy || ETy->getNumElements() != 2) return; // Not an array of pairs!
1308 if (!isa<IntegerType>(ETy->getTypeAtIndex(0U)) ||
1309 !isa<PointerType>(ETy->getTypeAtIndex(1U))) return; // Not (int, ptr).
H A DDwarfCompileUnit.cpp1533 DIE *CompileUnit::constructEnumTypeDIE(DIEnumerator ETy) { argument
1535 StringRef Name = ETy.getName();
1537 int64_t Value = ETy.getEnumValue();
/external/llvm/include/llvm/CodeGen/
H A DSelectionDAGNodes.h1690 ISD::MemIndexedMode AM, ISD::LoadExtType ETy, EVT MemVT,
1693 SubclassData |= (unsigned short)ETy;
1694 assert(getExtensionType() == ETy && "LoadExtType encoding error!");
1689 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.cpp1468 Type *ETy = getEffectiveSCEVType(Ops[0]->getType());
1470 assert(getEffectiveSCEVType(Ops[i]->getType()) == ETy &&
1871 Type *ETy = getEffectiveSCEVType(Ops[0]->getType());
1873 assert(getEffectiveSCEVType(Ops[i]->getType()) == ETy &&
2268 Type *ETy = getEffectiveSCEVType(Operands[0]->getType());
2270 assert(getEffectiveSCEVType(Operands[i]->getType()) == ETy &&
2386 Type *ETy = getEffectiveSCEVType(Ops[0]->getType());
2388 assert(getEffectiveSCEVType(Ops[i]->getType()) == ETy &&
2490 Type *ETy = getEffectiveSCEVType(Ops[0]->getType());
2492 assert(getEffectiveSCEVType(Ops[i]->getType()) == ETy
[all...]
/external/clang/lib/AST/
H A DASTContext.cpp7169 if (const EnumType* ETy = LHS->getAs<EnumType>()) {
7170 return mergeEnumWithInteger(*this, ETy, RHS, false);
7172 if (const EnumType* ETy = RHS->getAs<EnumType>()) {
7173 return mergeEnumWithInteger(*this, ETy, LHS, BlockReturnType);
7475 if (const EnumType *ETy = T->getAs<EnumType>())
7476 T = ETy->getDecl()->getIntegerType();
/external/clang/lib/Sema/
H A DSemaStmt.cpp2272 QualType ETy = E->getType(); local
2280 if (DiagnoseAssignmentResult(ConvTy, StarLoc, DestTy, ETy, E, AA_Passing))

Completed in 8560 milliseconds