v8/test/cctest/interpreter/bytecode_expectations/DeadCodeRemoval.golden
oth 52600c6b1c [interpreter] Add checks for source position to test-bytecode-generator.
Prints source position information alongside bytecode.

BUG=v8:4280
LOG=N

Review-Url: https://codereview.chromium.org/1963663002
Cr-Commit-Position: refs/heads/master@{#36171}
2016-05-11 12:22:17 +00:00

85 lines
1.3 KiB
Plaintext

#
# Autogenerated by generate-bytecode-expectations.
#
---
pool type: number
execute: yes
wrap: yes
---
snippet: "
return; var a = 1; a();
"
frame size: 1
parameter count: 1
bytecode array length: 3
bytecodes: [
/* 30 E> */ B(StackCheck),
/* 34 S> */ B(LdaUndefined),
/* 58 S> */ B(Return),
]
constant pool: [
]
handlers: [
]
---
snippet: "
if (false) { return; }; var a = 1;
"
frame size: 1
parameter count: 1
bytecode array length: 7
bytecodes: [
/* 30 E> */ B(StackCheck),
/* 66 S> */ B(LdaSmi), U8(1),
/* 66 E> */ B(Star), R(0),
B(LdaUndefined),
/* 69 S> */ B(Return),
]
constant pool: [
]
handlers: [
]
---
snippet: "
if (true) { return 1; } else { return 2; };
"
frame size: 0
parameter count: 1
bytecode array length: 4
bytecodes: [
/* 30 E> */ B(StackCheck),
/* 46 S> */ B(LdaSmi), U8(1),
/* 78 S> */ B(Return),
]
constant pool: [
]
handlers: [
]
---
snippet: "
var a = 1; if (a) { return 1; }; return 2;
"
frame size: 1
parameter count: 1
bytecode array length: 13
bytecodes: [
/* 30 E> */ B(StackCheck),
/* 42 S> */ B(LdaSmi), U8(1),
/* 42 E> */ B(Star), R(0),
/* 45 S> */ B(JumpIfToBooleanFalse), U8(5),
/* 54 S> */ B(LdaSmi), U8(1),
/* 77 S> */ B(Return),
/* 67 S> */ B(LdaSmi), U8(2),
/* 77 S> */ B(Return),
]
constant pool: [
]
handlers: [
]