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

Side by Side Diff: src/ia32/lithium-codegen-ia32.cc

Issue 23477061: Make objects embedded in optimized code weak. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Rebase and fix weak object verification. Created 7 years, 2 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 1151 matching lines...) Expand 10 before | Expand all | Expand 10 after
1162 LEnvironment* environment) { 1162 LEnvironment* environment) {
1163 Deoptimizer::BailoutType bailout_type = info()->IsStub() 1163 Deoptimizer::BailoutType bailout_type = info()->IsStub()
1164 ? Deoptimizer::LAZY 1164 ? Deoptimizer::LAZY
1165 : Deoptimizer::EAGER; 1165 : Deoptimizer::EAGER;
1166 DeoptimizeIf(cc, environment, bailout_type); 1166 DeoptimizeIf(cc, environment, bailout_type);
1167 } 1167 }
1168 1168
1169 1169
1170 void LCodeGen::RegisterDependentCodeForEmbeddedMaps(Handle<Code> code) { 1170 void LCodeGen::RegisterDependentCodeForEmbeddedMaps(Handle<Code> code) {
1171 ZoneList<Handle<Map> > maps(1, zone()); 1171 ZoneList<Handle<Map> > maps(1, zone());
1172 ZoneList<Handle<JSObject> > objects(1, zone());
1172 int mode_mask = RelocInfo::ModeMask(RelocInfo::EMBEDDED_OBJECT); 1173 int mode_mask = RelocInfo::ModeMask(RelocInfo::EMBEDDED_OBJECT);
1173 for (RelocIterator it(*code, mode_mask); !it.done(); it.next()) { 1174 for (RelocIterator it(*code, mode_mask); !it.done(); it.next()) {
1174 RelocInfo::Mode mode = it.rinfo()->rmode(); 1175 if (Code::IsWeakEmbeddedObject(code->kind(), it.rinfo()->target_object())) {
1175 if (mode == RelocInfo::EMBEDDED_OBJECT && 1176 if (it.rinfo()->target_object()->IsMap()) {
1176 it.rinfo()->target_object()->IsMap()) { 1177 Handle<Map> map(Map::cast(it.rinfo()->target_object()));
1177 Handle<Map> map(Map::cast(it.rinfo()->target_object()));
1178 if (map->CanTransition()) {
1179 maps.Add(map, zone()); 1178 maps.Add(map, zone());
1179 } else if (it.rinfo()->target_object()->IsJSObject()) {
1180 Handle<JSObject> object(JSObject::cast(it.rinfo()->target_object()));
1181 objects.Add(object, zone());
1180 } 1182 }
1181 } 1183 }
1182 } 1184 }
1183 #ifdef VERIFY_HEAP 1185 #ifdef VERIFY_HEAP
1184 // This disables verification of weak embedded maps after full GC. 1186 // This disables verification of weak embedded maps after full GC.
1185 // AddDependentCode can cause a GC, which would observe the state where 1187 // AddDependentCode can cause a GC, which would observe the state where
1186 // this code is not yet in the depended code lists of the embedded maps. 1188 // this code is not yet in the depended code lists of the embedded maps.
1187 NoWeakEmbeddedMapsVerificationScope disable_verification_of_embedded_maps; 1189 NoWeakEmbeddedMapsVerificationScope disable_verification_of_embedded_maps;
1188 #endif 1190 #endif
1189 for (int i = 0; i < maps.length(); i++) { 1191 for (int i = 0; i < maps.length(); i++) {
1190 maps.at(i)->AddDependentCode(DependentCode::kWeaklyEmbeddedGroup, code); 1192 maps.at(i)->AddDependentCode(DependentCode::kWeaklyEmbeddedGroup, code);
1191 } 1193 }
1194 for (int i = 0; i < objects.length(); i++) {
1195 AddWeakObjectToCodeDependency(isolate()->heap(), objects.at(i), code);
1196 }
1192 } 1197 }
1193 1198
1194 1199
1195 void LCodeGen::PopulateDeoptimizationData(Handle<Code> code) { 1200 void LCodeGen::PopulateDeoptimizationData(Handle<Code> code) {
1196 int length = deoptimizations_.length(); 1201 int length = deoptimizations_.length();
1197 if (length == 0) return; 1202 if (length == 0) return;
1198 Handle<DeoptimizationInputData> data = 1203 Handle<DeoptimizationInputData> data =
1199 factory()->NewDeoptimizationInputData(length, TENURED); 1204 factory()->NewDeoptimizationInputData(length, TENURED);
1200 1205
1201 Handle<ByteArray> translations = 1206 Handle<ByteArray> translations =
(...skipping 5203 matching lines...) Expand 10 before | Expand all | Expand 10 after
6405 FixedArray::kHeaderSize - kPointerSize)); 6410 FixedArray::kHeaderSize - kPointerSize));
6406 __ bind(&done); 6411 __ bind(&done);
6407 } 6412 }
6408 6413
6409 6414
6410 #undef __ 6415 #undef __
6411 6416
6412 } } // namespace v8::internal 6417 } } // namespace v8::internal
6413 6418
6414 #endif // V8_TARGET_ARCH_IA32 6419 #endif // V8_TARGET_ARCH_IA32
OLDNEW
« src/heap.h ('K') | « src/heap.cc ('k') | src/incremental-marking.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698