Home
last modified time | relevance | path

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

/art/runtime/native/
Dorg_apache_harmony_dalvik_ddmc_DdmVmInternal.cc137 uint16_t thread_count = 0; in DdmVmInternal_getThreadStats() local
138 thread_list->ForEach(ThreadCountCallback, &thread_count); in DdmVmInternal_getThreadStats()
142 JDWP::Append2BE(bytes, thread_count); in DdmVmInternal_getThreadStats()
/art/compiler/jit/
Djit_compiler.cc173 size_t thread_count = compiler_driver_->GetThreadCount(); in JitCompiler() local
180 DCHECK_EQ(thread_count, 1u) in JitCompiler()
191 DCHECK_LT(thread_count * inline_depth_limit, std::numeric_limits<uint16_t>::max()) in JitCompiler()
/art/runtime/gc/collector/
Dmark_sweep.cc859 size_t thread_count = GetThreadCount(paused); in ScanGrayObjects() local
861 if (kParallelCardScan && thread_count > 1) { in ScanGrayObjects()
872 const size_t mark_stack_tasks = GetHeap()->GetContinuousSpaces().size() * thread_count; in ScanGrayObjects()
890 const size_t card_delta = RoundUp(address_range / thread_count + 1, in ScanGrayObjects()
926 thread_pool->SetMaxActiveWorkers(thread_count - 1); in ScanGrayObjects()
1011 size_t thread_count = GetThreadCount(false); in RecursiveMark() local
1012 const bool parallel = kParallelRecursiveMark && thread_count > 1; in RecursiveMark()
1030 const size_t n = thread_count * 2; in RecursiveMark()
1044 thread_pool->SetMaxActiveWorkers(thread_count - 1); in RecursiveMark()
1369 void MarkSweep::ProcessMarkStackParallel(size_t thread_count) { in ProcessMarkStackParallel() argument
[all …]
Dmark_sweep.h294 void ProcessMarkStackParallel(size_t thread_count)
/art/runtime/
Dthread_pool.cc168 const size_t thread_count = GetThreadCount(); in GetTask() local
170 const size_t active_threads = thread_count - waiting_count_; in GetTask()
/art/compiler/driver/
Dcompiler_driver.h100 size_t thread_count,
570 size_t thread_count,
581 size_t thread_count,
592 size_t thread_count,
617 size_t thread_count,
Dcompiler_driver.cc368 size_t thread_count, in CompilerDriver() argument
392 parallel_thread_count_(thread_count), in CompilerDriver()
2181 size_t thread_count, in ResolveDexFile() argument
2195 context.ForAll(0, dex_file.NumTypeIds(), &visitor, thread_count); in ResolveDexFile()
2200 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count); in ResolveDexFile()
2315 size_t thread_count, in VerifyDexFile() argument
2325 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count); in VerifyDexFile()
2379 size_t thread_count, in SetVerifiedDexFile() argument
2386 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count); in SetVerifiedDexFile()
2708 size_t thread_count, in CompileDexFile() argument
[all …]