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

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

Issue 2369873002: [Interpreter] Replace BytecodeRegisterAllocator with a simple bump pointer. (Closed)
Patch Set: Rebase Created 4 years, 2 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 execute: yes 6 execute: yes
7 wrap: yes 7 wrap: yes
8 8
9 --- 9 ---
10 snippet: " 10 snippet: "
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 ] 88 ]
89 handlers: [ 89 handlers: [
90 ] 90 ]
91 91
92 --- 92 ---
93 snippet: " 93 snippet: "
94 var x = 1234; 94 var x = 1234;
95 var y = void (x * x - 1); 95 var y = void (x * x - 1);
96 return y; 96 return y;
97 " 97 "
98 frame size: 4 98 frame size: 3
99 parameter count: 1 99 parameter count: 1
100 bytecode array length: 23 100 bytecode array length: 23
101 bytecodes: [ 101 bytecodes: [
102 /* 30 E> */ B(StackCheck), 102 /* 30 E> */ B(StackCheck),
103 /* 42 S> */ B(Wide), B(LdaSmi), U16(1234), 103 /* 42 S> */ B(Wide), B(LdaSmi), U16(1234),
104 B(Star), R(0), 104 B(Star), R(0),
105 /* 56 S> */ B(Nop), 105 /* 56 S> */ B(Nop),
106 /* 66 E> */ B(Mul), R(0), U8(2), 106 /* 66 E> */ B(Mul), R(0), U8(2),
107 B(Star), R(3), 107 B(Star), R(2),
108 B(SubSmi), U8(1), R(3), U8(3), 108 B(SubSmi), U8(1), R(2), U8(3),
109 B(LdrUndefined), R(1), 109 B(LdrUndefined), R(1),
110 B(Ldar), R(1), 110 B(Ldar), R(1),
111 /* 74 S> */ B(Nop), 111 /* 74 S> */ B(Nop),
112 /* 84 S> */ B(Return), 112 /* 84 S> */ B(Return),
113 ] 113 ]
114 constant pool: [ 114 constant pool: [
115 ] 115 ]
116 handlers: [ 116 handlers: [
117 ] 117 ]
118 118
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 B(Star), R(0), 172 B(Star), R(0),
173 /* 46 S> */ B(LdaSmi), U8(-1), 173 /* 46 S> */ B(LdaSmi), U8(-1),
174 B(Mul), R(0), U8(2), 174 B(Mul), R(0), U8(2),
175 /* 57 S> */ B(Return), 175 /* 57 S> */ B(Return),
176 ] 176 ]
177 constant pool: [ 177 constant pool: [
178 ] 178 ]
179 handlers: [ 179 handlers: [
180 ] 180 ]
181 181
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698