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

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

Issue 2248693005: [Parser] Track ContainsDot for SMI values. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 4 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: number 6 pool type: number
7 execute: yes 7 execute: yes
8 wrap: yes 8 wrap: yes
9 9
10 --- 10 ---
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 var x = 13; 143 var x = 13;
144 return +x; 144 return +x;
145 " 145 "
146 frame size: 1 146 frame size: 1
147 parameter count: 1 147 parameter count: 1
148 bytecode array length: 11 148 bytecode array length: 11
149 bytecodes: [ 149 bytecodes: [
150 /* 30 E> */ B(StackCheck), 150 /* 30 E> */ B(StackCheck),
151 /* 42 S> */ B(LdaSmi), U8(13), 151 /* 42 S> */ B(LdaSmi), U8(13),
152 B(Star), R(0), 152 B(Star), R(0),
153 /* 46 S> */ B(LdaConstant), U8(0), 153 /* 46 S> */ B(LdaSmi), U8(1),
154 B(Mul), R(0), U8(1), 154 B(Mul), R(0), U8(1),
155 /* 57 S> */ B(Return), 155 /* 57 S> */ B(Return),
156 ] 156 ]
157 constant pool: [ 157 constant pool: [
158 1,
159 ] 158 ]
160 handlers: [ 159 handlers: [
161 ] 160 ]
162 161
163 --- 162 ---
164 snippet: " 163 snippet: "
165 var x = 13; 164 var x = 13;
166 return -x; 165 return -x;
167 " 166 "
168 frame size: 1 167 frame size: 1
169 parameter count: 1 168 parameter count: 1
170 bytecode array length: 11 169 bytecode array length: 11
171 bytecodes: [ 170 bytecodes: [
172 /* 30 E> */ B(StackCheck), 171 /* 30 E> */ B(StackCheck),
173 /* 42 S> */ B(LdaSmi), U8(13), 172 /* 42 S> */ B(LdaSmi), U8(13),
174 B(Star), R(0), 173 B(Star), R(0),
175 /* 46 S> */ B(LdaSmi), U8(-1), 174 /* 46 S> */ B(LdaSmi), U8(-1),
176 B(Mul), R(0), U8(1), 175 B(Mul), R(0), U8(1),
177 /* 57 S> */ B(Return), 176 /* 57 S> */ B(Return),
178 ] 177 ]
179 constant pool: [ 178 constant pool: [
180 ] 179 ]
181 handlers: [ 180 handlers: [
182 ] 181 ]
183 182
OLDNEW
« no previous file with comments | « test/cctest/interpreter/bytecode_expectations/PrimitiveReturnStatements.golden ('k') | test/mjsunit/regress/regress-638134.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698