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

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

Issue 1998203002: [Interpreter] Preserve source positions in peephole optimizer. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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 ---
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 ] 99 ]
100 100
101 --- 101 ---
102 snippet: " 102 snippet: "
103 var x = 1234; 103 var x = 1234;
104 var y = void (x * x - 1); 104 var y = void (x * x - 1);
105 return y; 105 return y;
106 " 106 "
107 frame size: 4 107 frame size: 4
108 parameter count: 1 108 parameter count: 1
109 bytecode array length: 23 109 bytecode array length: 24
110 bytecodes: [ 110 bytecodes: [
111 /* 30 E> */ B(StackCheck), 111 /* 30 E> */ B(StackCheck),
112 /* 42 S> */ B(Wide), B(LdaSmi), U16(1234), 112 /* 42 S> */ B(Wide), B(LdaSmi), U16(1234),
113 /* 42 E> */ B(Star), R(0), 113 /* 42 E> */ B(Star), R(0),
114 /* 56 S> */ B(Star), R(2), 114 /* 56 S> */ B(Star), R(2),
115 /* 66 E> */ B(Ldar), R(0), 115 /* 66 E> */ B(Ldar), R(0),
116 B(Mul), R(2), 116 B(Mul), R(2),
117 B(Star), R(3), 117 B(Star), R(3),
118 B(LdaSmi), U8(1), 118 B(LdaSmi), U8(1),
119 B(Sub), R(3), 119 B(Sub), R(3),
120 B(LdaUndefined), 120 B(LdaUndefined),
121 /* 56 E> */ B(Star), R(1), 121 /* 56 E> */ B(Star), R(1),
122 /* 74 S> */ B(Nop),
122 /* 84 S> */ B(Return), 123 /* 84 S> */ B(Return),
123 ] 124 ]
124 constant pool: [ 125 constant pool: [
125 ] 126 ]
126 handlers: [ 127 handlers: [
127 ] 128 ]
128 129
129 --- 130 ---
130 snippet: " 131 snippet: "
131 var x = 13; 132 var x = 13;
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 /* 46 S> */ B(Star), R(1), 186 /* 46 S> */ B(Star), R(1),
186 B(LdaSmi), U8(-1), 187 B(LdaSmi), U8(-1),
187 B(Mul), R(1), 188 B(Mul), R(1),
188 /* 57 S> */ B(Return), 189 /* 57 S> */ B(Return),
189 ] 190 ]
190 constant pool: [ 191 constant pool: [
191 ] 192 ]
192 handlers: [ 193 handlers: [
193 ] 194 ]
194 195
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698