|
| 1 | +/* |
| 2 | + * abe.c -- experimental ACTOR-Based Environment |
| 3 | + * |
| 4 | + * Copyright 2008-2009 Dale Schumacher. ALL RIGHTS RESERVED. |
| 5 | + */ |
| 6 | +static char _Program[] = "ABE"; |
| 7 | +static char _Version[] = "2009-11-03"; |
| 8 | +static char _Copyright[] = "Copyright 2008-2009 Dale Schumacher"; |
| 9 | + |
| 10 | +#include <getopt.h> |
| 11 | +#include "abe.h" |
| 12 | +#include "sample.h" |
| 13 | + |
| 14 | +/*#include <unistd.h>*/ |
| 15 | +extern int usleep(); /* FIXME: non-portable microsecond delay */ |
| 16 | + |
| 17 | +#include "dbug.h" |
| 18 | +DBUG_UNIT("abe"); |
| 19 | + |
| 20 | +BOOL test_mode = FALSE; /* flag to run unit tests */ |
| 21 | +BOOL init_sample = FALSE; /* flag to pre-load sample configuration */ |
| 22 | + |
| 23 | +void |
| 24 | +test_pre() |
| 25 | +{ |
| 26 | +/* char tmp_buf[256]; */ |
| 27 | + |
| 28 | + DBUG_ENTER("test_pre"); |
| 29 | + |
| 30 | + DBUG_PRINT("", ("sizeof(int)=%d", sizeof(int))); |
| 31 | + DBUG_PRINT("", ("sizeof(CONS*)=%d", sizeof(CONS*))); |
| 32 | + DBUG_PRINT("", ("sizeof(BEH)=%d", sizeof(BEH))); |
| 33 | + assert(sizeof(int) == sizeof(CONS*)); |
| 34 | + assert(sizeof(BEH) == sizeof(CONS*)); |
| 35 | + |
| 36 | + DBUG_PRINT("", ("NIL=16#%08lx (%p)", NIL, NIL)); |
| 37 | + assert(nilp(NIL)); |
| 38 | + assert(nilp(NIL) == _nilp(NIL)); |
| 39 | + |
| 40 | + DBUG_PRINT("", ("sizeof(BOOL)=%d", sizeof(BOOL))); |
| 41 | + assert(sizeof(BOOL) == sizeof(CONS*)); |
| 42 | + DBUG_PRINT("", ("TRUE=16#%08lx (%p)", TRUE, TRUE)); |
| 43 | + DBUG_PRINT("", ("FALSE=16#%08lx (%p)", FALSE, FALSE)); |
| 44 | + assert(TRUE); |
| 45 | + assert(!FALSE); |
| 46 | + assert(TRUE == ((BOOL)(0 == 0))); |
| 47 | + assert(FALSE == ((BOOL)(0 != 0))); |
| 48 | + |
| 49 | +#if TYPETAG_USES_3MSB |
| 50 | + DBUG_PRINT("", ("Type tag in MSB[31:29]")); |
| 51 | +#endif /* TYPETAG_USES_3MSB */ |
| 52 | +#if TYPETAG_USES_2LSB |
| 53 | + DBUG_PRINT("", ("Type tag in LSB[1:0]")); |
| 54 | +#endif /* TYPETAG_USES_2LSB */ |
| 55 | +#if TYPETAG_USES_3LSB |
| 56 | + DBUG_PRINT("", ("Type tag in LSB[2/1:0]")); |
| 57 | +#endif /* TYPETAG_USES_3LSB */ |
| 58 | +#if TYPETAG_USES_1LSB_2MSB |
| 59 | + DBUG_PRINT("", ("Type tag in LSB[0]+MSB[31:30]")); |
| 60 | +#endif /* TYPETAG_USES_1LSB_2MSB */ |
| 61 | + DBUG_PRINT("", ("_Program[]=16#%08lx (%p)", _Program, _Program)); |
| 62 | + assert(_Program == MK_PTR(MK_REF(_Program))); |
| 63 | + |
| 64 | +/* FIXME: enable this test when stack allocation is allowed |
| 65 | + DBUG_PRINT("", ("tmp_buf[]=%p", tmp_buf)); |
| 66 | + assert(tmp_buf == MK_PTR(MK_REF(tmp_buf))); |
| 67 | +*/ |
| 68 | + |
| 69 | + DBUG_PRINT("", ("test_pre()=16#%08lx (%p)", test_pre, test_pre)); |
| 70 | + assert(test_pre == MK_BEH(MK_FUNC(test_pre))); |
| 71 | + |
| 72 | + DBUG_RETURN; |
| 73 | +} |
| 74 | + |
| 75 | +CONS* |
| 76 | +system_info() |
| 77 | +{ |
| 78 | + CONS* info = NIL; |
| 79 | + |
| 80 | + info = map_put(info, ATOM("Program"), ATOM(_Program)); |
| 81 | + info = map_put(info, ATOM("Version"), ATOM(_Version)); |
| 82 | + info = map_put(info, ATOM("Copyright"), ATOM(_Copyright)); |
| 83 | + return info; |
| 84 | +} |
| 85 | + |
| 86 | +void |
| 87 | +report_cons_stats() |
| 88 | +{ |
| 89 | + report_atom_usage(); |
| 90 | + report_cons_usage(); |
| 91 | +} |
| 92 | + |
| 93 | +void |
| 94 | +usage(void) |
| 95 | +{ |
| 96 | + fprintf(stderr, "\ |
| 97 | +usage: %s [-ts] [-n count] [-# dbug] filename ...\n", |
| 98 | + _Program); |
| 99 | + exit(EXIT_FAILURE); |
| 100 | +} |
| 101 | + |
| 102 | +void |
| 103 | +banner(void) |
| 104 | +{ |
| 105 | + printf("%s v%s -- %s\n", _Program, _Version, _Copyright); |
| 106 | +} |
| 107 | + |
| 108 | +int |
| 109 | +main(int argc, char** argv) |
| 110 | +{ |
| 111 | + int c; |
| 112 | + int counter = 5; /* default 5 second counter for ticker */ |
| 113 | + |
| 114 | + DBUG_ENTER("main"); |
| 115 | + DBUG_PROCESS(argv[0]); |
| 116 | + while ((c = getopt(argc, argv, "tsn:#:V")) != EOF) { |
| 117 | + switch(c) { |
| 118 | + case 't': test_mode = TRUE; break; |
| 119 | + case 's': init_sample = TRUE; break; |
| 120 | + case 'n': counter = atoi(optarg); break; |
| 121 | + case '#': DBUG_PUSH(optarg); break; |
| 122 | + case 'V': banner(); exit(EXIT_SUCCESS); |
| 123 | + case '?': usage(); |
| 124 | + default: usage(); |
| 125 | + } |
| 126 | + } |
| 127 | + banner(); |
| 128 | + if (test_mode) { |
| 129 | + DBUG_PRINT("", ("_nilp()@%p, main()@%p", _nilp, main)); |
| 130 | + test_pre(); |
| 131 | + test_number(); |
| 132 | + test_gc(); |
| 133 | + test_cons(); |
| 134 | + test_atom(); |
| 135 | + test_emit(); |
| 136 | + } |
| 137 | + if (init_sample) { |
| 138 | + int limit = 100; |
| 139 | + int budget = 1000000; |
| 140 | + int n; |
| 141 | + CONFIG* cfg = new_configuration(limit); |
| 142 | + |
| 143 | + tick_init(); |
| 144 | + test_sample(cfg); |
| 145 | + start_ticker(cfg, counter); |
| 146 | + DBUG_PRINT("", ("--begin--")); |
| 147 | + TRACE(printf("sample running with %d queue limit and %d budget\n", limit, budget)); |
| 148 | + sample_done = FALSE; |
| 149 | + do { |
| 150 | + n = run_configuration(cfg, budget); |
| 151 | + if (cfg->q_count > 0) { |
| 152 | + TRACE(printf("queue length %d with %d budget remaining\n", cfg->q_count, n)); |
| 153 | + } |
| 154 | + if (cfg->t_count > 0) { |
| 155 | + usleep(TICK_FREQ / 10); /* delayed messages pending... sleep for a while */ |
| 156 | + } |
| 157 | + } while ((cfg->q_count < cfg->q_limit) && !sample_done); |
| 158 | + DBUG_PRINT("", ("n=%d q_count=%d q_limit=%d t_count=%d sample_done=%s", |
| 159 | + n, cfg->q_count, cfg->q_limit, cfg->t_count, (sample_done ? "TRUE" : "FALSE"))); |
| 160 | + DBUG_PRINT("", ("--end--")); |
| 161 | + report_actor_usage(cfg); |
| 162 | + } |
| 163 | + report_cons_stats(); |
| 164 | + DBUG_RETURN (exit(EXIT_SUCCESS), 0); |
| 165 | +} |
0 commit comments