Home | History | Annotate | Download | only in mips64

Lines Matching refs:branch_id

1515 Mips64Assembler::Branch* Mips64Assembler::GetBranch(uint32_t branch_id) {
1516 CHECK_LT(branch_id, branches_.size());
1517 return &branches_[branch_id];
1520 const Mips64Assembler::Branch* Mips64Assembler::GetBranch(uint32_t branch_id) const {
1521 CHECK_LT(branch_id, branches_.size());
1522 return &branches_[branch_id];
1532 uint32_t branch_id = label->Position();
1533 Branch* branch = GetBranch(branch_id);
1549 uint32_t branch_id = label->prev_branch_id_plus_one_ - 1;
1550 const Branch* branch = GetBranch(branch_id);
1561 uint32_t branch_id = label->prev_branch_id_plus_one_ - 1;
1562 const Branch* branch = GetBranch(branch_id);
1601 uint32_t branch_id = branches_.size() - 1;
1602 label->LinkTo(branch_id);