Commit d4cbf02a authored by verwaest@chromium.org's avatar verwaest@chromium.org

Allow code to be cached in shared maps.

BUG=
R=ulan@chromium.org

Review URL: https://chromiumcodereview.appspot.com/25486002

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@17045 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent f1c28e77
......@@ -4449,16 +4449,6 @@ void HeapObject::UpdateMapCodeCache(Handle<HeapObject> object,
Handle<Name> name,
Handle<Code> code) {
Handle<Map> map(object->map());
if (map->is_shared()) {
Handle<JSObject> receiver = Handle<JSObject>::cast(object);
// Fast case maps are never marked as shared.
ASSERT(!receiver->HasFastProperties());
// Replace the map with an identical copy that can be safely modified.
map = Map::CopyNormalized(map, KEEP_INOBJECT_PROPERTIES,
UNIQUE_NORMALIZED_MAP);
receiver->GetIsolate()->counters()->normalized_maps()->Increment();
receiver->set_map(*map);
}
Map::UpdateCodeCache(map, name, code);
}
......@@ -7023,8 +7013,6 @@ void Map::UpdateCodeCache(Handle<Map> map,
MaybeObject* Map::UpdateCodeCache(Name* name, Code* code) {
ASSERT(!is_shared() || code->allowed_in_shared_map_code_cache());
// Allocate the code cache if not present.
if (code_cache()->IsFixedArray()) {
Object* result;
......@@ -10466,13 +10454,6 @@ BailoutId Code::TranslatePcOffsetToAstId(uint32_t pc_offset) {
}
bool Code::allowed_in_shared_map_code_cache() {
return is_keyed_load_stub() || is_keyed_store_stub() ||
(is_compare_ic_stub() &&
ICCompareStub::CompareState(stub_info()) == CompareIC::KNOWN_OBJECT);
}
void Code::MakeCodeAgeSequenceYoung(byte* sequence, Isolate* isolate) {
PatchPlatformCodeAge(isolate, sequence, kNoAge, NO_MARKING_PARITY);
}
......
......@@ -4979,8 +4979,6 @@ class Code: public HeapObject {
inline bool marked_for_deoptimization();
inline void set_marked_for_deoptimization(bool flag);
bool allowed_in_shared_map_code_cache();
// Get the safepoint entry for the given pc.
SafepointEntry GetSafepointEntry(Address pc);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment