-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdebug.c
More file actions
118 lines (99 loc) · 5.01 KB
/
Copy pathdebug.c
File metadata and controls
118 lines (99 loc) · 5.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
#include "debug.h"
#include "object.h"
#include <stdio.h>
static int simple_instruction(const char *name, int offset) {
printf("%s\n", name);
return offset + 1;
}
static int byte_instruction(const char *name, lisa_chunk *chunk, int offset) {
uint8_t slot = chunk->code[offset + 1];
printf("%-20s %4d\n", name, slot);
return offset + 2;
}
static int constant_instruction(const char *name, lisa_chunk *chunk, int offset) {
uint8_t idx = chunk->code[offset + 1];
printf("%-20s %4d '", name, idx);
lisa_print_value(chunk->constants.values[idx]);
printf("'\n");
return offset + 2;
}
static int jump_instruction(const char *name, int sign, lisa_chunk *chunk, int offset) {
uint8_t lo = chunk->code[offset + 1];
uint8_t hi = chunk->code[offset + 2];
uint16_t jump = (uint16_t)(lo | (hi << 8));
printf("%-20s %4d -> %d\n", name, offset, offset + 3 + sign * jump);
return offset + 3;
}
void lisa_disassemble_chunk(lisa_chunk *chunk, const char *name) {
printf("== %s ==\n", name);
int offset = 0;
while (offset < chunk->count) {
offset = lisa_disassemble_instruction(chunk, offset);
}
}
int lisa_disassemble_instruction(lisa_chunk *chunk, int offset) {
printf("%04d ", offset);
if (offset > 0 && chunk->lines[offset] == chunk->lines[offset - 1]) {
printf(" | ");
} else {
printf("%4d ", chunk->lines[offset]);
}
uint8_t instruction = chunk->code[offset];
switch (instruction) {
case OP_CONSTANT: return constant_instruction("OP_CONSTANT", chunk, offset);
case OP_NIL: return simple_instruction("OP_NIL", offset);
case OP_TRUE: return simple_instruction("OP_TRUE", offset);
case OP_FALSE: return simple_instruction("OP_FALSE", offset);
case OP_POP: return simple_instruction("OP_POP", offset);
case OP_GET_LOCAL: return byte_instruction("OP_GET_LOCAL", chunk, offset);
case OP_SET_LOCAL: return byte_instruction("OP_SET_LOCAL", chunk, offset);
case OP_GET_UPVALUE: return byte_instruction("OP_GET_UPVALUE", chunk, offset);
case OP_SET_UPVALUE: return byte_instruction("OP_SET_UPVALUE", chunk, offset);
case OP_GET_GLOBAL: return constant_instruction("OP_GET_GLOBAL", chunk, offset);
case OP_DEF_GLOBAL: return constant_instruction("OP_DEF_GLOBAL", chunk, offset);
case OP_ADD: return simple_instruction("OP_ADD", offset);
case OP_SUB: return simple_instruction("OP_SUB", offset);
case OP_MUL: return simple_instruction("OP_MUL", offset);
case OP_DIV: return simple_instruction("OP_DIV", offset);
case OP_MOD: return simple_instruction("OP_MOD", offset);
case OP_NEGATE: return simple_instruction("OP_NEGATE", offset);
case OP_EQUAL: return simple_instruction("OP_EQUAL", offset);
case OP_NOT_EQUAL: return simple_instruction("OP_NOT_EQUAL", offset);
case OP_LESS: return simple_instruction("OP_LESS", offset);
case OP_LESS_EQUAL: return simple_instruction("OP_LESS_EQUAL", offset);
case OP_GREATER: return simple_instruction("OP_GREATER", offset);
case OP_GREATER_EQUAL: return simple_instruction("OP_GREATER_EQUAL", offset);
case OP_NOT: return simple_instruction("OP_NOT", offset);
case OP_JUMP: return jump_instruction("OP_JUMP", 1, chunk, offset);
case OP_JUMP_IF_FALSE: return jump_instruction("OP_JUMP_IF_FALSE", 1, chunk, offset);
case OP_LOOP: return jump_instruction("OP_LOOP", -1, chunk, offset);
case OP_CLOSURE: {
offset++;
uint8_t idx = chunk->code[offset++];
printf("%-20s %4d ", "OP_CLOSURE", idx);
lisa_print_value(chunk->constants.values[idx]);
printf("\n");
lisa_obj_function *fn = AS_FUNCTION(chunk->constants.values[idx]);
for (int j = 0; j < fn->upvalue_count; j++) {
int is_local = chunk->code[offset++];
int index = chunk->code[offset++];
printf("%04d | %s %d\n",
offset - 2, is_local ? "local" : "upvalue", index);
}
return offset;
}
case OP_CALL: return byte_instruction("OP_CALL", chunk, offset);
case OP_TAIL_CALL: return byte_instruction("OP_TAIL_CALL", chunk, offset);
case OP_RETURN: return simple_instruction("OP_RETURN", offset);
case OP_CLOSE_UPVALUE: return simple_instruction("OP_CLOSE_UPVALUE", offset);
case OP_CLOSE_UPVALUES_AT: return byte_instruction("OP_CLOSE_UPVALUES_AT", chunk, offset);
case OP_CONS: return simple_instruction("OP_CONS", offset);
case OP_CAR: return simple_instruction("OP_CAR", offset);
case OP_CDR: return simple_instruction("OP_CDR", offset);
case OP_LIST: return byte_instruction("OP_LIST", chunk, offset);
case OP_PRINTLN: return byte_instruction("OP_PRINTLN", chunk, offset);
default:
printf("Unknown opcode %d\n", instruction);
return offset + 1;
}
}