v8/test/cctest/interpreter/bytecode_expectations/LookupSlotInEval.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

106 lines
1.8 KiB
Plaintext

#
# Autogenerated by generate-bytecode-expectations.
#
---
wrap: no
test function name: f
---
snippet: "
var f;
var x = 1;
function f1() {
eval(\"function t() { return x; }; f = t; f();\");
}
f1();
"
frame size: 0
parameter count: 1
bytecode array length: 6
bytecodes: [
/* 10 E> */ B(StackCheck),
/* 15 S> */ B(LdaLookupGlobalSlot), U8(0), U8(2), U8(1),
/* 25 S> */ B(Return),
]
constant pool: [
ONE_BYTE_INTERNALIZED_STRING_TYPE ["x"],
]
handlers: [
]
---
snippet: "
var f;
var x = 1;
function f1() {
eval(\"function t() { x = 10; }; f = t; f();\");
}
f1();
"
frame size: 0
parameter count: 1
bytecode array length: 7
bytecodes: [
/* 10 E> */ B(StackCheck),
/* 15 S> */ B(LdaSmi), U8(10),
/* 17 E> */ B(StaLookupSlotSloppy), U8(0),
B(LdaUndefined),
/* 23 S> */ B(Return),
]
constant pool: [
ONE_BYTE_INTERNALIZED_STRING_TYPE ["x"],
]
handlers: [
]
---
snippet: "
var f;
var x = 1;
function f1() {
eval(\"function t() { 'use strict'; x = 10; }; f = t; f();\");
}
f1();
"
frame size: 0
parameter count: 1
bytecode array length: 7
bytecodes: [
/* 10 E> */ B(StackCheck),
/* 29 S> */ B(LdaSmi), U8(10),
/* 31 E> */ B(StaLookupSlotStrict), U8(0),
B(LdaUndefined),
/* 37 S> */ B(Return),
]
constant pool: [
ONE_BYTE_INTERNALIZED_STRING_TYPE ["x"],
]
handlers: [
]
---
snippet: "
var f;
var x = 1;
function f1() {
eval(\"function t() { return typeof x; }; f = t; f();\");
}
f1();
"
frame size: 0
parameter count: 1
bytecode array length: 7
bytecodes: [
/* 10 E> */ B(StackCheck),
/* 15 S> */ B(LdaLookupGlobalSlotInsideTypeof), U8(0), U8(2), U8(1),
B(TypeOf),
/* 32 S> */ B(Return),
]
constant pool: [
ONE_BYTE_INTERNALIZED_STRING_TYPE ["x"],
]
handlers: [
]