summaryrefslogtreecommitdiff
path: root/Lisp
Commit message (Expand)AuthorAgeFilesLines
* Fix condition signalling.Matthias Benkard2007-09-242-12/+23
* Make memory management a lot saner.Matthias Benkard2007-09-237-68/+114
* Objective-C layer: Add functions for determining the Objective-C runtime used...Matthias Benkard2007-09-213-1/+46
* Improve method invocation docstrings.Matthias Benkard2007-09-211-3/+20
* Add a compiler macro for INVOKE.Matthias Benkard2007-09-212-65/+89
* Make the test suite work on Mac OS X.Matthias Benkard2007-09-213-25/+37
* Add condition classes NO-SUCH-SELECTOR and MESSAGE-NOT-UNDERSTOOD.Matthias Benkard2007-09-215-13/+48
* Prune yet another bunch of unused code chunks.Matthias Benkard2007-09-212-62/+0
* LOW-LEVEL-INVOKE: Cosmetic changes.Matthias Benkard2007-09-211-6/+6
* Remove even more code that has become obsolete through the new version of INV...Matthias Benkard2007-09-214-111/+1
* Objective-C layer: Remove the code needed by the obsolete version of INVOKE-B...Matthias Benkard2007-09-212-39/+0
* Rip the old INVOKE-BY-NAME code out and replace it with INVOKE-WITH-CONVERSION.Matthias Benkard2007-09-211-60/+29
* LOW-LEVEL-INVOKE: Correctly pass typespec data on to the Objective-C layer.Matthias Benkard2007-09-211-1/+1
* LOW-LEVEL-INVOKE: Fix indentation.Matthias Benkard2007-09-211-94/+98
* Stylistic improvements.Matthias Benkard2007-09-201-5/+8
* Fix the coercion rules for FLOAT and BOOLEAN values.Matthias Benkard2007-09-205-27/+28
* Make +NIL+ a runtime-only constant.Matthias Benkard2007-09-181-1/+1
* Simplify the Objective-C layer, make the newest additions compatible with the...Matthias Benkard2007-09-183-47/+33
* Really support arrays, structs, and unions.Matthias Benkard2007-09-181-3/+17
* INVOKE-WITH-CONVERSION: Support arrays, structs, and unions, and convert Lisp...Matthias Benkard2007-09-184-33/+85
* Objective-C layer: Add functions for dealing with classes and metaclasses.Matthias Benkard2007-09-184-14/+66
* INVOKE-WITH-CONVERSION: Support classes as message receivers.Matthias Benkard2007-09-172-21/+42
* LOW-LEVEL-INVOKE: Support selectors as arguments.Matthias Benkard2007-09-171-1/+4
* Cache the return values of RETRIEVE-METHOD-SIGNATURE-INFO.Matthias Benkard2007-09-172-1/+29
* LOW-LEVEL-INVOKE: Don't break upon invocations with a void return type.Matthias Benkard2007-09-171-1/+5
* LOW-LEVEL-INVOKE: Fix return type lossage.Matthias Benkard2007-09-171-1/+1
* PRIMITIVE-INVOKE: Don't break upon invocations with a void return type.Matthias Benkard2007-09-171-1/+4
* Add INVOKE-WITH-CONVERSION, a reliable INVOKE-BY-NAME alternative.Matthias Benkard2007-09-171-0/+149
* Juggle some definitions around to make the compiler happy.Matthias Benkard2007-09-171-9/+8
* PRIMITIVE-INVOKE: Make the compiler macro warn the user about unknown methods.Matthias Benkard2007-09-171-3/+9
* PRIMITIVE-INVOKE: Make the compiler macro degrade gracefully when a constant ...Matthias Benkard2007-09-171-1/+6
* Define a compiler macro for PRIMITVE-INVOKE that moves constant selector conv...Matthias Benkard2007-09-171-0/+14
* PRIMITIVE-INVOKE: Simplify memory allocation.Matthias Benkard2007-09-164-52/+80
* Add classes for tagged pointers.Matthias Benkard2007-09-164-0/+101
* PRIMITIVE-INVOKE: Support non-pointer arguments.Matthias Benkard2007-09-161-4/+9
* PRIMITIVE-INVOKE: More refactoring.Matthias Benkard2007-09-162-63/+127
* PRIMITIVE-INVOKE: Refactoring.Matthias Benkard2007-09-161-84/+80
* PRIMITIVE-INVOKE: Support string arguments.Matthias Benkard2007-09-161-65/+77
* PRIMITIVE-INVOKE: Fix a bunch of memory access bugs.Matthias Benkard2007-09-163-72/+79
* Add test cases for PRIMITIVE-INVOKE and fix some stupid bugs.Matthias Benkard2007-09-163-6/+44
* Remember to pass self and _cmd to methods.Matthias Benkard2007-09-162-5/+7
* Reimplement PRIMITIVE-INVOKE and rename the old version UNSAFE-PRIMITIVE-INVOKE.Matthias Benkard2007-09-157-18/+107
* Fix a bug in number-to-pointer conversion.Matthias Benkard2007-09-151-1/+1
* Use PRIMITIVE-INVOKE in memory management and clean the codebase up a bit.Matthias Benkard2007-09-144-37/+41
* Introduce PRIMITIVE-INVOKE, a lower-level INVOKE-BY-NAME alternative written ...Matthias Benkard2007-09-143-9/+43
* Refactor object coercion.Matthias Benkard2007-09-141-46/+35
* Code reorganisation.Matthias Benkard2007-09-146-486/+480
* New C function: objcl_get_method_implementation.Matthias Benkard2007-09-141-3/+20
* Support the “byref” qualifier in Objective-C typespecs.Matthias Benkard2007-09-142-4/+9
* Add support for opaque structs and unions in typespecs.Matthias Benkard2007-09-142-6/+29