We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4761479 commit e024568Copy full SHA for e024568
src/hotspot/cpu/riscv/riscv.ad
@@ -8426,6 +8426,17 @@ instruct castVV(vReg dst)
8426
ins_pipe(pipe_class_empty);
8427
%}
8428
8429
+instruct castVVMask(vRegMask dst)
8430
+%{
8431
+ match(Set dst (CastVV dst));
8432
+
8433
+ size(0);
8434
+ format %{ "# castVV of $dst" %}
8435
+ ins_encode(/* empty encoding */);
8436
+ ins_cost(0);
8437
+ ins_pipe(pipe_class_empty);
8438
+%}
8439
8440
// ============================================================================
8441
// Convert Instructions
8442
0 commit comments