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

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

Issue 2198833002: [turbofan] Remove unnecessary prototype checks for element access. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: REBASE Created 4 years, 4 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') | src/compiler/js-native-context-specialization.cc » ('J')
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 b6d68c740e8efefef39d2d109217944a8ece57fc..daa872286fed7977cec0dfc3c392cc175d53a252 100644
--- a/src/compiler/access-info.h
+++ b/src/compiler/access-info.h
@@ -35,10 +35,8 @@ typedef std::vector<std::pair<Handle<Map>, Handle<Map>>> MapTransitionList;
class ElementAccessInfo final {
public:
ElementAccessInfo();
- ElementAccessInfo(MapList const& receiver_maps, ElementsKind elements_kind,
- MaybeHandle<JSObject> holder);
+ ElementAccessInfo(MapList const& receiver_maps, ElementsKind elements_kind);
- MaybeHandle<JSObject> holder() const { return holder_; }
ElementsKind elements_kind() const { return elements_kind_; }
MapList const& receiver_maps() const { return receiver_maps_; }
MapTransitionList& transitions() { return transitions_; }
@@ -46,7 +44,6 @@ class ElementAccessInfo final {
private:
ElementsKind elements_kind_;
- MaybeHandle<JSObject> holder_;
MapList receiver_maps_;
MapTransitionList transitions_;
};
« no previous file with comments | « no previous file | src/compiler/access-info.cc » ('j') | src/compiler/js-native-context-specialization.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698