Home
last modified time | relevance | path

Searched refs:AddGoto (Results 1 – 5 of 5) sorted by relevance

/external/v8/src/compiler/
Dgraph-assembler.cc33 void AddGoto(BasicBlock* to);
34 void AddGoto(BasicBlock* from, BasicBlock* to);
246 void GraphAssembler::BasicBlockUpdater::AddGoto(BasicBlock* to) { in AddGoto() function in v8::internal::compiler::GraphAssembler::BasicBlockUpdater
248 AddGoto(current_block_, to); in AddGoto()
251 void GraphAssembler::BasicBlockUpdater::AddGoto(BasicBlock* from, in AddGoto() function in v8::internal::compiler::GraphAssembler::BasicBlockUpdater
263 schedule_->AddGoto(from, new_block); in AddGoto()
267 schedule_->AddGoto(from, to); in AddGoto()
869 block_updater_->AddGoto(if_true_target, if_true_block); in RecordBranchInBlockUpdater()
872 block_updater_->AddGoto(if_false_target, if_false_block); in RecordBranchInBlockUpdater()
888 block_updater_->AddGoto(block); in GotoBasicBlock()
[all …]
Draw-machine-assembler.cc209 schedule->AddGoto(new_true_block, true_block); in OptimizeControlFlow()
210 schedule->AddGoto(new_false_block, false_block); in OptimizeControlFlow()
537 schedule()->AddGoto(CurrentBlock(), Use(label)); in Goto()
553 schedule()->AddGoto(true_block, Use(true_val)); in Branch()
556 schedule()->AddGoto(false_block, Use(false_val)); in Branch()
583 schedule()->AddGoto(case_block, Use(case_labels[index])); in Switch()
589 schedule()->AddGoto(default_block, Use(default_label)); in Switch()
Dschedule.h232 void AddGoto(BasicBlock* block, BasicBlock* succ); in NON_EXPORTED_BASE()
Dschedule.cc220 void Schedule::AddGoto(BasicBlock* block, BasicBlock* succ) { in AddGoto() function in v8::internal::compiler::Schedule
Dscheduler.cc580 schedule_->AddGoto(predecessor_block, block); in ConnectMerge()