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

Unified Diff: src/compiler/change-lowering.h

Issue 1709093002: [turbofan] Connect ObjectIsNumber to effect and control chains. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@move-change-low
Patch Set: Created 4 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
« no previous file with comments | « no previous file | src/compiler/change-lowering.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/change-lowering.h
diff --git a/src/compiler/change-lowering.h b/src/compiler/change-lowering.h
index defadd95fd098d65f4ce9cd201158e34c67afe52..48bcc9201c0b10dd72ab0fc7d9aa8f068ec9daff 100644
--- a/src/compiler/change-lowering.h
+++ b/src/compiler/change-lowering.h
@@ -19,9 +19,10 @@ class Linkage;
class MachineOperatorBuilder;
class Operator;
-class ChangeLowering final : public Reducer {
+class ChangeLowering final : public AdvancedReducer {
public:
- explicit ChangeLowering(JSGraph* jsgraph) : jsgraph_(jsgraph) {}
+ ChangeLowering(Editor* editor, JSGraph* jsgraph)
+ : AdvancedReducer(editor), jsgraph_(jsgraph) {}
~ChangeLowering() final;
Reduction Reduce(Node* node) final;
@@ -57,8 +58,8 @@ class ChangeLowering final : public Reducer {
Reduction Allocate(Node* node);
Node* IsSmi(Node* value);
- Node* LoadHeapObjectMap(Node* object, Node* control);
- Node* LoadMapInstanceType(Node* map);
+ Node* LoadHeapObjectMap(Node* object, Node* effect, Node* control);
+ Node* LoadMapInstanceType(Node* map, Node* effect, Node* control);
Reduction ObjectIsNumber(Node* node);
Reduction ObjectIsReceiver(Node* node);
« no previous file with comments | « no previous file | src/compiler/change-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698