mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 22:34:27 +02:00
7045514: SPARC assembly code for JSR 292 ricochet frames
Reviewed-by: kvn, jrose
This commit is contained in:
parent
e666162b03
commit
a664e486bd
27 changed files with 2039 additions and 563 deletions
|
@ -638,7 +638,9 @@ void DerivedPointerTable::add(oop *derived_loc, oop *base_loc) {
|
|||
assert(*derived_loc != (oop)base_loc, "location already added");
|
||||
assert(_list != NULL, "list must exist");
|
||||
intptr_t offset = value_of_loc(derived_loc) - value_of_loc(base_loc);
|
||||
assert(offset >= -1000000, "wrong derived pointer info");
|
||||
// This assert is invalid because derived pointers can be
|
||||
// arbitrarily far away from their base.
|
||||
// assert(offset >= -1000000, "wrong derived pointer info");
|
||||
|
||||
if (TraceDerivedPointers) {
|
||||
tty->print_cr(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue