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

Unified Diff: src/compiler/typer.cc

Issue 1187263003: [turbofan] Remove obsolete 'incomplete' flag from GraphDecorator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/compiler/source-position.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/typer.cc
diff --git a/src/compiler/typer.cc b/src/compiler/typer.cc
index f7b3a1dc3315899d9f66870307738466ec717ec3..e7f301ecc852e5bd572807ea645cfc7425d32811 100644
--- a/src/compiler/typer.cc
+++ b/src/compiler/typer.cc
@@ -157,7 +157,7 @@ class LazyTypeCache final : public ZoneObject {
class Typer::Decorator final : public GraphDecorator {
public:
explicit Decorator(Typer* typer) : typer_(typer) {}
- void Decorate(Node* node, bool incomplete) final;
+ void Decorate(Node* node) final;
private:
Typer* typer_;
@@ -458,8 +458,7 @@ void Typer::Run() {
}
-void Typer::Decorator::Decorate(Node* node, bool incomplete) {
- if (incomplete) return;
+void Typer::Decorator::Decorate(Node* node) {
if (node->op()->ValueOutputCount() > 0) {
// Only eagerly type-decorate nodes with known input types.
// Other cases will generally require a proper fixpoint iteration with Run.
« no previous file with comments | « src/compiler/source-position.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698