forked from dalnefre/kernel_abe
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathabe.c
156 lines (135 loc) · 4.03 KB
/
abe.c
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
/*
* abe.c -- experimental ACTOR-Based Environment
*
* Copyright 2008-2017 Dale Schumacher. ALL RIGHTS RESERVED.
*/
static char _Program[] = "ABE";
static char _Version[] = "2017-11-05";
static char _Copyright[] = "Copyright 2008-2017 Dale Schumacher";
#include <getopt.h>
#include "abe.h"
#include "sample.h"
/*#include <unistd.h>*/
extern int usleep(); /* FIXME: non-portable microsecond delay */
#include "dbug.h"
DBUG_UNIT("abe");
BOOL test_mode = FALSE; /* flag to run unit tests */
BOOL init_sample = FALSE; /* flag to pre-load sample configuration */
void
test_pre()
{
/* char tmp_buf[256]; */
DBUG_ENTER("test_pre");
TRACE(printf("--test_pre--\n"));
DBUG_PRINT("", ("sizeof(int)=%ld", (ulint)sizeof(int))); /* expected: 4 */
DBUG_PRINT("", ("sizeof(WORD)=%ld", (ulint)sizeof(WORD))); /* expected: 8 */
DBUG_PRINT("", ("sizeof(CONS*)=%ld", (ulint)sizeof(CONS*))); /* expected: 8 */
DBUG_PRINT("", ("sizeof(BEH)=%ld", (ulint)sizeof(BEH))); /* expected: 8 */
assert(sizeof(WORD) == sizeof(CONS*));
assert(sizeof(BEH) == sizeof(CONS*));
DBUG_PRINT("", ("NIL=16#%lx (%p)", as_word(NIL), as_ptr(NIL)));
assert(nilp(NIL));
assert(nilp(NIL) == _nilp(NIL));
DBUG_PRINT("", ("sizeof(BOOL)=%ld", (ulint)sizeof(BOOL))); /* expected: 4 */
assert(sizeof(BOOL) == sizeof(int));
DBUG_PRINT("", ("TRUE=16#%lx (%p)", as_word(TRUE), BOOLEAN(TRUE)));
DBUG_PRINT("", ("FALSE=16#%lx (%p)", as_word(FALSE), BOOLEAN(FALSE)));
assert(TRUE);
assert(!FALSE);
assert(TRUE == ((BOOL)(0 == 0)));
assert(FALSE == ((BOOL)(0 != 0)));
DBUG_PRINT("", ("Type tag in LSB[1:0]"));
DBUG_PRINT("", ("_Program[]=16#%lx (%p)", as_word(_Program), _Program));
assert(_Program == MK_PTR(MK_REF(_Program)));
/* FIXME: enable this test when stack allocation is allowed
DBUG_PRINT("", ("tmp_buf[]=%p", tmp_buf));
assert(tmp_buf == MK_PTR(MK_REF(tmp_buf)));
*/
DBUG_PRINT("", ("test_pre()=16#%lx (%p)", as_word(test_pre), test_pre));
assert(test_pre == MK_BEH(MK_FUNC(test_pre)));
DBUG_RETURN;
}
CONS*
system_info()
{
CONS* info = NIL;
info = map_put(info, ATOM("Program"), ATOM(_Program));
info = map_put(info, ATOM("Version"), ATOM(_Version));
info = map_put(info, ATOM("Copyright"), ATOM(_Copyright));
return info;
}
void
report_cons_stats()
{
report_atom_usage();
report_cons_usage();
}
void
usage(void)
{
fprintf(stderr, "\
usage: %s [-ts] [-n count] [-# dbug] filename ...\n",
_Program);
exit(EXIT_FAILURE);
}
void
banner(void)
{
printf("%s v%s -- %s\n", _Program, _Version, _Copyright);
}
int
main(int argc, char** argv)
{
int c;
int counter = 5; /* default 5 second counter for ticker */
DBUG_ENTER("main");
DBUG_PROCESS(argv[0]);
while ((c = getopt(argc, argv, "tsn:#:V")) != EOF) {
switch(c) {
case 't': test_mode = TRUE; break;
case 's': init_sample = TRUE; break;
case 'n': counter = atoi(optarg); break;
case '#': DBUG_PUSH(optarg); break;
case 'V': banner(); exit(EXIT_SUCCESS);
case '?': usage();
default: usage();
}
}
banner();
if (test_mode) {
DBUG_PRINT("", ("_nilp()@%p, main()@%p", _nilp, main));
test_pre();
test_number();
test_gc();
test_cons();
test_atom();
test_emit();
}
if (init_sample) {
int limit = 100;
int budget = 1000000;
int n;
CONFIG* cfg = new_configuration(limit);
tick_init();
test_sample(cfg);
start_ticker(cfg, counter);
DBUG_PRINT("", ("--begin--"));
TRACE(printf("sample running with %d queue limit and %d budget\n", limit, budget));
sample_done = FALSE;
do {
n = run_configuration(cfg, budget);
if (cfg->q_count > 0) {
TRACE(printf("queue length %d with %d budget remaining\n", cfg->q_count, n));
}
if (cfg->t_count > 0) {
usleep(TICK_FREQ / 10); /* delayed messages pending... sleep for a while */
}
} while ((cfg->q_count < cfg->q_limit) && !sample_done);
DBUG_PRINT("", ("n=%d q_count=%d q_limit=%d t_count=%d sample_done=%s",
n, cfg->q_count, cfg->q_limit, cfg->t_count, (sample_done ? "TRUE" : "FALSE")));
DBUG_PRINT("", ("--end--"));
report_actor_usage(cfg);
}
report_cons_stats();
DBUG_RETURN (exit(EXIT_SUCCESS), 0);
}