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 2639 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2650 g->Call(ctx, global, 0, nullptr).ToLocalChecked(); | 2650 g->Call(ctx, global, 0, nullptr).ToLocalChecked(); |
2651 } | 2651 } |
2652 | 2652 |
2653 CcTest::heap()->incremental_marking()->set_should_hurry(true); | 2653 CcTest::heap()->incremental_marking()->set_should_hurry(true); |
2654 CcTest::CollectGarbage(OLD_SPACE); | 2654 CcTest::CollectGarbage(OLD_SPACE); |
2655 } | 2655 } |
2656 | 2656 |
2657 namespace { | 2657 namespace { |
2658 | 2658 |
2659 int GetProfilerTicks(SharedFunctionInfo* shared) { | 2659 int GetProfilerTicks(SharedFunctionInfo* shared) { |
2660 return FLAG_ignition ? shared->profiler_ticks() | 2660 return FLAG_ignition || FLAG_turbo ? shared->profiler_ticks() |
2661 : shared->code()->profiler_ticks(); | 2661 : shared->code()->profiler_ticks(); |
2662 } | 2662 } |
2663 | 2663 |
2664 } // namespace | 2664 } // namespace |
2665 | 2665 |
2666 TEST(ResetSharedFunctionInfoCountersDuringIncrementalMarking) { | 2666 TEST(ResetSharedFunctionInfoCountersDuringIncrementalMarking) { |
2667 i::FLAG_stress_compaction = false; | 2667 i::FLAG_stress_compaction = false; |
2668 i::FLAG_allow_natives_syntax = true; | 2668 i::FLAG_allow_natives_syntax = true; |
2669 #ifdef VERIFY_HEAP | 2669 #ifdef VERIFY_HEAP |
2670 i::FLAG_verify_heap = true; | 2670 i::FLAG_verify_heap = true; |
2671 #endif | 2671 #endif |
(...skipping 4397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
7069 SlotSet::FREE_EMPTY_BUCKETS); | 7069 SlotSet::FREE_EMPTY_BUCKETS); |
7070 slots[chunk->area_end() - kPointerSize] = false; | 7070 slots[chunk->area_end() - kPointerSize] = false; |
7071 RememberedSet<OLD_TO_NEW>::Iterate(chunk, [&slots](Address addr) { | 7071 RememberedSet<OLD_TO_NEW>::Iterate(chunk, [&slots](Address addr) { |
7072 CHECK(slots[addr]); | 7072 CHECK(slots[addr]); |
7073 return KEEP_SLOT; | 7073 return KEEP_SLOT; |
7074 }); | 7074 }); |
7075 } | 7075 } |
7076 | 7076 |
7077 } // namespace internal | 7077 } // namespace internal |
7078 } // namespace v8 | 7078 } // namespace v8 |
OLD | NEW |