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

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

Issue 1463193002: MIPS64: [turbofan] Implemented the TruncateFloat64ToUint64 TurboFan operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix typo. 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 V(Mips64MinD) \ 69 V(Mips64MinD) \
70 V(Mips64Float64RoundDown) \ 70 V(Mips64Float64RoundDown) \
71 V(Mips64Float64RoundTruncate) \ 71 V(Mips64Float64RoundTruncate) \
72 V(Mips64Float64RoundUp) \ 72 V(Mips64Float64RoundUp) \
73 V(Mips64Float64RoundTiesEven) \ 73 V(Mips64Float64RoundTiesEven) \
74 V(Mips64CvtSD) \ 74 V(Mips64CvtSD) \
75 V(Mips64CvtDS) \ 75 V(Mips64CvtDS) \
76 V(Mips64TruncWD) \ 76 V(Mips64TruncWD) \
77 V(Mips64TruncLD) \ 77 V(Mips64TruncLD) \
78 V(Mips64TruncUwD) \ 78 V(Mips64TruncUwD) \
79 V(Mips64TruncUlD) \
79 V(Mips64CvtDW) \ 80 V(Mips64CvtDW) \
80 V(Mips64CvtSL) \ 81 V(Mips64CvtSL) \
81 V(Mips64CvtSUl) \ 82 V(Mips64CvtSUl) \
82 V(Mips64CvtDL) \ 83 V(Mips64CvtDL) \
83 V(Mips64CvtDUw) \ 84 V(Mips64CvtDUw) \
84 V(Mips64CvtDUl) \ 85 V(Mips64CvtDUl) \
85 V(Mips64Lb) \ 86 V(Mips64Lb) \
86 V(Mips64Lbu) \ 87 V(Mips64Lbu) \
87 V(Mips64Sb) \ 88 V(Mips64Sb) \
88 V(Mips64Lh) \ 89 V(Mips64Lh) \
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 #define TARGET_ADDRESSING_MODE_LIST(V) \ 129 #define TARGET_ADDRESSING_MODE_LIST(V) \
129 V(MRI) /* [%r0 + K] */ \ 130 V(MRI) /* [%r0 + K] */ \
130 V(MRR) /* [%r0 + %r1] */ 131 V(MRR) /* [%r0 + %r1] */
131 132
132 133
133 } // namespace compiler 134 } // namespace compiler
134 } // namespace internal 135 } // namespace internal
135 } // namespace v8 136 } // namespace v8
136 137
137 #endif // V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ 138 #endif // V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698