开发者

Why doesn't there exists a subi opcode for MIPS?

开发者 https://www.devze.com 2023-03-24 23:57 出处:网络
I am very new to Assembly language. I was reading about MIPS architecture and came to know that开发者_Python百科 you have addi opcode but there is no subi opcode. Why don\'t we have a subi opcode?When

I am very new to Assembly language. I was reading about MIPS architecture and came to know that开发者_Python百科 you have addi opcode but there is no subi opcode. Why don't we have a subi opcode?


When you create an instruction set, you're bound by some constraints, such as the total number of instructions you can create. The MIPS creators realized that there isn't a need for subi (because you can add a negative number with addi using 2's complement), and they simply made the decision to forego making that instruction. It may have been to conserve the number of instructions, or just simply because it isn't needed.


Both addi and addiu take 16-bit signed immediates as operand, so it makes no sense to add separate subi and subiu opcodes.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号