aboutsummaryrefslogtreecommitdiff
path: root/module/c (unfollow)
Commit message (Collapse)Author
2022-07-20Fixups in lex2Hugo Hörnquist
2022-07-16Cleanup in preprocessor2.Hugo Hörnquist
2022-07-15Fix nested #ifHugo Hörnquist
2022-07-14workHugo Hörnquist
2022-07-13Add C LALR parser.Hugo Hörnquist
2022-07-13Basis of token convertion.Hugo Hörnquist
2022-07-13Comment out typechecks on token stream.Hugo Hörnquist
Each such typecheck ran in linear time on the remaining tokens, which is a bit to much. Remove it, and hope that the code behaves. Some stats, from running make coverage GUILE=guile3 With typechecks --------------- Slow test: "Parameter expansion times", took 1.077431 Slow test: "Example 3, except part below", took 16.952855 Slow test: "True test", took 18.335534 Slow test: "Example 5", took 3.351126 Slow test: "Example 7", took 2.804212 -------------------------------------------------- Without typechecks ------------------ Slow test: "Example 3, except part below", took 12.863874 Slow test: "True test", took 14.016901 Slow test: "Example 5", took 2.166008 Slow test: "Example 7", took 2.252685
2022-07-13Clearen conditional status predicates.Hugo Hörnquist
2022-07-13Resolve #ifdef, #ifndef, #else, #endif.Hugo Hörnquist
2022-07-13Fix _Pragma, and non-standard pragma directives.Hugo Hörnquist
2022-07-13Stringification operator now escapes quotes and backslashes.Hugo Hörnquist
2022-07-13Add support for "other" in preprocessing-tokens.Hugo Hörnquist
2022-07-13Ensure #error works.Hugo Hörnquist
2022-07-13workHugo Hörnquist
2022-07-12Resolve # ## #Hugo Hörnquist
2022-07-12s/macro?/cpp-macro?/gHugo Hörnquist
Guile cried way to much about me overriding a core identifier.
2022-07-12workHugo Hörnquist
2022-07-11Remove linear update environment procedures.Hugo Hörnquist
2022-07-11Remove usage of zipper.Hugo Hörnquist
2022-07-11workHugo Hörnquist
2022-07-11Cleanup + fix __LINE__.Hugo Hörnquist
2022-07-11Fix whitespace for rest args.Hugo Hörnquist
2022-07-11Fix most of expand##.Hugo Hörnquist
2022-07-11Rewrite handel-preprocessing-tokens.Hugo Hörnquist
2022-07-10Fix #lineHugo Hörnquist
2022-07-10Resolve recursive macros.Hugo Hörnquist
2022-07-10workHugo Hörnquist
2022-07-09Extend type-clauses with not.Hugo Hörnquist
2022-07-07work.Hugo Hörnquist
2022-07-07Major work.Hugo Hörnquist
2022-07-07Add basic c evaluator.Hugo Hörnquist
2022-07-07C parser minor cleanup.Hugo Hörnquist
2022-07-07Fix escape sequences in chars and strings.Hugo Hörnquist
2022-07-07C parser add basic float support.Hugo Hörnquist
2022-07-07C parser add unary minus.Hugo Hörnquist
2022-07-07C-parser add strings.Hugo Hörnquist
2022-07-07C-parser #define without body.Hugo Hörnquist
2022-07-07Fix C order of operations.Hugo Hörnquist
2022-07-07Major work on c parser.Hugo Hörnquist
2022-06-23Centralize (almost) all exports to :export in define-module.Hugo Hörnquist
2022-06-22Rewrote define-define-peg-pattern.Hugo Hörnquist
Rewrote it to use define-syntax instead of define-macro. This should resove the weirdness around environment for eval (now compile). Also rename it to define-peg-pattern*.
2022-03-28Normalize errors.Hugo Hörnquist
2022-03-06Add missing (ice-9 format) imports.Hugo Hörnquist
2022-01-31Move stuff from calp/util to hnh/util.Hugo Hörnquist
This is the first (major) step in splitting the generally useful items into its own library.
2020-08-24Move util modules into calp module..Hugo Hörnquist
2020-08-18CPP, rename 'atom?' to 'immediate?'.Hugo Hörnquist
2020-07-24Reordering in (c cpp).Hugo Hörnquist
2020-07-24Remove some unused procedures.Hugo Hörnquist
2020-07-20Cleanup for cpp.Hugo Hörnquist
2020-07-20Split parse-cpp into multiple modules.Hugo Hörnquist