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

Side by Side Diff: src/wasm/wasm-opcodes.h

Issue 1798863004: [wasm] Add I64Eqz operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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
« no previous file with comments | « src/wasm/wasm-macro-gen.h ('k') | test/cctest/wasm/test-run-wasm-64.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_WASM_OPCODES_H_ 5 #ifndef V8_WASM_OPCODES_H_
6 #define V8_WASM_OPCODES_H_ 6 #define V8_WASM_OPCODES_H_
7 7
8 #include "src/machine-type.h" 8 #include "src/machine-type.h"
9 #include "src/signature.h" 9 #include "src/signature.h"
10 10
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 V(I64LeS, 0x6b, i_ll) \ 168 V(I64LeS, 0x6b, i_ll) \
169 V(I64LtU, 0x6c, i_ll) \ 169 V(I64LtU, 0x6c, i_ll) \
170 V(I64LeU, 0x6d, i_ll) \ 170 V(I64LeU, 0x6d, i_ll) \
171 V(I64GtS, 0x6e, i_ll) \ 171 V(I64GtS, 0x6e, i_ll) \
172 V(I64GeS, 0x6f, i_ll) \ 172 V(I64GeS, 0x6f, i_ll) \
173 V(I64GtU, 0x70, i_ll) \ 173 V(I64GtU, 0x70, i_ll) \
174 V(I64GeU, 0x71, i_ll) \ 174 V(I64GeU, 0x71, i_ll) \
175 V(I64Clz, 0x72, l_l) \ 175 V(I64Clz, 0x72, l_l) \
176 V(I64Ctz, 0x73, l_l) \ 176 V(I64Ctz, 0x73, l_l) \
177 V(I64Popcnt, 0x74, l_l) \ 177 V(I64Popcnt, 0x74, l_l) \
178 V(I64Eqz, 0xba, i_l) \
178 V(F32Add, 0x75, f_ff) \ 179 V(F32Add, 0x75, f_ff) \
179 V(F32Sub, 0x76, f_ff) \ 180 V(F32Sub, 0x76, f_ff) \
180 V(F32Mul, 0x77, f_ff) \ 181 V(F32Mul, 0x77, f_ff) \
181 V(F32Div, 0x78, f_ff) \ 182 V(F32Div, 0x78, f_ff) \
182 V(F32Min, 0x79, f_ff) \ 183 V(F32Min, 0x79, f_ff) \
183 V(F32Max, 0x7a, f_ff) \ 184 V(F32Max, 0x7a, f_ff) \
184 V(F32Abs, 0x7b, f_f) \ 185 V(F32Abs, 0x7b, f_f) \
185 V(F32Neg, 0x7c, f_f) \ 186 V(F32Neg, 0x7c, f_f) \
186 V(F32CopySign, 0x7d, f_ff) \ 187 V(F32CopySign, 0x7d, f_ff) \
187 V(F32Ceil, 0x7e, f_f) \ 188 V(F32Ceil, 0x7e, f_f) \
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after
471 default: 472 default:
472 return "<unknown>"; 473 return "<unknown>";
473 } 474 }
474 } 475 }
475 }; 476 };
476 } // namespace wasm 477 } // namespace wasm
477 } // namespace internal 478 } // namespace internal
478 } // namespace v8 479 } // namespace v8
479 480
480 #endif // V8_WASM_OPCODES_H_ 481 #endif // V8_WASM_OPCODES_H_
OLDNEW
« no previous file with comments | « src/wasm/wasm-macro-gen.h ('k') | test/cctest/wasm/test-run-wasm-64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698