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

Unified Diff: src/ic/stub-cache.h

Issue 1649723002: [compiler] Extend the functionality of CodeStubAssembler (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Latest Created 4 years, 11 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/ic/stub-cache.h
diff --git a/src/ic/stub-cache.h b/src/ic/stub-cache.h
index 4b27e6e396db6cfa619bd64e3a7fa2593376d455..82bce652c28023148ffc5d7158aee894d1ec2990 100644
--- a/src/ic/stub-cache.h
+++ b/src/ic/stub-cache.h
@@ -10,6 +10,9 @@
namespace v8 {
namespace internal {
+namespace compiler {
+class CodeStubAssembler;
Michael Starzinger 2016/02/01 16:04:12 nit: This looks like a left-over from another piec
danno 2016/02/02 07:52:55 Done.
+}
// The stub cache is used for megamorphic property accesses.
// It maps (map, name, type) to property access handlers. The cache does not
@@ -160,6 +163,7 @@ class StubCache {
Entry secondary_[kSecondaryTableSize];
Isolate* isolate_;
+ friend class compiler::CodeStubAssembler;
Michael Starzinger 2016/02/01 16:04:12 nit: This looks like a left-over from another piec
danno 2016/02/02 07:52:55 Done.
friend class Isolate;
friend class SCTableReference;

Powered by Google App Engine
This is Rietveld 408576698