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

Side by Side Diff: test/cctest/heap/test-heap.cc

Issue 2427953002: [compiler] Ship Ignition for all TurboFan code. (Closed)
Patch Set: Fix better. Created 4 years, 2 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
« no previous file with comments | « test/cctest/cctest.status ('k') | test/cctest/test-api.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 2639 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
OLDNEW
« no previous file with comments | « test/cctest/cctest.status ('k') | test/cctest/test-api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698