Searched refs:Run (Results 26 - 50 of 87) sorted by relevance

1234

/art/runtime/
H A Dthread_pool_test.cc31 void Run(Thread* self) { function in class:art::CountTask
108 void Run(Thread* self) { function in class:art::TreeTask
H A Dthread_pool.cc74 void ThreadPoolWorker::Run() { function in class:art::ThreadPoolWorker
79 task->Run(self);
89 worker->Run();
215 task->Run(self);
H A Dsignal_catcher.cc75 CHECK_PTHREAD_CALL(pthread_create, (&pthread_, nullptr, &Run, this), "signal catcher thread");
181 void* SignalCatcher::Run(void* arg) { function in class:art::SignalCatcher
H A Dmonitor_test.cc113 void Run(Thread* self) { function in class:art::CreateTask
187 void Run(Thread* self) { function in class:art::UseTask
225 void Run(Thread* self) { function in class:art::InterruptTask
267 void Run(Thread* self) { function in class:art::WatchdogTask
H A Dthread_list.cc192 void Run(Thread* thread) OVERRIDE {
317 // Run the checkpoint on ourself while we wait for threads to suspend.
318 checkpoint_function->Run(self);
320 // Run the checkpoint on the suspended threads.
343 checkpoint_function->Run(thread);
405 // Run the flip callback for the collector.
407 flip_callback->Run(self);
439 // Run the closure on the other threads and let them resume.
445 flip_func->Run(thread);
448 // Run i
[all...]
/art/runtime/gc/allocator/
H A Drosalloc.h350 class Run { class in class:art::gc::allocator::RosAlloc
368 return sizeof(Run);
488 // TODO: DISALLOW_COPY_AND_ASSIGN(Run);
636 size_t operator()(const RosAlloc::Run* r) const {
642 bool operator()(const RosAlloc::Run* r1, const RosAlloc::Run* r2) const {
712 AllocationTrackingSet<Run*, kAllocatorTagRosAlloc> non_full_runs_[kNumOfSizeBrackets];
715 std::unordered_set<Run*, hash_run, eq_run, TrackingAllocator<Run*, kAllocatorTagRosAlloc>>
721 static Run* dedicated_full_run
[all...]
/art/compiler/optimizing/
H A Ddead_code_elimination.cc183 void HDeadCodeElimination::Run() { function in class:art::HDeadCodeElimination
185 SsaRedundantPhiElimination(graph_).Run();
H A Ddex_cache_array_fixups_arm.cc100 void DexCacheArrayFixups::Run() { function in class:art::arm::DexCacheArrayFixups
H A Dinstruction_simplifier_arm64.h91 void Run() OVERRIDE {
H A Dreference_type_propagation.h43 void Run() OVERRIDE;
H A Dside_effects_analysis.cc21 void SideEffectsAnalysis::Run() { function in class:art::SideEffectsAnalysis
H A Dgraph_checker.h41 void Run() { function in class:art::GraphChecker
H A Dgvn.cc363 void Run();
408 void GlobalValueNumberer::Run() { function in class:art::GlobalValueNumberer
568 void GVNOptimization::Run() { function in class:art::GVNOptimization
570 gvn.Run();
H A Dlicm_test.cc81 side_effects.Run();
82 LICM(graph_, side_effects, nullptr).Run();
H A Dssa_phi_elimination.cc25 void SsaDeadPhiElimination::Run() { function in class:art::SsaDeadPhiElimination
121 void SsaRedundantPhiElimination::Run() { function in class:art::SsaRedundantPhiElimination
H A Dconstant_folding_test.cc68 HConstantFolding(graph_).Run();
70 graph_checker_cf.Run();
80 HDeadCodeElimination(graph_).Run();
82 graph_checker_dce.Run();
H A Dinliner.h56 void Run() OVERRIDE;
79 // Run simple optimizations on `callee_graph`.
H A Dlicm.cc80 void LICM::Run() { function in class:art::LICM
H A Dselect_generator.cc75 void HSelectGenerator::Run() { function in class:art::HSelectGenerator
H A Dinliner.cc57 void HInliner::Run() { function in class:art::HInliner
411 // Run type propagation to get the guard typed, and eventually propagate the
417 rtp_fixup.Run();
541 // Run type propagation to get the guards typed.
546 rtp_fixup.Run();
731 // Run type propagation to get the guard typed.
736 rtp_fixup.Run();
1295 optimization->Run();
1310 inliner.Run();
1352 /* is_first_run */ false).Run();
[all...]
H A Dcodegen_test.cc187 static void Run(const InternalCodeAllocator& allocator, function in namespace:art
210 graph_checker.Run();
220 PrepareForRegisterAllocation(graph).Run();
227 Run(allocator, *codegen, has_result, expected);
670 PrepareForRegisterAllocation(graph).Run();
/art/runtime/gc/
H A Dtask_processor.cc124 task->Run(self);
H A Dreference_processor.cc226 virtual void Run(Thread* thread) { function in class:art::gc::ClearedReferenceTask
256 task.Run(self);
/art/runtime/gc/collector/
H A Dgarbage_collector.h144 // Run the garbage collector.
145 void Run(GcCause gc_cause, bool clear_soft_references) REQUIRES(!pause_histogram_lock_);
203 // Run all of the GC phases.
/art/runtime/jit/
H A Dprofile_saver.h76 void Run() REQUIRES(!Locks::profiler_lock_, !wait_lock_);

Completed in 369 milliseconds

1234