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

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

Issue 1440293002: [turbofan] Added the optional Float64RoundTiesEven operator to turbofan. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@f64roundup
Patch Set: Disabled F64RoundTiesEven on mips32 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 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 #include <iosfwd> 8 #include <iosfwd>
9 9
10 // Opcodes for control operators. 10 // Opcodes for control operators.
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after
294 V(Float64Div) \ 294 V(Float64Div) \
295 V(Float64Mod) \ 295 V(Float64Mod) \
296 V(Float64Max) \ 296 V(Float64Max) \
297 V(Float64Min) \ 297 V(Float64Min) \
298 V(Float64Abs) \ 298 V(Float64Abs) \
299 V(Float64Sqrt) \ 299 V(Float64Sqrt) \
300 V(Float64RoundDown) \ 300 V(Float64RoundDown) \
301 V(Float64RoundUp) \ 301 V(Float64RoundUp) \
302 V(Float64RoundTruncate) \ 302 V(Float64RoundTruncate) \
303 V(Float64RoundTiesAway) \ 303 V(Float64RoundTiesAway) \
304 V(Float64RoundTiesEven) \
304 V(Float64ExtractLowWord32) \ 305 V(Float64ExtractLowWord32) \
305 V(Float64ExtractHighWord32) \ 306 V(Float64ExtractHighWord32) \
306 V(Float64InsertLowWord32) \ 307 V(Float64InsertLowWord32) \
307 V(Float64InsertHighWord32) \ 308 V(Float64InsertHighWord32) \
308 V(LoadStackPointer) \ 309 V(LoadStackPointer) \
309 V(LoadFramePointer) \ 310 V(LoadFramePointer) \
310 V(CheckedLoad) \ 311 V(CheckedLoad) \
311 V(CheckedStore) 312 V(CheckedStore)
312 313
313 #define VALUE_OP_LIST(V) \ 314 #define VALUE_OP_LIST(V) \
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
387 } 388 }
388 }; 389 };
389 390
390 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 391 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
391 392
392 } // namespace compiler 393 } // namespace compiler
393 } // namespace internal 394 } // namespace internal
394 } // namespace v8 395 } // namespace v8
395 396
396 #endif // V8_COMPILER_OPCODES_H_ 397 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/mips64/instruction-selector-mips64.cc ('k') | src/compiler/ppc/instruction-selector-ppc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698