OLD | NEW |
1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 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 2757 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2768 // If the object already has external elements, create a new, unique | 2768 // If the object already has external elements, create a new, unique |
2769 // map if the element type is now changing, because assumptions about | 2769 // map if the element type is now changing, because assumptions about |
2770 // generated code based on the receiver's map will be invalid. | 2770 // generated code based on the receiver's map will be invalid. |
2771 i::Handle<i::HeapObject> elements(object->elements()); | 2771 i::Handle<i::HeapObject> elements(object->elements()); |
2772 bool force_unique_map = | 2772 bool force_unique_map = |
2773 elements->map()->IsUndefined() || | 2773 elements->map()->IsUndefined() || |
2774 !elements->map()->has_external_array_elements() || | 2774 !elements->map()->has_external_array_elements() || |
2775 elements->map() != i::Heap::MapForExternalArrayType(array_type); | 2775 elements->map() != i::Heap::MapForExternalArrayType(array_type); |
2776 if (force_unique_map) { | 2776 if (force_unique_map) { |
2777 i::Handle<i::Map> external_array_map = | 2777 i::Handle<i::Map> external_array_map = |
2778 i::Factory::NewExternalArrayElementsMap( | 2778 i::Factory::GetExternalArrayElementsMap( |
2779 i::Handle<i::Map>(object->map())); | 2779 i::Handle<i::Map>(object->map()), array_type); |
2780 object->set_map(*external_array_map); | 2780 object->set_map(*external_array_map); |
2781 } | 2781 } |
2782 object->set_elements(*array); | 2782 object->set_elements(*array); |
2783 } | 2783 } |
2784 | 2784 |
2785 } // namespace | 2785 } // namespace |
2786 | 2786 |
2787 | 2787 |
2788 void v8::Object::SetIndexedPropertiesToPixelData(uint8_t* data, int length) { | 2788 void v8::Object::SetIndexedPropertiesToPixelData(uint8_t* data, int length) { |
2789 ON_BAILOUT("v8::SetElementsToPixelData()", return); | 2789 ON_BAILOUT("v8::SetElementsToPixelData()", return); |
(...skipping 2434 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5224 | 5224 |
5225 | 5225 |
5226 char* HandleScopeImplementer::Iterate(ObjectVisitor* v, char* storage) { | 5226 char* HandleScopeImplementer::Iterate(ObjectVisitor* v, char* storage) { |
5227 HandleScopeImplementer* thread_local = | 5227 HandleScopeImplementer* thread_local = |
5228 reinterpret_cast<HandleScopeImplementer*>(storage); | 5228 reinterpret_cast<HandleScopeImplementer*>(storage); |
5229 thread_local->IterateThis(v); | 5229 thread_local->IterateThis(v); |
5230 return storage + ArchiveSpacePerThread(); | 5230 return storage + ArchiveSpacePerThread(); |
5231 } | 5231 } |
5232 | 5232 |
5233 } } // namespace v8::internal | 5233 } } // namespace v8::internal |
OLD | NEW |