Home
last modified time | relevance | path

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

/external/v8/src/mips64/
Dmacro-assembler-mips64.cc1638 int shift_cnt = base::bits::CountTrailingZeros64(value); in InstrCountForLi64Bit() local
1640 int64_t tmp = value >> shift_cnt; in InstrCountForLi64Bit()
1650 shift_cnt = 16 + base::bits::CountTrailingZeros64(value >> 16); in InstrCountForLi64Bit()
1651 tmp = value >> shift_cnt; in InstrCountForLi64Bit()
1763 int shift_cnt = 64 - base::bits::CountTrailingZeros64(j.immediate() + 1); in li_optimized() local
1765 if (shift_cnt < 32) { in li_optimized()
1766 dsrl(rd, rd, shift_cnt); in li_optimized()
1768 dsrl32(rd, rd, shift_cnt & 31); in li_optimized()
1771 int shift_cnt = base::bits::CountTrailingZeros64(j.immediate()); in li_optimized() local
1773 int64_t tmp = j.immediate() >> shift_cnt; in li_optimized()
[all …]