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

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

Issue 1448383002: MIPS: Implementation of Float64RoundUp and Float64RoundTiesEven (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fixing CLINT warning on function size Created 5 years, 1 month 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 V(MipsMulD) \ 50 V(MipsMulD) \
51 V(MipsDivD) \ 51 V(MipsDivD) \
52 V(MipsModD) \ 52 V(MipsModD) \
53 V(MipsAbsD) \ 53 V(MipsAbsD) \
54 V(MipsSqrtD) \ 54 V(MipsSqrtD) \
55 V(MipsMaxD) \ 55 V(MipsMaxD) \
56 V(MipsMinD) \ 56 V(MipsMinD) \
57 V(MipsFloat64RoundDown) \ 57 V(MipsFloat64RoundDown) \
58 V(MipsFloat64RoundTruncate) \ 58 V(MipsFloat64RoundTruncate) \
59 V(MipsFloat64RoundUp) \ 59 V(MipsFloat64RoundUp) \
60 V(MipsFloat64RoundTiesEven) \
60 V(MipsCvtSD) \ 61 V(MipsCvtSD) \
61 V(MipsCvtDS) \ 62 V(MipsCvtDS) \
62 V(MipsTruncWD) \ 63 V(MipsTruncWD) \
63 V(MipsTruncUwD) \ 64 V(MipsTruncUwD) \
64 V(MipsCvtDW) \ 65 V(MipsCvtDW) \
65 V(MipsCvtDUw) \ 66 V(MipsCvtDUw) \
66 V(MipsLb) \ 67 V(MipsLb) \
67 V(MipsLbu) \ 68 V(MipsLbu) \
68 V(MipsSb) \ 69 V(MipsSb) \
69 V(MipsLh) \ 70 V(MipsLh) \
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 #define TARGET_ADDRESSING_MODE_LIST(V) \ 106 #define TARGET_ADDRESSING_MODE_LIST(V) \
106 V(MRI) /* [%r0 + K] */ \ 107 V(MRI) /* [%r0 + K] */ \
107 V(MRR) /* [%r0 + %r1] */ 108 V(MRR) /* [%r0 + %r1] */
108 109
109 110
110 } // namespace compiler 111 } // namespace compiler
111 } // namespace internal 112 } // namespace internal
112 } // namespace v8 113 } // namespace v8
113 114
114 #endif // V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ 115 #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