opcode(操作码):指一条机器指令中用于表示“要执行什么操作”的部分(例如加法、跳转、加载等)。在汇编语言、机器码与 CPU 指令集(ISA)语境中很常见。(也常写作 op code。)
/ˈɑpˌkoʊd/
The opcode tells the CPU which operation to perform.
操作码告诉 CPU 要执行哪一种操作。
In the disassembler output, we could identify the opcode and the operands to understand the program’s control flow.
在反汇编输出中,我们可以识别操作码和操作数,从而理解程序的控制流。
opcode 是 operation(操作)+ code(代码)的合成词,源于早期计算机体系结构与汇编语言领域,用来区分指令中的“操作类型”(opcode)与“参数/对象”(operands,操作数)。