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

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

Issue 2220973002: [turbofan] Remove the FloatXXSubPreserveNan operators. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Reintroduce an optimization for arm. Created 4 years, 4 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 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 409 matching lines...) Expand 10 before | Expand all | Expand 10 after
420 V(RoundInt64ToFloat64) \ 420 V(RoundInt64ToFloat64) \
421 V(RoundUint32ToFloat32) \ 421 V(RoundUint32ToFloat32) \
422 V(RoundUint64ToFloat32) \ 422 V(RoundUint64ToFloat32) \
423 V(RoundUint64ToFloat64) \ 423 V(RoundUint64ToFloat64) \
424 V(BitcastFloat32ToInt32) \ 424 V(BitcastFloat32ToInt32) \
425 V(BitcastFloat64ToInt64) \ 425 V(BitcastFloat64ToInt64) \
426 V(BitcastInt32ToFloat32) \ 426 V(BitcastInt32ToFloat32) \
427 V(BitcastInt64ToFloat64) \ 427 V(BitcastInt64ToFloat64) \
428 V(Float32Add) \ 428 V(Float32Add) \
429 V(Float32Sub) \ 429 V(Float32Sub) \
430 V(Float32SubPreserveNan) \
431 V(Float32Neg) \ 430 V(Float32Neg) \
432 V(Float32Mul) \ 431 V(Float32Mul) \
433 V(Float32Div) \ 432 V(Float32Div) \
434 V(Float32Abs) \ 433 V(Float32Abs) \
435 V(Float32Sqrt) \ 434 V(Float32Sqrt) \
436 V(Float32RoundDown) \ 435 V(Float32RoundDown) \
437 V(Float64Add) \ 436 V(Float64Add) \
438 V(Float64Sub) \ 437 V(Float64Sub) \
439 V(Float64SubPreserveNan) \
440 V(Float64Neg) \ 438 V(Float64Neg) \
441 V(Float64Mul) \ 439 V(Float64Mul) \
442 V(Float64Div) \ 440 V(Float64Div) \
443 V(Float64Mod) \ 441 V(Float64Mod) \
444 V(Float64Max) \ 442 V(Float64Max) \
445 V(Float64Min) \ 443 V(Float64Min) \
446 V(Float64Abs) \ 444 V(Float64Abs) \
447 V(Float64Acos) \ 445 V(Float64Acos) \
448 V(Float64Acosh) \ 446 V(Float64Acosh) \
449 V(Float64Asin) \ 447 V(Float64Asin) \
(...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after
759 } 757 }
760 }; 758 };
761 759
762 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 760 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
763 761
764 } // namespace compiler 762 } // namespace compiler
765 } // namespace internal 763 } // namespace internal
766 } // namespace v8 764 } // namespace v8
767 765
768 #endif // V8_COMPILER_OPCODES_H_ 766 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/mips64/instruction-selector-mips64.cc ('k') | src/compiler/raw-machine-assembler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698