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

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

Issue 1778893004: [wasm] Implementation of Word32PairShr and Word32PairSar on arm. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@pair-shl-test
Patch Set: Rebase. 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/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 30 matching lines...) Expand all
41 V(ArmSxth) \ 41 V(ArmSxth) \
42 V(ArmSxtab) \ 42 V(ArmSxtab) \
43 V(ArmSxtah) \ 43 V(ArmSxtah) \
44 V(ArmUxtb) \ 44 V(ArmUxtb) \
45 V(ArmUxth) \ 45 V(ArmUxth) \
46 V(ArmUxtab) \ 46 V(ArmUxtab) \
47 V(ArmRbit) \ 47 V(ArmRbit) \
48 V(ArmUxtah) \ 48 V(ArmUxtah) \
49 V(ArmAddPair) \ 49 V(ArmAddPair) \
50 V(ArmLslPair) \ 50 V(ArmLslPair) \
51 V(ArmLsrPair) \
52 V(ArmAsrPair) \
51 V(ArmVcmpF32) \ 53 V(ArmVcmpF32) \
52 V(ArmVaddF32) \ 54 V(ArmVaddF32) \
53 V(ArmVsubF32) \ 55 V(ArmVsubF32) \
54 V(ArmVmulF32) \ 56 V(ArmVmulF32) \
55 V(ArmVmlaF32) \ 57 V(ArmVmlaF32) \
56 V(ArmVmlsF32) \ 58 V(ArmVmlsF32) \
57 V(ArmVdivF32) \ 59 V(ArmVdivF32) \
58 V(ArmVabsF32) \ 60 V(ArmVabsF32) \
59 V(ArmVnegF32) \ 61 V(ArmVnegF32) \
60 V(ArmVsqrtF32) \ 62 V(ArmVsqrtF32) \
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 V(Operand2_R_ASR_R) /* %r0 ASR %r1 */ \ 126 V(Operand2_R_ASR_R) /* %r0 ASR %r1 */ \
125 V(Operand2_R_LSL_R) /* %r0 LSL %r1 */ \ 127 V(Operand2_R_LSL_R) /* %r0 LSL %r1 */ \
126 V(Operand2_R_LSR_R) /* %r0 LSR %r1 */ \ 128 V(Operand2_R_LSR_R) /* %r0 LSR %r1 */ \
127 V(Operand2_R_ROR_R) /* %r0 ROR %r1 */ 129 V(Operand2_R_ROR_R) /* %r0 ROR %r1 */
128 130
129 } // namespace compiler 131 } // namespace compiler
130 } // namespace internal 132 } // namespace internal
131 } // namespace v8 133 } // namespace v8
132 134
133 #endif // V8_COMPILER_ARM_INSTRUCTION_CODES_ARM_H_ 135 #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