OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "src/frames.h" | 5 #include "src/frames.h" |
6 | 6 |
7 #include <sstream> | 7 #include <sstream> |
8 | 8 |
9 #include "src/v8.h" | 9 #include "src/v8.h" |
10 | 10 |
(...skipping 1428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1439 // Check if the inner pointer points into a large object chunk. | 1439 // Check if the inner pointer points into a large object chunk. |
1440 LargePage* large_page = heap->lo_space()->FindPage(inner_pointer); | 1440 LargePage* large_page = heap->lo_space()->FindPage(inner_pointer); |
1441 if (large_page != NULL) { | 1441 if (large_page != NULL) { |
1442 return GcSafeCastToCode(large_page->GetObject(), inner_pointer); | 1442 return GcSafeCastToCode(large_page->GetObject(), inner_pointer); |
1443 } | 1443 } |
1444 | 1444 |
1445 // Iterate through the page until we reach the end or find an object starting | 1445 // Iterate through the page until we reach the end or find an object starting |
1446 // after the inner pointer. | 1446 // after the inner pointer. |
1447 Page* page = Page::FromAddress(inner_pointer); | 1447 Page* page = Page::FromAddress(inner_pointer); |
1448 | 1448 |
| 1449 DCHECK_EQ(page->owner(), heap->code_space()); |
| 1450 heap->mark_compact_collector()->SweepOrWaitUntilSweepingCompleted(page); |
| 1451 |
1449 Address addr = page->skip_list()->StartFor(inner_pointer); | 1452 Address addr = page->skip_list()->StartFor(inner_pointer); |
1450 | 1453 |
1451 Address top = heap->code_space()->top(); | 1454 Address top = heap->code_space()->top(); |
1452 Address limit = heap->code_space()->limit(); | 1455 Address limit = heap->code_space()->limit(); |
1453 | 1456 |
1454 while (true) { | 1457 while (true) { |
1455 if (addr == top && addr != limit) { | 1458 if (addr == top && addr != limit) { |
1456 addr = limit; | 1459 addr = limit; |
1457 continue; | 1460 continue; |
1458 } | 1461 } |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1551 for (StackFrameIterator it(isolate); !it.done(); it.Advance()) { | 1554 for (StackFrameIterator it(isolate); !it.done(); it.Advance()) { |
1552 StackFrame* frame = AllocateFrameCopy(it.frame(), zone); | 1555 StackFrame* frame = AllocateFrameCopy(it.frame(), zone); |
1553 list.Add(frame, zone); | 1556 list.Add(frame, zone); |
1554 } | 1557 } |
1555 return list.ToVector(); | 1558 return list.ToVector(); |
1556 } | 1559 } |
1557 | 1560 |
1558 | 1561 |
1559 } // namespace internal | 1562 } // namespace internal |
1560 } // namespace v8 | 1563 } // namespace v8 |
OLD | NEW |