mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 06:14:49 +02:00
Merge
This commit is contained in:
commit
d6a9b93b5a
133 changed files with 1889 additions and 1307 deletions
|
@ -1435,7 +1435,7 @@ IRT_LEAF(void, SharedRuntime::fixup_callers_callsite(methodOopDesc* method, addr
|
|||
// for the rest of its life! Just another racing bug in the life of
|
||||
// fixup_callers_callsite ...
|
||||
//
|
||||
RelocIterator iter(cb, call->instruction_address(), call->next_instruction_address());
|
||||
RelocIterator iter(nm, call->instruction_address(), call->next_instruction_address());
|
||||
iter.next();
|
||||
assert(iter.has_current(), "must have a reloc at java call site");
|
||||
relocInfo::relocType typ = iter.reloc()->type();
|
||||
|
@ -2055,11 +2055,11 @@ class AdapterHandlerTableIterator : public StackObj {
|
|||
void scan() {
|
||||
while (_index < _table->table_size()) {
|
||||
AdapterHandlerEntry* a = _table->bucket(_index);
|
||||
_index++;
|
||||
if (a != NULL) {
|
||||
_current = a;
|
||||
return;
|
||||
}
|
||||
_index++;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue