chiark / gitweb /
sod
7 years agosrc/c-types-{impl,parse}.tex: Support `_Atomic' types.
Mark Wooding [Thu, 26 May 2016 08:26:09 +0000 (09:26 +0100)]
src/c-types-{impl,parse}.tex: Support `_Atomic' types.

blah blah

7 years agosrc/c-types-parse.lisp: Introduce a pluggable parser for declspecs.
Mark Wooding [Thu, 26 May 2016 08:26:09 +0000 (09:26 +0100)]
src/c-types-parse.lisp: Introduce a pluggable parser for declspecs.

  * Rename `scan-declspec' to `scan-simple-declspec'.

  * Have `scan-and-merge-declspec' try the new pluggable parser
    `complex-declspec' before giving up and trying the simple version.

  * Have `parse-declarator' use the correct name when picking out
    qualifiers.

7 years agosrc/c-types-parse.lisp: Hoist up the `ds-FOO' methods for raw types.
Mark Wooding [Thu, 26 May 2016 08:26:09 +0000 (09:26 +0100)]
src/c-types-parse.lisp: Hoist up the `ds-FOO' methods for raw types.

Having them just after the definition of `declspecs' doesn't seem to
make a great deal of sense.

7 years agosrc/c-types-parse.lisp: Improve handling of compatibility keywords.
Mark Wooding [Thu, 26 May 2016 08:26:09 +0000 (09:26 +0100)]
src/c-types-parse.lisp: Improve handling of compatibility keywords.

Newer C standards tend to introduce new keywords in the reserved space,
as `_Shiny', and possibly add a macro, tucked away in some header file,
for `shiny'.  We already deal with this for `_Bool', `_Complex', and so
on, but adding more is annoying.  Add a `:compat' keyword so that the
table initialization machinery can do the work for us.

7 years agosrc/final.lisp: Add function for interactively testing type parsing.
Mark Wooding [Thu, 26 May 2016 08:26:09 +0000 (09:26 +0100)]
src/final.lisp: Add function for interactively testing type parsing.

I end up writing this a lot at the REPL, so it's useful to have it
wrapped up somewhere.

7 years agosrc/c-types-proto.lisp, src/c-types-impl.lisp: Qualifier name protocol.
Mark Wooding [Thu, 26 May 2016 08:26:09 +0000 (09:26 +0100)]
src/c-types-proto.lisp, src/c-types-impl.lisp: Qualifier name protocol.

Add a new generic function `c-qualifier-keyword' to convert a Lisp
qualifier (confusingly, a Lisp keyword) into its C equivalent.
Currently, this just lowercases the name, but future keywords won't
necessarily have such simple mappings.

Also add `c-type-qualifier-keywords' to collect and convert the list of
keywords attached to a type, and use it in the type printing functions.
Take the opportunity to add more discretionary newlines in the pretty-
printing.

7 years agosrc/module-parse.lisp (parse-raw-class-item): Commit after declarator.
Mark Wooding [Thu, 26 May 2016 08:26:09 +0000 (09:26 +0100)]
src/module-parse.lisp (parse-raw-class-item): Commit after declarator.

Once we've parsed declaration specifiers and a declarator, commit to the
current parse before dispatching.

7 years agoAdd a new class slot `align', holding the instance layout alignment.
Mark Wooding [Tue, 15 Dec 2015 19:15:23 +0000 (19:15 +0000)]
Add a new class slot `align', holding the instance layout alignment.

Or at least a conservative approximation of it.

7 years agosrc/c-types-impl.lisp (make-or-intern-c-type): Pull out useful function.
Mark Wooding [Thu, 26 May 2016 08:26:09 +0000 (09:26 +0100)]
src/c-types-impl.lisp (make-or-intern-c-type): Pull out useful function.

There's a recurring pattern whether a subtype is interned and using that
to decide whether to intern the derived type.  Pull it out into its own
function.  We'll want it more later; but even now it simplifies a couple
of call sites.

7 years agosrc/c-types-parse.lisp, src/c-types-proto.lisp: Some minor cleanups.
Mark Wooding [Thu, 26 May 2016 08:26:09 +0000 (09:26 +0100)]
src/c-types-parse.lisp, src/c-types-proto.lisp: Some minor cleanups.

  * Reformat some documentation comments.

  * Use `&body' rather than `&rest' to mark the body argument of
    `define-c-type-syntax'.

  * Fix documentation comments to refer to `expand-c-type-spec' rather
    than `expand-c-type'.

7 years agosrc/parser/parser-proto.lisp: Add functions returning standard parsers.
Mark Wooding [Thu, 26 May 2016 08:26:09 +0000 (09:26 +0100)]
src/parser/parser-proto.lisp: Add functions returning standard parsers.

Return always-successful and always-failing parsers, with tunable
output.

7 years agosrc/parser/: Allow parsers to commit to a parse while peeking.
Mark Wooding [Thu, 26 May 2016 08:26:09 +0000 (09:26 +0100)]
src/parser/: Allow parsers to commit to a parse while peeking.

There is a new parser macro `commit' which may be used lexically within
the body of `peek' to commit to the current parse: if a failure is
encountered once the parse is committed, then the entire `peek' fails
having consumed input, rather than rewinding to the start.  This allows
parsers to limit the amount of lookahead they use once the ambiguity is
resolved.

