src/share/vm/memory/virtualspace.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File
*** old/src/share/vm/memory/virtualspace.hpp	Thu Nov  3 14:16:42 2016
--- new/src/share/vm/memory/virtualspace.hpp	Thu Nov  3 14:16:42 2016

*** 182,191 **** --- 182,199 ---- // 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 VirtualSpace();

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