c9864173f1
This introduces a new {JumpLoop} bytecode to combine the OSR polling mechanism modeled by {OsrPoll} with the actual {Jump} performing the backwards branch. This reduces the overall size and also avoids one additional dispatch. It also makes sure that OSR polling is only done within real loops. R=rmcilroy@chromium.org BUG=v8:4764 Review-Url: https://codereview.chromium.org/2331033002 Cr-Commit-Position: refs/heads/master@{#39384}
98 lines
1.8 KiB
Plaintext
98 lines
1.8 KiB
Plaintext
#
|
|
# Autogenerated by generate-bytecode-expectations.
|
|
#
|
|
|
|
---
|
|
execute: yes
|
|
wrap: yes
|
|
|
|
---
|
|
snippet: "
|
|
var ld_a = 1;
|
|
while(true) {
|
|
ld_a = ld_a + ld_a;
|
|
if (ld_a > 10) break;
|
|
}
|
|
return ld_a;
|
|
"
|
|
frame size: 1
|
|
parameter count: 1
|
|
bytecode array length: 28
|
|
bytecodes: [
|
|
/* 30 E> */ B(StackCheck),
|
|
/* 45 S> */ B(LdaSmi), U8(1),
|
|
B(Star), R(0),
|
|
/* 48 E> */ B(StackCheck),
|
|
/* 64 S> */ B(Ldar), R(0),
|
|
/* 78 E> */ B(Add), R(0), U8(1),
|
|
B(Star), R(0),
|
|
/* 86 S> */ B(LdaSmi), U8(10),
|
|
/* 95 E> */ B(TestGreaterThan), R(0), U8(2),
|
|
B(JumpIfFalse), U8(4),
|
|
/* 101 S> */ B(Jump), U8(5),
|
|
B(JumpLoop), U8(-17), U8(0),
|
|
/* 110 S> */ B(Ldar), R(0),
|
|
/* 123 S> */ B(Return),
|
|
]
|
|
constant pool: [
|
|
]
|
|
handlers: [
|
|
]
|
|
|
|
---
|
|
snippet: "
|
|
var ld_a = 1;
|
|
do {
|
|
ld_a = ld_a + ld_a;
|
|
if (ld_a > 10) continue;
|
|
} while(false);
|
|
return ld_a;
|
|
"
|
|
frame size: 1
|
|
parameter count: 1
|
|
bytecode array length: 24
|
|
bytecodes: [
|
|
/* 30 E> */ B(StackCheck),
|
|
/* 45 S> */ B(LdaSmi), U8(1),
|
|
B(Star), R(0),
|
|
/* 48 E> */ B(StackCheck),
|
|
/* 55 S> */ B(Nop),
|
|
/* 69 E> */ B(Add), R(0), U8(1),
|
|
B(Star), R(0),
|
|
/* 77 S> */ B(LdaSmi), U8(10),
|
|
/* 86 E> */ B(TestGreaterThan), R(0), U8(2),
|
|
B(JumpIfFalse), U8(4),
|
|
/* 92 S> */ B(Jump), U8(2),
|
|
/* 118 S> */ B(Ldar), R(0),
|
|
/* 131 S> */ B(Return),
|
|
]
|
|
constant pool: [
|
|
]
|
|
handlers: [
|
|
]
|
|
|
|
---
|
|
snippet: "
|
|
var ld_a = 1;
|
|
ld_a = ld_a + ld_a;
|
|
return ld_a;
|
|
"
|
|
frame size: 1
|
|
parameter count: 1
|
|
bytecode array length: 13
|
|
bytecodes: [
|
|
/* 30 E> */ B(StackCheck),
|
|
/* 45 S> */ B(LdaSmi), U8(1),
|
|
B(Star), R(0),
|
|
/* 50 S> */ B(Nop),
|
|
/* 64 E> */ B(Add), R(0), U8(1),
|
|
B(Star), R(0),
|
|
/* 72 S> */ B(Nop),
|
|
/* 85 S> */ B(Return),
|
|
]
|
|
constant pool: [
|
|
]
|
|
handlers: [
|
|
]
|
|
|