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

Side by Side Diff: src/compiler/raw-machine-assembler.h

Issue 2083453002: [builtins] Introduce proper Float64Tan operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 6 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
« no previous file with comments | « src/compiler/opcodes.h ('k') | src/compiler/simplified-operator.h » ('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 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_RAW_MACHINE_ASSEMBLER_H_ 5 #ifndef V8_COMPILER_RAW_MACHINE_ASSEMBLER_H_
6 #define V8_COMPILER_RAW_MACHINE_ASSEMBLER_H_ 6 #define V8_COMPILER_RAW_MACHINE_ASSEMBLER_H_
7 7
8 #include "src/assembler.h" 8 #include "src/assembler.h"
9 #include "src/compiler/common-operator.h" 9 #include "src/compiler/common-operator.h"
10 #include "src/compiler/graph.h" 10 #include "src/compiler/graph.h"
(...skipping 457 matching lines...) Expand 10 before | Expand all | Expand 10 after
468 Node* Float64Cbrt(Node* a) { return AddNode(machine()->Float64Cbrt(), a); } 468 Node* Float64Cbrt(Node* a) { return AddNode(machine()->Float64Cbrt(), a); }
469 Node* Float64Cos(Node* a) { return AddNode(machine()->Float64Cos(), a); } 469 Node* Float64Cos(Node* a) { return AddNode(machine()->Float64Cos(), a); }
470 Node* Float64Exp(Node* a) { return AddNode(machine()->Float64Exp(), a); } 470 Node* Float64Exp(Node* a) { return AddNode(machine()->Float64Exp(), a); }
471 Node* Float64Expm1(Node* a) { return AddNode(machine()->Float64Expm1(), a); } 471 Node* Float64Expm1(Node* a) { return AddNode(machine()->Float64Expm1(), a); }
472 Node* Float64Log(Node* a) { return AddNode(machine()->Float64Log(), a); } 472 Node* Float64Log(Node* a) { return AddNode(machine()->Float64Log(), a); }
473 Node* Float64Log1p(Node* a) { return AddNode(machine()->Float64Log1p(), a); } 473 Node* Float64Log1p(Node* a) { return AddNode(machine()->Float64Log1p(), a); }
474 Node* Float64Log10(Node* a) { return AddNode(machine()->Float64Log10(), a); } 474 Node* Float64Log10(Node* a) { return AddNode(machine()->Float64Log10(), a); }
475 Node* Float64Log2(Node* a) { return AddNode(machine()->Float64Log2(), a); } 475 Node* Float64Log2(Node* a) { return AddNode(machine()->Float64Log2(), a); }
476 Node* Float64Sin(Node* a) { return AddNode(machine()->Float64Sin(), a); } 476 Node* Float64Sin(Node* a) { return AddNode(machine()->Float64Sin(), a); }
477 Node* Float64Sqrt(Node* a) { return AddNode(machine()->Float64Sqrt(), a); } 477 Node* Float64Sqrt(Node* a) { return AddNode(machine()->Float64Sqrt(), a); }
478 Node* Float64Tan(Node* a) { return AddNode(machine()->Float64Tan(), a); }
478 Node* Float64Equal(Node* a, Node* b) { 479 Node* Float64Equal(Node* a, Node* b) {
479 return AddNode(machine()->Float64Equal(), a, b); 480 return AddNode(machine()->Float64Equal(), a, b);
480 } 481 }
481 Node* Float64NotEqual(Node* a, Node* b) { 482 Node* Float64NotEqual(Node* a, Node* b) {
482 return Word32BinaryNot(Float64Equal(a, b)); 483 return Word32BinaryNot(Float64Equal(a, b));
483 } 484 }
484 Node* Float64LessThan(Node* a, Node* b) { 485 Node* Float64LessThan(Node* a, Node* b) {
485 return AddNode(machine()->Float64LessThan(), a, b); 486 return AddNode(machine()->Float64LessThan(), a, b);
486 } 487 }
487 Node* Float64LessThanOrEqual(Node* a, Node* b) { 488 Node* Float64LessThanOrEqual(Node* a, Node* b) {
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after
784 bool deferred_; 785 bool deferred_;
785 friend class RawMachineAssembler; 786 friend class RawMachineAssembler;
786 DISALLOW_COPY_AND_ASSIGN(RawMachineLabel); 787 DISALLOW_COPY_AND_ASSIGN(RawMachineLabel);
787 }; 788 };
788 789
789 } // namespace compiler 790 } // namespace compiler
790 } // namespace internal 791 } // namespace internal
791 } // namespace v8 792 } // namespace v8
792 793
793 #endif // V8_COMPILER_RAW_MACHINE_ASSEMBLER_H_ 794 #endif // V8_COMPILER_RAW_MACHINE_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/compiler/opcodes.h ('k') | src/compiler/simplified-operator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698