mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
8280378: [IR Framework] Support IR matching for different compile phases
Reviewed-by: kvn, rcastanedalo
This commit is contained in:
parent
da0ae5128a
commit
f829b5a73f
142 changed files with 7489 additions and 1938 deletions
|
@ -77,7 +77,7 @@ public class VectorMaskedNotTest {
|
|||
|
||||
@Test
|
||||
@Warmup(10000)
|
||||
@IR(counts = { "vnotI_masked", ">= 1" })
|
||||
@IR(counts = { IRNode.VNOT_I_MASKED, ">= 1" })
|
||||
public static void testIntNotMasked() {
|
||||
VectorMask<Integer> mask = VectorMask.fromArray(I_SPECIES, m, 0);
|
||||
IntVector av = IntVector.fromArray(I_SPECIES, ia, 0);
|
||||
|
@ -95,7 +95,7 @@ public class VectorMaskedNotTest {
|
|||
|
||||
@Test
|
||||
@Warmup(10000)
|
||||
@IR(counts = { "vnotL_masked", ">= 1" })
|
||||
@IR(counts = { IRNode.VNOT_L_MASKED, ">= 1" })
|
||||
public static void testLongNotMasked() {
|
||||
VectorMask<Long> mask = VectorMask.fromArray(L_SPECIES, m, 0);
|
||||
LongVector av = LongVector.fromArray(L_SPECIES, la, 0);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue