Lines Matching refs:set_control
59 void BasicBlock::set_control(Control control) { control_ = control; } in set_control() function in v8::internal::compiler::BasicBlock
222 block->set_control(BasicBlock::kGoto); in AddGoto()
248 block->set_control(BasicBlock::kCall); in AddCall()
258 block->set_control(BasicBlock::kBranch); in AddBranch()
268 block->set_control(BasicBlock::kSwitch); in AddSwitch()
277 block->set_control(BasicBlock::kTailCall); in AddTailCall()
284 block->set_control(BasicBlock::kReturn); in AddReturn()
291 block->set_control(BasicBlock::kDeoptimize); in AddDeoptimize()
298 block->set_control(BasicBlock::kThrow); in AddThrow()
307 end->set_control(block->control()); in InsertBranch()
308 block->set_control(BasicBlock::kBranch); in InsertBranch()
322 end->set_control(block->control()); in InsertSwitch()
323 block->set_control(BasicBlock::kSwitch); in InsertSwitch()