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

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

Issue 1783483002: [interpreter] Add support for scalable operands. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Re-generate golden files. Created 4 years, 9 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: mixed 6 pool type: mixed
7 execute: yes 7 execute: yes
8 wrap: no 8 wrap: no
9 test function name: f 9 test function name: f
10 10
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 --- 101 ---
102 snippet: " 102 snippet: "
103 function f(arg1) { arg1 = 1; } 103 function f(arg1) { arg1 = 1; }
104 f(); 104 f();
105 " 105 "
106 frame size: 0 106 frame size: 0
107 parameter count: 2 107 parameter count: 2
108 bytecode array length: 7 108 bytecode array length: 7
109 bytecodes: [ 109 bytecodes: [
110 B(StackCheck), 110 B(StackCheck),
111 B(LdaSmi8), U8(1), 111 B(LdaSmi), U8(1),
112 B(Star), R(arg0), 112 B(Star), R(arg0),
113 B(LdaUndefined), 113 B(LdaUndefined),
114 B(Return), 114 B(Return),
115 ] 115 ]
116 constant pool: [ 116 constant pool: [
117 ] 117 ]
118 handlers: [ 118 handlers: [
119 ] 119 ]
120 120
121 --- 121 ---
122 snippet: " 122 snippet: "
123 function f(arg1, arg2, arg3, arg4) { arg2 = 1; } 123 function f(arg1, arg2, arg3, arg4) { arg2 = 1; }
124 f(); 124 f();
125 " 125 "
126 frame size: 0 126 frame size: 0
127 parameter count: 5 127 parameter count: 5
128 bytecode array length: 7 128 bytecode array length: 7
129 bytecodes: [ 129 bytecodes: [
130 B(StackCheck), 130 B(StackCheck),
131 B(LdaSmi8), U8(1), 131 B(LdaSmi), U8(1),
132 B(Star), R(arg1), 132 B(Star), R(arg1),
133 B(LdaUndefined), 133 B(LdaUndefined),
134 B(Return), 134 B(Return),
135 ] 135 ]
136 constant pool: [ 136 constant pool: [
137 ] 137 ]
138 handlers: [ 138 handlers: [
139 ] 139 ]
140 140
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698