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

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

Issue 2310103002: [Interpreter] Remove constant pool type in tests (Closed)
Patch Set: Remove warning for pool type Created 4 years, 3 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
7 execute: yes 6 execute: yes
8 wrap: yes 7 wrap: yes
9 8
10 --- 9 ---
11 snippet: " 10 snippet: "
12 var a = 1; 11 var a = 1;
13 try { a = 2; } finally { a = 3; } 12 try { a = 2; } finally { a = 3; }
14 " 13 "
15 frame size: 4 14 frame size: 4
16 parameter count: 1 15 parameter count: 1
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 B(LdaZero), 88 B(LdaZero),
90 B(TestEqualStrict), R(2), U8(0), 89 B(TestEqualStrict), R(2), U8(0),
91 B(JumpIfTrue), U8(4), 90 B(JumpIfTrue), U8(4),
92 B(Jump), U8(5), 91 B(Jump), U8(5),
93 B(Ldar), R(3), 92 B(Ldar), R(3),
94 B(ReThrow), 93 B(ReThrow),
95 B(LdaUndefined), 94 B(LdaUndefined),
96 /* 99 S> */ B(Return), 95 /* 99 S> */ B(Return),
97 ] 96 ]
98 constant pool: [ 97 constant pool: [
99 InstanceType::ONE_BYTE_INTERNALIZED_STRING_TYPE, 98 ONE_BYTE_INTERNALIZED_STRING_TYPE ["e"],
100 InstanceType::FIXED_ARRAY_TYPE, 99 FIXED_ARRAY_TYPE,
101 ] 100 ]
102 handlers: [ 101 handlers: [
103 [8, 42, 48], 102 [8, 42, 48],
104 [11, 15, 17], 103 [11, 15, 17],
105 ] 104 ]
106 105
107 --- 106 ---
108 snippet: " 107 snippet: "
109 var a; try { 108 var a; try {
110 try { a = 1 } catch(e) { a = 2 } 109 try { a = 1 } catch(e) { a = 2 }
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 B(LdaZero), 155 B(LdaZero),
157 B(TestEqualStrict), R(2), U8(0), 156 B(TestEqualStrict), R(2), U8(0),
158 B(JumpIfTrue), U8(4), 157 B(JumpIfTrue), U8(4),
159 B(Jump), U8(5), 158 B(Jump), U8(5),
160 B(Ldar), R(3), 159 B(Ldar), R(3),
161 B(ReThrow), 160 B(ReThrow),
162 B(LdaUndefined), 161 B(LdaUndefined),
163 /* 123 S> */ B(Return), 162 /* 123 S> */ B(Return),
164 ] 163 ]
165 constant pool: [ 164 constant pool: [
166 InstanceType::ONE_BYTE_INTERNALIZED_STRING_TYPE, 165 ONE_BYTE_INTERNALIZED_STRING_TYPE ["e"],
167 InstanceType::FIXED_ARRAY_TYPE, 166 FIXED_ARRAY_TYPE,
168 InstanceType::FIXED_ARRAY_TYPE, 167 FIXED_ARRAY_TYPE,
169 ] 168 ]
170 handlers: [ 169 handlers: [
171 [4, 68, 74], 170 [4, 68, 74],
172 [7, 41, 43], 171 [7, 41, 43],
173 [10, 14, 16], 172 [10, 14, 16],
174 ] 173 ]
175 174
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698