OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
169 maps.Add(map, zone()); | 169 maps.Add(map, zone()); |
170 } else if (it.rinfo()->target_object()->IsJSObject()) { | 170 } else if (it.rinfo()->target_object()->IsJSObject()) { |
171 Handle<JSObject> object(JSObject::cast(it.rinfo()->target_object())); | 171 Handle<JSObject> object(JSObject::cast(it.rinfo()->target_object())); |
172 objects.Add(object, zone()); | 172 objects.Add(object, zone()); |
173 } else if (it.rinfo()->target_object()->IsCell()) { | 173 } else if (it.rinfo()->target_object()->IsCell()) { |
174 Handle<Cell> cell(Cell::cast(it.rinfo()->target_object())); | 174 Handle<Cell> cell(Cell::cast(it.rinfo()->target_object())); |
175 cells.Add(cell, zone()); | 175 cells.Add(cell, zone()); |
176 } | 176 } |
177 } | 177 } |
178 } | 178 } |
| 179 if (FLAG_enable_ool_constant_pool) { |
| 180 code->constant_pool()->set_weak_object_state( |
| 181 ConstantPoolArray::WEAK_OBJECTS_IN_OPTIMIZED_CODE); |
| 182 } |
179 #ifdef VERIFY_HEAP | 183 #ifdef VERIFY_HEAP |
180 // This disables verification of weak embedded objects after full GC. | 184 // This disables verification of weak embedded objects after full GC. |
181 // AddDependentCode can cause a GC, which would observe the state where | 185 // AddDependentCode can cause a GC, which would observe the state where |
182 // this code is not yet in the depended code lists of the embedded maps. | 186 // this code is not yet in the depended code lists of the embedded maps. |
183 NoWeakObjectVerificationScope disable_verification_of_embedded_objects; | 187 NoWeakObjectVerificationScope disable_verification_of_embedded_objects; |
184 #endif | 188 #endif |
185 for (int i = 0; i < maps.length(); i++) { | 189 for (int i = 0; i < maps.length(); i++) { |
186 maps.at(i)->AddDependentCode(DependentCode::kWeaklyEmbeddedGroup, code); | 190 maps.at(i)->AddDependentCode(DependentCode::kWeaklyEmbeddedGroup, code); |
187 } | 191 } |
188 for (int i = 0; i < objects.length(); i++) { | 192 for (int i = 0; i < objects.length(); i++) { |
189 AddWeakObjectToCodeDependency(isolate()->heap(), objects.at(i), code); | 193 AddWeakObjectToCodeDependency(isolate()->heap(), objects.at(i), code); |
190 } | 194 } |
191 for (int i = 0; i < cells.length(); i++) { | 195 for (int i = 0; i < cells.length(); i++) { |
192 AddWeakObjectToCodeDependency(isolate()->heap(), cells.at(i), code); | 196 AddWeakObjectToCodeDependency(isolate()->heap(), cells.at(i), code); |
193 } | 197 } |
194 } | 198 } |
195 | 199 |
196 | 200 |
197 } } // namespace v8::internal | 201 } } // namespace v8::internal |
OLD | NEW |