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

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

Issue 1998203002: [Interpreter] Preserve source positions in peephole optimizer. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Simplify condition. 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: number 6 pool type: number
7 execute: yes 7 execute: yes
8 wrap: yes 8 wrap: yes
9 9
10 --- 10 ---
11 snippet: " 11 snippet: "
12 var x = 0; return x; 12 var x = 0; return x;
13 " 13 "
14 frame size: 1 14 frame size: 1
15 parameter count: 1 15 parameter count: 1
16 bytecode array length: 5 16 bytecode array length: 6
17 bytecodes: [ 17 bytecodes: [
18 /* 30 E> */ B(StackCheck), 18 /* 30 E> */ B(StackCheck),
19 /* 42 S> */ B(LdaZero), 19 /* 42 S> */ B(LdaZero),
20 /* 42 E> */ B(Star), R(0), 20 /* 42 E> */ B(Star), R(0),
21 /* 45 S> */ B(Nop),
21 /* 55 S> */ B(Return), 22 /* 55 S> */ B(Return),
22 ] 23 ]
23 constant pool: [ 24 constant pool: [
24 ] 25 ]
25 handlers: [ 26 handlers: [
26 ] 27 ]
27 28
28 --- 29 ---
29 snippet: " 30 snippet: "
30 var x = 0; return x + 3; 31 var x = 0; return x + 3;
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
268 /* 42 S> */ B(LdaZero), 269 /* 42 S> */ B(LdaZero),
269 /* 42 E> */ B(Star), R(0), 270 /* 42 E> */ B(Star), R(0),
270 /* 45 S> */ B(LdaSmi), U8(3), 271 /* 45 S> */ B(LdaSmi), U8(3),
271 /* 60 S> */ B(Return), 272 /* 60 S> */ B(Return),
272 ] 273 ]
273 constant pool: [ 274 constant pool: [
274 ] 275 ]
275 handlers: [ 276 handlers: [
276 ] 277 ]
277 278
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698