Skip to content

Commit 11b1723

Browse files
author
DreamAndDead
committed
add gdb lexer
1 parent cd1be5a commit 11b1723

11 files changed

+129
-515
lines changed

Makefile

+4
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,8 @@ hex:
2121
debug:
2222
gdb -x init.gdb ./lua-5.1.5/src/lua
2323

24+
lex:
25+
gdb -batch -x lex.gdb --args ./lua-5.1.5/src/luac test/co.lua
26+
rm luac.out
27+
2428
.PHONY: test

flex_test/Makefile flex/Makefile

File renamed without changes.

flex_test/lex.l flex/lex.l

File renamed without changes.

flex_test/lex.yy.c flex/lex.yy.c

File renamed without changes.

flex_test/y.tab.h flex/y.tab.h

File renamed without changes.

init.gdb

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ set print array on
77

88
source helper.py
99

10-
b lvm.c:457
10+
b luaX_next
1111

12-
r test/table.lua
12+
r test/co.lua
1313

lex.gdb

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
set pagination off
2+
3+
b luaX_next
4+
commands
5+
silent
6+
printf "%-4d%-10s", ls->linenumber, luaX_token2str(ls, ls->t.token)
7+
8+
if ls->t.token == TK_NAME
9+
printf "%s", getstr(ls->t.seminfo.ts)
10+
end
11+
12+
if ls->t.token == TK_NUMBER
13+
printf "%g", ls->t.seminfo.r
14+
end
15+
16+
printf "\n"
17+
18+
continue
19+
end
20+
21+
r

0 commit comments

Comments
 (0)