Index: src/compiler/change-lowering.h |
diff --git a/src/compiler/change-lowering.h b/src/compiler/change-lowering.h |
index 93ba14206203aa754b89370f3a6b50c4a7c8a7c0..55496e6e1a16c7a26903b391624d3ce33161bb38 100644 |
--- a/src/compiler/change-lowering.h |
+++ b/src/compiler/change-lowering.h |
@@ -32,8 +32,10 @@ class ChangeLowering V8_FINAL : public Reducer { |
Reduction ChangeBitToBool(Node* val, Node* control); |
Reduction ChangeBoolToBit(Node* val); |
- Reduction ChangeInt32ToTagged(Node* val, Node* effect, Node* control); |
- Reduction ChangeTaggedToFloat64(Node* val, Node* effect, Node* control); |
+ Reduction ChangeFloat64ToTagged(Node* val, Node* control); |
+ Reduction ChangeInt32ToTagged(Node* val, Node* control); |
+ Reduction ChangeTaggedToFloat64(Node* val, Node* control); |
+ Reduction ChangeTaggedToInt32(Node* val, Node* control); |
Graph* graph() const; |
Isolate* isolate() const; |
@@ -43,6 +45,8 @@ class ChangeLowering V8_FINAL : public Reducer { |
MachineOperatorBuilder* machine() const { return machine_; } |
private: |
+ Node* AllocateHeapNumberWithValue(Node* value, Node* control); |
+ |
JSGraph* jsgraph_; |
Linkage* linkage_; |
MachineOperatorBuilder* machine_; |