summaryrefslogtreecommitdiffstats
path: root/share
Commit message (Expand)AuthorAgeFilesLines
...
* matcher: redesign predicate pattern.Kaz Kylheku2021-02-063-35/+42
* matcher: left-to-right scoping for @(and).Kaz Kylheku2021-02-061-8/+4
* matcher: @(as) must always bind fresh variable.Kaz Kylheku2021-02-061-1/+16
* matcher: clean up var match.Kaz Kylheku2021-02-051-4/+6
* compiler: take advantage of new scoping in optimizer.Kaz Kylheku2021-02-051-14/+14
* matcher: back-reference Lisp variables.Kaz Kylheku2021-02-051-9/+18
* compiler: rewrite one peephole patern using @(with ...).Kaz Kylheku2021-02-051-8/+6
* matcher: rearrange match order of @(with).Kaz Kylheku2021-02-051-16/+20
* matcher: don't set flag in last case.Kaz Kylheku2021-02-051-12/+18
* compiler: new jump threading optimization case.Kaz Kylheku2021-02-051-0/+9
* compiler: optimize away discard register.Kaz Kylheku2021-02-051-33/+41
* matcher: lambda-match: bug: wrong variable tested.Kaz Kylheku2021-02-041-1/+1
* matcher: lambda-match: error diagnostics.Kaz Kylheku2021-02-041-14/+20
* matcher: misleading diagnostics.Kaz Kylheku2021-02-041-2/+2
* error: improve compiler error location reporting.Kaz Kylheku2021-02-041-8/+18
* matcher: add :match parameter macro.Kaz Kylheku2021-02-041-0/+13
* matcher: lambda-match: redoc, bugfix, test-casesKaz Kylheku2021-02-041-1/+6
* matcher: reimplementation of lambda-match.Kaz Kylheku2021-02-031-6/+98
* matcher: bugfix: bad hygiene in match-case.Kaz Kylheku2021-02-031-4/+6
* matcher: fix @(and/or) backreferencing issue.Kaz Kylheku2021-02-021-1/+6
* matcher: new @(with) operator.Kaz Kylheku2021-02-011-0/+19
* matcher: rename @(let) to @(as).Kaz Kylheku2021-02-011-2/+2
* matcher: restore nulling out of vars in @(or).Kaz Kylheku2021-02-011-12/+23
* matcher: struct: move type test before slot tests.Kaz Kylheku2021-02-011-4/+2
* matcher: struct: make guards lists; eliminate backquote.Kaz Kylheku2021-02-011-13/+15
* matcher: bugfix: bad stray code in @[...] matcher.Kaz Kylheku2021-02-011-2/+1
* Version 250txr-250Kaz Kylheku2021-01-311-1/+1
* matcher: prune @nil in cons and vector matches.Kaz Kylheku2021-01-291-9/+19
* matcher: bugfix: @nil isn't trivial.Kaz Kylheku2021-01-291-1/+1
* optimizer: add a few peephole reductions.Kaz Kylheku2021-01-292-2/+14
* matcher: remove duplicate variables in one place.Kaz Kylheku2021-01-281-21/+11
* matcher: rid compiled-match of test-expr and vars.Kaz Kylheku2021-01-281-89/+43
* matcher: add test-expr to match-guard.Kaz Kylheku2021-01-281-10/+10
* matcher: restructuring to fix new broken case.Kaz Kylheku2021-01-281-96/+173
* compiler: bug: append-each mutates lists.Kaz Kylheku2021-01-281-5/+7
* matcher: remove superflous test-expr in hash op.Kaz Kylheku2021-01-271-2/+0
* matcher: fix broken predicate test.Kaz Kylheku2021-01-271-1/+2
* matcher: smallest fix for broken test case found.Kaz Kylheku2021-01-271-1/+3
* matcher: clean up unclear vars situaton.Kaz Kylheku2021-01-271-38/+38
* matcher: vars issue with loop and parallel paterns.Kaz Kylheku2021-01-271-5/+6
* compiler: eliminate one local in compiler source.Kaz Kylheku2021-01-271-2/+1
* optimizer: syntactic sugar around rewrite.Kaz Kylheku2021-01-271-46/+44
* optimizer: format to 80 cols.Kaz Kylheku2021-01-271-7/+20
* compiler: get rid of vector from swtch syntax.Kaz Kylheku2021-01-261-1/+1
* compiler: use consistent prefix for label gensyms.Kaz Kylheku2021-01-261-1/+1
* optimizer: thread close instructions.Kaz Kylheku2021-01-261-0/+6
* optimizer: thread ifq instructions also.Kaz Kylheku2021-01-261-0/+9
* compiler: jump-threading optimization.Kaz Kylheku2021-01-262-1/+97
* matcher: allow pat/var argument: @[expr var pat]Kaz Kylheku2021-01-261-5/+21
* matcher: allow @[...] predicate notation.Kaz Kylheku2021-01-251-0/+9