src/share/vm/memory/virtualspace.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File hotspot Cdiff src/share/vm/memory/virtualspace.hpp

src/share/vm/memory/virtualspace.hpp

Print this page
rev 29186 : Review changes 2

*** 182,195 **** --- 182,198 ---- // Reserved area char* low_boundary() const { return _low_boundary; } char* high_boundary() const { return _high_boundary; } + #if INCLUDE_AOT + // Set boundaries for code section in AOT library. void set_low_boundary(char *p) { _low_boundary = p; } void set_high_boundary(char *p) { _high_boundary = p; } void set_low(char *p) { _low = p; } void set_high(char *p) { _high = p; } + #endif bool special() const { return _special; } public: // Initialization
src/share/vm/memory/virtualspace.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File