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

src/share/vm/opto/optoreg.hpp

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

*** 101,110 **** --- 101,114 ---- static unsigned int reg2stack( OptoReg::Name r) { assert( r >= stack0(), " must be"); return r - stack0(); } + static void invalidate(Name n) { + vm2opto[n] = Bad; + } + // convert a stack slot number into an OptoReg::Name static OptoReg::Name stack2reg( int idx) { return Name(stack0() + idx); }
src/share/vm/opto/optoreg.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File