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

Unified Diff: src/compiler/access-info.h

Issue 2811593002: [turbofan] Remove the obsolete PropertyAccessInfo::Generic. (Closed)
Patch Set: Created 3 years, 8 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/compiler/access-info.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/access-info.h
diff --git a/src/compiler/access-info.h b/src/compiler/access-info.h
index 42fa1db1ad4c03b91bd76f93c97983f119ffb4a6..809aa83e474fa624f761e0b34b13b72ea3de3313 100644
--- a/src/compiler/access-info.h
+++ b/src/compiler/access-info.h
@@ -63,8 +63,7 @@ class PropertyAccessInfo final {
kDataConstant,
kDataField,
kDataConstantField,
- kAccessorConstant,
- kGeneric
+ kAccessorConstant
};
static PropertyAccessInfo NotFound(MapList const& receiver_maps,
@@ -81,7 +80,6 @@ class PropertyAccessInfo final {
static PropertyAccessInfo AccessorConstant(MapList const& receiver_maps,
Handle<Object> constant,
MaybeHandle<JSObject> holder);
- static PropertyAccessInfo Generic(MapList const& receiver_maps);
PropertyAccessInfo();
@@ -94,7 +92,6 @@ class PropertyAccessInfo final {
// is done.
bool IsDataConstantField() const { return kind() == kDataConstantField; }
bool IsAccessorConstant() const { return kind() == kAccessorConstant; }
- bool IsGeneric() const { return kind() == kGeneric; }
bool HasTransitionMap() const { return !transition_map().is_null(); }
« no previous file with comments | « no previous file | src/compiler/access-info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698