mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-17 17:44:40 +02:00
8262355: Support for AVX-512 opmask register allocation.
Reviewed-by: vlivanov, njian, kvn
This commit is contained in:
parent
078066695b
commit
f084bd2f61
41 changed files with 1570 additions and 295 deletions
|
@ -2440,7 +2440,7 @@ static bool is_vector_bitwise_op(Node* n) {
|
|||
}
|
||||
|
||||
static bool is_vector_bitwise_cone_root(Node* n) {
|
||||
if (!is_vector_bitwise_op(n)) {
|
||||
if (n->bottom_type()->isa_vectmask() || !is_vector_bitwise_op(n)) {
|
||||
return false;
|
||||
}
|
||||
for (DUIterator_Fast imax, i = n->fast_outs(imax); i < imax; i++) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue