aboutsummaryrefslogtreecommitdiff
path: root/src/algebra/strap/PRIMARR.lsp
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2008-10-13 04:44:48 +0000
committerdos-reis <gdr@axiomatics.org>2008-10-13 04:44:48 +0000
commita619487f9feb4a530244171b94decfccce57af8b (patch)
tree5a0f52493070180df83c72571b54afc514b249a3 /src/algebra/strap/PRIMARR.lsp
parentaf99530af5531146fb9b56b7fc58fe6209db0404 (diff)
downloadopen-axiom-a619487f9feb4a530244171b94decfccce57af8b.tar.gz
Add support for Lisp declarations in generated Lisp code.
* interp/i-map.boot (compileCoerceMap): Tell backend that minivector is global. * interp/i-spec1.boot (compileADEFBody): Likewise. * interp/slam.boot (reportFunctionCompilation): Likewise. * interp/define.boot (spadCompileOrSetq): Tell backend to ignore last argument for simple functions. * interp/c-util.boot (skipDeclarations): New. (lastDeclarationNode): Likewise. (declareGlobalVariables): Likewise. (transformToBackendCode): Use them to allow for Lisp declarations in middle-end forms. * interp/sys-driver.boot (AxiomCore::%sysInit): Reading Lisp level Floating point numbers default to double precision. * algebra/strap: Update.
Diffstat (limited to 'src/algebra/strap/PRIMARR.lsp')
-rw-r--r--src/algebra/strap/PRIMARR.lsp10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/algebra/strap/PRIMARR.lsp b/src/algebra/strap/PRIMARR.lsp
index 09b02a6b..9aa4b635 100644
--- a/src/algebra/strap/PRIMARR.lsp
+++ b/src/algebra/strap/PRIMARR.lsp
@@ -49,9 +49,11 @@
(|%SimpleArray| *))
|PRIMARR;fill!;$S$;9|))
-(DEFUN |PRIMARR;#;$Nni;1| (|x| $) (|sizeOfSimpleArray| |x|))
+(DEFUN |PRIMARR;#;$Nni;1| (|x| $)
+ (DECLARE (IGNORE $))
+ (|sizeOfSimpleArray| |x|))
-(DEFUN |PRIMARR;minIndex;$I;2| (|x| $) 0)
+(DEFUN |PRIMARR;minIndex;$I;2| (|x| $) (DECLARE (IGNORE $)) 0)
(DEFUN |PRIMARR;empty;$;3| ($)
(|makeSimpleArray| (|getVMType| (|getShellEntry| $ 6)) 0))
@@ -60,15 +62,19 @@
(|makeFilledSimpleArray| (|getVMType| (|getShellEntry| $ 6)) |n| |x|))
(DEFUN |PRIMARR;qelt;$IS;5| (|x| |i| $)
+ (DECLARE (IGNORE $))
(|getSimpleArrayEntry| |x| |i|))
(DEFUN |PRIMARR;elt;$IS;6| (|x| |i| $)
+ (DECLARE (IGNORE $))
(|getSimpleArrayEntry| |x| |i|))
(DEFUN |PRIMARR;qsetelt!;$I2S;7| (|x| |i| |s| $)
+ (DECLARE (IGNORE $))
(|setSimpleArrayEntry| |x| |i| |s|))
(DEFUN |PRIMARR;setelt;$I2S;8| (|x| |i| |s| $)
+ (DECLARE (IGNORE $))
(|setSimpleArrayEntry| |x| |i| |s|))
(DEFUN |PRIMARR;fill!;$S$;9| (|x| |s| $)