Lines Matching refs:branch_info_

6555 const Riscv64Assembler::Branch::BranchInfo Riscv64Assembler::Branch::branch_info_[] = {  member in art::riscv64::Riscv64Assembler::Branch
6597 if (offset_size > branch_info_[type].offset_size) { in InitShortOrLong()
6599 if (offset_size > branch_info_[type].offset_size) { in InitShortOrLong()
6612 if (offset_size > branch_info_[type].offset_size) { in InitShortOrLong()
6614 if (offset_size > branch_info_[type].offset_size) { in InitShortOrLong()
6616 if (offset_size > branch_info_[type].offset_size) { in InitShortOrLong()
6870 uint32_t Riscv64Assembler::Branch::GetLength() const { return branch_info_[type_].length; } in GetLength()
6872 uint32_t Riscv64Assembler::Branch::GetOldLength() const { return branch_info_[old_type_].length; } in GetOldLength()
6901 return branch_info_[type_].offset_size; in GetOffsetSize()
6951 type_ = needed_size <= branch_info_[kUncondBranch].offset_size ? kUncondBranch : in PromoteIfNeeded()
6962 if (needed_size <= branch_info_[kCondBranch].offset_size) { in PromoteIfNeeded()
6983 DCHECK_EQ(branch_info_[cond21Type].length - branch_info_[cond21Type].pc_offset, in PromoteIfNeeded()
6984 branch_info_[kCondBranch].length - branch_info_[kCondBranch].pc_offset); in PromoteIfNeeded()
6987 needed_size = GetOffsetSizeNeeded(location_ + branch_info_[cond21Type].pc_offset, target_); in PromoteIfNeeded()
6989 type_ = (needed_size <= branch_info_[cond21Type].offset_size) ? cond21Type : kLongCondBranch; in PromoteIfNeeded()
7023 DCHECK_GT(branch_info_[type_].length, branch_info_[old_type].length); in PromoteIfNeeded()
7024 return branch_info_[type_].length - branch_info_[old_type].length; in PromoteIfNeeded()
7028 return location_ + branch_info_[type_].pc_offset; in GetOffsetLocation()