| OLD | NEW |
| 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 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 former_start[new_start_index + 1] = Smi::FromInt(len - to_trim); | 266 former_start[new_start_index + 1] = Smi::FromInt(len - to_trim); |
| 267 | 267 |
| 268 // Maintain marking consistency for HeapObjectIterator and | 268 // Maintain marking consistency for HeapObjectIterator and |
| 269 // IncrementalMarking. | 269 // IncrementalMarking. |
| 270 int size_delta = to_trim * entry_size; | 270 int size_delta = to_trim * entry_size; |
| 271 if (heap->marking()->TransferMark(elms->address(), | 271 if (heap->marking()->TransferMark(elms->address(), |
| 272 elms->address() + size_delta)) { | 272 elms->address() + size_delta)) { |
| 273 MemoryChunk::IncrementLiveBytesFromMutator(elms->address(), -size_delta); | 273 MemoryChunk::IncrementLiveBytesFromMutator(elms->address(), -size_delta); |
| 274 } | 274 } |
| 275 | 275 |
| 276 FixedArrayBase* new_elms = FixedArrayBase::cast(HeapObject::FromAddress( |
| 277 elms->address() + size_delta)); |
| 276 HeapProfiler* profiler = heap->isolate()->heap_profiler(); | 278 HeapProfiler* profiler = heap->isolate()->heap_profiler(); |
| 277 if (profiler->is_profiling()) { | 279 if (profiler->is_profiling()) { |
| 278 profiler->ObjectMoveEvent(elms->address(), | 280 profiler->ObjectMoveEvent(elms->address(), |
| 279 elms->address() + size_delta, | 281 new_elms->address(), |
| 280 elms->Size()); | 282 new_elms->Size()); |
| 281 } | 283 } |
| 282 return FixedArrayBase::cast(HeapObject::FromAddress( | 284 return new_elms; |
| 283 elms->address() + to_trim * entry_size)); | |
| 284 } | 285 } |
| 285 | 286 |
| 286 | 287 |
| 287 static bool ArrayPrototypeHasNoElements(Heap* heap, | 288 static bool ArrayPrototypeHasNoElements(Heap* heap, |
| 288 Context* native_context, | 289 Context* native_context, |
| 289 JSObject* array_proto) { | 290 JSObject* array_proto) { |
| 290 // This method depends on non writability of Object and Array prototype | 291 // This method depends on non writability of Object and Array prototype |
| 291 // fields. | 292 // fields. |
| 292 if (array_proto->elements() != heap->empty_fixed_array()) return false; | 293 if (array_proto->elements() != heap->empty_fixed_array()) return false; |
| 293 // Object.prototype | 294 // Object.prototype |
| (...skipping 1521 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1815 } | 1816 } |
| 1816 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) | 1817 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) |
| 1817 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) | 1818 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) |
| 1818 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H) | 1819 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H) |
| 1819 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) | 1820 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) |
| 1820 #undef DEFINE_BUILTIN_ACCESSOR_C | 1821 #undef DEFINE_BUILTIN_ACCESSOR_C |
| 1821 #undef DEFINE_BUILTIN_ACCESSOR_A | 1822 #undef DEFINE_BUILTIN_ACCESSOR_A |
| 1822 | 1823 |
| 1823 | 1824 |
| 1824 } } // namespace v8::internal | 1825 } } // namespace v8::internal |
| OLD | NEW |