Home | History | Annotate | Download | only in mips

Lines Matching refs:branch_id

1850 MipsAssembler::Branch* MipsAssembler::GetBranch(uint32_t branch_id) {
1851 CHECK_LT(branch_id, branches_.size());
1852 return &branches_[branch_id];
1855 const MipsAssembler::Branch* MipsAssembler::GetBranch(uint32_t branch_id) const {
1856 CHECK_LT(branch_id, branches_.size());
1857 return &branches_[branch_id];
1867 uint32_t branch_id = label->Position();
1868 Branch* branch = GetBranch(branch_id);
1884 uint32_t branch_id = label->prev_branch_id_plus_one_ - 1;
1885 const Branch* branch = GetBranch(branch_id);
1896 uint32_t branch_id = label->prev_branch_id_plus_one_ - 1;
1897 const Branch* branch = GetBranch(branch_id);
1936 uint32_t branch_id = branches_.size() - 1;
1937 label->LinkTo(branch_id);