Searched defs:compressed_table_end (Results 1 - 1 of 1) sorted by relevance

/openjdk7/hotspot/src/share/vm/oops/
H A DconstMethodKlass.cpp230 address compressed_table_end = compressed_table_start; local
237 compressed_table_end += stream.position();
239 guarantee(compressed_table_end <= m_end, "invalid method layout");
243 guarantee(*addr > 0 && (address) addr >= compressed_table_end && (address) addr < m_end, "invalid method layout");
247 guarantee(*addr > 0 && (address) addr >= compressed_table_end && (address) addr < m_end, "invalid method layout");
251 guarantee(*addr > 0 && (address) addr >= compressed_table_end && (address) addr < m_end, "invalid method layout");
253 // Check compressed_table_end relative to uncompressed_table_start
264 int gap = (intptr_t) uncompressed_table_start - (intptr_t) compressed_table_end;

Completed in 30 milliseconds