// Swap the byte order of diff. Exact reverse is not important, as we only need to detect
// the half-word.
rev diff, diff
// The most significant bit of DIFF marks the least significant bit of change between DATA1/2
clz diff, diff
// Mask off 0xF to have shift amount. Why does ARM64 not have BIC with immediate?!?!
bfi diff, xzr, #0, #4
// Create a 16b mask
mov mask, #0xFFFF
// Shift to the right half-word.
lsr data1, data1, diff
lsr data2, data2, diff
// Mask the lowest half-word.
and data1, data1, mask
and data2, data2, mask
// Compute difference. sub result, data1, data2
ret
.Lmutual_align: /* Sources are mutually aligned, but are not currently at an alignmentboundary.Rounddowntheaddressesandthenmaskoff
the bytes that precede the start point. */
bic src1, src1, #7
bic src2, src2, #7
add limit, limit, tmp1 /* Adjust the limit for the extra. */
lsl tmp1, tmp1, #3/* Bytes beyond alignment -> bits. */
ldr data1, [src1], #8
neg tmp1, tmp1 /* Bits to alignment -64. */
ldr data2, [src2], #8
mov tmp2, #~0 /* Little-endian. Early bytes are at LSB. */
lsr tmp2, tmp2, tmp1 /* Shift (tmp1 & 63). */
add limit_wd, limit, #7
orr data1, data1, tmp2
orr data2, data2, tmp2
lsr limit_wd, limit_wd, #3
b .Lstart_realigned
.Lret0:
mov result, #0
ret
.p2align 6
.Lmisaligned8: sub limit, limit, #1 1: /* Perhaps we can do better than this. */
ldrh data1w, [src1], #2
ldrh data2w, [src2], #2
subs limit, limit, #2
ccmp data1w, data2w, #0, cs /* NZCV = 0b0000. */
b.eq 1b sub result, data1, data2
ret
END __memcmp16
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.