blob: c95e22fc35675871e4c3f0e4f6b6e64167b5482e (
plain)
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
|
/* This is the "top-level" file for the *linked-into-the-compiler* parser.
See also main.c. (WDP 94/10)
*/
#include <stdio.h>
#include "hspincl.h"
#include "constants.h"
#include "utils.h"
/**********************************************************************
* *
* *
* The main program *
* *
* *
**********************************************************************/
extern long prog_argc;
extern char **prog_argv;
#define MAX_HSP_ARGS 64
long hsp_argc;
char *hsp_argv[MAX_HSP_ARGS]; /* sigh */
tree
hspmain()
{
int hsp_i, prog_i;
Lnil = mklnil(); /* The null list -- used in lsing, etc. */
all = mklnil(); /* This should be the list of all derivable types */
/* copy the args we're interested in (first char: comma)
to hsp_argv; arrange to point after the comma!
*/
hsp_i = 0;
for (prog_i = 0; prog_i < prog_argc; prog_i++) {
if (prog_argv[prog_i][0] == ',') {
hsp_argv[hsp_i] = &(prog_argv[prog_i][1]);
hsp_i++;
}
}
hsp_argc = hsp_i; /* set count */
process_args(hsp_argc, hsp_argv); /* HACK */
hash_init();
#ifdef HSP_DEBUG
fprintf(stderr,"input_file_dir=%s\n",input_file_dir);
#endif
yyinit();
if (yyparse() != 0) {
/* There was a syntax error. */
printf("\n");
exit(1);
}
return(root);
}
|