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

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: Fix names Created 7 years, 3 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 1104 matching lines...) Expand 10 before | Expand all | Expand 10 after
1115 LEnvironment* environment) { 1115 LEnvironment* environment) {
1116 Deoptimizer::BailoutType bailout_type = info()->IsStub() 1116 Deoptimizer::BailoutType bailout_type = info()->IsStub()
1117 ? Deoptimizer::LAZY 1117 ? Deoptimizer::LAZY
1118 : Deoptimizer::EAGER; 1118 : Deoptimizer::EAGER;
1119 DeoptimizeIf(cc, environment, bailout_type); 1119 DeoptimizeIf(cc, environment, bailout_type);
1120 } 1120 }
1121 1121
1122 1122
1123 void LCodeGen::RegisterDependentCodeForEmbeddedMaps(Handle<Code> code) { 1123 void LCodeGen::RegisterDependentCodeForEmbeddedMaps(Handle<Code> code) {
1124 ZoneList<Handle<Map> > maps(1, zone()); 1124 ZoneList<Handle<Map> > maps(1, zone());
1125 ZoneList<Handle<JSObject> > objects(1, zone());
1125 int mode_mask = RelocInfo::ModeMask(RelocInfo::EMBEDDED_OBJECT); 1126 int mode_mask = RelocInfo::ModeMask(RelocInfo::EMBEDDED_OBJECT);
1126 for (RelocIterator it(*code, mode_mask); !it.done(); it.next()) { 1127 for (RelocIterator it(*code, mode_mask); !it.done(); it.next()) {
1127 RelocInfo::Mode mode = it.rinfo()->rmode(); 1128 if (Code::IsWeakEmbeddedObject(code->kind(), it.rinfo()->target_object())) {
1128 if (mode == RelocInfo::EMBEDDED_OBJECT && 1129 if (it.rinfo()->target_object()->IsMap()) {
1129 it.rinfo()->target_object()->IsMap()) { 1130 Handle<Map> map(Map::cast(it.rinfo()->target_object()));
1130 Handle<Map> map(Map::cast(it.rinfo()->target_object()));
1131 if (map->CanTransition()) {
1132 maps.Add(map, zone()); 1131 maps.Add(map, zone());
1132 } else if (it.rinfo()->target_object()->IsJSObject()) {
1133 Handle<JSObject> object(JSObject::cast(it.rinfo()->target_object()));
1134 objects.Add(object, zone());
1133 } 1135 }
1134 } 1136 }
1135 } 1137 }
1136 #ifdef VERIFY_HEAP 1138 #ifdef VERIFY_HEAP
1137 // This disables verification of weak embedded maps after full GC. 1139 // This disables verification of weak embedded maps after full GC.
1138 // AddDependentCode can cause a GC, which would observe the state where 1140 // AddDependentCode can cause a GC, which would observe the state where
1139 // this code is not yet in the depended code lists of the embedded maps. 1141 // this code is not yet in the depended code lists of the embedded maps.
1140 NoWeakEmbeddedMapsVerificationScope disable_verification_of_embedded_maps; 1142 NoWeakEmbeddedMapsVerificationScope disable_verification_of_embedded_maps;
1141 #endif 1143 #endif
1142 for (int i = 0; i < maps.length(); i++) { 1144 for (int i = 0; i < maps.length(); i++) {
1143 maps.at(i)->AddDependentCode(DependentCode::kWeaklyEmbeddedGroup, code); 1145 maps.at(i)->AddDependentCode(DependentCode::kWeaklyEmbeddedGroup, code);
1144 } 1146 }
1147 for (int i = 0; i < objects.length(); i++) {
1148 AddWeakObjectToCodeDependency(isolate()->heap(), objects.at(i), code);
1149 }
1145 } 1150 }
1146 1151
1147 1152
1148 void LCodeGen::PopulateDeoptimizationData(Handle<Code> code) { 1153 void LCodeGen::PopulateDeoptimizationData(Handle<Code> code) {
1149 int length = deoptimizations_.length(); 1154 int length = deoptimizations_.length();
1150 if (length == 0) return; 1155 if (length == 0) return;
1151 Handle<DeoptimizationInputData> data = 1156 Handle<DeoptimizationInputData> data =
1152 factory()->NewDeoptimizationInputData(length, TENURED); 1157 factory()->NewDeoptimizationInputData(length, TENURED);
1153 1158
1154 Handle<ByteArray> translations = 1159 Handle<ByteArray> translations =
(...skipping 5218 matching lines...) Expand 10 before | Expand all | Expand 10 after
6373 FixedArray::kHeaderSize - kPointerSize)); 6378 FixedArray::kHeaderSize - kPointerSize));
6374 __ bind(&done); 6379 __ bind(&done);
6375 } 6380 }
6376 6381
6377 6382
6378 #undef __ 6383 #undef __
6379 6384
6380 } } // namespace v8::internal 6385 } } // namespace v8::internal
6381 6386
6382 #endif // V8_TARGET_ARCH_IA32 6387 #endif // V8_TARGET_ARCH_IA32
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698