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

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

Issue 2498283002: [wasm] implement simd lowering for replaceLane, load, store and test for phi (Closed)
Patch Set: [wasm] implement simd lowering for replaceLane, load, store and test for phi Created 4 years 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-simd-lowering.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/globals.h" 8 #include "src/globals.h"
9 #include "src/machine-type.h" 9 #include "src/machine-type.h"
10 #include "src/signature.h" 10 #include "src/signature.h"
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 V(I32AsmjsStoreMem, 0xdd, i_ii) \ 269 V(I32AsmjsStoreMem, 0xdd, i_ii) \
270 V(F32AsmjsStoreMem, 0xde, f_if) \ 270 V(F32AsmjsStoreMem, 0xde, f_if) \
271 V(F64AsmjsStoreMem, 0xdf, d_id) \ 271 V(F64AsmjsStoreMem, 0xdf, d_id) \
272 V(I32AsmjsSConvertF32, 0xe0, i_f) \ 272 V(I32AsmjsSConvertF32, 0xe0, i_f) \
273 V(I32AsmjsUConvertF32, 0xe1, i_f) \ 273 V(I32AsmjsUConvertF32, 0xe1, i_f) \
274 V(I32AsmjsSConvertF64, 0xe2, i_d) \ 274 V(I32AsmjsSConvertF64, 0xe2, i_d) \
275 V(I32AsmjsUConvertF64, 0xe3, i_d) 275 V(I32AsmjsUConvertF64, 0xe3, i_d)
276 276
277 #define FOREACH_SIMD_0_OPERAND_OPCODE(V) \ 277 #define FOREACH_SIMD_0_OPERAND_OPCODE(V) \
278 V(F32x4Splat, 0xe500, s_f) \ 278 V(F32x4Splat, 0xe500, s_f) \
279 V(F32x4ReplaceLane, 0xe502, s_sif) \
280 V(F32x4Abs, 0xe503, s_s) \ 279 V(F32x4Abs, 0xe503, s_s) \
281 V(F32x4Neg, 0xe504, s_s) \ 280 V(F32x4Neg, 0xe504, s_s) \
282 V(F32x4Sqrt, 0xe505, s_s) \ 281 V(F32x4Sqrt, 0xe505, s_s) \
283 V(F32x4RecipApprox, 0xe506, s_s) \ 282 V(F32x4RecipApprox, 0xe506, s_s) \
284 V(F32x4SqrtApprox, 0xe507, s_s) \ 283 V(F32x4SqrtApprox, 0xe507, s_s) \
285 V(F32x4Add, 0xe508, s_ss) \ 284 V(F32x4Add, 0xe508, s_ss) \
286 V(F32x4Sub, 0xe509, s_ss) \ 285 V(F32x4Sub, 0xe509, s_ss) \
287 V(F32x4Mul, 0xe50a, s_ss) \ 286 V(F32x4Mul, 0xe50a, s_ss) \
288 V(F32x4Div, 0xe50b, s_ss) \ 287 V(F32x4Div, 0xe50b, s_ss) \
289 V(F32x4Min, 0xe50c, s_ss) \ 288 V(F32x4Min, 0xe50c, s_ss) \
290 V(F32x4Max, 0xe50d, s_ss) \ 289 V(F32x4Max, 0xe50d, s_ss) \
291 V(F32x4MinNum, 0xe50e, s_ss) \ 290 V(F32x4MinNum, 0xe50e, s_ss) \
292 V(F32x4MaxNum, 0xe50f, s_ss) \ 291 V(F32x4MaxNum, 0xe50f, s_ss) \
293 V(F32x4Eq, 0xe510, s_ss) \ 292 V(F32x4Eq, 0xe510, s_ss) \
294 V(F32x4Ne, 0xe511, s_ss) \ 293 V(F32x4Ne, 0xe511, s_ss) \
295 V(F32x4Lt, 0xe512, s_ss) \ 294 V(F32x4Lt, 0xe512, s_ss) \
296 V(F32x4Le, 0xe513, s_ss) \ 295 V(F32x4Le, 0xe513, s_ss) \
297 V(F32x4Gt, 0xe514, s_ss) \ 296 V(F32x4Gt, 0xe514, s_ss) \
298 V(F32x4Ge, 0xe515, s_ss) \ 297 V(F32x4Ge, 0xe515, s_ss) \
299 V(F32x4FromInt32x4, 0xe519, s_s) \ 298 V(F32x4FromInt32x4, 0xe519, s_s) \
300 V(F32x4FromUint32x4, 0xe51a, s_s) \ 299 V(F32x4FromUint32x4, 0xe51a, s_s) \
301 V(I32x4Splat, 0xe51b, s_i) \ 300 V(I32x4Splat, 0xe51b, s_i) \
302 V(I32x4ReplaceLane, 0xe51d, s_sii) \
303 V(I32x4Neg, 0xe51e, s_s) \ 301 V(I32x4Neg, 0xe51e, s_s) \
304 V(I32x4Add, 0xe51f, s_ss) \ 302 V(I32x4Add, 0xe51f, s_ss) \
305 V(I32x4Sub, 0xe520, s_ss) \ 303 V(I32x4Sub, 0xe520, s_ss) \
306 V(I32x4Mul, 0xe521, s_ss) \ 304 V(I32x4Mul, 0xe521, s_ss) \
307 V(I32x4Min_s, 0xe522, s_ss) \ 305 V(I32x4Min_s, 0xe522, s_ss) \
308 V(I32x4Max_s, 0xe523, s_ss) \ 306 V(I32x4Max_s, 0xe523, s_ss) \
309 V(I32x4Shl, 0xe524, s_si) \ 307 V(I32x4Shl, 0xe524, s_si) \
310 V(I32x4Shr_s, 0xe525, s_si) \ 308 V(I32x4Shr_s, 0xe525, s_si) \
311 V(I32x4Eq, 0xe526, s_ss) \ 309 V(I32x4Eq, 0xe526, s_ss) \
312 V(I32x4Ne, 0xe527, s_ss) \ 310 V(I32x4Ne, 0xe527, s_ss) \
313 V(I32x4Lt_s, 0xe528, s_ss) \ 311 V(I32x4Lt_s, 0xe528, s_ss) \
314 V(I32x4Le_s, 0xe529, s_ss) \ 312 V(I32x4Le_s, 0xe529, s_ss) \
315 V(I32x4Gt_s, 0xe52a, s_ss) \ 313 V(I32x4Gt_s, 0xe52a, s_ss) \
316 V(I32x4Ge_s, 0xe52b, s_ss) \ 314 V(I32x4Ge_s, 0xe52b, s_ss) \
317 V(I32x4Select, 0xe52c, s_sss) \ 315 V(I32x4Select, 0xe52c, s_sss) \
318 V(I32x4Swizzle, 0xe52d, s_s) \ 316 V(I32x4Swizzle, 0xe52d, s_s) \
319 V(I32x4Shuffle, 0xe52e, s_ss) \ 317 V(I32x4Shuffle, 0xe52e, s_ss) \
320 V(I32x4FromFloat32x4, 0xe52f, s_s) \ 318 V(I32x4FromFloat32x4, 0xe52f, s_s) \
321 V(I32x4Min_u, 0xe530, s_ss) \ 319 V(I32x4Min_u, 0xe530, s_ss) \
322 V(I32x4Max_u, 0xe531, s_ss) \ 320 V(I32x4Max_u, 0xe531, s_ss) \
323 V(I32x4Shr_u, 0xe532, s_ss) \ 321 V(I32x4Shr_u, 0xe532, s_ss) \
324 V(I32x4Lt_u, 0xe533, s_ss) \ 322 V(I32x4Lt_u, 0xe533, s_ss) \
325 V(I32x4Le_u, 0xe534, s_ss) \ 323 V(I32x4Le_u, 0xe534, s_ss) \
326 V(I32x4Gt_u, 0xe535, s_ss) \ 324 V(I32x4Gt_u, 0xe535, s_ss) \
327 V(I32x4Ge_u, 0xe536, s_ss) \ 325 V(I32x4Ge_u, 0xe536, s_ss) \
328 V(Ui32x4FromFloat32x4, 0xe537, s_s) \ 326 V(Ui32x4FromFloat32x4, 0xe537, s_s) \
329 V(I16x8Splat, 0xe538, s_i) \ 327 V(I16x8Splat, 0xe538, s_i) \
330 V(I16x8ReplaceLane, 0xe53a, s_sii) \
331 V(I16x8Neg, 0xe53b, s_s) \ 328 V(I16x8Neg, 0xe53b, s_s) \
332 V(I16x8Add, 0xe53c, s_ss) \ 329 V(I16x8Add, 0xe53c, s_ss) \
333 V(I16x8AddSaturate_s, 0xe53d, s_ss) \ 330 V(I16x8AddSaturate_s, 0xe53d, s_ss) \
334 V(I16x8Sub, 0xe53e, s_ss) \ 331 V(I16x8Sub, 0xe53e, s_ss) \
335 V(I16x8SubSaturate_s, 0xe53f, s_ss) \ 332 V(I16x8SubSaturate_s, 0xe53f, s_ss) \
336 V(I16x8Mul, 0xe540, s_ss) \ 333 V(I16x8Mul, 0xe540, s_ss) \
337 V(I16x8Min_s, 0xe541, s_ss) \ 334 V(I16x8Min_s, 0xe541, s_ss) \
338 V(I16x8Max_s, 0xe542, s_ss) \ 335 V(I16x8Max_s, 0xe542, s_ss) \
339 V(I16x8Shl, 0xe543, s_si) \ 336 V(I16x8Shl, 0xe543, s_si) \
340 V(I16x8Shr_s, 0xe544, s_si) \ 337 V(I16x8Shr_s, 0xe544, s_si) \
341 V(I16x8Eq, 0xe545, s_ss) \ 338 V(I16x8Eq, 0xe545, s_ss) \
342 V(I16x8Ne, 0xe546, s_ss) \ 339 V(I16x8Ne, 0xe546, s_ss) \
343 V(I16x8Lt_s, 0xe547, s_ss) \ 340 V(I16x8Lt_s, 0xe547, s_ss) \
344 V(I16x8Le_s, 0xe548, s_ss) \ 341 V(I16x8Le_s, 0xe548, s_ss) \
345 V(I16x8Gt_s, 0xe549, s_ss) \ 342 V(I16x8Gt_s, 0xe549, s_ss) \
346 V(I16x8Ge_s, 0xe54a, s_ss) \ 343 V(I16x8Ge_s, 0xe54a, s_ss) \
347 V(I16x8Select, 0xe54b, s_sss) \ 344 V(I16x8Select, 0xe54b, s_sss) \
348 V(I16x8Swizzle, 0xe54c, s_s) \ 345 V(I16x8Swizzle, 0xe54c, s_s) \
349 V(I16x8Shuffle, 0xe54d, s_ss) \ 346 V(I16x8Shuffle, 0xe54d, s_ss) \
350 V(I16x8AddSaturate_u, 0xe54e, s_ss) \ 347 V(I16x8AddSaturate_u, 0xe54e, s_ss) \
351 V(I16x8SubSaturate_u, 0xe54f, s_ss) \ 348 V(I16x8SubSaturate_u, 0xe54f, s_ss) \
352 V(I16x8Min_u, 0xe550, s_ss) \ 349 V(I16x8Min_u, 0xe550, s_ss) \
353 V(I16x8Max_u, 0xe551, s_ss) \ 350 V(I16x8Max_u, 0xe551, s_ss) \
354 V(I16x8Shr_u, 0xe552, s_si) \ 351 V(I16x8Shr_u, 0xe552, s_si) \
355 V(I16x8Lt_u, 0xe553, s_ss) \ 352 V(I16x8Lt_u, 0xe553, s_ss) \
356 V(I16x8Le_u, 0xe554, s_ss) \ 353 V(I16x8Le_u, 0xe554, s_ss) \
357 V(I16x8Gt_u, 0xe555, s_ss) \ 354 V(I16x8Gt_u, 0xe555, s_ss) \
358 V(I16x8Ge_u, 0xe556, s_ss) \ 355 V(I16x8Ge_u, 0xe556, s_ss) \
359 V(I8x16Splat, 0xe557, s_i) \ 356 V(I8x16Splat, 0xe557, s_i) \
360 V(I8x16ReplaceLane, 0xe559, s_sii) \
361 V(I8x16Neg, 0xe55a, s_s) \ 357 V(I8x16Neg, 0xe55a, s_s) \
362 V(I8x16Add, 0xe55b, s_ss) \ 358 V(I8x16Add, 0xe55b, s_ss) \
363 V(I8x16AddSaturate_s, 0xe55c, s_ss) \ 359 V(I8x16AddSaturate_s, 0xe55c, s_ss) \
364 V(I8x16Sub, 0xe55d, s_ss) \ 360 V(I8x16Sub, 0xe55d, s_ss) \
365 V(I8x16SubSaturate_s, 0xe55e, s_ss) \ 361 V(I8x16SubSaturate_s, 0xe55e, s_ss) \
366 V(I8x16Mul, 0xe55f, s_ss) \ 362 V(I8x16Mul, 0xe55f, s_ss) \
367 V(I8x16Min_s, 0xe560, s_ss) \ 363 V(I8x16Min_s, 0xe560, s_ss) \
368 V(I8x16Max_s, 0xe561, s_ss) \ 364 V(I8x16Max_s, 0xe561, s_ss) \
369 V(I8x16Shl, 0xe562, s_si) \ 365 V(I8x16Shl, 0xe562, s_si) \
370 V(I8x16Shr_s, 0xe563, s_si) \ 366 V(I8x16Shr_s, 0xe563, s_si) \
(...skipping 20 matching lines...) Expand all
391 V(S128Xor, 0xe578, s_ss) \ 387 V(S128Xor, 0xe578, s_ss) \
392 V(S128Not, 0xe579, s_s) \ 388 V(S128Not, 0xe579, s_s) \
393 V(S32x4Select, 0xe580, s_sss) \ 389 V(S32x4Select, 0xe580, s_sss) \
394 V(S32x4Swizzle, 0xe581, s_s) \ 390 V(S32x4Swizzle, 0xe581, s_s) \
395 V(S32x4Shuffle, 0xe582, s_ss) 391 V(S32x4Shuffle, 0xe582, s_ss)
396 392
397 #define FOREACH_SIMD_1_OPERAND_OPCODE(V) \ 393 #define FOREACH_SIMD_1_OPERAND_OPCODE(V) \
398 V(F32x4ExtractLane, 0xe501, _) \ 394 V(F32x4ExtractLane, 0xe501, _) \
399 V(I32x4ExtractLane, 0xe51c, _) \ 395 V(I32x4ExtractLane, 0xe51c, _) \
400 V(I16x8ExtractLane, 0xe539, _) \ 396 V(I16x8ExtractLane, 0xe539, _) \
401 V(I8x16ExtractLane, 0xe558, _) 397 V(I8x16ExtractLane, 0xe558, _) \
398 V(F32x4ReplaceLane, 0xe502, _) \
399 V(I32x4ReplaceLane, 0xe51d, _) \
400 V(I16x8ReplaceLane, 0xe53a, _) \
401 V(I8x16ReplaceLane, 0xe559, _)
402 402
403 #define FOREACH_ATOMIC_OPCODE(V) \ 403 #define FOREACH_ATOMIC_OPCODE(V) \
404 V(I32AtomicAdd8S, 0xe601, i_ii) \ 404 V(I32AtomicAdd8S, 0xe601, i_ii) \
405 V(I32AtomicAdd8U, 0xe602, i_ii) \ 405 V(I32AtomicAdd8U, 0xe602, i_ii) \
406 V(I32AtomicAdd16S, 0xe603, i_ii) \ 406 V(I32AtomicAdd16S, 0xe603, i_ii) \
407 V(I32AtomicAdd16U, 0xe604, i_ii) \ 407 V(I32AtomicAdd16U, 0xe604, i_ii) \
408 V(I32AtomicAdd32, 0xe605, i_ii) \ 408 V(I32AtomicAdd32, 0xe605, i_ii) \
409 V(I32AtomicAnd8S, 0xe606, i_ii) \ 409 V(I32AtomicAnd8S, 0xe606, i_ii) \
410 V(I32AtomicAnd8U, 0xe607, i_ii) \ 410 V(I32AtomicAnd8U, 0xe607, i_ii) \
411 V(I32AtomicAnd16S, 0xe608, i_ii) \ 411 V(I32AtomicAnd16S, 0xe608, i_ii) \
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
680 default: 680 default:
681 return "<unknown>"; 681 return "<unknown>";
682 } 682 }
683 } 683 }
684 }; 684 };
685 } // namespace wasm 685 } // namespace wasm
686 } // namespace internal 686 } // namespace internal
687 } // namespace v8 687 } // namespace v8
688 688
689 #endif // V8_WASM_OPCODES_H_ 689 #endif // V8_WASM_OPCODES_H_
OLDNEW
« no previous file with comments | « src/wasm/wasm-macro-gen.h ('k') | test/cctest/wasm/test-run-wasm-simd-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698