我正在使用MIPS(QtSpim)将Big Endian的32位字转换为Little Endian。我在下面显示的内容经过检查和更正。但是,我想知道还有哪些方法可以让我进行转换。我虽然只使用旋转和移位,但我没有设法在没有逻辑操作的情况下完成它。
所以我的问题是,没有逻辑运算可以做到吗?
li $t0,0x12345678 # number to be converted supposed to be in $t0
rol $t1,$t0,8
li $t2,0x00FF00FF # $t2 contains mask 0x00FF00FF
and $t3,$t1,$t2 # byte 0 and 2 valid
ror $t1,$t0,8
not $t2,$t2 # $t2 contains mask 0xFF00FF00
and $t1,$t1,$t2 # byte 1 and 3 valid
or $t3,$t3,$t1 # little endian-number in $t3
答案 0 :(得分:1)
这是一个不使用逻辑运算符的解决方案。然而,这只是一个黑客:
li $t0,0x12345678 # number to be converted supposed to be in $t0
swl $t0, scratch+3
lwl $t1, scratch # Load MSB in LSB
lwr $t1, scratch+3 # Load LSB in MSB
swl $t0, scratch+2
lwr $t2, scratch # Swap second and
lwl $t2, scratch+1 # third bytes
sw $zero, scratch
lwl $t2, scratch # Leave MSB and LSB in zero
lwr $t2, scratch+3
addu $t3, $t1, $t2 # Add partial results to get final result
.data 0x2000 # Where to locate scratch space (4 bytes)
scratch:
.space 4
输入为$t0
,部分结果位于$t1
和$t2
,最终结果位于$t3
。它还使用4个字节的内存(位于scratch
)