Home
last modified time | relevance | path

Searched refs:exit_ (Results 1 – 4 of 4) sorted by relevance

/art/compiler/optimizing/
Dlicm_test.cc38 exit_(nullptr), in LICMTest()
55 exit_ = new (GetAllocator()) HBasicBlock(graph_); in BuildLoop()
62 graph_->AddBlock(exit_); in BuildLoop()
65 graph_->SetExitBlock(exit_); in BuildLoop()
73 return_->AddSuccessor(exit_); in BuildLoop()
87 exit_->AddInstruction(new (GetAllocator()) HExit()); in BuildLoop()
107 HBasicBlock* exit_; member in art::LICMTest
Dinduction_var_analysis_test.cc36 exit_(nullptr), in InductionVarAnalysisTest()
85 exit_ = new (GetAllocator()) HBasicBlock(graph_); in BuildLoopNest()
86 graph_->AddBlock(exit_); in BuildLoopNest()
89 return_->AddSuccessor(exit_); in BuildLoopNest()
91 graph_->SetExitBlock(exit_); in BuildLoopNest()
105 exit_->AddInstruction(new (GetAllocator()) HExit()); in BuildLoopNest()
209 HBasicBlock* exit_; member in art::InductionVarAnalysisTest
252 ASSERT_EQ(exit_->GetLoopInformation(), nullptr); in TEST_F()
/art/runtime/
Druntime.cc260 exit_(nullptr), in Runtime()
696 if (exit_ != nullptr) { in CallExitHook()
698 exit_(status); in CallExitHook()
1292 exit_ = runtime_options.GetOrDefault(Opt::HookExit); in Init()
Druntime.h1141 void (*exit_)(jint status); variable