关于字节码的一个骚操作

字节码

用一个字节来表示的操作码,供虚拟机vm执行,不同的操作码后面可以跟不同数量的操作数,这就导致了不同的操作码可能对运行时栈的影响不同,因此我们需要根据字节码提供对运行时栈的影响

具体操作

OPCODE.inc

//字节码的一些示例
OPCODE_SLOTS(LOAD_CONSTANT, 1)
OPCODE_SLOTS(PUSH_NULL, 1)
OPCODE_SLOTS(PUSH_FALSE, 1)
OPCODE_SLOTS(PUSH_TRUE, 1)
OPCODE_SLOTS(POP, -1)

GET.c

//先将操作码变成索引的形式
#define OPCODE_SLOTS(opcode, effect) OPCODE_##opcode,
typedef enum {
    #include "OPCODE.inc"
} OpCode;
#undef OPCODE_SLOTS

//然后再用OpCode索引取slots
#define OPCODE_SLOTS(opcode, effect) effect,
static const int opCodeSlotsUsed[] = {
    #include "OPCODE.inc"
};
#undef OPCODE_SLOTS
#include 

int main(){
    OpCode opCode;
    opCode = OPCODE_LOAD_CONSTANT;
    printf("OPCODE_LOAD_CONSTANT effect the slots of stack of %d\n", opCodeSlotsUsed[opCode]);
    opCode = OPCODE_POP;
    printf("OPCODE_POP effect the slots of stack of %d\n", opCodeSlotsUsed[opCode]);
}

最后运行的结果为:

OPCODE_LOAD_CONSTANT effect the slots of stack of 1
OPCODE_POP effect the slots of stack of -1

你可能感兴趣的:(编译原理)