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

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

Issue 2252863003: [turbofan] Add Float32(Max|Min) machine operators. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Type is number now. Created 4 years, 3 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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 V(MipsUswc1) \ 112 V(MipsUswc1) \
113 V(MipsLdc1) \ 113 V(MipsLdc1) \
114 V(MipsUldc1) \ 114 V(MipsUldc1) \
115 V(MipsSdc1) \ 115 V(MipsSdc1) \
116 V(MipsUsdc1) \ 116 V(MipsUsdc1) \
117 V(MipsFloat64ExtractLowWord32) \ 117 V(MipsFloat64ExtractLowWord32) \
118 V(MipsFloat64ExtractHighWord32) \ 118 V(MipsFloat64ExtractHighWord32) \
119 V(MipsFloat64InsertLowWord32) \ 119 V(MipsFloat64InsertLowWord32) \
120 V(MipsFloat64InsertHighWord32) \ 120 V(MipsFloat64InsertHighWord32) \
121 V(MipsFloat64SilenceNaN) \ 121 V(MipsFloat64SilenceNaN) \
122 V(MipsFloat32Max) \
122 V(MipsFloat64Max) \ 123 V(MipsFloat64Max) \
124 V(MipsFloat32Min) \
123 V(MipsFloat64Min) \ 125 V(MipsFloat64Min) \
124 V(MipsPush) \ 126 V(MipsPush) \
125 V(MipsStoreToStackSlot) \ 127 V(MipsStoreToStackSlot) \
126 V(MipsByteSwap32) \ 128 V(MipsByteSwap32) \
127 V(MipsStackClaim) 129 V(MipsStackClaim)
128 130
129 // Addressing modes represent the "shape" of inputs to an instruction. 131 // Addressing modes represent the "shape" of inputs to an instruction.
130 // Many instructions support multiple addressing modes. Addressing modes 132 // Many instructions support multiple addressing modes. Addressing modes
131 // are encoded into the InstructionCode of the instruction and tell the 133 // are encoded into the InstructionCode of the instruction and tell the
132 // code generator after register allocation which assembler method to call. 134 // code generator after register allocation which assembler method to call.
(...skipping 10 matching lines...) Expand all
143 #define TARGET_ADDRESSING_MODE_LIST(V) \ 145 #define TARGET_ADDRESSING_MODE_LIST(V) \
144 V(MRI) /* [%r0 + K] */ \ 146 V(MRI) /* [%r0 + K] */ \
145 V(MRR) /* [%r0 + %r1] */ 147 V(MRR) /* [%r0 + %r1] */
146 148
147 149
148 } // namespace compiler 150 } // namespace compiler
149 } // namespace internal 151 } // namespace internal
150 } // namespace v8 152 } // namespace v8
151 153
152 #endif // V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ 154 #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