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

Unified Diff: src/compiler/raw-machine-assembler.h

Issue 974313002: [turbofan] Support for %_DoubleHi, %_DoubleLo and %_ConstructDouble. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: arm port. Created 5 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: src/compiler/raw-machine-assembler.h
diff --git a/src/compiler/raw-machine-assembler.h b/src/compiler/raw-machine-assembler.h
index 04b1dc6f57cebff7a001225a92e84c868abf70ec..5dac0ac04a5b23cf84fe3de694c76d0b8abb4501 100644
--- a/src/compiler/raw-machine-assembler.h
+++ b/src/compiler/raw-machine-assembler.h
@@ -393,6 +393,14 @@ class RawMachineAssembler : public GraphBuilder {
return NewNode(machine()->Float64RoundTiesAway(), a);
}
+ // Float64 bit operations.
+ Node* Float64ExtractWord32(int location, Node* a) {
+ return NewNode(machine()->Float64ExtractWord32(location), a);
+ }
+ Node* Float64InsertWord32(int location, Node* a, Node* b) {
+ return NewNode(machine()->Float64InsertWord32(location), a, b);
+ }
+
// Parameters.
Node* Parameter(size_t index);

Powered by Google App Engine
This is Rietveld 408576698