Lines Matching refs:set_control
56 void BasicBlock::set_control(Control control) { in set_control() function in v8::internal::compiler::BasicBlock
198 block->set_control(BasicBlock::kGoto); in AddGoto()
207 block->set_control(BasicBlock::kCall); in AddCall()
218 block->set_control(BasicBlock::kBranch); in AddBranch()
229 block->set_control(BasicBlock::kSwitch); in AddSwitch()
239 block->set_control(BasicBlock::kTailCall); in AddTailCall()
247 block->set_control(BasicBlock::kReturn); in AddReturn()
255 block->set_control(BasicBlock::kDeoptimize); in AddDeoptimize()
263 block->set_control(BasicBlock::kThrow); in AddThrow()
273 end->set_control(block->control()); in InsertBranch()
274 block->set_control(BasicBlock::kBranch); in InsertBranch()
289 end->set_control(block->control()); in InsertSwitch()
290 block->set_control(BasicBlock::kSwitch); in InsertSwitch()