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

Unified Diff: src/hydrogen.h

Issue 6690006: Improve GVN dependency tracking by adding parameters to certain flags.
Patch Set: Created 9 years, 9 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/hydrogen.cc » ('j') | src/hydrogen.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/hydrogen.h
diff --git a/src/hydrogen.h b/src/hydrogen.h
index 235b669933294a6d890ba0d099d2f77d41d11e2f..dd0c995aaa11828d558d673e5bf5787e5b22a6a3 100644
--- a/src/hydrogen.h
+++ b/src/hydrogen.h
@@ -884,6 +884,9 @@ class HGraphBuilder: public AstVisitor {
};
+class HEffectSet;
+
+
class HValueMap: public ZoneObject {
public:
HValueMap()
@@ -898,7 +901,7 @@ class HValueMap: public ZoneObject {
Resize(kInitialSize);
}
- void Kill(int flags);
+ void Kill(const HEffectSet& effects);
void Add(HValue* value) {
present_flags_ |= value->flags();
« no previous file with comments | « no previous file | src/hydrogen.cc » ('j') | src/hydrogen.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698