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

Side by Side Diff: src/compiler/arm/instruction-codes-arm.h

Issue 2923103003: [WASM] Simplify SIMD shuffle opcodes. (Closed)
Patch Set: Mircea's review comments. Created 3 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
« no previous file with comments | « src/compiler/arm/code-generator-arm.cc ('k') | src/compiler/arm/instruction-scheduler-arm.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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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_COMPILER_ARM_INSTRUCTION_CODES_ARM_H_ 5 #ifndef V8_COMPILER_ARM_INSTRUCTION_CODES_ARM_H_
6 #define V8_COMPILER_ARM_INSTRUCTION_CODES_ARM_H_ 6 #define V8_COMPILER_ARM_INSTRUCTION_CODES_ARM_H_
7 7
8 namespace v8 { 8 namespace v8 {
9 namespace internal { 9 namespace internal {
10 namespace compiler { 10 namespace compiler {
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 V(ArmS32x4UnzipRight) \ 239 V(ArmS32x4UnzipRight) \
240 V(ArmS32x4TransposeLeft) \ 240 V(ArmS32x4TransposeLeft) \
241 V(ArmS32x4TransposeRight) \ 241 V(ArmS32x4TransposeRight) \
242 V(ArmS32x4Shuffle) \ 242 V(ArmS32x4Shuffle) \
243 V(ArmS16x8ZipLeft) \ 243 V(ArmS16x8ZipLeft) \
244 V(ArmS16x8ZipRight) \ 244 V(ArmS16x8ZipRight) \
245 V(ArmS16x8UnzipLeft) \ 245 V(ArmS16x8UnzipLeft) \
246 V(ArmS16x8UnzipRight) \ 246 V(ArmS16x8UnzipRight) \
247 V(ArmS16x8TransposeLeft) \ 247 V(ArmS16x8TransposeLeft) \
248 V(ArmS16x8TransposeRight) \ 248 V(ArmS16x8TransposeRight) \
249 V(ArmS16x8Shuffle) \
250 V(ArmS8x16ZipLeft) \ 249 V(ArmS8x16ZipLeft) \
251 V(ArmS8x16ZipRight) \ 250 V(ArmS8x16ZipRight) \
252 V(ArmS8x16UnzipLeft) \ 251 V(ArmS8x16UnzipLeft) \
253 V(ArmS8x16UnzipRight) \ 252 V(ArmS8x16UnzipRight) \
254 V(ArmS8x16TransposeLeft) \ 253 V(ArmS8x16TransposeLeft) \
255 V(ArmS8x16TransposeRight) \ 254 V(ArmS8x16TransposeRight) \
256 V(ArmS8x16Concat) \ 255 V(ArmS8x16Concat) \
257 V(ArmS8x16Shuffle) \ 256 V(ArmS8x16Shuffle) \
258 V(ArmS32x2Reverse) \ 257 V(ArmS32x2Reverse) \
259 V(ArmS16x4Reverse) \ 258 V(ArmS16x4Reverse) \
(...skipping 24 matching lines...) Expand all
284 V(Operand2_R_ASR_R) /* %r0 ASR %r1 */ \ 283 V(Operand2_R_ASR_R) /* %r0 ASR %r1 */ \
285 V(Operand2_R_LSL_R) /* %r0 LSL %r1 */ \ 284 V(Operand2_R_LSL_R) /* %r0 LSL %r1 */ \
286 V(Operand2_R_LSR_R) /* %r0 LSR %r1 */ \ 285 V(Operand2_R_LSR_R) /* %r0 LSR %r1 */ \
287 V(Operand2_R_ROR_R) /* %r0 ROR %r1 */ 286 V(Operand2_R_ROR_R) /* %r0 ROR %r1 */
288 287
289 } // namespace compiler 288 } // namespace compiler
290 } // namespace internal 289 } // namespace internal
291 } // namespace v8 290 } // namespace v8
292 291
293 #endif // V8_COMPILER_ARM_INSTRUCTION_CODES_ARM_H_ 292 #endif // V8_COMPILER_ARM_INSTRUCTION_CODES_ARM_H_
OLDNEW
« no previous file with comments | « src/compiler/arm/code-generator-arm.cc ('k') | src/compiler/arm/instruction-scheduler-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698