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

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

Issue 2038323002: [interpreter] Filter expression positions at source. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@oth-0060-source-position-testing
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: 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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 /* 10 E> */ B(StackCheck), 110 /* 10 E> */ B(StackCheck),
111 /* 19 S> */ B(LdaSmi), U8(1), 111 /* 19 S> */ B(LdaSmi), U8(1),
112 /* 24 E> */ B(Star), R(arg0), 112 B(Star), R(arg0),
113 B(LdaUndefined), 113 B(LdaUndefined),
114 /* 29 S> */ B(Return), 114 /* 29 S> */ 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 /* 10 E> */ B(StackCheck), 130 /* 10 E> */ B(StackCheck),
131 /* 37 S> */ B(LdaSmi), U8(1), 131 /* 37 S> */ B(LdaSmi), U8(1),
132 /* 42 E> */ B(Star), R(arg1), 132 B(Star), R(arg1),
133 B(LdaUndefined), 133 B(LdaUndefined),
134 /* 47 S> */ B(Return), 134 /* 47 S> */ 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