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

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: 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 /* 56 E> */ B(LdrUndefined), R(1),
121 /* 56 E> */ B(Star), R(1), 121 B(Ldar), R(1),
122 /* 84 S> */ B(Return), 122 /* 84 S> */ B(Return),
123 ] 123 ]
124 constant pool: [ 124 constant pool: [
125 ] 125 ]
126 handlers: [ 126 handlers: [
127 ] 127 ]
128 128
129 --- 129 ---
130 snippet: " 130 snippet: "
131 var x = 13; 131 var x = 13;
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 /* 46 S> */ B(Star), R(1), 185 /* 46 S> */ B(Star), R(1),
186 B(LdaSmi), U8(-1), 186 B(LdaSmi), U8(-1),
187 B(Mul), R(1), 187 B(Mul), R(1),
188 /* 57 S> */ B(Return), 188 /* 57 S> */ B(Return),
189 ] 189 ]
190 constant pool: [ 190 constant pool: [
191 ] 191 ]
192 handlers: [ 192 handlers: [
193 ] 193 ]
194 194
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698