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

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

Issue 791473003: MIPS: Enable Math rounding operations call reduction optimization in TF. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Addressed comments. Created 6 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 22 matching lines...) Expand all
33 V(MipsMov) \ 33 V(MipsMov) \
34 V(MipsTst) \ 34 V(MipsTst) \
35 V(MipsCmp) \ 35 V(MipsCmp) \
36 V(MipsCmpD) \ 36 V(MipsCmpD) \
37 V(MipsAddD) \ 37 V(MipsAddD) \
38 V(MipsSubD) \ 38 V(MipsSubD) \
39 V(MipsMulD) \ 39 V(MipsMulD) \
40 V(MipsDivD) \ 40 V(MipsDivD) \
41 V(MipsModD) \ 41 V(MipsModD) \
42 V(MipsSqrtD) \ 42 V(MipsSqrtD) \
43 V(MipsFloat64Floor) \
44 V(MipsFloat64Ceil) \
45 V(MipsFloat64RoundTruncate) \
43 V(MipsCvtSD) \ 46 V(MipsCvtSD) \
44 V(MipsCvtDS) \ 47 V(MipsCvtDS) \
45 V(MipsTruncWD) \ 48 V(MipsTruncWD) \
46 V(MipsTruncUwD) \ 49 V(MipsTruncUwD) \
47 V(MipsCvtDW) \ 50 V(MipsCvtDW) \
48 V(MipsCvtDUw) \ 51 V(MipsCvtDUw) \
49 V(MipsLb) \ 52 V(MipsLb) \
50 V(MipsLbu) \ 53 V(MipsLbu) \
51 V(MipsSb) \ 54 V(MipsSb) \
52 V(MipsLh) \ 55 V(MipsLh) \
(...skipping 28 matching lines...) Expand all
81 #define TARGET_ADDRESSING_MODE_LIST(V) \ 84 #define TARGET_ADDRESSING_MODE_LIST(V) \
82 V(MRI) /* [%r0 + K] */ \ 85 V(MRI) /* [%r0 + K] */ \
83 V(MRR) /* [%r0 + %r1] */ 86 V(MRR) /* [%r0 + %r1] */
84 87
85 88
86 } // namespace compiler 89 } // namespace compiler
87 } // namespace internal 90 } // namespace internal
88 } // namespace v8 91 } // namespace v8
89 92
90 #endif // V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ 93 #endif // V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_
OLDNEW
« no previous file with comments | « src/compiler/mips/code-generator-mips.cc ('k') | src/compiler/mips/instruction-selector-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698