Home
last modified time | relevance | path

Searched defs:gc (Results 1 – 25 of 28) sorted by relevance

12

/arkcompiler/runtime_core/runtime/mem/gc/
Dgc_scope.cpp22 GCScope<TRACE_TIMING>::GCScope(std::string_view name, GC *gc) in GCScope()
27 GCScope<TRACE_TIMING_PHASE>::GCScope(std::string_view name, GC *gc, GCPhase phase) in GCScope()
34 GCScope<TIMING_PHASE>::GCScope(std::string_view name, GC *gc, GCPhase phase) in GCScope()
39 GCScope<TRACE_PHASE>::GCScope(std::string_view name, GC *gc, GCPhase phase) in GCScope()
Dgc_marker.h32 explicit GCMarkerBase(GC *gc) : gc_(gc) {} in GCMarkerBase()
51 explicit GCMarker(GC *gc) : GCMarkerBase(gc) {} in GCMarker()
91 explicit GCMarker(GC *gc) : GCMarkerBase(gc) {} in GCMarker()
132 explicit DefaultGCMarker(GC *gc) : GCMarker<Marker, LANG_TYPE, HAS_VALUE_OBJECT_TYPES>(gc) {} in DefaultGCMarker()
364 explicit DefaultGCMarkerImpl(GC *gc) : Base(gc) {} in DefaultGCMarkerImpl()
Dgc_scoped_phase.cpp21 GCScopedPhase::GCScopedPhase(MemStatsType *mem_stats, GC *gc, GCPhase new_phase) : mem_stats_(mem_s… in GCScopedPhase()
Dgc_queue.h55 explicit GCQueueWithTime(GC *gc) : gc_(gc) {} in GCQueueWithTime()
Dgc_workers_thread_pool.cpp42 GCWorkersThreadPool::GCWorkersThreadPool(mem::InternalAllocatorPtr internal_allocator, GC *gc, size… in GCWorkersThreadPool()
Dgc_adaptive_stack.cpp22 GCAdaptiveStack::GCAdaptiveStack(GC *gc, size_t stack_size_limit, size_t new_task_stack_size_limit, in GCAdaptiveStack()
Dgc_trigger.cpp85 GC *gc = Thread::GetCurrent()->GetVM()->GetGC(); in ComputeNewTargetFootprint() local
126 auto gc = Runtime::GetCurrent()->GetPandaVM()->GetGC(); in IsGcTriggered() local
Dgc.cpp350 void GC::GCWorkerEntry(GC *gc, PandaVM *vm) in GCWorkerEntry()
435 void Run(mem::GC &gc) override in Run()
589 ConcurrentScope::ConcurrentScope(GC *gc, bool auto_start) in ConcurrentScope()
/arkcompiler/runtime_core/runtime/tests/
Dgc_log_test.cpp75 size_t GetGCCounter(GC *gc) in GetGCCounter()
85 GC *gc = runtime->GetPandaVM()->GetGC(); in CounterLogTest() local
110 GC *gc = runtime->GetPandaVM()->GetGC(); in FullLogTest() local
164 GC *gc = runtime->GetPandaVM()->GetGC(); in TEST_F() local
206 GC *gc = runtime->GetPandaVM()->GetGC(); in TEST_F() local
Dg1gc_test.cpp103 GC *gc = runtime->GetPandaVM()->GetGC(); in GetAllocator() local
196 GC *gc = runtime->GetPandaVM()->GetGC(); in TEST_F() local
233 GC *gc = runtime->GetPandaVM()->GetGC(); in TEST_F() local
264 GC *gc = runtime->GetPandaVM()->GetGC(); in TEST_F() local
328 auto *gc = runtime->GetPandaVM()->GetGC(); in TEST_F() local
450 GC *gc = runtime->GetPandaVM()->GetGC(); in TEST_F() local
520 GC *gc = runtime->GetPandaVM()->GetGC(); in TEST_F() local
553 GC *gc = runtime->GetPandaVM()->GetGC(); in TEST_F() local
602 GC *gc = runtime->GetPandaVM()->GetGC(); in TEST_F() local
699 GC *gc = runtime->GetPandaVM()->GetGC(); in TEST_F() local
[all …]
Dpygote_space_allocator_test_base.h62 auto gc = thread_->GetVM()->GetGC(); in TriggerGc() local
/arkcompiler/runtime_core/runtime/mem/gc/g1/
Dref_cache_builder.h31 RefCacheBuilder(G1GC<LanguageConfig> *gc, RefVector *refs, PandaVector<ObjectHeader *> *objects, in RefCacheBuilder()
Dg1-gc.h42 explicit G1GCMarker(GC *gc) in G1GCMarker()
Dupdate_remset_thread.cpp31 UpdateRemsetThread<LanguageConfig>::UpdateRemsetThread(GC *gc, PandaVM *vm, in UpdateRemsetThread()
/arkcompiler/runtime_core/runtime/
Dgc_task.cpp22 void GCTask::Run(mem::GC &gc) in Run()
Dthread.cpp79 mem::GC *gc = vm->GetGC(); in Thread() local
118 mem::GC *gc = GetVM()->GetGC(); in InitPreBuff() local
186 mem::GC *gc = panda_vm->GetGC(); in ManagedThread() local
238 mem::GC *gc = GetVM()->GetGC(); in InitBuffers() local
/arkcompiler/runtime_core/runtime/mem/gc/stw-gc/
Dstw-gc.h32 explicit StwGCMarker(GC *gc) : Base(gc) {} in StwGCMarker()
/arkcompiler/ets_frontend/es2panda/test/
Dtest262harness.js27 gc() { method
/arkcompiler/runtime_core/runtime/mem/gc/reference-processor/
Dempty_reference_processor.h33 void HandleReference([[maybe_unused]] GC *gc, [[maybe_unused]] GCMarkingStackType *objectsStack, in HandleReference()
/arkcompiler/runtime_core/runtime/mem/
Dmemory_manager.cpp62 …GC *gc = ctx.CreateGC(gc_type, heap_manager->GetObjectAllocator().AsObjectAllocator(), gc_settings… in Create() local
Dmemory_manager.h129 … explicit MemoryManager(InternalAllocatorPtr internal_allocator, HeapManager *heap_manager, GC *gc, in MemoryManager()
Dobject_helpers.cpp251 void GCDynamicObjectHelpers::RecordDynWeakReference(GC *gc, coretypes::TaggedType *value) in RecordDynWeakReference()
259 void GCDynamicObjectHelpers::HandleDynWeakReferences(GC *gc) in HandleDynWeakReferences()
/arkcompiler/runtime_core/runtime/mem/refstorage/
Dglobal_object_storage.cpp137 void GlobalObjectStorage::ClearUnmarkedWeakRefs(const GC *gc, const mem::GC::ReferenceClearPredicat… in ClearUnmarkedWeakRefs()
Dglobal_object_storage.h280 void ClearUnmarkedWeakRefs(const GC *gc, const mem::GC::ReferenceClearPredicateT &pred) in ClearUnmarkedWeakRefs()
/arkcompiler/runtime_core/runtime/core/
Dcore_vm.cpp195 mem::GC *gc = mm_->GetGC(); in HandleReferences() local

12