Commit 5b03998e authored by Liu Yu's avatar Liu Yu Committed by Commit Bot

[mips][cleanup] Replace all remaining Min/Max uses with std::min/max

Port: 3836aeb0
Change-Id: I2d852f3dbbb74ebd7ee176cdd398cf3e6b207772
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2561422
Auto-Submit: Liu yu <liuyu@loongson.cn>
Reviewed-by: 's avatarZhao Jiazhong <zhaojiazhong-hf@loongson.cn>
Commit-Queue: Zhao Jiazhong <zhaojiazhong-hf@loongson.cn>
Cr-Commit-Position: refs/heads/master@{#71419}
parent 5da82d07
......@@ -6751,82 +6751,82 @@ TEST(MSA_maxi_mini) {
run_msa_i5(
&tc[i], true,
[](MacroAssembler& assm, int32_t i5) { __ maxi_s_b(w2, w0, i5); },
MAXI_MINI_S_DF(kMSALanesByte, UINT8_MAX, Max));
MAXI_MINI_S_DF(kMSALanesByte, UINT8_MAX, std::max));
run_msa_i5(
&tc[i], true,
[](MacroAssembler& assm, int32_t i5) { __ maxi_s_h(w2, w0, i5); },
MAXI_MINI_S_DF(kMSALanesHalf, UINT16_MAX, Max));
MAXI_MINI_S_DF(kMSALanesHalf, UINT16_MAX, std::max));
run_msa_i5(
&tc[i], true,
[](MacroAssembler& assm, int32_t i5) { __ maxi_s_w(w2, w0, i5); },
MAXI_MINI_S_DF(kMSALanesWord, UINT32_MAX, Max));
MAXI_MINI_S_DF(kMSALanesWord, UINT32_MAX, std::max));
run_msa_i5(
&tc[i], true,
[](MacroAssembler& assm, int32_t i5) { __ maxi_s_d(w2, w0, i5); },
MAXI_MINI_S_DF(kMSALanesDword, UINT64_MAX, Max));
MAXI_MINI_S_DF(kMSALanesDword, UINT64_MAX, std::max));
run_msa_i5(
&tc[i], true,
[](MacroAssembler& assm, int32_t i5) { __ mini_s_b(w2, w0, i5); },
MAXI_MINI_S_DF(kMSALanesByte, UINT8_MAX, Min));
MAXI_MINI_S_DF(kMSALanesByte, UINT8_MAX, std::min));
run_msa_i5(
&tc[i], true,
[](MacroAssembler& assm, int32_t i5) { __ mini_s_h(w2, w0, i5); },
MAXI_MINI_S_DF(kMSALanesHalf, UINT16_MAX, Min));
MAXI_MINI_S_DF(kMSALanesHalf, UINT16_MAX, std::min));
run_msa_i5(
&tc[i], true,
[](MacroAssembler& assm, int32_t i5) { __ mini_s_w(w2, w0, i5); },
MAXI_MINI_S_DF(kMSALanesWord, UINT32_MAX, Min));
MAXI_MINI_S_DF(kMSALanesWord, UINT32_MAX, std::min));
run_msa_i5(
&tc[i], true,
[](MacroAssembler& assm, int32_t i5) { __ mini_s_d(w2, w0, i5); },
MAXI_MINI_S_DF(kMSALanesDword, UINT64_MAX, Min));
MAXI_MINI_S_DF(kMSALanesDword, UINT64_MAX, std::min));
run_msa_i5(
&tc[i], false,
[](MacroAssembler& assm, int32_t i5) { __ maxi_u_b(w2, w0, i5); },
MAXI_MINI_U_DF(kMSALanesByte, UINT8_MAX, Max));
MAXI_MINI_U_DF(kMSALanesByte, UINT8_MAX, std::max));
run_msa_i5(
&tc[i], false,
[](MacroAssembler& assm, int32_t i5) { __ maxi_u_h(w2, w0, i5); },
MAXI_MINI_U_DF(kMSALanesHalf, UINT16_MAX, Max));
MAXI_MINI_U_DF(kMSALanesHalf, UINT16_MAX, std::max));
run_msa_i5(
&tc[i], false,
[](MacroAssembler& assm, int32_t i5) { __ maxi_u_w(w2, w0, i5); },
MAXI_MINI_U_DF(kMSALanesWord, UINT32_MAX, Max));
MAXI_MINI_U_DF(kMSALanesWord, UINT32_MAX, std::max));
run_msa_i5(
&tc[i], false,
[](MacroAssembler& assm, int32_t i5) { __ maxi_u_d(w2, w0, i5); },
MAXI_MINI_U_DF(kMSALanesDword, UINT64_MAX, Max));
MAXI_MINI_U_DF(kMSALanesDword, UINT64_MAX, std::max));
run_msa_i5(
&tc[i], false,
[](MacroAssembler& assm, int32_t i5) { __ mini_u_b(w2, w0, i5); },
MAXI_MINI_U_DF(kMSALanesByte, UINT8_MAX, Min));
MAXI_MINI_U_DF(kMSALanesByte, UINT8_MAX, std::min));
run_msa_i5(
&tc[i], false,
[](MacroAssembler& assm, int32_t i5) { __ mini_u_h(w2, w0, i5); },
MAXI_MINI_U_DF(kMSALanesHalf, UINT16_MAX, Min));
MAXI_MINI_U_DF(kMSALanesHalf, UINT16_MAX, std::min));
run_msa_i5(
&tc[i], false,
[](MacroAssembler& assm, int32_t i5) { __ mini_u_w(w2, w0, i5); },
MAXI_MINI_U_DF(kMSALanesWord, UINT32_MAX, Min));
MAXI_MINI_U_DF(kMSALanesWord, UINT32_MAX, std::min));
run_msa_i5(
&tc[i], false,
[](MacroAssembler& assm, int32_t i5) { __ mini_u_d(w2, w0, i5); },
MAXI_MINI_U_DF(kMSALanesDword, UINT64_MAX, Min));
MAXI_MINI_U_DF(kMSALanesDword, UINT64_MAX, std::min));
}
#undef MAXI_MINI_S_DF
#undef MAXI_MINI_U_DF
......@@ -9010,7 +9010,8 @@ TEST(MSA_3R_instructions) {
uint64_t shift = size_in_bits * j; \
T ws_op = static_cast<T>((ws[i] >> shift) & mask); \
T wt_op = static_cast<T>((wt[i] >> shift) & mask); \
res |= (static_cast<uint64_t>(Max<T>(ws_op, wt_op)) & mask) << shift; \
res |= (static_cast<uint64_t>(std::max<T>(ws_op, wt_op)) & mask) \
<< shift; \
} \
wd[i] = res; \
}
......@@ -9023,7 +9024,8 @@ TEST(MSA_3R_instructions) {
uint64_t shift = size_in_bits * j; \
T ws_op = static_cast<T>((ws[i] >> shift) & mask); \
T wt_op = static_cast<T>((wt[i] >> shift) & mask); \
res |= (static_cast<uint64_t>(Min<T>(ws_op, wt_op)) & mask) << shift; \
res |= (static_cast<uint64_t>(std::min<T>(ws_op, wt_op)) & mask) \
<< shift; \
} \
wd[i] = res; \
}
......
......@@ -7665,82 +7665,82 @@ TEST(MSA_maxi_mini) {
run_msa_i5(
&tc[i], true,
[](MacroAssembler& assm, int32_t i5) { __ maxi_s_b(w2, w0, i5); },
MAXI_MINI_S_DF(kMSALanesByte, UINT8_MAX, Max));
MAXI_MINI_S_DF(kMSALanesByte, UINT8_MAX, std::max));
run_msa_i5(
&tc[i], true,
[](MacroAssembler& assm, int32_t i5) { __ maxi_s_h(w2, w0, i5); },
MAXI_MINI_S_DF(kMSALanesHalf, UINT16_MAX, Max));
MAXI_MINI_S_DF(kMSALanesHalf, UINT16_MAX, std::max));
run_msa_i5(
&tc[i], true,
[](MacroAssembler& assm, int32_t i5) { __ maxi_s_w(w2, w0, i5); },
MAXI_MINI_S_DF(kMSALanesWord, UINT32_MAX, Max));
MAXI_MINI_S_DF(kMSALanesWord, UINT32_MAX, std::max));
run_msa_i5(
&tc[i], true,
[](MacroAssembler& assm, int32_t i5) { __ maxi_s_d(w2, w0, i5); },
MAXI_MINI_S_DF(kMSALanesDword, UINT64_MAX, Max));
MAXI_MINI_S_DF(kMSALanesDword, UINT64_MAX, std::max));
run_msa_i5(
&tc[i], true,
[](MacroAssembler& assm, int32_t i5) { __ mini_s_b(w2, w0, i5); },
MAXI_MINI_S_DF(kMSALanesByte, UINT8_MAX, Min));
MAXI_MINI_S_DF(kMSALanesByte, UINT8_MAX, std::min));
run_msa_i5(
&tc[i], true,
[](MacroAssembler& assm, int32_t i5) { __ mini_s_h(w2, w0, i5); },
MAXI_MINI_S_DF(kMSALanesHalf, UINT16_MAX, Min));
MAXI_MINI_S_DF(kMSALanesHalf, UINT16_MAX, std::min));
run_msa_i5(
&tc[i], true,
[](MacroAssembler& assm, int32_t i5) { __ mini_s_w(w2, w0, i5); },
MAXI_MINI_S_DF(kMSALanesWord, UINT32_MAX, Min));
MAXI_MINI_S_DF(kMSALanesWord, UINT32_MAX, std::min));
run_msa_i5(
&tc[i], true,
[](MacroAssembler& assm, int32_t i5) { __ mini_s_d(w2, w0, i5); },
MAXI_MINI_S_DF(kMSALanesDword, UINT64_MAX, Min));
MAXI_MINI_S_DF(kMSALanesDword, UINT64_MAX, std::min));
run_msa_i5(
&tc[i], false,
[](MacroAssembler& assm, int32_t i5) { __ maxi_u_b(w2, w0, i5); },
MAXI_MINI_U_DF(kMSALanesByte, UINT8_MAX, Max));
MAXI_MINI_U_DF(kMSALanesByte, UINT8_MAX, std::max));
run_msa_i5(
&tc[i], false,
[](MacroAssembler& assm, int32_t i5) { __ maxi_u_h(w2, w0, i5); },
MAXI_MINI_U_DF(kMSALanesHalf, UINT16_MAX, Max));
MAXI_MINI_U_DF(kMSALanesHalf, UINT16_MAX, std::max));
run_msa_i5(
&tc[i], false,
[](MacroAssembler& assm, int32_t i5) { __ maxi_u_w(w2, w0, i5); },
MAXI_MINI_U_DF(kMSALanesWord, UINT32_MAX, Max));
MAXI_MINI_U_DF(kMSALanesWord, UINT32_MAX, std::max));
run_msa_i5(
&tc[i], false,
[](MacroAssembler& assm, int32_t i5) { __ maxi_u_d(w2, w0, i5); },
MAXI_MINI_U_DF(kMSALanesDword, UINT64_MAX, Max));
MAXI_MINI_U_DF(kMSALanesDword, UINT64_MAX, std::max));
run_msa_i5(
&tc[i], false,
[](MacroAssembler& assm, int32_t i5) { __ mini_u_b(w2, w0, i5); },
MAXI_MINI_U_DF(kMSALanesByte, UINT8_MAX, Min));
MAXI_MINI_U_DF(kMSALanesByte, UINT8_MAX, std::min));
run_msa_i5(
&tc[i], false,
[](MacroAssembler& assm, int32_t i5) { __ mini_u_h(w2, w0, i5); },
MAXI_MINI_U_DF(kMSALanesHalf, UINT16_MAX, Min));
MAXI_MINI_U_DF(kMSALanesHalf, UINT16_MAX, std::min));
run_msa_i5(
&tc[i], false,
[](MacroAssembler& assm, int32_t i5) { __ mini_u_w(w2, w0, i5); },
MAXI_MINI_U_DF(kMSALanesWord, UINT32_MAX, Min));
MAXI_MINI_U_DF(kMSALanesWord, UINT32_MAX, std::min));
run_msa_i5(
&tc[i], false,
[](MacroAssembler& assm, int32_t i5) { __ mini_u_d(w2, w0, i5); },
MAXI_MINI_U_DF(kMSALanesDword, UINT64_MAX, Min));
MAXI_MINI_U_DF(kMSALanesDword, UINT64_MAX, std::min));
}
#undef MAXI_MINI_S_DF
#undef MAXI_MINI_U_DF
......@@ -9923,7 +9923,8 @@ TEST(MSA_3R_instructions) {
uint64_t shift = size_in_bits * j; \
T ws_op = static_cast<T>((ws[i] >> shift) & mask); \
T wt_op = static_cast<T>((wt[i] >> shift) & mask); \
res |= (static_cast<uint64_t>(Max<T>(ws_op, wt_op)) & mask) << shift; \
res |= (static_cast<uint64_t>(std::max<T>(ws_op, wt_op)) & mask) \
<< shift; \
} \
wd[i] = res; \
}
......@@ -9936,7 +9937,8 @@ TEST(MSA_3R_instructions) {
uint64_t shift = size_in_bits * j; \
T ws_op = static_cast<T>((ws[i] >> shift) & mask); \
T wt_op = static_cast<T>((wt[i] >> shift) & mask); \
res |= (static_cast<uint64_t>(Min<T>(ws_op, wt_op)) & mask) << shift; \
res |= (static_cast<uint64_t>(std::min<T>(ws_op, wt_op)) & mask) \
<< shift; \
} \
wd[i] = res; \
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment