Lines Matching refs:int_ty
2129 const MachineType& int_ty, const MachineType& float_ty,
2131 if (int_ty.representation() == MachineRepresentation::kWord32) {
2140 const MachineType& int_ty,
2143 Node* test = ConvertTrapTest(builder, opcode, int_ty, float_ty, trunc,
2145 if (int_ty.representation() == MachineRepresentation::kWord64) {
2156 const MachineType int_ty = IntConvertType(opcode);
2162 int_ty.representation() == MachineRepresentation::kWord32;
2173 ConvertTrapTest(this, opcode, int_ty, float_ty, trunc, converted_value);
2184 Node* test = ConvertSaturateTest(this, opcode, int_ty, float_ty, trunc,
2195 sat_d.Phi(int_ty.representation(), Min(this, int_ty), Max(this, int_ty));
2197 nan_d.Phi(int_ty.representation(), Zero(this, int_ty), sat_val);
2198 return tl_d.Phi(int_ty.representation(), nan_val, converted_value);
2422 const MachineType int_ty = IntConvertType(opcode);
2425 int stack_slot_size = std::max(ElementSizeInBytes(int_ty.representation()),
2438 return gasm_->LoadFromObject(int_ty, stack_slot, 0);
2450 sat_d.Phi(int_ty.representation(), Min(this, int_ty), Max(this, int_ty));
2451 Node* load = gasm_->LoadFromObject(int_ty, stack_slot, 0);
2453 nan_d.Phi(int_ty.representation(), Zero(this, int_ty), sat_val);
2454 return tl_d.Phi(int_ty.representation(), nan_val, load);