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

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

Issue 2039843003: [arm] Support float registers for moves and swaps. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Use __ Move to eliminate pointless moves. Created 4 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 V(ArmVcvtF32F64) \ 86 V(ArmVcvtF32F64) \
87 V(ArmVcvtF64F32) \ 87 V(ArmVcvtF64F32) \
88 V(ArmVcvtF32S32) \ 88 V(ArmVcvtF32S32) \
89 V(ArmVcvtF32U32) \ 89 V(ArmVcvtF32U32) \
90 V(ArmVcvtF64S32) \ 90 V(ArmVcvtF64S32) \
91 V(ArmVcvtF64U32) \ 91 V(ArmVcvtF64U32) \
92 V(ArmVcvtS32F32) \ 92 V(ArmVcvtS32F32) \
93 V(ArmVcvtU32F32) \ 93 V(ArmVcvtU32F32) \
94 V(ArmVcvtS32F64) \ 94 V(ArmVcvtS32F64) \
95 V(ArmVcvtU32F64) \ 95 V(ArmVcvtU32F64) \
96 V(ArmVmovU32F32) \
96 V(ArmVmovLowU32F64) \ 97 V(ArmVmovLowU32F64) \
97 V(ArmVmovLowF64U32) \ 98 V(ArmVmovLowF64U32) \
98 V(ArmVmovHighU32F64) \ 99 V(ArmVmovHighU32F64) \
99 V(ArmVmovHighF64U32) \ 100 V(ArmVmovHighF64U32) \
100 V(ArmVmovF64U32U32) \ 101 V(ArmVmovF64U32U32) \
101 V(ArmVldrF32) \ 102 V(ArmVldrF32) \
102 V(ArmVstrF32) \ 103 V(ArmVstrF32) \
103 V(ArmVldrF64) \ 104 V(ArmVldrF64) \
104 V(ArmVstrF64) \ 105 V(ArmVstrF64) \
105 V(ArmFloat32Max) \ 106 V(ArmFloat32Max) \
(...skipping 27 matching lines...) Expand all
133 V(Operand2_R_ASR_R) /* %r0 ASR %r1 */ \ 134 V(Operand2_R_ASR_R) /* %r0 ASR %r1 */ \
134 V(Operand2_R_LSL_R) /* %r0 LSL %r1 */ \ 135 V(Operand2_R_LSL_R) /* %r0 LSL %r1 */ \
135 V(Operand2_R_LSR_R) /* %r0 LSR %r1 */ \ 136 V(Operand2_R_LSR_R) /* %r0 LSR %r1 */ \
136 V(Operand2_R_ROR_R) /* %r0 ROR %r1 */ 137 V(Operand2_R_ROR_R) /* %r0 ROR %r1 */
137 138
138 } // namespace compiler 139 } // namespace compiler
139 } // namespace internal 140 } // namespace internal
140 } // namespace v8 141 } // namespace v8
141 142
142 #endif // V8_COMPILER_ARM_INSTRUCTION_CODES_ARM_H_ 143 #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