mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-22 12:04:39 +02:00
8141501: Problems with BitMap buffer management
Reviewed-by: pliden, kbarrett
This commit is contained in:
parent
46d52062aa
commit
f8be292b88
41 changed files with 539 additions and 319 deletions
|
@ -261,7 +261,7 @@ void Parse::load_interpreter_state(Node* osr_buf) {
|
|||
Node *locals_addr = basic_plus_adr(osr_buf, osr_buf, (max_locals-1)*wordSize);
|
||||
|
||||
// find all the locals that the interpreter thinks contain live oops
|
||||
const BitMap live_oops = method()->live_local_oops_at_bci(osr_bci());
|
||||
const ResourceBitMap live_oops = method()->live_local_oops_at_bci(osr_bci());
|
||||
for (index = 0; index < max_locals; index++) {
|
||||
|
||||
if (!live_locals.at(index)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue