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

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

Issue 2060743002: [builtins] Introduce proper Float64Log1p operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@Math_Log
Patch Set: REBASE 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
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 443 matching lines...) Expand 10 before | Expand all | Expand 10 after
454 } 454 }
455 Node* Float64Max(Node* a, Node* b) { 455 Node* Float64Max(Node* a, Node* b) {
456 return AddNode(machine()->Float64Max().op(), a, b); 456 return AddNode(machine()->Float64Max().op(), a, b);
457 } 457 }
458 Node* Float64Min(Node* a, Node* b) { 458 Node* Float64Min(Node* a, Node* b) {
459 return AddNode(machine()->Float64Min().op(), a, b); 459 return AddNode(machine()->Float64Min().op(), a, b);
460 } 460 }
461 Node* Float64Abs(Node* a) { return AddNode(machine()->Float64Abs(), a); } 461 Node* Float64Abs(Node* a) { return AddNode(machine()->Float64Abs(), a); }
462 Node* Float64Neg(Node* a) { return Float64Sub(Float64Constant(-0.0), a); } 462 Node* Float64Neg(Node* a) { return Float64Sub(Float64Constant(-0.0), a); }
463 Node* Float64Log(Node* a) { return AddNode(machine()->Float64Log(), a); } 463 Node* Float64Log(Node* a) { return AddNode(machine()->Float64Log(), a); }
464 Node* Float64Log1p(Node* a) { return AddNode(machine()->Float64Log1p(), a); }
464 Node* Float64Sqrt(Node* a) { return AddNode(machine()->Float64Sqrt(), a); } 465 Node* Float64Sqrt(Node* a) { return AddNode(machine()->Float64Sqrt(), a); }
465 Node* Float64Equal(Node* a, Node* b) { 466 Node* Float64Equal(Node* a, Node* b) {
466 return AddNode(machine()->Float64Equal(), a, b); 467 return AddNode(machine()->Float64Equal(), a, b);
467 } 468 }
468 Node* Float64NotEqual(Node* a, Node* b) { 469 Node* Float64NotEqual(Node* a, Node* b) {
469 return Word32BinaryNot(Float64Equal(a, b)); 470 return Word32BinaryNot(Float64Equal(a, b));
470 } 471 }
471 Node* Float64LessThan(Node* a, Node* b) { 472 Node* Float64LessThan(Node* a, Node* b) {
472 return AddNode(machine()->Float64LessThan(), a, b); 473 return AddNode(machine()->Float64LessThan(), a, b);
473 } 474 }
(...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after
771 bool deferred_; 772 bool deferred_;
772 friend class RawMachineAssembler; 773 friend class RawMachineAssembler;
773 DISALLOW_COPY_AND_ASSIGN(RawMachineLabel); 774 DISALLOW_COPY_AND_ASSIGN(RawMachineLabel);
774 }; 775 };
775 776
776 } // namespace compiler 777 } // namespace compiler
777 } // namespace internal 778 } // namespace internal
778 } // namespace v8 779 } // namespace v8
779 780
780 #endif // V8_COMPILER_RAW_MACHINE_ASSEMBLER_H_ 781 #endif // V8_COMPILER_RAW_MACHINE_ASSEMBLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698