2013-10-14 20:05:44 -04:00
|
|
|
#ifndef PICCONF_H__
|
|
|
|
#define PICCONF_H__
|
|
|
|
|
2013-10-17 00:55:00 -04:00
|
|
|
/* switch normal VM and direct threaded VM */
|
2013-10-17 00:54:48 -04:00
|
|
|
#define PIC_DIRECT_THREADED_VM 1
|
|
|
|
|
2013-10-17 04:08:33 -04:00
|
|
|
/* enable readline module */
|
|
|
|
#define PIC_ENABLE_READLINE 1
|
|
|
|
|
2013-10-17 00:55:00 -04:00
|
|
|
/* initial memory size (to be dynamically extended if necessary) */
|
2013-10-15 06:12:17 -04:00
|
|
|
#define PIC_ARENA_SIZE 100
|
2013-10-19 15:04:06 -04:00
|
|
|
#define PIC_HEAP_SIZE 16384
|
2013-10-15 10:28:23 -04:00
|
|
|
#define PIC_STACK_SIZE 1024
|
2013-10-15 22:53:25 -04:00
|
|
|
#define PIC_IREP_SIZE 256
|
2013-10-17 11:15:15 -04:00
|
|
|
#define PIC_GLOBALS_SIZE 1024
|
2013-10-15 00:20:45 -04:00
|
|
|
|
2013-10-17 00:55:00 -04:00
|
|
|
/* enable all debug flags */
|
2013-10-14 20:05:44 -04:00
|
|
|
#define DEBUG 1
|
|
|
|
|
2013-10-19 15:18:52 -04:00
|
|
|
|
2013-10-14 20:05:44 -04:00
|
|
|
#if DEBUG
|
|
|
|
# define GC_DEBUG 1
|
|
|
|
# define VM_DEBUG 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|