src/share/vm/utilities/array.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Cdiff src/share/vm/utilities/array.hpp

src/share/vm/utilities/array.hpp

Print this page

        

*** 373,383 **** // Note, this offset don't have to be wordSize aligned. static int base_offset_in_bytes() { return (int) (offset_of(Array<T>, _data)); }; // FIXME: How to handle this? void print_value_on(outputStream* st) const { ! st->print("Array<T>(" INTPTR_FORMAT ")", this); } #ifndef PRODUCT void print(outputStream* st) { for (int i = 0; i< _length; i++) { --- 373,383 ---- // Note, this offset don't have to be wordSize aligned. static int base_offset_in_bytes() { return (int) (offset_of(Array<T>, _data)); }; // FIXME: How to handle this? void print_value_on(outputStream* st) const { ! st->print("Array<T>(" INTPTR_FORMAT ")", p2i(this)); } #ifndef PRODUCT void print(outputStream* st) { for (int i = 0; i< _length; i++) {
src/share/vm/utilities/array.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File