Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Side by Side Diff: test/cctest/interpreter/DeleteLookupSlotInEval.golden

Issue 1717293002: [Interpreter] Refactor bytecode generator test suite. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: std::vector instead of initializer_list, golden path as constant. Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 #
2 # Autogenerated by generate-bytecode-expectations
3 #
4
5 ---
6 pool type: string
7 execute: yes
8 wrap: no
9 test function name: f
10
11 ---
12 snippet: "
13 var f;var x = 1;z = 10;function f1() { var y; eval(\"function t() {delete x; }; f = t; f();\");}f1();
14 "
15 frame size: 1 # in multiples of sizeof(void*)
16 parameter count: 1
17 bytecodes: [
18 B(StackCheck),
19 B(LdaConstant), U8(0),
20 B(Star), R(0),
21 B(CallRuntime), U16(468), R(0), U8(1),
22 B(LdaUndefined),
23 B(Return),
24 ]
25 constant pool: [
26 "x",
27 ]
28 handlers: [
29 ]
30
31 ---
32 snippet: "
33 var f;var x = 1;z = 10;function f1() { var y; eval(\"function t() {return de lete y; }; f = t; f();\");}f1();
34 "
35 frame size: 0
36 parameter count: 1
37 bytecodes: [
38 B(StackCheck),
39 B(LdaFalse),
40 B(Return),
41 ]
42 constant pool: [
43 ]
44 handlers: [
45 ]
46
47 ---
48 snippet: "
49 var f;var x = 1;z = 10;function f1() { var y; eval(\"function t() {return de lete z; }; f = t; f();\");}f1();
50 "
51 frame size: 1 # in multiples of sizeof(void*)
52 parameter count: 1
53 bytecodes: [
54 B(StackCheck),
55 B(LdaConstant), U8(0),
56 B(Star), R(0),
57 B(CallRuntime), U16(468), R(0), U8(1),
58 B(Return),
59 ]
60 constant pool: [
61 "z",
62 ]
63 handlers: [
64 ]
65
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698