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

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

Issue 2856363003: [ARM] Implement irregular vector shuffles for SIMD. (Closed)
Patch Set: Review comments. Created 3 years, 7 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 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 V(ArmS128Or) \ 232 V(ArmS128Or) \
233 V(ArmS128Xor) \ 233 V(ArmS128Xor) \
234 V(ArmS128Not) \ 234 V(ArmS128Not) \
235 V(ArmS128Select) \ 235 V(ArmS128Select) \
236 V(ArmS32x4ZipLeft) \ 236 V(ArmS32x4ZipLeft) \
237 V(ArmS32x4ZipRight) \ 237 V(ArmS32x4ZipRight) \
238 V(ArmS32x4UnzipLeft) \ 238 V(ArmS32x4UnzipLeft) \
239 V(ArmS32x4UnzipRight) \ 239 V(ArmS32x4UnzipRight) \
240 V(ArmS32x4TransposeLeft) \ 240 V(ArmS32x4TransposeLeft) \
241 V(ArmS32x4TransposeRight) \ 241 V(ArmS32x4TransposeRight) \
242 V(ArmS32x4Shuffle) \
242 V(ArmS16x8ZipLeft) \ 243 V(ArmS16x8ZipLeft) \
243 V(ArmS16x8ZipRight) \ 244 V(ArmS16x8ZipRight) \
244 V(ArmS16x8UnzipLeft) \ 245 V(ArmS16x8UnzipLeft) \
245 V(ArmS16x8UnzipRight) \ 246 V(ArmS16x8UnzipRight) \
246 V(ArmS16x8TransposeLeft) \ 247 V(ArmS16x8TransposeLeft) \
247 V(ArmS16x8TransposeRight) \ 248 V(ArmS16x8TransposeRight) \
249 V(ArmS16x8Shuffle) \
248 V(ArmS8x16ZipLeft) \ 250 V(ArmS8x16ZipLeft) \
249 V(ArmS8x16ZipRight) \ 251 V(ArmS8x16ZipRight) \
250 V(ArmS8x16UnzipLeft) \ 252 V(ArmS8x16UnzipLeft) \
251 V(ArmS8x16UnzipRight) \ 253 V(ArmS8x16UnzipRight) \
252 V(ArmS8x16TransposeLeft) \ 254 V(ArmS8x16TransposeLeft) \
253 V(ArmS8x16TransposeRight) \ 255 V(ArmS8x16TransposeRight) \
254 V(ArmS8x16Concat) \ 256 V(ArmS8x16Concat) \
257 V(ArmS8x16Shuffle) \
255 V(ArmS32x2Reverse) \ 258 V(ArmS32x2Reverse) \
256 V(ArmS16x4Reverse) \ 259 V(ArmS16x4Reverse) \
257 V(ArmS16x2Reverse) \ 260 V(ArmS16x2Reverse) \
258 V(ArmS8x8Reverse) \ 261 V(ArmS8x8Reverse) \
259 V(ArmS8x4Reverse) \ 262 V(ArmS8x4Reverse) \
260 V(ArmS8x2Reverse) \ 263 V(ArmS8x2Reverse) \
261 V(ArmS1x4AnyTrue) \ 264 V(ArmS1x4AnyTrue) \
262 V(ArmS1x4AllTrue) \ 265 V(ArmS1x4AllTrue) \
263 V(ArmS1x8AnyTrue) \ 266 V(ArmS1x8AnyTrue) \
264 V(ArmS1x8AllTrue) \ 267 V(ArmS1x8AllTrue) \
(...skipping 16 matching lines...) Expand all
281 V(Operand2_R_ASR_R) /* %r0 ASR %r1 */ \ 284 V(Operand2_R_ASR_R) /* %r0 ASR %r1 */ \
282 V(Operand2_R_LSL_R) /* %r0 LSL %r1 */ \ 285 V(Operand2_R_LSL_R) /* %r0 LSL %r1 */ \
283 V(Operand2_R_LSR_R) /* %r0 LSR %r1 */ \ 286 V(Operand2_R_LSR_R) /* %r0 LSR %r1 */ \
284 V(Operand2_R_ROR_R) /* %r0 ROR %r1 */ 287 V(Operand2_R_ROR_R) /* %r0 ROR %r1 */
285 288
286 } // namespace compiler 289 } // namespace compiler
287 } // namespace internal 290 } // namespace internal
288 } // namespace v8 291 } // namespace v8
289 292
290 #endif // V8_COMPILER_ARM_INSTRUCTION_CODES_ARM_H_ 293 #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