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

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

Issue 1477043004: MIPS: [turbofan] Implement Float32Round(TiesEven|RoundUp|RoundDown|Truncate). (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years 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
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_MIPS_INSTRUCTION_CODES_MIPS_H_ 5 #ifndef V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_
6 #define V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ 6 #define V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_
7 7
8 namespace v8 { 8 namespace v8 {
9 namespace internal { 9 namespace internal {
10 namespace compiler { 10 namespace compiler {
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 V(Mips64DivD) \ 65 V(Mips64DivD) \
66 V(Mips64ModD) \ 66 V(Mips64ModD) \
67 V(Mips64AbsD) \ 67 V(Mips64AbsD) \
68 V(Mips64SqrtD) \ 68 V(Mips64SqrtD) \
69 V(Mips64MaxD) \ 69 V(Mips64MaxD) \
70 V(Mips64MinD) \ 70 V(Mips64MinD) \
71 V(Mips64Float64RoundDown) \ 71 V(Mips64Float64RoundDown) \
72 V(Mips64Float64RoundTruncate) \ 72 V(Mips64Float64RoundTruncate) \
73 V(Mips64Float64RoundUp) \ 73 V(Mips64Float64RoundUp) \
74 V(Mips64Float64RoundTiesEven) \ 74 V(Mips64Float64RoundTiesEven) \
75 V(Mips64Float32RoundDown) \
76 V(Mips64Float32RoundTruncate) \
77 V(Mips64Float32RoundUp) \
78 V(Mips64Float32RoundTiesEven) \
75 V(Mips64CvtSD) \ 79 V(Mips64CvtSD) \
76 V(Mips64CvtDS) \ 80 V(Mips64CvtDS) \
77 V(Mips64TruncWD) \ 81 V(Mips64TruncWD) \
78 V(Mips64TruncLD) \ 82 V(Mips64TruncLD) \
79 V(Mips64TruncUwD) \ 83 V(Mips64TruncUwD) \
80 V(Mips64TruncUlD) \ 84 V(Mips64TruncUlD) \
81 V(Mips64CvtDW) \ 85 V(Mips64CvtDW) \
82 V(Mips64CvtSL) \ 86 V(Mips64CvtSL) \
83 V(Mips64CvtSUl) \ 87 V(Mips64CvtSUl) \
84 V(Mips64CvtDL) \ 88 V(Mips64CvtDL) \
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 #define TARGET_ADDRESSING_MODE_LIST(V) \ 134 #define TARGET_ADDRESSING_MODE_LIST(V) \
131 V(MRI) /* [%r0 + K] */ \ 135 V(MRI) /* [%r0 + K] */ \
132 V(MRR) /* [%r0 + %r1] */ 136 V(MRR) /* [%r0 + %r1] */
133 137
134 138
135 } // namespace compiler 139 } // namespace compiler
136 } // namespace internal 140 } // namespace internal
137 } // namespace v8 141 } // namespace v8
138 142
139 #endif // V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ 143 #endif // V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_
OLDNEW
« no previous file with comments | « src/compiler/mips64/code-generator-mips64.cc ('k') | src/compiler/mips64/instruction-selector-mips64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698