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

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

Issue 990963003: [turbofan] Unify Math.floor / Math.ceil optimization. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 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-selector-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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 V(ArmVcmpF64) \ 46 V(ArmVcmpF64) \
47 V(ArmVaddF64) \ 47 V(ArmVaddF64) \
48 V(ArmVsubF64) \ 48 V(ArmVsubF64) \
49 V(ArmVmulF64) \ 49 V(ArmVmulF64) \
50 V(ArmVmlaF64) \ 50 V(ArmVmlaF64) \
51 V(ArmVmlsF64) \ 51 V(ArmVmlsF64) \
52 V(ArmVdivF64) \ 52 V(ArmVdivF64) \
53 V(ArmVmodF64) \ 53 V(ArmVmodF64) \
54 V(ArmVnegF64) \ 54 V(ArmVnegF64) \
55 V(ArmVsqrtF64) \ 55 V(ArmVsqrtF64) \
56 V(ArmVfloorF64) \ 56 V(ArmVrintmF64) \
57 V(ArmVceilF64) \ 57 V(ArmVrintpF64) \
58 V(ArmVroundTruncateF64) \ 58 V(ArmVrintzF64) \
59 V(ArmVroundTiesAwayF64) \ 59 V(ArmVrintaF64) \
60 V(ArmVcvtF32F64) \ 60 V(ArmVcvtF32F64) \
61 V(ArmVcvtF64F32) \ 61 V(ArmVcvtF64F32) \
62 V(ArmVcvtF64S32) \ 62 V(ArmVcvtF64S32) \
63 V(ArmVcvtF64U32) \ 63 V(ArmVcvtF64U32) \
64 V(ArmVcvtS32F64) \ 64 V(ArmVcvtS32F64) \
65 V(ArmVcvtU32F64) \ 65 V(ArmVcvtU32F64) \
66 V(ArmVmovLowU32F64) \ 66 V(ArmVmovLowU32F64) \
67 V(ArmVmovLowF64U32) \ 67 V(ArmVmovLowF64U32) \
68 V(ArmVmovHighU32F64) \ 68 V(ArmVmovHighU32F64) \
69 V(ArmVmovHighF64U32) \ 69 V(ArmVmovHighF64U32) \
(...skipping 30 matching lines...) Expand all
100 V(Operand2_R_ASR_R) /* %r0 ASR %r1 */ \ 100 V(Operand2_R_ASR_R) /* %r0 ASR %r1 */ \
101 V(Operand2_R_LSL_R) /* %r0 LSL %r1 */ \ 101 V(Operand2_R_LSL_R) /* %r0 LSL %r1 */ \
102 V(Operand2_R_LSR_R) /* %r0 LSR %r1 */ \ 102 V(Operand2_R_LSR_R) /* %r0 LSR %r1 */ \
103 V(Operand2_R_ROR_R) /* %r0 ROR %r1 */ 103 V(Operand2_R_ROR_R) /* %r0 ROR %r1 */
104 104
105 } // namespace compiler 105 } // namespace compiler
106 } // namespace internal 106 } // namespace internal
107 } // namespace v8 107 } // namespace v8
108 108
109 #endif // V8_COMPILER_ARM_INSTRUCTION_CODES_ARM_H_ 109 #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-selector-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698