-
Notifications
You must be signed in to change notification settings - Fork 5.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
8279508: Auto-vectorize Math.round API #7094
Changes from 1 commit
0fe0150
575d293
d610bd6
2dc364f
1c9ff77
2f55569
73674fe
f35ed9c
6c869c7
f7dec3d
54d4ea3
3b90ae5
57b1b13
bf1532f
547f4e3
fcb7321
2519a58
e4d4e29
c881d11
b1323a8
962d751
c17440c
621bd69
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -4142,8 +4142,7 @@ void C2_MacroAssembler::vector_round_double_evex(XMMRegister dst, XMMRegister sr | |||||
mov64(scratch, 4602678819172646912L); | ||||||
evpbroadcastq(xtmp1, scratch, vec_enc); | ||||||
vaddpd(xtmp1, src , xtmp1, vec_enc); | ||||||
vrndscalepd(dst, xtmp1, 0x4, vec_enc); | ||||||
evcvtpd2qq(dst, dst, vec_enc); | ||||||
evcvtpd2qq(dst, xtmp1, vec_enc); | ||||||
jatin-bhateja marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
vector_cast_double_special_cases_evex(dst, src, xtmp1, xtmp2, ktmp1, ktmp2, scratch, double_sign_flip, vec_enc); | ||||||
ldmxcsr(mxcsr_std); | ||||||
} | ||||||
|
@@ -4158,8 +4157,7 @@ void C2_MacroAssembler::vector_round_float_evex(XMMRegister dst, XMMRegister src | |||||
movl(scratch, 1056964608); | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What is 1056964608 ? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Raw bits corresponding to floating point value 0.5f. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
evpbroadcastd(xtmp1, scratch, vec_enc); | ||||||
vaddps(xtmp1, src , xtmp1, vec_enc); | ||||||
vrndscaleps(dst, xtmp1, 0x4, vec_enc); | ||||||
vcvtps2dq(dst, dst, vec_enc); | ||||||
vcvtps2dq(dst, xtmp1, vec_enc); | ||||||
vector_cast_float_special_cases_evex(dst, src, xtmp1, xtmp2, ktmp1, ktmp2, scratch, float_sign_flip, vec_enc); | ||||||
ldmxcsr(mxcsr_std); | ||||||
} | ||||||
|
@@ -4175,8 +4173,7 @@ void C2_MacroAssembler::vector_round_float_avx(XMMRegister dst, XMMRegister src, | |||||
movq(xtmp1, scratch); | ||||||
vpbroadcastd(xtmp1, xtmp1, vec_enc); | ||||||
vaddps(xtmp1, src , xtmp1, vec_enc); | ||||||
vroundps(dst, xtmp1, 0x4, vec_enc); | ||||||
vcvtps2dq(dst, dst, vec_enc); | ||||||
vcvtps2dq(dst, xtmp1, vec_enc); | ||||||
jatin-bhateja marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
vector_cast_float_special_cases_avx(dst, src, xtmp1, xtmp2, xtmp3, xtmp4, scratch, float_sign_flip, vec_enc); | ||||||
ldmxcsr(mxcsr_std); | ||||||
} | ||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.