src/share/vm/opto/output.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File 8076276 Cdiff src/share/vm/opto/output.cpp

src/share/vm/opto/output.cpp

Print this page
rev 8344 : 8076276: Add support for AVX512
Reviewed-by: kvn, roland
Contributed-by: michael.c.berg@intel.com

*** 1878,1889 **** // Don't optimize this if scheduling is disabled if (!do_scheduling()) return; ! // Scheduling code works only with pairs (8 bytes) maximum. ! if (max_vector_size() > 8) return; TracePhase tp("isched", &timers[_t_instrSched]); // Create a data structure for all the scheduling information --- 1878,1889 ---- // Don't optimize this if scheduling is disabled if (!do_scheduling()) return; ! // Scheduling code works only with pairs (16 bytes) maximum. ! if (max_vector_size() > 16) return; TracePhase tp("isched", &timers[_t_instrSched]); // Create a data structure for all the scheduling information
src/share/vm/opto/output.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File