summaryrefslogtreecommitdiff
path: root/MLKLLVMCompiler.mm
Commit message (Collapse)AuthorAgeFilesLines
* Update to Xcode 4.6. Further update to LLVM 3.2.HEADmasterMatthias Andreas Benkard2013-03-291-15/+16
|
* LLVM: Make the LLVM IR interpreter able to call built-in functions.Matthias Andreas Benkard2011-09-121-3/+4
|
* LLVM: Call built-in functions as statically dispatched C library functions.Matthias Andreas Benkard2011-09-121-3/+14
|
* Fix various LLVM version-related bugs.Matthias Andreas Benkard2011-09-101-12/+18
|
* LLVM: Ensure that JIT and native target code is linked into the executable.Matthias Andreas Benkard2011-09-091-2/+5
|
* Perform all thread-specific initialization in MLKLLVMCompiler#+initialize.Matthias Andreas Benkard2011-09-091-144/+158
|
* Update to LLVM 2.9.Matthias Andreas Benkard2011-09-081-60/+52
|
* Various cleanups.Matthias Andreas Benkard2008-10-041-3/+3
|
* Merge /home/mulk/Dropbox/Projekte/Toilet LispMatthias Andreas Benkard2008-10-041-36/+112
|\
| * LLVM compiler: Support MULTIPLE-VALUE-LIST.Matthias Benkard2008-10-021-1/+47
| |
| * Add a multiple-value return pointer argument to all compiled procedures.Matthias Benkard2008-10-021-34/+62
| |
| * LLVM compiler: Restore capability of building on Mac OS X 10.4.Matthias Benkard2008-10-021-1/+3
| |
* | Merge mulk_benkard@ssh.phx.nearlyfreespeech.net:/home/htdocs/code/mulklispMatthias Andreas Benkard2008-10-011-91/+294
|\|
| * Support %FLET on the GNU runtime and pre-10.5 versions of Mac OS X.Matthias Benkard2008-10-011-3/+10
| |
| * Support %FLET on Mac OS X 10.5.Matthias Benkard2008-10-011-30/+95
| |
| * LLVM compiler: Split function compilation from %LAMBDA form handling.Matthias Benkard2008-10-011-14/+35
| |
| * LLVM compiler: Support FUNCTION.Matthias Benkard2008-10-011-0/+68
| |
| * LLVM compiler: Fix %LOOP return value.Matthias Benkard2008-10-011-1/+1
| |
| * LLVM compiler: Cleanups.Matthias Benkard2008-09-291-22/+23
| |
| * Use ExecutionEngine::runFunction for immediate execution.Matthias Benkard2008-09-291-2/+5
| |
| * LLVM compiler: Rename PointerTy to VoidPointerTy.Matthias Benkard2008-09-291-46/+46
| |
| * LLVM compiler: Disable the freeing of temporary functions for now.Matthias Benkard2008-09-291-1/+2
| |
| * SETQ (LLVM): Create new dynamic bindings on demand.Matthias Benkard2008-09-291-4/+41
| |
| * LLVM compiler: Fix dynamic variable lookup.Matthias Benkard2008-09-291-2/+2
| |
* | Merge /home/mulk/Dropbox/Projekte/Toilet LispMatthias Andreas Benkard2008-09-291-6/+33
|\|
| * LLVM compiler: Simplify allocation of closures.Matthias Benkard2008-09-281-1/+1
| |
| * LLVM compiler: Disable garbage collection for objects embedded in Lisp code.Matthias Benkard2008-09-281-0/+19
| |
| * LLVM compiler: Add various disabled debugging statements.Matthias Benkard2008-09-281-2/+9
| |
| * LLVM compiler: Allocate va_list objects as i8** rather than i8*.Matthias Benkard2008-09-281-3/+4
| | | | | | | | This fixes a terrible stack smashing bug that was most visible on PowerPC-based machines.
* | Add various disabled debugging messages.Matthias Andreas Benkard2008-09-111-3/+3
|/
* LLVM compiler: Treat closure data pointers as of type i8** rather than i8*.Matthias Andreas Benkard2008-09-021-4/+8
|
* MLKLLVMCompiler#-markVariablesForHeapAllocationInForm:: Fix ↵Matthias Andreas Benkard2008-09-021-2/+2
| | | | lexical-context-related lossage.
* LLVM compiler: Support heap allocation for lambda lists.Matthias Andreas Benkard2008-09-021-4/+15
|
* Add a couple of disabled debugging statements in the form processor and ↵Matthias Andreas Benkard2008-09-021-6/+14
| | | | compiler.
* MLKLLVMCompiler#-markVariablesForHeapAllocationInForm: Fix heap allocation ↵Matthias Andreas Benkard2008-09-021-2/+2
| | | | flag setting.
* LLVM compiler: Access closure variables through the closure data pointer.Matthias Andreas Benkard2008-09-021-24/+39
|
* LLVM compiler: Allocate all variables that are free in some lambda form on ↵Matthias Andreas Benkard2008-09-021-0/+28
| | | | the heap.
* LLVM compiler: Handle closure variables.Matthias Andreas Benkard2008-09-011-3/+24
|
* MLKLexicalContext: Add -variableIsGlobal:.Matthias Andreas Benkard2008-09-011-2/+2
|
* LLVM compiler: Add support for heap allocation of lexical variables.Matthias Andreas Benkard2008-09-011-12/+39
|
* Listener: Execute code after reading it.Matthias Benkard2008-08-281-1/+3
|
* Dispatch intrinsic functions statically instead of dynamically.Matthias Andreas Benkard2008-08-251-38/+7
| | | | This is a major simplification.
* Minor cleanups.Matthias Andreas Benkard2008-08-241-2/+5
|
* MLKLexicalContext: Add -functionIsInline:.Matthias Benkard2008-08-241-1/+1
|
* Merge mulk_benkard@ssh.phx.nearlyfreespeech.net:/home/htdocs/code/mulklispMatthias Andreas Benkard2008-08-231-0/+4
|\ | | | | | | | | | | Conflicts: GNUmakefile
| * Make Toilet Lisp compile with LLVM 2.3.Matthias Benkard2008-08-191-0/+4
| |
* | LLVM compiler: Minor cleanups.Matthias Andreas Benkard2008-08-231-2/+1
| |
* | MLKLLVMCompiler: Add +insertPointerTrace:.Matthias Andreas Benkard2008-08-231-1/+15
| |
* | LLVM compiler: Add another optimisation pass.Matthias Andreas Benkard2008-08-231-0/+1
| |
* | LLVM compiler: Support the LLVM interpreter for debugging.Matthias Andreas Benkard2008-08-231-2/+9
| |