Subject | Hash | Author | Date (UTC) |
---|---|---|---|
Improved the amalgation build | 4be0d720517e70920c7b716f95babc63df1f4ffa | lep | 2018-12-31 14:50:05 |
Added missing new tests | c5c6dab555bec81e6a7b419ea88d195836b3762f | lep | 2018-12-30 18:40:02 |
A bit better error message for wrong typed array index | ca37eb28822952a4ab3e58488b710317691d16a9 | lep | 2018-12-23 12:01:18 |
Also add git version to release build | 2762d5e5f011aff820bbbbe87ae96f84f006c150 | lep | 2018-12-22 23:54:23 |
Pass cflags to release build | 06b251bf0d4871df3e984aeac3e81e1bd03a5912 | lep | 2018-12-22 22:59:02 |
For release build make amalgation | 700190b5d66996bdec2a7916faed1f85e799e308 | lep | 2018-12-22 20:22:06 |
Power of 2 hashing | 065325daf390f5217310cbd5f19989a774af56c0 | lep | 2018-12-22 19:45:21 |
Small cleanup | 48f7c95157d71e12b4ecea13315b6b4c144fc629 | lep | 2018-12-09 20:23:53 |
Increased types hashtable size | 8970d5c4bb8f9e4640f4c6a1805cf69369ebaea3 | lep | 2018-12-07 18:13:17 |
Fixed some warnings. | 334a10dc8faad2fa19eed06834273bff438f3955 | lep | 2018-11-07 22:45:22 |
Optimized ht_put by not calling ht_lookup. | 4a2c4d293b719c939b4d8f357adcc04ef26b1cbb | lep | 2018-11-07 20:51:00 |
Only add globals to uninitialized globals. | efb384fb661e08a855a5861189bf9409ebf9f557 | lep | 2018-11-07 14:56:38 |
Added unitialized check for globals. | d8a909d8ac08cc233f5cd988afac043cbaeb1b4e | lep | 2018-11-06 19:43:57 |
Fixed off-by-one error in str_append. | b458eb97a71bad87bbbbef610009da40e0dbf855 | lep | 2018-11-01 12:26:48 |
Added modulo operator. | 70b4c5117a0b84cddd0c35e07a47e3b2aaf847b8 | lep | 2018-08-09 19:46:14 |
realloc returns the new pointer... | c15eac9a4c2c2531a256125bc70272edbbf1d036 | lep | 2018-07-24 20:03:41 |
Track blocks | d2763ae8473a1c699aa2e5605922e4b500c83ed4 | lep | 2018-07-22 13:28:40 |
Cross compile and strip under FreeBSD | 296bd56c1347afb7a20337e02574f9196b48317a | lep | 2018-07-22 11:55:29 |
Track opening/closing blocks. | 49b23df64b209106cce92e417ee13ecebb0bc009 | lep | 2018-07-09 09:37:01 |
Replace strncat with str_append. | ad968e040f315ed3cf6580e46587342897839529 | lep | 2018-03-21 13:53:11 |
File | Lines added | Lines deleted |
---|---|---|
Makefile | 1 | 1 |
grammar.y | 2 | 2 |
misc.h | 15 | 0 |
File Makefile changed (mode: 100644) (index 5052cac..f405558) | |||
... | ... | clean-prof-files: ## Cleans all profiling files | |
86 | 86 | pjass.exe: CFLAGS=-O3 -march=native | pjass.exe: CFLAGS=-O3 -march=native |
87 | 87 | pjass.exe: CC=mingw32-gcc | pjass.exe: CC=mingw32-gcc |
88 | 88 | pjass.exe: $(SRC) main.c token.yy.c grammar.tab.c | pjass.exe: $(SRC) main.c token.yy.c grammar.tab.c |
89 | find $(SRC) main.c | awk '{print "#include \"" $$1 "\""}' | $(CC) $(CFLAGS) -x c -o pjass.exe - token.yy.c grammar.tab.c -DVERSIONSTR="\"git-$(VERSION)\"" | ||
89 | find $^ | awk '{ print "#include \"" $$1 "\""}' | $(CC) $(CFLAGS) -x c -o $@ - -DVERSIONSTR="\"git-$(VERSION)\"" -DPJASS_AMALGATION | ||
90 | 90 | ||
91 | 91 | src-release: pjass-git-$(VERSION)-src.zip ## Builds the source zipball | src-release: pjass-git-$(VERSION)-src.zip ## Builds the source zipball |
92 | 92 | binary-release: pjass.exe pjass-git-$(VERSION).zip ## Builds the exe zipball | binary-release: pjass.exe pjass-git-$(VERSION).zip ## Builds the exe zipball |
File grammar.y changed (mode: 100644) (index b715c3c..56d67f5) | |||
11 | 11 | #include "misc.h" | #include "misc.h" |
12 | 12 | #include "blocks.h" | #include "blocks.h" |
13 | 13 | ||
14 | |||
15 | #define YYSTYPE union node | ||
16 | 14 | #define YYMAXDEPTH 100000 | #define YYMAXDEPTH 100000 |
17 | 15 | #define YYDEBUG 1 | #define YYDEBUG 1 |
18 | 16 | ||
19 | 17 | %} | %} |
20 | 18 | ||
19 | %define api.value.type {union node} | ||
20 | |||
21 | 21 | %token IF | %token IF |
22 | 22 | %token THEN | %token THEN |
23 | 23 | %token TYPE | %token TYPE |
File misc.h changed (mode: 100644) (index 4676171..f9a7cae) | |||
20 | 20 | ||
21 | 21 | #define BUFSIZE (16384) | #define BUFSIZE (16384) |
22 | 22 | ||
23 | /* | ||
24 | For some reason flex produces the exact same #ifndef block in the .h and | ||
25 | the .c file except for these three defines which works out in the normal | ||
26 | build but not in the amalagamation. | ||
27 | We don't even need this ifdef as it builds w/o errors but this seems a | ||
28 | bit cleaner. | ||
29 | */ | ||
30 | #ifdef PJASS_AMALGATION | ||
31 | |||
32 | #define YY_BUFFER_NEW 0 | ||
33 | #define YY_BUFFER_NORMAL 1 | ||
34 | #define YY_BUFFER_EOF_PENDING 2 | ||
35 | |||
36 | #endif | ||
37 | |||
23 | 38 | union node { | union node { |
24 | 39 | const char *str; | const char *str; |
25 | 40 | int ival; | int ival; |