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

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

Issue 1985753002: [interpreter] Introduce fused bytecodes for common sequences. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase. Created 4 years, 6 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: 24 109 bytecode array length: 25
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 B(Star), R(0), 113 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 /* 56 E> */ B(LdrUndefined), R(1),
121 B(Star), R(1), 121 B(Ldar), R(1),
122 /* 74 S> */ B(Nop), 122 /* 74 S> */ B(Nop),
123 /* 84 S> */ B(Return), 123 /* 84 S> */ B(Return),
124 ] 124 ]
125 constant pool: [ 125 constant pool: [
126 ] 126 ]
127 handlers: [ 127 handlers: [
128 ] 128 ]
129 129
130 --- 130 ---
131 snippet: " 131 snippet: "
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 /* 46 S> */ B(Star), R(1), 186 /* 46 S> */ B(Star), R(1),
187 B(LdaSmi), U8(-1), 187 B(LdaSmi), U8(-1),
188 B(Mul), R(1), 188 B(Mul), R(1),
189 /* 57 S> */ B(Return), 189 /* 57 S> */ B(Return),
190 ] 190 ]
191 constant pool: [ 191 constant pool: [
192 ] 192 ]
193 handlers: [ 193 handlers: [
194 ] 194 ]
195 195
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698