Searched refs:Run (Results 1 - 25 of 71) sorted by relevance

123

/art/compiler/optimizing/
H A Doptimization.cc34 checker.Run();
41 checker.Run();
H A Dboolean_simplifier.h68 void Run() OVERRIDE;
H A Dbounds_check_elimination.h29 void Run() OVERRIDE;
H A Dconstant_folding.h38 void Run() OVERRIDE;
H A Dgvn.h32 void Run() OVERRIDE;
H A Dinstruction_simplifier.h38 void Run() OVERRIDE;
H A Dlicm.h32 void Run() OVERRIDE;
H A Dssa_phi_elimination.h35 void Run() OVERRIDE;
62 void Run() OVERRIDE;
H A Ddead_code_elimination.h37 void Run() OVERRIDE;
H A Dgraph_checker_test.cc54 graph_checker.Run();
68 ssa_checker.Run();
116 graph_checker.Run();
122 graph_checker.Run();
134 graph_checker.Run();
144 graph_checker.Run();
H A Doptimization.h45 virtual void Run() = 0;
H A Dprepare_for_register_allocation.h33 void Run();
H A Dprimitive_type_propagation.h30 void Run();
H A Dinliner.h45 void Run() OVERRIDE;
H A Dside_effects_analysis.h37 void Run();
H A Dgvn_test.cc69 side_effects.Run();
70 GVNOptimization(graph, side_effects).Run();
123 side_effects.Run();
124 GVNOptimization(graph, side_effects).Run();
194 side_effects.Run();
195 GVNOptimization(graph, side_effects).Run();
209 side_effects.Run();
210 GVNOptimization(graph, side_effects).Run();
273 side_effects.Run();
288 side_effects.Run();
[all...]
H A Ddead_code_elimination_test.cc47 HDeadCodeElimination(graph).Run();
49 ssa_checker.Run();
H A Dgraph_checker.h37 virtual void Run() { VisitInsertionOrder(); } function in class:art::GraphChecker
103 void Run() OVERRIDE {
/art/runtime/gc/allocator/
H A Drosalloc.cc49 RosAlloc::Run* RosAlloc::dedicated_full_run_ =
50 reinterpret_cast<RosAlloc::Run*>(dedicated_full_run_storage_);
499 Run* run = nullptr;
522 run = reinterpret_cast<Run*>(base_ + pm_idx * kPageSize);
544 RosAlloc::Run* RosAlloc::AllocRun(Thread* self, size_t idx) {
545 RosAlloc::Run* new_run = nullptr;
548 new_run = reinterpret_cast<Run*>(AllocPages(self, numOfPages[idx], kPageMapRun));
579 RosAlloc::Run* RosAlloc::RefillRun(Thread* self, size_t idx) {
585 Run* non_full_run = *it;
596 Run* current_ru
[all...]
H A Drosalloc-inl.h55 inline bool RosAlloc::Run::IsFull() {
77 Run* thread_local_run = reinterpret_cast<Run*>(self->GetRosAllocRun(idx));
97 Run* thread_local_run = reinterpret_cast<Run*>(self->GetRosAllocRun(idx));
122 inline void* RosAlloc::Run::AllocSlot() {
146 LOG(INFO) << "RosAlloc::Run::AllocSlot() : 0x" << std::hex
H A Drosalloc.h157 class Run { class in class:art::gc::allocator::RosAlloc
182 Run temp;
267 // TODO: DISALLOW_COPY_AND_ASSIGN(Run);
403 size_t operator()(const RosAlloc::Run* r) const {
409 bool operator()(const RosAlloc::Run* r1, const RosAlloc::Run* r2) const {
450 AllocationTrackingSet<Run*, kAllocatorTagRosAlloc> non_full_runs_[kNumOfSizeBrackets];
453 std::unordered_set<Run*, hash_run, eq_run, TrackingAllocator<Run*, kAllocatorTagRosAlloc>>
459 static Run* dedicated_full_run
[all...]
/art/runtime/
H A Dsignal_catcher.h44 static void* Run(void* arg);
H A Dthread_pool.h34 virtual void Run(Thread* self) = 0;
39 // Called after Closure::Run has been called.
65 virtual void Run();
176 virtual void Run();
H A Dthread_pool.cc49 void ThreadPoolWorker::Run() { function in class:art::ThreadPoolWorker
54 task->Run(self);
64 worker->Run();
184 task->Run(self);
208 void WorkStealingWorker::Run() { function in class:art::WorkStealingWorker
222 stealing_task->Run(self);
/art/runtime/gc/
H A Dtask_processor_test.cc36 virtual void Run(Thread* self) OVERRIDE {
55 virtual void Run(Thread* self) OVERRIDE {
108 virtual void Run(Thread* thread) OVERRIDE {

Completed in 149 milliseconds

123