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

/freebsd-13-stable/contrib/llvm-project/lld/ELF/Arch/
H A DARM.cpp448 unsigned rotAmt = tz & ~1;
451 if ((rotr32(imm, rotAmt) & ~255U) == 0)
452 return (32 - rotAmt) & 31; // HW rotates right, not left.
466 return (32 - rotAmt) & 31; // HW rotates right, not left.
645 uint32_t rotAmt = getSOImmValRotate(val); variable
647 if (rotr32(~255U, rotAmt) & val)
650 val = rotl32(val, rotAmt) | ((rotAmt >> 1) << 8);

Completed in 84 milliseconds