Searched refs:max_short_distance (Results 1 - 4 of 4) sorted by relevance

/art/compiler/utils/mips/
H A Dassembler_mips.h730 // max_short_distance caps the maximum distance between location_ and target_
732 // max_short_distance = 0 forces all short branches to become long.
734 uint32_t PromoteIfNeeded(uint32_t max_short_distance = std::numeric_limits<uint32_t>::max());
H A Dassembler_mips.cc1805 uint32_t MipsAssembler::Branch::PromoteIfNeeded(uint32_t max_short_distance) { argument
1821 if (UNLIKELY(max_short_distance != std::numeric_limits<uint32_t>::max())) {
1824 if (distance >= max_short_distance) {
/art/compiler/utils/mips64/
H A Dassembler_mips64.h642 // max_short_distance caps the maximum distance between location_ and target_
644 // max_short_distance = 0 forces all short branches to become long.
646 uint32_t PromoteIfNeeded(uint32_t max_short_distance = std::numeric_limits<uint32_t>::max());
H A Dassembler_mips64.cc1470 uint32_t Mips64Assembler::Branch::PromoteIfNeeded(uint32_t max_short_distance) { argument
1486 if (UNLIKELY(max_short_distance != std::numeric_limits<uint32_t>::max())) {
1489 if (distance >= max_short_distance) {

Completed in 814 milliseconds