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

Unified Diff: src/compiler/node-properties.h

Issue 1179393008: [turbofan] Enable concurrent (re)compilation. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix Typer life cycle. 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
Index: src/compiler/node-properties.h
diff --git a/src/compiler/node-properties.h b/src/compiler/node-properties.h
index 6d11f6cfcce507ce8b1b47a8066d2ceacab23d05..35bd075976d9c700dea2a1a7dbd5bfdc209fb5cb 100644
--- a/src/compiler/node-properties.h
+++ b/src/compiler/node-properties.h
@@ -124,6 +124,9 @@ class NodeProperties final {
DCHECK_NOT_NULL(bounds.upper);
node->set_bounds(bounds);
}
+ static void CopyBounds(Node* dst, Node* src) {
+ dst->set_bounds(src->bounds());
+ }
static void RemoveBounds(Node* node) { node->set_bounds(Bounds()); }
static bool AllValueInputsAreTyped(Node* node);
« src/compiler.cc ('K') | « src/compiler.cc ('k') | src/compiler/pipeline.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698