Home
last modified time | relevance | path

Searched refs:CollectionSet (Results 1 – 7 of 7) sorted by relevance

/arkcompiler/runtime_core/static_core/runtime/mem/gc/g1/
Dg1-gc.h203 void RunMixedGC(panda::GCTask &task, const CollectionSet &collectionSet);
211 …void RunPhasesForRegions([[maybe_unused]] panda::GCTask &task, const CollectionSet &collectibleReg…
218 void RunGC(GCTask &task, const CollectionSet &collectibleRegions);
242 MemRange MixedMarkAndCacheRefs(const GCTask &task, const CollectionSet &collectibleRegions);
271 bool CollectAndMove(const CollectionSet &collectionSet);
278 …[[nodiscard]] HeapVerifierIntoGC<LanguageConfig> CollectVerificationInfo(const CollectionSet &coll…
288 …ctAndMove(HeapVerifierIntoGC<LanguageConfig> &&collectVerifier, const CollectionSet &collectionSet…
338 CollectionSet GetCollectibleRegions(panda::GCTask const &task, bool isMixed);
339 void AddOldRegionsMaxAllowed(CollectionSet &collectionSet);
340 void AddOldRegionsAccordingPauseTimeGoal(CollectionSet &collectionSet);
[all …]
Dcollection_set.h26 class CollectionSet {
28 CollectionSet() in CollectionSet() function
35 explicit CollectionSet(const Container &set) : collectionSet_(set.begin(), set.end()) in CollectionSet() function
41 explicit CollectionSet(PandaVector<Region *> &&youngRegions) : collectionSet_(youngRegions) in CollectionSet() function
47 ~CollectionSet() = default;
136 DEFAULT_COPY_SEMANTIC(CollectionSet);
137 DEFAULT_MOVE_SEMANTIC(CollectionSet);
Dg1-gc.cpp611 void G1GC<LanguageConfig>::UpdateCollectionSet(const CollectionSet &collectibleRegions) in UpdateCollectionSet()
622 void G1GC<LanguageConfig>::RunPhasesForRegions(panda::GCTask &task, const CollectionSet &collectibl… in RunPhasesForRegions()
724 CollectionSet collectionSet = GetFullCollectionSet(); in RunFullGC()
730 CollectionSet cs; in RunFullGC()
754 CollectionSet cs(collectionSet.Young()); in RunFullGC()
782 void G1GC<LanguageConfig>::RunMixedGC(panda::GCTask &task, const CollectionSet &collectionSet) in RunMixedGC()
1028 void G1GC<LanguageConfig>::RunGC(GCTask &task, const CollectionSet &collectibleRegions) in RunGC()
1051 MemRange G1GC<LanguageConfig>::MixedMarkAndCacheRefs(const GCTask &task, const CollectionSet &colle… in MixedMarkAndCacheRefs()
1129 …C<LanguageConfig> G1GC<LanguageConfig>::CollectVerificationInfo(const CollectionSet &collectionSet) in CollectVerificationInfo()
1145 const CollectionSet &collectionSet) in VerifyCollectAndMove()
[all …]
Dg1_analytics.h29 void ReportCollectionEnd(uint64_t endTime, const CollectionSet &collectionSet);
Dg1_analytics.cpp102 void G1Analytics::ReportCollectionEnd(uint64_t endTime, const CollectionSet &collectionSet) in ReportCollectionEnd()
/arkcompiler/runtime_core/static_core/runtime/tests/
Dcollection_set_test.cpp64 CollectionSet cs(std::move(youngRegions)); in TEST_F()
84 CollectionSet cs(std::move(youngRegions)); in TEST_F()
107 CollectionSet cs(std::move(youngRegions)); in TEST_F()
137 CollectionSet cs(std::move(youngRegions)); in TEST_F()
Dg1_analytics_test.cpp47 CollectionSet CreateCollectionSet(size_t edenLength, size_t oldLength = 0) in CreateCollectionSet()
55 auto cs = CollectionSet(vector); in CreateCollectionSet()