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

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

Issue 998503002: MIPS: [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
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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 V(Mips64Tst32) \ 46 V(Mips64Tst32) \
47 V(Mips64Cmp) \ 47 V(Mips64Cmp) \
48 V(Mips64Cmp32) \ 48 V(Mips64Cmp32) \
49 V(Mips64CmpD) \ 49 V(Mips64CmpD) \
50 V(Mips64AddD) \ 50 V(Mips64AddD) \
51 V(Mips64SubD) \ 51 V(Mips64SubD) \
52 V(Mips64MulD) \ 52 V(Mips64MulD) \
53 V(Mips64DivD) \ 53 V(Mips64DivD) \
54 V(Mips64ModD) \ 54 V(Mips64ModD) \
55 V(Mips64SqrtD) \ 55 V(Mips64SqrtD) \
56 V(Mips64Float64Floor) \ 56 V(Mips64Float64RoundDown) \
57 V(Mips64Float64Ceil) \
58 V(Mips64Float64RoundTruncate) \ 57 V(Mips64Float64RoundTruncate) \
58 V(Mips64Float64RoundUp) \
59 V(Mips64CvtSD) \ 59 V(Mips64CvtSD) \
60 V(Mips64CvtDS) \ 60 V(Mips64CvtDS) \
61 V(Mips64TruncWD) \ 61 V(Mips64TruncWD) \
62 V(Mips64TruncUwD) \ 62 V(Mips64TruncUwD) \
63 V(Mips64CvtDW) \ 63 V(Mips64CvtDW) \
64 V(Mips64CvtDUw) \ 64 V(Mips64CvtDUw) \
65 V(Mips64Lb) \ 65 V(Mips64Lb) \
66 V(Mips64Lbu) \ 66 V(Mips64Lbu) \
67 V(Mips64Sb) \ 67 V(Mips64Sb) \
68 V(Mips64Lh) \ 68 V(Mips64Lh) \
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 #define TARGET_ADDRESSING_MODE_LIST(V) \ 103 #define TARGET_ADDRESSING_MODE_LIST(V) \
104 V(MRI) /* [%r0 + K] */ \ 104 V(MRI) /* [%r0 + K] */ \
105 V(MRR) /* [%r0 + %r1] */ 105 V(MRR) /* [%r0 + %r1] */
106 106
107 107
108 } // namespace compiler 108 } // namespace compiler
109 } // namespace internal 109 } // namespace internal
110 } // namespace v8 110 } // namespace v8
111 111
112 #endif // V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ 112 #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