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

Unified Diff: src/lithium.cc

Issue 12224035: Generalize map dependent codes array to allow multiple dependency groups. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 10 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/flag-definitions.h ('k') | src/mark-compact.cc » ('j') | src/objects.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/lithium.cc
diff --git a/src/lithium.cc b/src/lithium.cc
index ff5af7f31e81df3c7e8e7405716236db16e27f16..06f59ee471d4cd800ea52ca73ad597ca977b49b0 100644
--- a/src/lithium.cc
+++ b/src/lithium.cc
@@ -472,7 +472,7 @@ void LChunk::RegisterDependentCodeForEmbeddedMaps(Handle<Code> code) {
NoWeakEmbeddedMapsVerificationScope disable_verification_of_embedded_maps;
#endif
for (int i = 0; i < maps.length(); i++) {
- maps.at(i)->AddDependentCode(code);
+ maps.at(i)->AddDependentCode(DependentCodes::kWeaklyEmbeddedGroup, code);
}
}
« no previous file with comments | « src/flag-definitions.h ('k') | src/mark-compact.cc » ('j') | src/objects.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698