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

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

Issue 1947403002: [interpreter] Introduce bytecode generation pipeline. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix return type of BytecodeSourceInfo::is_statement() 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: mixed 6 pool type: mixed
7 execute: yes 7 execute: yes
8 wrap: yes 8 wrap: yes
9 9
10 --- 10 ---
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 handlers: [ 58 handlers: [
59 ] 59 ]
60 60
61 --- 61 ---
62 snippet: " 62 snippet: "
63 var x = 'potatoes'; 63 var x = 'potatoes';
64 for (var p in x) { return p; } 64 for (var p in x) { return p; }
65 " 65 "
66 frame size: 8 66 frame size: 8
67 parameter count: 1 67 parameter count: 1
68 bytecode array length: 45 68 bytecode array length: 46
69 bytecodes: [ 69 bytecodes: [
70 B(StackCheck), 70 B(StackCheck),
71 B(LdaConstant), U8(0), 71 B(LdaConstant), U8(0),
72 B(Star), R(1), 72 B(Star), R(1),
73 B(Nop),
73 B(JumpIfUndefined), U8(38), 74 B(JumpIfUndefined), U8(38),
74 B(JumpIfNull), U8(36), 75 B(JumpIfNull), U8(36),
75 B(ToObject), 76 B(ToObject),
76 B(Star), R(3), 77 B(Star), R(3),
77 B(ForInPrepare), R(4), 78 B(ForInPrepare), R(4),
78 B(LdaZero), 79 B(LdaZero),
79 B(Star), R(7), 80 B(Star), R(7),
80 B(ForInDone), R(7), R(6), 81 B(ForInDone), R(7), R(6),
81 B(JumpIfTrue), U8(23), 82 B(JumpIfTrue), U8(23),
82 B(ForInNext), R(3), R(7), R(4), U8(1), 83 B(ForInNext), R(3), R(7), R(4), U8(1),
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 B(LdaUndefined), 251 B(LdaUndefined),
251 B(Return), 252 B(Return),
252 ] 253 ]
253 constant pool: [ 254 constant pool: [
254 InstanceType::FIXED_ARRAY_TYPE, 255 InstanceType::FIXED_ARRAY_TYPE,
255 InstanceType::FIXED_ARRAY_TYPE, 256 InstanceType::FIXED_ARRAY_TYPE,
256 ] 257 ]
257 handlers: [ 258 handlers: [
258 ] 259 ]
259 260
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698