Lines Matching refs:CompilerThread

193 GrowableArray<CompilerThread*>* CompileBroker::_method_threads = NULL;
235 CompilerThread* thread = CompilerThread::current();
242 CompilerThread* thread = CompilerThread::current();
871 CompilerThread* CompileBroker::make_compiler_thread(const char* name, CompileQueue* queue, CompilerCounters* counters, TRAPS) {
872 CompilerThread* compiler_thread = NULL;
894 compiler_thread = new CompilerThread(queue, counters);
895 // At this point the new CompilerThread data-races with this startup
899 // newly created CompilerThread runs at.
916 // The os-priority is set in the CompilerThread startup code itself
968 new (ResourceObj::C_HEAP, mtCompiler) GrowableArray<CompilerThread*>(compiler_count, true);
973 sprintf(name_buffer, "C2 CompilerThread%d", i);
975 CompilerThread* new_thread = make_compiler_thread(name_buffer, _c2_method_queue, counters, CHECK);
981 sprintf(name_buffer, "C1 CompilerThread%d", i);
983 CompilerThread* new_thread = make_compiler_thread(name_buffer, _c1_method_queue, counters, CHECK);
1528 // The main loop run by a CompilerThread.
1530 CompilerThread* thread = CompilerThread::current();
1582 CompilerCounters* counters = ((CompilerThread*)thread)->counters();
1629 CompilerThread* thread = CompilerThread::current();
1710 CompilerThread* thread = CompilerThread::current();
1920 void CompileBroker::set_last_compile(CompilerThread* thread, methodHandle method, bool is_osr, int comp_level) {
2020 void CompileBroker::collect_statistics(CompilerThread* thread, elapsedTimer time, CompileTask* task) {