v8/test/cctest/interpreter/bytecode_expectations/ThisFunction.golden
neis 99cfa5f620 [interpreter] Remove redundant flag from bytecode cctest suite.
This removes the execute_ flag, which was always the negation of top_level_.

R=rmcilroy@chromium.org
BUG=

Review-Url: https://codereview.chromium.org/2390163003
Cr-Commit-Position: refs/heads/master@{#39961}
2016-10-04 16:30:15 +00:00

49 lines
693 B
Plaintext

#
# Autogenerated by generate-bytecode-expectations.
#
---
wrap: no
test function name: f
---
snippet: "
var f;
f = function f() {};
f();
"
frame size: 1
parameter count: 1
bytecode array length: 6
bytecodes: [
/* 21 E> */ B(StackCheck),
B(Mov), R(closure), R(0),
B(LdaUndefined),
/* 25 S> */ B(Return),
]
constant pool: [
]
handlers: [
]
---
snippet: "
var f;
f = function f() { return f; };
f();
"
frame size: 1
parameter count: 1
bytecode array length: 7
bytecodes: [
/* 21 E> */ B(StackCheck),
B(Mov), R(closure), R(0),
/* 26 S> */ B(Ldar), R(0),
/* 36 S> */ B(Return),
]
constant pool: [
]
handlers: [
]