Lines Matching refs:TruncTy
2549 llvm::Type *TruncTy = ResultTruncRegTypes[i]; in EmitAsmStores() local
2563 if (ResultRegTypes[i] != TruncTy) { in EmitAsmStores()
2567 if (TruncTy->isFloatingPointTy()) in EmitAsmStores()
2568 Tmp = Builder.CreateFPTrunc(Tmp, TruncTy); in EmitAsmStores()
2569 else if (TruncTy->isPointerTy() && Tmp->getType()->isIntegerTy()) { in EmitAsmStores()
2570 uint64_t ResSize = CGM.getDataLayout().getTypeSizeInBits(TruncTy); in EmitAsmStores()
2573 Tmp = Builder.CreateIntToPtr(Tmp, TruncTy); in EmitAsmStores()
2574 } else if (Tmp->getType()->isPointerTy() && TruncTy->isIntegerTy()) { in EmitAsmStores()
2579 Tmp = Builder.CreateTrunc(Tmp, TruncTy); in EmitAsmStores()
2580 } else if (Tmp->getType()->isIntegerTy() && TruncTy->isIntegerTy()) { in EmitAsmStores()
2581 Tmp = Builder.CreateZExtOrTrunc(Tmp, TruncTy); in EmitAsmStores()
2582 } else if (Tmp->getType()->isVectorTy() || TruncTy->isVectorTy()) { in EmitAsmStores()
2583 Tmp = Builder.CreateBitCast(Tmp, TruncTy); in EmitAsmStores()
2593 if (CGF.getTargetHooks().isScalarizableAsmOperand(CGF, TruncTy)) { in EmitAsmStores()