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

Unified Diff: src/lithium.h

Issue 295743002: Refactor transitioning stores. (Closed) Base URL: git@github.com:v8/v8.git@master
Patch Set: Created 6 years, 7 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 | « src/ia32/lithium-ia32.cc ('k') | src/lithium.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/lithium.h
diff --git a/src/lithium.h b/src/lithium.h
index 650bae69235a3205aa1edeebd5f8c484bf3c3713..b3d11789d55a82fc30c9bd512fa130be93c71185 100644
--- a/src/lithium.h
+++ b/src/lithium.h
@@ -650,13 +650,6 @@ class LChunk : public ZoneObject {
inlined_closures_.Add(closure, zone());
}
- void AddDeprecationDependency(Handle<Map> map) {
- ASSERT(!map->is_deprecated());
- if (!map->CanBeDeprecated()) return;
- ASSERT(!info_->IsStub());
- deprecation_dependencies_.insert(map);
- }
-
void AddStabilityDependency(Handle<Map> map) {
ASSERT(map->is_stable());
if (!map->CanTransition()) return;
@@ -691,7 +684,6 @@ class LChunk : public ZoneObject {
ZoneList<LInstruction*> instructions_;
ZoneList<LPointerMap*> pointer_maps_;
ZoneList<Handle<JSFunction> > inlined_closures_;
- MapSet deprecation_dependencies_;
MapSet stability_dependencies_;
};
« no previous file with comments | « src/ia32/lithium-ia32.cc ('k') | src/lithium.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698