Searched refs:CollectionSet (Results 1 – 7 of 7) sorted by relevance
| /arkcompiler/runtime_core/static_core/runtime/mem/gc/g1/ |
| D | g1-gc.h | 203 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 …]
|
| D | collection_set.h | 26 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);
|
| D | g1-gc.cpp | 611 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 …]
|
| D | g1_analytics.h | 29 void ReportCollectionEnd(uint64_t endTime, const CollectionSet &collectionSet);
|
| D | g1_analytics.cpp | 102 void G1Analytics::ReportCollectionEnd(uint64_t endTime, const CollectionSet &collectionSet) in ReportCollectionEnd()
|
| /arkcompiler/runtime_core/static_core/runtime/tests/ |
| D | collection_set_test.cpp | 64 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()
|
| D | g1_analytics_test.cpp | 47 CollectionSet CreateCollectionSet(size_t edenLength, size_t oldLength = 0) in CreateCollectionSet() 55 auto cs = CollectionSet(vector); in CreateCollectionSet()
|