comparison src/share/vm/oops/cpCache.cpp @ 22680:1179ab4c25fa

Disable instruction scheduling in cpCache.o on SPARC/Linux
author Stefan Anzinger <stefan.anzinger@oracle.com>
date Tue, 13 Oct 2015 17:59:52 +0200
parents 9c2d52a1a921
children dd9cc155639c
comparison
equal deleted inserted replaced
22679:4688478ecb7b 22680:1179ab4c25fa
118 "field index does not fit in low flag bits"); 118 "field index does not fit in low flag bits");
119 set_field_flags(field_type, 119 set_field_flags(field_type,
120 ((is_volatile ? 1 : 0) << is_volatile_shift) | 120 ((is_volatile ? 1 : 0) << is_volatile_shift) |
121 ((is_final ? 1 : 0) << is_final_shift), 121 ((is_final ? 1 : 0) << is_final_shift),
122 field_index); 122 field_index);
123 OrderAccess::storestore();
124 set_bytecode_1(get_code); 123 set_bytecode_1(get_code);
125 set_bytecode_2(put_code); 124 set_bytecode_2(put_code);
126 NOT_PRODUCT(verify(tty)); 125 NOT_PRODUCT(verify(tty));
127 } 126 }
128 127