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

Side by Side Diff: test/cctest/interpreter/bytecode_expectations/LetVariable.golden

Issue 1947403002: [interpreter] Introduce bytecode generation pipeline. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Incorporate review comments. Created 4 years, 7 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
1 # 1 #
2 # Autogenerated by generate-bytecode-expectations. 2 # Autogenerated by generate-bytecode-expectations.
3 # 3 #
4 4
5 --- 5 ---
6 pool type: string 6 pool type: string
7 execute: yes 7 execute: yes
8 wrap: yes 8 wrap: yes
9 9
10 --- 10 ---
(...skipping 16 matching lines...) Expand all
27 ] 27 ]
28 handlers: [ 28 handlers: [
29 ] 29 ]
30 30
31 --- 31 ---
32 snippet: " 32 snippet: "
33 let x = 10; return x; 33 let x = 10; return x;
34 " 34 "
35 frame size: 2 35 frame size: 2
36 parameter count: 1 36 parameter count: 1
37 bytecode array length: 20 37 bytecode array length: 21
38 bytecodes: [ 38 bytecodes: [
39 B(LdaTheHole), 39 B(LdaTheHole),
40 B(Star), R(0), 40 B(Star), R(0),
41 B(StackCheck), 41 B(StackCheck),
42 B(LdaSmi), U8(10), 42 B(LdaSmi), U8(10),
43 B(Star), R(0), 43 B(Star), R(0),
44 B(Nop),
44 B(JumpIfNotHole), U8(11), 45 B(JumpIfNotHole), U8(11),
45 B(LdaConstant), U8(0), 46 B(LdaConstant), U8(0),
46 B(Star), R(1), 47 B(Star), R(1),
47 B(CallRuntime), U16(Runtime::kThrowReferenceError), R(1), U8(1), 48 B(CallRuntime), U16(Runtime::kThrowReferenceError), R(1), U8(1),
48 B(Return), 49 B(Return),
49 ] 50 ]
50 constant pool: [ 51 constant pool: [
51 "x", 52 "x",
52 ] 53 ]
53 handlers: [ 54 handlers: [
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 B(Star), R(0), 107 B(Star), R(0),
107 B(LdaUndefined), 108 B(LdaUndefined),
108 B(Return), 109 B(Return),
109 ] 110 ]
110 constant pool: [ 111 constant pool: [
111 "x", 112 "x",
112 ] 113 ]
113 handlers: [ 114 handlers: [
114 ] 115 ]
115 116
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698