Technically, the changes are as follows.

  * The `peek' parser macro introduces a new lexically-scoped macro into
    its body which releases its captured place and sets the
    corresponding variable to `nil'.

  * The `with-parser-place' and `with-scanner-place' macros don't try to
    release their captured places on unwind if they've been set to
    `nil'.  (It's not necessary to have changed `with-scanner-place'
    here, but it improves symmetry.)

  * There's a new `commit' parser macro which just invokes the magic
    macro introduced by `peek' and succeeds.

  * There's a top-level function with the same name as the local macro,
    to report errors in a slightly less confusing way.

7 years agodoc/clang.tex: Improve documentation of C type spec expansion.
Mark Wooding [Thu, 26 May 2016 08:26:09 +0000 (09:26 +0100)]
doc/clang.tex: Improve documentation of C type spec expansion.

Show that `expand-c-type-spec' is a generic function.  Document
`expand-c-type-form', since it's exported.

7 years agodoc/sod.sty, doc/*.tex: New command to reference `describe' environments.
Mark Wooding [Sat, 2 Jan 2016 15:33:19 +0000 (15:33 +0000)]
doc/sod.sty, doc/*.tex: New command to reference `describe' environments.

7 years agoMerge branches 'mdw/kwargs-fixes' and 'mdw/c11-fixes'
Mark Wooding [Sun, 29 May 2016 13:46:52 +0000 (14:46 +0100)]
Merge branches 'mdw/kwargs-fixes' and 'mdw/c11-fixes'

* mdw/kwargs-fixes: (53 commits)
  src/module-output.lisp: Set right margin to 77 characters.
  src/codegen-proto.lisp: Fix printing of `if`/`else if' ladders.
  src/: Write `NULL' for a null pointer, rather than plain `0'.
  src/: Enhance `definst' to allow general BVL syntax.
  src/codegen-{proto,impl}.lisp: Gather `definst' forms together.
  src/: Abolish the special `va-*' instructions.
  src/: Introduce `deliver-call' to abbreviate function calls.
  Improve checking for C99-style varargs macros.
  src/output-impl.lisp: Add a debugging dump of the known constraints.
  src/class-output.lisp, src/output-impl.lisp: Warn about unused items.
  src/frontend.lisp: Add `--backtrace' option to expose error context.
  src/final.lisp: Add convenient macro for testing parsers at the REPL.
  test/test.sod: New file containing miscellaneous tests.
  src/module-parse.lisp: Support multi-word item names in fragment syntax.
  src/module-parse.lisp: Frob `_' to `-' in item names.
  test/chimaera.{sod,ref}: Make `Chimaera' less tolerant of tickling.
  test/chimaera.sod: Make `Serpent' tickle tolerance be a slot.
  test/chimaera.sod: Reformatting.
  lib/Makefile.am: Associate man pages with the code where possible.
  lib/Makefile.am: List headers before sources.
  ...

* mdw/c11-fixes:
  doc/clang.tex: Fix terrible English in description of pointer types.
  doc/syntax.tex, src/sod-module.5: Typeset `<qualifier>s' properly.
  doc/clang.tex: Missing return type in `format-qualifiers' synopsis.
  doc/layout.tex, doc/meta.tex: Move some `sod-class-...' descriptions.
  doc/*.tex: Whitespace hacking.
  doc/list-exports.lisp: Make executable with `cl-launch' header.
  doc/list-exports.lisp: Ignore generic functions with strange names.
  doc/list-exports.lisp: Support use of CMUCL MOP.
  src/class-finalize-impl.lisp: Reorder `flet'/`macrolet'.
  src/method-proto.lisp: Fix boneheaded `:keyword' as a type.
  src/class-make-impl.lisp: Don't store `nil' in the `metaclass' slot.
  src/pset-proto.lisp (default-slot-from-property): Maybe leave slot unbound.
  src/*.lisp: Fix declared slot types.
  src/parser/package.lisp: Do better at finding Gray streams on CMUCL.
  src/*.asd.in: Load `auto.lisp' explicitly relative to `*load-pathname*'.

Conflicts:
doc/SYMBOLS (recreate using list-exports.lisp)
doc/list-exports.lisp (trivial hand-merge; leave executable)

7 years agosrc/module-output.lisp: Set right margin to 77 characters.
Mark Wooding [Tue, 15 Dec 2015 18:32:22 +0000 (18:32 +0000)]
src/module-output.lisp: Set right margin to 77 characters.

This is my usual target width.

7 years agosrc/codegen-proto.lisp: Fix printing of `if`/`else if' ladders.
Mark Wooding [Sat, 9 Jan 2016 20:41:01 +0000 (20:41 +0000)]
src/codegen-proto.lisp: Fix printing of `if`/`else if' ladders.

Should be in a nice column, rather than marching across to the right
margin like a mad thing.

7 years agosrc/: Write `NULL' for a null pointer, rather than plain `0'.
Mark Wooding [Sun, 10 Jan 2016 13:51:04 +0000 (13:51 +0000)]
src/: Write `NULL' for a null pointer, rather than plain `0'.

This isn't my usual style, but others may like it more.  The output is
controlled by a new variable `*null-pointer*'.  Maybe it will be
configurable later.

7 years agosrc/: Enhance `definst' to allow general BVL syntax.
Mark Wooding [Sun, 10 Jan 2016 13:51:04 +0000 (13:51 +0000)]
src/: Enhance `definst' to allow general BVL syntax.

Allow the `alt' argument for `if' to be &optional, and omit it when it's
not interesting.

Allow the `init' argument for `var' to be &optional, and omit it when
it's not interesting.

Make the `args' argument for `call' be &rest.  This isn't a win right
now, but it will be later.

7 years agosrc/codegen-{proto,impl}.lisp: Gather `definst' forms together.
Mark Wooding [Wed, 16 Dec 2015 03:35:50 +0000 (03:35 +0000)]
src/codegen-{proto,impl}.lisp: Gather `definst' forms together.

Having some of the definitions in the `proto' file and some in the
`impl' file doesn't make a great deal of sense.  I think that the ones
in the `impl' file were meant to be the ones which depend on the
`format-compound-statement' macro, but that's a terrible reason.

Hoist this macro above the `definst' forms, gather them all together as
part of the protocol, and sort them out a bit better.

Nothing observable has actually changed.

7 years agosrc/: Abolish the special `va-*' instructions.
Mark Wooding [Tue, 15 Dec 2015 17:19:30 +0000 (17:19 +0000)]
src/: Abolish the special `va-*' instructions.

They can be built easily enough using `call', and `deliver-call' makes
it easier on the fingers than the dedicated instructions.

7 years agosrc/: Introduce `deliver-call' to abbreviate function calls.
Mark Wooding [Thu, 7 Jan 2016 19:33:52 +0000 (19:33 +0000)]
src/: Introduce `deliver-call' to abbreviate function calls.

This will turn out to be more useful soon.

7 years agoImprove checking for C99-style varargs macros.
Mark Wooding [Sun, 10 Jan 2016 13:51:04 +0000 (13:51 +0000)]
Improve checking for C99-style varargs macros.

This is a rather sad story.  C99 introduced `variadic macros'
(gratuitously incompatible with GCC's better thought-out existing
feature for doing the same thing).  GCC implements the feature, and
enables it by default.  Unfortunately, GCC doesn't declare conformance
with C99 by default (by defining `__STDC_VERSION__' appropriately), so
the naïve test doesn't actually work unless you give GCC some extra
options.

Now that we have a place for `preliminary utilities' in the header file,
define a new macro `SOD__HAVE_VARARGS_MACROS' to report the feature's
availability to generated code, and use this to guard definitions which
make use of the feature.

Apparently (https://gcc.gnu.org/c99status.html) the feature was added to
GCC in version 2.95; I'm testing for version three or later because it's
easy.  But this isn't enough.  If GCC isn't fully committed to the C99
feature set, then `-pedantic' mode will issue warnings about the use of
variadic macros.  Normally we could suppress these with some hacking
involving `__extension__' or `#pragma GCC diagnostic', but GCC's
preprocessor isn't clever enough to deal with any of that.  Instead, we
reach for the big hammer and have header files declare themselves to be
`system headers', which means that GCC stops trying to warn about them
at all.

This is really quite a long way from being an ideal situation.

7 years agosrc/output-impl.lisp: Add a debugging dump of the known constraints.
Mark Wooding [Tue, 5 Jan 2016 19:29:59 +0000 (19:29 +0000)]
src/output-impl.lisp: Add a debugging dump of the known constraints.

It's disabled, but the format string is quite hairy, and this rune can
make confusing bugs a little easier to track down so I'm committing it.

7 years agosrc/class-output.lisp, src/output-impl.lisp: Warn about unused items.
Mark Wooding [Wed, 30 Dec 2015 00:34:15 +0000 (00:34 +0000)]
src/class-output.lisp, src/output-impl.lisp: Warn about unused items.

After an output run, report warnings about all of the items which didn't
get output (because they're not named in any constraints).

Unfortunately, this reports a whole bunch of internally generated items
which (harmlessly) never actually reach the output, so arrange not to
make those items in the first place.

7 years agosrc/frontend.lisp: Add `--backtrace' option to expose error context.
Mark Wooding [Tue, 15 Dec 2015 15:44:25 +0000 (15:44 +0000)]
src/frontend.lisp: Add `--backtrace' option to expose error context.

Skips the usual fancy error reporting.  Useful when debugging.

7 years agosrc/final.lisp: Add convenient macro for testing parsers at the REPL.
Mark Wooding [Sun, 10 Jan 2016 13:51:04 +0000 (13:51 +0000)]
src/final.lisp: Add convenient macro for testing parsers at the REPL.

Nothing especially awesome.

7 years agotest/test.sod: New file containing miscellaneous tests.
Mark Wooding [Tue, 5 Jan 2016 17:20:55 +0000 (17:20 +0000)]
test/test.sod: New file containing miscellaneous tests.

Currently there's just a tidied-up version of the aggregating method
combination tests I was using during development.

7 years agosrc/module-parse.lisp: Support multi-word item names in fragment syntax.
Mark Wooding [Tue, 5 Jan 2016 17:05:59 +0000 (17:05 +0000)]
src/module-parse.lisp: Support multi-word item names in fragment syntax.

A sequence of identifiers can be written in parentheses.  There's still
no way to refer to items whose names contain objects such as classes or
methods.  This probably isn't too disastrous.

7 years agosrc/module-parse.lisp: Frob `_' to `-' in item names.
Mark Wooding [Tue, 5 Jan 2016 17:02:17 +0000 (17:02 +0000)]
src/module-parse.lisp: Frob `_' to `-' in item names.

This was just a stupid bug.

7 years agotest/chimaera.{sod,ref}: Make `Chimaera' less tolerant of tickling.
Mark Wooding [Tue, 5 Jan 2016 17:19:11 +0000 (17:19 +0000)]
test/chimaera.{sod,ref}: Make `Chimaera' less tolerant of tickling.

Just happens to demonstrate inheritance of slot initializers.

7 years agotest/chimaera.sod: Make `Serpent' tickle tolerance be a slot.
Mark Wooding [Tue, 5 Jan 2016 17:18:27 +0000 (17:18 +0000)]
test/chimaera.sod: Make `Serpent' tickle tolerance be a slot.

No observable change (because nothing writes the slot).

7 years agotest/chimaera.sod: Reformatting.
Mark Wooding [Tue, 5 Jan 2016 17:17:40 +0000 (17:17 +0000)]
test/chimaera.sod: Reformatting.

Takes up less space now.

7 years agolib/Makefile.am: Associate man pages with the code where possible.
Mark Wooding [Tue, 29 Dec 2015 15:49:17 +0000 (15:49 +0000)]
lib/Makefile.am: Associate man pages with the code where possible.

7 years agolib/Makefile.am: List headers before sources.
Mark Wooding [Wed, 16 Dec 2015 03:59:33 +0000 (03:59 +0000)]
lib/Makefile.am: List headers before sources.

The header file works as a sort of natural stanza heading to categorize
the immediately following source files.

7 years agosrc/class-make-impl.lisp: Freeze file locations at object-creation time.
Mark Wooding [Tue, 5 Jan 2016 18:50:12 +0000 (18:50 +0000)]
src/class-make-impl.lisp: Freeze file locations at object-creation time.

A couple got missed.

7 years agosrc/class-make-proto.lisp: Remove `define-sod-class'.
Mark Wooding [Tue, 5 Jan 2016 18:42:53 +0000 (18:42 +0000)]
src/class-make-proto.lisp: Remove `define-sod-class'.

Nobody's using it, and it's out of date.

7 years agosrc/classes.lisp: Fix `print-object' on `sod-initializer'.
Mark Wooding [Tue, 5 Jan 2016 17:50:13 +0000 (17:50 +0000)]
src/classes.lisp: Fix `print-object' on `sod-initializer'.

Would have recursed forever.

Also use `with-slots' to make the whole thing rather shorter: I think
it's allowed here.

7 years agosrc/output-impl.lisp: No need to use `equal' on items rather than names.
Mark Wooding [Tue, 5 Jan 2016 19:28:14 +0000 (19:28 +0000)]
src/output-impl.lisp: No need to use `equal' on items rather than names.

7 years agosrc/: Style cleanup: use constant names for types where available.
Mark Wooding [Wed, 16 Dec 2015 05:25:51 +0000 (05:25 +0000)]
src/: Style cleanup: use constant names for types where available.

For example, say `c-type-int' rather than `(c-type int)'.

7 years agosrc/c-types-{proto,impl}.lisp: Add `:export' parameter to `defctype'.
Mark Wooding [Wed, 16 Dec 2015 06:15:06 +0000 (06:15 +0000)]
src/c-types-{proto,impl}.lisp: Add `:export' parameter to `defctype'.

Similar to `definst' (changed in 418752c), have `defctype' optionally
export its type name and variable.  Use this to (a) eliminate the
enormous explicit export list, and (b) actually export the variable
names.

Also change `define-simple-c-type' to match.

And document these changes.

7 years agosrc/{module-impl,utilities}.lisp: Make `#line' work when pretty-printing.
Mark Wooding [Tue, 5 Jan 2016 16:31:09 +0000 (16:31 +0000)]
src/{module-impl,utilities}.lisp: Make `#line' work when pretty-printing.

The `pprint-logical-block' macro interposes a `pretty-printing stream'
between its body and the underlying stream.  This makes using fancy
functionality of the underlying stream (e.g., having it keep track of
the current cursor position) rather tricky.

It would (just about) be possible to introduce a wrapper around
`pprint-logical-block' which keeps track of the mapping between
pretty-printing and plain streams; but that requires that the macro is
actually used everywhere, which is difficult because pretty-printing can
also be initiated using the `format' `~<...~:>' command.

So instead I introduce a system-specific hack `print-ugly-stuff' which
knows how to extract and expose the underlying stream to its caller, and
synchronize things so that nothing gets lost (on SBCL and CMUCL, at
least; on others, it just passes back the pretty-printing stream).  The
function `output-c-excursion' now uses this to do its thing.

7 years agosrc/module-impl.lisp (output-c-excursion): Remove redundant `~&'.
Mark Wooding [Tue, 5 Jan 2016 16:29:45 +0000 (16:29 +0000)]
src/module-impl.lisp (output-c-excursion): Remove redundant `~&'.

There's no need to have both an explicit call to `fresh-line' and `~&'
on the front of the following `format' string.  The `fresh-line' call is
the right one to leave: otherwise the new line (if any) is started after
we've called `position-aware-stream-line', which will therefore give us
the wrong answer.

7 years agosrc/builtin.lisp (class-slot "init"): Fix declaration of temporaries.
Mark Wooding [Wed, 16 Dec 2015 01:24:16 +0000 (01:24 +0000)]
src/builtin.lisp (class-slot "init"): Fix declaration of temporaries.

Each slot initializer is first used to initialize a temporary of the
correct type, which is then assigned to the slot's structure
member.  (This was introduced in commit 1d8206e.)  Unfortunately, the
temporary was declared naïvely, as `TYPE NAME', which works when TYPE
involves only declaration specifiers and pointer declarator operators,
but not otherwise.

Fix this, by using the `pprint-c-type' function like it was meant to be.

7 years agosrc/c-types-impl.lisp (arguments-lists-equal-p): Fix stupid bug.
Mark Wooding [Wed, 16 Dec 2015 07:20:53 +0000 (07:20 +0000)]
src/c-types-impl.lisp (arguments-lists-equal-p): Fix stupid bug.

If some ARG-B is `:ellipsis', but the corresponding ARG-A is a proper
argument object, then we'd have a type error applying `argument-type' to
ARG-B.  Make sure this doesn't happen.

7 years agosrc/method-impl.lisp (compute-method-entry-functions): Fix varargs handling.
Mark Wooding [Tue, 15 Dec 2015 17:04:00 +0000 (17:04 +0000)]
src/method-impl.lisp (compute-method-entry-functions): Fix varargs handling.

The `convert-stmts' in `finish-entry' didn't cover the trailing
`va_end', with the possible result of a premature return.

7 years agosrc/c-types-impl.lisp: Fix mis-spelled function name.
Mark Wooding [Sun, 10 Jan 2016 13:51:04 +0000 (13:51 +0000)]
src/c-types-impl.lisp: Fix mis-spelled function name.

7 years agosrc/c-types-parse.lisp: Cope if `*module-type-map*' is unbound.
Mark Wooding [Wed, 16 Dec 2015 03:17:49 +0000 (03:17 +0000)]
src/c-types-parse.lisp: Cope if `*module-type-map*' is unbound.

This is useful for testing parsing outside of the context of a module
file.

7 years agodoc/list-exports.lisp: Don't report gensyms as leaked slot names.
Mark Wooding [Sun, 10 Jan 2016 13:51:04 +0000 (13:51 +0000)]
doc/list-exports.lisp: Don't report gensyms as leaked slot names.

7 years agodoc/: Use the correct notation for `->' arrows.
Mark Wooding [Tue, 15 Dec 2015 19:15:23 +0000 (19:15 +0000)]
doc/: Use the correct notation for `->' arrows.

I'm still not entirely sure I want to get into this pretty-printing
game, but this way I can at least make the decision in a single place.

7 years agodoc/sod.sty: Make the `->' operator look like its component characters.
Mark Wooding [Sat, 7 May 2016 11:49:24 +0000 (12:49 +0100)]
doc/sod.sty: Make the `->' operator look like its component characters.

Using an actual arrow is pretty, but it's not C.

7 years agodoc/sod.sty: Add a `describe' category for messages.
Mark Wooding [Tue, 15 Dec 2015 19:15:23 +0000 (19:15 +0000)]
doc/sod.sty: Add a `describe' category for messages.

7 years agodoc/syntax.tex: Give the syntax chapter a little love.
Mark Wooding [Tue, 15 Dec 2015 19:15:23 +0000 (19:15 +0000)]
doc/syntax.tex: Give the syntax chapter a little love.

7 years agodoc/syntax.tex, src/sod-module.5: Document new C99 types.
Mark Wooding [Sun, 10 Jan 2016 13:51:04 +0000 (13:51 +0000)]
doc/syntax.tex, src/sod-module.5: Document new C99 types.

7 years agodoc/syntax.tex: Refactor the <class-definition> syntax.
Mark Wooding [Sun, 10 Jan 2016 13:51:04 +0000 (13:51 +0000)]
doc/syntax.tex: Refactor the <class-definition> syntax.

  * Attach the semicolon terminators to the individual <...-item>
    syntaxes rather than including them in <class-item>.

  * Conversely, pull the property sets out of the individual items and
    into the top-level syntax, on the grounds that all class items have
    property sets as a fundamental part of the high-level syntax.

7 years agodoc/syntax.tex: Fix up the syntax notation.
Mark Wooding [Sun, 10 Jan 2016 13:51:04 +0000 (13:51 +0000)]
doc/syntax.tex: Fix up the syntax notation.

Also correct some pieces which are badly out of date.

  * Fix typesetting of concrete parameters to parametrized nonterminals.

  * Now that <foo-list> isn't reserved, use it for <argument-list>.

  * Fix the <message-item> and <method-item> syntaxes to use the correct
    declarator nonterminals.

7 years agodoc/clang.tex: Fix terrible English in description of pointer types.
Mark Wooding [Thu, 26 May 2016 08:26:09 +0000 (09:26 +0100)]
doc/clang.tex: Fix terrible English in description of pointer types.

7 years agodoc/syntax.tex, src/sod-module.5: Typeset `<qualifier>s' properly.
Mark Wooding [Thu, 26 May 2016 08:26:09 +0000 (09:26 +0100)]
doc/syntax.tex, src/sod-module.5: Typeset `<qualifier>s' properly.

In `doc/syntax.tex', the plural `s' was mistakenly included as part of
the nonterminal name.  In `src/sod-module.5', the nonterminal didn't
have distinctive typesetting at all.

7 years agodoc/clang.tex: Missing return type in `format-qualifiers' synopsis.
Mark Wooding [Thu, 26 May 2016 08:26:09 +0000 (09:26 +0100)]
doc/clang.tex: Missing return type in `format-qualifiers' synopsis.

7 years agodoc/layout.tex, doc/meta.tex: Move some `sod-class-...' descriptions.
Mark Wooding [Thu, 26 May 2016 08:26:09 +0000 (09:26 +0100)]
doc/layout.tex, doc/meta.tex: Move some `sod-class-...' descriptions.

I left a comment saying that `sod-class-ilayout', `-vtables', and
`-effective-methods' were really layout functions, but didn't move
them.  This is now done.

7 years agodoc/*.tex: Whitespace hacking.
Mark Wooding [Thu, 26 May 2016 08:26:09 +0000 (09:26 +0100)]
doc/*.tex: Whitespace hacking.

7 years agodoc/list-exports.lisp: Make executable with `cl-launch' header.
Mark Wooding [Thu, 26 May 2016 08:26:09 +0000 (09:26 +0100)]
doc/list-exports.lisp: Make executable with `cl-launch' header.

7 years agodoc/list-exports.lisp: Ignore generic functions with strange names.
Mark Wooding [Thu, 26 May 2016 08:26:09 +0000 (09:26 +0100)]
doc/list-exports.lisp: Ignore generic functions with strange names.

CMUCL introduces functions `(pcl:class-predicate CLASS)' for its own
internal purposes, and it's not interesting to list them.

7 years agodoc/list-exports.lisp: Support use of CMUCL MOP.
Mark Wooding [Thu, 26 May 2016 08:26:09 +0000 (09:26 +0100)]
doc/list-exports.lisp: Support use of CMUCL MOP.

7 years agosrc/class-finalize-impl.lisp: Reorder `flet'/`macrolet'.
Mark Wooding [Thu, 26 May 2016 08:26:09 +0000 (09:26 +0100)]
src/class-finalize-impl.lisp: Reorder `flet'/`macrolet'.

The `macrolet' macro expansion explicitly references the function
defined in the `flet' form, so probably they should be the other way
out.

7 years agosrc/method-proto.lisp: Fix boneheaded `:keyword' as a type.
Mark Wooding [Thu, 26 May 2016 08:26:09 +0000 (09:26 +0100)]
src/method-proto.lisp: Fix boneheaded `:keyword' as a type.

7 years agosrc/class-make-impl.lisp: Don't store `nil' in the `metaclass' slot.
Mark Wooding [Thu, 26 May 2016 08:26:09 +0000 (09:26 +0100)]
src/class-make-impl.lisp: Don't store `nil' in the `metaclass' slot.

Normally we can fill `metaclass' in at construction time, but this is
difficult while we're bootstrapping the class graph.  Previously, we'd
store `nil' in the slot, and expect `bootstrap-classes' to fix things up
later; but actually, the `metaclass' slot is declared to hold only
`sod-class' objects.

Rather than expand the slot type, delay the `guess-metaclass' machinery
until class finalization (moving the code across into the relevant
source files).

7 years agosrc/pset-proto.lisp (default-slot-from-property): Maybe leave slot unbound.
Mark Wooding [Thu, 26 May 2016 08:26:09 +0000 (09:26 +0100)]
src/pset-proto.lisp (default-slot-from-property): Maybe leave slot unbound.

If there are no DEFAULT-VALUE forms, and the property isn't set, then
leave the slot unbound.

7 years agosrc/*.lisp: Fix declared slot types.
Mark Wooding [Thu, 26 May 2016 08:26:09 +0000 (09:26 +0100)]
src/*.lisp: Fix declared slot types.

SBCL doesn't seem too bothered about type mismatches in slot values, but
CMUCL kicks up a fuss.  These declared types were too strict, either
because of inadequate thinking or because the declarations had become
stale.

7 years agosrc/parser/package.lisp: Do better at finding Gray streams on CMUCL.
Mark Wooding [Thu, 26 May 2016 08:26:09 +0000 (09:26 +0100)]
src/parser/package.lisp: Do better at finding Gray streams on CMUCL.

Take the opportunity to reorganize the conditional machinery.  Avoid the
trap waiting because CMUCL's Gray streams are in its `extensions'
package, along with things whose names which conflict with our
utilities.

7 years agosrc/*.asd.in: Load `auto.lisp' explicitly relative to `*load-pathname*'.
Mark Wooding [Thu, 26 May 2016 08:26:09 +0000 (09:26 +0100)]
src/*.asd.in: Load `auto.lisp' explicitly relative to `*load-pathname*'.

7 years agodoc/structures.tex: Better typesetting of structure expressions.
Mark Wooding [Tue, 15 Dec 2015 19:15:23 +0000 (19:15 +0000)]
doc/structures.tex: Better typesetting of structure expressions.

7 years agodoc/structures.tex: Fix fake property lists for the builtin classes.
Mark Wooding [Tue, 15 Dec 2015 19:15:23 +0000 (19:15 +0000)]
doc/structures.tex: Fix fake property lists for the builtin classes.

SodObject was missing its `nick' property, which is unfortunate because
that's probably the most important one to be aware of.  SodClass was
missing a property list altogether.

7 years agodoc/structures.tex: Insert missing member name in structure display.
Mark Wooding [Tue, 15 Dec 2015 19:15:23 +0000 (19:15 +0000)]
doc/structures.tex: Insert missing member name in structure display.

7 years agodoc/runtime.tex: Highlight formal argument names.
Mark Wooding [Tue, 15 Dec 2015 19:15:23 +0000 (19:15 +0000)]
doc/runtime.tex: Highlight formal argument names.

7 years agodoc/clang.tex: Display the `fun' type specifier.
Mark Wooding [Sun, 10 Jan 2016 13:51:04 +0000 (13:51 +0000)]
doc/clang.tex: Display the `fun' type specifier.

It's too long to read comfortably in running text.

7 years agodoc/misc.tex (options): Add in missing argument form.
Mark Wooding [Sat, 7 May 2016 12:21:42 +0000 (13:21 +0100)]
doc/misc.tex (options): Add in missing argument form.

7 years agodoc/clang.tex: Fix function name.
Mark Wooding [Sun, 10 Jan 2016 13:51:04 +0000 (13:51 +0000)]
doc/clang.tex: Fix function name.

7 years agodoc/clang.tex: No, `*sod-tmp-ap*' is not exported.
Mark Wooding [Sun, 10 Jan 2016 13:51:04 +0000 (13:51 +0000)]
doc/clang.tex: No, `*sod-tmp-ap*' is not exported.

7 years agodoc/: Just some whitespace fiddling.
Mark Wooding [Tue, 15 Dec 2015 19:15:23 +0000 (19:15 +0000)]
doc/: Just some whitespace fiddling.

7 years agodoc/output.tex: Actually document the output symbols.
Mark Wooding [Sun, 10 Jan 2016 13:51:04 +0000 (13:51 +0000)]
doc/output.tex: Actually document the output symbols.

7 years agosrc/: Minor formatting tweaks.
Mark Wooding [Tue, 15 Dec 2015 18:30:18 +0000 (18:30 +0000)]
src/: Minor formatting tweaks.

7 years agoSTYLE: Some minor wording fixes.
Mark Wooding [Tue, 15 Dec 2015 19:15:23 +0000 (19:15 +0000)]
STYLE: Some minor wording fixes.

  * Some actual typos.

  * Punt on the issue of `a ~flet~' versus `an ~flet~' and how I'm
    pronouncing `flet' today.

7 years agosrc/c-types-test.lisp, src/test-base.lisp: Force pretty-printing.
Mark Wooding [Wed, 25 May 2016 16:15:48 +0000 (17:15 +0100)]
src/c-types-test.lisp, src/test-base.lisp: Force pretty-printing.

It seems that later `xlunit' versions turn this off.

7 years agosrc/optparse.lisp: Rearrange system-specific stuff.
Mark Wooding [Wed, 25 May 2016 15:30:16 +0000 (16:30 +0100)]
src/optparse.lisp: Rearrange system-specific stuff.

  * Remove `cl-launch' from the explicit `:use' list.

  * Prefer using `uiop' to collect arguments if it's present, because it
    does everything properly.

  * Fall back to `cl-launch' driven by steam if it's available.

  * Otherwise use a hacky list of system-specific runes copied from my
    other Lisp library.

  * Reformat the `exit' function so it's easier to slot new
    implementations in, similar to the new `set-command-line-arguments'.

  * Load `sod-frontend' and use `optparse:exit' rather than
    `cl-launch:quit', because the latter has disappeared in later
    versions.

7 years agosrc/Makefile.am: Add current directory to ASDF source registry.
Mark Wooding [Wed, 25 May 2016 15:27:42 +0000 (16:27 +0100)]
src/Makefile.am: Add current directory to ASDF source registry.

Newer ASDF doesn't look for system definitions in the current directory
by default any more.

7 years agosrc/Makefile.am: Append `$(EXEEXT)' to placate newer Automake.
Mark Wooding [Wed, 25 May 2016 15:26:49 +0000 (16:26 +0100)]
src/Makefile.am: Append `$(EXEEXT)' to placate newer Automake.

I don't think it will help much because I don't expect that `cl-launch'
works on Windows.

7 years agoRemove `SOD_CAR' from the public interface.
Mark Wooding [Tue, 29 Dec 2015 23:00:33 +0000 (23:00 +0000)]
Remove `SOD_CAR' from the public interface.

It's now called `SOD__CAR', no longer documented, and in a new, clearly
marked `preliminaries utilities' section of the header file.  This new
section precedes the header-file inclusions because they can in
principle depend on the definitions made here.

This macro probably won't change, but I reserve the right to make the
internal utilities be weird in ways which won't break the way Sod uses
them, but might break other things which rely on them.

8 years agodoc/clang.tex: Order the table of `simple' C types more sensibly.
Mark Wooding [Sun, 10 Jan 2016 13:51:04 +0000 (13:51 +0000)]
doc/clang.tex: Order the table of `simple' C types more sensibly.

8 years agodoc/: Bring the `SYMBOLS' file and description stubs up to date.
Mark Wooding [Sun, 10 Jan 2016 03:01:16 +0000 (03:01 +0000)]
doc/: Bring the `SYMBOLS' file and description stubs up to date.

8 years agosrc/class-output.lisp (*instance-class*): Add a docstring.
Mark Wooding [Sun, 10 Jan 2016 03:00:53 +0000 (03:00 +0000)]
src/class-output.lisp (*instance-class*): Add a docstring.

8 years agodoc/list-exports.lisp: Add in the obvious interactive rune.
Mark Wooding [Sun, 10 Jan 2016 02:15:24 +0000 (02:15 +0000)]
doc/list-exports.lisp: Add in the obvious interactive rune.

Just saves typing.  You know?

8 years agodoc/list-exports.lisp: Add in some packaging boilerplate.
Mark Wooding [Sun, 10 Jan 2016 02:11:02 +0000 (02:11 +0000)]
doc/list-exports.lisp: Add in some packaging boilerplate.

8 years agodoc/list-exports.lisp: Bind `*package*' while reading files.
Mark Wooding [Sun, 10 Jan 2016 02:10:39 +0000 (02:10 +0000)]
doc/list-exports.lisp: Bind `*package*' while reading files.

Otherwise we can get confused by read-time evaluation and other such
wonders.  Unfortunately this means that some of the macros we have
magical support for now need package qualification here.  Oh, well.

8 years agosrc/parser/scanner-charbuf-impl.lisp: Replace pointless use of `#.'.
Mark Wooding [Sun, 10 Jan 2016 02:06:42 +0000 (02:06 +0000)]
src/parser/scanner-charbuf-impl.lisp: Replace pointless use of `#.'.

This only existed because `charbuf-size' is (in theory) a tweakable
constant, but `defclass' wants a literal type specifier as its `:type'
argument.  But the correct type specifier, `charbuf-index' was already
defined at the same time (both were added in the same, rather sketchy,
old commit).

It's useful to kill this because it confuses the (rather stupid) reader
in `list-exports'.

8 years agodoc/lispintro.tex: Clarify and expound the API compatibility rules.
Mark Wooding [Wed, 6 Jan 2016 17:52:40 +0000 (17:52 +0000)]
doc/lispintro.tex: Clarify and expound the API compatibility rules.

A lot of this is (ahem) `borrowed' from the MOP spec.

8 years agolib/: Attach proper LGPL notices to files.
Mark Wooding [Tue, 15 Dec 2015 14:44:44 +0000 (14:44 +0000)]
lib/: Attach proper LGPL notices to files.

Include a `.skelrc' file so that future files added here get the proper
notice.

8 years agodoc/concepts.tex: Document changed `and' and `or' combination return values.
Mark Wooding [Tue, 15 Dec 2015 14:34:33 +0000 (14:34 +0000)]
doc/concepts.tex: Document changed `and' and `or' combination return values.

8 years agodoc/concepts.tex: Highlight method role names.
Mark Wooding [Tue, 15 Dec 2015 14:31:01 +0000 (14:31 +0000)]
doc/concepts.tex: Highlight method role names.

8 years agolib/sod.h: Mark-up fix.
Mark Wooding [Tue, 15 Dec 2015 14:27:52 +0000 (14:27 +0000)]
lib/sod.h: Mark-up fix.