source: EcnlProtoTool/trunk/prototool/src/mrdb.c@ 321

Last change on this file since 321 was 321, checked in by coas-nagasima, 7 years ago

文字コードを設定

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-csrc;charset=UTF-8
File size: 15.8 KB
Line 
1/*
2** mrdb.c - mruby debugger
3**
4*/
5
6#include <stdlib.h>
7#include <string.h>
8
9#include "mruby.h"
10#include "mruby/dump.h"
11#include "mruby/debug.h"
12#include "mruby/class.h"
13#include "mruby/opcode.h"
14#include "mruby/variable.h"
15
16#include "mrdb.h"
17#include "apibreak.h"
18
19void mrdb_state_free(mrb_state *);
20
21static mrb_debug_context *_debug_context = NULL;
22static mrdb_state *_mrdb_state = NULL;
23
24struct _args
25{
26 FILE *rfp;
27 char* fname;
28 char* srcpath;
29 int argc;
30 char** argv;
31 mrb_bool mrbfile : 1;
32};
33
34typedef struct debug_command
35{
36 const char *cmd1;
37 const char *cmd2;
38 uint8_t len1;
39 uint8_t len2;
40 uint8_t div;
41 debug_command_id id;
42 debug_command_func func;
43} debug_command;
44
45static const debug_command debug_command_list[] = {
46 {"break", NULL, 1, 0, 0, DBGCMD_BREAK, dbgcmd_break}, /* b[reak] */
47 {"continue", NULL, 1, 0, 0, DBGCMD_CONTINUE, dbgcmd_continue}, /* c[ontinue] */
48 {"delete", NULL, 1, 0, 1, DBGCMD_DELETE, dbgcmd_delete}, /* d[elete] */
49 {"disable", NULL, 3, 0, 1, DBGCMD_DISABLE, dbgcmd_disable}, /* dis[able] */
50 {"enable", NULL, 2, 0, 1, DBGCMD_ENABLE, dbgcmd_enable}, /* en[able] */
51 {"eval", NULL, 2, 0, 0, DBGCMD_EVAL, dbgcmd_eval}, /* ev[al] */
52 {"help", NULL, 1, 0, 1, DBGCMD_HELP, dbgcmd_help}, /* h[elp] */
53 {"info", "breakpoints", 1, 1, 1, DBGCMD_INFO_BREAK, dbgcmd_info_break}, /* i[nfo] b[reakpoints] */
54 {"print", NULL, 1, 0, 0, DBGCMD_PRINT, dbgcmd_print}, /* p[rint] */
55 {"quit", NULL, 1, 0, 0, DBGCMD_QUIT, dbgcmd_quit}, /* q[uit] */
56 {"run", NULL, 1, 0, 0, DBGCMD_RUN, dbgcmd_run}, /* r[un] */
57 {"step", NULL, 1, 0, 1, DBGCMD_STEP, dbgcmd_step}, /* s[tep] */
58 {"next", NULL, 1, 0, 1, DBGCMD_NEXT, dbgcmd_next}, /* n[ext] */
59 {NULL}
60};
61
62
63static void
64usage(const char *name)
65{
66 static const char *const usage_msg[] = {
67 "switches:",
68 "-b load and execute RiteBinary (mrb) file",
69 "-d specify source directory",
70 "--version print the version",
71 "--copyright print the copyright",
72 NULL
73 };
74 const char *const *p = usage_msg;
75
76 printf("Usage: %s [switches] programfile\n", name);
77 while (*p) {
78 printf(" %s\n", *p++);
79 }
80}
81
82static int
83parse_args(mrb_state *mrb, int argc, char **argv, struct _args *args)
84{
85 char **origargv = argv;
86 static const struct _args args_zero = { 0 };
87
88 *args = args_zero;
89
90 for (argc--, argv++; argc > 0; argc--, argv++) {
91 char *item;
92 if (argv[0][0] != '-') break;
93
94 item = argv[0] + 1;
95 switch (*item++) {
96 case 'b':
97 args->mrbfile = TRUE;
98 break;
99 case 'd':
100 if (item[0]) {
101 goto append_srcpath;
102 }
103 else if (argc > 1) {
104 argc--; argv++;
105 item = argv[0];
106 append_srcpath:
107 if (!args->srcpath) {
108 size_t buflen;
109 char *buf;
110
111 buflen = strlen(item) + 1;
112 buf = (char *)mrb_malloc(mrb, buflen);
113 memcpy(buf, item, buflen);
114 args->srcpath = buf;
115 }
116 else {
117 size_t srcpathlen;
118 size_t itemlen;
119
120 srcpathlen = strlen(args->srcpath);
121 itemlen = strlen(item);
122 args->srcpath =
123 (char *)mrb_realloc(mrb, args->srcpath, srcpathlen + itemlen + 2);
124 args->srcpath[srcpathlen] = '\n';
125 memcpy(args->srcpath + srcpathlen + 1, item, itemlen + 1);
126 }
127 }
128 else {
129 printf("%s: No path specified for -d\n", *origargv);
130 return EXIT_SUCCESS;
131 }
132 break;
133 case '-':
134 if (strcmp((*argv) + 2, "version") == 0) {
135 mrb_show_version(mrb);
136 exit(EXIT_SUCCESS);
137 }
138 else if (strcmp((*argv) + 2, "copyright") == 0) {
139 mrb_show_copyright(mrb);
140 exit(EXIT_SUCCESS);
141 }
142 default:
143 return EXIT_FAILURE;
144 }
145 }
146
147 if (args->rfp == NULL) {
148 if (*argv == NULL) {
149 printf("%s: Program file not specified.\n", *origargv);
150 return EXIT_FAILURE;
151 }
152 else {
153 args->rfp = fopen(argv[0], args->mrbfile ? "rb" : "r");
154 if (args->rfp == NULL) {
155 printf("%s: Cannot open program file. (%s)\n", *origargv, *argv);
156 return EXIT_FAILURE;
157 }
158 args->fname = argv[0];
159 argc--; argv++;
160 }
161 }
162 args->argv = (char **)mrb_realloc(mrb, args->argv, sizeof(char*) * (argc + 1));
163 memcpy(args->argv, argv, (argc + 1) * sizeof(char*));
164 args->argc = argc;
165
166 return EXIT_SUCCESS;
167}
168
169static void
170cleanup(mrb_state *mrb, struct _args *args)
171{
172 if (args->rfp)
173 fclose(args->rfp);
174 if (args->srcpath)
175 mrb_free(mrb, args->srcpath);
176 if (args->argv)
177 mrb_free(mrb, args->argv);
178 mrdb_state_free(mrb);
179 mrb_close(mrb);
180}
181
182static mrb_debug_context*
183mrb_debug_context_new(mrb_state *mrb)
184{
185 mrb_debug_context *dbg = (mrb_debug_context *)mrb_malloc(mrb, sizeof(mrb_debug_context));
186
187 memset(dbg, 0, sizeof(mrb_debug_context));
188
189 InterlockedExchange(&dbg->xm, DBG_INIT);
190 dbg->xphase = DBG_PHASE_BEFORE_RUN;
191 dbg->next_bpno = 1;
192
193 return dbg;
194}
195
196mrb_debug_context*
197mrb_debug_context_get(mrb_state *mrb)
198{
199 if (!_debug_context) {
200 _debug_context = mrb_debug_context_new(mrb);
201 }
202 return _debug_context;
203}
204
205void
206mrb_debug_context_set(mrb_debug_context *dbg)
207{
208 _debug_context = dbg;
209}
210
211void
212mrb_debug_context_free(mrb_state *mrb)
213{
214 if (_debug_context) {
215 mrb_debug_delete_break_all(mrb, _debug_context);
216 mrb_free(mrb, _debug_context);
217 _debug_context = NULL;
218 }
219}
220
221static mrdb_state*
222mrdb_state_new(mrb_state *mrb)
223{
224 mrdb_state *mrdb = (mrdb_state *)mrb_malloc(mrb, sizeof(mrdb_state));
225
226 memset(mrdb, 0, sizeof(mrdb_state));
227
228 mrdb->dbg = mrb_debug_context_get(mrb);
229 mrdb->command = (char *)mrb_malloc(mrb, MAX_COMMAND_LINE + 1);
230 mrdb->print_no = 1;
231
232 return mrdb;
233}
234
235mrdb_state*
236mrdb_state_get(mrb_state *mrb)
237{
238 if (!_mrdb_state) {
239 _mrdb_state = mrdb_state_new(mrb);
240 }
241 return _mrdb_state;
242}
243
244void
245mrdb_state_set(mrdb_state *mrdb)
246{
247 _mrdb_state = mrdb;
248}
249
250void
251mrdb_state_free(mrb_state *mrb)
252{
253 mrb_debug_context_free(mrb);
254 if (_mrdb_state) {
255 mrb_free(mrb, _mrdb_state->command);
256 mrb_free(mrb, _mrdb_state);
257 _mrdb_state = NULL;
258 }
259}
260
261static char*
262get_command(mrb_state *mrb, mrdb_state *mrdb)
263{
264 int i;
265 int c;
266
267 for (i = 0; i < MAX_COMMAND_LINE; i++) {
268 if ((c = getchar()) == EOF || c == '\n') break;
269 mrdb->command[i] = c;
270 }
271
272 if (i == 0 && feof(stdin)) {
273 clearerr(stdin);
274 strlcpy(mrdb->command, "quit", MAX_COMMAND_LINE + 1);
275 i += sizeof("quit") - 1;
276 }
277
278 if (i == MAX_COMMAND_LINE) {
279 for (; (c = getchar()) != EOF && c != '\n'; i++);
280 }
281
282 if (i > MAX_COMMAND_LINE) {
283 printf("command line too long.\n");
284 i = 0; /* discard command data */
285 }
286 mrdb->command[i] = '\0';
287
288 return mrdb->command;
289}
290
291static char*
292pick_out_word(mrb_state *mrb, char **pp)
293{
294 char *ps;
295
296 for (ps = *pp; ISBLANK(*ps); ps++);
297 if (*ps == '\0') {
298 return NULL;
299 }
300
301 if (*ps == '\"' || *ps == '\'') {
302 *pp = strchr(ps + 1, *ps);
303 if (*pp) (*pp)++;
304 }
305 else {
306 *pp = strpbrk(ps, " \t");
307 }
308
309 if (!*pp) {
310 *pp = ps + strlen(ps);
311 }
312
313 if (**pp != '\0') {
314 **pp = '\0';
315 (*pp)++;
316 }
317
318 return ps;
319}
320
321static debug_command*
322parse_command(mrb_state *mrb, mrdb_state *mrdb, char *buf)
323{
324 debug_command *cmd = NULL;
325 char *p = buf;
326 size_t wlen;
327
328 /* get word #1 */
329 mrdb->words[0] = pick_out_word(mrb, &p);
330 if (!mrdb->words[0]) {
331 return NULL;
332 }
333 mrdb->wcnt = 1;
334 /* set remain parameter */
335 for (; *p && ISBLANK(*p); p++);
336 if (*p) {
337 mrdb->words[mrdb->wcnt++] = p;
338 }
339
340 /* check word #1 */
341 for (cmd = (debug_command*)debug_command_list; cmd->cmd1; cmd++) {
342 wlen = strlen(mrdb->words[0]);
343 if (wlen >= cmd->len1 &&
344 strncmp(mrdb->words[0], cmd->cmd1, wlen) == 0) {
345 break;
346 }
347 }
348
349 if (cmd->cmd2) {
350 if (mrdb->wcnt > 1) {
351 /* get word #2 */
352 mrdb->words[1] = pick_out_word(mrb, &p);
353 if (mrdb->words[1]) {
354 /* update remain parameter */
355 for (; *p && ISBLANK(*p); p++);
356 if (*p) {
357 mrdb->words[mrdb->wcnt++] = p;
358 }
359 }
360 }
361
362 /* check word #1,#2 */
363 for (; cmd->cmd1; cmd++) {
364 wlen = strlen(mrdb->words[0]);
365 if (wlen < cmd->len1 ||
366 strncmp(mrdb->words[0], cmd->cmd1, wlen)) {
367 continue;
368 }
369
370 if (!cmd->cmd2) break; /* word #1 only */
371
372 if (mrdb->wcnt == 1) continue; /* word #2 not specified */
373
374 wlen = strlen(mrdb->words[1]);
375 if (wlen >= cmd->len2 &&
376 strncmp(mrdb->words[1], cmd->cmd2, wlen) == 0) {
377 break; /* word #1 and #2 */
378 }
379 }
380 }
381
382 /* divide remain parameters */
383 if (cmd->cmd1 && cmd->div) {
384 p = mrdb->words[--mrdb->wcnt];
385 for (; mrdb->wcnt < MAX_COMMAND_WORD; mrdb->wcnt++) {
386 mrdb->words[mrdb->wcnt] = pick_out_word(mrb, &p);
387 if (!mrdb->words[mrdb->wcnt]) {
388 break;
389 }
390 }
391 }
392
393 return cmd->cmd1 ? cmd : NULL;
394}
395
396static void
397print_info_stopped_break(mrb_state *mrb, mrdb_state *mrdb)
398{
399 mrb_debug_breakpoint bp;
400 int32_t ret;
401 uint16_t lineno;
402 const char *file;
403 const char *method_name;
404 const char *class_name;
405
406 ret = mrb_debug_get_break(mrb, mrdb->dbg, mrdb->dbg->stopped_bpno, &bp);
407 if (ret == 0) {
408 switch (bp.type) {
409 case MRB_DEBUG_BPTYPE_LINE:
410 file = bp.point.linepoint.file;
411 lineno = bp.point.linepoint.lineno;
412 printf("Breakpoint %d, at %s:%d\n", bp.bpno, file, lineno);
413 break;
414 case MRB_DEBUG_BPTYPE_METHOD:
415 method_name = bp.point.methodpoint.method_name;
416 class_name = bp.point.methodpoint.class_name;
417 if (class_name == NULL) {
418 printf("Breakpoint %d, %s\n", bp.bpno, method_name);
419 }
420 else {
421 printf("Breakpoint %d, %s:%s\n", bp.bpno, class_name, method_name);
422 }
423 if (mrdb->dbg->isCfunc) {
424 printf("Stopped before calling the C function.\n");
425 }
426 break;
427 default:
428 break;
429 }
430 }
431}
432
433static void
434print_info_stopped_step_next(mrb_state *mrb, mrdb_state *mrdb)
435{
436 const char* file = mrdb->dbg->prvfile;
437 uint16_t lineno = mrdb->dbg->prvline;
438 printf("%s:%d\n", file, lineno);
439}
440
441static void
442print_info_stopped(mrb_state *mrb, mrdb_state *mrdb)
443{
444 switch (mrdb->dbg->bm) {
445 case BRK_BREAK:
446 print_info_stopped_break(mrb, mrdb);
447 break;
448 case BRK_STEP:
449 case BRK_NEXT:
450 print_info_stopped_step_next(mrb, mrdb);
451 break;
452 default:
453 break;
454 }
455}
456
457static debug_command*
458get_and_parse_command(mrb_state *mrb, mrdb_state *mrdb)
459{
460 debug_command *cmd = NULL;
461 char *p;
462 int i;
463
464 while (!cmd) {
465 for (p = NULL; !p || *p == '\0'; ) {
466 printf("(%s:%d) ", mrdb->dbg->prvfile, mrdb->dbg->prvline);
467 fflush(stdout);
468 p = get_command(mrb, mrdb);
469 }
470
471 cmd = parse_command(mrb, mrdb, p);
472#ifdef _DBG_MRDB_PARSER_
473 for (i = 0; i < mrdb->wcnt; i++) {
474 printf("%d: %s\n", i, mrdb->words[i]);
475 }
476#endif
477 if (!cmd) {
478 printf("invalid command (");
479 for (i = 0; i < mrdb->wcnt; i++) {
480 if (i > 0) {
481 printf(" ");
482 }
483 printf("%s", mrdb->words[i]);
484 }
485 puts(")");
486 }
487 }
488 return cmd;
489}
490
491static int32_t
492check_method_breakpoint(mrb_state *mrb, mrb_irep *irep, mrb_code *pc, mrb_value *regs)
493{
494 struct RClass* c = NULL;
495 mrb_sym sym;
496 int32_t bpno;
497 mrb_bool isCfunc;
498
499 mrb_debug_context *dbg = mrb_debug_context_get(mrb);
500
501 isCfunc = FALSE;
502 bpno = dbg->method_bpno;
503 dbg->method_bpno = 0;
504
505 switch (GET_OPCODE(*pc)) {
506 case OP_SEND:
507 case OP_SENDB:
508 c = mrb_class(mrb, regs[GETARG_A(*pc)]);
509 sym = irep->syms[GETARG_B(*pc)];
510 break;
511 case OP_SUPER:
512 c = mrb->c->ci->target_class->super;
513 sym = mrb->c->ci->mid;
514 break;
515 default:
516 sym = 0;
517 break;
518 }
519 if (sym != 0) {
520 dbg->method_bpno = mrb_debug_check_breakpoint_method(mrb, dbg, c, sym, &isCfunc);
521 if (isCfunc) {
522 bpno = dbg->method_bpno;
523 dbg->method_bpno = 0;
524 }
525 }
526 dbg->isCfunc = isCfunc;
527 return bpno;
528}
529
530static void
531mrb_code_fetch_hook(mrb_state *mrb, mrb_irep *irep, mrb_code *pc, mrb_value *regs)
532{
533 const char *file;
534 int32_t line;
535 int32_t bpno;
536
537 mrb_debug_context *dbg = mrb_debug_context_get(mrb);
538
539 mrb_assert(dbg);
540
541 dbg->irep = irep;
542 dbg->pc = pc;
543 dbg->regs = regs;
544
545 if (dbg->xphase == DBG_PHASE_RESTART) {
546 dbg->root_irep = irep;
547 dbg->prvfile = NULL;
548 dbg->prvline = 0;
549 dbg->prvci = NULL;
550 InterlockedExchange(&dbg->xm, DBG_RUN);
551 dbg->xphase = DBG_PHASE_RUNNING;
552 }
553
554 file = mrb_debug_get_filename(irep, (uint32_t)(pc - irep->iseq));
555 line = mrb_debug_get_line(irep, (uint32_t)(pc - irep->iseq));
556
557 switch (dbg->xm) {
558 case DBG_STEP:
559 if (!file || (dbg->prvfile == file && dbg->prvline == line)) {
560 return;
561 }
562 dbg->method_bpno = 0;
563 dbg->bm = BRK_STEP;
564 break;
565
566 case DBG_NEXT:
567 if (!file || (dbg->prvfile == file && dbg->prvline == line)) {
568 return;
569 }
570 if ((intptr_t)(dbg->prvci) < (intptr_t)(mrb->c->ci)) {
571 return;
572 }
573 dbg->prvci = NULL;
574 dbg->method_bpno = 0;
575 dbg->bm = BRK_NEXT;
576 break;
577
578 case DBG_RUN:
579 bpno = check_method_breakpoint(mrb, irep, pc, regs);
580 if (bpno > 0) {
581 dbg->stopped_bpno = bpno;
582 dbg->bm = BRK_BREAK;
583 break;
584 }
585 if (dbg->prvfile != file || dbg->prvline != line) {
586 bpno = mrb_debug_check_breakpoint_line(mrb, dbg, file, line);
587 if (bpno > 0) {
588 dbg->stopped_bpno = bpno;
589 dbg->bm = BRK_BREAK;
590 break;
591 }
592 }
593 dbg->prvfile = file;
594 dbg->prvline = line;
595 return;
596 case DBG_INIT:
597 dbg->root_irep = irep;
598 dbg->bm = BRK_INIT;
599 if (!file || line < 0) {
600 puts("Cannot get debugging information.");
601 }
602 break;
603
604 default:
605 return;
606 }
607
608 dbg->prvfile = file;
609 dbg->prvline = line;
610
611 if (dbg->bm == BRK_BREAK && --dbg->ccnt > 0) {
612 return;
613 }
614 dbg->break_hook(mrb, dbg);
615
616 dbg->xphase = DBG_PHASE_RUNNING;
617}
618
619static mrdb_exemode
620mrb_debug_break_hook(mrb_state *mrb, mrb_debug_context *dbg)
621{
622 debug_command *cmd;
623 dbgcmd_state st = DBGST_CONTINUE;
624 mrdb_state *mrdb = mrdb_state_get(mrb);
625
626 print_info_stopped(mrb, mrdb);
627
628 while (1) {
629 cmd = get_and_parse_command(mrb, mrdb);
630 mrb_assert(cmd);
631
632 st = cmd->func(mrb, mrdb);
633
634 if ((st == DBGST_CONTINUE) || (st == DBGST_RESTART)) break;
635 }
636 return dbg->xm;
637}
638
639int
640mrdb_break(void)
641{
642 mrdb_state *mrdb = _mrdb_state;
643 if (mrdb == NULL)
644 return 0;
645 return InterlockedCompareExchange(&mrdb->dbg->xm, DBG_STEP, DBG_RUN) == DBG_RUN;
646}
647
648int
649mrdb_main(int argc, char **argv)
650{
651 mrb_state *mrb = mrb_open();
652 int n = -1;
653 struct _args args;
654 mrb_value v;
655 mrdb_state *mrdb;
656 mrdb_state *mrdb_backup;
657 mrb_debug_context* dbg_backup;
658 debug_command *cmd;
659
660l_restart:
661
662 if (mrb == NULL) {
663 fputs("Invalid mrb_state, exiting mruby\n", stderr);
664 return EXIT_FAILURE;
665 }
666
667 /* parse command parameters */
668 n = parse_args(mrb, argc, argv, &args);
669 if (n == EXIT_FAILURE || args.rfp == NULL) {
670 cleanup(mrb, &args);
671 usage(argv[0]);
672 return n;
673 }
674
675 /* initialize debugger information */
676 mrdb = mrdb_state_get(mrb);
677 mrb_assert(mrdb && mrdb->dbg);
678 mrdb->srcpath = args.srcpath;
679
680 if (mrdb->dbg->xm == DBG_QUIT) {
681 mrdb->dbg->xphase = DBG_PHASE_RESTART;
682 }
683 else {
684 mrdb->dbg->xphase = DBG_PHASE_BEFORE_RUN;
685 }
686 InterlockedExchange(&mrdb->dbg->xm, DBG_INIT);
687 mrdb->dbg->ccnt = 1;
688
689 /* setup hook functions */
690 mrb->code_fetch_hook = mrb_code_fetch_hook;
691 mrdb->dbg->break_hook = mrb_debug_break_hook;
692
693 if (args.mrbfile) { /* .mrb */
694 v = mrb_load_irep_file(mrb, args.rfp);
695 }
696 else { /* .rb */
697 mrbc_context *cc = mrbc_context_new(mrb);
698 mrbc_filename(mrb, cc, args.fname);
699 v = mrb_load_file_cxt(mrb, args.rfp, cc);
700 mrbc_context_free(mrb, cc);
701 }
702 if (mrdb->dbg->xm == DBG_QUIT && !mrb_undef_p(v) && mrb->exc) {
703 const char *classname = mrb_obj_classname(mrb, mrb_obj_value(mrb->exc));
704 if (!strcmp(classname, "DebuggerExit")) {
705 cleanup(mrb, &args);
706 return 0;
707 }
708 if (!strcmp(classname, "DebuggerRestart")) {
709 mrdb_backup = mrdb_state_get(mrb);
710 dbg_backup = mrb_debug_context_get(mrb);
711
712 mrdb_state_set(NULL);
713 mrb_debug_context_set(NULL);
714
715 cleanup(mrb, &args);
716 mrb = mrb_open();
717
718 mrdb_state_set(mrdb_backup);
719 mrb_debug_context_set(dbg_backup);
720
721 goto l_restart;
722 }
723 }
724 puts("mruby application exited.");
725 mrdb->dbg->xphase = DBG_PHASE_AFTER_RUN;
726 if (!mrb_undef_p(v)) {
727 if (mrb->exc) {
728 mrb_print_error(mrb);
729 }
730 else {
731 printf(" => ");
732 mrb_p(mrb, v);
733 }
734 }
735
736 mrdb->dbg->prvfile = "-";
737 mrdb->dbg->prvline = 0;
738
739 while (1) {
740 cmd = get_and_parse_command(mrb, mrdb);
741 mrb_assert(cmd);
742
743 if (cmd->id == DBGCMD_QUIT) {
744 break;
745 }
746
747 if (cmd->func(mrb, mrdb) == DBGST_RESTART) goto l_restart;
748 }
749
750 cleanup(mrb, &args);
751
752 return 0;
753}
Note: See TracBrowser for help on using the repository browser.