2012-04-09 10:42:06 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2012
|
|
|
|
* Dale Weiler
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
|
|
* this software and associated documentation files (the "Software"), to deal in
|
|
|
|
* the Software without restriction, including without limitation the rights to
|
|
|
|
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
|
|
* of the Software, and to permit persons to whom the Software is furnished to do
|
|
|
|
* so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
|
|
* copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
* SOFTWARE.
|
|
|
|
*/
|
|
|
|
#include <limits.h>
|
2012-04-09 23:00:13 +00:00
|
|
|
#include <stdlib.h>
|
2012-04-10 00:10:52 +00:00
|
|
|
#include <string.h>
|
2012-04-11 16:13:31 +00:00
|
|
|
#include <ctype.h>
|
2012-04-09 10:42:06 +00:00
|
|
|
#include "gmqcc.h"
|
2012-04-09 11:45:20 +00:00
|
|
|
|
2012-04-09 23:00:13 +00:00
|
|
|
/*
|
|
|
|
* These are not lexical tokens: These are parse tree types. Most people
|
|
|
|
* perform tokenizing on language punctuation which is wrong. That stuff
|
|
|
|
* is technically already tokenized, it just needs to be parsed into a tree
|
|
|
|
*/
|
|
|
|
#define PARSE_TYPE_DO 0
|
|
|
|
#define PARSE_TYPE_ELSE 1
|
|
|
|
#define PARSE_TYPE_IF 2
|
|
|
|
#define PARSE_TYPE_WHILE 3
|
|
|
|
#define PARSE_TYPE_BREAK 4
|
|
|
|
#define PARSE_TYPE_CONTINUE 5
|
|
|
|
#define PARSE_TYPE_RETURN 6
|
|
|
|
#define PARSE_TYPE_GOTO 7
|
2012-04-10 01:32:24 +00:00
|
|
|
#define PARSE_TYPE_FOR 8
|
2012-04-10 00:18:49 +00:00
|
|
|
#define PARSE_TYPE_VOID 9
|
|
|
|
#define PARSE_TYPE_STRING 10
|
|
|
|
#define PARSE_TYPE_FLOAT 11
|
|
|
|
#define PARSE_TYPE_VECTOR 12
|
|
|
|
#define PARSE_TYPE_ENTITY 13
|
|
|
|
#define PARSE_TYPE_LAND 14
|
|
|
|
#define PARSE_TYPE_LOR 15
|
|
|
|
#define PARSE_TYPE_LTEQ 16
|
|
|
|
#define PARSE_TYPE_GTEQ 17
|
|
|
|
#define PARSE_TYPE_EQEQ 18
|
|
|
|
#define PARSE_TYPE_LNEQ 19
|
|
|
|
#define PARSE_TYPE_COMMA 20
|
|
|
|
#define PARSE_TYPE_LNOT 21
|
|
|
|
#define PARSE_TYPE_STAR 22
|
|
|
|
#define PARSE_TYPE_DIVIDE 23
|
|
|
|
#define PARSE_TYPE_LPARTH 24
|
|
|
|
#define PARSE_TYPE_RPARTH 25
|
|
|
|
#define PARSE_TYPE_MINUS 26
|
|
|
|
#define PARSE_TYPE_ADD 27
|
|
|
|
#define PARSE_TYPE_EQUAL 28
|
2012-04-10 01:32:24 +00:00
|
|
|
#define PARSE_TYPE_LBS 29
|
|
|
|
#define PARSE_TYPE_RBS 30
|
|
|
|
#define PARSE_TYPE_ELIP 31
|
2012-04-10 00:39:54 +00:00
|
|
|
#define PARSE_TYPE_DOT 32
|
|
|
|
#define PARSE_TYPE_LT 33
|
|
|
|
#define PARSE_TYPE_GT 34
|
|
|
|
#define PARSE_TYPE_BAND 35
|
|
|
|
#define PARSE_TYPE_BOR 36
|
2012-04-10 01:32:24 +00:00
|
|
|
#define PARSE_TYPE_DONE 37
|
2012-04-10 02:44:06 +00:00
|
|
|
#define PARSE_TYPE_IDENT 38
|
2012-04-09 23:00:13 +00:00
|
|
|
|
2012-04-11 07:54:01 +00:00
|
|
|
int parse[PARSE_TYPE_IDENT] = {
|
|
|
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
|
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
|
|
|
0,0,0,0,0,0,0,0
|
|
|
|
};
|
|
|
|
|
2012-04-09 23:00:13 +00:00
|
|
|
/*
|
|
|
|
* Adds a parse type to the parse tree, this is where all the hard
|
|
|
|
* work actually begins.
|
|
|
|
*/
|
|
|
|
#define PARSE_TREE_ADD(X) \
|
|
|
|
do { \
|
|
|
|
parsetree->next = mem_a(sizeof(struct parsenode)); \
|
|
|
|
parsetree->next->next = NULL; \
|
|
|
|
parsetree->next->type = (X); \
|
|
|
|
parsetree = parsetree->next; \
|
|
|
|
} while (0)
|
2012-04-09 14:14:26 +00:00
|
|
|
|
2012-04-11 07:54:01 +00:00
|
|
|
#define PARSE_TREE_CHK(X,Y,Z) \
|
|
|
|
do { \
|
|
|
|
if(parse[X]) { \
|
|
|
|
error(ERROR_PARSE, "Expected %c for %c\n", Y, Z); \
|
|
|
|
exit (1); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define PARSE_TREE_PUT(X) do { parse[X] = 1; } while (0)
|
|
|
|
|
2012-04-10 01:32:24 +00:00
|
|
|
/*
|
2012-04-10 09:02:58 +00:00
|
|
|
* This is all the punctuation handled in the parser, these don't
|
2012-04-10 01:32:24 +00:00
|
|
|
* need tokens, they're already tokens.
|
|
|
|
*/
|
|
|
|
#if 0
|
2012-04-09 14:14:26 +00:00
|
|
|
"&&", "||", "<=", ">=", "==", "!=", ";", ",", "!", "*",
|
2012-04-09 23:00:13 +00:00
|
|
|
"/" , "(" , ")" , "-" , "+" , "=" , "[" , "]", "{", "}", "...",
|
2012-04-10 01:32:24 +00:00
|
|
|
"." , "<" , ">" , "&" , "|" ,
|
|
|
|
#endif
|
2012-04-09 14:14:26 +00:00
|
|
|
|
2012-04-10 05:03:52 +00:00
|
|
|
#define STORE(X) { \
|
|
|
|
printf(X); \
|
|
|
|
break; \
|
2012-04-09 23:00:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void parse_debug(struct parsenode *tree) {
|
2012-04-10 03:46:59 +00:00
|
|
|
while (tree) {
|
2012-04-09 23:00:13 +00:00
|
|
|
switch (tree->type) {
|
2012-04-10 00:23:40 +00:00
|
|
|
case PARSE_TYPE_ADD: STORE("OPERATOR: ADD \n");
|
|
|
|
case PARSE_TYPE_BAND: STORE("OPERATOR: BITAND \n");
|
|
|
|
case PARSE_TYPE_BOR: STORE("OPERATOR: BITOR \n");
|
|
|
|
case PARSE_TYPE_COMMA: STORE("OPERATOR: SEPERATOR\n");
|
|
|
|
case PARSE_TYPE_DOT: STORE("OPERATOR: DOT\n");
|
|
|
|
case PARSE_TYPE_DIVIDE: STORE("OPERATOR: DIVIDE\n");
|
|
|
|
case PARSE_TYPE_EQUAL: STORE("OPERATOR: ASSIGNMENT\n");
|
|
|
|
|
|
|
|
case PARSE_TYPE_BREAK: STORE("STATEMENT: BREAK \n");
|
|
|
|
case PARSE_TYPE_CONTINUE: STORE("STATEMENT: CONTINUE\n");
|
|
|
|
case PARSE_TYPE_GOTO: STORE("STATEMENT: GOTO\n");
|
2012-04-10 00:39:54 +00:00
|
|
|
case PARSE_TYPE_RETURN: STORE("STATEMENT: RETURN\n");
|
|
|
|
case PARSE_TYPE_DONE: STORE("STATEMENT: DONE\n");
|
2012-04-09 23:00:13 +00:00
|
|
|
|
2012-04-10 02:44:06 +00:00
|
|
|
case PARSE_TYPE_VOID: STORE("DECLTYPE: VOID\n");
|
|
|
|
case PARSE_TYPE_STRING: STORE("DECLTYPE: STRING\n");
|
2012-04-10 00:23:40 +00:00
|
|
|
case PARSE_TYPE_ELIP: STORE("DECLTYPE: VALIST\n");
|
|
|
|
case PARSE_TYPE_ENTITY: STORE("DECLTYPE: ENTITY\n");
|
|
|
|
case PARSE_TYPE_FLOAT: STORE("DECLTYPE: FLOAT\n");
|
2012-04-10 02:44:06 +00:00
|
|
|
case PARSE_TYPE_VECTOR: STORE("DECLTYPE: VECTOR\n");
|
2012-04-10 00:23:40 +00:00
|
|
|
|
|
|
|
case PARSE_TYPE_GT: STORE("TEST: GREATER THAN\n");
|
|
|
|
case PARSE_TYPE_LT: STORE("TEST: LESS THAN\n");
|
|
|
|
case PARSE_TYPE_GTEQ: STORE("TEST: GREATER THAN OR EQUAL\n");
|
|
|
|
case PARSE_TYPE_LTEQ: STORE("TEST: LESS THAN OR EQUAL\n");
|
|
|
|
case PARSE_TYPE_LNEQ: STORE("TEST: NOT EQUAL\n");
|
|
|
|
case PARSE_TYPE_EQEQ: STORE("TEST: EQUAL-EQUAL\n");
|
|
|
|
|
|
|
|
case PARSE_TYPE_LBS: STORE("BLOCK: BEG\n");
|
|
|
|
case PARSE_TYPE_RBS: STORE("BLOCK: END\n");
|
2012-04-10 00:39:54 +00:00
|
|
|
case PARSE_TYPE_ELSE: STORE("BLOCK: ELSE\n");
|
|
|
|
case PARSE_TYPE_IF: STORE("BLOCK: IF\n");
|
2012-04-09 23:00:13 +00:00
|
|
|
|
2012-04-10 00:23:40 +00:00
|
|
|
case PARSE_TYPE_LAND: STORE("LOGICAL: AND\n");
|
|
|
|
case PARSE_TYPE_LNOT: STORE("LOGICAL: NOT\n");
|
|
|
|
case PARSE_TYPE_LOR: STORE("LOGICAL: OR\n");
|
2012-04-09 23:00:13 +00:00
|
|
|
|
2012-04-10 00:23:40 +00:00
|
|
|
case PARSE_TYPE_LPARTH: STORE("PARTH: BEG\n");
|
|
|
|
case PARSE_TYPE_RPARTH: STORE("PARTH: END\n");
|
2012-04-09 23:00:13 +00:00
|
|
|
|
2012-04-10 00:39:54 +00:00
|
|
|
case PARSE_TYPE_WHILE: STORE("LOOP: WHILE\n");
|
2012-04-10 00:23:40 +00:00
|
|
|
case PARSE_TYPE_FOR: STORE("LOOP: FOR\n");
|
|
|
|
case PARSE_TYPE_DO: STORE("LOOP: DO\n");
|
2012-04-09 23:00:13 +00:00
|
|
|
|
2012-04-10 04:23:28 +00:00
|
|
|
//case PARSE_TYPE_IDENT: STORE("IDENT: ???\n");
|
2012-04-09 23:00:13 +00:00
|
|
|
}
|
|
|
|
tree = tree->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2012-04-10 08:20:15 +00:00
|
|
|
* Performs a parse operation: This is a macro to prevent bugs, if the
|
|
|
|
* calls to lex_token are'nt exactly enough to feed to the end of the
|
|
|
|
* actual lexees for the current thing that is being parsed, the state
|
|
|
|
* of the next iteration in the creation of the parse tree will be wrong
|
|
|
|
* and everything will fail.
|
2012-04-09 23:00:13 +00:00
|
|
|
*/
|
2012-04-10 08:20:15 +00:00
|
|
|
#define PARSE_PERFORM(X,C) { \
|
2012-04-10 09:02:58 +00:00
|
|
|
token = lex_token(file); \
|
|
|
|
{ C } \
|
|
|
|
while (token != '\n') { \
|
|
|
|
token = lex_token(file); \
|
|
|
|
} \
|
|
|
|
PARSE_TREE_ADD(X); \
|
|
|
|
break; \
|
2012-04-09 23:00:13 +00:00
|
|
|
}
|
|
|
|
|
2012-04-10 03:12:42 +00:00
|
|
|
void parse_clear(struct parsenode *tree) {
|
|
|
|
if (!tree) return;
|
|
|
|
struct parsenode *temp = NULL;
|
|
|
|
while (tree != NULL) {
|
|
|
|
temp = tree;
|
|
|
|
tree = tree->next;
|
|
|
|
mem_d (temp);
|
|
|
|
}
|
2012-04-10 05:03:52 +00:00
|
|
|
|
|
|
|
/* free any potential typedefs */
|
|
|
|
typedef_clear();
|
2012-04-10 03:12:42 +00:00
|
|
|
}
|
|
|
|
|
2012-04-10 08:20:15 +00:00
|
|
|
/*
|
|
|
|
* Generates a parse tree out of the lexees generated by the lexer. This
|
|
|
|
* is where the tree is built. This is where valid check is performed.
|
|
|
|
*/
|
|
|
|
int parse_tree(struct lex_file *file) {
|
2012-04-09 23:00:13 +00:00
|
|
|
struct parsenode *parsetree = NULL;
|
|
|
|
struct parsenode *parseroot = NULL;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Allocate memory for our parse tree:
|
|
|
|
* the parse tree is just a singly linked list which will contain
|
|
|
|
* all the data for code generation.
|
|
|
|
*/
|
|
|
|
if (!parseroot) {
|
|
|
|
parseroot = mem_a(sizeof(struct parsenode));
|
|
|
|
if (!parseroot)
|
|
|
|
return error(ERROR_INTERNAL, "Ran out of memory", " ");
|
2012-04-10 03:46:59 +00:00
|
|
|
parsetree = parseroot;
|
|
|
|
parsetree->type = -1; /* not a valid type -- root element */
|
2012-04-09 23:00:13 +00:00
|
|
|
}
|
|
|
|
|
2012-04-09 10:42:06 +00:00
|
|
|
int token = 0;
|
2012-04-09 13:36:16 +00:00
|
|
|
while ((token = lex_token(file)) != ERROR_LEX && \
|
|
|
|
token != ERROR_COMPILER && \
|
|
|
|
token != ERROR_INTERNAL && \
|
|
|
|
token != ERROR_PARSE && \
|
|
|
|
token != ERROR_PREPRO && file->length >= 0) {
|
2012-04-09 10:42:06 +00:00
|
|
|
switch (token) {
|
|
|
|
case TOKEN_IF:
|
2012-04-11 07:54:01 +00:00
|
|
|
token = lex_token(file);
|
|
|
|
if (token != '(')
|
|
|
|
error(ERROR_PARSE, "Expected `(` on if statement:\n");
|
2012-04-09 23:00:13 +00:00
|
|
|
PARSE_TREE_ADD(PARSE_TYPE_IF);
|
2012-04-11 07:54:01 +00:00
|
|
|
PARSE_TREE_ADD(PARSE_TYPE_LPARTH);
|
|
|
|
PARSE_TREE_CHK(PARSE_TYPE_LPARTH, ')', '(');
|
|
|
|
PARSE_TREE_PUT(PARSE_TYPE_LPARTH);
|
2012-04-09 23:00:13 +00:00
|
|
|
break;
|
|
|
|
case TOKEN_ELSE:
|
2012-04-10 04:23:28 +00:00
|
|
|
token = lex_token(file);
|
2012-04-09 23:00:13 +00:00
|
|
|
PARSE_TREE_ADD(PARSE_TYPE_ELSE);
|
2012-04-09 10:42:06 +00:00
|
|
|
break;
|
2012-04-09 23:00:13 +00:00
|
|
|
case TOKEN_FOR:
|
2012-04-10 08:20:15 +00:00
|
|
|
//token = lex_token(file);
|
2012-04-10 04:23:28 +00:00
|
|
|
while ((token == ' ' || token == '\n') && file->length >= 0)
|
|
|
|
token = lex_token(file);
|
2012-04-10 08:20:15 +00:00
|
|
|
PARSE_TREE_ADD(PARSE_TYPE_FOR);
|
2012-04-09 23:00:13 +00:00
|
|
|
break;
|
2012-04-10 00:39:54 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This is a quick and easy way to do typedefs at parse time
|
|
|
|
* all power is in typedef_add(), in typedef.c. We handle
|
|
|
|
* the tokens accordingly here.
|
|
|
|
*/
|
2012-04-10 00:10:52 +00:00
|
|
|
case TOKEN_TYPEDEF: {
|
2012-04-10 09:02:58 +00:00
|
|
|
char *f,*t;
|
|
|
|
|
2012-04-10 00:10:52 +00:00
|
|
|
token = lex_token(file);
|
2012-04-10 09:02:58 +00:00
|
|
|
token = lex_token(file); f = util_strdup(file->lastok);
|
2012-04-10 00:10:52 +00:00
|
|
|
token = lex_token(file);
|
2012-04-10 09:02:58 +00:00
|
|
|
token = lex_token(file); t = util_strdup(file->lastok);
|
2012-04-10 00:10:52 +00:00
|
|
|
|
|
|
|
typedef_add(f, t);
|
|
|
|
|
2012-04-10 09:02:58 +00:00
|
|
|
mem_d(f);
|
|
|
|
mem_d(t);
|
2012-04-10 05:03:52 +00:00
|
|
|
|
|
|
|
while (token != '\n')
|
|
|
|
token = lex_token(file);
|
2012-04-10 00:10:52 +00:00
|
|
|
break;
|
|
|
|
}
|
2012-04-10 08:20:15 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Returns are addable as-is, statement checking is during
|
|
|
|
* the actual parse tree check.
|
|
|
|
*/
|
|
|
|
case TOKEN_RETURN:
|
2012-04-11 07:54:01 +00:00
|
|
|
token = lex_token(file);
|
2012-04-10 08:20:15 +00:00
|
|
|
PARSE_TREE_ADD(PARSE_TYPE_RETURN);
|
|
|
|
break;
|
2012-04-11 07:54:01 +00:00
|
|
|
case TOKEN_CONTINUE:
|
|
|
|
PARSE_TREE_ADD(PARSE_TYPE_CONTINUE);
|
|
|
|
break;
|
2012-04-11 16:13:31 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* DO loops work like so:
|
|
|
|
* __do_loop_beg:
|
|
|
|
* IFNOT __do_loop_beg#
|
|
|
|
* GOTO __do_loop_end
|
|
|
|
* INSTR1
|
|
|
|
* INSTR2
|
|
|
|
* ......
|
|
|
|
* GOTO __do_loop_beg
|
|
|
|
*/
|
|
|
|
|
2012-04-10 08:20:15 +00:00
|
|
|
case TOKEN_DO: PARSE_PERFORM(PARSE_TYPE_DO, {});
|
|
|
|
case TOKEN_WHILE: PARSE_PERFORM(PARSE_TYPE_WHILE, {});
|
|
|
|
case TOKEN_BREAK: PARSE_PERFORM(PARSE_TYPE_BREAK, {});
|
|
|
|
case TOKEN_GOTO: PARSE_PERFORM(PARSE_TYPE_GOTO, {});
|
|
|
|
case TOKEN_VOID: PARSE_PERFORM(PARSE_TYPE_VOID, {});
|
|
|
|
case TOKEN_STRING: PARSE_PERFORM(PARSE_TYPE_STRING, {});
|
|
|
|
case TOKEN_FLOAT: PARSE_PERFORM(PARSE_TYPE_FLOAT, {});
|
|
|
|
case TOKEN_VECTOR: PARSE_PERFORM(PARSE_TYPE_VECTOR, {});
|
|
|
|
case TOKEN_ENTITY: PARSE_PERFORM(PARSE_TYPE_ENTITY, {});
|
2012-04-09 14:14:26 +00:00
|
|
|
|
2012-04-09 23:00:13 +00:00
|
|
|
/*
|
|
|
|
* From here down is all language punctuation: There is no
|
|
|
|
* need to actual create tokens from these because they're already
|
|
|
|
* tokenized as these individual tokens (which are in a special area
|
|
|
|
* of the ascii table which doesn't conflict with our other tokens
|
2012-04-10 00:39:54 +00:00
|
|
|
* which are higer than the ascii table.)
|
2012-04-09 23:00:13 +00:00
|
|
|
*/
|
2012-04-10 01:32:24 +00:00
|
|
|
case '#':
|
2012-04-11 16:13:31 +00:00
|
|
|
token = lex_token(file); /* skip '#' */
|
|
|
|
while (isspace(token)) {
|
|
|
|
if (token == '\n') {
|
|
|
|
return error(ERROR_PARSE, "Expected valid preprocessor directive after `#` %s\n");
|
|
|
|
}
|
|
|
|
token = lex_token(file); /* try again */
|
|
|
|
}
|
2012-04-10 01:32:24 +00:00
|
|
|
/*
|
2012-04-11 16:13:31 +00:00
|
|
|
* If we make it here we found a directive, the supported
|
|
|
|
* directives so far are #include.
|
2012-04-10 01:32:24 +00:00
|
|
|
*/
|
2012-04-11 16:13:31 +00:00
|
|
|
if (strncmp(file->lastok, "include", sizeof("include")) == 0) {
|
|
|
|
//lex_include("file");
|
|
|
|
/*
|
|
|
|
* We need to compose a name till we find either a
|
|
|
|
* '"',> or a <, (for includes), if we hit a '\n' then
|
|
|
|
* clearly the person miswrote the include.
|
|
|
|
*/
|
|
|
|
while (*file->lastok != '"' && token != '\n')
|
|
|
|
token = lex_token(file);
|
|
|
|
|
|
|
|
if (token == '\n')
|
|
|
|
return error(ERROR_PARSE, "Invalid use of include preprocessor directive: wanted #include \"file.h\"\n");
|
|
|
|
|
|
|
|
|
|
|
|
//lex_token(file);
|
|
|
|
//lex_token(file);
|
|
|
|
printf("include: %s\n", file->lastok);
|
|
|
|
}
|
|
|
|
|
2012-04-10 01:32:24 +00:00
|
|
|
/* skip all tokens to end of directive */
|
|
|
|
while (token != '\n')
|
|
|
|
token = lex_token(file);
|
|
|
|
break;
|
|
|
|
|
2012-04-10 03:46:59 +00:00
|
|
|
case '.':
|
2012-04-11 07:54:01 +00:00
|
|
|
//token = lex_token(file);
|
2012-04-10 03:46:59 +00:00
|
|
|
PARSE_TREE_ADD(PARSE_TYPE_DOT);
|
|
|
|
break;
|
2012-04-10 02:44:06 +00:00
|
|
|
case '(':
|
2012-04-11 07:54:01 +00:00
|
|
|
//token = lex_token(file);
|
|
|
|
PARSE_TREE_PUT(PARSE_TYPE_LPARTH);
|
2012-04-10 02:44:06 +00:00
|
|
|
PARSE_TREE_ADD(PARSE_TYPE_LPARTH);
|
|
|
|
break;
|
|
|
|
case ')':
|
2012-04-11 07:54:01 +00:00
|
|
|
//token = lex_token(file);
|
|
|
|
parse[PARSE_TYPE_LPARTH] = 0;
|
|
|
|
PARSE_TREE_PUT(PARSE_TYPE_RPARTH);
|
2012-04-10 02:44:06 +00:00
|
|
|
PARSE_TREE_ADD(PARSE_TYPE_RPARTH);
|
|
|
|
break;
|
|
|
|
|
2012-04-10 09:02:58 +00:00
|
|
|
case '&': /* & */
|
2012-04-09 14:14:26 +00:00
|
|
|
token = lex_token(file);
|
|
|
|
if (token == '&') { /* && */
|
|
|
|
token = lex_token(file);
|
2012-04-09 23:00:13 +00:00
|
|
|
PARSE_TREE_ADD(PARSE_TYPE_LAND);
|
2012-04-09 23:47:20 +00:00
|
|
|
break;
|
2012-04-09 14:14:26 +00:00
|
|
|
}
|
2012-04-09 23:00:13 +00:00
|
|
|
PARSE_TREE_ADD(PARSE_TYPE_BAND);
|
2012-04-09 14:14:26 +00:00
|
|
|
break;
|
2012-04-10 09:02:58 +00:00
|
|
|
case '|': /* | */
|
2012-04-09 14:14:26 +00:00
|
|
|
token = lex_token(file);
|
|
|
|
if (token == '|') { /* || */
|
|
|
|
token = lex_token(file);
|
2012-04-09 23:00:13 +00:00
|
|
|
PARSE_TREE_ADD(PARSE_TYPE_LOR);
|
2012-04-09 23:47:20 +00:00
|
|
|
break;
|
2012-04-09 14:14:26 +00:00
|
|
|
}
|
2012-04-09 23:00:13 +00:00
|
|
|
PARSE_TREE_ADD(PARSE_TYPE_BOR);
|
2012-04-09 14:14:26 +00:00
|
|
|
break;
|
2012-04-10 09:02:58 +00:00
|
|
|
case '!': /* ! */
|
2012-04-09 14:14:26 +00:00
|
|
|
token = lex_token(file);
|
|
|
|
if (token == '=') { /* != */
|
|
|
|
token = lex_token(file);
|
2012-04-09 23:00:13 +00:00
|
|
|
PARSE_TREE_ADD(PARSE_TYPE_LNEQ);
|
2012-04-09 23:47:20 +00:00
|
|
|
break;
|
2012-04-09 14:14:26 +00:00
|
|
|
}
|
2012-04-09 23:00:13 +00:00
|
|
|
PARSE_TREE_ADD(PARSE_TYPE_LNOT);
|
2012-04-09 14:14:26 +00:00
|
|
|
break;
|
2012-04-10 09:02:58 +00:00
|
|
|
case '<': /* < */
|
2012-04-09 14:14:26 +00:00
|
|
|
token = lex_token(file);
|
|
|
|
if (token == '=') { /* <= */
|
|
|
|
token = lex_token(file);
|
2012-04-09 23:00:13 +00:00
|
|
|
PARSE_TREE_ADD(PARSE_TYPE_LTEQ);
|
2012-04-09 23:47:20 +00:00
|
|
|
break;
|
2012-04-09 14:14:26 +00:00
|
|
|
}
|
2012-04-09 23:00:13 +00:00
|
|
|
PARSE_TREE_ADD(PARSE_TYPE_LT);
|
2012-04-09 14:14:26 +00:00
|
|
|
break;
|
2012-04-10 09:02:58 +00:00
|
|
|
case '>': /* > */
|
2012-04-09 14:14:26 +00:00
|
|
|
token = lex_token(file);
|
|
|
|
if (token == '=') { /* >= */
|
|
|
|
token = lex_token(file);
|
2012-04-09 23:00:13 +00:00
|
|
|
PARSE_TREE_ADD(PARSE_TYPE_GTEQ);
|
2012-04-09 23:47:20 +00:00
|
|
|
break;
|
2012-04-09 14:14:26 +00:00
|
|
|
}
|
2012-04-09 23:00:13 +00:00
|
|
|
PARSE_TREE_ADD(PARSE_TYPE_GT);
|
2012-04-09 14:14:26 +00:00
|
|
|
break;
|
2012-04-10 09:02:58 +00:00
|
|
|
case '=': /* = */
|
2012-04-09 14:14:26 +00:00
|
|
|
token = lex_token(file);
|
|
|
|
if (token == '=') { /* == */
|
|
|
|
token = lex_token(file);
|
2012-04-09 23:00:13 +00:00
|
|
|
PARSE_TREE_ADD(PARSE_TYPE_EQEQ);
|
2012-04-09 23:47:20 +00:00
|
|
|
break;
|
2012-04-09 14:14:26 +00:00
|
|
|
}
|
2012-04-09 23:00:13 +00:00
|
|
|
PARSE_TREE_ADD(PARSE_TYPE_EQUAL);
|
2012-04-09 14:14:26 +00:00
|
|
|
break;
|
|
|
|
case ';':
|
|
|
|
token = lex_token(file);
|
2012-04-09 23:00:13 +00:00
|
|
|
PARSE_TREE_ADD(PARSE_TYPE_DONE);
|
2012-04-09 14:14:26 +00:00
|
|
|
break;
|
|
|
|
case '-':
|
|
|
|
token = lex_token(file);
|
2012-04-09 23:00:13 +00:00
|
|
|
PARSE_TREE_ADD(PARSE_TYPE_MINUS);
|
2012-04-09 14:14:26 +00:00
|
|
|
break;
|
|
|
|
case '+':
|
|
|
|
token = lex_token(file);
|
2012-04-09 23:00:13 +00:00
|
|
|
PARSE_TREE_ADD(PARSE_TYPE_ADD);
|
|
|
|
break;
|
|
|
|
case '{':
|
|
|
|
token = lex_token(file);
|
|
|
|
PARSE_TREE_ADD(PARSE_TYPE_LBS);
|
|
|
|
break;
|
|
|
|
case '}':
|
|
|
|
token = lex_token(file);
|
|
|
|
PARSE_TREE_ADD(PARSE_TYPE_RBS);
|
2012-04-09 14:14:26 +00:00
|
|
|
break;
|
2012-04-10 02:44:06 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* TODO: Fix lexer to spit out ( ) as tokens, it seems the
|
|
|
|
* using '(' or ')' in parser doesn't work properly unless
|
|
|
|
* there are spaces before them to allow the lexer to properly
|
|
|
|
* seperate identifiers. -- otherwise it eats all of it.
|
|
|
|
*/
|
|
|
|
case LEX_IDENT:
|
|
|
|
token = lex_token(file);
|
|
|
|
PARSE_TREE_ADD(PARSE_TYPE_IDENT);
|
|
|
|
break;
|
2012-04-09 10:42:06 +00:00
|
|
|
}
|
|
|
|
}
|
2012-04-09 23:00:13 +00:00
|
|
|
parse_debug(parseroot);
|
2012-04-09 10:42:06 +00:00
|
|
|
lex_reset(file);
|
2012-04-10 03:12:42 +00:00
|
|
|
parse_clear(parseroot);
|
2012-04-09 10:42:06 +00:00
|
|
|
return 1;
|
|
|
|
}
|