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

Side by Side Diff: src/serialize.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 817 matching lines...) Expand 10 before | Expand all | Expand 10 after
828 isolate_->heap()->set_array_buffers_list( 828 isolate_->heap()->set_array_buffers_list(
829 isolate_->heap()->undefined_value()); 829 isolate_->heap()->undefined_value());
830 830
831 // The allocation site list is build during root iteration, but if no sites 831 // The allocation site list is build during root iteration, but if no sites
832 // were encountered then it needs to be initialized to undefined. 832 // were encountered then it needs to be initialized to undefined.
833 if (isolate_->heap()->allocation_sites_list() == Smi::FromInt(0)) { 833 if (isolate_->heap()->allocation_sites_list() == Smi::FromInt(0)) {
834 isolate_->heap()->set_allocation_sites_list( 834 isolate_->heap()->set_allocation_sites_list(
835 isolate_->heap()->undefined_value()); 835 isolate_->heap()->undefined_value());
836 } 836 }
837 837
838 isolate_->heap()->set_weak_object_to_code(
839 isolate_->heap()->undefined_value());
840
838 // Update data pointers to the external strings containing natives sources. 841 // Update data pointers to the external strings containing natives sources.
839 for (int i = 0; i < Natives::GetBuiltinsCount(); i++) { 842 for (int i = 0; i < Natives::GetBuiltinsCount(); i++) {
840 Object* source = isolate_->heap()->natives_source_cache()->get(i); 843 Object* source = isolate_->heap()->natives_source_cache()->get(i);
841 if (!source->IsUndefined()) { 844 if (!source->IsUndefined()) {
842 ExternalAsciiString::cast(source)->update_data_cache(); 845 ExternalAsciiString::cast(source)->update_data_cache();
843 } 846 }
844 } 847 }
845 848
846 // Issue code events for newly deserialized code objects. 849 // Issue code events for newly deserialized code objects.
847 LOG_CODE_EVENT(isolate_, LogCodeObjects()); 850 LOG_CODE_EVENT(isolate_, LogCodeObjects());
(...skipping 1008 matching lines...) Expand 10 before | Expand all | Expand 10 after
1856 1859
1857 bool SnapshotByteSource::AtEOF() { 1860 bool SnapshotByteSource::AtEOF() {
1858 if (0u + length_ - position_ > 2 * sizeof(uint32_t)) return false; 1861 if (0u + length_ - position_ > 2 * sizeof(uint32_t)) return false;
1859 for (int x = position_; x < length_; x++) { 1862 for (int x = position_; x < length_; x++) {
1860 if (data_[x] != SerializerDeserializer::nop()) return false; 1863 if (data_[x] != SerializerDeserializer::nop()) return false;
1861 } 1864 }
1862 return true; 1865 return true;
1863 } 1866 }
1864 1867
1865 } } // namespace v8::internal 1868 } } // namespace v8::internal
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698