Lines Matching defs:ETy
1032 Type *ETy = GVar->getValueType();
1160 O << " .align " << (int)DL.getPrefTypeAlign(ETy).value();
1162 if (ETy->isFloatingPointTy() || ETy->isPointerTy() ||
1163 (ETy->isIntegerTy() && ETy->getScalarSizeInBits() <= 64)) {
1166 if (ETy->isIntegerTy(1))
1169 O << getPTXFundamentalTypeStr(ETy, false);
1203 switch (ETy->getTypeID()) {
1208 ElementSize = DL.getTypeStoreSize(ETy);
1448 Type *ETy = GVar->getValueType();
1462 O << " .align " << (int)DL.getPrefTypeAlign(ETy).value();
1465 if (ETy->isIntegerTy(128)) {
1472 if (ETy->isFloatingPointTy() || ETy->isIntOrPtrTy()) {
1474 O << getPTXFundamentalTypeStr(ETy);
1486 switch (ETy->getTypeID()) {
1490 ElementSize = DL.getTypeStoreSize(ETy);
1658 Type *ETy = PAL.getParamByValType(paramIndex);
1659 assert(ETy && "Param should have byval type");
1668 ? getOptimalAlignForParam(ETy)
1670 F, ETy, PAL.getParamAlignment(paramIndex).valueOrOne(), DL);
1672 unsigned sz = DL.getTypeAllocSize(ETy);
1678 // Split the ETy into constituent parts and
1683 ComputeValueVTs(*TLI, DL, ETy, vtparts);