2018-11-25 12:21:03 +00:00
|
|
|
;;; GNU Mes --- Maxwell Equations of Software
|
2023-05-03 12:47:09 +00:00
|
|
|
;;; Copyright © 2016,2017,2018,2019,2023 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
2018-11-25 12:21:03 +00:00
|
|
|
;;;
|
|
|
|
;;; This file is part of GNU Mes.
|
|
|
|
;;;
|
|
|
|
;;; GNU Mes is free software; you can redistribute it and/or modify it
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
|
|
|
;;; GNU Mes is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with GNU Mes. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
(define-module (mescc)
|
2018-12-26 13:14:02 +00:00
|
|
|
#:use-module (srfi srfi-1)
|
2018-11-25 12:21:03 +00:00
|
|
|
#:use-module (ice-9 getopt-long)
|
2019-05-22 15:55:20 +00:00
|
|
|
#:use-module (mes guile)
|
2018-11-25 12:21:03 +00:00
|
|
|
#:use-module (mes misc)
|
|
|
|
#:use-module (mescc mescc)
|
|
|
|
#:export (mescc:main))
|
|
|
|
|
|
|
|
(cond-expand
|
|
|
|
(mes
|
|
|
|
(define (set-port-encoding! port encoding) #t)
|
|
|
|
(mes-use-module (mes guile))
|
|
|
|
(mes-use-module (mes misc))
|
|
|
|
(mes-use-module (mes getopt-long))
|
|
|
|
(mes-use-module (mes display))
|
|
|
|
(mes-use-module (mescc mescc))
|
|
|
|
)
|
|
|
|
(guile
|
|
|
|
(define-macro (mes-use-module . rest) #t)))
|
|
|
|
|
2019-05-22 15:55:20 +00:00
|
|
|
(define %host-arch (or (getenv "%arch") %arch))
|
2019-12-11 07:16:46 +00:00
|
|
|
(define %host-kernel (or (getenv "%kernel") "linux")) ;; FIXME
|
2019-12-08 09:10:02 +00:00
|
|
|
(define %prefix (or (getenv "%prefix") "mes"))
|
|
|
|
(define %includedir (or (getenv "%includedir") "include"))
|
|
|
|
(define %libdir (or (getenv "%libdir") "."))
|
|
|
|
(define %version (or (getenv "%version") "0.0"))
|
2018-11-25 12:21:03 +00:00
|
|
|
|
2019-05-29 14:47:54 +00:00
|
|
|
(when (and=> (getenv "V") (lambda (v) (and (= (string-length v) 1) (> (string->number v) 1))))
|
2018-11-25 12:21:03 +00:00
|
|
|
(format (current-error-port) "mescc[~a]...\n" %scheme))
|
|
|
|
|
2018-12-26 13:14:02 +00:00
|
|
|
(define (unclump-single o)
|
|
|
|
(cond ((string-prefix? "--" o) (list o))
|
|
|
|
((and (string-prefix? "-" o)
|
|
|
|
(> (string-length o) 2)
|
|
|
|
(not (eq? (string-ref o 2) #\space)))
|
|
|
|
(list (substring o 0 2)
|
|
|
|
(substring o 2)))
|
|
|
|
(else (list o))))
|
|
|
|
|
2018-11-25 12:21:03 +00:00
|
|
|
(define (parse-opts args)
|
|
|
|
(let* ((option-spec
|
2020-12-23 13:38:38 +00:00
|
|
|
'((align (value #t))
|
2019-05-22 15:55:20 +00:00
|
|
|
(arch (value #t))
|
2018-11-25 12:21:03 +00:00
|
|
|
(assemble (single-char #\c))
|
|
|
|
(base-address (value #t))
|
|
|
|
(compile (single-char #\S))
|
|
|
|
(define (single-char #\D) (value #t))
|
|
|
|
(debug-info (single-char #\g))
|
2019-05-05 18:25:22 +00:00
|
|
|
(dumpmachine)
|
2020-08-29 21:24:31 +00:00
|
|
|
(print-libgcc-file-name)
|
2019-05-29 14:44:31 +00:00
|
|
|
(fno-builtin)
|
2019-12-02 17:27:32 +00:00
|
|
|
(fno-stack-protector)
|
2018-11-25 12:21:03 +00:00
|
|
|
(help (single-char #\h))
|
|
|
|
(include (single-char #\I) (value #t))
|
|
|
|
(library-dir (single-char #\L) (value #t))
|
|
|
|
(library (single-char #\l) (value #t))
|
|
|
|
(machine (single-char #\m) (value #t))
|
2019-05-05 18:25:22 +00:00
|
|
|
(nodefaultlibs)
|
|
|
|
(nostartfiles)
|
2019-05-29 14:44:31 +00:00
|
|
|
(nostdinc)
|
2019-05-05 18:25:22 +00:00
|
|
|
(nostdlib)
|
2018-11-25 12:21:03 +00:00
|
|
|
(preprocess (single-char #\E))
|
2019-07-06 11:57:30 +00:00
|
|
|
(static)
|
2018-11-25 12:21:03 +00:00
|
|
|
(std (value #t))
|
|
|
|
(output (single-char #\o) (value #t))
|
|
|
|
(optimize (single-char #\O) (value #t))
|
|
|
|
(version (single-char #\V))
|
|
|
|
(verbose (single-char #\v))
|
|
|
|
(write (single-char #\w) (value #t))
|
|
|
|
(language (single-char #\x) (value #t))))
|
|
|
|
(options (getopt-long args option-spec))
|
|
|
|
(help? (option-ref options 'help #f))
|
|
|
|
(files (option-ref options '() '()))
|
2019-05-22 15:55:20 +00:00
|
|
|
(dumpmachine? (option-ref options 'dumpmachine #f))
|
2020-08-29 21:24:31 +00:00
|
|
|
(print-libgcc-file-name? (option-ref options 'print-libgcc-file-name #f))
|
2019-05-22 15:55:20 +00:00
|
|
|
(version? (option-ref options 'version #f))
|
2020-08-29 21:24:31 +00:00
|
|
|
(usage? (and (not dumpmachine?) (not print-libgcc-file-name?) (not help?) (not version?) (null? files))))
|
2019-05-22 15:55:20 +00:00
|
|
|
(cond (version? (format #t "mescc (GNU Mes) ~a\n" %version) (exit 0))
|
2018-11-25 12:21:03 +00:00
|
|
|
(else
|
|
|
|
(and (or help? usage?)
|
|
|
|
(format (or (and usage? (current-error-port)) (current-output-port)) "\
|
|
|
|
Usage: mescc [OPTION]... FILE...
|
2019-11-04 22:56:15 +00:00
|
|
|
C99 compiler in Scheme for bootstrapping the GNU system.
|
|
|
|
|
|
|
|
Options:
|
2020-12-23 13:38:38 +00:00
|
|
|
--align=SYMBOL align SYMBOL {functions,globals,none} [functions]
|
2019-05-22 15:55:20 +00:00
|
|
|
--arch=ARCH compile for ARCH [~a]
|
2019-12-11 07:16:46 +00:00
|
|
|
--kernel=ARCH compile for KERNEL [~a]
|
2019-05-28 22:04:47 +00:00
|
|
|
-dumpmachine display the compiler's target machine
|
2022-09-22 09:14:34 +00:00
|
|
|
--base-address=ADDRESS
|
2018-11-25 12:21:03 +00:00
|
|
|
use BaseAddress ADDRESS [0x1000000]
|
|
|
|
-D DEFINE[=VALUE] define DEFINE [VALUE=1]
|
|
|
|
-E preprocess only; do not compile, assemble or link
|
2021-01-05 19:04:22 +00:00
|
|
|
-g add debug info (call stack in GDB)
|
2018-11-25 12:21:03 +00:00
|
|
|
-h, --help display this help and exit
|
|
|
|
-I DIR append DIR to include path
|
|
|
|
-L DIR append DIR to library path
|
|
|
|
-l LIBNAME link with LIBNAME
|
|
|
|
-m BITS compile for BITS bits [32]
|
Introduce libmescc.a; Put division by integer in there; split syscalls' errno off.
* build-aux/configure-lib.sh (libmescc_SOURCES): Add lib/mes/div.c,
lib/linux/*/syscall-internal.c.
* build-aux/build-lib.sh: Add libmescc.a.
* build-aux/build-mes.sh: On gcc, add "-lmescc".
* build-aux/test-c.sh: Add "-lmescc".
* build-aux/check.sh.in: Add mescc to LIBS.
* module/mescc/mescc.scm (mescc:link): Add "mescc".
* module/mescc.scm (mescc:main): Update documentation of "-nodefaultlibs"
and "-nostdlib".
* lib/mes/div.c (ldiv): Rename to...
(__mesabi_ldiv): ...this. Avoid assert.
(__mesabi_div0): Avoid assert.
(__aeabi_idivmod): New procedure.
(__aeabi_idiv): New procedure.
(__aeabi_uidivmod): New procedure.
(__aeabi_uidiv): New procedure.
* lib/linux/x86-mes-gcc/syscall.c (__sys_call, __sys_call1, __sys_call2,
__sys_call3, __sys_call4): Move to...
* lib/linux/x86-mes-gcc/syscall-internal.c: ...here.
(__raise): New procedure.
* lib/linux/x86-mes-mescc/syscall.c (__sys_call, __sys_call1, __sys_call2,
__sys_call3, __sys_call4): Move to...
* lib/linux/x86-mes-mescc/syscall-internal.c: ...here.
(__raise): New procedure.
* lib/linux/arm-mes-gcc/syscall.c: New file.
* lib/linux/arm-mes-gcc/syscall-internal.c: New file.
* lib/linux/arm-mes-mescc/syscall.c: New file.
* lib/linux/arm-mes-mescc/syscall-internal.c: New file.
* lib/gnu/syscall.c (__syscall, __syscall2, __syscall_get, __syscall_put):
Move to...
* lib/gnu/syscall-internal.c: ...here.
2020-06-01 21:47:49 +00:00
|
|
|
-nodefaultlibs do not use libc.o nor libmescc.a when linking
|
2019-05-05 18:25:22 +00:00
|
|
|
-nostartfiles do not use crt1.o when linking
|
Introduce libmescc.a; Put division by integer in there; split syscalls' errno off.
* build-aux/configure-lib.sh (libmescc_SOURCES): Add lib/mes/div.c,
lib/linux/*/syscall-internal.c.
* build-aux/build-lib.sh: Add libmescc.a.
* build-aux/build-mes.sh: On gcc, add "-lmescc".
* build-aux/test-c.sh: Add "-lmescc".
* build-aux/check.sh.in: Add mescc to LIBS.
* module/mescc/mescc.scm (mescc:link): Add "mescc".
* module/mescc.scm (mescc:main): Update documentation of "-nodefaultlibs"
and "-nostdlib".
* lib/mes/div.c (ldiv): Rename to...
(__mesabi_ldiv): ...this. Avoid assert.
(__mesabi_div0): Avoid assert.
(__aeabi_idivmod): New procedure.
(__aeabi_idiv): New procedure.
(__aeabi_uidivmod): New procedure.
(__aeabi_uidiv): New procedure.
* lib/linux/x86-mes-gcc/syscall.c (__sys_call, __sys_call1, __sys_call2,
__sys_call3, __sys_call4): Move to...
* lib/linux/x86-mes-gcc/syscall-internal.c: ...here.
(__raise): New procedure.
* lib/linux/x86-mes-mescc/syscall.c (__sys_call, __sys_call1, __sys_call2,
__sys_call3, __sys_call4): Move to...
* lib/linux/x86-mes-mescc/syscall-internal.c: ...here.
(__raise): New procedure.
* lib/linux/arm-mes-gcc/syscall.c: New file.
* lib/linux/arm-mes-gcc/syscall-internal.c: New file.
* lib/linux/arm-mes-mescc/syscall.c: New file.
* lib/linux/arm-mes-mescc/syscall-internal.c: New file.
* lib/gnu/syscall.c (__syscall, __syscall2, __syscall_get, __syscall_put):
Move to...
* lib/gnu/syscall-internal.c: ...here.
2020-06-01 21:47:49 +00:00
|
|
|
-nostdlib do not use crt1.o or libc.o or libmescc.a when linking
|
2018-11-25 12:21:03 +00:00
|
|
|
-o FILE write output to FILE
|
|
|
|
-O LEVEL use optimizing LEVEL
|
|
|
|
-S preprocess and compile only; do not assemble or link
|
2018-12-26 13:14:02 +00:00
|
|
|
--std=STANDARD assume that the input sources are for STANDARD
|
2019-11-04 22:56:15 +00:00
|
|
|
-V,--version display version and exit
|
2018-11-25 12:21:03 +00:00
|
|
|
-w,--write=TYPE dump Nyacc AST using TYPE {pretty-print,write}
|
|
|
|
-x LANGUAGE specify LANGUAGE of the following input files
|
|
|
|
|
2019-05-29 14:44:31 +00:00
|
|
|
Ignored for GCC compatibility
|
|
|
|
-fno-builtin
|
2019-12-02 17:27:32 +00:00
|
|
|
-fno-stack-protector
|
2019-07-06 11:57:30 +00:00
|
|
|
-no-pie
|
2019-05-29 14:44:31 +00:00
|
|
|
-nostdinc
|
2019-07-06 11:57:30 +00:00
|
|
|
-static
|
2019-05-29 14:44:31 +00:00
|
|
|
|
2018-11-25 12:21:03 +00:00
|
|
|
Environment variables:
|
|
|
|
|
|
|
|
MES=BINARY run on mes-executable BINARY {mes,guile}
|
|
|
|
MES_DEBUG=LEVEL show debug output with verbosity LEVEL {0..5}
|
|
|
|
NYACC_TRACE=1 show Nyacc progress
|
2018-10-20 07:53:44 +00:00
|
|
|
|
|
|
|
Report bugs to: bug-mes@gnu.org
|
|
|
|
GNU Mes home page: <http://gnu.org/software/mes/>
|
|
|
|
General help using GNU software: <http://gnu.org/gethelp/>
|
2019-12-11 07:16:46 +00:00
|
|
|
" %host-arch %host-kernel)
|
2018-11-25 12:21:03 +00:00
|
|
|
(exit (or (and usage? 2) 0)))
|
|
|
|
options))))
|
|
|
|
|
|
|
|
(define (mescc:main args)
|
2019-05-05 18:25:22 +00:00
|
|
|
(let* ((single-dash-options '("-dumpmachine"
|
2019-05-29 14:44:31 +00:00
|
|
|
"-fno-builtin"
|
2019-12-02 17:27:32 +00:00
|
|
|
"-fno-stack-protector"
|
2019-07-06 11:57:30 +00:00
|
|
|
"-no-pie"
|
2019-05-05 18:25:22 +00:00
|
|
|
"-nodefaultlibs"
|
|
|
|
"-nostartfiles"
|
2019-05-29 14:44:31 +00:00
|
|
|
"-nostdinc"
|
2019-05-05 18:25:22 +00:00
|
|
|
"-nostdlib"
|
2019-07-06 11:57:30 +00:00
|
|
|
"-static"
|
2019-05-05 18:25:22 +00:00
|
|
|
"-std"))
|
2018-12-26 13:14:02 +00:00
|
|
|
(args (map (lambda (o)
|
|
|
|
(if (member o single-dash-options) (string-append "-" o)
|
|
|
|
o))
|
|
|
|
args))
|
|
|
|
(args (append-map unclump-single args))
|
|
|
|
(options (parse-opts args))
|
2018-11-25 12:21:03 +00:00
|
|
|
(options (acons 'prefix %prefix options))
|
2019-11-24 10:14:14 +00:00
|
|
|
(options (acons 'includedir %includedir options))
|
|
|
|
(options (acons 'libdir %libdir options))
|
2019-05-22 15:55:20 +00:00
|
|
|
(arch (option-ref options 'arch %host-arch))
|
|
|
|
(options (if arch (acons 'arch arch options) options))
|
2019-12-11 07:16:46 +00:00
|
|
|
(kernel (option-ref options 'kernel %host-kernel))
|
|
|
|
(options (acons 'kernel kernel options))
|
2019-05-22 15:55:20 +00:00
|
|
|
(dumpmachine? (option-ref options 'dumpmachine #f))
|
2018-11-25 12:21:03 +00:00
|
|
|
(preprocess? (option-ref options 'preprocess #f))
|
2020-08-29 21:24:31 +00:00
|
|
|
(print-libgcc-file-name? (option-ref options 'print-libgcc-file-name #f))
|
2018-11-25 12:21:03 +00:00
|
|
|
(compile? (option-ref options 'compile #f))
|
|
|
|
(assemble? (option-ref options 'assemble #f))
|
2019-07-27 07:51:21 +00:00
|
|
|
(verbose? (count-opt options 'verbose)))
|
2018-11-25 12:21:03 +00:00
|
|
|
(when verbose?
|
|
|
|
(setenv "NYACC_TRACE" "yes")
|
2019-07-27 07:51:21 +00:00
|
|
|
(when (> verbose? 1)
|
|
|
|
(format (current-error-port) "options=~s\n" options)))
|
2019-05-22 15:55:20 +00:00
|
|
|
(cond (dumpmachine? (display (mescc:get-host options)))
|
2020-08-29 21:24:31 +00:00
|
|
|
(print-libgcc-file-name? (display "-lmescc\n"))
|
2019-05-22 15:55:20 +00:00
|
|
|
(preprocess? (mescc:preprocess options))
|
2018-11-25 12:21:03 +00:00
|
|
|
(compile? (mescc:compile options))
|
|
|
|
(assemble? (mescc:assemble options))
|
|
|
|
(else (mescc:link options)))))
|
2019-12-08 09:10:02 +00:00
|
|
|
|
|
|
|
(define main mescc:main)
|