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

Unified Diff: src/compiler/value-numbering-reducer.h

Issue 2474873003: [turbofan] Tune the ValueNumberingReducer's growth rate (Closed)
Patch Set: Created 4 years, 1 month 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/value-numbering-reducer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/value-numbering-reducer.h
diff --git a/src/compiler/value-numbering-reducer.h b/src/compiler/value-numbering-reducer.h
index 724c6bd58873a940c3b5a1095861475ee764b348..f52e13b45c98a044c13fa4d80bed2f65b20dd53b 100644
--- a/src/compiler/value-numbering-reducer.h
+++ b/src/compiler/value-numbering-reducer.h
@@ -22,7 +22,7 @@ class V8_EXPORT_PRIVATE ValueNumberingReducer final
Reduction Reduce(Node* node) override;
private:
- enum { kInitialCapacity = 256u, kCapacityToSizeRatio = 2u };
+ enum { kInitialCapacity = 256u };
void Grow();
Zone* temp_zone() const { return temp_zone_; }
« no previous file with comments | « no previous file | src/compiler/value-numbering-reducer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698