Skip to content

Commit 4a1d4be

Browse files
author
Boris Ulasevich
committedJul 24, 2020
8248870: AARCH64: I2L/L2I conversions can be skipped for masked positive values
Reviewed-by: aph
1 parent f79b7e6 commit 4a1d4be

File tree

3 files changed

+40
-0
lines changed

3 files changed

+40
-0
lines changed
 

‎src/hotspot/cpu/aarch64/aarch64.ad

+15
Original file line numberDiff line numberDiff line change
@@ -12171,6 +12171,21 @@ instruct ubfizIConvI2L(iRegLNoSp dst, iRegIorL2I src, immI lshift, immI_bitmask
1217112171
ins_pipe(ialu_reg_shift);
1217212172
%}
1217312173

12174+
// This pattern is automatically generated from aarch64_ad.m4
12175+
// DO NOT EDIT ANYTHING IN THIS SECTION OF THE FILE
12176+
12177+
// Can skip int2long conversions after AND with small bitmask
12178+
instruct ubfizIConvI2LAndI(iRegLNoSp dst, iRegI src, immI_bitmask msk)
12179+
%{
12180+
match(Set dst (ConvI2L (AndI src msk)));
12181+
ins_cost(INSN_COST);
12182+
format %{ "ubfiz $dst, $src, 0, exact_log2($msk + 1) " %}
12183+
ins_encode %{
12184+
__ ubfiz(as_Register($dst$$reg), as_Register($src$$reg), 0, exact_log2($msk$$constant + 1));
12185+
%}
12186+
ins_pipe(ialu_reg_shift);
12187+
%}
12188+
1217412189

1217512190
// Rotations
1217612191
// This pattern is automatically generated from aarch64_ad.m4

‎src/hotspot/cpu/aarch64/aarch64_ad.m4

+15
Original file line numberDiff line numberDiff line change
@@ -278,6 +278,21 @@ instruct ubfizIConvI2L(iRegLNoSp dst, iRegIorL2I src, immI lshift, immI_bitmask
278278
ins_pipe(ialu_reg_shift);
279279
%}
280280

281+
// This pattern is automatically generated from aarch64_ad.m4
282+
// DO NOT EDIT ANYTHING IN THIS SECTION OF THE FILE
283+
284+
// Can skip int2long conversions after AND with small bitmask
285+
instruct ubfizIConvI2LAndI(iRegLNoSp dst, iRegI src, immI_bitmask msk)
286+
%{
287+
match(Set dst (ConvI2L (AndI src msk)));
288+
ins_cost(INSN_COST);
289+
format %{ "ubfiz $dst, $src, 0, exact_log2($msk + 1) " %}
290+
ins_encode %{
291+
__ ubfiz(as_Register($dst$$reg), as_Register($src$$reg), 0, exact_log2($msk$$constant + 1));
292+
%}
293+
ins_pipe(ialu_reg_shift);
294+
%}
295+
281296

282297
// Rotations dnl
283298
define(`EXTRACT_INSN',`

‎test/micro/org/openjdk/bench/vm/compiler/SkipIntToLongCast.java

+10
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ public class SkipIntToLongCast {
4747
private static final long ARRAYSIZE_L = 40L;
4848

4949
public int[] intValues;
50+
public int intValue;
5051

5152
@Setup
5253
public void setup() {
@@ -76,4 +77,13 @@ public int skipCastTestLeft() {
7677
}
7778
return 0;
7879
}
80+
81+
@Benchmark
82+
public long skipMaskedSmallPositiveCast() {
83+
int value = intValue;
84+
return (long)(value & 0x1) ^ (long)(value & 0x3) ^ (long)(value & 0x7) ^ (long)(value & 0xF) ^
85+
(long)(value & 0x1F) ^ (long)(value & 0x3F) ^ (long)(value & 0x7F) ^ (long)(value & 0xFF) ^
86+
(long)(value & 0x1FF) ^ (long)(value & 0x3FF) ^ (long)(value & 0x7FF) ^ (long)(value & 0xFFF) ^
87+
(long)(value & 0x1FFF) ^ (long)(value & 0x3FFF) ^ (long)(value & 0x7FFF) ^ (long)(value & 0xFFFF);
88+
}
7989
}

0 commit comments

Comments
 (0)
Please sign in to comment.