Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dlicm_test.cc39 exit_(nullptr), in LICMTest()
56 exit_ = new (GetAllocator()) HBasicBlock(graph_); in BuildLoop()
63 graph_->AddBlock(exit_); in BuildLoop()
66 graph_->SetExitBlock(exit_); in BuildLoop()
74 return_->AddSuccessor(exit_); in BuildLoop()
88 exit_->AddInstruction(new (GetAllocator()) HExit()); in BuildLoop()
108 HBasicBlock* exit_; member in art::LICMTest
Dinduction_var_analysis_test.cc37 exit_(nullptr), in InductionVarAnalysisTest()
86 exit_ = new (GetAllocator()) HBasicBlock(graph_); in BuildLoopNest()
87 graph_->AddBlock(exit_); in BuildLoopNest()
90 return_->AddSuccessor(exit_); in BuildLoopNest()
92 graph_->SetExitBlock(exit_); in BuildLoopNest()
106 exit_->AddInstruction(new (GetAllocator()) HExit()); in BuildLoopNest()
210 HBasicBlock* exit_; member in art::InductionVarAnalysisTest
253 ASSERT_EQ(exit_->GetLoopInformation(), nullptr); in TEST_F()
/art/runtime/
Druntime.cc280 exit_(nullptr), in Runtime()
880 if (exit_ != nullptr) { in CallExitHook()
882 exit_(status); in CallExitHook()
1647 exit_ = runtime_options.GetOrDefault(Opt::HookExit); in Init()
Druntime.h1321 void (*exit_)(jint status); variable