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

Side by Side Diff: src/compiler/opcodes.h

Issue 591023003: WIP: Add first-class support for float32 representations. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « src/compiler/machine-operator-reducer.cc ('k') | src/compiler/simplified-lowering.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 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_OPCODES_H_ 5 #ifndef V8_COMPILER_OPCODES_H_
6 #define V8_COMPILER_OPCODES_H_ 6 #define V8_COMPILER_OPCODES_H_
7 7
8 // Opcodes for control operators. 8 // Opcodes for control operators.
9 #define INNER_CONTROL_OP_LIST(V) \ 9 #define INNER_CONTROL_OP_LIST(V) \
10 V(Dead) \ 10 V(Dead) \
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 V(ChangeUint32ToTagged) \ 154 V(ChangeUint32ToTagged) \
155 V(ChangeFloat64ToTagged) \ 155 V(ChangeFloat64ToTagged) \
156 V(ChangeBoolToBit) \ 156 V(ChangeBoolToBit) \
157 V(ChangeBitToBool) \ 157 V(ChangeBitToBool) \
158 V(LoadField) \ 158 V(LoadField) \
159 V(LoadElement) \ 159 V(LoadElement) \
160 V(StoreField) \ 160 V(StoreField) \
161 V(StoreElement) 161 V(StoreElement)
162 162
163 // Opcodes for Machine-level operators. 163 // Opcodes for Machine-level operators.
164 #define MACHINE_OP_LIST(V) \ 164 #define MACHINE_OP_LIST(V) \
165 V(Load) \ 165 V(Load) \
166 V(Store) \ 166 V(Store) \
167 V(Word32And) \ 167 V(Word32And) \
168 V(Word32Or) \ 168 V(Word32Or) \
169 V(Word32Xor) \ 169 V(Word32Xor) \
170 V(Word32Shl) \ 170 V(Word32Shl) \
171 V(Word32Shr) \ 171 V(Word32Shr) \
172 V(Word32Sar) \ 172 V(Word32Sar) \
173 V(Word32Ror) \ 173 V(Word32Ror) \
174 V(Word32Equal) \ 174 V(Word32Equal) \
175 V(Word64And) \ 175 V(Word64And) \
176 V(Word64Or) \ 176 V(Word64Or) \
177 V(Word64Xor) \ 177 V(Word64Xor) \
178 V(Word64Shl) \ 178 V(Word64Shl) \
179 V(Word64Shr) \ 179 V(Word64Shr) \
180 V(Word64Sar) \ 180 V(Word64Sar) \
181 V(Word64Ror) \ 181 V(Word64Ror) \
182 V(Word64Equal) \ 182 V(Word64Equal) \
183 V(Int32Add) \ 183 V(Int32Add) \
184 V(Int32AddWithOverflow) \ 184 V(Int32AddWithOverflow) \
185 V(Int32Sub) \ 185 V(Int32Sub) \
186 V(Int32SubWithOverflow) \ 186 V(Int32SubWithOverflow) \
187 V(Int32Mul) \ 187 V(Int32Mul) \
188 V(Int32Div) \ 188 V(Int32Div) \
189 V(Int32UDiv) \ 189 V(Int32UDiv) \
190 V(Int32Mod) \ 190 V(Int32Mod) \
191 V(Int32UMod) \ 191 V(Int32UMod) \
192 V(Int32LessThan) \ 192 V(Int32LessThan) \
193 V(Int32LessThanOrEqual) \ 193 V(Int32LessThanOrEqual) \
194 V(Uint32LessThan) \ 194 V(Uint32LessThan) \
195 V(Uint32LessThanOrEqual) \ 195 V(Uint32LessThanOrEqual) \
196 V(Int64Add) \ 196 V(Int64Add) \
197 V(Int64Sub) \ 197 V(Int64Sub) \
198 V(Int64Mul) \ 198 V(Int64Mul) \
199 V(Int64Div) \ 199 V(Int64Div) \
200 V(Int64UDiv) \ 200 V(Int64UDiv) \
201 V(Int64Mod) \ 201 V(Int64Mod) \
202 V(Int64UMod) \ 202 V(Int64UMod) \
203 V(Int64LessThan) \ 203 V(Int64LessThan) \
204 V(Int64LessThanOrEqual) \ 204 V(Int64LessThanOrEqual) \
205 V(ChangeInt32ToFloat64) \ 205 V(ChangeFloat32ToFloat64) \
206 V(ChangeUint32ToFloat64) \ 206 V(ChangeFloat64ToFloat32) \
207 V(ChangeFloat64ToInt32) \ 207 V(ChangeFloat64ToInt32) \
208 V(ChangeFloat64ToUint32) \ 208 V(ChangeFloat64ToUint32) \
209 V(ChangeInt32ToInt64) \ 209 V(ChangeInt32ToFloat64) \
210 V(ChangeUint32ToUint64) \ 210 V(ChangeInt32ToInt64) \
211 V(TruncateFloat64ToInt32) \ 211 V(ChangeUint32ToFloat64) \
212 V(TruncateInt64ToInt32) \ 212 V(ChangeUint32ToUint64) \
213 V(Float64Add) \ 213 V(TruncateFloat64ToFloat32) \
214 V(Float64Sub) \ 214 V(TruncateFloat64ToInt32) \
215 V(Float64Mul) \ 215 V(TruncateInt64ToInt32) \
216 V(Float64Div) \ 216 V(Float64Add) \
217 V(Float64Mod) \ 217 V(Float64Sub) \
218 V(Float64Equal) \ 218 V(Float64Mul) \
219 V(Float64LessThan) \ 219 V(Float64Div) \
220 V(Float64Mod) \
221 V(Float64Equal) \
222 V(Float64LessThan) \
220 V(Float64LessThanOrEqual) 223 V(Float64LessThanOrEqual)
221 224
222 #define VALUE_OP_LIST(V) \ 225 #define VALUE_OP_LIST(V) \
223 COMMON_OP_LIST(V) \ 226 COMMON_OP_LIST(V) \
224 SIMPLIFIED_OP_LIST(V) \ 227 SIMPLIFIED_OP_LIST(V) \
225 MACHINE_OP_LIST(V) \ 228 MACHINE_OP_LIST(V) \
226 JS_OP_LIST(V) 229 JS_OP_LIST(V)
227 230
228 // The combination of all operators at all levels and the common operators. 231 // The combination of all operators at all levels and the common operators.
229 #define ALL_OP_LIST(V) \ 232 #define ALL_OP_LIST(V) \
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 return false; 300 return false;
298 } 301 }
299 } 302 }
300 }; 303 };
301 304
302 } // namespace compiler 305 } // namespace compiler
303 } // namespace internal 306 } // namespace internal
304 } // namespace v8 307 } // namespace v8
305 308
306 #endif // V8_COMPILER_OPCODES_H_ 309 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/machine-operator-reducer.cc ('k') | src/compiler/simplified-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698