mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Free block->incoming in invalidate_block_version()
This commit is contained in:
parent
a7c1bc61d2
commit
e7d20e6616
2 changed files with 5 additions and 52 deletions
|
@ -1,47 +0,0 @@
|
||||||
NUM_LEVELS = 30
|
|
||||||
FNS_PER_LEVEL = 1000
|
|
||||||
|
|
||||||
$out = ""
|
|
||||||
|
|
||||||
def addln(str = "")
|
|
||||||
$out << str << "\n"
|
|
||||||
end
|
|
||||||
|
|
||||||
NUM_LEVELS.times do |l_no|
|
|
||||||
FNS_PER_LEVEL.times do |f_no|
|
|
||||||
f_name = "fun_l#{l_no}_n#{f_no}"
|
|
||||||
|
|
||||||
if l_no < NUM_LEVELS - 1
|
|
||||||
callee_no = rand(0...FNS_PER_LEVEL)
|
|
||||||
callee_name = "fun_l#{l_no+1}_n#{callee_no}"
|
|
||||||
else
|
|
||||||
callee_name = "inc"
|
|
||||||
end
|
|
||||||
|
|
||||||
addln("def #{f_name}()")
|
|
||||||
addln(" #{callee_name}")
|
|
||||||
addln("end")
|
|
||||||
addln()
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
addln("@a = 0")
|
|
||||||
addln("@b = 0")
|
|
||||||
addln("@c = 0")
|
|
||||||
addln("@d = 0")
|
|
||||||
addln("@count = 0")
|
|
||||||
addln("def inc()")
|
|
||||||
addln(" @count += 1")
|
|
||||||
addln("end")
|
|
||||||
|
|
||||||
# 100K times
|
|
||||||
addln("100000.times do")
|
|
||||||
FNS_PER_LEVEL.times do |f_no|
|
|
||||||
f_name = "fun_l0_n#{f_no}"
|
|
||||||
addln(" #{f_name}")
|
|
||||||
end
|
|
||||||
addln("end")
|
|
||||||
|
|
||||||
addln("puts @count")
|
|
||||||
|
|
||||||
puts($out)
|
|
10
ujit_core.c
10
ujit_core.c
|
@ -647,15 +647,15 @@ invalidate_block_version(block_t* block)
|
||||||
void* handler_addr = (void*)handler_table[entry_opcode];
|
void* handler_addr = (void*)handler_table[entry_opcode];
|
||||||
iseq->body->iseq_encoded[idx] = (VALUE)handler_addr;
|
iseq->body->iseq_encoded[idx] = (VALUE)handler_addr;
|
||||||
|
|
||||||
//
|
|
||||||
// Optional: may want to recompile a new deoptimized entry point
|
|
||||||
//
|
|
||||||
|
|
||||||
// TODO:
|
// TODO:
|
||||||
|
// May want to recompile a new entry point (for interpreter entry blocks)
|
||||||
|
// This isn't necessary for correctness
|
||||||
|
|
||||||
|
// FIXME:
|
||||||
// Call continuation addresses on the stack can also be atomically replaced by jumps going to the stub.
|
// Call continuation addresses on the stack can also be atomically replaced by jumps going to the stub.
|
||||||
// For now this isn't an issue
|
|
||||||
|
|
||||||
// Free the old block version object
|
// Free the old block version object
|
||||||
|
free(block->incoming);
|
||||||
free(block);
|
free(block);
|
||||||
|
|
||||||
fprintf(stderr, "invalidation done\n");
|
fprintf(stderr, "invalidation done\n");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue