4468 Commits

Author SHA1 Message Date
Manoel Trapier
7f1d330949 Update README to display better in markdown 2015-06-24 23:41:04 +01:00
Manoel Trapier
4db0d7b5fd Add markdown and license file 2015-06-24 23:41:04 +01:00
Manoel Trapier
8874cacc1b Add gitignore file. 2015-06-24 23:41:04 +01:00
Manoel Trapier
72fe23f09a Add NES platform to default build. (Still more to go to compile correctly) and re-enabling the "k&r" cpp 2015-06-24 23:41:04 +01:00
Manoel Trapier
00ea871e8e Correct mach cg pmfile that incorrectly reference PLATFORM where it should reference ARCH 2015-06-24 23:41:04 +01:00
Manoel Trapier
45121f6d87 Copy pc86 platform to nes platform, and make change accordingly. 2015-06-24 23:41:04 +01:00
David Given
dccecc5d45 Back out erroneous change. 2012-12-14 11:56:21 +00:00
George Koehler
0fc7fd5d33 Prevent segfault when trying to print an error message.
Use <stdarg.h> to pass arguments correctly, as ack/util/util.c
already uses <stdarg.h> the same way.
2012-10-24 13:44:50 -04:00
David Given
4349d702fa Change from using platform-specific types to stdint platform-independent types
when reading the structure header.
2012-09-27 11:32:40 +01:00
David Given
2beb3646a7 Change to use stdint's implementation independent types rather than short and
long (which vary depending on whether you're on a 64-bit system or not).
2012-09-27 10:54:41 +01:00
George Koehler
7ef9b79c11 Merge deletion of many undead files. 2012-09-23 15:31:16 -04:00
George Koehler
3dcc3bd1cf Allow pc86 bootloader to boot from more floppy drives.
When the bootloader probes the drive geometry, the BIOS can clobber the
es register.  If this happens, the bootloader loads the program to the
wrong address, and jumps off the code.  This happens with an emulated
floppy drive in Bochs or QEMU, but not with an emulated hard disk.
2012-09-23 14:43:22 -04:00
George Koehler
e7c79415b5 Prevent division by zero in aslod.
rhead() and rsect() had assumed sizeof(long) == 4, but OpenBSD/amd64
has sizeof(long) == 8.  The problem revealed itself when sect->os_lign
became zero, and align() divided by zero.
2012-09-21 22:51:12 -04:00
George Koehler
0131ca4d46 Delete 689 undead files.
These files "magically reappeared" after the conversion from CVS to
Mercurial.  The old CVS repository deleted these files but did not
record *when* it deleted these files.  The conversion resurrected these
files because they have no history of deletion.  These files were
probably deleted before year 1995.  The CVS repository begins to record
deletions around 1995.

These files may still appear in older revisions of this Mercurial
repository, when they should already be deleted.  There is no way to fix
this, because the CVS repository provides no dates of deletion.

See http://sourceforge.net/mailarchive/message.php?msg_id=29823032
2012-09-20 22:26:32 -04:00
George Koehler
be234ea759 *Again* fix fit16i() for systems with 64-bit long.
I already did this in abebf1586c06, but I edited the wrong file.  Then
in edddc6b7cd17, I deleted that file.

By fixing fit16i(), I can now compile ACK for OpenBSD/amd64.
2012-09-19 23:39:51 -04:00
George Koehler
8bf34937f1 Delete old and unused files from modules/src/em_code 2012-09-17 16:04:55 -04:00
George Koehler
99eb12a282 Fix fit16i() for systems with 64-bit long.
(long)0xFFFF8000 had expanded to 0x00000000FFFF8000.
With (long)(-0x8000), the compiler now extends the negative sign.
2012-09-16 19:57:07 -04:00
George Koehler
96ea0a5903 Fix more functions in util/ack for 64-bit hosts.
This continues the fix from changeset aabde0589450.  We must use
va_list to forward the arguments, because some of the arguments might
be 64-bit pointers.  A pointer does not fit in an int.
2012-09-07 16:28:10 -04:00
George Koehler
800d4ae032 Fix cemcom.ansi for 64-bit hosts.
Hosts with sizeof(arith) == sizeof(long) == 8 need to set full_mask[1]
through full_mask[8].  Because MAXSIZE == 8, we only had full_mask[0]
through full_mask[7].  This fix declares arith full_mask[MAXSIZE + 1]
and prevents a fatal error: "array full_mask too small for this machine"
2012-09-07 15:53:13 -04:00
David Given
6ea172d0d9 Fix a 64-bitness issue (removed some untyped K&R C code that assumed ints
and pointers were the same size).
2012-02-27 22:36:36 +00:00
Ceriel Jacobs
1072a8797e Added atol() that ignores overflow, so that unsigned long constants are dealt with properly 2011-06-15 11:13:48 +02:00
Ceriel Jacobs
2483e5723d Fixed CFU 2011-06-15 10:56:58 +02:00
cjhjacobs
58613009f8 Fixed bug reported on tack-devel mailing list on 20-3-2011 2011-05-18 19:19:19 +02:00
David Given
b6dfaefeff Removed file that the CVS conversion procedure left in (when it shouldn't have). 2011-03-20 20:47:10 +00:00
cvs2hg
eb0b730607 convert CVS tags 2011-02-11 00:51:45 +00:00
dtrg
45ee287136 Replaced dis and new with modern implementations donated by erik@backerud.se. 2010-10-02 21:52:29 +00:00
dtrg
075cb488a3 Call the correct kill() and getpid() syscalls rather than _kill() and _getpid(). 2010-10-02 21:51:40 +00:00
dtrg
a33473e0a5 Now call creat() and open() instead of _creat() and _open(). 2010-09-27 20:47:32 +00:00
dtrg
7292b538bc Added support for remove() and unlink(). 2010-09-27 20:44:49 +00:00
dtrg
a8ecb11013 Fixed very old bug where Streams.GetStreamPosition would return the wrong position --- thanks to Jan Verhoeven for finding this. 2010-09-01 19:55:15 +00:00
dtrg
085f346f8c Fixed definitions of O_* flags. 2010-08-20 19:27:09 +00:00
dtrg
c326f3c6a3 Remove references to using-machine-name-for-compiler, as we don't do that any more. 2010-08-09 22:47:33 +00:00
dtrg
a0c67da261 Changed to actually work. (On modern Linux systems the old version just
crashes. On old Linux systems it apparently only worked by accident.)
2010-08-06 17:06:31 +00:00
dtrg
293f34fa9b Flush stdout before prompting the user for input. 2010-08-06 17:02:16 +00:00
dtrg
da6111328d Flush output stream before waiting for user input. 2010-08-05 22:23:34 +00:00
cvs2hg
7273130b4c fixup commit for tag 'release-6-0-pre-4' 2010-08-04 18:04:08 +00:00
dtrg
9d2d5606ea Forgot to update version number. 2010-08-04 18:04:07 +00:00
dtrg
5147166810 Updated for 6.0pre4. 2010-08-04 18:01:12 +00:00
dtrg
e537bcc321 Fixed typo. 2010-08-04 17:59:40 +00:00
dtrg
5a872eed38 Prevent build failure on modern Bisons (which are more picky than the old yacc this was written for). 2010-08-01 10:36:01 +00:00
dtrg
51b41f72f8 Invoke genfiles explicitly with sh --- CVS doesn't store executable bits. 2010-08-01 10:35:33 +00:00
dtrg
ee72886e54 Renamed 'switch' variable to avoid conflict with a keyword in modern awks. 2010-08-01 10:35:04 +00:00
dtrg
2c54f8c742 Renamed getline() to getln() to avoid conflict with glibc's version. 2010-08-01 10:34:27 +00:00
dtrg
481bcd8a8b Added a very-nearly-noop peephole optimiser for Z80. 2008-03-20 23:20:08 +00:00
dtrg
fc44fe2185 Properly handles files ending in a partial line. 2008-03-20 22:50:50 +00:00
dtrg
4dd1ff6d80 Archival checkin (semi-working code). 2007-11-02 18:56:58 +00:00
cvs2hg
58e5e12ead fixup commit for tag 'release-6-0-pre-3' 2007-04-29 23:09:25 +00:00
dtrg
54ce3f451b Configured distr system for the 6.0pre3 release. 2007-04-29 23:09:24 +00:00
dtrg
663f4f2fb5 Cleaned up a bit and made work with the new platform architecture. 2007-04-29 23:03:24 +00:00
dtrg
78777e802b Now using more conservative optimisation due to random seg fault issues. 2007-04-29 23:02:23 +00:00
dtrg
df088c184b Added optimised rules for int<<8 and uint>>8 (which can be done with simple register shuffling rather than calling .sli). 2007-04-29 23:00:31 +00:00
dtrg
868b8c5075 Fixed the ego parameters to actually allow extended optimisation. 2007-04-29 21:25:09 +00:00
dtrg
eb4ea1e761 Use better optimisation options. 2007-04-29 21:24:17 +00:00
dtrg
494d9a3e4a Now runs descr files through the ANSI C preprocessor, rather than the K&R one (which no longer exists). 2007-04-29 21:23:55 +00:00
dtrg
6127ddf024 Fixed the trap code to write out the error message correctly. 2007-04-29 20:47:48 +00:00
dtrg
9d0f0a8fdd Disabled the code to throw signals on EM traps; this is the platform's job (and requires working signal support, which we may not have). 2007-04-29 20:46:48 +00:00
dtrg
c9d7f7ef23 Added suppot for BSS clearing and command line parsing. 2007-04-29 00:28:06 +00:00
dtrg
a7323e1a8b Documented floating-point status. 2007-04-28 22:34:47 +00:00
dtrg
3a4147a37d Added the Mandelbrot generator. 2007-04-28 22:34:05 +00:00
dtrg
be8baf3da6 Added cpm platform. 2007-04-27 22:42:41 +00:00
dtrg
013f58f94e Added the stdint.h header file. 2007-04-27 22:42:02 +00:00
dtrg
0d8578410c Cleaned up and enabled the support for conditionally emitting the floating-point stdio code. 2007-04-27 22:41:39 +00:00
dtrg
7f266d6b4e Removed a completely pointless 128-byte buffer. 2007-04-27 22:41:05 +00:00
dtrg
440d6faadd Fixed a bug where loc lol stf was getting the constant pushed onto the stack *after* stf had popped it off. 2007-04-27 22:15:31 +00:00
dtrg
24ea8aee3d Updated for the 6.0pre2 release. 2007-04-24 20:45:58 +00:00
dtrg
bc5ccee8d5 Removed bashish. 2007-04-24 19:48:41 +00:00
dtrg
bfeb736c35 Stripped down the library to something approaching the ANSI C minimum and replaced most of the header files, to provide a reasonably consistent base to work up from. 2007-04-24 19:42:24 +00:00
dtrg
740940c9fc Fixed major typos in the signal declarations that was preventing anything that used signal() from compiling. 2007-04-24 19:34:34 +00:00
dtrg
f6085fb234 Updated use of headers to compile cleanly. 2007-04-24 19:33:53 +00:00
dtrg
b8e1348f2a Ensured that _errno is always defined. Rejigged the pc86 boot code so it doesn't always waste 510 bytes of memory. 2007-04-24 19:25:00 +00:00
dtrg
413880c52d Added support for the linux386 platform. Disabled building of the K&R C, Basic and Occam compilers. 2007-04-23 23:41:50 +00:00
dtrg
ae9ac25f45 Modified to run ncgg input files through the ANSI preprocessor rather than the K&R one. 2007-04-23 23:40:59 +00:00
dtrg
f471d2e618 Added the aelflod tool for generating ELF executables. Added documentation for aelflod and ashow. Now installs the documentation when built. 2007-04-23 23:40:10 +00:00
dtrg
67c4f3de87 Modified to allow a space between the sign and the first digit of a constant. 2007-04-23 23:24:46 +00:00
dtrg
9b920e59cb Now fetches argc, argv, env correctly from the host OS. 2007-04-23 23:24:03 +00:00
dtrg
9710c14c93 Added the 'Star Trek' example game. 2007-04-21 23:20:11 +00:00
dtrg
921c55968c Adapted to tell the user what language they were written in (because they're too similar!). Modified the Pascal implementation to work with our new syscall model. 2007-04-21 23:19:32 +00:00
dtrg
1c83baa702 Adapted for ANSI C and our pseudo-Posix syscall interface. 2007-04-21 23:18:14 +00:00
dtrg
b66d66b597 Fixed a bug where the preprocessor would occasionally lose whitespace at the beginning of lines immediately after a #endif, which was confusing the assembler. 2007-04-21 23:10:13 +00:00
dtrg
2a367fa192 Disabled Terminal as it uses hard-coded ioctls and appears to be non-standard anyway. 2007-04-21 23:07:57 +00:00
dtrg
f4e37e1319 Changed to call the isatty() syscall directly, rather than fiddling around with non-portable ioctls. 2007-04-21 23:07:05 +00:00
dtrg
400c475c03 Disabled the K&R C compiler in favour of the ANSI one. 2007-04-21 23:03:35 +00:00
dtrg
b500b1a7b7 Added linux386 platform. 2007-04-21 23:02:11 +00:00
dtrg
201c66879d Updated to work with the new libmon-less setup. 2007-04-21 22:59:42 +00:00
dtrg
04860c08a8 Updated to work with the linux386 platform. 2007-04-21 22:57:51 +00:00
dtrg
daee8da3c4 yacc source files are now run through the ANSI C preprocessor, not the K&R one. 2007-04-21 22:55:59 +00:00
dtrg
4428647786 Everything is built in ANSI C now. 2007-04-21 22:55:04 +00:00
dtrg
d77b4ce97c Renamed the language libraries and runtimes to have more
conventional names.
2007-02-26 22:36:56 +00:00
cvs2hg
2d80c1d2c8 fixup commit for tag 'release-6-0-pre-1' 2007-02-25 22:49:23 +00:00
dtrg
6a0dd9377d Removed a dynamically generated file from the distribution. 2007-02-25 22:49:22 +00:00
dtrg
a4e52740bb Added some OpenBSD-related comments. 2007-02-25 22:09:15 +00:00
dtrg
8da0d38b6d Applied a patch to support OpenBSD. 2007-02-25 22:07:11 +00:00
dtrg
17b0c36f69 Replaced the call to posix.setenv() with the more portable
posix.putenv().
2007-02-25 20:59:21 +00:00
dtrg
040151dd76 Removed some explicit (and wrong) redeclarations of system
functions.
2007-02-25 20:58:16 +00:00
dtrg
9170d09462 Performed major renovations to make the script work on OpenBSD. 2007-02-25 20:56:41 +00:00
dtrg
415e7e14fc em_table is now in /h; new_table is now in util/data. 2007-02-25 12:58:41 +00:00
dtrg
d85e045ae6 Updated for the new release. 2007-02-25 12:53:55 +00:00
dtrg
b046c21d7f Added the ability to install a built ACK, and did some general
tidying.
2007-02-25 12:53:17 +00:00
dtrg
3dd11c674d Adjusted some of the default parameters and their names. 2007-02-25 12:52:32 +00:00
dtrg
b611731ec3 Updated .distr files for the new release. 2007-02-25 12:51:55 +00:00
dtrg
6d58210806 em_table is now in /h, not /etc. 2007-02-25 12:51:21 +00:00
dtrg
0f16e7540d new_table is now in /util/data, not /etc. 2007-02-25 12:49:04 +00:00
dtrg
903796a817 Now installs the man page. 2007-02-25 12:48:06 +00:00
dtrg
0974fa0e28 Remove non-standard .SB tags. 2007-02-25 12:47:50 +00:00
dtrg
6e509e22dd Added shell magic. 2007-02-25 12:46:11 +00:00
dtrg
f6a41864cf Moved to /h. 2007-02-25 12:45:24 +00:00
dtrg
f05f9de3ed Moved sys/timeb.h from include/_tail_mon. 2007-02-25 12:44:13 +00:00
dtrg
877dc01422 Moved from /etc. 2007-02-25 12:42:04 +00:00
dtrg
880e3eade8 Updated to version 0.1.1 of Prime Mover. 2007-02-25 12:39:52 +00:00
dtrg
681e2e0432 Added example programs. 2007-02-25 00:30:07 +00:00
dtrg
d2c505ad6b Removed some bashish; added comment support; removed the make
distr functionality, as nothing was using it any more and it was
causing problems.
2007-02-24 02:05:56 +00:00
dtrg
26a9b76507 Added pregenerated versions of the LLgen source files (to ease
bootstrapping issues).
2007-02-24 02:01:57 +00:00
dtrg
5c5f711cbb Done a major overhaul of the way target include files are installed and
how platform libraries are built. The ARCH pm variable has now been
renamed PLATFORM (which is more accurate) and a different ARCH
variable added, which represents the CPU family rather than the
hardware platform.
2007-02-20 00:46:10 +00:00
dtrg
809cd2ef0b Added a definition of endrom. 2007-02-20 00:42:23 +00:00
dtrg
5165f0b11f Added some comments and a CVS header. 2007-02-20 00:41:26 +00:00
dtrg
39689a4de9 Tweaked to allow _ as a leading character in identifier names (if
use of underscores in identifiers has been turned on).
2007-02-20 00:40:00 +00:00
dtrg
e4292486a3 Added some missing #includes. 2007-02-20 00:38:49 +00:00
dtrg
08431edbdb Now uses fd 0 instead of trying to explicitly open /dev/tty. 2007-02-20 00:38:13 +00:00
dtrg
611bc73043 Changed to no longer include /usr/include by default. 2007-02-20 00:36:15 +00:00
dtrg
f9ddb860a9 Fixed some reentrant comments. 2007-02-20 00:35:37 +00:00
dtrg
94a7b315e3 Changed the 'preprocess' rule to use the system C preprocessor. 2007-02-20 00:32:58 +00:00
dtrg
c40a44b52e Added some missing CVS headers and did a bit of cleaning up. 2007-02-20 00:31:54 +00:00
dtrg
478d0b1d8a Fixed a compilation error that was causing opt to not have its
peephole optimisation tables, which would make it generate
duff code.
2007-02-20 00:27:01 +00:00
dtrg
df153ba299 Added 8086 PC bootable floppy support (pc86). 2007-02-20 00:25:12 +00:00
dtrg
1c7bb87041 Fixed a bug in the maximum segment calculation. 2006-11-11 23:00:55 +00:00
dtrg
c21ba9ed0f Updated to work with the new version of pm. 2006-11-11 22:59:52 +00:00
dtrg
02a2876821 Now uses the version of LLgen included with the ACK instead of the standalone version. 2006-11-11 22:59:01 +00:00
dtrg
30b980bf7e Added a pmfile to allow LLgen to be built as part of the ACK again. 2006-11-11 22:58:30 +00:00
dtrg
c0ecde554a Added support for anm, asize, ashow, astrip and the new aslod tool. 2006-10-16 23:25:56 +00:00
dtrg
47e1c27c05 Added new aslod tool for making memory dumps. 2006-10-16 23:25:27 +00:00
dtrg
12683dd8c6 Sanitised the use of #include files to more properly conform to the standards. 2006-10-16 23:20:11 +00:00
dtrg
dbe10d2c19 Updated to the version 0.1 of Prime Mover (which involves some syntax changes). 2006-10-15 00:28:12 +00:00
dtrg
708a83ef22 ack expects the tail_ libraries not to have the .a extension. 2006-07-30 23:45:48 +00:00
dtrg
1e4ca91a8b Modified to install aal's manpage. 2006-07-30 23:45:35 +00:00
dtrg
606012371e Added support for the ANSI C language runtime and preprocessor. 2006-07-30 23:45:18 +00:00
dtrg
1efe7422d3 Added rules for building things with the ack itself. 2006-07-30 23:44:57 +00:00
dtrg
9bcefaafa8 Broke dependency on tool_cpp in order to speed up the build. 2006-07-30 23:41:16 +00:00
dtrg
45b4fef7d6 Rationalised use of #includes to be more standards-compliant. 2006-07-30 23:40:35 +00:00
dtrg
d3b557e0db Adjusted to only check the module name against the leaf of the filename, to prevent unnecessary warnings if the source file isn't in the current directory. 2006-07-30 23:38:41 +00:00
dtrg
67733b9d3c Added the correct shell script magic. (Some platforms insist on this.) 2006-07-30 23:37:15 +00:00
dtrg
c1725577a7 Worked around a mysterious preprocessor oddness causing some
crucial whitespace to be removed.
2006-07-30 23:36:19 +00:00
dtrg
e6f856e795 Updated to the latest version of pm. 2006-07-30 23:33:31 +00:00
dtrg
7826e03427 Added support for the K&R C language runtime. 2006-07-27 22:51:38 +00:00
dtrg
c5acfe7919 Added support for the Modula-2 language runtime. 2006-07-27 22:14:55 +00:00
dtrg
5a8968ae4f Added support for the Pascal language runtime. 2006-07-27 22:07:38 +00:00
dtrg
f3a9a3bc40 Added support for the Basic and Occam language runtimes. 2006-07-27 21:58:13 +00:00
dtrg
d29b1ef7d0 Added support for the Basic compiler. 2006-07-26 23:08:09 +00:00
dtrg
1caa63775f Rationalised use of #includes to be more standards-compliant. 2006-07-26 23:06:56 +00:00
dtrg
4c65324e11 Adjusted to allow the path of the Lpars.h file to be given on the
command line.
2006-07-26 23:05:52 +00:00
dtrg
e5e66bf27d Updated to the latest version of pm. 2006-07-26 18:24:16 +00:00
dtrg
2cfb9afac8 Added support for the Occam compiler. 2006-07-26 18:23:32 +00:00
dtrg
30e34f493f Rationalised use of #includes to be more standards-compliant. 2006-07-26 18:22:02 +00:00
dtrg
4fd0f0dba4 Renamed em.h to occam-em.h to avoid a clash with an ACK module
header file.
2006-07-26 18:20:38 +00:00
dtrg
c65c560acd Tweaked the CVS settings. 2006-07-26 18:19:15 +00:00
dtrg
2d2ee38770 Added support for the Modula-2 compiler. 2006-07-26 17:12:19 +00:00
dtrg
26b17074a1 Rationalised use of #includes to be more standards-compliant. 2006-07-26 17:10:30 +00:00
dtrg
bbd94dc2dc Changed to no longer build sys_lock() and sys_unlock(); they only work
on platforms that support hardlinks, and nobody uses them anyway.
2006-07-26 12:40:59 +00:00
dtrg
3494ffb302 Fixed to use rename() for renaming files, not link()/unlink(). 2006-07-26 12:40:25 +00:00
dtrg
8558656665 Now avoids piping shell scripts into a new instance of sh, instead
using a subshell.
2006-07-26 12:29:47 +00:00
dtrg
dc5d08b2a3 Modified to include the appropriate header file rather than (badly)
prototyping syscalls itself.
2006-07-26 12:28:56 +00:00
dtrg
ec254c30c1 Updated to the latest version of pm. 2006-07-26 12:27:01 +00:00
dtrg
3435e8d6ed Modified to not try to unlink directories when installing. 2006-07-25 23:29:12 +00:00
dtrg
b3b2ec567f Updated version number. 2006-07-25 23:24:39 +00:00
dtrg
7068d0d301 Modified to use rename() instead of link()/unlink() to rename files. 2006-07-25 23:24:20 +00:00
dtrg
f756747414 Updated to the latest version of pm which installs files with symlinks. 2006-07-25 23:22:58 +00:00
dtrg
b24e1f5aae Updated to the latest version of pm. 2006-07-25 13:28:35 +00:00
dtrg
6ebe928712 Updated to the latest version of pm. 2006-07-25 09:23:21 +00:00
dtrg
1799cb0706 Added a workaround for an OSX compiler bug. 2006-07-23 20:33:26 +00:00
dtrg
f39d595f98 Updated to the latest version of pm. 2006-07-23 20:07:19 +00:00
dtrg
014be56fb0 Replaced calls to the custom strindex() and strrindex() functions with the
exactly equivalent and standard strchr() and strrchr() functions instead.
2006-07-23 20:01:02 +00:00
dtrg
babe9eafad Modified to no longer build unoptimised duplicates of all the standard
string functions (strcpy, strlen, etc).
2006-07-23 19:58:27 +00:00
dtrg
ec8788ce7d Changed to call ranlib on ar archives. (Unnecessary on Linux and *BSD,
but needed on OSX and technically correct.)
2006-07-23 19:56:11 +00:00
dtrg
05d3be79cd Removed a really unpleasant test for whether a pointer points at a string
constant or not by comparing it with 'end', which presumably points at
the top of the BSS. In fact, on Linux it evaluates to NULL, and on OSX it
doesn't exist at all, so it appears to be unnecessary.
2006-07-23 19:38:13 +00:00
dtrg
345f4c8978 Modified to avoid creating a zero-length iargs array, which some compilers
(OSX) do not create a symbol for.
2006-07-23 18:29:38 +00:00
dtrg
eed5d461e4 cpp now gets installed in the right place. 2006-07-23 17:52:23 +00:00
dtrg
dc4606aa21 Really added support for the Pascal compiler. 2006-07-22 21:24:41 +00:00
dtrg
f1386f3aa5 Added support for the Pascal compiler. 2006-07-22 21:03:07 +00:00
dtrg
2dbc112117 Rationalised use of #includes to be more standards-compliant. 2006-07-22 21:01:15 +00:00
dtrg
e6ddd5be27 Changed to export a header file so it can be correctly referred to. 2006-07-22 20:59:22 +00:00
dtrg
7af0c5696d cpp now gets installed in the right place. 2006-07-22 20:58:27 +00:00
dtrg
558a1ef405 led now gets installed into the right place. 2006-07-22 20:52:44 +00:00
dtrg
8499270aef Added support for the esize object inspection tool. 2006-07-22 20:10:41 +00:00
dtrg
aa2dab31cf Rationalised use of #includes to be more standards-compliant. 2006-07-22 20:08:08 +00:00
dtrg
113383e31c Added support for the led link editor. 2006-07-22 20:04:41 +00:00
dtrg
f232b4dc29 Rationalised use of #includes to be more standards-compliant. 2006-07-22 17:58:49 +00:00
dtrg
304c0e21a0 Added support for the top target peephole optimiser. 2006-07-22 12:31:19 +00:00
dtrg
f8e168adcd Updated to the latest version of pm. 2006-07-22 12:29:40 +00:00
dtrg
fdcdaadcb8 Rationalised use of #includes to be more standards-compliant. 2006-07-22 12:28:20 +00:00
dtrg
744d0ca7be Removed a huge, ancient comment dating from the genmake days. 2006-07-22 12:27:31 +00:00
dtrg
1a037b9685 Added support for the ego global optimisation suite. 2006-07-22 00:52:01 +00:00
dtrg
78ff773233 First version in CVS. 2006-07-22 00:49:48 +00:00
dtrg
2e48c1b80d Changed so as to not compile the ACK with optimisation, to improve
debuggability.
2006-07-22 00:47:55 +00:00
dtrg
f371b251d2 Rationalised use of #includes to be more standards-compliant. 2006-07-22 00:46:16 +00:00
dtrg
d220081198 Changed to declare symbols as extern rather than just mentioning
them without qualification.
2006-07-22 00:45:51 +00:00
dtrg
86e20aa483 Added a concrete definition of nrglobals, because this was not always happening
otherwise.
2006-07-22 00:44:52 +00:00
dtrg
03e34d0e2a Updated to the latest version of pm. 2006-07-21 13:13:47 +00:00
dtrg
3afd3e4cb4 Updated version number. 2006-07-21 11:25:05 +00:00
dtrg
c0c8695ea4 Now resolves symlinks when creating releases (which avoids including a symlink to pm in the distribution, and not pm itself). 2006-07-21 11:24:46 +00:00
dtrg
154b23cd39 Updated version number. Corrected some typos. 2006-07-21 11:19:42 +00:00
dtrg
34ae7c4634 Removed duplicate (and incorrect) system function declarations. 2006-07-21 11:17:18 +00:00
dtrg
70218cfeed Updated to the latest version of pm. 2006-07-21 11:15:14 +00:00
dtrg
db0b628497 Removed a definition of 'struct label' as 'label_t', as it clashes with
a common Posix extension on BSD systems.
2006-07-21 10:35:34 +00:00
dtrg
685e85002e Rearranged the algorithm in get_text() to fix a memory overrun. 2006-07-21 09:28:36 +00:00
dtrg
a1ba8c6d3f Fixed revision history. 2006-07-20 23:24:42 +00:00
dtrg
097c640a6c First version in CVS. 2006-07-20 23:24:28 +00:00
dtrg
ea8f3fe1ff Rationalised use of #includes to be more standards-compliant. 2006-07-20 23:17:25 +00:00
dtrg
22db34a460 Fixed revision history. 2006-07-20 23:10:07 +00:00
dtrg
cf461cd82f First version in CVS. 2006-07-20 23:04:28 +00:00
dtrg
35f2f8b043 Rationalised use of #includes to be more standards-compliant. 2006-07-20 23:04:15 +00:00
dtrg
cf4417431f Added the appropriate #! magic at the beginning of shell scripts. (Some modern shells don't like scripts to be without it.) 2006-07-20 23:02:37 +00:00
dtrg
6717b9e700 Changed configuration to now use malloc()/free() rather than sbrk(). 2006-07-20 22:59:25 +00:00
dtrg
4f1a4b30f7 First version in CVS. 2006-07-20 22:57:46 +00:00
dtrg
e34b2fefba Updated to point at the ncg code generator instead of the cg one. 2006-07-20 22:37:57 +00:00
dtrg
db11db0cac Added the appropriate #! magic at the beginning of shell scripts. (Some modern shells don't like scripts to be without it.) 2006-07-19 14:09:25 +00:00
dtrg
6073ee934e Rationalised use of #includes to be more standards-compliant. 2006-07-19 14:09:05 +00:00
dtrg
4b79248af9 Modified to no longer build LLgen, as it is now distributed separately. 2006-07-19 14:03:33 +00:00
dtrg
b6757337b3 Added the appropriate #! magic at the beginning of shell scripts. (Some modern shells don't like scripts to be without it.) 2006-07-19 10:30:26 +00:00
dtrg
e859ef2491 Rationalised use of #includes to be more standards-compliant. 2006-07-19 10:28:43 +00:00
dtrg
4cb0ab8a63 Rationalised use of #includes to be more standards-compliant. 2006-07-18 18:05:47 +00:00
dtrg
57084134e5 Modified to no longer build LLgen, as it is now distributed seperately. 2006-07-18 17:34:30 +00:00
dtrg
87e91b4766 Added comment about the use of 'cc' rather than 'gcc'. 2006-07-18 17:21:34 +00:00
dtrg
d722986e66 Added the appropriate #! magic at the beginning of shell scripts. (Some modern shells don't like scripts to be without it.) 2006-07-18 17:20:46 +00:00
dtrg
1ed24cab9b No longer generates zero bytes in the script's output file. 2006-07-18 17:20:05 +00:00
dtrg
9ca41cf4b6 Worked around unput() not being strictly legal in the tail code section of a yacc input file. 2006-07-18 17:19:20 +00:00
dtrg
cd09c29949 Rationalised use of #includes to be more standards-compliant. 2006-07-18 17:18:42 +00:00
dtrg
f5bbc20093 Removed unnecessary commas seperating yacc tokens, to prevent warnings. 2006-07-18 17:17:14 +00:00
dtrg
4c0a0e6119 Rationalised use of #includes to be more standards-compliant. 2006-07-18 17:10:29 +00:00
dtrg
8ea67498ed Added the appropriate #! magic at the beginning of shell scripts. (Some modern shells don't like scripts to be without it.) 2006-07-18 17:10:18 +00:00
dtrg
1eb1cb6f62 Renamed the 'index' variable to 'offset', to prevent clashes with the libc index() function. 2006-07-18 17:00:30 +00:00
dtrg
4f6fff6b1f Removed unnecessary commas seperating yacc tokens, to prevent warnings. 2006-07-18 16:59:11 +00:00
dtrg
2aca7fbaf4 Renamed the private 'atol()' function to 'our_atol()' to avoid clashes with the libc one. 2006-07-18 16:57:51 +00:00
dtrg
13a9ff3379 Removed unnecessary commas seperating yacc tokens, to prevent warnings. 2006-07-18 16:52:08 +00:00
dtrg
423368e42f Renamed the 'index()' function to 'indexmode()', to prevent clashes with the libc index() function. 2006-07-18 16:50:22 +00:00
dtrg
45ed0df6d0 Removed a #define that was also defined in cv.c. 2006-07-18 16:48:21 +00:00
dtrg
454bdae81f Added the appropriate #! magic at the beginning of shell scripts. (Some modern shells don't like scripts to be without it.) 2006-07-18 16:45:57 +00:00
cvs2hg
5cb054f106 fixup commit for tag 'llgen-1-0' 2006-02-04 00:57:05 +00:00
dtrg
e864bf235e Split LLgen off to be self-contained, and not necessarily part of the ACK. Replaced its build system with one based on pm. Rewrote the README. Updated the license text to match the overriding license common to all the ACK. 2006-02-04 00:57:04 +00:00
dtrg
953a565a10 Moved LLgen documentation from the main ACK documentation directory into LLgen's own documentation directory. 2006-02-04 00:43:32 +00:00
dtrg
dd57d79b1b Modernised usage of system header files. 2006-02-04 00:37:19 +00:00
dtrg
71a92846dd Modernised usage of system header files. 2006-02-03 22:23:37 +00:00
dtrg
c39e85da63 Modernised usage of system header files. Changed the patch buffer (which allowed the library path to be modified with a hex editor) to an environment variable instead. 2006-02-03 22:23:11 +00:00
dtrg
4c0b3bb40f Modernised usage of system header files. 2006-01-24 22:29:19 +00:00
dtrg
4fdd9b83fc Converted to use termios, not sgtty. (pbetti@e-tech.net) 2005-08-10 22:48:40 +00:00
cjhjacobs
26889d3762 Fix: did not deal with quotes in macro definitions properly 2005-06-30 16:54:15 +00:00
dtrg
e0846f63be Removed duplicate and inconsistent function declarations. 2005-06-25 15:52:19 +00:00
dtrg
35bd1df1aa Now includes stdlib.h to avoid implicit call declarations. 2005-06-25 15:50:40 +00:00
dtrg
4ed4d8423f Added some prototyping to stop a compile error with gcc 4. 2005-06-25 13:49:06 +00:00
cvs2hg
cf1a80ecb6 fixup commit for tag 'release-5-6' 2005-06-24 23:20:42 +00:00
dtrg
e8b47b4745 Added some new readmes at the top level. 2005-06-24 23:20:41 +00:00
dtrg
5c8a5ed523 Added LLgen_NCER.n to the distribution because the makefile seems to want it. 2005-06-24 23:19:55 +00:00
dtrg
754267f0bd Added new mkdist tool. 2005-06-24 23:19:24 +00:00
dtrg
adb3cc5523 Created new tool to generate distributions. 2005-06-24 22:13:57 +00:00
dtrg
dd400ca720 Removed a call to _cleanup(), which appears to be a Minixism (and should be unnecessary). 2005-06-24 22:12:02 +00:00
dtrg
f2046954e6 Cleaned up the struct sgtty workaround and made it more generic. 2005-06-24 22:11:27 +00:00
dtrg
779fe568fc Removed an assumption that 'stdin' is a constant, which it's not on Linux. (You can't use it as an initialiser when declaring a global variable.) 2005-06-24 22:10:24 +00:00
dtrg
9bc8c07deb Replaced references to /usr/tmp with references to /tmp. 2005-06-24 22:08:47 +00:00
dtrg
70ef6fe52e Applied interim patches to make the interpreter compile on Linux. (Linux doesn't support struct sgtty; all this code should probably be rewritten to use termios instead, if I've understood it correctly.) 2005-06-24 21:42:11 +00:00
dtrg
9bd955e4f6 Removed Versions, since that file doesn't actually exist. 2005-06-24 21:14:44 +00:00
ceriel
a56d81ea51 new copyright notice in repository 2005-05-26 06:47:43 +00:00
ceriel
b1632b8060 Fix 2003-01-08 09:39:52 +00:00
ceriel
8f69a0ca44 Fix 2002-09-11 13:32:57 +00:00
ceriel
e8fdf4fcda fix 2002-09-11 13:19:23 +00:00
ceriel
1e32788ad1 Added missing files to .distr 2002-09-11 13:17:00 +00:00
ceriel
053ba2d164 ... 2002-09-10 13:40:14 +00:00
ceriel
daa34d0fe6 minor mods 2002-09-10 13:30:06 +00:00
ceriel
ee2c7069e4 Prevent double fclose 2002-08-26 14:27:15 +00:00
ceriel
4556d261d8 ??? 2002-04-04 12:33:15 +00:00
ceriel
df46c5e165 Fix for union initializers 2001-07-03 10:10:56 +00:00
ceriel
910316cfde Fix: parameter name same as function name not dealt with properly 2001-07-03 08:55:16 +00:00
ceriel
55dbc99000 Updated copyright 1999-04-23 14:15:43 +00:00
ceriel
6ca98e7102 Adapted copyright notice 1999-03-18 15:34:27 +00:00
ceriel
f0a7a313fc Fix: did not always produce error message 1998-11-10 14:26:06 +00:00
ceriel
384c4bc698 Fixed bug with 4-byte sets on 2-byte machines 1998-09-03 12:51:38 +00:00
ceriel
91cb060d10 Replaced a couple of UnGetChar calls with ChPushBack calls. The
UnGetChar call is wrong after skipspaces().
1998-02-09 09:49:00 +00:00
ceriel
d6e0e461f7 Corrected Makefile 1997-09-04 15:49:46 +00:00
ceriel
1840829928 Added LLgen_NCER.n 1997-07-10 07:58:30 +00:00
ceriel
298f8c8b0f fixed typo 1997-07-10 07:58:19 +00:00
ceriel
495dce5d6c Added LLgen_NCER.n 1997-07-10 07:55:35 +00:00
ceriel
8a2a3fd74b Only list readable directories 1997-07-01 12:05:54 +00:00
ceriel
4ec7d8bf7f Bug fix: copied wrong size to destination in structure returns 1997-07-01 08:33:13 +00:00
ceriel
f8fd2aa273 Removed superfluous ; 1997-06-16 13:07:37 +00:00
ceriel
e38b178317 Many modifications, mostly in comment 1997-05-15 12:03:05 +00:00
ceriel
cebde164bb Prevent warning about unused labels 1997-04-02 10:42:06 +00:00
ceriel
6db931eee6 Link em_data.a as well (needed when producing readable EM 1997-04-01 13:58:58 +00:00
ceriel
2c66222509 Fixed bug: flt_div should not touch e1 1997-03-13 18:38:24 +00:00
ceriel
2382ef1a27 Additions for non-correcting error recovery 1997-02-21 17:22:42 +00:00
ceriel
99ac23b4b4 Additions for non-correcting error recovery 1997-02-21 17:11:04 +00:00
ceriel
8ea5d257c4 improved error reporting, added -DNON_CORRECTING 1997-02-21 15:44:44 +00:00
ceriel
664d3fc8d3 some minor fixes 1997-02-21 15:44:10 +00:00
ceriel
13fea7102b Updated 1997-02-21 12:23:04 +00:00
ceriel
c2607fdf0f Added non-correcting error recovery stuff 1997-02-21 11:27:57 +00:00
ceriel
a44875cf00 bug fix: code referred to token attribute of wrong token! 1997-02-17 15:14:55 +00:00
ceriel
ae0cde301d Bug fix: conversion is OK if arg = 0.0 1997-01-27 14:06:51 +00:00
ceriel
9f61a33c9f troff flag -Tlpr is now changed to -Tlp 1996-12-04 14:03:12 +00:00
ceriel
3b3ec3a2af Fixed typo in catchsig.s 1996-11-26 15:05:10 +00:00
ceriel
63e0b36b41 renamed _len to _length: conflict with name in minix lib 1996-11-26 15:02:36 +00:00
ceriel
56033dc0c1 Added -n flag 1996-11-21 10:14:26 +00:00
ceriel
ea09125e30 fixed a bug: STD/LDD was generated on odd-numbered reg 1996-11-19 13:28:41 +00:00
ceriel
a44bbb3977 Fixed a couple of minor bugs 1996-11-19 13:27:56 +00:00
ceriel
322c1c1b4c Some fixes 1996-11-19 09:12:36 +00:00
ceriel
d0587ef3ab Stupid confusion with fdtox and fxtod 1996-11-18 16:49:54 +00:00
ceriel
150db958da Fixed typo 1996-10-22 14:34:16 +00:00
ceriel
efacd02ffd Added LONGCARD as a local extension 1996-08-14 07:42:40 +00:00
ceriel
1592c3638c Moved TryToString call into ChkAssCompat 1996-06-06 07:47:00 +00:00
ceriel
7f7f5f187f Fix: compatibility check in RETURN statement 1996-06-06 07:37:02 +00:00
ceriel
740f1d5f75 fix in cmpxchg instruction; i486 book is wrong 1996-04-25 08:38:05 +00:00
ceriel
6ec3dd7ebd fix in flushbuf: make sure it does not return EOF when it actually succeeds 1996-04-24 13:06:00 +00:00
ceriel
73b54a2326 fixed bug with %[] in doscan.c 1996-04-01 09:08:59 +00:00
ceriel
3895a59e03 Fix to fix in idf.c 1996-02-19 12:19:47 +00:00
ceriel
67cb729554 Fixed bug: crashed when parameter has same name as function 1995-12-20 09:58:56 +00:00
ceriel
d0288b673b Some improvements 1995-12-19 09:30:48 +00:00
ceriel
7442852cad Removed unclear test 1995-12-18 11:02:18 +00:00
ceriel
4baa1312a8 removed 1995-12-06 14:15:11 +00:00
ceriel
cdb362b628 removed 1995-12-06 14:04:51 +00:00
ceriel
e5894e0f5a removed 1995-12-06 13:28:04 +00:00
ceriel
6576498776 removed MakeVersion 1995-12-06 13:26:54 +00:00
ceriel
d224889b8d removed Makefile 1995-12-06 13:26:03 +00:00
ceriel
a6ea80436b removed Makefile, added README 1995-12-06 13:25:23 +00:00
ceriel
0ea8200a57 added file 1995-12-06 13:23:09 +00:00
ceriel
4a5e3f42d3 removed 1995-12-06 13:21:54 +00:00
ceriel
2358a2f5e2 Added pascal compiler report 1995-12-06 13:17:50 +00:00
ceriel
6e2fe89c61 removed 1995-12-06 13:08:44 +00:00
ceriel
583130b79b deleted 1995-12-06 13:04:25 +00:00
ceriel
550095a5d0 Removed Version.c 1995-12-06 09:52:54 +00:00
ceriel
f7157ca24c Copied versions of dv[iu].s from ../../m68k2/libem. 1995-12-05 15:38:55 +00:00
ceriel
ddc1751296 A couple of minor changes 1995-12-05 13:51:43 +00:00
ceriel
0a643bb9d0 Improved the pow() function to give more exact results 1995-12-05 12:29:36 +00:00
ceriel
812b6f2158 Fixed obscure bug in setvbuf 1995-12-04 17:11:54 +00:00
ceriel
6d39052c12 Corrected nested function info 1995-12-04 16:42:11 +00:00
ceriel
d4abf57904 Fixed warnings, recognize -gdb 1995-12-04 15:29:42 +00:00
ceriel
a9df108116 Made to work; how did this get into the repository??? 1995-12-04 15:20:46 +00:00
ceriel
39011a99c5 Pass -gdb on to M2 compiler 1995-12-04 15:01:07 +00:00
ceriel
c97f79454d Fixed a bug with local character arrays initialized with a string 1995-11-15 09:42:25 +00:00
ceriel
2985469116 Fix: wrong offsets for locals when < -32768, installation error for 'show' 1995-11-08 11:09:14 +00:00
ceriel
c1738933d7 Fix: wrong offsets for locals when < -32768 1995-11-08 11:08:09 +00:00
ceriel
4565576021 Fixed bug with labels 1995-11-07 10:37:59 +00:00
ceriel
0bf45ac757 Get() parameter is optional 1995-11-01 16:54:17 +00:00
ceriel
a8b1f8e347 Header file was included twice 1995-11-01 15:59:33 +00:00
ceriel
29e457c381 Fix by Charles Lindsey 1995-09-25 08:09:55 +00:00
ceriel
71da2cdda9 Fixed some bugs with the setxx instructions 1995-09-12 12:09:08 +00:00
ceriel
8b3437dd24 Fix: setxx instructions should only accept byte registers 1995-09-12 12:08:42 +00:00
ceriel
b766e2beab Added libassert for when DEBUG is defined 1995-08-18 07:28:47 +00:00
ceriel
71913a9d1d A68 rules from Charles Lindsey 1995-08-18 07:27:57 +00:00
ceriel
3ad37ef26b lib --> lib.bin for a68 1995-08-18 07:26:46 +00:00
ceriel
b9a67e72ca use stdarg when compiling with ANSI C compiler 1995-08-18 07:26:18 +00:00
ceriel
1aa9149ff9 Changed for sparc_solarisdescr 1995-08-18 07:24:18 +00:00
ceriel
4c73887050 use stdarg when compiling with ANSI C compiler 1995-08-17 16:51:09 +00:00
ceriel
7b207deeb7 use stdarg when compiling with ANSI C compiler 1995-08-17 16:43:36 +00:00
ceriel
53eb117563 use stdarg when compiling with ANSI C compiler 1995-08-17 16:34:29 +00:00
ceriel
0dc2d5a625 use stdarg when compiling with ANSI C compiler 1995-08-17 16:14:45 +00:00
ceriel
b7396a7cd4 use stdarg when compiling with ANSI C compiler 1995-08-17 15:20:35 +00:00
ceriel
0509996f7f use stdarg when compiling with ANSI C compiler 1995-08-17 15:01:56 +00:00
ceriel
c3855160fb use stdarg when compiling with ANSI C compiler 1995-08-17 14:36:05 +00:00
ceriel
acdb874527 use stdarg when compiling with ANSI C compiler, and some other minor changes 1995-08-17 13:33:55 +00:00
ceriel
a96a9107c8 'ed -' is no longer supported on some systems. replaced by 'ed -s' 1995-08-17 12:22:33 +00:00
ceriel
e41c75c1bc Some minor changes 1995-08-17 10:03:43 +00:00
ceriel
32bcf11ab9 Re-ordered for incompatible Linux shell 1995-08-15 14:59:28 +00:00
ceriel
f8cbcf1b4f Don't use SIGEMT; it is not portable 1995-08-15 09:10:39 +00:00
ceriel
65cd309c08 'ed -' is no longer supported by some systems. Use 'ed -s' 1995-08-15 08:43:10 +00:00
ceriel
f8d6337862 'ed -' is no longer supported by some systems. Use 'ed -s' 1995-08-14 15:09:59 +00:00
ceriel
f34bf4b487 removed dependency on /usr/include/varargs.h 1995-08-14 15:08:46 +00:00
ceriel
7c086b1710 create modules/h too, for varargs.h 1995-08-14 15:07:53 +00:00
ceriel
c587ca287e 'ed -' is no longer supported by some systems. Use 'ed -s' 1995-08-14 08:08:56 +00:00
ceriel
525eb1f1a4 Fixed typo 1995-07-31 09:17:14 +00:00
ceriel
7b6d8fbe56 Added copyright notice 1995-07-31 09:10:42 +00:00
ceriel
bf6f4f8a6e Minor mod to Makefile 1995-07-27 07:14:54 +00:00
ceriel
5a6d5d877f declare errno in cerror.s 1995-07-26 08:55:56 +00:00
ceriel
2624e5d05c Use _end instead of $_end. $_end does not always indicate the right
position. This should be fixed as well, but how?
1995-07-26 08:52:03 +00:00
ceriel
ef30bb3398 Fix by Charles Lindsey: still used reg vars, despite ms_gto 1995-07-26 08:44:35 +00:00
ceriel
41d0c898e5 Fixed typo 1995-07-26 08:43:02 +00:00
ceriel
1bcd59df35 Some changes suggested by Charles Lindsey 1995-07-26 08:42:56 +00:00
ceriel
c9153e6b9b Set B_busy 1995-07-25 16:49:15 +00:00
ceriel
4978d19bff Several fixes from Charles Lindsey 1995-07-25 16:43:42 +00:00
ceriel
34b3d1fb52 Fix: produced jgt instead of jg 1995-07-25 13:21:53 +00:00
ceriel
5e03b1bebb Fixes: some conditionals were evaluated wrong due to the overflow bit 1995-07-21 12:05:26 +00:00
ceriel
3883860106 Added Posix names 1995-06-28 09:46:39 +00:00
ceriel
c833d93d2d Some fixes 1995-06-12 14:28:36 +00:00
ceriel
a0bd098f98 Fix: got into infinite loop 1995-05-02 12:23:28 +00:00
ceriel
15d2949b88 Fix: opaque types my only be defined in the CORRESPONDING implementation 1995-04-26 13:54:56 +00:00
ceriel
5edfb9eccf Fix: had a semicolon too much (KJB) 1995-04-18 13:56:20 +00:00
ceriel
fdc0e2efdb minor improvement 1995-03-29 11:57:27 +00:00
ceriel
34f7036b87 Reordered patterns 1995-03-28 11:22:34 +00:00
ceriel
06b0d3775f Added some patterns 1995-03-28 10:01:02 +00:00
ceriel
f069cba449 Made arith_sign more portable 1995-03-28 09:10:31 +00:00
ceriel
86cb2d66d7 Fixed: % and / were interchanged 1995-03-27 11:46:47 +00:00
ceriel
d801356f1e Fixed typo 1995-03-27 11:22:57 +00:00
ceriel
bcb4a75630 free WorkingDir only if including cpp 1995-03-24 13:56:20 +00:00
ceriel
e4fd4fce8e Fix: C_pt_ps and C_pt_op prototypes only valid when READABLE_EM is defined 1995-03-24 10:27:28 +00:00
ceriel
b71c0ca9a3 Added Amake.srclist 1995-03-21 09:39:29 +00:00
ceriel
32c692d93b Use TARGETHOME for manual page 1995-03-17 14:11:47 +00:00
ceriel
87d67255d9 Added filter for TARGETHOME, needed for man pages that include an include-file 1995-03-17 14:11:06 +00:00
ceriel
404d86d544 Added -F option to indicate name of floating point hook 1995-03-17 12:37:06 +00:00
ceriel
911b0a43d8 Fix: never replace LAR/SAR by AAR LOI/STI if descriptor is not in ROM 1995-03-17 12:32:47 +00:00
ceriel
d5505f2f02 Also create sparc_solarisdescr 1995-03-17 11:00:29 +00:00
ceriel
d1435f4fc6 Added an option to strip the grammar from its actions 1995-02-24 12:10:44 +00:00
ceriel
65353b1417 Fix: description of setxx should write arg 1995-02-24 11:53:43 +00:00
ceriel
0ae5288ab7 Fix for membership test with constant LHS 1994-12-20 16:00:57 +00:00
ceriel
68cebfb733 do not allow ',' as separator in parameter declarations; this results in bad C-code 1994-12-20 12:47:48 +00:00
ceriel
2b0a61d143 Added more precise info about parameters 1994-12-20 12:40:21 +00:00
cvs2hg
dc2a339e09 fixup commit for tag 'oct-1' 1994-12-06 09:12:22 +00:00
ceriel
7393f8923c Many changes:
- added some data flow stuff
- many cosmetic changes
1994-12-06 09:12:21 +00:00
ceriel
ef0ecb31b2 Fix: sometimes produced branch to non-existing label 1994-11-29 14:53:02 +00:00
ceriel
63d0700af1 Fix: made 'rep' equivalent to 'repz' 1994-11-16 14:43:42 +00:00
ceriel
33da68f7e2 made statbuf static, so that is is zero when not initialized 1994-11-14 12:34:50 +00:00
ceriel
e10145ba2e exit with erno+1, because otherwise exit status is 0 with array bound error 1994-11-14 11:51:24 +00:00
ceriel
e441b2f658 disabled a warning 1994-11-01 11:45:23 +00:00
ceriel
c7b707c266 SkipToNewLine() fixed: did not work with a / at the end of a line 1994-10-28 15:26:36 +00:00
ceriel
8061bab6a9 removed warning and fixed two problems:
- remove_def was wrong, and parameter defs should not be removed at the
  end of a scope
1994-10-27 14:57:48 +00:00
ceriel
4c26480d25 Fix: sometimes wrote register gotten from pop_reg(); Fix: WINDOWSIZE; Fix: make distr 1994-10-25 16:14:08 +00:00
ceriel
d992ed4935 mark file parameters as used in reads/writes 1994-10-25 15:41:59 +00:00
ceriel
a1a816ddc2 Avoid some empty if- and else- parts. gcc -Wall does not like it 1994-10-20 12:43:35 +00:00
ceriel
7b996be765 void LoadChar 1994-10-20 11:52:15 +00:00
ceriel
4851c0c9f3 Fine tuning of some patterns 1994-10-19 14:09:26 +00:00
ceriel
cfbdef35e7 A couple of fixes: use Bourne shell, and fixed recursive call of get_sys 1994-10-18 16:07:27 +00:00
ceriel
29a640446a Remove prototype idfs in casts! 1994-10-18 13:43:50 +00:00
ceriel
d1e4c3d930 Fixed: union initialization did not work properly 1994-10-03 12:57:39 +00:00
ceriel
c3ad2ccc5e Improved driver, handles quotes better 1994-09-16 12:41:55 +00:00
ceriel
3662861589 Changed PATH somewhat 1994-08-25 08:05:28 +00:00
ceriel
f54d79e41a removed un-used variable 1994-07-06 08:34:27 +00:00
ceriel
e2894d7a6e Header --> Id 1994-06-28 14:41:17 +00:00
ceriel
8636e9d10a Changed Header into Id 1994-06-27 08:03:14 +00:00
ceriel
1db6a3029b Header --> Id 1994-06-24 14:02:31 +00:00
ceriel
5c83e7dbb5 Header --> Id 1994-06-24 11:31:16 +00:00
ceriel
6cec9aca97 Header --> Id && bug fix 1994-06-24 07:25:30 +00:00
ceriel
910f827fe2 Header --> Id && bug fix 1994-06-23 16:08:51 +00:00
ceriel
273fb42833 Changed Header into Id 1994-06-23 13:47:02 +00:00
ceriel
11f3094b51 Fix: forgot to initialize malloced mem 1994-06-23 10:00:01 +00:00
ceriel
2b54fa3a19 Fix: also redefine LLsafeerror 1994-06-23 09:58:30 +00:00
ceriel
77c44b0f04 Minor fix in error message 1994-06-02 10:54:13 +00:00
ceriel
96172158e5 Fix: dit not handle multiple POINTER TO constructs right 1994-05-25 12:10:59 +00:00
ceriel
f06b39f112 removed wrong assertion 1994-04-19 10:46:08 +00:00
ceriel
dd67502468 Minor fix 1994-04-19 10:04:53 +00:00
ceriel
656fb00e9b Fix: error recovery sometimes skipped tokens it needed later on 1994-04-19 09:38:00 +00:00
ceriel
958aced01b Generate octal char constants instead of ints for LLsets 1994-04-12 13:53:38 +00:00
ceriel
8a670148e4 changed Header to Id 1994-03-11 10:37:39 +00:00
ceriel
b8b3054bba Fix: prevent unintentional token pasting 1994-03-01 15:04:52 +00:00
ceriel
b03e2f6a8b Also update alignment in complete_type(); resulted in obscure (and wrong) error message 1994-03-01 09:54:16 +00:00
ceriel
805a0a4b66 Added -DNDEBUG to compilation flags 1994-02-25 14:14:55 +00:00
ceriel
af0e9371e9 call abort() only when NDEBUG is not defined 1994-02-25 14:01:54 +00:00
ceriel
11682328eb get section alignments right 1994-01-14 11:42:01 +00:00
ceriel
3cd7046ec4 Updated 1993-12-15 13:28:16 +00:00
ceriel
5a99c436b6 minor change: commented __ANSI_H__INCLUDED after #endif 1993-12-15 09:55:35 +00:00
ceriel
6f23614b06 Fixed problem with calloc() declaration 1993-12-09 16:31:05 +00:00
ceriel
6561b6287f Fix: CMP instruction with small constant does not handle PC-relative 1993-12-06 10:14:43 +00:00
ceriel
fe99903321 Several changes: did not work right when compiled with the ANSI C compiler 1993-11-24 15:37:27 +00:00
ceriel
b7a5c1acc0 export WRITE 1993-11-24 15:32:45 +00:00
ceriel
48ab6fa908 Fixed typo 1993-11-24 13:01:08 +00:00
ceriel
ac6b7e7cf5 Export .stop 1993-11-24 12:57:43 +00:00
ceriel
acd80a39f2 Fixed typo 1993-11-24 12:54:29 +00:00
ceriel
1d6775dfa5 Wrong references to _endbss; changed to endbss 1993-11-24 12:45:29 +00:00
ceriel
c791a62031 Fixed: tail_mon2 instead of tail_sys 1993-11-24 12:42:08 +00:00
ceriel
a3de95550e define .cs[ab]4 instead of .cs[ab] 1993-11-24 12:39:21 +00:00
ceriel
67c750a70c Improved CSA some more 1993-11-24 12:39:19 +00:00
ceriel
0b7ae7a629 .long replaced by .data4 1993-11-24 12:37:16 +00:00
ceriel
e30d27c418 Fixed bug in newlabel: assertion was wrong 1993-11-24 12:07:26 +00:00
ceriel
12bc7ed391 Changed as suggested by Frans Meulenbroeks 1993-11-23 15:35:08 +00:00
ceriel
0e6e7bc913 Fixed for machines without .o 1993-11-19 09:59:11 +00:00
ceriel
75afbd450b Fixed problem with the IN operator 1993-11-19 09:53:47 +00:00
ceriel
618041f3ff Some minor modifications 1993-11-19 09:50:20 +00:00
ceriel
6b1a0c486f Fixed too large constant 1993-11-19 09:37:44 +00:00
ceriel
60192399dc Added declarations for static functions 1993-11-18 15:38:13 +00:00
ceriel
862f5da86d use 0xFFFF mask for printing shorts, and work around gcc 2.4.5 bug 1993-11-18 15:35:03 +00:00
ceriel
e3e19a7a0d signal now deals with void functions 1993-11-17 16:53:43 +00:00
ceriel
1ac5aa547d Fix: reset DISABLE_LANG and DISABLE_SUP when installing everything 1993-11-17 16:49:43 +00:00
ceriel
cf151967a5 signal now deals with void functions 1993-11-17 16:38:52 +00:00
ceriel
82f89c97a6 signal now deals with void functions 1993-11-17 16:27:44 +00:00
ceriel
2309d12210 Updated: signal now uses a void function 1993-11-17 11:04:32 +00:00
ceriel
90134a3bea Some minor changes 1993-11-17 10:25:17 +00:00
ceriel
5dfe51c5d4 Oops: committed wrong version 1993-11-17 09:37:02 +00:00
ceriel
875797a7d8 and again ... 1993-11-17 09:10:36 +00:00
ceriel
121cb0c285 Fixed: version with typo committed 1993-11-17 09:05:28 +00:00
ceriel
0dde39aa63 Fixed problem with IN operator 1993-11-16 16:31:27 +00:00
ceriel
cc61337a9f signal, second arg is void function 1993-11-16 12:03:22 +00:00
ceriel
5bbe789504 Some small fixes 1993-11-16 12:00:06 +00:00
ceriel
f5df1934b9 Define PRIVATE as static 1993-11-16 11:59:09 +00:00
ceriel
65592bae41 prevent some gcc warnings 1993-11-16 11:54:00 +00:00
ceriel
70b035d559 Define PRIVATE as static, and consequences 1993-11-16 11:49:17 +00:00
ceriel
0c60f4c22f Fixed several lint complaints 1993-11-16 11:35:23 +00:00
ceriel
8abba8b1a1 Changed: create directories if needed 1993-11-15 09:37:05 +00:00
ceriel
9fbd4783a7 Fixed bug with "/*" 1993-11-15 09:29:39 +00:00
ceriel
8998e56069 Fixed bug 1993-11-15 09:25:32 +00:00
ceriel
49f8a5a61b Fixed some minor problems 1993-11-12 16:59:06 +00:00
ceriel
a4a2ae8f96 catch is a signal arg, and should be void catch() 1993-11-12 16:57:15 +00:00
ceriel
03405742a3 noodstop is a signal arg, and should be void noodstop() 1993-11-12 16:53:24 +00:00
ceriel
dbdf63595a Realloc call: put cast in front of first arg 1993-11-12 15:48:22 +00:00
ceriel
b6ba1452f8 made symbol2str decl global 1993-11-12 15:45:09 +00:00
ceriel
e37939e8c8 Correction: also put ack_sys in conf/bin, otherwise mk_makefile does not work 1993-11-12 15:38:49 +00:00
ceriel
57f0474d91 updated 1993-11-12 15:37:30 +00:00
ceriel
332b6cb337 Minor changes: gave double def of __ctype with gcc on solaris 2 1993-11-12 15:16:08 +00:00
ceriel
501da70526 Restored em_codeO.h; it is also needed when em_opt is not installed 1993-11-12 13:40:17 +00:00
ceriel
990bf1ac74 onintr must be void 1993-11-12 12:53:28 +00:00
ceriel
560f5139eb Changes for release 5.1 1993-11-12 10:56:15 +00:00
ceriel
4b3878c046 Added proto.make 1993-11-12 10:08:55 +00:00
ceriel
0de33667bf Little trick to make distribution easier 1993-11-12 10:02:53 +00:00
ceriel
a9e731d090 Added proto.make 1993-11-11 12:02:20 +00:00
ceriel
aa0cd8e9a1 Some minor mods 1993-11-11 12:00:22 +00:00
ceriel
b71451bfd8 Added comment about Solaris 2 and GNU cc 1993-11-10 16:35:58 +00:00
ceriel
5b5323894e No longer depend on /bin/arch 1993-11-10 16:07:31 +00:00
ceriel
b95ae2fa70 Many changes, mostly for Solaris 2 1993-11-10 15:11:28 +00:00
ceriel
4539174f47 Added -DNDEBUG to compile flags 1993-11-10 15:07:55 +00:00
ceriel
9dae71ae08 Updated for C_ prototypes 1993-11-10 15:07:12 +00:00
ceriel
854597cd2d Updated for C_ prototypes 1993-11-10 14:40:27 +00:00
ceriel
7c473ca0ed Added -DNDEBUG to compile flags 1993-11-10 14:38:32 +00:00
ceriel
528112d9bd Bug fix for dlb routines and C_ are now void 1993-11-10 14:22:26 +00:00
ceriel
4f3e07061e Added -DNDEBUG to compile flags 1993-11-10 14:21:21 +00:00
ceriel
8c849f20f7 Fix: CSA was not quite right 1993-11-10 13:00:01 +00:00
ceriel
f33df43f9a Fix: had array bound error 1993-11-10 12:58:26 +00:00
ceriel
91d270eb90 Modified for Solaris 2 1993-11-10 12:57:16 +00:00
ceriel
964bf270ab Fixed CII (?) did not handle stack pointer right 1993-11-10 12:51:03 +00:00
ceriel
c89c0d2c01 Changed debugging information to also work for Solaris 2 1993-11-10 12:44:24 +00:00
ceriel
37ab68909b Added void for some functions 1993-11-10 12:42:25 +00:00
ceriel
2662c3984d Some small changes 1993-11-10 12:35:33 +00:00
ceriel
4deafdc9de Changed modules mechanism 1993-11-10 12:33:15 +00:00
ceriel
d7b6b9a5ce Added prototyping stuff 1993-11-10 12:32:42 +00:00
ceriel
103cbb4319 Added prototyping stuff 1993-11-10 12:09:49 +00:00
ceriel
62f978c40f Added prototyping stuff 1993-11-10 11:49:49 +00:00
ceriel
73adc0f645 Added prototyping stuff 1993-11-10 11:40:41 +00:00
ceriel
d848beec72 Changed modules mechanism 1993-11-10 11:38:42 +00:00
ceriel
11d4fdf6e0 Added prototyping stuff 1993-11-10 11:14:28 +00:00
ceriel
abf052244b Added prototyping stuff 1993-11-10 10:26:07 +00:00
ceriel
31752a4617 Changed modules mechanism 1993-11-10 10:13:04 +00:00
ceriel
f1681124d1 Changed modules mechanism 1993-11-10 10:04:30 +00:00
ceriel
134da2750b Added modules/h 1993-11-10 10:03:23 +00:00
ceriel
1da6506ba7 Added prototypes 1993-11-05 15:02:57 +00:00
ceriel
66e29d8bd9 Added -lelf for grind on sparc_solaris 1993-11-05 13:12:46 +00:00
ceriel
cee6ab37e7 Compilers should recognize void by now 1993-10-26 16:26:36 +00:00
ceriel
067ad0cc22 Fixed div() and ldiv() for machines with -1/2 = -1 1993-10-26 13:58:04 +00:00
ceriel
a71ae473ac Include em_label.h before em_code.h 1993-10-26 09:59:06 +00:00
ceriel
c689e34fa7 Use LCSYM for bss and STSYM for data, so that grind can see the diff 1993-10-25 15:43:02 +00:00
ceriel
0fc413c78a Use LCSYM for bss and STSYM for data, so that grind can see the diff 1993-10-25 15:34:08 +00:00
ceriel
c9ec055176 Define NDEBUG if you don't want assertions 1993-10-22 14:30:43 +00:00
ceriel
2006278a52 A fix for stabs, and define NDEBUG 1993-10-22 14:24:31 +00:00
ceriel
32760d492a Added prototype 1993-10-22 14:09:28 +00:00
ceriel
4ec65def3f Modified to conform to ANSI C 1993-10-22 14:05:24 +00:00
ceriel
799f0600ef Added prototypes 1993-10-22 13:49:04 +00:00
ceriel
ab8dcfa134 ANSI C fixes 1993-10-21 12:50:58 +00:00
ceriel
d8bcd5d06c Added -s option to as (to keep stabs) 1993-10-13 13:06:49 +00:00
ceriel
d9af0f2851 All 'follows' checks only to be done when ! unresolved 1993-10-13 10:47:28 +00:00
ceriel
af42c1f960 Mention all sections 1993-10-13 10:46:11 +00:00
ceriel
4f2c705501 Some more space for file names 1993-10-12 09:45:59 +00:00
ceriel
549dfcc99d Fixed: functions were implicitly declared extern and later static 1993-10-07 17:47:26 +00:00
ceriel
38a269fc37 Added sparc_solaris 1993-10-07 17:41:19 +00:00
ceriel
29f543b603 Some minor changes: prevent some warnings 1993-10-07 14:07:42 +00:00
ceriel
861f4afc0c Added -LIB where needed 1993-10-07 10:56:25 +00:00
ceriel
df61cc8c4b Added sparc_solaris 1993-10-07 09:52:41 +00:00
ceriel
a6d6f5943d Added end_em 1993-10-07 09:48:06 +00:00
ceriel
dd4903cc3a Added sparc_solaris description 1993-10-07 09:47:16 +00:00
ceriel
fa7069780d Added missing stuff 1993-10-07 09:46:14 +00:00
ceriel
b73eb4057e Fix: set error flag in some error cases 1993-10-07 09:44:03 +00:00
ceriel
513c3df1d2 Added sparc Solaris 2 support 1993-10-07 09:09:16 +00:00
ceriel
9e7c8d2c9f Added sparc_solaris stuff 1993-10-06 17:04:49 +00:00
ceriel
980faf36f0 Added sparc_solaris stuff 1993-10-06 16:42:05 +00:00
ceriel
a430cb7d8e Changed for Solaris 2 1993-10-06 16:18:58 +00:00
ceriel
76d1b91311 fix: probably just a typo 1993-10-06 16:15:30 +00:00
ceriel
6dc51ef6eb Fix: setrlimit has two parameters 1993-10-06 16:12:40 +00:00
ceriel
4775779d8e Made more portable 1993-10-06 13:15:12 +00:00
ceriel
3e43a9ac61 Some more changes for Solaris 2 1993-10-06 11:47:11 +00:00
ceriel
2233b6973b Several fixes; ported to Solaris 2 1993-10-06 11:45:13 +00:00
ceriel
4092904071 proper trap on divide by 0 1993-10-04 14:13:51 +00:00
ceriel
c118bca2c2 An offset fix, and added some files for solaris 2 1993-10-04 08:57:25 +00:00
ceriel
b06a419f71 Fix to Makefile: define CFLAGS 1993-09-30 15:13:11 +00:00
ceriel
f8e6131e61 Some stuff for solaris 2 1993-09-30 15:11:52 +00:00
ceriel
43280fdd5a Fixed previous fix 1993-09-30 15:10:59 +00:00
ceriel
eaea6c1c59 Fix: Makefile used cc instead of $(UCC) 1993-09-03 11:02:02 +00:00
ceriel
668b3fc2d8 New, improved fmod.c 1993-08-31 10:54:08 +00:00
ceriel
a37e49b619 Added check, but probably never happens with correct FEF 1993-08-31 10:53:05 +00:00
ceriel
983e1bf095 Fix to icompute.c: always had one digit too much 1993-08-26 10:08:37 +00:00
ceriel
b3863b7247 Fixed bug with union initializers 1993-08-09 09:40:44 +00:00
ceriel
18967fad9a Fixed make.hfiles; some "shells" did not accept it 1993-08-05 13:00:40 +00:00
ceriel
7a26259981 Fixed make.hfiles; some "shells" did not accept it 1993-08-05 12:30:57 +00:00
ceriel
1a4c319f7e Always define __ACK when preprocessing 1993-08-05 11:09:12 +00:00
ceriel
10e6db39c6 Reversed bitfields for compatibility with (g)cc 1993-08-05 11:08:48 +00:00
ceriel
de8fefd02c Fixed typo 1993-08-04 09:24:07 +00:00
ceriel
bf84a52bc3 Fix make.hfiles; some shells did not accept it 1993-07-07 13:42:45 +00:00
ceriel
eaa9dab166 Fixed infinite loop 1993-06-24 15:48:46 +00:00
ceriel
042d7b2275 Improved 'stop in' mechanism, and prevent core dump ir currlang is not set 1993-06-09 14:18:43 +00:00
ceriel
298fd07712 Prevent warning about overflow 1993-06-09 11:47:01 +00:00
ceriel
5e31863838 Fixed for change in LLgen 1993-06-09 10:34:48 +00:00
ceriel
4ff171c1a5 Also skip lint comments in skip_block() 1993-06-09 10:17:44 +00:00
ceriel
1ad085cfb8 Also skip lint comments in skip_block() 1993-06-09 09:40:54 +00:00
ceriel
40569c479e Mention filename for some error messages 1993-06-08 13:02:01 +00:00
ceriel
5092c4ece3 Don't free filenames when lint 1993-06-04 10:30:16 +00:00
ceriel
4d1b0d3486 A fix: make error_type usable as function type; prevents core dump on some inputs 1993-05-14 12:01:14 +00:00
ceriel
b4aef1eb5e Fixed error: did not compile 1993-05-12 08:33:03 +00:00
ceriel
d7a3b68635 Added /usr/local/bin to PATH (for tbl and the like) 1993-05-12 08:26:39 +00:00
ceriel
7e30c7d648 Fixed for empty parameter lists 1993-05-10 14:02:52 +00:00
ceriel
8c66b84305 small fix in ftell 1993-04-05 11:49:59 +00:00
ceriel
e30c4b9337 Added make entries to produce troff output on standard output 1993-04-01 11:11:49 +00:00
ceriel
9cbc7a4b97 Also run soelim 1993-04-01 11:06:04 +00:00
ceriel
4edcd8222d Fix: wrong target and refs 1993-04-01 10:55:46 +00:00
ceriel
758e04a4eb Fix in proto.make: forgot to define SRC_DIR 1993-04-01 10:52:32 +00:00
ceriel
404d067606 Changed installation mechanism for docs 1993-03-31 16:47:12 +00:00
ceriel
42d7930c11 Changed installation mechanism for docs, deleted mkun 1993-03-31 13:34:42 +00:00
ceriel
132f2234fa Changed installation mechanism for docs 1993-03-31 13:33:07 +00:00
ceriel
6b8fbeb016 Changed installation mechanism 1993-03-31 13:22:17 +00:00
ceriel
5117853b1b Now uses -ms macros 1993-03-30 15:43:44 +00:00
ceriel
e9a4337ccf Fixed problem with missed unstacks 1993-03-30 09:41:00 +00:00
ceriel
b371972acf Fixed error which sometimes caused core dumps 1993-03-30 09:40:07 +00:00
ceriel
6fc94eb375 Improved constant arithmetic: had several bugs 1993-03-18 13:24:20 +00:00
ceriel
eb375db4d6 repositioned lint comments, so that they work better 1993-03-18 13:09:55 +00:00
ceriel
5e702c5527 Added some code to check for Nan/Inf 1993-02-24 15:12:49 +00:00
ceriel
14e756ba87 Enabled divide by 0 and improper trap 1993-02-24 15:10:14 +00:00
ceriel
dfc4956d59 Fixed bug: some offsets were just plain wrong 1993-02-19 17:33:40 +00:00
ceriel
6da226ab2b Fixed bug: some offsets were just plain wrong 1993-02-08 13:35:44 +00:00
ceriel
468d98750c Fixed problem with relocation,
added curr_token, so that parser can access token
1993-02-08 13:01:30 +00:00
ceriel
04d3c7152c Changed order of declarations 1993-02-05 18:21:46 +00:00
ceriel
a0d74876b8 Fixed bit-field initializers bug 1993-02-05 18:15:32 +00:00
ceriel
7352c25e9c Fix: did not work properly on 2-4 machines 1993-02-03 13:28:14 +00:00
ceriel
256151c7e4 Added some patterns and fixed error in constant multiplication 1993-02-03 10:10:07 +00:00
ceriel
6f8002f540 Fix: previous version did not work with variable # of args 1993-01-28 11:45:38 +00:00
ceriel
de58173e36 No more global space for structure returns 1993-01-28 10:09:51 +00:00
ceriel
ebf5153f35 Fix small bug: space following a replacement list was included in the list 1993-01-26 11:58:00 +00:00
ceriel
cf7095f8cc Fix small bug: space following a replacement list was included in the list 1993-01-26 11:49:23 +00:00
ceriel
9c64294186 Fixed bit-field initializers bug 1993-01-21 11:00:51 +00:00
ceriel
9eec0812a1 Improved previous fix 1993-01-19 15:33:35 +00:00
ceriel
f2cfe32e03 found some small leaks with Purify 1993-01-18 16:14:43 +00:00
ceriel
3b80847a9d found a small error with Purify 1993-01-18 15:30:54 +00:00
ceriel
bcff9862e7 found some small leaks with Purify 1993-01-18 15:29:54 +00:00
ceriel
439ec389a0 found some small leaks with Purify 1993-01-18 15:10:01 +00:00
ceriel
ba62ce0edc Added diagnostic about use of for example union tag as a struct tag 1993-01-15 12:41:15 +00:00
ceriel
7eb7218667 Fixed bug in flushbuf: did not reset stream->_ptr on write error 1993-01-14 10:02:28 +00:00
ceriel
fd0bc5d531 Fix in tes mechanism: CAL and CAI 1993-01-12 15:48:39 +00:00
ceriel
5f7f7bf194 Fixed error: ] was missing in translation of COM 1993-01-11 12:46:04 +00:00
ceriel
dc108fd084 Removed adder.h from proto.libfp 1993-01-05 12:52:47 +00:00
ceriel
be2c36fbe5 Removed adder.h from .distr 1993-01-05 12:50:30 +00:00
ceriel
005f32298f Updated for ANSI C, cleaned up a bit 1993-01-05 12:06:58 +00:00
ceriel
55131b091f fixed bug: qualified type introduction within structure decl 1992-12-22 15:29:56 +00:00
ceriel
d2fb022441 improved ply handling 1992-12-18 10:29:31 +00:00
ceriel
ed2ba2e1d5 improved ply handling 1992-12-18 10:22:55 +00:00
ceriel
5fbaff533c Use test instruction for testing 1992-12-17 12:58:05 +00:00
ceriel
4d068e8e04 ply adaption was wrong for EM replacements 1992-12-17 12:52:21 +00:00
ceriel
b1be3e3487 Fix: lint complained about ptr->void* conversions 1992-12-17 11:18:38 +00:00
ceriel
e09aac1b4a shifts do NOT set condition codes properly 1992-12-14 16:40:22 +00:00
ceriel
bc2744ca5c Several fixes: SDF was wrong, and shifts do NOT set contition codes properly 1992-12-14 16:37:35 +00:00
ceriel
2361e37811 Fix: used data from freed memory 1992-12-08 17:44:01 +00:00
ceriel
cb32d73c61 Fix in fef.s: handles infinity more graceful now 1992-12-08 17:26:41 +00:00
ceriel
f8232e51a3 Several changes for ANSI C 1992-12-04 09:36:54 +00:00
ceriel
7d34ba62a7 Fix: MkCoercion did not handle error_type 1992-11-20 13:37:49 +00:00
ceriel
e43e6b8100 Added M68030 MMU instructions 1992-11-19 18:19:55 +00:00
ceriel
ca4461dc4c Added LL_MAXTOKNO 1992-11-19 15:37:52 +00:00
ceriel
dfeffe5e95 Documented LL_MAXTOKNO 1992-11-19 15:37:04 +00:00
ceriel
17efc329f8 Separated the m68020 syntax from the table, so that we can also create
a m68000 code generator producing m68020 syntax
1992-11-16 17:24:25 +00:00
ceriel
9f305dcfe1 Fixed bug in register initialization for offsets > 4096 1992-11-16 14:31:49 +00:00
ceriel
0de7277790 Fix 1.69 was partly wrong 1992-11-16 13:52:07 +00:00
ceriel
b6319e4d49 Yet another bug: null reference 1992-11-09 14:30:28 +00:00
ceriel
a829777e65 Fixed bug: divide by 0 1992-11-09 10:14:47 +00:00
ceriel
851efa7ffe Fixed error: removed space where it did not belong 1992-11-04 16:08:11 +00:00
ceriel
dc73ec5cbf declared loadbuf 1992-10-26 11:07:55 +00:00
ceriel
d9bd02fda6 Removed static buffer in gen_idf 1992-10-22 16:56:28 +00:00
ceriel
b3233bcaa0 Removed static buffer in gen_idf 1992-10-22 16:00:05 +00:00
ceriel
94638235bc Fixed bug: checking for multiple occurrences of same case label was wrong 1992-10-21 10:53:45 +00:00
ceriel
67d5d2d6c4 small fix: carry was not always clear before the 'sbc' 1992-10-16 15:43:46 +00:00
ceriel
50db0a3643 Fixed scope bug for structures: a(struct S *p) { struct S { int i; }; p->i ...
should work
1992-10-14 10:48:27 +00:00
ceriel
537cbd3d89 Fixed bug: REP resulted in 0xF2 instead of 0xF3 1992-10-12 17:25:15 +00:00
ceriel
248ca45fc0 Use 80386 SET instruction 1992-09-17 14:15:20 +00:00
ceriel
be227c5f88 Several fixes and addition of 80486 instructions 1992-09-16 16:10:30 +00:00
ceriel
94ec8e495e Fixed ARPL instruction 1992-09-07 14:13:11 +00:00
ceriel
0299ae9ad0 Improved installation mechanism 1992-09-07 13:21:34 +00:00
ceriel
cf32c08fd9 Fix previous change 1992-09-07 12:47:11 +00:00
ceriel
a708a52667 fix: DO_FAST was not set properly 1992-09-04 09:22:11 +00:00
ceriel
6896679afd Added some patterns involving DUPs 1992-09-01 11:16:20 +00:00
ceriel
af5ad235c9 Small change in register allocation criteria 1992-09-01 11:13:42 +00:00
ceriel
ee6d91a1d4 Fix for sparc description 1992-09-01 10:41:37 +00:00
ceriel
ac7dc5e21f Some minor modifications reflecting some changes in the peephole optimizer 1992-09-01 10:35:57 +00:00
ceriel
d18493b0ac Some minor modifications reflecting some changes in the peephole optimizer 1992-09-01 10:19:21 +00:00
ceriel
6f03cff48f Some minor modifications reflecting some changes in the peephole optimizer 1992-09-01 09:39:15 +00:00
ceriel
6b5abe7ab3 Disable multiplication optimizer when global optimizer is used 1992-08-31 16:47:40 +00:00
ceriel
da17ca5a9f Fixed bug: imulb was given wrong opcode 1992-08-31 15:23:59 +00:00
ceriel
28341f4478 tell users to call /bin/TakeAction instead of /TakeAction 1992-08-11 11:08:47 +00:00
ceriel
8cbf1bae34 Apparently forgot about the .so suffix 1992-07-28 08:28:48 +00:00
ceriel
3f54a9f044 Suffix is .so, not .s 1992-07-28 08:24:26 +00:00
ceriel
3699fe387e Always did limit_enquire 1992-07-27 14:32:53 +00:00
ceriel
52620e5829 Fix: always assumed that base type of bitfield had sizeof(int) 1992-07-27 13:28:49 +00:00
ceriel
0eb2e0dc80 Fix previous 'fix' 1992-07-23 11:51:39 +00:00
ceriel
15dce0c943 Fix in "bits_in_type" variable 1992-07-22 15:44:47 +00:00
ceriel
a56e1f25ff Was wrong when compiled with ANSI compiler 1992-07-22 13:49:15 +00:00
ceriel
016273ba99 And some more ... 1992-07-22 13:45:08 +00:00
ceriel
4adaf3165f Added some patterns 1992-07-22 13:37:27 +00:00
ceriel
87cf9446fe Fixed comparison functions: unsigned char! 1992-07-22 12:51:53 +00:00
ceriel
7c7475bb3a fixed lint complaint 1992-07-21 14:40:23 +00:00
ceriel
938bbb9ce8 Fix evaluation order problem 1992-07-21 11:23:24 +00:00
ceriel
be1d645adf Added mk_tokdefs 1992-07-13 10:38:31 +00:00
ceriel
83c2714982 Use UTIL_HOME instead of TARGET_HOME 1992-07-13 10:34:49 +00:00
ceriel
8ab530baef Fixed bug in UCFLAGS 1992-07-13 10:28:08 +00:00
ceriel
d58d691472 Fixed V7 and SYS_V utime problem 1992-07-10 15:22:01 +00:00
ceriel
80f5ecf637 strip did not truncate file 1992-07-09 14:02:43 +00:00
ceriel
0b063462ef Improved N_SOL handling 1992-07-02 11:15:18 +00:00
ceriel
d390121280 improved symbol table generation when source file has line directives 1992-07-02 10:23:46 +00:00
ceriel
2dde78c197 No system-calls from libem 1992-06-30 17:43:24 +00:00
ceriel
8474be6e52 Added EXIT, WRITE entry point 1992-06-30 17:42:09 +00:00
ceriel
5c5812e853 No system-calls from libem 1992-06-30 17:37:35 +00:00
ceriel
e860fa1974 Added EXIT, WRITE entry point 1992-06-30 17:36:49 +00:00
ceriel
8e4ee3ec1a Added EXIT, WRITE and BRK entry point 1992-06-30 17:06:10 +00:00
ceriel
ea624f82de No system-calls from libem 1992-06-30 16:51:19 +00:00
ceriel
50f571bf2b Added EXIT, WRITE and BRK entry point 1992-06-30 16:39:49 +00:00
ceriel
f86c403a53 No system-calls from libem 1992-06-30 16:39:47 +00:00
ceriel
d1b1defbb7 No system-calls from libem 1992-06-30 16:31:52 +00:00
ceriel
d0e54a11e5 Added EXIT, WRITE and BRK entry point 1992-06-30 16:30:56 +00:00
ceriel
d2ee282845 Added EXIT, WRITE and BRK entry point 1992-06-30 16:24:17 +00:00
ceriel
8b26f24e21 Added EXIT, WRITE and BRK entry point 1992-06-30 16:10:24 +00:00
ceriel
6f7d2bc2ee No system-calls from libem 1992-06-30 16:08:42 +00:00
ceriel
9aceb849ad Added BRK,WRITE and EXIT entry points 1992-06-30 16:05:33 +00:00
ceriel
0350c1898b Added EXIT, WRITE and BRK entry point 1992-06-30 16:04:38 +00:00
ceriel
8c8d1a7d9b No system-calls from libem 1992-06-30 15:58:35 +00:00
ceriel
9da8f28a47 Added EXIT, WRITE and BRK entry point 1992-06-30 15:52:07 +00:00
ceriel
4ef108f93e Added BRK and EXIT entry points 1992-06-30 15:51:31 +00:00
ceriel
3f3af2e01f Added EXIT and BRK entry point 1992-06-30 15:22:55 +00:00
ceriel
ab38665421 No system-calls from libem 1992-06-30 15:22:07 +00:00
ceriel
72b89fc1ad Added EXIT and BRK entry point 1992-06-30 15:11:49 +00:00
ceriel
d278d61a10 Added BRK entry point 1992-06-30 15:08:35 +00:00
ceriel
f6157ea21e Added EXIT and BRK entry point 1992-06-30 15:02:56 +00:00
ceriel
cee4d5de8b No system-calls from libem 1992-06-30 15:02:32 +00:00
ceriel
6823ce7c96 Added EXIT and BRK entry point 1992-06-30 11:40:12 +00:00
ceriel
2ae29707d2 No system-calls from libem 1992-06-30 11:39:12 +00:00
ceriel
bf2d5263cb No system-calls from libem 1992-06-30 11:19:33 +00:00
ceriel
0e46e6bc75 Added EXIT entry point 1992-06-30 11:18:17 +00:00
ceriel
45d0d9f68f Removed # in commands 1992-06-26 12:54:57 +00:00
ceriel
44a1c5620c Removed # in commands, changed mechanism for computing mem used 1992-06-26 12:47:07 +00:00
ceriel
50e8baa624 Removed # in commands, removed call to _cleanup() 1992-06-26 12:42:31 +00:00
ceriel
06e487359b Changed mechanism for coputing amount of memory used 1992-06-26 12:38:10 +00:00
ceriel
3ac24b282b Removed # in commands 1992-06-26 12:01:31 +00:00
ceriel
ebdbabcedd Removed # in commands, and a small fix in ch3mon.c 1992-06-26 11:57:17 +00:00
ceriel
2f2b6ccadf Some corrections 1992-06-26 11:54:22 +00:00
ceriel
aba0ed2f52 Made a declaration a little less suspicious, and removed # from proto.make 1992-06-25 17:41:51 +00:00
ceriel
92a6e5c426 Added declaration for st_alloc() 1992-06-25 11:32:30 +00:00
ceriel
ad4b0435bc Added rm_deps 1992-06-24 14:13:10 +00:00
ceriel
c76b5f436a bug fix: an illegal 'inc' was generated 1992-06-12 15:04:27 +00:00
ceriel
46f084d660 Fix: sometimes did not reserve space for local on a mes ms_gto 1992-06-12 09:46:43 +00:00
ceriel
09a80e9e13 Fixed checking of unary '*' 1992-06-12 09:03:07 +00:00
ceriel
b7b797674f Fixed typo 1992-06-09 11:23:39 +00:00
ceriel
1de983200b Fixed bug in '#ifdef FALSE || 1 (garbage) 1992-05-26 18:09:11 +00:00
ceriel
2cb19d3a30 Corrected problem in reading symbol table: t14=15, t15=16 did not work properly 1992-05-20 10:57:42 +00:00
ceriel
6def6e1bea Corrected: end_em is in lib/m68k2, not in lib/minixST 1992-05-20 10:54:40 +00:00
ceriel
b8c96f32bd Improved symbol table for grind 1992-05-20 10:54:28 +00:00
ceriel
fd6e25e50f Restored exit.c and cleanup.c 1992-05-18 16:10:18 +00:00
ceriel
2fbea53939 Restored exit.c and cleanup.c 1992-05-18 16:01:16 +00:00
ceriel
3d52b0d475 Added missing files 1992-05-15 13:55:14 +00:00
ceriel
5362ef6f20 Filename check now only for implementation modules 1992-05-15 13:53:36 +00:00
ceriel
4f11d0433d updated catchsig.s 1992-05-15 13:31:19 +00:00
ceriel
60edf5b3ea Added some missing files 1992-05-15 13:14:55 +00:00
ceriel
f252e26ab4 Fix in previous added check 1992-05-11 16:15:28 +00:00
ceriel
763c607bd8 Added filename check 1992-05-11 11:52:22 +00:00
ceriel
2da0d6f886 Fixed bug: temporary local was used more than once 1992-05-11 11:30:04 +00:00
ceriel
f4cc095863 Cardinal checking sometimes produced wrong error message 1992-05-11 09:50:21 +00:00
ceriel
bc42e31518 Fixed problem with repl_mul(); it was called far too often 1992-04-24 12:39:58 +00:00
ceriel
6640944a51 Corrected limit_impl for installation of interpreters 1992-04-23 16:10:13 +00:00
ceriel
377cd17425 Improved fe 1992-04-23 13:28:28 +00:00
ceriel
1e7ffe6a0f em.c still used lib instead of lib.bin 1992-04-23 13:02:37 +00:00
ceriel
8c9f885817 Fixed proto.make 1992-04-23 12:55:34 +00:00
ceriel
fe0a904894 Corrected manual pages 1992-04-23 12:53:03 +00:00
ceriel
47c7e6a43d Fixed bug in initalization expression handling 1992-04-21 09:54:32 +00:00
ceriel
5d9c7f4d9b Fixed bug: old-style float parameters resulted in wrong addresses for following parameters 1992-04-16 16:29:35 +00:00
ceriel
b4f6c3fa00 Documented -gdb flag 1992-04-15 10:24:15 +00:00
ceriel
276c2ec750 Added -gdb flag 1992-04-15 10:21:16 +00:00
ceriel
60c44af82b Fixed problem with array's of incomplete types 1992-04-14 13:30:37 +00:00
ceriel
0571a16bcb Allow for machine-dependent options 1992-03-27 17:38:54 +00:00
ceriel
b2cca56e16 Accept -gdb option 1992-03-27 17:36:49 +00:00
ceriel
ea2e95a627 Allow letters after the -g flag (for -gdb) 1992-03-27 17:33:19 +00:00
ceriel
8005ef1672 improved assert macro 1992-03-20 13:43:10 +00:00
ceriel
a0aa85fa4e fixed linting 1992-03-02 16:47:03 +00:00
ceriel
d233bcfa50 Fixed linting 1992-03-02 14:55:47 +00:00
ceriel
0d2c7a318b Fixed linting 1992-03-02 14:46:03 +00:00
ceriel
661597162d Bug fix in old-style/new-style mixing 1992-03-02 14:37:37 +00:00
ceriel
a8b2fae0da Fixed CFU implementation 1992-03-02 11:52:09 +00:00
ceriel
a0acff4f4c minor change: give anonymous struct a name 1992-02-26 15:46:44 +00:00
ceriel
c2157b66ef corrected the making of make_macros 1992-02-26 15:32:39 +00:00
ceriel
46540c17c8 corrected the making of make_macros 1992-02-26 15:10:50 +00:00
ceriel
0a0cdb75a4 corrected the making of make_macros 1992-02-26 14:44:00 +00:00
ceriel
629a5dcde9 corrected the making of make_macros 1992-02-26 14:24:26 +00:00
ceriel
ffe7d743a4 corrected the making of make_macros 1992-02-26 14:17:32 +00:00
ceriel
090cbe8ddd corrected the making of make_macros 1992-02-26 13:51:27 +00:00
ceriel
a6a1b1d3d0 initialize inctable better 1992-02-26 13:38:34 +00:00
ceriel
8e99b149fc Fix in DEFPATH mechanism, improved proto.make 1992-02-26 13:35:06 +00:00
ceriel
1263ef9731 Fix in DEFPATH mechanism, improved proto.make 1992-02-26 13:10:48 +00:00
ceriel
baf10676a3 Fix proto.make and initialize inctable better 1992-02-25 11:07:45 +00:00
ceriel
0bfa4970c5 Added i386 description 1992-02-11 16:59:43 +00:00
ceriel
81ec28ccb9 Bug fix: INC/DEC evaluated argument twice(!) 1992-01-31 13:44:57 +00:00
ceriel
f3e5c3032f differing characters should be left untouched 1992-01-24 13:05:30 +00:00
ceriel
646bd0e51f small fix for compatibility with different make's 1992-01-22 11:25:52 +00:00
ceriel
813ca898a7 Bug fix: generated a 'push dl', which does not exist 1992-01-13 10:31:23 +00:00
ceriel
f2e1579f36 Updates for 5th distribution 1991-12-19 10:32:01 +00:00
ceriel
6e48c50a6c Put malloc.c after malloc in .distr file, otherwise it cannot be made 1991-12-19 10:22:15 +00:00
ceriel
697dc9b1de Added stab.c 1991-12-19 10:19:31 +00:00
ceriel
56ab70f21f Added dbsym.c 1991-12-19 09:30:53 +00:00
ceriel
d0179d6790 do not install peephole optimizer libs when not installing fast compilers 1991-12-18 17:26:52 +00:00
ceriel
5ccd830347 replaced atol definition 1991-12-18 16:15:18 +00:00
ceriel
952bd37627 removed atol reference 1991-12-18 16:01:44 +00:00
ceriel
e35f11f208 Made installation mechanism more portable 1991-12-18 14:51:08 +00:00
ceriel
7f4c0bea38 Added some more info about i386 version 1991-12-18 14:39:14 +00:00
ceriel
03022ad7dd Accomodate symbolic debugger info 1991-12-18 14:38:57 +00:00
ceriel
47a6b4b526 Ported to 80386 (problem: different read() semantics) 1991-12-18 14:36:26 +00:00
ceriel
12149f5858 Added pop_push.h 1991-12-18 09:47:19 +00:00
ceriel
70b535c368 No longer use ushort 1991-12-18 09:45:26 +00:00
ceriel
b23ed92d7e Use cp_dir to copy directories 1991-12-18 09:44:10 +00:00
ceriel
e00c0aa591 Added debugger library for -g 1991-12-18 09:42:04 +00:00
ceriel
38608cfa32 Fix: produced dependencies were wrong 1991-12-18 09:40:23 +00:00
ceriel
eb3ce1f70f Fixed typo in previous fix 1991-12-18 09:34:52 +00:00
ceriel
3c338b9a3f Fixed typo 1991-12-18 09:22:13 +00:00
ceriel
de758867f8 Fixed typo in previous fix 1991-12-18 09:14:25 +00:00
ceriel
168634cd0b Do not use '#endif/#else xxx'; it is not allowed for ANSI C 1991-12-17 15:49:18 +00:00
ceriel
df1ed9426d Do not use '#endif/#else xxx'; it is not allowed for ANSI C 1991-12-17 15:28:58 +00:00
ceriel
53c4951b29 Do not use '#endif/#else xxx'; it is not allowed for ANSI C 1991-12-17 15:05:43 +00:00
ceriel
fa0bee0b26 Do not use '#endif/#else xxx'; it is not allowed for ANSI C 1991-12-17 14:36:35 +00:00
ceriel
8482d2c110 Do not use '#endif/#else xxx'; it is not allowed for ANSI C 1991-12-17 14:27:24 +00:00
ceriel
929a0025ca Do not use '#endif/#else xxx'; it is not allowed for ANSI C 1991-12-17 14:11:15 +00:00
ceriel
a38be6605e Do not use '#endif/#else xxx'; it is not allowed for ANSI C 1991-12-17 13:12:22 +00:00
ceriel
abb411daac Do not use '#endif xxx'; it is not allowed for ANSI C 1991-12-17 11:41:12 +00:00
ceriel
c0ba3fbe2d Do not use '#endif xxx'; it is not allowed for ANSI C 1991-12-17 11:33:08 +00:00
ceriel
f442ba9141 Fix to previous fix 1991-12-17 11:23:09 +00:00
ceriel
30de1bcf3f 'int x[];' is a valid compilation unit! See 3.7.2 of ANSI 1991-12-17 10:18:41 +00:00
ceriel
a2a177de54 Added errno.h 1991-12-16 16:54:12 +00:00
ceriel
f30ffd415c Changed order in ceg/list 1991-12-16 16:06:29 +00:00
ceriel
c6f6df87ae Improved installation of make_ files 1991-12-16 15:35:14 +00:00
ceriel
0c59e2e12d Prevent name clashes with sys/types.h on system V 1991-12-16 15:24:24 +00:00
ceriel
80b250950e Do not use '#undef aap xxx'; it is not allowed for ANSI C 1991-12-16 14:34:06 +00:00
ceriel
019590a290 Do not use '#undef aap xxx'; it is not allowed for ANSI C 1991-12-16 14:15:46 +00:00
ceriel
950e26815e Fix '#undef' handling 1991-12-16 14:06:09 +00:00
ceriel
dc44eba062 Do not use '#undef aap xxx'; it is not allowed for ANSI C 1991-12-16 13:45:18 +00:00
ceriel
d20534521e be consistent in naming of itemtab.h 1991-12-12 16:02:59 +00:00
ceriel
8394d5a4e1 Added 'extern' 1991-12-12 16:01:46 +00:00
ceriel
b53facde73 removed macro defining ushort; gave clash with /usr/include/sys/types.h 1991-12-12 14:15:14 +00:00
ceriel
8e82c748ad Fixed comments 1991-12-12 14:12:36 +00:00
ceriel
b0e631d402 Fixed comment 1991-12-12 13:01:00 +00:00
ceriel
fc1b4d3ddc Fixed comments 1991-12-12 12:50:42 +00:00
ceriel
2c076a2a26 Some bug fixes 1991-12-04 16:28:37 +00:00
ceriel
16b930089a Added target optimozer 1991-12-04 14:27:11 +00:00
ceriel
a93813c1f6 Made acceptable for our ANSI C compiler 1991-12-03 11:03:58 +00:00
ceriel
9e2361fc8f bug fix in generating prototypes 1991-12-03 10:56:40 +00:00
ceriel
4bb6c5c4e8 Changed identifier name to make it acceptable for our ANSI C compiler 1991-12-03 10:52:03 +00:00
ceriel
40e580cae6 Install yacc before installing flex 1991-12-03 10:50:03 +00:00
ceriel
d46703ea4d Minor mod to prevent compiler warning 1991-12-03 10:48:57 +00:00
ceriel
5109b16ab2 Several changes 1991-12-03 09:44:01 +00:00
ceriel
0deaae479b Updated LIST 1991-12-03 09:34:29 +00:00
ceriel
b5ab00c143 Take sys/types.h and sys/stat.h from old C library 1991-12-02 16:43:08 +00:00
ceriel
16e6b51cba upgraded 1991-12-02 16:42:31 +00:00
ceriel
70ff99e4d0 Updated 1991-12-02 15:55:49 +00:00
ceriel
68bee1244d removed sgtty.h; is taken from _tail_cc 1991-12-02 15:54:26 +00:00
ceriel
d162f3edb0 Made acceptable for our ANSI C compiler 1991-12-02 15:30:28 +00:00
ceriel
c36ae7020f Fixed for ANSI-C part 1991-12-02 15:25:01 +00:00
ceriel
83ba395e03 Don't use calloc and our own malloc combined 1991-12-02 14:44:20 +00:00
ceriel
f61ddc4926 Made acceptable for our ANSI C compiler 1991-12-02 13:55:09 +00:00
ceriel
3388e4deb6 Several fixes for ANSI 1991-12-02 13:43:59 +00:00
ceriel
9248d14195 l_states.c used 'const' as an identifier; unacceptable for ANSI-C! 1991-12-02 13:09:15 +00:00
ceriel
a01a4a9fd2 Fixed typo 1991-12-02 12:01:04 +00:00
ceriel
7ec968fb03 Always also produce ANSI-C, depending on __STDC__ and __cplusplus 1991-12-02 09:15:04 +00:00
ceriel
ed4afc99f6 minor mods to parameters in grammar 1991-11-29 14:11:31 +00:00
ceriel
649b7d94f0 minor mods to parameters in grammar 1991-11-29 13:57:24 +00:00
ceriel
45751d25ed minor modification 1991-11-29 13:33:12 +00:00
ceriel
ec47c06ad7 bug fix in repl_mul and moved call to it so that it is done after pattern matching 1991-11-28 16:59:25 +00:00
ceriel
244c1e5a01 Changed error messages mechanism 1991-11-27 16:34:12 +00:00
ceriel
670b7264ad Deleted comment that was no longer applicable 1991-11-27 14:52:17 +00:00
ceriel
bf0caa6f32 Changed error-messages mechanism 1991-11-27 13:40:52 +00:00
ceriel
505494c560 Improved for lint 1991-11-27 13:38:51 +00:00
ceriel
35260bae58 produce ANSI C under -a option 1991-11-26 15:38:41 +00:00
ceriel
f4ecd50601 made more acceptable for ANSI C 1991-11-26 14:48:27 +00:00
ceriel
89887ef6b0 made more acceptable for ANSI C 1991-11-26 14:39:52 +00:00
ceriel
58251a16dc Several modifications and additions 1991-11-25 16:54:25 +00:00
ceriel
5fdefde095 Some more fine-tuning of the installation mechanism 1991-11-25 16:47:36 +00:00
ceriel
c6931b04e7 Some minor changes 1991-11-25 09:52:08 +00:00
ceriel
5a2df3d011 lib --> lib.bin 1991-11-25 09:51:57 +00:00
ceriel
0d6ddc094b lib/em_data.a --> lib.bin/em_data.a 1991-11-25 09:49:27 +00:00
ceriel
ca89734a36 Another minor change in manual page 1991-11-25 09:41:30 +00:00
ceriel
e0956f63db Minor change in manual page 1991-11-25 09:39:31 +00:00
ceriel
967b13fac5 Added target optimizer 1991-11-23 15:14:32 +00:00
ceriel
047648846a Added 1991-11-23 15:04:01 +00:00
ceriel
698130c4e2 removed makedepend 1991-11-23 12:43:11 +00:00
ceriel
3a2211512d Removed makedepend 1991-11-23 12:26:02 +00:00
ceriel
aa702fa855 Bug fix in multiplication optimization 1991-11-23 12:17:18 +00:00
ceriel
6fa0e5bfb0 Changed copyright notice, made installation less dependent on ACK 1991-11-23 10:41:43 +00:00
ceriel
61fad3018a Added pics directory to .distr 1991-11-23 09:35:36 +00:00
ceriel
3db2add75c Changed action names to reflect action taken 1991-11-22 13:55:56 +00:00
ceriel
2b6f5b9b8d Avoid use of 'you' 1991-11-22 13:18:57 +00:00
ceriel
fad1c30409 Avoid informal use of 'you' 1991-11-22 11:10:09 +00:00
ceriel
2291dff954 updated manual page 1991-11-20 16:45:25 +00:00
ceriel
4b167ab2ba Added MACHOPT_F 1991-11-20 16:07:33 +00:00
ceriel
17352b8b8d Added code to optimize multiplies with constants 1991-11-20 15:53:11 +00:00
ceriel
aa0b70d921 Added MACHOPT_F 1991-11-20 15:52:27 +00:00
ceriel
ca72abbf26 Avoid informal usage of 'you' 1991-11-19 17:25:02 +00:00
ceriel
8f0ef636ab Avoid informal usage of 'you', updated installation manual 1991-11-19 13:44:09 +00:00
ceriel
78ca80f4d5 Avoid informal usage of 'you' 1991-11-19 13:37:20 +00:00
ceriel
7aa5a39735 Error message listed was never given 1991-11-19 13:24:55 +00:00
ceriel
24cab5420a Avoid informal usage of 'you' 1991-11-19 13:19:02 +00:00
ceriel
92d80c915b Avoid informal usage of 'you' 1991-11-19 13:09:50 +00:00
ceriel
a0f00e0b2b Made installation of fast compilers optional, removed own version of 'echo' 1991-11-18 09:53:58 +00:00
ceriel
be802650ca Added labeldef stuff 1991-11-18 09:51:35 +00:00
ceriel
e9a6af1a42 anm also works on aal archives now 1991-11-18 09:46:53 +00:00
ceriel
839165633b Fixed manual page 1991-11-15 14:41:41 +00:00
ceriel
9c507cc10a Updated ack manual page 1991-11-15 13:37:36 +00:00
ceriel
1af5c80b1b Also preprocess when user explicitly askes for it through -c.i 1991-11-15 12:50:13 +00:00
ceriel
64ce6b0ef4 Fixed fef.s: did not work for unnormalized numbers 1991-11-15 09:47:44 +00:00
ceriel
c3de1a9bea Fixed NOP 1991-11-14 15:53:05 +00:00
ceriel
9cfb64d5c2 Bug fix in LOC LOC CII ZEQ/ZNE pattern 1991-11-14 13:20:55 +00:00
ceriel
13a0dec2f6 Many changes in installation mechanism 1991-11-14 09:35:36 +00:00
ceriel
36de35bcd2 Accomodate ANSI C compiler better 1991-11-13 17:07:30 +00:00
ceriel
099fe7a4c2 Added sections 1991-11-13 16:57:40 +00:00
ceriel
ef9b3098de Also install ce and libce 1991-11-13 16:56:48 +00:00
ceriel
7da9d47e5a Also install libce 1991-11-13 16:56:12 +00:00
ceriel
b491906775 updated 1991-11-13 16:55:20 +00:00
ceriel
ac51febc8b Added dbsym and updated output.c 1991-11-13 16:54:59 +00:00
ceriel
de620e1fd5 Added 1991-11-13 16:53:49 +00:00
ceriel
881240fb3c Removed vars.s 1991-11-13 15:03:01 +00:00
ceriel
fe7a55d227 Added sys.s 1991-11-13 14:33:10 +00:00
ceriel
e19f33f3de Added C_db_sline 1991-11-11 18:08:14 +00:00
ceriel
46ecc71373 Some more fixes 1991-11-11 18:03:52 +00:00
ceriel
91fec7991e Accomodate old C compiler, don't call ack(1): too slow for fcc 1991-11-11 13:16:23 +00:00
ceriel
510c0ce854 Added 1991-11-11 13:14:08 +00:00
ceriel
76ab08f62c Added old C compiler, renamed ansi C one 1991-11-11 13:13:09 +00:00
ceriel
afcbb62724 Fixed 1991-11-11 09:40:06 +00:00
ceriel
7a57ef4419 Added dbsymtab.h 1991-11-11 09:39:05 +00:00
ceriel
d8190353cc Added libdb 1991-11-08 15:45:47 +00:00
ceriel
7d0a89d420 Added 1991-11-08 15:44:30 +00:00
ceriel
3015fc2542 Added grind support 1991-11-08 15:12:28 +00:00
ceriel
97a7fcbca3 A few fixes 1991-11-07 11:36:09 +00:00
ceriel
b9c3a99783 '\v' is not a K&R character 1991-11-07 09:53:11 +00:00
ceriel
eac501941f '\v' is not a K&R character 1991-11-07 09:45:09 +00:00
ceriel
650a132457 Fixed typo 1991-11-07 09:39:30 +00:00
ceriel
17014578be Also remove scan.c on cleanup 1991-11-07 09:35:35 +00:00
ceriel
791246001f '\v' is not a K&R character 1991-11-07 09:34:02 +00:00
ceriel
2e58c2438f '\v' is not K&R C 1991-11-06 14:36:25 +00:00
ceriel
4e99d889ff Changed manual page installation mechanism 1991-11-05 15:31:14 +00:00
ceriel
b3f07ce236 Added mk_manpage 1991-11-04 16:51:48 +00:00
ceriel
4affc39a20 Replaced Makefile by proto.make 1991-11-04 11:47:15 +00:00
ceriel
7cff0f9d8a code expanders now support grind 1991-11-01 11:55:34 +00:00
ceriel
3da953fa85 Added grind support 1991-11-01 11:53:42 +00:00
ceriel
e4168af8fb Added C_db_sline for grind 1991-11-01 11:47:41 +00:00
ceriel
03e1bea097 Added some tests and changed ordering mechanism 1991-11-01 10:37:26 +00:00
ceriel
7c479cf325 Fixed error in debugger support for enumeration constants 1991-11-01 10:17:30 +00:00
ceriel
ab6d563a7b Fixes involving floating point constants and debugger support 1991-11-01 10:15:15 +00:00
ceriel
44cc075183 Added 1991-11-01 09:43:36 +00:00
ceriel
0633c900a8 Some fixes to ashow, and also install it 1991-10-31 11:04:02 +00:00
ceriel
0b32f6d32f prevent null reference 1991-10-31 10:01:34 +00:00
ceriel
46b0f8ea19 Fixed Email addresses 1991-10-30 18:21:52 +00:00
ceriel
1558096356 Bug fix in structure assignments 1991-10-29 15:57:26 +00:00
ceriel
bd65353ab5 Added -L option for C compilations 1991-10-29 15:52:40 +00:00
ceriel
c28c395af8 Change of directory name 1991-10-29 09:27:09 +00:00
ceriel
4417f0ea8f Several corrections 1991-10-29 09:26:46 +00:00
ceriel
35dc8e74d0 Improved lint entry 1991-10-29 09:26:01 +00:00
ceriel
d747702ae9 Corrected lintlib entry 1991-10-29 09:24:48 +00:00
ceriel
60b9ebe0d3 Only install ACK-object producing part 1991-10-29 09:19:57 +00:00
ceriel
cfe45c4e2a Deal with CASE a OF 10 .. MAX(CARDINAL) ... and things like that 1991-10-29 09:18:46 +00:00
ceriel
dd99f952d5 Fixes to local label stuff 1991-10-28 17:59:57 +00:00
ceriel
45afd0804b Added 1991-10-25 18:23:32 +00:00
ceriel
035d9f7624 No unsigned long arithmetic is default 1991-10-25 16:03:37 +00:00
ceriel
13da34032e On i386 systems, make code expander lib 1991-10-25 15:46:30 +00:00
ceriel
7213f2527b Pass COPTIONS, not CFLAGS 1991-10-25 15:23:01 +00:00
ceriel
584584a5ba protect against multiple inclusion 1991-10-25 14:44:21 +00:00
ceriel
69026d6c17 Bug fix: used field of freed struct 1991-10-25 14:27:59 +00:00
ceriel
aab21f875e Only install machine-independent part when required 1991-10-25 11:44:18 +00:00
ceriel
96565df518 Some more typedefs 1991-10-25 11:39:06 +00:00
ceriel
d03d8da282 lib --> lib.bin in ego description 1991-10-25 11:31:20 +00:00
ceriel
49a64df069 do not depend on sys/wait.h, it does not always exist 1991-10-25 11:18:29 +00:00
ceriel
bdebaa5059 Do not depend on include files too much 1991-10-25 11:16:56 +00:00
ceriel
6333faba3c Bug fix in padding code 1991-10-25 11:15:09 +00:00
ceriel
84e6e1a10b Several fixes 1991-10-25 11:13:43 +00:00
ceriel
ae063bd74f Added some more types 1991-10-25 11:10:21 +00:00
ceriel
208b9b54e7 cv was made twice 1991-10-25 09:32:18 +00:00
ceriel
31381203bd Some fixes 1991-10-24 15:29:02 +00:00
ceriel
6cc9665025 Fix in proto.make 1991-10-22 14:35:13 +00:00
ceriel
4daf59e3d2 Made more portable by not depending on a.out.h file 1991-10-22 13:31:36 +00:00
ceriel
b117ac89c2 improved clean entry 1991-10-22 10:56:06 +00:00
ceriel
20c2bb2b79 fixes 1991-10-22 10:55:19 +00:00
ceriel
031393529f Added vprintf etc 1991-10-22 09:50:57 +00:00
ceriel
e72aafb165 Added rule to compile as.c 1991-10-22 09:18:32 +00:00
ceriel
0c8514a9ed NSIG is not always defined 1991-10-22 09:07:31 +00:00
ceriel
825941de76 Define NSIG 1991-10-22 09:05:15 +00:00
ceriel
4d82a1b67e Do not define _end; causes name clashes 1991-10-22 09:01:09 +00:00
ceriel
76fb50807b Bug fix: used wrong option letter 1991-10-21 16:38:27 +00:00
ceriel
1bde03203a Fixed typo 1991-10-21 14:17:32 +00:00
ceriel
615e30bdd4 Added compilation rule for scan.c 1991-10-21 14:13:29 +00:00
ceriel
51f8a3b798 cleanup better 1991-10-21 13:59:48 +00:00
ceriel
e8d165a4a6 cleanup better 1991-10-21 13:26:50 +00:00
ceriel
a7760a99bb cleanup better 1991-10-21 13:19:41 +00:00
ceriel
b4ba1a6aca Allow mk_config to run over existing tree, make ack_sys executable 1991-10-18 12:00:42 +00:00
ceriel
f58f97e731 Do not perform actions if NoAction file is present 1991-10-18 12:00:17 +00:00
ceriel
80293fbc82 Make target writable 1991-10-18 10:07:38 +00:00
ceriel
b61f465b1f A few fixes 1991-10-18 10:02:44 +00:00
ceriel
96893d0092 Make targets writable 1991-10-18 09:58:52 +00:00
ceriel
948711ae6f Some fixes 1991-10-18 09:47:46 +00:00
ceriel
e7c3112124 Make files writable 1991-10-17 21:17:17 +00:00
ceriel
94b62ac792 Fixed typo 1991-10-17 16:36:54 +00:00
ceriel
82bad86ee6 a few minor fixes 1991-10-17 13:27:53 +00:00
ceriel
237fb752e5 Use ASAR instead of AR 1991-10-16 17:57:53 +00:00
ceriel
19a47cfa52 qsort arg was wrong for ANSI C 1991-10-16 16:08:27 +00:00
ceriel
7d2b151fde Additions for 5th distribution 1991-10-16 13:36:54 +00:00
ceriel
5dd19fa6e7 Added Action.lint 1991-10-16 13:36:15 +00:00
ceriel
bf01ff880d Adapted for 5th distribution 1991-10-16 13:33:50 +00:00
ceriel
dc61380dc0 many changes 1991-10-16 13:33:38 +00:00
ceriel
7987f04e22 Updated 1991-10-16 13:28:48 +00:00
ceriel
147bb196b2 generate Version.c 1991-10-16 13:07:28 +00:00
ceriel
5073c18d95 5th distribution now! 1991-10-16 11:54:35 +00:00
ceriel
68b728a4e3 fixed lintlib entry 1991-10-16 11:42:25 +00:00
ceriel
e98e8717be Return values 1991-10-16 11:41:33 +00:00
ceriel
425ddb3ff2 New installation mechanism 1991-10-15 16:02:38 +00:00
ceriel
dbcbe25b51 Added cmp and clean entries 1991-10-15 09:31:01 +00:00
ceriel
4991f0027a Only define NULL when not defined yet 1991-10-15 09:25:44 +00:00
ceriel
6debaf0e5c Removed some files that are no longer needed 1991-10-14 15:17:40 +00:00
ceriel
d7964e75d7 Added clean entry 1991-10-14 13:37:43 +00:00
ceriel
7c167d29d2 Added some patterns 1991-10-14 13:04:29 +00:00
ceriel
43248fb244 improved installation mechanism 1991-10-14 11:39:24 +00:00
ceriel
33ec8e07ed improved installation mechanism 1991-10-14 09:38:04 +00:00
ceriel
da6ac05990 Updated 1991-10-14 09:33:55 +00:00
ceriel
20a7f7b188 improved installation mechanism 1991-10-14 09:18:33 +00:00
ceriel
13327f2aec Corrected 1991-10-14 09:17:38 +00:00
ceriel
704bdf8e14 corrected installation mechanism 1991-10-14 09:13:40 +00:00
ceriel
1423d694f8 Corrected installation mechanism 1991-10-14 09:12:13 +00:00
ceriel
57d44ec4bb Added errno.h 1991-10-14 09:05:56 +00:00
ceriel
2997281247 Changed type to int 1991-10-14 08:56:56 +00:00
ceriel
0b5810d83a Removed some strange lines 1991-10-11 09:22:25 +00:00
ceriel
bade2375b5 Added proto.libf77 1991-10-10 15:00:43 +00:00
ceriel
66e3a001cc Added scripts 1991-10-10 14:39:33 +00:00
ceriel
64eacb4c9f Do not install lintlib by default: maybe lint is not installed yet 1991-10-09 19:12:52 +00:00
ceriel
18897487a9 do not do lintlib installation on 'make install', also make sure
that every proto.make has a lintlib entry
1991-10-09 19:02:55 +00:00
ceriel
6286b4b1a9 Fixed manual page 1991-10-09 16:05:24 +00:00
ceriel
c407a7c642 include local.h from the config dir 1991-10-09 15:49:20 +00:00
ceriel
df3ae6c2fb Updated 1991-10-08 10:04:53 +00:00
ceriel
c5d1752d7f Define NFS 1991-10-08 09:45:12 +00:00
ceriel
023b747e63 Added 1991-10-08 09:23:46 +00:00
ceriel
8a44c33e9f Added fortran 1991-10-07 17:00:59 +00:00
ceriel
9cb2aa3286 Added 1991-10-07 16:59:33 +00:00
ceriel
0f16a0f6f8 Added 1991-10-07 16:35:03 +00:00
ceriel
98b019c735 Added fortran 1991-10-07 15:29:25 +00:00
ceriel
8e9b398e9f Use int instead of gid_t and/or uid_t 1991-10-07 13:37:20 +00:00
ceriel
69ead2f15f More additions 1991-10-04 17:37:32 +00:00
ceriel
54d326e1ba Own fcntl.h 1991-10-04 17:37:22 +00:00
ceriel
9ede34412c Added 1991-10-04 14:34:29 +00:00
ceriel
f9b38448fd own time.h 1991-10-04 14:06:34 +00:00
ceriel
7e091602a7 Added time.h 1991-10-04 14:04:30 +00:00
ceriel
0d055f2272 Added some patterns 1991-10-04 11:10:07 +00:00
ceriel
edf43fdf81 Several fixes 1991-10-04 10:38:53 +00:00
ceriel
bbe1e3ffdc only check for positive powers of 2 1991-10-04 10:37:06 +00:00
ceriel
e07baf28c1 Fixes 1991-10-03 15:57:23 +00:00
ceriel
4e0a99ef38 Fixes and additions 1991-10-03 15:45:13 +00:00
ceriel
b4c5125c32 Fixed wrong constant used for CUF 1991-10-02 15:27:54 +00:00
ceriel
182c7ebd70 Fixed flt_ar2flt.c 1991-10-02 15:20:22 +00:00
ceriel
24a353f3e1 Did shift of 32. Not allowed 1991-10-02 13:41:33 +00:00
ceriel
2b7aae3b44 Added support for volatile 1991-10-02 13:03:31 +00:00
ceriel
ed1a07a874 Fixed ADF 4 error 1991-10-02 12:36:36 +00:00
ceriel
9381b34dfa Fix: sometimes generated illegal register messages for parameters 1991-10-02 12:00:05 +00:00
ceriel
a28c551213 ip_spec.h is moved 1991-10-01 17:37:21 +00:00
ceriel
46964d9dfd Additions 1991-10-01 16:57:53 +00:00
ceriel
0784732f3d Adapted for distribution 1991-10-01 16:44:14 +00:00
ceriel
94ba66caa8 Distribute proto.make, not Makefile 1991-10-01 16:31:08 +00:00
ceriel
fe6cddde09 Moved ip_spec.h to h directory 1991-10-01 16:24:49 +00:00
ceriel
6632781f95 Added ip_spec.h 1991-10-01 16:20:38 +00:00
ceriel
9b68f0e322 Added include directories 1991-10-01 14:59:33 +00:00
ceriel
3777699ed4 Updated c.llb 1991-10-01 13:59:16 +00:00
ceriel
7551b8e83a Changes to manual page 1991-10-01 12:18:39 +00:00
ceriel
a329780d73 small change to manual page 1991-10-01 11:14:24 +00:00
ceriel
daa7aef683 Removed LintPars 1991-10-01 09:54:42 +00:00
ceriel
7cab2ba9d9 New additions 1991-10-01 09:27:44 +00:00
ceriel
c5275f3786 Added 1991-09-30 17:58:00 +00:00
ceriel
eba26ad2e6 Added lint 1991-09-30 17:54:44 +00:00
ceriel
b0f64baa8b Added lint 1991-09-30 16:58:12 +00:00
ceriel
7092d8138e Added -ansi flag to lint.1 1991-09-30 16:55:35 +00:00
ceriel
d202b80bcf Adapted for ACK distribution 1991-09-30 16:53:21 +00:00
ceriel
ffa0f837a1 Added 1991-09-30 16:51:49 +00:00
ceriel
25cf41d9b7 Distribute malloc.c to improve lint library generation 1991-09-30 16:36:17 +00:00
ceriel
e7b4e265d4 fixed some lint complaints 1991-09-30 16:24:45 +00:00
ceriel
8e572d417b fixed lint complaints 1991-09-30 16:12:08 +00:00
ceriel
8d25f69e77 Fix: sometimes crashed on initializers for unknown types 1991-09-30 15:00:46 +00:00
ceriel
3e17bc4188 Hidden name 'not_implemented' 1991-09-30 09:26:09 +00:00
ceriel
b3780be39c Added debugger support library 1991-09-30 09:24:11 +00:00
ceriel
a9bcc007ad Added sparc docs 1991-09-27 17:08:48 +00:00
ceriel
fb51183da2 Added 1991-09-27 16:19:24 +00:00
ceriel
63c9fea5c2 Hidden some names, fixed STR 1 bug, use stdio instead of print module 1991-09-27 15:02:33 +00:00
ceriel
6a02543de2 Use stdio instead of print module 1991-09-27 14:58:31 +00:00
ceriel
3a0c4d8704 Adapted for SPARC. LBRAC not reliable 1991-09-27 14:58:30 +00:00
ceriel
3048dc72a7 Added __sun define 1991-09-27 14:57:38 +00:00
ceriel
39f7f119d7 Added support for grind 1991-09-27 14:55:04 +00:00
ceriel
7520aec9d4 Made to work for SPARC 1991-09-27 14:51:43 +00:00
ceriel
90279a0a36 Also include back.h 1991-09-26 12:55:43 +00:00
ceriel
5e3c1e94b0 Fixed typo 1991-09-25 15:39:43 +00:00
ceriel
52a38e47ca Fixed calls to ioctl; sizes of structs are different in ACK 1991-09-25 15:35:57 +00:00
ceriel
157236bdb0 small change to get a better LB 1991-09-25 15:35:03 +00:00
ceriel
8487ae3d76 Made to work with interpreter 1991-09-25 15:04:05 +00:00
ceriel
ce1dba9cac Fixed illegal array descriptors 1991-09-25 15:04:02 +00:00
ceriel
aa24841c87 removed tst.ocm; did not compile 1991-09-25 15:03:05 +00:00
ceriel
b40fd1c8d9 Several fixes 1991-09-25 10:44:30 +00:00
ceriel
c17ce93d9e Several fixes 1991-09-25 10:30:45 +00:00
ceriel
8661cdb40b Added {} around generated for-loop 1991-09-25 10:29:00 +00:00
ceriel
bc0d2e7d69 Fixed problem in gen_str.c: back-slash escape 1991-09-25 10:28:06 +00:00
ceriel
cb4e69cba9 Added fef,fif and fixes 1991-09-25 09:17:14 +00:00
ceriel
7a725ce340 Added libend 1991-09-25 09:16:08 +00:00
ceriel
8baee004e8 Added mes 11 1991-09-25 09:15:22 +00:00
ceriel
3eed94de5b Added 1991-09-25 09:15:10 +00:00
ceriel
a78a8b6038 Gave coroutine more stack space 1991-09-25 09:14:25 +00:00
ceriel
cae8164263 Added _dvi and _dvil 1991-09-25 09:14:08 +00:00
ceriel
567a619003 Added FLOATS macro and fixed array bound error 1991-09-25 09:11:14 +00:00
ceriel
1acd31de45 Added typedef for sigset_t 1991-09-25 09:07:28 +00:00
ceriel
9225ee6a80 Fixed for Sparc 1991-09-24 17:48:37 +00:00
ceriel
9ec49cb6d9 Avoid DVI instruction. Use library call instead 1991-09-24 10:45:43 +00:00
ceriel
4ecf088423 Added 1991-09-23 13:44:18 +00:00
ceriel
0b83bf33e8 Added 1991-09-20 18:14:05 +00:00
ceriel
f03c37528e Added 1991-09-20 16:05:17 +00:00
ceriel
ae0dbd5050 Added 1991-09-20 15:20:22 +00:00
ceriel
dee2d11596 Added sparc 1991-09-20 15:18:26 +00:00
ceriel
571ad3216b Fixed proto.make 1991-09-20 10:39:07 +00:00
ceriel
be3c10d635 Fixes 1991-09-19 14:39:10 +00:00
ceriel
b281e4c6b5 Removed dir.h 1991-09-19 13:05:02 +00:00
ceriel
1df45b5beb Updates and fixes 1991-09-19 12:54:23 +00:00
ceriel
4bd8dcde59 Updates 1991-09-19 12:46:16 +00:00
ceriel
6e485ef169 Several fixes 1991-09-19 11:26:10 +00:00
ceriel
80e3ee2e79 Added some decls 1991-09-19 10:47:01 +00:00
ceriel
529cb1a5e2 NSIG --> _NSIG 1991-09-19 10:38:40 +00:00
ceriel
bb17a417dc Added definition for SIGSYS 1991-09-19 10:36:32 +00:00
ceriel
0557944381 Added stat.h 1991-09-19 09:35:16 +00:00
ceriel
e5cd7399e5 Added types.h 1991-09-19 09:05:20 +00:00
ceriel
3a848279d5 Added unistd.h 1991-09-19 08:59:59 +00:00
ceriel
8ed14ba4d5 Fixed pmds4 description 1991-09-19 08:48:59 +00:00
ceriel
717cfbd921 improved test entries 1991-09-18 19:39:02 +00:00
ceriel
a1fc266ca5 Same for mach.h 1991-09-18 19:19:35 +00:00
ceriel
14b9b9c79f Fixed: failed on MLU 4 pattern; changed register variables 1991-09-18 19:17:56 +00:00
ceriel
f7fbe11132 r3 is now scratch 1991-09-18 19:10:24 +00:00
ceriel
2962e93407 Added -L flag 1991-09-18 18:44:30 +00:00
ceriel
90370cbc29 one more minor change: display name of file being compiled 1991-09-18 18:40:55 +00:00
ceriel
f84b365280 minor changes 1991-09-18 18:39:11 +00:00
ceriel
8db721b6aa Added include directory for tail_mon 1991-09-18 18:36:22 +00:00
ceriel
998d11379c whichone.h in <> so that -I option determines which one to take 1991-09-18 18:23:36 +00:00
ceriel
d8b3985528 Added entries for clean, etc. 1991-09-18 14:17:27 +00:00
ceriel
b0b814befd Forgot next.c 1991-09-18 10:16:06 +00:00
ceriel
369776173a Fixed: em_path now resides in config 1991-09-18 10:14:52 +00:00
ceriel
934e140c98 Fixed proto.make 1991-09-18 10:03:49 +00:00
ceriel
a0858c04e4 Many fixes 1991-09-18 10:02:37 +00:00
ceriel
16b2c7c173 Fixed mach_params 1991-09-18 09:58:12 +00:00
ceriel
df7fa49125 Fixed proto.make: Cfiles also depends on Makefile 1991-09-18 09:49:37 +00:00
ceriel
3a0c239091 Fixed some errors 1991-09-18 09:48:15 +00:00
ceriel
abb71310d2 signal stuff not included on BSD 4.2 or SunOs 1991-09-18 09:46:08 +00:00
ceriel
dfcbc661ca Added stdtypes.h 1991-09-18 09:43:45 +00:00
ceriel
2ad0051a24 popen.c did not compile with __USG defined 1991-09-18 09:19:40 +00:00
ceriel
fbf6efa8fd Fix: used wrong name 1991-09-17 16:38:16 +00:00
ceriel
d3b2458f24 Fixed array bound error. Amazing that it worked on a SUN-3 1991-09-17 10:39:20 +00:00
ceriel
1d6a5c84b6 system-call to MON mapping is in libsys 1991-09-17 09:47:16 +00:00
ceriel
8c82c2e5ef MAXPROCARG could be 0 1991-09-17 09:46:12 +00:00
ceriel
6a970eac86 fixed description for -g flag 1991-09-16 14:48:15 +00:00
ceriel
3863f0d1a2 Added compmodule 1991-09-16 12:47:00 +00:00
ceriel
d04a7af13c Added libdb 1991-09-16 11:54:19 +00:00
ceriel
fe74ad115d Added 1991-09-16 11:53:12 +00:00
ceriel
03da2719ec Added libdb 1991-09-16 11:49:03 +00:00
ceriel
132d7ddd95 Added 1991-09-16 11:47:43 +00:00
ceriel
443aae6f7a Added proto.libdb 1991-09-16 11:45:37 +00:00
ceriel
5bfd012ea3 Added grind 1991-09-16 11:45:26 +00:00
ceriel
c2bcab0685 Fixed proto.make 1991-09-16 11:09:10 +00:00
ceriel
728dc323cd Fixed proto files 1991-09-16 09:59:09 +00:00
ceriel
24c41e0d4d Added -I. to includes 1991-09-16 09:44:21 +00:00
ceriel
9e2e9cc6f7 Fixed 1991-09-16 09:38:58 +00:00
ceriel
f59466eab7 Only install cv; Xcv can only be compiled on a SUN-3 1991-09-16 09:37:06 +00:00
ceriel
d3254e4bb7 Added ops.c and ops.h 1991-09-13 15:13:59 +00:00
ceriel
884e02e822 fix: make.ops takes a parameter 1991-09-13 15:09:38 +00:00
ceriel
bdf6bc6f87 Added grind 1991-09-13 15:05:49 +00:00
ceriel
65454de06c Fixed proto.make 1991-09-13 14:56:50 +00:00
ceriel
712ae25e0d No longer made with amake 1991-09-13 14:53:27 +00:00
ceriel
767c52b241 Fixed proto.make 1991-09-13 12:36:13 +00:00
ceriel
4d7339bb60 Fixed proto.make 1991-09-13 12:01:42 +00:00
ceriel
cd8141b705 Fixed proto.make 1991-09-13 11:20:27 +00:00
ceriel
0182322630 Fixed proto.make 1991-09-13 11:00:50 +00:00
ceriel
a8cb5cbe86 Fixed proto.make 1991-09-13 10:29:06 +00:00
ceriel
7d5231279f Fixed 1991-09-13 10:24:29 +00:00
ceriel
c9c46c1ec1 Fixed 1991-09-13 10:12:17 +00:00
ceriel
e5052d73e4 fix: make directory lib.bin/ego 1991-09-13 10:07:37 +00:00
ceriel
e73d9b09a4 Identifier name change; tmpnam is reserved 1991-09-13 09:59:54 +00:00
ceriel
b10eadb10e Fixed problem with parameter counts 1991-09-13 09:15:36 +00:00
ceriel
86e38c87fb Fixed typo 1991-09-12 16:41:15 +00:00
ceriel
0ae5c1e43e Fixed: Added -I. 1991-09-12 16:39:50 +00:00
ceriel
90e969b5ba scan.c must be read-write 1991-09-12 16:22:48 +00:00
ceriel
a82fde69c3 Fixed 1991-09-12 14:19:28 +00:00
ceriel
5c64a8d1ea install libmon AND libsys 1991-09-12 12:01:08 +00:00
ceriel
e54a3afdfd install system call library 1991-09-12 11:57:55 +00:00
ceriel
0339ee31bd install libmon AND libsys 1991-09-12 11:52:59 +00:00
ceriel
c5b304bc51 install libbsd4_2 system-call interface by default 1991-09-12 11:50:03 +00:00
ceriel
55d1808387 Added proto.sysmon to .distr 1991-09-10 12:23:18 +00:00
ceriel
8b6a2e2cd7 Added flex and byacc 1991-09-10 11:48:47 +00:00
ceriel
5167121b6e Added ANSI-C to Action file 1991-09-10 11:20:45 +00:00
ceriel
3bbf316395 Added Makefile to do a 'make distr' 1991-09-10 09:55:38 +00:00
ceriel
ad1ff9d44c Added 1991-09-06 16:01:22 +00:00
ceriel
8caa154b25 new installation mechanism 1991-09-06 15:37:13 +00:00
ceriel
528ce00522 Added 1991-09-06 15:36:00 +00:00
ceriel
65bc2b62a1 Added todo 1991-09-06 15:31:41 +00:00
ceriel
f0c03173ef Added test.s 1991-09-06 15:06:36 +00:00
ceriel
699edcc81e Added ANSI stuff 1991-09-06 14:37:35 +00:00
ceriel
ad5b31be99 Distribute proto.make, not Makefile 1991-09-06 13:58:59 +00:00
ceriel
ea750dd18b Fixed for current nroff 1991-09-06 13:36:26 +00:00
ceriel
f1c3c765c5 new installation mechanism 1991-09-06 11:38:51 +00:00
ceriel
1dfcfd17fb Changed comment 1991-09-06 11:34:41 +00:00
ceriel
a073089e73 Added libce 1991-09-06 11:33:10 +00:00
ceriel
607a2393a0 New installation mechanism 1991-09-06 11:33:09 +00:00
ceriel
f67ed5e458 New installation mechanism 1991-09-06 11:04:20 +00:00
ceriel
d206ef7ce1 Added ce to .distr 1991-09-05 16:37:00 +00:00
ceriel
1ceac3b8e9 New installation mechanism 1991-09-05 16:36:59 +00:00
ceriel
50abc3f33b minor change 1991-09-05 16:35:57 +00:00
ceriel
edaf2a01f4 new installation mechanism 1991-09-05 16:35:56 +00:00
ceriel
4ceac64530 new installation mechanism 1991-09-05 11:56:23 +00:00
ceriel
db67ceebc9 LIBS was not used; removed it 1991-09-05 11:52:04 +00:00
ceriel
bb82ab2c09 New installation mechanism 1991-09-05 11:50:17 +00:00
ceriel
3e9c44cef7 new installation mechanism 1991-09-05 11:43:36 +00:00
ceriel
52d1b0e8aa New installation mechanism 1991-09-05 11:33:24 +00:00
ceriel
53664c2d1f New installation mechanism 1991-09-05 11:22:37 +00:00
ceriel
3bdfdfc1cf Some fixes 1991-09-05 11:19:37 +00:00
ceriel
a2fc0c859c new installation mechanism 1991-09-05 11:10:43 +00:00
ceriel
d93bc01d2d New installation mechanism 1991-09-05 11:06:46 +00:00
ceriel
5eb2a9f2fe Fixed error in path name 1991-09-05 10:56:45 +00:00
ceriel
e7a1e1cc9c New installation mechanism 1991-09-05 10:56:44 +00:00
ceriel
324b09070d Adapted NEW 1991-09-05 10:34:46 +00:00
ceriel
9eea2a726e some fixes 1991-09-05 09:47:57 +00:00
ceriel
fc443716c8 proto.make instead of Makefile 1991-09-05 09:26:23 +00:00
ceriel
6c517ebb35 Added .distr 1991-09-05 09:25:02 +00:00
ceriel
9592708fe2 libros --> libmon 1991-09-05 09:24:05 +00:00
ceriel
c8f9014a7e MON library also linked with .e 1991-09-04 17:57:34 +00:00
ceriel
4b7d675f55 Added arm 1991-09-04 17:56:54 +00:00
ceriel
7559fbb966 lib --> lib.bin for programs 1991-09-04 17:56:11 +00:00
ceriel
9853ac8a4b lib --> lib.bin for programs 1991-09-04 17:50:11 +00:00
ceriel
dc715866bb lib --> lib.bin for programs 1991-09-04 16:53:25 +00:00
ceriel
5a0bf7639a lib --> lib.bin for programs 1991-09-04 16:25:34 +00:00
ceriel
70ee3dc406 Fixed machine-dependant defines 1991-09-04 16:18:23 +00:00
ceriel
b6590ab8d1 lib --> lib.bin for programs 1991-09-04 16:18:20 +00:00
ceriel
0caa529e0a fix machine-dependant #if's 1991-09-04 16:01:22 +00:00
ceriel
df039a267d Fixed machine-dependant defines 1991-09-04 15:59:56 +00:00
ceriel
4fd7747338 fix machine-dependant #if's 1991-09-04 15:49:34 +00:00
ceriel
620f7e3d49 fix machine-dependant #if's 1991-09-04 15:37:41 +00:00
ceriel
a2fd894103 lib --> lib.bin for programs 1991-09-04 13:29:18 +00:00
ceriel
3003fa5594 Added tail_mon2 1991-09-04 13:29:04 +00:00
ceriel
284290f41a Added arm 1991-09-04 13:26:41 +00:00
ceriel
707e62a998 lib --> lib.bin for programs 1991-09-04 13:23:32 +00:00
ceriel
ca86ccf220 lib --> lib.bin for programs 1991-09-04 13:12:45 +00:00
ceriel
38fdd40cb7 updated for Minix 1.5 1991-09-04 13:07:02 +00:00
ceriel
206afe317c New installation mechanism 1991-09-04 12:01:39 +00:00
ceriel
5d5fa0b453 New installation mechanism 1991-09-04 11:32:07 +00:00
ceriel
7dd59bfdb0 new installation mechanism 1991-09-04 11:31:36 +00:00
ceriel
b21d0acbdd new installation mechanism 1991-09-04 11:22:19 +00:00
ceriel
1e4b58858e New installation mechanism 1991-09-04 11:19:28 +00:00
ceriel
1100c95c47 new installation mechanism 1991-09-04 11:10:36 +00:00
ceriel
564cbc6eba Only call NOP routine when debugging table 1991-09-04 10:55:52 +00:00
ceriel
89b73247c7 New installation mechanism 1991-09-04 10:45:29 +00:00
ceriel
129dbd29cf new installation mechanism 1991-09-04 10:43:51 +00:00
ceriel
634eb45db6 new installation mechanism 1991-09-03 17:38:15 +00:00
ceriel
6872464b8d new installation mechanism 1991-09-03 16:57:49 +00:00
ceriel
c3b36c748b New installation mechanism 1991-09-03 16:57:00 +00:00
ceriel
3b00811300 New installation mechanism 1991-09-03 16:45:48 +00:00
ceriel
4b27a0d2f3 new installation mechanism 1991-09-03 16:44:58 +00:00
ceriel
7d6eed155c New installation mechanism 1991-09-03 16:34:31 +00:00
ceriel
43efeff393 new installation mechanism 1991-09-03 16:28:37 +00:00
ceriel
01d8753db4 new installation mechanism 1991-09-03 16:20:41 +00:00
ceriel
53bfe9cfa0 New installation mechanism 1991-09-03 16:03:33 +00:00
ceriel
4274cb903c new installation mechanism 1991-09-03 16:03:08 +00:00
ceriel
e262730554 New installation mechanism 1991-09-03 15:37:56 +00:00
ceriel
019074c732 new installation mechanism 1991-09-03 15:37:16 +00:00
ceriel
8818aec10e New installation mechanism, updated to minix 1.5 1991-09-03 15:11:18 +00:00
ceriel
fc1615334c new installation mechanism 1991-09-03 15:01:06 +00:00
ceriel
cdd5e62a71 new installation mechanism 1991-09-03 14:44:30 +00:00
ceriel
9883fa2379 New installation mechanism 1991-09-03 14:27:06 +00:00
ceriel
c55a542ba4 New installation mechanism, updated to 1.5 1991-09-03 14:22:32 +00:00
ceriel
7512bdd33b updated to minix 1.5 1991-09-03 12:00:30 +00:00
ceriel
c44e30af8b updated to minix 1.5 1991-09-03 11:54:28 +00:00
ceriel
096b4683d4 updated to minix 1.5 1991-09-03 11:47:14 +00:00
ceriel
bae41e2d34 new installation mechanism 1991-09-03 10:55:59 +00:00
ceriel
51c2e125ce New installation mechanism 1991-09-03 10:55:25 +00:00
ceriel
88885db964 New installation mechanism 1991-09-03 10:54:20 +00:00
ceriel
084f565c9f new installation mechanism 1991-09-03 10:39:56 +00:00
ceriel
b67d1a36f3 New installation mechanism 1991-09-02 17:47:41 +00:00
ceriel
b520bc40a5 New installation mechanism 1991-09-02 17:27:44 +00:00
ceriel
ce87955d7b New installation mechanism 1991-09-02 17:00:19 +00:00
ceriel
5d9dc323e9 New installation mechanism 1991-09-02 15:46:16 +00:00
ceriel
a70ce8404c New installation mechanism 1991-09-02 15:23:50 +00:00
ceriel
954d74eff8 New installation mechanism 1991-09-02 15:08:48 +00:00
ceriel
6960652579 New installation mechanism 1991-09-02 14:52:41 +00:00
ceriel
1d5fae2b24 New installation mechanism 1991-09-02 14:35:41 +00:00
ceriel
32b924a76a New installation mechanism 1991-09-02 14:18:44 +00:00
ceriel
85a8a71149 New installation mechanism 1991-09-02 14:11:40 +00:00
ceriel
0cc2f6e317 New installation mechanism 1991-09-02 14:03:15 +00:00
ceriel
dc2ab49b32 NOP does nothing but stacking 1991-08-30 15:48:10 +00:00
ceriel
d4045b68d4 New installation mechanism 1991-08-30 15:45:58 +00:00
ceriel
6d9cd78c4e New installation mechanism 1991-08-30 15:19:38 +00:00
ceriel
5730364a30 new installation mechanism 1991-08-30 15:18:42 +00:00
ceriel
e572fa981d New installation mechanism 1991-08-30 12:59:04 +00:00
ceriel
8c40aefc8b New installation mechanism 1991-08-29 15:15:40 +00:00
ceriel
3a7f7f5eb9 use __exit and __write instead 1991-08-29 15:08:24 +00:00
ceriel
1be5f51868 New installation mechanism 1991-08-29 11:57:16 +00:00
ceriel
54fe5425e1 Adapted to new assembler 1991-08-29 11:52:50 +00:00
ceriel
bab09a13c2 New installation mechanism 1991-08-29 11:36:20 +00:00
ceriel
33c0dd8496 use __exit and __write instead 1991-08-29 11:34:42 +00:00
ceriel
c9627bf4e6 only depend on MON implementation for system calls 1991-08-29 11:30:58 +00:00
ceriel
8a9e71256f New installation mechanism 1991-08-28 16:00:10 +00:00
ceriel
49b3949315 new directory for system-dependant things 1991-08-28 15:55:18 +00:00
ceriel
239535a02a end, etext, edata library 1991-08-28 15:43:46 +00:00
ceriel
8b3009d6e3 New installation mechanism 1991-08-28 15:23:40 +00:00
ceriel
1d620a2e3b Distribute ncg, not cg 1991-08-28 14:32:58 +00:00
ceriel
dab686f5e0 New installation mechanism 1991-08-28 14:14:44 +00:00
ceriel
bbb4d40669 Include whichone.h with <> so that the -I options decide which one is included 1991-08-28 14:13:14 +00:00
ceriel
1d990f7f9c Distribute ncg, not cg 1991-08-28 14:11:03 +00:00
ceriel
4c0b0fd096 Distribute ncg, not cg 1991-08-28 13:41:24 +00:00
ceriel
9ab452c974 new installation mechanism 1991-08-28 13:39:54 +00:00
ceriel
896bd6de39 New installation mechanism 1991-08-28 13:10:52 +00:00
ceriel
b5e28c964f New installation mechanism 1991-08-28 12:50:30 +00:00
ceriel
3168ce61ae New installation mechanism 1991-08-28 12:02:16 +00:00
ceriel
b53634fa73 New installation mechanism 1991-08-28 11:28:56 +00:00
ceriel
12c14c0396 New installation mechanism 1991-08-28 11:08:03 +00:00
ceriel
70d13f9a80 New installation mechanism 1991-08-28 10:55:22 +00:00
ceriel
c7edcc34d6 New installation mechanism 1991-08-27 10:47:25 +00:00
ceriel
d9f98bc411 New installation mechanism 1991-08-27 10:18:09 +00:00
ceriel
5f652d1e85 removed compare and install 1991-08-27 10:17:25 +00:00
ceriel
112b0cf407 removed ud_locals.h; it was not used 1991-08-27 10:15:59 +00:00
ceriel
2b23822015 Handle entries without name 1991-08-27 09:55:25 +00:00
ceriel
492be74d94 Removed includes with relative paths 1991-08-27 09:45:37 +00:00
ceriel
2c400f6a44 Added u flag 1991-08-27 09:44:53 +00:00
ceriel
e7856a2204 New installation mechanism 1991-08-27 09:41:49 +00:00
ceriel
53b7af7a80 New installation mechanism 1991-08-27 09:20:30 +00:00
ceriel
31714c8bf3 parameterized cvtkeywords 1991-08-27 09:09:49 +00:00
ceriel
edd602fcdb Keep ms_stb's where they are 1991-08-27 09:08:05 +00:00
ceriel
5d4aa41db7 New installation mechanism 1991-08-27 09:05:27 +00:00
ceriel
3936acad08 Some minor mods 1991-08-27 08:57:28 +00:00
ceriel
da188bbb4d New installation mechanism, changed byte order mechanism 1991-08-26 16:57:47 +00:00
ceriel
73177ad913 New installation mechanism 1991-08-26 16:50:25 +00:00
ceriel
dd478032e6 New installation mechanism 1991-08-26 16:21:27 +00:00
ceriel
e469cc5ac6 New installation mechanism 1991-08-26 16:02:10 +00:00
ceriel
8981100964 New installation mechanism 1991-08-26 15:18:31 +00:00
ceriel
f17db32411 New installation mechanism 1991-08-26 15:10:59 +00:00
ceriel
0fb930b473 New installation mechanism 1991-08-26 14:39:14 +00:00
ceriel
942b24329f New installation mechanism 1991-08-26 14:29:59 +00:00
ceriel
2526e11a03 improved structure assignments 1991-08-26 14:26:07 +00:00
ceriel
57e6cad135 New installation mechanism 1991-08-26 14:05:16 +00:00
ceriel
8e89c04900 New installation mechanism 1991-08-26 13:23:36 +00:00
ceriel
78104e7d8a New installation mechanism 1991-08-26 12:50:21 +00:00
ceriel
8fcbfada69 New installation mechanism 1991-08-26 12:04:28 +00:00
ceriel
216b8e5d98 Removed Makefile 1991-08-26 12:01:41 +00:00
ceriel
5abbc66878 New installation mechanism 1991-08-26 11:08:07 +00:00
ceriel
b1fdacb99c relaxed the ;-terminator requirement for parameters 1991-08-23 16:23:07 +00:00
ceriel
3c221691b3 Added proto files 1991-08-23 14:07:27 +00:00
ceriel
2b3ea5faab Added proto.make file 1991-08-23 14:06:51 +00:00
ceriel
5ca5519c75 Added .distr file 1991-08-21 15:28:46 +00:00
ceriel
42afe4e24e Added .distr file 1991-08-21 15:19:39 +00:00
ceriel
6d86200992 renamed fe 1991-08-21 11:38:52 +00:00
ceriel
f0d26d1935 renamed descr 1991-08-21 11:33:24 +00:00
ceriel
35b0718027 cv is no longer dependant on COFF include files 1991-08-19 16:36:58 +00:00
ceriel
790d540f91 Made to compile on non-COFF systems 1991-08-19 16:09:17 +00:00
ceriel
b503d85d23 If NOPP is defined, do not do trigraph translation; cpp does it 1991-08-09 13:57:13 +00:00
ceriel
5d00c41800 Removed definition of EMHOME; it was not used 1991-08-07 10:52:35 +00:00
ceriel
2a6c8390fa Fix for symbolic debugger 1991-08-05 13:23:45 +00:00
ceriel
c34fcda208 Fixes: sometimes entered panic mode with wrong fakestack 1991-07-30 16:05:59 +00:00
ceriel
da84cc69bc removed scan.c and fixed a bug: 'struct a;' is an empty decl if struct a is already known 1991-07-25 16:00:32 +00:00
ceriel
dbe4911b65 Fixed the HFILES macro 1991-07-25 15:45:35 +00:00
ceriel
003382e13f Fix in 'LDC CMS TNE' pattern 1991-07-22 09:23:25 +00:00
ceriel
4d682ab1e2 Changed mechanism for defining size_type 1991-07-12 10:16:11 +00:00
ceriel
240dd55fd9 Removed the id_enum macro and replaced id_struct by id_tag (better name) 1991-07-08 16:49:04 +00:00
dick
ca104453ca prototypes now handled by lint 1991-07-05 11:55:17 +00:00
dick
a0460b8bfc compatibility change in l_class.h for prototypes in ANSI C 1991-07-05 11:33:49 +00:00
ceriel
34d6b23ba6 Fixed two bugs:
- did not accept arrays in 'if (a) ...'
- did not detect too few parameters in functions with ellipsis prototypes
1991-07-01 14:10:15 +00:00
ceriel
c3c1b918f0 updated 1991-06-26 17:39:48 +00:00
ceriel
9bbcb70320 Added end_em 1991-06-26 17:38:06 +00:00
ceriel
bdad94b18c New global optimizer driver 1991-06-26 17:36:59 +00:00
ceriel
e036de0d90 Removed wrong patterns 1991-06-26 17:35:03 +00:00
ceriel
8afda7422e Fix NOP 1991-06-26 17:33:16 +00:00
ceriel
c77a7e6d32 Fixed call to mktemp() so that it does not try to change a constant string 1991-06-26 17:32:44 +00:00
ceriel
dac25d9dd8 fixed trp.s (undid change by Hans v Eck) 1991-06-26 17:32:09 +00:00
ceriel
e505a02ad7 produce debugging info 1991-06-26 17:30:48 +00:00
ceriel
47dccc3c67 improved clean entry 1991-06-26 17:30:36 +00:00
ceriel
9f565afcc2 removed unused variable 1991-06-26 17:29:58 +00:00
ceriel
8583ee73f3 Added verbose flag 1991-06-26 17:28:15 +00:00
ceriel
ea9332362d correction 1991-06-26 17:26:59 +00:00
ceriel
f3d21dc6cc made alloc.h acceptable for ANSI C compiler 1991-06-26 17:26:03 +00:00
ceriel
8cf9b73fbc Fixed grammar 1991-06-26 17:23:55 +00:00
ceriel
55d8020292 some more statistics 1991-06-24 16:35:08 +00:00
ceriel
42584ddcdb Fixed memory leak 1991-06-24 16:33:43 +00:00
ceriel
1be579a6e7 minor improvement to volatile code 1991-06-21 10:31:20 +00:00
ceriel
aec33f4d0f CLK_TCK --> CLOCKS_PER_SEC; was toch goed 1991-06-21 09:58:57 +00:00
ceriel
9461e91a9b Patched in D option (feature from Johan) 1991-06-20 14:22:37 +00:00
ceriel
7a1d1ce1c1 fixed some label problems 1991-06-20 10:17:36 +00:00
ceriel
9f43986877 ANSI requires separate name space for labels, and made to use idf module 1991-06-19 16:12:56 +00:00
ceriel
3a074a6f99 FIxed problem with volatile structs and the ./-> operators 1991-06-13 15:56:14 +00:00
ceriel
384d4c7647 corrected time.h header 1991-06-11 09:25:32 +00:00
ceriel
9e9e7db6b4 Fixed flushbuf() so that it works with POSIX conformant Unix versions 1991-06-10 17:07:18 +00:00
ceriel
e6a017827e Changed an int into a short 1991-06-06 11:47:23 +00:00
ceriel
44fda8e7d0 Fixed Makefile 1991-06-05 09:25:20 +00:00
ceriel
3e9b9b3cbe Added isnan.c 1991-06-04 15:33:34 +00:00
ceriel
659d310e37 Modified to output a little less white space 1991-06-03 14:46:13 +00:00
ceriel
2838d446ef Did not detect redeclaration of formal as local 1991-05-27 15:06:36 +00:00
ceriel
3891c03e0e prevent complaints about unused variables when they are used as var-param 1991-05-21 14:11:27 +00:00
ceriel
2d79ecd203 Fixed a few problems 1991-05-16 13:22:15 +00:00
ceriel
094b1d0742 Fixed missing ; before } 1991-05-16 13:08:32 +00:00
ceriel
f4757c8370 fixed two possible null-references 1991-05-13 13:57:25 +00:00
ceriel
d8d30b403b Fixed a cast bug (unsigned to unsigned char) 1991-05-13 10:08:54 +00:00
ceriel
1da2103504 Delinted a bit 1991-04-25 16:47:47 +00:00
ceriel
c955dc1374 Delinted a bit 1991-04-25 16:26:11 +00:00
ceriel
7853446daf Fixed some sprint's 1991-04-25 13:54:25 +00:00
ceriel
0c137374ae fixed 1991-04-25 10:54:44 +00:00
ceriel
02d253d810 fixed 1991-04-25 10:49:28 +00:00
ceriel
e4136ac8e5 There was no RCK 2 due to a preprocessor-directive error 1991-04-24 14:09:20 +00:00
ceriel
e001541608 Fixed bug in checking of last char of environment variable 1991-04-24 12:18:03 +00:00
ceriel
e8ff85905f ptr_diff is a long in ANSI C; cast to int 1991-04-23 09:35:51 +00:00
ceriel
d6a224ea5f Changed name of loc_incl.h to loc_time.h 1991-04-22 13:21:11 +00:00
ceriel
ab8022ccbd Fixed bug 1991-04-22 11:29:48 +00:00
ceriel
a3f4cdefa3 Minor change: improved conflict resolver that tested for never happening case 1991-04-19 15:26:50 +00:00
ceriel
80c49a6ea7 Added LOS 4 and STS 4 1991-04-19 13:09:30 +00:00
ceriel
7258ccc596 Added some more patterns 1991-04-19 12:03:49 +00:00
ceriel
2fef7f7389 Added LOS 4 and STS 4 1991-04-19 12:02:52 +00:00
ceriel
de12536c94 fixed bug with struct/union/enum declarations 1991-04-18 12:27:58 +00:00
ceriel
2552813eaa Corrected #error and #define 1991-04-11 10:52:52 +00:00
ceriel
49c5c36362 Added defaults for M2COMPILER and DEF_DIR 1991-04-10 15:10:32 +00:00
ceriel
b2b79edc42 Removed use of STATIC 1991-04-10 13:32:42 +00:00
ceriel
c0d92bbc76 Added some patterns 1991-04-10 10:23:34 +00:00
ceriel
aa35bf7f02 Changed default value of rts to '.' 1991-04-09 15:29:46 +00:00
ceriel
e096bc3fb3 fixed problem with extern declarations 1991-04-09 10:15:48 +00:00
ceriel
e5b52ce56f Added some more patterns 1991-04-05 13:27:49 +00:00
ceriel
8e8f0b4079 fixed typo 1991-04-05 09:45:11 +00:00
ceriel
7c2c7f23e3 prevent overflow 1991-04-05 09:24:45 +00:00
ceriel
86151519db Some small changes to reduce local variable count 1991-04-04 16:48:18 +00:00
ceriel
71dfb50135 Added some re-ordering patterns 1991-04-04 16:45:31 +00:00
ceriel
5b2b02ae1e Added patterns 1991-04-04 13:21:46 +00:00
ceriel
ba2043808d correction: mixture of old-fashioned with ellipsis is always wrong 1991-04-03 10:02:40 +00:00
ceriel
cafd4a0497 Added patterns to improve code for getc() and putc() 1991-03-27 15:47:50 +00:00
ceriel
8a25f4e66b Some minor mods in mixed mode checking 1991-03-27 12:46:37 +00:00
ceriel
52287793fb Removed superfluous : 1991-03-26 18:41:47 +00:00
ceriel
0f809c61dc Added some patterns 1991-03-26 18:10:29 +00:00
ceriel
f9f8f93115 Fixed typo 1991-03-26 14:43:06 +00:00
ceriel
dcb6a17cf3 Fixed bug in function return code 1991-03-26 13:38:36 +00:00
ceriel
9565b3bd24 Added some patterns 1991-03-26 10:11:23 +00:00
ceriel
3e16cf5116 Fix: prevent incorrect error messages 1991-03-26 09:45:20 +00:00
ceriel
ca06e574ca Improved code generation for sets somewhat 1991-03-25 13:28:50 +00:00
ceriel
8b67c1f800 Fix to fix 1991-03-25 13:16:02 +00:00
ceriel
043ad764b8 Yet another fix: this time for AND/IOR/XOR/COM ? 1991-03-25 11:39:27 +00:00
ceriel
6f4da1d70a bug fix for SET instruction on m68k2 1991-03-22 18:23:55 +00:00
ceriel
eecdf96b0b Rearranged a bit 1991-03-22 15:17:16 +00:00
ceriel
1dff113351 Delinted 1991-03-22 14:26:10 +00:00
ceriel
3686d24064 Some modifications for running on smaller machines 1991-03-21 10:45:42 +00:00
ceriel
62bad715c2 Added some patterns for Kees Visser 1991-03-21 09:50:06 +00:00
ceriel
319fb7cbff Removed evaluation order dependency bug 1991-03-21 09:49:35 +00:00
ceriel
7a0002427d Use of em_flag was wrong: did not use sp_fmnem 1991-03-20 17:31:20 +00:00
ceriel
74ff22b506 Allow for AALMAG as well as ARMAG 1991-03-20 16:24:50 +00:00
ceriel
6bdd99ee7b allow for AALMAG as well as ARMAG 1991-03-20 16:21:53 +00:00
ceriel
a9aa131d8c fixed typo 1991-03-20 13:47:18 +00:00
ceriel
5c3b708636 Both aal and arch can read each others archives 1991-03-20 12:45:58 +00:00
ceriel
d32109c18d Several fixes 1991-03-20 11:30:35 +00:00
ceriel
7e8422d810 added check for Nan 1991-03-19 16:51:28 +00:00
ceriel
e27071de78 Check for Nan 1991-03-19 16:39:40 +00:00
ceriel
2684a45cc5 do not write in strings: they could reside in ROM 1991-03-19 11:14:39 +00:00
ceriel
3e0eb5d58a Detect too large values 1991-03-19 10:25:36 +00:00
ceriel
5a53ba3f50 Several minor mods: simplifications and identifier name changes 1991-03-18 16:30:49 +00:00
ceriel
22378eaff8 produce commons for newlbss 1991-03-18 15:06:01 +00:00
ceriel
95967a04e4 newlbss takes size as unsigned 1991-03-18 14:19:27 +00:00
ceriel
a61ee10532 fcntl.h now requires sys/types.h 1991-03-18 09:16:00 +00:00
ceriel
9155b8a68a Fixed bug that never occurred, but was discovered by reading the code 1991-03-15 11:21:46 +00:00
ceriel
f4691c73c4 Call _cleanup before _exit 1991-03-15 09:24:03 +00:00
ceriel
adab058c34 Fixed typo 1991-03-14 13:46:53 +00:00
ceriel
d8771e87f9 minor mods 1991-03-14 13:43:45 +00:00
ceriel
852601d0b5 minor mods 1991-03-14 13:16:32 +00:00
ceriel
5ebc2017a0 Do not use the allocation mechanism for the desig structure; overkill 1991-03-14 11:10:40 +00:00
ceriel
86bc055fa1 Corrected error on NOCROSS 1991-03-14 09:31:32 +00:00
ceriel
f7504dbd4b Cleaned up a bit more 1991-03-13 17:26:07 +00:00
ceriel
f48f0efe60 Added some more patterns 1991-03-13 15:56:43 +00:00
ceriel
52842cd09a Cleaned up a bit 1991-03-13 13:49:56 +00:00
ceriel
17266fb373 A strict warning was given too often 1991-03-13 10:11:25 +00:00
ceriel
0a517b9256 Changes to make node structure smaller, and cleaned up a bit 1991-03-12 16:52:00 +00:00
dick
20b17c3eb2 allow full paths for library names in shell script lint 1991-03-12 10:58:22 +00:00
ceriel
3e18caaab0 fixed bug in coroutine mechanism 1991-03-11 16:21:13 +00:00
ceriel
977e1ac25e Removed unused variable 1991-03-11 14:38:28 +00:00
ceriel
52d4c7ff70 Added VARARGS 1991-03-11 14:33:13 +00:00
dick
67a2cc281f ANSI C prototype handling added 1991-03-08 15:54:05 +00:00
ceriel
30867cf631 the -S option also falls under ifndef NOCROSS 1991-03-07 12:51:11 +00:00
ceriel
b4aaa8824e be a bit more tolerant about external definitions 1991-03-07 12:01:34 +00:00
ceriel
fffa7617b1 m_a_i_n --> _m_a_i_n 1991-03-06 14:44:25 +00:00
ceriel
b893ec7013 m_a_i_n --> _m_a_i_n 1991-03-06 14:26:16 +00:00
ceriel
76d79cf17a Added macro's for long selections 1991-03-06 10:52:34 +00:00
ceriel
24fd4e190e Fixed bugs 1991-03-06 10:20:17 +00:00
ceriel
82b3ae254c Added -S flag 1991-03-05 17:52:37 +00:00
ceriel
3a715f5479 Lay-out changes and made IMPORTS more specific 1991-03-05 13:47:08 +00:00
ceriel
ac83fe3815 Removed WORDLENGTH generation program; no longer assume that the machine
on which we compile is the machine on which we run
1991-03-05 13:06:00 +00:00
ceriel
27d53b0d33 Changed #include's 1991-03-05 12:44:05 +00:00
ceriel
e264b45120 Changed #include's 1991-03-05 12:16:17 +00:00
ceriel
d8ff0feed3 Replaced some EM code by C code 1991-03-05 11:56:39 +00:00
ceriel
81cc04f9a3 Changed unsigned checking so that runtime routines cab be written in C 1991-03-05 11:55:22 +00:00
ceriel
e929b5839f Fixed problem with top-of-stack mechanism on globally optimized code 1991-03-04 15:04:14 +00:00
ceriel
e340cea7be Under -t option, temporaries are in the current directory 1991-03-04 15:00:54 +00:00
ceriel
55bbaa1bf2 Fixed wrong %c conversion 1991-03-04 13:35:22 +00:00
ceriel
5a8012b084 Replaced driver by C version 1991-03-04 12:59:46 +00:00
ceriel
8f339de43b Prevent possible null-dereference 1991-03-01 14:55:46 +00:00
ceriel
e1b6ddca2c Prevent superfluous label generation 1991-03-01 14:54:43 +00:00
ceriel
bd1da2f86c Improved switches, and fixed wrong place indication in error messages 1991-03-01 13:51:37 +00:00
ceriel
9d3696befe Changed stat() interface 1991-02-28 16:47:45 +00:00
ceriel
1903555355 fixed bug with -j option 1991-02-28 14:48:17 +00:00
ceriel
e61d1b425d fixed old-fashioned decl check 1991-02-27 13:48:54 +00:00
ceriel
cb7438cb99 Some modifications to improve floating point printing 1991-02-26 18:37:47 +00:00
ceriel
d50d1f6c5e Added some casts so that it works for negative values 1991-02-26 18:17:21 +00:00
ceriel
1d73a4f04e Added hypot.c 1991-02-26 18:08:25 +00:00
ceriel
ee02bfcd82 minor mods 1991-02-26 15:46:18 +00:00
ceriel
9c0b85db41 Fixed tmpnam(): name contained null-byte 1991-02-26 09:28:39 +00:00
ceriel
1118da779b Use _ versions of system-calls 1991-02-22 16:57:42 +00:00
ceriel
cf10cabb6f fixed problems with flushbuf 1991-02-22 16:45:47 +00:00
ceriel
9340345509 Fix FOPEN_MAX array bound error 1991-02-22 16:32:05 +00:00
ceriel
5c5cb8e5c8 Make sure that line directives start on the beginning of a line 1991-02-22 14:29:37 +00:00
ceriel
782d0f48bf Undid previous change 1991-02-22 13:49:51 +00:00
ceriel
579b3b29bd Removed unused variables 1991-02-22 13:43:22 +00:00
ceriel
dab38becd4 Fixed preprocessor problem with empty macro bodies 1991-02-21 12:08:13 +00:00
ceriel
12f4a430b0 Added varargs.h 1991-02-20 14:53:31 +00:00
ceriel
a8c0b82421 removed -i flag 1991-02-20 09:59:26 +00:00
ceriel
6765041a10 Do not copy libsrc; only extract 1991-02-20 09:56:17 +00:00
ceriel
c9ece34fc5 Changed method of allocating locals 1991-02-20 09:54:55 +00:00
ceriel
1fec35a71e Added some patterns 1991-02-20 09:51:43 +00:00
ceriel
87385c49e4 Changed some identifier names (ANSI C, Ultrix ...) 1991-02-20 09:51:07 +00:00
ceriel
bb31795d33 removed -i flag 1991-02-20 09:48:36 +00:00
ceriel
1c694d98d0 removed unused variables 1991-02-20 09:48:00 +00:00
ceriel
0d65b92220 removed -i flag 1991-02-19 16:57:39 +00:00
ceriel
3f922854b3 fixed typo (?) 1991-02-19 16:54:06 +00:00
ceriel
2c31a9b1ac removed -i flag 1991-02-19 16:51:50 +00:00
ceriel
79cb35ec4f Added SLI reduce 1991-02-19 16:45:57 +00:00
ceriel
e0be1dfe3a Added byacc and flex to .distr 1991-02-19 16:39:36 +00:00
ceriel
8de1b855ab delinted 1991-02-19 16:25:21 +00:00
ceriel
c863c96023 Made use of C_insertpart dependant on compile-time flag 1991-02-19 16:22:41 +00:00
ceriel
c59e581ef2 Delinted a bit 1991-02-19 15:28:48 +00:00
ceriel
9a294d4821 Changed name of include file 1991-02-19 13:53:04 +00:00
ceriel
b5c5f09b16 moved some static declarations that were illegal ANSI C 1991-02-19 12:44:38 +00:00
ceriel
07092a19ca prevent sign-extension in unpack when needed 1991-02-19 12:41:27 +00:00
ceriel
d16c25fc80 prevent sign-extension in unpack when needed 1991-02-19 12:13:08 +00:00
ceriel
c40ca6ebbd Made ability for -g dependant on compile-time flag 1991-02-18 17:18:36 +00:00
ceriel
b4f4a87846 Corrected -g option 1991-02-18 17:15:11 +00:00
ceriel
24dd6b4cb5 Fixed problem with multiple TOKSEP's 1991-02-18 15:50:39 +00:00
ceriel
797441009d prevent multiple occurrences of TOKSEP in replace.c 1991-02-18 15:25:11 +00:00
ceriel
59fe948f83 Delinted some more 1991-02-18 12:05:06 +00:00
ceriel
3660ea15c5 One less significant digit: 20 was too much 1991-02-18 11:43:44 +00:00
ceriel
cf0cd51810 Delinted somewhat (did not work on 2/2 machines) 1991-02-18 11:11:04 +00:00
ceriel
af7686cd66 delinted 1991-02-18 10:58:49 +00:00
ceriel
720d775582 made D_ definitions a long and made symbol table generation conditional 1991-02-15 18:00:26 +00:00
ceriel
612217f906 Removed some incorrect STATIC's 1991-02-15 14:54:53 +00:00
ceriel
9595dda6b5 Fixed: contained construction that was illegal for ANSI C 1991-02-15 14:21:41 +00:00
ceriel
3e0c73690c Removed switches on longs (portability) and added packed subranges 1991-02-14 18:15:22 +00:00
ceriel
1ed0f8180f hash() now returns same value on 2-byte and 4-byte machines 1991-02-04 14:25:58 +00:00
ceriel
ac966f41eb Added end library and floating point processor support 1991-02-01 15:38:19 +00:00
ceriel
14ce396d6f fixed CFI problem 1991-02-01 15:33:41 +00:00
ceriel
0f4e675b50 Added end library and floating point processor support 1991-02-01 15:09:58 +00:00
ceriel
e64fb88a5d Added support for floating point processor 1991-02-01 12:51:48 +00:00
ceriel
4a03769a47 Added mktemp.c 1991-02-01 10:31:03 +00:00
ceriel
977d93dc67 reduce memory usage (again) 1991-02-01 10:21:39 +00:00
ceriel
0539581d5d Generate less stupid conversions 1991-02-01 09:54:21 +00:00
ceriel
2c3dcb0547 modified hash function to deliver same value on 2 byte and 4 byte machines 1991-01-31 15:17:54 +00:00
ceriel
ae5dded36f simplified 'tes' mechanism 1991-01-31 15:17:04 +00:00
ceriel
2a852dcff1 Added fdopen() 1991-01-30 16:26:06 +00:00
ceriel
0cd1cfd249 fixed 'times' systemcall interface 1991-01-30 16:10:13 +00:00
ceriel
e48822da7b Improved identifier string allocation mechanism 1991-01-30 11:25:25 +00:00
ceriel
48e0d9825a fixed problem with qsort(): did not work for objects whose size did not
fit in an int
1991-01-29 14:37:37 +00:00
ceriel
ff766530eb hide some VAX-ce specific names 1991-01-22 13:28:21 +00:00
ceriel
2094dcecfe assembling of (xxx,a6) addressing mode was wrong for large values of xxx 1991-01-22 12:43:40 +00:00
ceriel
c70195a81e assembling of (xxx,a6) addressing mode was wrong for large values of xxx 1991-01-22 12:01:25 +00:00
ceriel
8eff53f8ea Upgraded to Berkeley's version 1.8 1991-01-22 10:58:49 +00:00
ceriel
530ce78c37 now has own C library 1991-01-18 11:06:30 +00:00
ceriel
1bdb0a8d96 Added libcc 1991-01-18 11:04:30 +00:00
ceriel
3e4a2c3dbc Added files 1991-01-18 11:03:05 +00:00
ceriel
8322e2d5d3 Made to work if BYTES_REVERSED and/or WORDS_REVERSED are not defined 1991-01-18 09:54:56 +00:00
ceriel
36e47ad79b yytext is an array in lex, but a char * in flex 1991-01-18 09:43:04 +00:00
ceriel
81e80b2cd8 Changed implementation of dependency generator 1991-01-17 17:49:27 +00:00
ceriel
57f2827832 Modified manual page so that STDOUT and STDERR are mentioned 1991-01-17 13:24:28 +00:00
ceriel
bda14dbba1 Added code expander to Action file 1991-01-17 11:59:25 +00:00
ceriel
29b2e6e3d4 initial version 1991-01-16 16:07:50 +00:00
ceriel
e7b7aa3944 simplified compile time floating point somewhat 1991-01-15 18:21:16 +00:00
ceriel
0267340564 in SkipToNewLine(), check for TOKSEP; fixed problem with volatile 1991-01-15 12:00:24 +00:00
ceriel
3ddb8e24b7 wctomb() now also returns 1 on 0-char 1991-01-15 11:55:33 +00:00
ceriel
9e970befed in SkipToNewLine(), check for TOKSEP 1991-01-15 11:51:40 +00:00
ceriel
abb28f949a Corrected some patterns 1991-01-14 17:13:58 +00:00
ceriel
4b40bae467 made acceptable for flex (no yyless() callable from other source file) 1991-01-11 14:36:37 +00:00
ceriel
6acdb3e358 Made acceptable for flex (no yylineno, no yymorfl) 1991-01-11 14:35:14 +00:00
ceriel
818d2f10cf Made acceptable for flex (no yylineno) 1991-01-11 14:32:43 +00:00
ceriel
efa476b5b3 Made acceptable for flex 1991-01-11 14:28:59 +00:00
ceriel
0b26bdf5fb Some changes in search for more efficiency 1991-01-11 14:20:59 +00:00
ceriel
d9815cadcd fixed bug with APPEND in sys_open() 1991-01-11 13:19:36 +00:00
ceriel
224ac1b8ff Some more optim (?) 1991-01-11 10:54:03 +00:00
ceriel
f572b1fb35 some changes that may make ncg a tiny bit less inefficient 1991-01-10 18:39:36 +00:00
dick
32eddf7846 undo modifications outside #ifdef LINT 1991-01-10 17:49:19 +00:00
ceriel
5aa72b23cf corrected small ommission 1991-01-10 13:57:29 +00:00
ceriel
c26441aa64 Added Berkeley Yacc sources 1991-01-10 11:19:59 +00:00
dick
4a7ef15df2 more additions for lint 1991-01-07 12:33:38 +00:00
ceriel
55bf2e9bc1 Changed installation mechanism of LLgen 1991-01-04 15:08:28 +00:00
ceriel
27459757db Changed installation mechanism 1991-01-04 15:01:59 +00:00
ceriel
38d1831dd7 Fixed error in clearerr 1991-01-03 16:08:31 +00:00
ceriel
ac8168088c clearerr is now also a macro 1991-01-03 14:31:16 +00:00
ceriel
c4c7787acc clearerr is now also a macro 1991-01-03 14:23:54 +00:00
ceriel
589f3a3e35 Check for garbage in #pragma and #include 1991-01-03 13:50:57 +00:00
ceriel
72fcc53c49 Check for garbage after #include 1991-01-03 13:45:22 +00:00
ceriel
d7b6541a62 order of fields in struct was changed; PLEASE DICK, DO NOT DO THAT! 1990-12-19 17:32:04 +00:00
eck
4ac18c8ab4 added information about top element size computation 1990-12-19 17:07:10 +00:00
ceriel
3ae67d0d67 some fixes 1990-12-19 12:59:36 +00:00
ceriel
974463cbd4 Fixed stat interface 1990-12-19 12:42:21 +00:00
ceriel
3764bf860b Adapted for debugger 1990-12-19 11:54:55 +00:00
ceriel
9ddcfc5b96 Adapted READ_ME file to current situation 1990-12-19 11:52:37 +00:00
ceriel
5926babe03 fixed byte order in 'desc' field 1990-12-19 11:23:25 +00:00
ceriel
6cc07a7651 Changed LS/PS, ported to DEC VAX 1990-12-19 11:17:06 +00:00
ceriel
c747f1c1c0 simplified options.c 1990-12-19 11:07:15 +00:00
ceriel
f72cc607a1 Correct byte order of 'desc' field 1990-12-19 10:26:39 +00:00
ceriel
631f40cb1a Regenerated dependencies 1990-12-18 14:29:04 +00:00
ceriel
335377da7a changed lint flags, use ms_ego, changed allocation strategy for loops 1990-12-18 11:14:34 +00:00
ceriel
41ca723d96 corrected register save cost counts 1990-12-18 11:13:03 +00:00
ceriel
8b397ebf05 Moved some macros to ../share, changed lint flags 1990-12-17 16:48:31 +00:00
ceriel
5dee3d1b26 Changed lint flags 1990-12-17 16:35:26 +00:00
ceriel
1139272435 Changed types in core allocation routines, changed lint flags 1990-12-17 14:55:03 +00:00
eck
e37c249248 added casts of pointer difference to integer 1990-12-17 14:22:41 +00:00
ceriel
ab62dda2fc Added -t flag to keep temporaries around 1990-12-17 14:22:09 +00:00
ceriel
4e4d3290d4 use ms_ego, changed lint flags 1990-12-17 14:11:13 +00:00
ceriel
a836599f53 removed unused macros, changed lint flags 1990-12-17 13:53:44 +00:00
ceriel
b3ff76d859 Changed lint flags 1990-12-17 13:52:53 +00:00
ceriel
8b63334d30 fixed problem with multiple definitions going by undetected 1990-12-17 13:19:31 +00:00
ceriel
2fbdc5447a Changed types in core allocation routines, changed lint flags 1990-12-17 13:15:03 +00:00
ceriel
5e0ec19a91 Changed lint flags 1990-12-17 13:11:13 +00:00
ceriel
50c8fe71c3 changed lint flags, changed macro name, deleted unused macro 1990-12-17 13:09:57 +00:00
eck
ccc5f10fca fixed bugs with storage-class and void in prototype 1990-12-17 13:08:05 +00:00
ceriel
79444acd83 Changed lint flags 1990-12-17 13:05:24 +00:00
ceriel
4fbd256d14 print some info in comment in tables.c 1990-12-17 12:52:41 +00:00
ceriel
41dc11e497 Fixed problem with cost computation, added some assertions and
added some more precise debugging printing
1990-12-17 10:02:52 +00:00
eck
0ad960a9b0 set _IOMYBUF in setvbuf() when necessary 1990-12-14 14:47:26 +00:00
dick
0cc8f53eec added dummy definition of C_ms_err 1990-12-14 14:42:20 +00:00
ceriel
6390348994 Changed print format 1990-12-14 13:57:46 +00:00
eck
916b9e94e9 aligment (yet again) 1990-12-13 14:03:31 +00:00
eck
73231e630b added error message because of declaration problems 1990-12-13 09:14:54 +00:00
eck
530e1a3b6d fixed error for m68k2 1990-12-13 08:31:44 +00:00
eck
cb6ca0cf40 fixed nasty bug with sets that were used in kill-parts 1990-12-12 17:17:04 +00:00
ceriel
51ad0941cb regenerated dependencies 1990-12-11 14:09:02 +00:00
ceriel
64f8785d20 Added Pascal support 1990-12-11 13:53:01 +00:00
ceriel
f997bd0be8 Added debugger support 1990-12-11 13:52:08 +00:00
ceriel
b3287b2b0f Some fixes: delinted and fixed alignment bug (bloody sizeof strikes again) 1990-12-11 11:10:46 +00:00
ceriel
159d8ec57d Fixed for OUTSEEK (by C. Verstoep) 1990-12-11 10:38:22 +00:00
eck
007151ef1d improved error-handling on conditionally excluded #-lines 1990-12-10 11:17:34 +00:00
dick
495a037714 lint update (merge from C compiler) 1990-12-07 14:42:26 +00:00
ceriel
d9be4de96a Fixed RMU 4 1990-12-07 11:25:45 +00:00
dick
65bf3591a7 adapted to integration into cemcom.ansi 1990-12-06 14:56:42 +00:00
ceriel
c5c6267b1d fixed possible non-sign-extension problem 1990-12-06 11:34:50 +00:00
ceriel
24a8b613ae Added test program 1990-12-04 16:40:21 +00:00
eck
df975bc075 fixed typo 1990-12-04 12:52:41 +00:00
ceriel
2dbe465c0d Fixed for Ultrix: pass SUF 1990-12-04 11:42:25 +00:00
ceriel
8468609eda improved for numbers that can be represented exactly 1990-12-04 11:33:01 +00:00
eck
0b35c31e5b fixed bug with function returning pointer to function 1990-12-04 11:09:34 +00:00
ceriel
456ba2b03c Fixed: some moves were wrong 1990-12-03 16:01:51 +00:00
ceriel
17af2902eb Fixed con_float for non-IEEE machines 1990-12-03 16:00:53 +00:00
eck
4c99b235ed oops: forgot to update LIST 1990-12-03 14:21:21 +00:00
ceriel
8a81dbe6fb leave SIGFPE alone 1990-12-03 14:14:48 +00:00
eck
36861e70ac added isatty.c: it is reasonably standard on UNIX systems 1990-12-03 14:13:31 +00:00
ceriel
b3deddfaf3 also handle SIGFPE; runtime start-off should leave it alone 1990-12-03 13:54:36 +00:00
eck
2661a6085a oops, do set errno in ldexp() (blanket rules) 1990-12-03 13:09:27 +00:00
ceriel
cfd0a9b894 NOP now does not call .nop anymore 1990-12-03 09:36:56 +00:00
ceriel
b76ff7451c some more improvement to CUF 1990-11-30 15:58:33 +00:00
ceriel
70dafd79e9 fixed problem with CUF 1990-11-30 14:35:51 +00:00
ceriel
83b663388c fixed bug with auto-increments and -decrements 1990-11-30 14:34:04 +00:00
ceriel
df77506e1f Some modifications to reduce the number of terminals (for Ultrix) 1990-11-30 09:42:49 +00:00
ceriel
8f661ca8a9 corrected spelling error 1990-11-29 18:05:41 +00:00
ceriel
ff60fa58c3 Added _syscall.s and _sigvec.c 1990-11-29 16:13:49 +00:00
ceriel
45b18b4fc9 Added _sigsetmask.s 1990-11-29 16:04:04 +00:00
ceriel
91ee73faa3 made Makefile more portable 1990-11-27 16:51:58 +00:00
ceriel
ae8ca35563 made Makefile more portable 1990-11-27 16:41:13 +00:00
ceriel
2a6b538c9b Corrected error messages 1990-11-27 09:39:52 +00:00
eck
04480b1db9 added protection against #define of _POSIX_SOURCE 1990-11-22 13:59:54 +00:00
ceriel
713521e0f5 make cmp entry was wrong 1990-11-22 13:48:08 +00:00
ceriel
46f1738ad4 Added -ansi flag 1990-11-22 13:18:47 +00:00
ceriel
aaa75da7da Changed INCLUDES 1990-11-22 13:16:54 +00:00
ceriel
b9e242674e Changed INCLUDES and deleted be description 1990-11-22 13:09:46 +00:00
ceriel
da39a8e59f Changed INCLUDES 1990-11-22 13:09:04 +00:00
ceriel
6dbb3945ff Some more amake simplifications 1990-11-22 12:56:23 +00:00
ceriel
32598a47a2 Also update WorkingDir on line directives 1990-11-22 12:02:00 +00:00
ceriel
2299e83685 Wrong version committed 1990-11-22 11:48:08 +00:00
ceriel
6545b68874 Also update WorkingDir on line directives 1990-11-22 11:25:34 +00:00
ceriel
b2bee3043a Did not handle RETURN's in module bodies right 1990-11-22 09:49:37 +00:00
ceriel
d99b166621 Added -ansi flag for ANSI C compiler 1990-11-21 16:51:49 +00:00
ceriel
d4c2c7ca2c Simplified Amakefile 1990-11-20 13:02:27 +00:00
dick
d443d61b09 improved error messages 1990-11-19 14:14:12 +00:00
ceriel
fb143bcdb5 Some corrections and simplifications 1990-11-16 16:31:40 +00:00
ceriel
449a757841 Added Johan's changes (nothing significant) 1990-11-16 16:01:04 +00:00
ceriel
99bfba6a45 Added Johan's changes 1990-11-16 15:58:36 +00:00
ceriel
8ffaf72dfa Some corrections 1990-11-16 09:58:33 +00:00
ceriel
715dd4ef0f don't allow empty format string 1990-11-15 17:00:39 +00:00
ceriel
a06482bb41 Forgot to add ARPLOP to mach2.c 1990-11-15 16:18:33 +00:00
ceriel
2f82d25400 Added arpl instruction 1990-11-15 15:02:49 +00:00
ceriel
b1cb54a2b9 Added some (short) casts, because valu_t is a long 1990-11-15 12:10:13 +00:00
ceriel
9ef7e00974 Replaced a .data4 by two .data2's: .data4 not guaranteed to work with big numbers 1990-11-15 11:53:22 +00:00
ceriel
994b1319ca Some corrections 1990-11-15 10:43:25 +00:00
ceriel
da44a4c705 Added a default for WRD_FMT 1990-11-15 10:27:15 +00:00
ceriel
ca5df8b32b Only produce #define for WRD_FMT when FORMAT is used 1990-11-15 10:26:40 +00:00
ceriel
a618b9a759 also remove barrier.so 1990-11-13 17:38:50 +00:00
ceriel
ba69e4279d Added support for DBX; Unfortunately, DBX still does not like it; GDB does 1990-11-13 17:00:51 +00:00
eck
7536a1f510 fixed two preprocessing bugs 1990-11-13 16:50:55 +00:00
ceriel
c7fc857c2d Compile fptrp.e with EMFLAGS 1990-11-13 15:39:11 +00:00
ceriel
dc345354ee Adapted for size of ARM table 1990-11-13 15:04:47 +00:00
ceriel
c9b9a9b2c0 Some simplifications 1990-11-13 14:52:51 +00:00
ceriel
0444eaa77c Albert Koelmans newest version, with adaptions 1990-11-13 13:54:10 +00:00
ceriel
52cbbb11e0 Additions from Albert Koelmans 1990-11-13 13:36:15 +00:00
ceriel
0a2ee14396 Adapted for use with improved fp package 1990-11-13 13:21:21 +00:00
ceriel
b7a61761f3 Albert Koelmans newest version, adapted for use with improved fp package 1990-11-13 13:10:45 +00:00
ceriel
321a62a192 Albert Koelmans newest version 1990-11-13 12:53:53 +00:00
ceriel
c5b98176f6 Albert Koelmans newest version 1990-11-13 12:05:13 +00:00
ceriel
f950727c44 Albert Koelmans newest version 1990-11-13 11:59:29 +00:00
ceriel
c3d7275ae8 Albert Koelmans newest version 1990-11-13 11:53:52 +00:00
ceriel
ff117d9f0b Albert Koelmans newest version 1990-11-13 11:46:48 +00:00
ceriel
03a25ece8a don't move ms_ego's 1990-11-13 11:26:04 +00:00
eck
0c8acbf834 vsprintf() sets _IOWRITING flag 1990-11-13 10:56:53 +00:00
ceriel
be2264283f Some corrections 1990-11-13 10:51:02 +00:00
eck
cc04440b5c added patterns 1990-11-13 10:03:55 +00:00
ceriel
ad800075eb Albert Koelmans latest version 1990-11-12 17:13:45 +00:00
ceriel
0a1b11973a Albert Koelmans newest version 1990-11-12 17:09:15 +00:00
ceriel
064258aa8b New version from Albert Koelmans 1990-11-12 15:41:50 +00:00
ceriel
1f7c2d1f39 Latest version from Albert Koelmans 1990-11-12 15:36:03 +00:00
ceriel
33dc73d4c4 Latest version from Albert Koelmans 1990-11-12 15:29:14 +00:00
eck
8a00e32bc8 fixed type of sizeof (decreases size!)
fixed bug with typedef of function with block scope
1990-11-12 15:28:44 +00:00
ceriel
96d5009bef speeded up std_alloc() 1990-11-12 13:56:38 +00:00
ceriel
b089e0d7f8 many changes, delinted 1990-11-12 13:46:31 +00:00
eck
57b1d9824a fixed bugs with sizeof() and unnormalized values 1990-11-09 16:26:15 +00:00
eck
899df7bc78 never set errno in ldexp() 1990-11-09 16:20:49 +00:00
eck
8357c43aee corrected type of *_EPSILON values 1990-11-08 12:01:52 +00:00
ceriel
354b624cb4 updated manual page 1990-11-07 15:25:24 +00:00
eck
e6fd25052a handle 'asp -x' correctly, instead of giving up 1990-11-06 13:22:15 +00:00
ceriel
f0fe57f807 Added Copyright notice 1990-11-06 13:16:57 +00:00
ceriel
7cea685c0e Added pc_math.h 1990-11-06 13:04:12 +00:00
ceriel
f192338596 Made compilable with ANSI C compiler 1990-11-06 13:02:55 +00:00
ceriel
87a8061e1c Many more changes 1990-11-06 12:23:41 +00:00
eck
b28f5a1824 prevent warning when #including setjmp.h 1990-11-06 10:49:12 +00:00
ceriel
925b8a76ed fixed bug with reading from standard input 1990-11-02 14:44:37 +00:00
ceriel
1136d63929 made compilable by the ACK ANSI C compiler 1990-11-02 14:29:02 +00:00
eck
d7c15759ee added warning about old-fashioned declarations
cleaned up error reporting
changed implicit declaration handling
1990-11-02 09:23:27 +00:00
eck
7de2babe56 fixed bug with reading from standard input 1990-11-01 11:09:09 +00:00
ceriel
9f01f909f6 Use make variable ACK 1990-11-01 09:42:51 +00:00
ceriel
2873c58731 Added debugger support 1990-11-01 09:42:03 +00:00
ceriel
ab1b54b56d Added sparc description, don't put constants in regs on M68020 1990-11-01 09:37:02 +00:00
ceriel
b314975f0f LIM puts a word-size object on stack 1990-11-01 09:36:47 +00:00
ceriel
1bab6dbcaf Several fixes 1990-11-01 09:33:51 +00:00
ceriel
1aef1c5921 Added high-speed clear loops and changed behaviour of Realloc 1990-11-01 09:32:21 +00:00
ceriel
8265d3f731 fixed picture and use soelim 1990-10-31 16:42:05 +00:00
ceriel
fd0c8ca52d Fixed bug in example program 1990-10-31 16:28:37 +00:00
ceriel
9aee9cb62f Fixed a few bugs 1990-10-31 15:56:51 +00:00
ceriel
162c1c81e9 Made communication protocol more machine-independant 1990-10-30 15:50:33 +00:00
eck
9df58e86ec removed a cast from offsetof() 1990-10-30 09:53:48 +00:00
eck
05ddeafbfd fixed labeldefs so that registers are killed
replaced 'cms <w>' bij 'cmi <w>'
1990-10-29 17:05:35 +00:00
ceriel
f78e573b69 fixed labeldefs so that registers are killed 1990-10-29 16:39:39 +00:00
eck
68f19d7335 changed offsetof(), so it will not generate a warning on 2-4 machines 1990-10-29 13:52:18 +00:00
ceriel
9da96274ae Added 'file ?' and shell escape, and some re-organization 1990-10-29 11:38:35 +00:00
ceriel
32f21c2bfa changed 'uses REG=%1' behaviour: if no REG containing %1 is found, an
attempt is made to find an empty one
1990-10-26 18:18:53 +00:00
eck
54cc752a9e fixed bugs with ext_[wl] arguments, changed reusage of registers 1990-10-26 16:52:43 +00:00
eck
aef60fdda1 initialize sp_occurred[SP_SETJMP] at start of function 1990-10-26 12:38:06 +00:00
eck
17abf1a78a changed definition of jmp_buf (alignment problems) 1990-10-26 11:31:27 +00:00
ceriel
16e89fea1f protect against multiple inclusions, commented text after #endif 1990-10-25 11:18:44 +00:00
eck
da36c2b13f deleted toupper and tolower macros: they were wrong 1990-10-24 17:24:12 +00:00
eck
e701e2e2ec added to*() routines: a macro is impossible 1990-10-24 17:19:50 +00:00
ceriel
a94e7b877a corrected subrange handling: char type was not recognized 1990-10-24 16:46:46 +00:00
eck
32da1c8c1e made a function-call of HUGE_VAL 1990-10-24 14:31:50 +00:00
eck
ba0cc3a57d fixed small bug (void expr. cast to void), squeezing for MINIX 1990-10-23 14:13:10 +00:00
eck
b4f97588b7 fixed bug with undefined structs
ceriel changed debugging information
1990-10-19 11:50:32 +00:00
eck
c3f305bea1 fixed bug with undefined structs
ceriel changed debugging information
1990-10-19 11:21:43 +00:00
ceriel
7e58923415 more fixes 1990-10-17 17:00:03 +00:00
eck
c33f7cbe76 changed homefromsubdir a little 1990-10-16 10:07:12 +00:00
ceriel
7be2815cbc fix to fit? macros 1990-10-15 13:59:55 +00:00
eck
9bdf648402 added #include of <sys/types.h> to sigmisc.c 1990-10-15 11:23:08 +00:00
eck
1105a33fe3 added table for time-zone determination 1990-10-12 14:48:55 +00:00
ceriel
3672f835fe Too many changes and fixes to mention them all here 1990-10-11 08:42:07 +00:00
ceriel
7f8a099a15 Fixed problem with global names used for statics as well as externs 1990-10-08 11:44:15 +00:00
ceriel
06e6c8638f fix: addr_t must be long 1990-10-05 16:31:55 +00:00
ceriel
5ba9685e76 de-linted somewhat 1990-10-02 17:19:17 +00:00
ceriel
4483f237f6 de-linted somewhat 1990-10-02 17:13:40 +00:00
eck
67ef9905e6 made implementation defined behaviour (POSIX) more explicit 1990-10-02 09:59:30 +00:00
eck
6f6dff3461 forgot to add homefromsubdir to .distr 1990-10-01 17:12:54 +00:00
ceriel
8de3973836 Pass -g to cemcom 1990-10-01 15:42:10 +00:00
ceriel
41e3cf403b Added support for debugger, de-linted somewhat 1990-10-01 15:28:28 +00:00
ceriel
eb1326e3ec some more changes and fixes 1990-10-01 11:44:27 +00:00
eck
14133b5e2f added _sigvec.s and changed call of sigvec() in signal.c 1990-09-28 17:13:40 +00:00
ceriel
7fbfa4360c Added _sigvec and _syscall 1990-09-28 17:12:33 +00:00
eck
e91e983728 changed _end to __end because of namespace pollution 1990-09-28 15:35:16 +00:00
eck
30922a239d changed some names because of namespace pollution 1990-09-28 15:19:06 +00:00
eck
fc6247ca5e removed some names from tokenname.c 1990-09-28 14:03:15 +00:00
eck
63e1c0e44a changed some names because of namespace pollution 1990-09-28 13:47:47 +00:00
eck
4001fbb580 changed makefile, added homefromsubdir 1990-09-28 13:13:34 +00:00
eck
bb85ecc4f0 changed some names because of namespace pollution 1990-09-28 13:08:07 +00:00
eck
74edeea849 changed end_em to avoid namespace pollution 1990-09-28 09:47:50 +00:00
eck
cd8e8e5aef completed Makefile entries 1990-09-28 09:47:40 +00:00
eck
a50ec18466 some minor fixes 1990-09-28 09:29:51 +00:00
ceriel
ce71090da3 Fixed problem with -I option 1990-09-27 17:50:52 +00:00
ceriel
928c2dacc5 Fixed problem with -I option 1990-09-27 17:45:34 +00:00
ceriel
282d93dde0 Fixed problems with -I and with value conformant arrays 1990-09-27 17:01:01 +00:00
eck
03a65131fc forgot homefromsubdir in .distr 1990-09-27 16:56:10 +00:00
eck
c937359a4e oops, _envp should have been _penvp 1990-09-27 16:52:07 +00:00
ceriel
e1a20fe944 fixed bug in -I handling 1990-09-27 16:43:51 +00:00
eck
d7a034bc02 fixed bug with -I flag 1990-09-27 16:39:54 +00:00
eck
4581d9f266 forgot to update LIST 1990-09-27 16:38:32 +00:00
eck
851b82ee09 added head_ac 1990-09-27 16:37:22 +00:00
eck
7dff46d44e fixed bug with -I flag 1990-09-27 15:59:38 +00:00
eck
d296eed0c3 added head_ac.e 1990-09-27 15:49:13 +00:00
eck
56502994f4 changed end_em to library to avoid namespace pollution 1990-09-27 14:29:09 +00:00
eck
81ce150a96 changed environment handling to decrease namespace pollution 1990-09-27 13:40:08 +00:00
ceriel
a6d0f40fc8 Some more changes 1990-09-26 17:32:42 +00:00
eck
bc6df29be8 changed first arg of sscanf() to const char * 1990-09-26 13:19:19 +00:00
ceriel
1f408a38c2 Many more changes 1990-09-25 17:40:47 +00:00
ceriel
1ade1b814d Added patterns 1990-09-25 15:12:26 +00:00
ceriel
5efd4280ee Added patterns 1990-09-25 15:04:55 +00:00
ceriel
4c8596ee05 Fix: cmp.l A,A is not the same as tst.l A 1990-09-25 14:59:28 +00:00
eck
5eb4a8d88f oops, fix for ## operator was wrong 1990-09-25 13:46:59 +00:00
eck
7b00154c54 oops, previous fix was wrong for ## operator 1990-09-25 13:40:32 +00:00
ceriel
1011f9679e fixed typo 1990-09-24 15:22:36 +00:00
ceriel
f8de19a427 Some lay-out changes and always use value of LLuserhook 1990-09-24 13:35:28 +00:00
ceriel
096e8368c5 added manual page, some improvements 1990-09-21 16:58:20 +00:00
ceriel
e3bb56818b fix INS and INSB 1990-09-21 14:24:03 +00:00
eck
7488a2fbba added cv to .distr 1990-09-21 12:53:58 +00:00
eck
a480e8fa81 fixed typo 1990-09-21 09:27:04 +00:00
ceriel
fbcee49b7e Some new commands and improvements 1990-09-20 17:51:14 +00:00
eck
e3a247ad23 added em_mesX.h to .distr 1990-09-20 17:03:05 +00:00
ceriel
d800aaf11a Added .distr 1990-09-20 16:18:57 +00:00
ceriel
094c19f350 Added JC and JNC (aliases for JB and JNB) 1990-09-20 14:18:52 +00:00
eck
65f74f5c72 changed shc.[ch] to tes.[ch] in .distr 1990-09-19 15:14:07 +00:00
ceriel
1feeb94dbf many changes 1990-09-19 14:31:12 +00:00
eck
641a446f01 Added ANSI-C library 1990-09-18 15:02:27 +00:00
eck
6f1d9fbf70 forgot to update Action 1990-09-18 14:59:50 +00:00
eck
d1050c2382 improved makefile 1990-09-18 14:56:52 +00:00
eck
a0f46ee7a6 Initial revision 1990-09-18 14:42:32 +00:00
eck
5571e06719 added libcc.ansi to .distr 1990-09-18 14:37:29 +00:00
dick
0e90ae224a clean-up code generation suppression for lint 1990-09-18 14:29:42 +00:00
eck
a246152240 removed crash() call: it was wrong 1990-09-14 16:39:11 +00:00
eck
9eefd96eb1 deleted unnecessary label 1990-09-14 16:37:30 +00:00
ceriel
5f592dd6bd Added some C support 1990-09-14 14:37:26 +00:00
ceriel
4900ad0743 improved line number administration 1990-09-14 14:37:24 +00:00
eck
bd4bc1cad0 replaced some move's by move_i's 1990-09-14 14:30:07 +00:00
eck
707d811586 fixed error with # && ##-operators in non function-like macro's 1990-09-13 15:14:52 +00:00
eck
5ed44e3432 fixed error with # && ##-operators in non function-like macro's
pass printable garbage characters on to parser
1990-09-13 15:12:13 +00:00
ceriel
49fd9f9377 'x(x) int x; { }' was not accepted 1990-09-12 17:32:31 +00:00
ceriel
11d8919d76 Fix: the type INTEGER[0..255] was put in one byte 1990-09-12 17:09:57 +00:00
eck
e144c7cc4c fixed bugs with prototype scopes 1990-09-12 16:36:16 +00:00
ceriel
bd18f6c521 many changes 1990-09-12 16:13:59 +00:00
eck
74f3d91777 added #if because rename() is also in POSIX 1990-09-11 10:26:42 +00:00
eck
1dd88ae8da changed int-functions to void-functions 1990-09-11 10:24:15 +00:00
eck
0d8a8bae5f removed assumption that time_t is an unsigned type 1990-09-11 10:18:51 +00:00
eck
f0581f7706 fixed small bug with token separation 1990-09-10 11:57:16 +00:00
ceriel
24920dfa75 recognize expressions 1990-09-07 14:56:24 +00:00
eck
2c9fbebe4e strod() & _str_ext_cvt() made more strictly conforming 1990-09-07 11:00:24 +00:00
eck
33c9811ba9 sometimes swap operands in expressions with side-effects 1990-09-06 14:49:52 +00:00
eck
2f0275ba3c added some optimalizations 1990-09-06 11:32:51 +00:00
eck
9915ed4bc2 stupid error fixed: tes shouldn't have worked 1990-09-06 08:59:02 +00:00
ceriel
4a4153bb8b Added Xcv.c 1990-09-05 11:54:11 +00:00
eck
6dc5c01551 added top element size computation information 1990-09-05 09:29:05 +00:00
eck
5c85d84228 changed stackheight computation to top element size computation
changed some parameters
1990-09-04 17:19:04 +00:00
eck
5badcb4296 changed stackheight computation to top element size computation 1990-09-04 17:16:00 +00:00
eck
ee652e6908 changed stacheight to topeltsize 1990-09-04 17:13:37 +00:00
eck
dace3435ec changed stacheight computation to top element size computation 1990-09-04 16:56:39 +00:00
eck
58355b7041 changed stackheight computation to top element size computation 1990-09-04 16:42:43 +00:00
ceriel
3ea64975af distribute makefile.std, not makefile 1990-09-04 11:47:50 +00:00
eck
b2efe2299f fixed bug in qualifier_type() 1990-09-04 10:48:04 +00:00
eck
02ea4988d1 fixed problems with declaration syntax 1990-09-03 13:46:30 +00:00
ceriel
2f83a7e3d9 fix: also kill condition codes if they are set to a register that is to be killed 1990-09-03 11:12:44 +00:00
ceriel
67f0419dc3 Additions for debugger information 1990-09-03 11:07:22 +00:00
ceriel
b2ca3783c4 keep the names .csa and .csb for backwards compatibility 1990-09-03 10:25:57 +00:00
ceriel
dbf9a060c2 Initial version 1990-08-31 18:22:53 +00:00
eck
f614fc6dc3 fixed two little bugs 1990-08-31 10:27:12 +00:00
ceriel
1cb247fa39 only deal with signals that are not ignored 1990-08-29 11:44:33 +00:00
eck
bee5d97eac fixed some bugs in new pattern 1990-08-28 15:01:17 +00:00
eck
5fcee85f88 removed test because of moon3 1990-08-28 14:53:34 +00:00
eck
391874ecb2 merged vax and pdp #defines in float.h 1990-08-28 14:52:52 +00:00
eck
4ab420fb0f fixed qsort() for 0 elements 1990-08-28 14:03:24 +00:00
eck
bc83231874 changed pow() a little 1990-08-28 13:59:36 +00:00
eck
a41c51783a improved the speed somewhat
fixed bug with negative chars in comparisons
1990-08-28 13:54:46 +00:00
eck
cd1f6c38a4 fixed freopen() bug by deleting some code 1990-08-28 13:44:48 +00:00
eck
bc137646df fixed types because of the 2-4 version 1990-08-24 17:05:53 +00:00
eck
dc500c3463 fixed some strange constructions 1990-08-24 16:20:57 +00:00
ceriel
8401d7b9ec Did not handle quotes in C comments right 1990-08-23 15:53:13 +00:00
ceriel
97d1275cfe changed 'enter' into 'entry' (80286) 1990-08-23 09:30:56 +00:00
eck
0bf7d60080 several improvements + fixes 1990-08-22 16:26:21 +00:00
ceriel
2a26b4d335 avoid double LINs and corrected bug in symbol table entries for records 1990-08-22 15:33:43 +00:00
eck
ba475d78a2 added optional .w to OP_EA_D 1990-08-21 10:59:09 +00:00
eck
797f90a022 changed interface for cs[ab] 1990-08-21 10:17:49 +00:00
ceriel
3fb20f5201 made produced itemtab.h file more readable 1990-08-20 15:32:29 +00:00
ceriel
e2ce4995e6 Initial revision 1990-08-20 15:07:38 +00:00
ceriel
78681448e4 new table (merged with m68k2) 1990-08-20 15:00:15 +00:00
eck
b4a2b975a0 added m68k2 stuff, added patterns 1990-08-20 13:55:38 +00:00
eck
0f2f6da38f fixed several bugs with object sizes 1990-08-14 09:59:37 +00:00
ceriel
36b11dc296 improved REAL constant and string constant stab generation 1990-08-10 18:01:50 +00:00
ceriel
c7a5b07da7 fixed bug concerning back-slashes within strings 1990-08-10 17:57:32 +00:00
eck
535e64328a added _sigsetmask.s 1990-08-09 15:40:08 +00:00
eck
fd921229f2 added _sigsetmask.s 1990-08-09 15:29:51 +00:00
eck
7bee903886 changed sigsetmask to _sigsetmask 1990-08-09 15:27:13 +00:00
ceriel
4a34358b6a keep comments in actions; they may be significant (for lint) 1990-08-07 10:48:02 +00:00
eck
17158641e0 fixed error in .trp: it could generate a bus error 1990-08-03 16:16:28 +00:00
ceriel
257c868cc7 don't throw away pseudo's, even if they are not reachable 1990-08-02 16:01:21 +00:00
ceriel
116b6a00bc show some more of the name list entries 1990-08-02 15:58:10 +00:00
ceriel
b32921d7ed pass -g flag to Modula-2 compiler 1990-08-01 14:46:07 +00:00
ceriel
0c56d078ec bug fix: did not return soon enough 1990-08-01 14:41:18 +00:00
ceriel
05c205181b increase size of yytext buffer 1990-08-01 14:40:22 +00:00
ceriel
79ce5a13a0 only leave ms_std's if prodepth > 0 1990-08-01 14:36:45 +00:00
ceriel
5ca5b63151 some more changes for debugger support 1990-08-01 14:35:07 +00:00
ceriel
eb50492a1f #ifdeffed strange test 1990-08-01 14:34:53 +00:00
ceriel
f936a3f35a time optimization is default now 1990-08-01 14:33:08 +00:00
ceriel
e3120d2b5f minor change 1990-08-01 14:32:04 +00:00
ceriel
e0ff37aa6e support for long strings 1990-08-01 14:30:45 +00:00
ceriel
f4e1a15dfb Added support for debugger messages 1990-07-30 16:05:27 +00:00
ceriel
76fd4c3d7b fixed declaration of C_error 1990-07-30 16:03:15 +00:00
ceriel
8eecdff85a added support for debugger 1990-07-30 15:56:25 +00:00
ceriel
8206965ae9 changed a comment 1990-07-30 15:51:32 +00:00
ceriel
6d675af42c removed limit on string size 1990-07-30 15:40:08 +00:00
ceriel
05db577e01 some fixes 1990-07-30 14:52:58 +00:00
ceriel
09d156b96a several changes 1990-07-30 14:32:43 +00:00
ceriel
3c10a60011 vax4 uses own assembler now 1990-07-30 14:29:13 +00:00
ceriel
8cd417eeab modifications for debugger 1990-07-30 14:20:20 +00:00
ceriel
aae0eeca94 protect types.h against multiple inclusions 1990-07-30 14:17:30 +00:00
ceriel
f3209123e0 fixed: tail_mon is needed for languages 1990-07-30 14:10:35 +00:00
ceriel
1f0d138f31 clarified text somewhat 1990-07-30 12:46:12 +00:00
ceriel
5a0ad2a8bc fixed typo 1990-07-30 12:43:38 +00:00
ceriel
1168708cd0 Added support for S_CRS 1990-07-30 11:56:28 +00:00
ceriel
5c0938d05b Added some more support for debugger 1990-07-30 09:43:45 +00:00
eck
f321062250 fixed bug with state 1990-07-26 15:08:49 +00:00
ceriel
cef36d185e removed g-flag 1990-07-25 17:40:02 +00:00
ceriel
27b1d561b5 do not move ms_std message, added shc.c and shc.h to .distr 1990-07-25 17:10:40 +00:00
eck
313376cd36 improved -I handling 1990-07-25 13:00:40 +00:00
eck
c615803fa6 changed names of csa and csb to csa4 and csb4 1990-07-25 11:46:27 +00:00
eck
2807862aba #if X=3 caused infinite loop 1990-07-25 10:20:44 +00:00
eck
7ef2d1bc37 switch to text segment when generating a label 1990-07-20 14:02:35 +00:00
eck
47249aaad3 atw.h was wrong, since word_size may contain a cast 1990-07-20 10:30:49 +00:00
ceriel
cf28f45a59 improved conversion of extended to string 1990-07-20 09:39:43 +00:00
eck
b23125354b added patterns for stackheight mechanism 1990-07-19 17:22:56 +00:00
eck
43b01a70a0 squeezing for MINIX & bug fix in dumpidf 1990-07-19 17:16:36 +00:00
ceriel
eab3243973 dumped core on SIM instruction 1990-07-19 10:00:02 +00:00
eck
aca2c5f4b1 forgot pop_push.awk 1990-07-18 16:31:32 +00:00
eck
4ef2c70ed3 added stackheight message handling 1990-07-18 14:53:19 +00:00
eck
adfec1c0ef added #defines for stackheight computation 1990-07-18 14:42:37 +00:00
ceriel
3e27993361 prevent core dump when no args are given 1990-07-18 14:38:48 +00:00
eck
379511e232 added stackheight computation 1990-07-18 14:33:07 +00:00
ceriel
30824d6133 replaced call of non-existing Dvu to a call to Duv 1990-07-18 09:11:33 +00:00
ceriel
e2bc68a46b fix problem with variant tag and made double compatible with subranges 1990-07-17 13:57:01 +00:00
ceriel
109a357e95 Fix: DIV and MOD on negative args 1990-07-16 09:05:19 +00:00
eck
7f5abdd670 fixed int to unsigned conversions, declarations, pp-list initialization 1990-07-13 10:18:27 +00:00
ceriel
63fe4e0a18 Added patterns 1990-07-12 16:12:17 +00:00
eck
21f1ef5a6c fixed character count in doscan 1990-07-11 09:08:33 +00:00
ceriel
fbe4a79045 check result of array address calculation 1990-07-04 14:24:55 +00:00
ceriel
c6a11d1f62 rand() did not work on 2-byte machines 1990-06-30 20:02:45 +00:00
ceriel
5512f14697 use new con_float 1990-06-29 11:05:19 +00:00
ceriel
cabefb9d9e fixed -I option 1990-06-29 10:00:41 +00:00
ceriel
266d247470 fixed -I option 1990-06-28 18:06:16 +00:00
ceriel
56858bb480 bug fix: wrong procedure was called 1990-06-27 09:29:55 +00:00
ceriel
3ae582dfd7 Added some more patterns 1990-06-25 16:58:33 +00:00
ceriel
29b8ec04c5 Added strtol() 1990-06-25 15:59:16 +00:00
ceriel
736108572f produce commons, fix bug with mov-extend instructions 1990-06-25 15:48:49 +00:00
ceriel
b972fea237 produce commons for bss 1990-06-25 13:42:02 +00:00
ceriel
0105d98302 tp_unsigned is now a true boolean 1990-06-21 15:49:41 +00:00
ceriel
f218a430f6 int now uses intelligent calls 1990-06-21 13:17:50 +00:00
ceriel
4355b05597 Model 3 (Intelligent Calls) implemented (Remco Feenstra & Peter Boersma);
a few bugs fixed
1990-06-21 12:16:31 +00:00
ceriel
c7c79e9b42 Model 3 (intelligent calls) implemented 1990-06-21 12:11:50 +00:00
eck
472ee0cea4 always flush line-buffered output when filling an input buffer 1990-06-21 11:13:23 +00:00
ceriel
6c5c8c980e Added em_mesX.h which makes some C_ms_... unique in first 7 chars 1990-06-20 12:00:26 +00:00
ceriel
8444bc32fb Added debugger message routines 1990-06-20 11:59:57 +00:00
ceriel
bd82622a2e Added debugger messages 1990-06-20 11:58:38 +00:00
ceriel
39730420a2 Made to work with troff 1990-06-20 10:05:22 +00:00
ceriel
97e131bc81 Added bsbb and bsbw 1990-06-19 15:27:43 +00:00
ceriel
9de0c3d920 fixed optimizations that were wrong with indexed mode 1990-06-19 15:15:37 +00:00
eck
101a129256 fixed some typos 1990-06-19 11:29:20 +00:00
ceriel
bb1964e1d3 Updated for IEEE format 1990-06-15 16:50:08 +00:00
ceriel
d7b4e48972 correct M_MAX_D for old floating point format 1990-06-15 16:47:27 +00:00
ceriel
a8f5884144 cg no longer part of distribution 1990-06-14 16:52:04 +00:00
ceriel
ddd97f9328 Added new patterns 1990-06-14 16:45:33 +00:00
ceriel
45783a1e73 Added a SBS pattern for constant args 1990-06-13 09:59:11 +00:00
ceriel
3bcec93972 fix: #if instead of #ifdef 1990-06-12 11:22:49 +00:00
ceriel
a8d2505ba5 changed order so that it works without ranlib 1990-06-12 11:21:40 +00:00
ceriel
a28eb23f82 fix from Verstoep: free() was called twice on same arg 1990-06-12 10:07:00 +00:00
ceriel
39fee04619 fix previous fix 1990-06-11 15:17:50 +00:00
ceriel
f234f061a1 Added dependency generator, reduced size of type structure 1990-06-08 10:03:47 +00:00
ceriel
05d0caaaea do not generate line number/file name information by default for C 1990-06-06 17:04:46 +00:00
ceriel
020e6311fb use own version of assert (ASSERT) 1990-06-06 16:54:30 +00:00
ceriel
dd3d0777c7 dependencies 1990-06-06 16:23:47 +00:00
ceriel
aff5b89ac9 change flag -xs to -i, -xm to -m, dependencies 1990-06-06 16:10:19 +00:00
ceriel
27c1b37c21 change flag -xs to -i, -xm to -m 1990-06-06 16:01:03 +00:00
ceriel
280d7a79be change flag -s to -i 1990-06-06 16:00:28 +00:00
ceriel
4d7ba75469 removed useless #ifdef 1990-06-06 15:35:33 +00:00
ceriel
bf66a6ade1 Added dependency generator 1990-06-06 14:42:53 +00:00
ceriel
8d1bb88fc9 Added -A option, like -d 1990-06-06 14:37:03 +00:00
ceriel
bea95a4443 mktime() did not work for 2-byte machines 1990-06-05 12:07:28 +00:00
ceriel
6df0ecdf8f fixed typo 1990-06-05 09:50:28 +00:00
ceriel
3de1e669b2 optimized a bit 1990-05-31 18:33:38 +00:00
ceriel
e2b59f6517 Removed some erroneous fclose() calls 1990-05-31 13:54:33 +00:00
ceriel
9eaa440fab removed DEBUG #define 1990-05-31 13:33:31 +00:00
ceriel
82b0ef795d fix: IL sometimes removed procedures that could be called indirectly 1990-05-30 11:31:32 +00:00
ceriel
ab0d3bf876 Added EM_vars.c 1990-05-23 09:24:55 +00:00
ceriel
adb704aad4 make GMT the default 1990-05-22 14:42:28 +00:00
ceriel
59dd7cdfeb fix to fix 1990-05-22 12:22:25 +00:00
ceriel
ef69de1614 atol and atoi get old-fashioned behaviour 1990-05-22 10:48:12 +00:00
ceriel
24c9be9777 Use fputs instead of printf in perror.c 1990-05-21 10:20:15 +00:00
ceriel
da8f9124ff compares with 0 were wrong 1990-05-18 13:22:13 +00:00
ceriel
c336bc86b1 made size of yylex bigger 1990-05-18 11:04:53 +00:00
ceriel
a4e5e4eeaa Added a pattern 1990-05-18 10:47:12 +00:00
ceriel
c4dabcd9a4 unsigned but-fields were sometimes sign-extended when converted to int 1990-05-18 10:29:57 +00:00
ceriel
74147d2b4a ignore NOP 1990-05-17 19:40:15 +00:00
ceriel
9dacc57b3a C_out uses EM_bsssize etc. instead of C_bsssize etc. 1990-05-16 18:05:55 +00:00
ceriel
afae382803 removed references to C_bssinit etc. 1990-05-16 18:03:50 +00:00
ceriel
aa20369a56 removed pc_size.h 1990-05-16 10:56:45 +00:00
ceriel
0c6f2f490f the tp_sdef field of the type structure may only be used after checking tp_fund 1990-05-15 15:28:01 +00:00
ceriel
9570000674 an = was temporarily set to 0, but not reset 1990-05-14 12:30:18 +00:00
eck
27718f5d6d error with cast to unsigned long 1990-05-11 15:22:19 +00:00
ceriel
e9d214e977 check -m option 1990-05-11 13:11:12 +00:00
ceriel
c64733ae6f fix in sscanf: _count field was wrong 1990-05-09 13:31:36 +00:00
ceriel
b04388a326 fixed some patterns: operand could have side effects 1990-05-08 09:03:28 +00:00
eck
a1e2a583b5 fixed bug with double definition 1990-05-03 16:18:22 +00:00
eck
51467658c6 scan with %p didn't work properly on 2-4 machines 1990-05-03 10:50:23 +00:00
eck
7987a1fed8 cast ptrdiff_t to int for ANSI 1990-04-25 15:10:13 +00:00
eck
dc12b2fa3d warn about ptrdiff_t passed as long on 2-4 machines 1990-04-25 15:09:51 +00:00
ceriel
f2b4713c24 cast ptrdiff_t to int for ANSI 1990-04-25 14:23:05 +00:00
ceriel
8fe53f501f avoid a crash in directives 1990-04-24 14:07:07 +00:00
eck
536b12010f garbage is allowed in the fdopen mode string 1990-04-24 09:40:47 +00:00
eck
470bb82342 garbage is allowed in the f[re]open mode string 1990-04-24 09:30:15 +00:00
ceriel
6ab26e5cdc avoid null references on illegal input 1990-04-23 16:11:37 +00:00
eck
da806afa6b some more corrections 1990-04-23 13:48:43 +00:00
ceriel
dbd1744edc Use C_out instead if EM_mkcalls 1990-04-23 13:43:05 +00:00
ceriel
ed81d83f4c use .limhp 1990-04-23 13:39:26 +00:00
ceriel
f95fae24fc moved a coercion 1990-04-23 13:38:19 +00:00
ceriel
2b488e1021 INS instruction fix 1990-04-23 13:33:26 +00:00
eck
81b7f67cb4 result of sizeof() is 'unsigned int' (for backward compatibility) 1990-04-23 13:33:07 +00:00
eck
86188fb772 size_t is 'unsigned int' (for backward compatibility) 1990-04-23 13:26:09 +00:00
ceriel
fb25b628d6 yet another bug fix in instructions handling special registers 1990-04-23 12:35:41 +00:00
eck
564bb0b81c changed remark about predefined identifiers 1990-04-19 16:04:58 +00:00
eck
64e9d11570 the -U option did not work properly; call do_undef() now 1990-04-18 16:40:17 +00:00
eck
52f08181a6 two -D options for one identifier didn't work 1990-04-18 13:09:36 +00:00
eck
b44938412e two -D options for one identifier didn't work 1990-04-18 13:03:05 +00:00
eck
e625c3bdb8 added wait-statements for floating-point library 1990-04-17 13:57:23 +00:00
eck
010ada1c23 added a.out.h for the cv program 1990-04-12 17:03:31 +00:00
eck
90963fd585 added csa4 and csb4 1990-04-12 11:35:10 +00:00
eck
f1351720e5 added csa4 and csb4 1990-04-12 11:29:49 +00:00
eck
031b9dfee2 added warning for nested comment 1990-04-10 10:52:52 +00:00
eck
a3f1aaa41f don't free prototype lists, they might be part of a typedef 1990-04-10 10:14:46 +00:00
eck
dd5ef3905f timezone info should not end up in rom 1990-04-09 17:03:58 +00:00
eck
8c9149b058 changed over/underflow for exp() 1990-04-09 16:54:09 +00:00
eck
a3bd2c6734 file creation on f[re]open() was still wrong 1990-04-09 15:55:51 +00:00
eck
09a4136272 deleted _tname from __iobuf structure 1990-04-09 15:38:02 +00:00
eck
d2516d4eaf improved file creation on f[re]open() 1990-04-09 15:21:43 +00:00
eck
aa4de95f26 various bug fixes & improvements 1990-04-06 15:37:16 +00:00
eck
6e685b9fcc definition of ptrdiff_t was wrong 1990-04-04 16:21:34 +00:00
eck
d87444a7fb improved _doscan(); fflush() doesn't call fseek() anymore 1990-04-04 15:52:01 +00:00
eck
ad7e46a324 code for '*(ip = iarr) = x' was wrong 1990-04-04 15:08:45 +00:00
ceriel
f0c0b894f2 corrected SDF patterns 1990-04-04 15:06:32 +00:00
ceriel
16ef0467a8 Fixed wrong assertion, and fixed bug in distance routine: it did not check
that each stackpattern token that does not exactly match can be made from the
stack
1990-04-04 14:52:29 +00:00
eck
ededd15b74 changed assert() macro so __bad_assertion() can use fputs() 1990-04-03 15:29:03 +00:00
eck
644cfbf61f changed __bad_assertion(), it now uses fputs() 1990-04-03 15:01:58 +00:00
eck
84b8c8a6ca improved volatiles, added warning for possibly nested comments 1990-04-02 15:57:51 +00:00
ceriel
2782412b59 Fix: did generate wrong code for 'if (x && 0) ...' 1990-03-29 11:19:36 +00:00
eck
99e74b2341 bug fix for #line directives 1990-03-29 10:45:15 +00:00
eck
ed2516a57a bug fixes after test-suite 1990-03-29 10:41:46 +00:00
ceriel
fd80d596df produced incorrect 'pure' objects 1990-03-29 09:46:14 +00:00
eck
34d54a20b1 several bug fixes after test-suite 1990-03-29 09:05:21 +00:00
ceriel
f27e9ca63e Added #defines for _EM_?SIZE 1990-03-28 17:14:35 +00:00
eck
c8c4c6e7a9 several bug fixes after test-suite 1990-03-28 16:37:18 +00:00
eck
0bb4c0167c bug fixes for scanf() 1990-03-28 16:33:05 +00:00
ceriel
3553a28b78 fix: still sometimes assumed that a move to address register sets condition codes 1990-03-26 14:47:26 +00:00
ceriel
863824de01 fixed bug in conversion from float/double to unsigned 1990-03-26 14:16:59 +00:00
ceriel
a932246479 Fix: did not work with ALIGNMENT < MIN_SIZE 1990-03-21 16:45:39 +00:00
eck
28d6834ae7 forgot ) 1990-03-21 14:46:18 +00:00
eck
0296dc2371 fixed wrong assertion 1990-03-21 13:33:14 +00:00
eck
df33f1eeff adapted directory test for POSIX 1990-03-21 11:13:21 +00:00
ceriel
57790a926f simplified stupid ?: expression 1990-03-20 16:24:21 +00:00
ceriel
f99d67e76e minor improvement: LDC CMS T?? does not need STACK in stack pattern 1990-03-20 15:49:04 +00:00
ceriel
353d22ea90 LDC CMS TNE was wrong 1990-03-20 15:01:25 +00:00
ceriel
71156a48ae Fixed 16-bit address mode bugs 1990-03-19 14:46:55 +00:00
ceriel
0b95807664 Added verbose option 1990-03-15 10:44:14 +00:00
eck
d3208e42ca changed commented #define's into #undef's 1990-03-14 12:49:16 +00:00
ceriel
3bcec5fe6c Fixed to also handle pseudo instructions 1990-03-14 11:47:09 +00:00
ceriel
11b54f5d47 fix: generated wrong loops 1990-03-14 11:42:28 +00:00
ceriel
1a18efbe49 EM_mkcalls is obsolete 1990-03-14 10:16:49 +00:00
eck
d04a8595f3 fixed calls of echo() macro's 1990-03-13 14:33:43 +00:00
ceriel
2c7496a525 Added 16-bit mode 1990-03-12 16:24:58 +00:00
eck
9a5ac60946 changed target_sizes.h to trgt_sizes.h 1990-03-12 13:35:26 +00:00
eck
59edf55051 changed line_prefix.h to ln_prefix.h 1990-03-12 13:28:12 +00:00
ceriel
34eff754f5 documented .use16 and .use32 1990-03-09 12:37:19 +00:00
ceriel
6e0c2ad593 Added arpl instruction 1990-03-09 11:07:43 +00:00
ceriel
a082cf03dc allow for % in assembler strings 1990-03-07 16:24:06 +00:00
ceriel
5d01fbf6b8 fixed typo 1990-03-06 13:39:48 +00:00
ceriel
8e6fe7258c fix: ARRAY type of itself caused crash;
better implementation of ranges in CASE labels
1990-03-06 13:22:30 +00:00
eck
a771c9aa30 added test for directory 1990-03-06 13:10:35 +00:00
eck
f99437138d made little mistakes in div() and ldiv() 1990-03-05 13:48:03 +00:00
eck
11c9808d7e fixed div() and ldiv() 1990-03-01 16:32:22 +00:00
eck
61b718d716 floating-point yet again, fixed debugging bug 1990-03-01 13:02:39 +00:00
eck
2dd3439f90 also give a message on loading a floating-point function result 1990-02-28 15:32:07 +00:00
eck
44d9a8b42d improved the generation of floating-point messages 1990-02-28 14:51:35 +00:00
ceriel
63e64680bd Added some code to reverse evaluation order of assignment operators when possible 1990-02-28 12:18:36 +00:00
ceriel
2236ff6d6a Fix: some patterns were never found due to wrong condition 1990-02-28 12:10:49 +00:00
ceriel
8ec051b83e Added some patterns 1990-02-28 12:10:19 +00:00
ceriel
b0c09c2a94 Added some more patterns 1990-02-28 11:14:39 +00:00
eck
ccd728edbc changed names of ?cvt : namespace problems 1990-02-27 16:48:01 +00:00
ceriel
239d634ab1 Added pattern for cmp A,A 1990-02-27 16:31:10 +00:00
ceriel
9d4e978a1e fixed problems with overflow bit in condition codes 1990-02-27 16:21:47 +00:00
ceriel
f17b176ddd Fixed problem with anonymous structure tags 1990-02-27 15:45:09 +00:00
ceriel
d35a781049 improved test for overflow 1990-02-27 14:30:10 +00:00
eck
073c81c9aa added extern declaration for flt_flt2arith() 1990-02-26 15:39:45 +00:00
ceriel
29152cbf74 two fixes to the lint part: unsigned constant compares, and initializations in switch headers 1990-02-26 11:35:15 +00:00
eck
8d04be4a13 deleted a ';': pasting didn't work properly 1990-02-26 10:18:40 +00:00
ceriel
95632b0fef Oops in assertion: MAXPROCARG instead of MAXPROCARGS 1990-02-23 17:05:04 +00:00
ceriel
0c95aa4b86 fixed library order : fix for 2-byte machines 1990-02-23 17:02:06 +00:00
ceriel
551b10f3a6 fixed for 2-byte machines 1990-02-23 17:00:59 +00:00
ceriel
0ec452930f print pointer as hex 1990-02-23 16:58:34 +00:00
eck
64e1fa33d3 fixed bugs, added No_Mem() 1990-02-21 16:38:45 +00:00
ceriel
1228fe1baf a few fixes: usual arithmetic conversions were wrong 1990-02-20 13:31:52 +00:00
ceriel
972d39139d Added some patterns for shifts with constant shift count 1990-02-19 16:38:35 +00:00
ceriel
8bfbe723db bug fix: far calls+jumps with address prefix were wrong 1990-02-19 09:06:16 +00:00
ceriel
cba0bbac02 Under the -M option, identifiers were sometimes truncated 1990-02-14 11:57:41 +00:00
eck
e4d7651f02 fixed fflush: it didn't even compile! 1990-02-13 17:08:05 +00:00
ceriel
c6d14bb079 some corrections 1990-02-13 09:23:04 +00:00
ceriel
2293458101 corrected: _fstat is in _Xstat.c 1990-02-13 09:20:50 +00:00
ceriel
7c4af80c0f is_rom is boolean, not integer 1990-02-12 15:15:21 +00:00
ceriel
abeebac3c1 recognize but ignore -undef flag 1990-02-12 14:33:57 +00:00
ceriel
7761eecc34 removed MKDEP; it is now a cpp option (-d) 1990-02-12 11:47:50 +00:00
ceriel
63d6fe28e7 Added a change suggested by Cees Verstoep 1990-02-12 09:32:04 +00:00
ceriel
3f950c9f17 Added a new operator for ncg: is_rom() 1990-02-09 16:34:17 +00:00
eck
069d94c39b added ANSI-C document 1990-02-09 16:30:40 +00:00
ceriel
8d7a5dba0a documented recent changes 1990-02-09 16:28:26 +00:00
ceriel
dedf1d945c updated to current situation 1990-02-09 16:27:59 +00:00
ceriel
eaf856c7a0 Added some patterns for unsigned compares 1990-02-09 15:28:46 +00:00
ceriel
541279bd1e Changed an #ifdef NOTDEF to #if 0 1990-02-09 15:03:17 +00:00
ceriel
626e7b5b06 Added U flag for exit status 0 with unresolved refs 1990-02-09 12:44:37 +00:00
eck
67819cfd6c made a little mistake with the #else and #endif 1990-02-09 11:29:57 +00:00
ceriel
8a8bb6cf10 removed wrong pattern 1990-02-09 10:41:58 +00:00
eck
d7d56d2cbb fixed bug with 0L; don't give warning on char x[3] = "abc" 1990-02-09 10:35:44 +00:00
ceriel
ba6c223113 only print file names if there is more than one 1990-02-08 15:11:23 +00:00
ceriel
e361a5777b remove LLlex #define 1990-02-07 10:53:05 +00:00
ceriel
77577f45fa Documented %prefix 1990-02-07 10:49:30 +00:00
ceriel
db54c35c24 several improvements 1990-02-05 10:06:42 +00:00
eck
b40425786c added 80286 instructions 1990-02-02 16:28:06 +00:00
eck
5625842582 fixed 2 bugs with line directives 1990-02-02 09:56:35 +00:00
eck
197379a33a fixed bug with character constants 1990-02-01 13:09:40 +00:00
ceriel
0c5cce9a96 max filename length too short in error messages 1990-01-31 16:27:05 +00:00
ceriel
546d8f3d16 some fixes 1990-01-31 15:50:30 +00:00
eck
945c0dc404 don't recognize any pragma's (mechanism is still present) 1990-01-31 11:52:40 +00:00
ceriel
01829a4203 Fixes: random did not work properly, and RealToString did not deal with
numbers not fitting in the format given properly
1990-01-31 11:01:53 +00:00
ceriel
f994b0bf84 Fixed MON instruction: getpid() was wrong 1990-01-31 10:54:26 +00:00
ceriel
b3d5eaef01 remove comments in macro texts completely 1990-01-30 18:33:54 +00:00
ceriel
6c588b0ae8 fixed again 1990-01-30 14:02:49 +00:00
ceriel
5929f3dd0e Fix: illegal optimizations of muls 1990-01-30 13:41:36 +00:00
eck
114048df57 ignore qualifiers when looking for sdef 1990-01-30 11:19:30 +00:00
ceriel
5dec33abaa minor correction to runtime start-off 1990-01-29 15:52:08 +00:00
ceriel
2d0493ac92 Fixed shell command in READ_ME file 1990-01-29 15:36:45 +00:00
ceriel
8c6dc46124 allow for multiple parsers within one program 1990-01-29 13:51:32 +00:00
ceriel
da48891d6e allow for multiple parsers within one program 1990-01-29 13:45:42 +00:00
ceriel
218b982231 open and close output file in one place 1990-01-29 12:40:43 +00:00
ceriel
9288115a4d fixed for OUTSEEK 1990-01-29 11:42:58 +00:00
ceriel
0c4835caf3 maintain own free list of buffer headers 1990-01-29 11:41:37 +00:00
eck
343dbb810f formal parameters in prototyps need only 1 underscore 1990-01-29 10:09:00 +00:00
ceriel
4de10af212 Fixed check in COM 1990-01-26 17:12:23 +00:00
ceriel
c4c1e6191b Fixed SIG 1990-01-26 16:43:29 +00:00
ceriel
933b1de514 bug fix: it said \(nl where \n(nl was meant 1990-01-26 15:08:22 +00:00
eck
721005b4d7 big fix for #include in macro argument 1990-01-26 14:59:50 +00:00
eck
f4dcfc3c64 bug fix with #include in argument
save #pragma's until they can be printed
1990-01-26 14:49:13 +00:00
ceriel
ebbda9ae11 bug fix with many -I options 1990-01-26 12:00:35 +00:00
ceriel
b48f529177 Added some mkdep features and fixed a bug 1990-01-26 11:53:08 +00:00
ceriel
f5b29d9ccc creat mode 666 1990-01-26 11:02:34 +00:00
ceriel
343c5872eb fixed typo 1990-01-26 09:50:44 +00:00
ceriel
c2717419d4 ftime has an error return(?) 1990-01-26 09:38:45 +00:00
ceriel
444d0bb4da ftime has an error return(?) 1990-01-26 09:33:23 +00:00
ceriel
9b1f6614f6 some optimizations were not protected by calls to small() 1990-01-24 12:37:33 +00:00
ceriel
ae3e9716f5 Added some code for dependency generator 1990-01-23 15:25:21 +00:00
ceriel
94b3467079 improved Makefile 1990-01-23 13:16:47 +00:00
ceriel
76cd1e34ca fixed: did not compile 1990-01-23 12:06:05 +00:00
ceriel
ccfd50c6b7 fixed; did not compile 1990-01-23 11:00:47 +00:00
ceriel
7cb9955f82 corrected 1990-01-22 17:07:11 +00:00
ceriel
0710269e32 corrected 1990-01-22 16:48:13 +00:00
eck
b2cbaa46d5 changed system-call to avoid namespace pollution 1990-01-22 16:26:12 +00:00
ceriel
a42999afab Added strhp.s 1990-01-22 16:25:52 +00:00
eck
86501edf9e big fix: auto aggregate strings didn't work 1990-01-22 16:16:03 +00:00
ceriel
36dbf24131 adapted so that _brk routine may update .limhp 1990-01-22 15:38:46 +00:00
ceriel
4c7f63ee6c adapted so that _brk routine may update .limhp 1990-01-22 15:32:44 +00:00
ceriel
2782e386f9 No chmk; use the system call library 1990-01-22 15:28:45 +00:00
ceriel
8850b696ab brk routine updates .limhp 1990-01-22 15:05:10 +00:00
ceriel
7e34a42088 Use .limhp 1990-01-22 15:03:13 +00:00
ceriel
ea891cfb3c Added .limhp 1990-01-22 14:57:58 +00:00
ceriel
9ecf2ad8f8 Use .limhp 1990-01-22 14:39:47 +00:00
ceriel
13ce9b12ac Added .limhp (for later use?) 1990-01-22 14:34:58 +00:00
ceriel
f815a342e7 Use .limhp 1990-01-22 14:25:10 +00:00
ceriel
9f0c356194 Added entry points for ANSI C 1990-01-22 14:15:55 +00:00
ceriel
5241920b3c Use .limhp 1990-01-22 14:14:38 +00:00
ceriel
786665c582 Use .limhp 1990-01-22 14:08:16 +00:00
ceriel
ee026dd2ab Added entry points for ANSI C 1990-01-22 13:59:43 +00:00
ceriel
73bfa1d1ab Use .limhp 1990-01-22 13:58:54 +00:00
ceriel
bf95ea8fd9 Added entry points for ANSI C 1990-01-22 13:41:58 +00:00
eck
8fd07efa80 some additions for MINIX 1990-01-22 13:29:46 +00:00
eck
777fb8a624 changed setjmp implementation for POSIX
made some changes for MINIX
1990-01-22 13:20:42 +00:00
ceriel
1fdf2d2e19 Added entry points for ANSI C 1990-01-22 13:09:29 +00:00
eck
37c64c6e36 changed system-calls to avoid namespace pollution 1990-01-22 13:08:36 +00:00
eck
0ab62357ce changed system-calls to avoid namespace pollution 1990-01-22 13:00:13 +00:00
eck
a816b64b86 forgot to update .distr 1990-01-22 12:54:26 +00:00
eck
13c2ffcc5b added sigsetjmp() & siglongjmp() 1990-01-22 12:53:21 +00:00
eck
a940c44ae5 added new routines for ansi 1990-01-22 11:56:01 +00:00
ceriel
dbe88218e4 Added entry points for ANSI C 1990-01-22 11:48:01 +00:00
eck
c1b2a43ef5 changed system-calls to avoid namespace pollution 1990-01-22 11:44:21 +00:00
ceriel
c6d87355db Added entry points for ANSI C 1990-01-22 11:24:37 +00:00
eck
68e198f375 added new routines for ansi 1990-01-22 11:14:56 +00:00
eck
90819543f6 changed system-calls to avoid namespace pollution 1990-01-22 11:13:26 +00:00
ceriel
67f0c95888 Added entry points for ANSI C 1990-01-22 11:01:47 +00:00
eck
69e2ddcb49 added new routines for ansi 1990-01-22 10:54:12 +00:00
eck
0614d593dd forgot _dup() & _creat() 1990-01-22 10:34:50 +00:00
eck
aee0dc7377 forgot _dup() 1990-01-22 10:28:09 +00:00
ceriel
666c527a43 Added some more entry points for ANSI C 1990-01-22 10:20:09 +00:00
eck
55fab905c1 forgot _creat() 1990-01-22 09:28:35 +00:00
eck
9ee0876c2b added new routines for ansi 1990-01-22 08:51:54 +00:00
ceriel
66327ddda6 Added entry points for ANSI C 1990-01-19 17:37:29 +00:00
ceriel
9eff28dac8 Added entry points for ANSI C 1990-01-19 17:22:11 +00:00
eck
8c0b75b068 forgot _execve() 1990-01-19 17:15:47 +00:00
ceriel
b2ce4472b5 Added entry points for ANSI C 1990-01-19 17:05:29 +00:00
eck
5c228063bc forgot _sbrk(), _fstat(), _times() 1990-01-19 16:25:54 +00:00
ceriel
b6038dab22 Added entry points for ANSI C 1990-01-19 16:22:03 +00:00
ceriel
89b736ba83 Added mechanism to warn correctly about conflicts 1990-01-19 16:05:44 +00:00
ceriel
0939a12a70 Added entry points for ANSI C 1990-01-19 16:03:46 +00:00
eck
86b0d0bc80 added new routines for ansi 1990-01-19 15:17:33 +00:00
ceriel
f21378d696 made allocation chunk size dependant on pointer size 1990-01-19 11:30:16 +00:00
eck
35023ba945 bug fixes from modules/malloc; changed formats to use %p 1990-01-18 17:24:18 +00:00
ceriel
fc5c0ddc52 several fixes in the CHECK part 1990-01-18 17:11:41 +00:00
eck
b8d6eae391 fixed bug: tp_up is field in union; be more careful
give warning for struct/union declarations in prototypes
1990-01-18 16:58:53 +00:00
ceriel
01535f998d Removed a call to 'abort'; just a non-zero exit status is enough 1990-01-18 16:35:39 +00:00
ceriel
b2f85981ad Bug fix: also use ACKDIR to look for description files 1990-01-18 16:07:42 +00:00
ceriel
531f9b1f77 removed unused variables 1990-01-18 10:59:04 +00:00
ceriel
bcf2aa511c bug fix: casts of constants to a set type caused memory fault 1990-01-18 10:12:38 +00:00
ceriel
7913b6800a simplified a bit, and documented better 1990-01-17 16:05:00 +00:00
ceriel
a72bbc0ce2 Changed an o into $suf 1990-01-17 14:39:50 +00:00
eck
c19026af9e bug fix: defined(aap)1 expanded to 01 1990-01-16 15:27:24 +00:00
eck
c4e0fddf5b MINIX squeezing with strings, fixed small preprocessor bug 1990-01-16 15:21:15 +00:00
ceriel
2b6d2c8407 graceful degradation: allocate fewer structs if cannot get requested amount 1990-01-16 14:38:28 +00:00
ceriel
b254b73745 Added i386_as.6 1990-01-16 13:27:47 +00:00
ceriel
6bbcb68a79 added comment 1990-01-16 10:11:45 +00:00
ceriel
f48df3b6fe Commented out a wrong warning, as was already done in the C compiler 1990-01-16 10:08:34 +00:00
ceriel
b5135607b4 bug fix: #if defined(...) did not work properly 1990-01-15 17:01:36 +00:00
ceriel
018558cb9e fixed prvious change 1990-01-15 12:42:57 +00:00
ceriel
2138609918 do not remove targets for install or cmp 1990-01-15 11:47:10 +00:00
ceriel
dd22ea4caf fixed bug in translation of BR instruction 1990-01-15 11:44:43 +00:00
ceriel
53096cbf0c adapted for use of ACK VAX assembler 1990-01-12 18:03:50 +00:00
ceriel
54cb64aef2 Adapted for use of the ACK VAX assembler 1990-01-12 17:58:12 +00:00
ceriel
0ce4d37e54 Adapted for use of ACK VAX assembler 1990-01-12 17:05:42 +00:00
ceriel
7babff444a some more fixes 1990-01-12 17:02:31 +00:00
ceriel
027b33d313 VAX a.out to ACK a.out conversion program, first version 1990-01-12 16:58:02 +00:00
ceriel
57dfc84ee7 ACK VAX assembler, first version 1990-01-12 16:55:50 +00:00
ceriel
0004fd81ed fixed again 1990-01-12 15:41:59 +00:00
ceriel
cb25b013fb fixed for 0 argument 1990-01-12 15:34:21 +00:00
ceriel
558a632821 errno in .bss 1990-01-12 14:13:39 +00:00
ceriel
e2732629bf Fix for PDPFLOAT format 1990-01-12 11:52:51 +00:00
ceriel
6dac59f2d4 some more changes to use VAX assembler 1990-01-12 10:29:26 +00:00
ceriel
c9312a41da make labels disappear 1990-01-12 10:11:44 +00:00
ceriel
5521ebb35a Adapted for use of ACK VAX assembler 1990-01-11 16:44:19 +00:00
ceriel
7fed954836 use LABEL_STARTER 1990-01-11 16:33:53 +00:00
ceriel
15d1e95d31 Adapted for use of ACK VAX assembler 1990-01-11 16:10:13 +00:00
ceriel
de564c09b2 Adapted for use of ACK VAX assembler 1990-01-11 16:00:19 +00:00
eck
2eacdccc5d deleted struct mlist 1990-01-11 08:30:19 +00:00
eck
00876cd9df added alloction dump
shrunk some data structures
changed some ALLOCDEF's
changed setjmp to __setjmp
1990-01-10 17:33:35 +00:00
ceriel
776f85238f bug fix: cannot optimize IMUL 1990-01-10 11:23:45 +00:00
eck
abcaa3e669 changed UnGetChar() to ChPushBack() in domacro.c 1990-01-05 09:28:54 +00:00
eck
369a99fe3a there are only 24 hours in a day, not 29 1990-01-04 11:33:10 +00:00
eck
7157ec19b6 changed strrchr() into strchr() 1990-01-04 08:39:10 +00:00
eck
670ca5a83a added putenv.c 1990-01-03 17:23:10 +00:00
eck
e109e76069 changed genfiles to shell script 1990-01-03 16:58:22 +00:00
eck
a8f0aa6016 various fixes to makefile 1990-01-03 16:42:36 +00:00
ceriel
4bb598c9ad mkdir command always executed and result ignored 1990-01-03 16:07:05 +00:00
ceriel
f0dccf3ca0 wr_fd no longer exists, because the object module now buffers 1990-01-03 14:24:08 +00:00
ceriel
e59812782e changed creat mode to 0666 1989-12-19 16:44:57 +00:00
eck
02d396c33a forgot .distr 1989-12-19 15:46:39 +00:00
eck
68a72d2ceb Initial revision 1989-12-19 15:45:15 +00:00
ceriel
33e47b1a51 Added mechanism for installing header files 1989-12-19 15:32:51 +00:00
eck
80b04b4440 changed Makefile again 1989-12-19 15:06:03 +00:00
ceriel
513b878285 again, dependencies 1989-12-19 14:54:40 +00:00
ceriel
b60e8cead1 corrected install entry 1989-12-19 13:56:57 +00:00
ceriel
49834ac5c8 dependencies 1989-12-19 13:55:08 +00:00
eck
f4e1d47704 changed Makefile 1989-12-19 11:20:16 +00:00
ceriel
caf06d3a7b prepared for distribution 1989-12-19 11:17:21 +00:00
ceriel
bff577eed4 name is cpp.ansi 1989-12-19 11:12:17 +00:00
ceriel
a1f5834052 use normal C compiler 1989-12-19 11:07:03 +00:00
eck
7fab59ec17 added MakeArch and Makefile to .distr 1989-12-19 11:02:22 +00:00
eck
c02f977487 Initial revision 1989-12-19 10:59:33 +00:00
ceriel
c3b3faf7a4 Added support for constant floating point expressions 1989-12-19 09:40:25 +00:00
ceriel
4b42dcf97f fix: flt_status was not always set properly 1989-12-19 09:27:16 +00:00
ceriel
662c87a579 flt_status maintained for flt_str2flt() 1989-12-18 18:17:17 +00:00
ceriel
328b5011af use normal C compiler 1989-12-18 16:41:55 +00:00
eck
dc87f207cd added Makefile, LIST and .distr 1989-12-18 16:15:07 +00:00
eck
25291680b0 changed EM_* to _EM_*, added Makefile, LIST and .distr 1989-12-18 16:11:26 +00:00
eck
2a15fcf645 fixed Makefile, added .distr 1989-12-18 16:06:47 +00:00
eck
dc2dd991c6 fixed some bugs, added LIST, Makefile & .distr 1989-12-18 16:02:55 +00:00
eck
8a409311da fixed some bugs, added LIST, Makefile & .distr 1989-12-18 15:49:11 +00:00
eck
d43142d811 changed from Hart & Cheney to Cody & Waite 1989-12-18 15:44:36 +00:00
eck
6e2b44962f made a lot of changes 1989-12-18 15:33:48 +00:00
eck
e00f89ea6f made a lot of changes 1989-12-18 15:14:14 +00:00
eck
2f92b46a9d made a lot of changes 1989-12-18 15:04:14 +00:00
eck
bb48507f58 small changes, added LIST, Makefile and .distr 1989-12-18 14:44:38 +00:00
eck
94db19641a Initial revision 1989-12-18 14:40:54 +00:00
eck
d8486967aa many changes and improvements 1989-12-18 14:00:32 +00:00
eck
0c6ba1fd58 added Header 1989-12-18 13:53:00 +00:00
eck
09a352c151 Initial revision 1989-12-18 13:50:55 +00:00
eck
c98a786cc4 Intial revision 1989-12-18 13:31:20 +00:00
ceriel
2b8e44b860 publicdata is extern for development version 1989-12-18 13:18:43 +00:00
ceriel
d6f0d3b65f test on BIGMACHINE was wrong 1989-12-15 15:35:17 +00:00
ceriel
a0187208a5 fixed: did not compare properly with 0; reduced size 1989-12-13 16:35:19 +00:00
ceriel
e891b36895 removed declaration of unused variable 1989-12-13 13:09:10 +00:00
eck
8790a879c9 fixed sizeof() 1989-12-13 12:53:22 +00:00
ceriel
a5f05e8ba0 changed character comparisons with NULL 1989-12-13 09:19:47 +00:00
eck
bdb0b550f7 U-flag was not handled properly 1989-12-12 14:59:59 +00:00
eck
b3a142e244 fixed null-pointer constants and SkipToNewLine() 1989-12-12 12:52:03 +00:00
eck
24a1c0d390 SkipToNewLine() now recognizes strings and character constants 1989-12-12 12:41:39 +00:00
ceriel
9bab5d363c Bug fix in ZRL decoding 1989-12-08 15:04:37 +00:00
ceriel
a8033da29e better error checking 1989-12-07 16:28:05 +00:00
ceriel
2f5b25269e copied from newer version 1989-12-06 12:53:37 +00:00
ceriel
0950240cfa Changed maximum # of args 1989-12-06 12:43:01 +00:00
ceriel
3bed868bb9 .word -> .data2 1989-12-06 12:41:05 +00:00
ceriel
f2996068f8 changed alignments 1989-12-06 12:39:25 +00:00
ceriel
58eaf6df5b some small fixes 1989-12-06 12:38:18 +00:00
ceriel
5e2915d143 bug fix: the in_store test did not work when NON_STANDARD was defined,
because in this case, the bit tested resided in user area
1989-11-30 17:29:00 +00:00
ceriel
ac489d50a3 Corrected assertion 1989-11-30 15:12:11 +00:00
ceriel
fec7208f70 new malloc.c, derived from new Minix version 1989-11-30 14:59:18 +00:00
ceriel
30208cda9a changed commented #defines to #undefs 1989-11-30 14:25:40 +00:00
ceriel
a022b9490c LOE INE used address register; it is probably better to use a general register 1989-11-30 10:07:49 +00:00
ceriel
7c723a8e48 Made compilation command and interpreter command variable 1989-11-29 16:12:47 +00:00
ceriel
75cab1f389 Added a move 1989-11-29 12:47:23 +00:00
ceriel
bf9730d10e corrected clean entry in Makefile 1989-11-29 10:56:11 +00:00
ceriel
cd64ce0424 rounding for un-normalized numbers was wrong 1989-11-29 09:56:59 +00:00
ceriel
79b0bb3347 do not declare sprintf. On some systems it is an int, on others it is
a char *
1989-11-29 09:55:03 +00:00
ceriel
0e2861d8b0 Added 80[23]87 support 1989-11-29 09:49:35 +00:00
eck
5f3e4693e6 array type-checking was wrong 1989-11-28 15:28:52 +00:00
ceriel
2465ad8ed8 fixed bug: sometimes destroyed contents of register variable 1989-11-28 14:42:56 +00:00
ceriel
a49ffb7945 fixed entier routine: did not work properly for negative args 1989-11-28 14:16:38 +00:00
ceriel
55a133aa3c fef did not work properly for negative args 1989-11-28 12:51:35 +00:00
ceriel
86b6eab206 speeded up a bit for printing 0.0 1989-11-27 17:29:35 +00:00
ceriel
862f83571f speeded up a bit for converting 0.0 to string 1989-11-27 17:25:55 +00:00
ceriel
b91af798bc fixed rounding on ties to round to even, and fixed extend bug (test for 0
was wrong)
1989-11-27 16:26:02 +00:00
ceriel
1758da9285 Added fp8087.s 1989-11-27 16:19:16 +00:00
ceriel
61c646a496 Added 8087 support 1989-11-27 16:19:15 +00:00
eck
c6d60cb24f fixed small bug 1989-11-27 11:40:58 +00:00
eck
671556cfc4 improved type-checking, fixed preprocessor bug, fixed syntax bug 1989-11-27 11:37:11 +00:00
ceriel
5d81b090b9 Corrected MathLib0.mod: entier was wrong on negative args 1989-11-27 09:37:56 +00:00
eck
4734150614 removed ctype.c, the library functions are generated 1989-11-23 10:43:15 +00:00
eck
d50600e263 fixed unary & and indirect calls 1989-11-22 16:41:09 +00:00
eck
96da16ce33 fixed bugs, added dynamic buffer allocation to preprocessor 1989-11-22 13:58:36 +00:00
ceriel
3107e638f8 some more speed-up changes 1989-11-22 13:38:37 +00:00
eck
f9fadbf045 fixed bugs, added dynamic buffer allocation 1989-11-22 12:59:15 +00:00
ceriel
5ffd738802 cleaned up a bit 1989-11-21 15:44:29 +00:00
ceriel
6a19ee76cc removed some superfluous instructions 1989-11-21 15:42:56 +00:00
ceriel
43e04499d0 changed label formats 1989-11-21 15:40:24 +00:00
ceriel
295c8d2515 a fix to ZER ? and simplified ZRL, ZRE 1989-11-21 11:38:08 +00:00
ceriel
f6c7b7bbcd changed some variables from arith to int 1989-11-21 11:37:10 +00:00
ceriel
cf4c99a093 fixed line number after line directives 1989-11-21 11:33:21 +00:00
ceriel
01b937d82e some arith variables changed into int 1989-11-21 11:28:56 +00:00
ceriel
c6134a1f59 changed mechanism a bit 1989-11-20 14:35:23 +00:00
ceriel
6709f6e340 no default size for asld 1989-11-17 16:55:48 +00:00
ceriel
99c20a6a08 default size is now large 1989-11-17 16:53:53 +00:00
ceriel
a46596cbba new object module makes buffering superfluous 1989-11-17 16:50:59 +00:00
ceriel
07cb257465 print unsigned bitfields as unsigned 1989-11-17 16:37:20 +00:00
ceriel
e9d477fd6e more internal buffering 1989-11-17 15:56:53 +00:00
ceriel
99cae8d6df fix to previous change 1989-11-17 15:19:55 +00:00
ceriel
c4ca7db14f improved #line handling 1989-11-17 14:53:05 +00:00
ceriel
9ad5d4b5e0 generate ; after label 1989-11-17 13:15:48 +00:00
ceriel
5300633c2b improved error messages 1989-11-17 11:52:33 +00:00
ceriel
ff90971199 improved error messages 1989-11-17 11:44:48 +00:00
ceriel
c023409091 improved make.tokcase for EOF handling 1989-11-17 11:41:47 +00:00
ceriel
cde3638bc9 improved for EOF handling 1989-11-17 11:40:48 +00:00
ceriel
b6c29b5541 fixed bug which caused memory faults on erroneous input 1989-11-17 11:36:43 +00:00
ceriel
a43e504fb1 fixed error messages by allowing more than one "simultaneous" symbol2str 1989-11-17 11:31:05 +00:00
ceriel
676fee0a3e fixed bug which caused unsigned bitfield problems 1989-11-17 11:28:38 +00:00
ceriel
d57dfac961 improved error messages 1989-11-17 11:27:26 +00:00
ceriel
d4bcec7ec2 removed some unused variables 1989-11-16 16:08:59 +00:00
ceriel
42a7f3d8e7 new version with internal buffering 1989-11-16 15:52:08 +00:00
ceriel
e93e256512 bug fix: static link was not always removed 1989-11-16 14:57:15 +00:00
ceriel
72f667fbf9 Added unsigned bit-field test 1989-11-15 17:46:58 +00:00
ceriel
f9d19e9302 fixed assembler part of link instruction 1989-11-15 17:46:25 +00:00
ceriel
edf2f575a2 link instruction does not work for more than 32768 bytes locals on M68000 1989-11-15 16:10:18 +00:00
ceriel
3868470366 many speed-up changes, resulting in 20-25% speedup, and fixed
serious floating point handling bug
1989-11-13 15:36:12 +00:00
eck
776233c718 improved qualifier checking 1989-11-13 14:01:50 +00:00
ceriel
c30769327b fixes: ucmp did not quite work right, flt_div had an obscure bug 1989-11-13 12:54:33 +00:00
ceriel
12669d882f call to abs should be call to fabs 1989-11-13 10:15:35 +00:00
ceriel
b93cdd9aac do not use sprintf; use sprint instead 1989-11-09 21:33:29 +00:00
ceriel
c5ee3b6735 Added patterns 1989-11-09 18:43:02 +00:00
ceriel
38880093e8 fixed typo 1989-11-09 18:12:12 +00:00
ceriel
0ce3cd0c76 no casts in constants used in #if! 1989-11-09 18:07:14 +00:00
ceriel
95fc55f840 fix: did not work for 4-byte floats 1989-11-09 17:01:29 +00:00
ceriel
013a6f9cd6 cleaned up a little 1989-11-09 14:06:35 +00:00
ceriel
cfc1d926bf minor mod: added comment and removed a variable 1989-11-09 12:33:08 +00:00
ceriel
d9d6cc127f Allow more procedure parameters 1989-11-09 11:04:18 +00:00
ceriel
3e80ca51fc generate #defines for MAXREPLLEN, MAXEMREPLLEN 1989-11-08 17:14:52 +00:00
ceriel
339f9dd942 fixed bug in EM replacement code, and use new #defines from tables.h 1989-11-08 17:13:33 +00:00
ceriel
67f9f2a74f many little changes: removed some lint complaints; max_int and max_unsigned
are now constants if NOCROSS is defined; added lexstrict and expr_strict,
and changed calls where needed
1989-11-08 16:52:34 +00:00
ceriel
636c151d51 fix: printed wrong message; now dumps core at end 1989-11-08 14:42:09 +00:00
ceriel
410a62e2de fixed some lint complaints 1989-11-08 14:18:57 +00:00
ceriel
45c90324fd Added some casts for lint 1989-11-08 12:52:41 +00:00
ceriel
1ece6f9107 Added a few more patterns 1989-11-08 12:44:33 +00:00
ceriel
9dcaf4ecdc improved checking 1989-11-08 12:30:55 +00:00
ceriel
f3250e5db5 fixed: commited wrong version 1989-11-08 11:22:50 +00:00
ceriel
d4e3a9d9f6 fixed exit status 1989-11-07 16:17:06 +00:00
ceriel
9b2bc42d92 fixed sed script: \> is special under SunOs 4.0, and the escape was not needed anyway 1989-11-07 16:13:26 +00:00
dick
ba7100a4c2 wrong Makefile committed at 1.209 1989-11-07 13:04:39 +00:00
ceriel
3dc49877a5 Made suitable for fast compiler version 1989-11-06 16:01:13 +00:00
ceriel
1546ac1235 fixed: send ended up in data segment! 1989-11-06 11:35:52 +00:00
ceriel
6d39055193 use fwrite instead of write 1989-11-03 18:32:32 +00:00
ceriel
1158018fdf Added some patterns 1989-11-03 13:28:37 +00:00
ceriel
f83c2ba230 updated to Minix 1.3 version 1989-11-03 12:57:25 +00:00
ceriel
0928518b8d Added a nicer trap handler 1989-11-03 11:54:41 +00:00
ceriel
a951391408 removed stop.s 1989-11-03 11:53:47 +00:00
eck
6e551adf21 fixed some more bugs 1989-11-03 10:36:56 +00:00
ceriel
bc565a13f1 updated to minix 1.3 1989-11-03 09:25:46 +00:00
dick
787904f82c restrained error messages for lint + misc. 1989-11-02 18:17:59 +00:00
ceriel
287f8d5d70 fixed Constant Width 1989-11-01 17:30:44 +00:00
ceriel
2db075ab69 fixed memory fault, adapted mechanism code_scope 1989-11-01 15:41:06 +00:00
ceriel
d72e4424cd modified labels 1989-11-01 15:35:42 +00:00
ceriel
c33ae16bce the include file is called con_float, not float_cst 1989-11-01 10:57:04 +00:00
ceriel
9c03f2c8bd kill tokens using address registers better 1989-11-01 10:14:27 +00:00
eck
ce1285d2eb format for % was wrong 1989-11-01 10:02:23 +00:00
ceriel
142a703f77 the error() routine did not set err_occurred! 1989-11-01 09:46:16 +00:00
ceriel
c2a260ba68 better unknown flags handling 1989-10-31 11:15:23 +00:00
ceriel
da85a0fa2f Added code expander 1989-10-31 11:14:01 +00:00
eck
7a18c01a7c relaxed typechecking a little bit 1989-10-31 10:48:20 +00:00
eck
bdbbf32404 fixed bug, added -o option 1989-10-31 10:02:48 +00:00
ceriel
cccb0dd197 if malloc can return 0 on a 0 argument, free should also accept 0 1989-10-31 09:44:21 +00:00
ceriel
4b445d4860 malloc can return NULL when given a 0 argument 1989-10-30 18:25:30 +00:00
ceriel
046d5b38a9 use varargs.h 1989-10-30 17:51:31 +00:00
dick
a817264e90 better (more restrained) error reporting 1989-10-30 16:19:35 +00:00
ceriel
2fb6605800 no more -T option to pic 1989-10-30 16:08:07 +00:00
ceriel
8cb76d3ed8 fix to for-loop code was wrong; fixed again 1989-10-30 15:45:43 +00:00
ceriel
67e5a8e7a5 improved check for loop 1989-10-30 15:17:01 +00:00
ceriel
64c2ad3838 There is no d0 register! 1989-10-27 18:20:14 +00:00
ceriel
c2f70c4857 andl3 does not exist! use bicl3 instead 1989-10-27 18:03:37 +00:00
eck
480de7cafb fixed some bugs, changed warning interface 1989-10-27 13:33:10 +00:00
ceriel
f04baf2201 Added code expander 1989-10-27 09:06:43 +00:00
ceriel
0f8516f861 use more simple hashing algorithm, made namelist generation dependant on a #define 1989-10-26 16:16:35 +00:00
ceriel
cd1bb106ec improved STI 8 code 1989-10-26 15:54:21 +00:00
ceriel
9196107b79 fixed so that jumps back to local labels also work 1989-10-26 15:42:30 +00:00
ceriel
74546bd985 Added a command to kill a register 1989-10-26 15:41:38 +00:00
ceriel
adc8fc6e9e Added _exit.c 1989-10-26 11:51:46 +00:00
ceriel
acfb0f2eed Added _exit.c 1989-10-26 11:39:31 +00:00
ceriel
69d8dc3b44 use new version of con_float 1989-10-26 11:07:26 +00:00
ceriel
a751b2ef42 Use Motorola byte order for floating point 1989-10-26 11:04:53 +00:00
ceriel
7f4a6b31a7 Use Intel byte order for floating point 1989-10-26 11:03:30 +00:00
ceriel
cf855ea282 fixed so that jumps back to local labels also work 1989-10-26 11:01:44 +00:00
ceriel
ed479cbb76 Do not call the .nop subroutine for a NOP (ANSI C modification) 1989-10-26 10:10:34 +00:00
ceriel
851a0c4501 Use Intel byte order for floating point 1989-10-26 09:52:41 +00:00
ceriel
3a8a4fc1df Use Motorola byte order for floating point 1989-10-26 09:49:32 +00:00
ceriel
3899b18911 Motorola byte ordering 1989-10-25 17:35:09 +00:00
ceriel
d4d3e6b484 use 8087 byte order 1989-10-25 17:33:49 +00:00
ceriel
a5b0790d96 Added CSA ==4 and CSB ==4 entries, needed for ANSI C 1989-10-25 17:21:52 +00:00
ceriel
13ea4896b0 changes for different byte orderings 1989-10-25 17:15:37 +00:00
ceriel
07f019213d Added csa4.s and csb4.s 1989-10-25 17:08:45 +00:00
ceriel
44ff24f085 Also recognize 'defined' without parentheses 1989-10-25 14:23:08 +00:00
ceriel
35586d769a DEFDIR fix 1989-10-25 13:37:26 +00:00
ceriel
68a2852f57 fixed bug and changed con_float 1989-10-25 13:24:29 +00:00
ceriel
4360ab1cee improved error handling: C_busy now returns 0 if C_failed is called 1989-10-25 11:36:51 +00:00
ceriel
e4309374be changed string to change into CHANGE_ME 1989-10-24 16:58:28 +00:00
ceriel
80cb794116 Added mechanism to change default directory 1989-10-24 16:54:55 +00:00
ceriel
88a316478d adapted floating point package to handle IEEE format in different byte orders 1989-10-24 16:10:01 +00:00
ceriel
a413fa8b90 fixed for SunOs 4.0 make 1989-10-24 16:09:24 +00:00
ceriel
b4e38b8fcd adapted to use 80387 floating point format 1989-10-24 16:00:37 +00:00
ceriel
b5a1f8a3b3 define IEEEFLOAT 1989-10-24 15:08:27 +00:00
eck
d186cb605f removed bug for identifiers starting with L 1989-10-24 15:06:23 +00:00
eck
9286928275 improved domacro when NOPP defined 1989-10-24 15:02:02 +00:00
ceriel
8740dcc72e adapted to use 80387 floating point format 1989-10-24 15:00:09 +00:00
ceriel
c5dcddd4fd adapted to also generate other byte-orders 1989-10-24 14:57:17 +00:00
ceriel
c246adf1c4 correction 1989-10-24 14:42:49 +00:00
ceriel
95cfd33824 corrected assertions 1989-10-24 12:58:23 +00:00
eck
1ce56a4e78 renamed nccp.6 to ncpp.6 1989-10-24 10:18:45 +00:00
ceriel
44b74a6c84 fixed for minix, which does not have ftime 1989-10-24 10:04:35 +00:00
ceriel
42940634dd Added ce directory 1989-10-24 09:30:32 +00:00
ceriel
1e3b6137d4 also include ../read_em; C_out.c needs em_comp.h. We cannot install
read_em first, because that needs em_codeEK.h
1989-10-24 09:29:30 +00:00
eck
dfb4d0c576 deleted } in arith.c 1989-10-23 14:39:33 +00:00
ceriel
4a5a463e44 improved handling of , (comma) operator and some more Minix squeezing 1989-10-23 13:50:27 +00:00
ceriel
788788edc0 improvements for the , (comma) operator 1989-10-23 13:45:19 +00:00
eck
741b43044d renamed ch7xxx to ch3xxx 1989-10-23 13:00:35 +00:00
ceriel
49d31eaeff initial commit 1989-10-23 11:25:20 +00:00
ceriel
8af6b69b44 Added .distr file 1989-10-23 11:20:46 +00:00
ceriel
d5dc0b7342 Initial commit 1989-10-23 11:19:44 +00:00
ceriel
ead414d725 only give warning about relocation info if -u flag is not given 1989-10-23 10:51:46 +00:00
ceriel
e5117bbf30 Added an ARGSUSED to shut up lint 1989-10-23 10:37:00 +00:00
eck
1d37165575 Initial revision 1989-10-23 10:35:56 +00:00
ceriel
ba8482c5ab Added another pattern 1989-10-23 10:26:00 +00:00
ceriel
10dd78edbf Added patterns 1989-10-20 17:32:04 +00:00
ceriel
cf3bcb5e63 Added routine to evaluate operands of binary operator 1989-10-20 17:08:48 +00:00
ceriel
352c5c581b some more Minix squeezing 1989-10-20 16:16:06 +00:00
ceriel
64b7d49c0a Added patterns 1989-10-20 14:36:26 +00:00
eck
b6a7d4fa0f Minix again 1989-10-20 13:06:10 +00:00
ceriel
01f77a03af Added CBO (commutative binary operator) to make it a little easier to
write reordering patterns
1989-10-20 11:59:52 +00:00
ceriel
d6fa6357f2 some more Minix squeezing 1989-10-20 11:58:37 +00:00
eck
78d3e500fb added CPP variable to Makefile 1989-10-20 11:05:00 +00:00
eck
46e45d1c2d added CPP variable to Makefile 1989-10-20 10:37:25 +00:00
ceriel
3d5569183e some more squeezing for Minix 1989-10-19 19:29:39 +00:00
ceriel
e4857c2446 many minor modifications (it still will not fit on Minix!) 1989-10-19 14:53:25 +00:00
ceriel
35c612b99b some minor improvements 1989-10-19 14:50:52 +00:00
ceriel
1ae683e3b3 improved the making of libCEopt.a 1989-10-18 14:40:15 +00:00
eck
8ff400fd0f squeezing for MINIX 1989-10-18 13:12:31 +00:00
ceriel
84297d3460 parameterize back library name (needed for SUN) 1989-10-18 12:36:28 +00:00
ceriel
b4504c0f73 parameterize back library name (needed for SUN) 1989-10-18 11:51:12 +00:00
ceriel
9c403e7299 Added mechanism to make peephole optimizer version bigger (needed for SUN-3) 1989-10-18 11:39:19 +00:00
ceriel
95563ae3bc small improvement: added pattern for LDC -1 CMS 4 ZEQ/ZNE 1989-10-18 10:15:49 +00:00
ceriel
cf65fbe6a1 a simple optimization added 1989-10-18 09:22:47 +00:00
eck
46fb868503 introduced TABGEN variable 1989-10-17 11:35:13 +00:00
ceriel
744fcc3442 Added split.c to .distr 1989-10-16 18:02:55 +00:00
ceriel
82c3158ada simplified a bit 1989-10-16 17:56:36 +00:00
ceriel
b821194cbd merged cricon.c+crfcon.c+crucon.c into crxcon.c 1989-10-16 16:37:46 +00:00
ceriel
85da3bcac1 only give warning about unresolved references if -u option is not given 1989-10-16 14:52:03 +00:00
ceriel
7b969cc623 head_em.sun renamed to head_ext 1989-10-16 14:45:00 +00:00
ceriel
1fefd074f9 Added em_private.h 1989-10-16 14:23:25 +00:00
eck
aa2bfa7738 adjusted sources for NOPP 1989-10-16 12:38:25 +00:00
ceriel
4c4b47a902 util/ceg/as_parser also uses lex 1989-10-16 09:53:04 +00:00
ceriel
81a2d12ae5 improved Makefile: save libemopt.a when creating libCEopt.a 1989-10-16 09:45:06 +00:00
ceriel
7f6b39f155 improved: did not work with SunOs 4.0 make 1989-10-16 09:32:05 +00:00
ceriel
d7e23d9466 improved: did not work with SunOs 4.0 make 1989-10-16 09:24:52 +00:00
ceriel
0b44329a4b cleaned up considerably 1989-10-13 18:26:05 +00:00
ceriel
284bd607fd Added head_em.s for Sun floating point emulation 1989-10-13 14:35:50 +00:00
ceriel
b6b4cee71f Added headers 1989-10-13 14:27:28 +00:00
ceriel
8c84139dc8 Added RCS Headers 1989-10-13 14:03:25 +00:00
eck
fd259c398c fltcstoper.c addded to Repository 1989-10-13 11:04:42 +00:00
ceriel
257b4847bf Added mechanism for generating fast compilers 1989-10-13 10:48:07 +00:00
ceriel
654715cf8a Added mechanism for generating fast compilers 1989-10-13 09:59:54 +00:00
ceriel
155d41c3e0 Added mechanism for generating fast compilers 1989-10-13 09:25:21 +00:00
ceriel
b759fb2438 fixed typo 1989-10-13 09:22:53 +00:00
ceriel
9ef6cf575b formatted a bit 1989-10-12 16:57:37 +00:00
ceriel
159bdec3f5 Added peephole optimizer library, code expander, and i386 1989-10-12 16:52:17 +00:00
ceriel
17c1915104 Added entry for peephole optimizer library and code expander 1989-10-12 16:50:29 +00:00
ceriel
0faaec8e3d cleaned up Makefile 1989-10-12 16:18:38 +00:00
ceriel
10b58a8520 The InputLevel variable only exists when NOPP is not defined 1989-10-12 14:22:35 +00:00
ceriel
9d08fc6678 use strindex() instead of index() 1989-10-12 11:16:43 +00:00
ceriel
7255b1aa61 some fixes, f.i. process # in actual parameter list 1989-10-12 11:16:02 +00:00
ceriel
b9bb251d60 fixed wrong code for for-loop 1989-10-12 11:10:48 +00:00
ceriel
998de8d264 install code-expander version 1989-10-11 15:31:10 +00:00
ceriel
3aa0ecdb5c removed include file in_all.h 1989-10-11 15:25:07 +00:00
ceriel
0e2a3baa5d also install peephole optimizer and code expander versions 1989-10-11 15:15:47 +00:00
ceriel
f63613844b Added em_codeO.h 1989-10-11 15:13:07 +00:00
ceriel
19df56bc23 use EMHOME instead of ../../.. 1989-10-11 14:21:37 +00:00
ceriel
ebcd62f7d2 bug fix in rounding for 4-byte floating point numbers 1989-10-11 13:34:05 +00:00
ceriel
c7d0d1d447 Added nopt.doc and ceg 1989-10-11 13:17:21 +00:00
ceriel
de6b8d9108 Added em_opt 1989-10-11 12:43:53 +00:00
ceriel
c4d23274c9 moved and initialized the C_tmpdir variable; some linkers do not
find it otherwise
1989-10-10 15:06:56 +00:00
ceriel
b719750e75 Added code-expander-generator 1989-10-10 14:48:42 +00:00
ceriel
bec816346d Added i386 1989-10-10 14:42:59 +00:00
ceriel
9feb3f9254 Added i386 to .distr file 1989-10-10 14:20:45 +00:00
ceriel
48252cc673 initial version 1989-10-10 11:40:55 +00:00
ceriel
010bade227 many fixes, found by actually running the code 1989-10-10 11:38:18 +00:00
dick
2364f3f6b0 some small corrections in the lint part 1989-10-10 11:21:55 +00:00
ceriel
9715c40c3f initial version 1989-10-10 11:01:01 +00:00
ceriel
a96f33ef34 many fixes; got working afcc with this version 1989-10-10 10:58:30 +00:00
ceriel
e713e6f8fe many fixes, found by actually running the code it produces 1989-10-10 10:54:20 +00:00
ceriel
d25472bbfb many fixes; now passes the tests 1989-10-10 10:44:26 +00:00
ceriel
8f74dd7ae6 Initial revision 1989-10-10 10:38:39 +00:00
ceriel
1525e12aee mkstrct.o ended up in the archive twice 1989-10-09 15:03:01 +00:00
ceriel
7e0c59d59a some fixes 1989-10-09 14:15:51 +00:00
ceriel
8c9c04b549 fix to bitfield code: contained non-portable shift 1989-10-09 13:42:39 +00:00
ceriel
9197c959dc recursive calls to sametest routine were wrong; How could this ever work? 1989-10-06 14:53:49 +00:00
ceriel
eb2a76270f corrected XOR problem, and ILOCAL does not exist for m68k4 1989-10-06 11:13:16 +00:00
dick
6ea0fa77db varargs in panic() 1989-10-04 16:04:02 +00:00
dick
d75369dd40 better error reporting 1989-10-04 15:36:56 +00:00
dick
53fe78afae correction lint.1 1989-10-04 15:33:49 +00:00
ceriel
0a9017bae1 if to be preprocessed, # should be the first character 1989-10-04 15:18:12 +00:00
ceriel
0364de3a9c fixed problem: sometimes incorrect labels were generated in case descriptors 1989-10-04 14:39:55 +00:00
ceriel
f3a7c72ddb Added some XOR patterns 1989-10-04 14:35:50 +00:00
ceriel
10a379dc8a latest Makefile Version 1989-10-04 11:12:57 +00:00
ceriel
5d8db9045e fixed: removed an #endif 1989-10-04 11:06:18 +00:00
ceriel
96562f964d This is the 4th distribution version 1989-10-04 11:02:39 +00:00
ceriel
9a92f57752 Initial revision 1989-10-04 10:56:16 +00:00
ceriel
463a0e7f40 use the con_float include file 1989-10-04 10:28:50 +00:00
ceriel
008a907894 makefile removed, was path-dependant 1989-10-03 16:31:29 +00:00
eck
4bde31f78a minor changes concerning void and pre-processor 1989-09-29 16:20:38 +00:00
eck
26cc87efe6 improved parameters 1989-09-29 15:46:33 +00:00
ceriel
77259cd2f9 removed yet another eor.l error 1989-09-29 11:45:19 +00:00
eck
00027d3893 some minor fixes, renamed ch7 stuff to ch3 1989-09-25 14:28:10 +00:00
eck
fa4e6eecb4 lots and lots of changes & improvements 1989-09-19 16:13:23 +00:00
ceriel
18439ffa3f exit from main instead of return 1989-08-22 11:46:56 +00:00
ceriel
73246f3824 Improved checks for conversion between cardinal and integer 1989-08-21 17:08:54 +00:00
ceriel
360caa08bb use strindex instead of index 1989-08-21 17:03:05 +00:00
ceriel
4c0ea89fe0 use strindex instead of index 1989-08-21 16:56:15 +00:00
ceriel
8ee1e318a3 Added em_codeCE.h to repository and to .distr file 1989-08-21 13:12:51 +00:00
ceriel
84b9957b17 made to compile under Xenix 1989-08-21 12:46:54 +00:00
ceriel
319d9bcfe0 declaration of sprintf only if __STDC__ is not defined 1989-08-21 11:43:41 +00:00
ceriel
e52091ea7c Added l_comment.h to .distr file, fixed problem with #
occurring between macro name and arguments
1989-08-21 10:58:24 +00:00
ceriel
a5f950bac7 replaced size_t by siz_t; size_t is reserved for ANSI C 1989-08-21 10:17:49 +00:00
ceriel
3c03d3f68c pc directory no longer distributed 1989-08-16 13:03:58 +00:00
ceriel
9407523510 prevent core dump when the input file is not present 1989-08-15 09:06:26 +00:00
ceriel
04dcaf5685 did not handle -0.0 right 1989-08-15 09:04:49 +00:00
ceriel
650c178631 fix: did not handle 0.0 right 1989-08-15 09:02:38 +00:00
ceriel
92bccdd4fa inline FEF code for M68881 was wrong; replaced bu subroutine call 1989-08-10 14:17:50 +00:00
ceriel
048099535a removed old dependency on EM_WSIZE 1989-08-10 09:23:44 +00:00
ceriel
8a096ffacb removed old comment 1989-08-09 16:38:12 +00:00
ceriel
5b23cab8e9 removed old EM_WSIZE dependency 1989-08-09 16:34:27 +00:00
ceriel
f755d6683d fix to fix: did not handle negative arguments right 1989-08-09 16:29:15 +00:00
ceriel
8279a37642 made more ANSI conformant 1989-08-09 16:25:50 +00:00
ceriel
be3597ddbe fixed: arguments to fputs were the wrong way around 1989-08-09 16:22:59 +00:00
ceriel
5785bb133b fixed problem with fef on Infinity 1989-08-09 14:37:37 +00:00
ceriel
98f011552e improved rounding 1989-08-09 14:37:07 +00:00
ceriel
d277946286 changed name of some identifiers to more accurately represent their
meaning, and fixed a problem with sometimes not detecting overflow in
constants
1989-08-08 09:11:32 +00:00
ceriel
b1347283b9 Added warning for initializer of formal parameter (the syntax allows this!) 1989-08-02 11:26:51 +00:00
ceriel
a1a78e3b70 include mach directory (for con_float) 1989-08-02 10:34:49 +00:00
ceriel
47955d174e fixed typo 1989-08-02 09:47:27 +00:00
ceriel
c302ed167c much improved version 1989-08-01 16:40:28 +00:00
ceriel
94a4bbb268 some fixes: representation for 0, and corrected check for overflow 1989-08-01 16:34:01 +00:00
ceriel
2b2698c44c Added fp68881.s 1989-08-01 16:32:34 +00:00
ceriel
3ed9932864 removed #define for IEEEFORMAT; now, the floating point package always
uses this format
1989-07-31 15:15:41 +00:00
ceriel
37379d70ba some fixes: fif did loose too many bits; unnormalized form did not work 1989-07-31 15:10:54 +00:00
ceriel
338fb5fb30 use con_float routine 1989-07-31 15:10:36 +00:00
ceriel
d12053873a adapted for changed floating point package 1989-07-31 14:54:53 +00:00
ceriel
ed19a3d568 removed IEEEFORMAT #define 1989-07-31 14:52:45 +00:00
ceriel
6572fa2def use con_float file, and use new interface to fif and fef routines 1989-07-31 14:50:19 +00:00
ceriel
066c005493 Added #define for CODE_GENERATOR 1989-07-31 14:45:40 +00:00
ceriel
0ad83c648e fixed interface to fef routines 1989-07-31 14:43:51 +00:00
ceriel
1280176fb0 removed IEEEFORMAT #define, and define USE_DIVIDE for i386 1989-07-31 14:35:34 +00:00
ceriel
022b40d40c use new interface to fif and fef routines 1989-07-31 14:34:23 +00:00
ceriel
fc9e01c8d8 removed IEEEFORMAT #define 1989-07-31 14:32:08 +00:00
ceriel
0ef99949bc use con_float file, and use new interface to fif and fef routines 1989-07-31 14:25:53 +00:00
ceriel
3e194345cf Added #define for buffer size needed for flt_flt2str() 1989-07-31 13:05:51 +00:00
ceriel
990e7a67da Added some assertions 1989-07-31 12:55:33 +00:00
ceriel
ef8450fce9 use con_float file, and use new interface to fif and fef routines 1989-07-31 11:42:27 +00:00
ceriel
4759f1c9f9 use con_float file 1989-07-31 11:22:43 +00:00
ceriel
53ce9da827 fixed some bugs, added flt_umin 1989-07-28 14:13:39 +00:00
ceriel
3d644d25cb needs tail_mon for all languages 1989-07-27 10:22:26 +00:00
ceriel
5f35d0c644 fixed behaviour on too long floating point constants 1989-07-26 11:16:59 +00:00
ceriel
90101c0dec Added ext_comp.c 1989-07-26 11:08:24 +00:00
ceriel
6f9afbf0d5 use IEEE format in floating point package 1989-07-25 15:50:29 +00:00
ceriel
f7360f0fec many changes, to use IEEE format 1989-07-25 14:21:09 +00:00
ceriel
c7be2d1a44 bug fix in NGI for longs 1989-07-24 10:40:21 +00:00
ceriel
52a8f7d1f1 needed ldexp routine for exp.c 1989-07-19 14:51:19 +00:00
ceriel
c09e4ced7e main.old is not always present, so ignore exit status of 'size main.old' 1989-07-19 14:27:19 +00:00
ceriel
36fb149236 new directory for Pascal front-end 1989-07-19 09:01:57 +00:00
ceriel
a0eb2f398d LIBSUF must be 'a', not 'ma' 1989-07-19 08:56:46 +00:00
ceriel
c6cbc82178 merged -m flag with -j flag 1989-07-17 16:40:18 +00:00
ceriel
3e357f311f documented environment variables, changed EM_DIR into ACKDIR 1989-07-17 16:19:10 +00:00
ceriel
228fe4b4d0 undef PASS_BIG_VAL_AS_VAR for now; it does not work properly in all cases 1989-07-17 15:37:04 +00:00
ceriel
b1ee8fe36b fixed a problem with the store: we sometimes lost some memory 1989-07-17 15:13:09 +00:00
ceriel
09a52b8cf2 fixed a problem with recursive macros: this was not always detected 1989-07-14 09:51:02 +00:00
ceriel
b07825aee3 exponent was wrong in divide routine; corrected 1989-07-13 11:18:02 +00:00
ceriel
cee897ecfa procedure function --> function procedure 1989-07-12 10:59:16 +00:00
ceriel
02c5bf9140 changed lay-out of manual page a bit 1989-07-12 09:48:15 +00:00
ceriel
f62db3f3c6 Added #define for Free, improved text 1989-07-11 17:02:07 +00:00
ceriel
c8ca61ba6e con_float now uses the flt_arith module 1989-07-11 14:17:34 +00:00
ceriel
7455c23f0f tail_mon needed for .e 1989-07-11 12:52:00 +00:00
ceriel
347197573b made to compile, added proper cast 1989-07-11 12:48:40 +00:00
ceriel
1b08effa77 Added some %persistents, improved behaviour of preprocessor, and other
minor mods
1989-07-11 12:34:38 +00:00
ceriel
c483664bb1 made names of some files shorter 1989-07-11 11:38:52 +00:00
ceriel
96916a7ab4 there is no longer a lib directory; it is replaced by ../libce 1989-07-11 11:34:51 +00:00
ceriel
1e9c82d6e5 made to work, and added the b64 shift routines to the interface 1989-07-11 09:15:17 +00:00
ceriel
a7b5504034 new mechanism for floating point constants 1989-07-10 17:15:55 +00:00
ceriel
c820d77690 new floating point constant mechanism 1989-07-10 16:52:02 +00:00
ceriel
1c848c8db3 Added flt_arith 1989-07-10 11:25:02 +00:00
ceriel
c20a2155fa Initial revision 1989-07-10 11:17:19 +00:00
ceriel
811612634a replaced some db.. instructions; they are wrong if the count register
contains a count > 65535
1989-07-07 16:01:03 +00:00
ceriel
00c4a00675 replaced some db.. instructions; they are wrong if the count register
contains a count > 65535
1989-07-07 15:11:35 +00:00
ceriel
b32fb46dfe replaced some db.. instructions; they are wrong if the count register
contains a count > 65535
1989-07-07 15:05:33 +00:00
ceriel
01a95e3b08 replaced some db.. instructions; they are wrong if the count register
contains a count > 65535
1989-07-07 13:53:37 +00:00
ceriel
46b57440a0 made a bit more robust 1989-06-30 14:46:27 +00:00
ceriel
7d131a2cd5 fix: did not work when called from different directory 1989-06-29 11:03:23 +00:00
ceriel
55da4da081 some fixes 1989-06-28 12:51:16 +00:00
ceriel
3aec06a088 Added ret.s 1989-06-28 12:40:22 +00:00
ceriel
7fadcacc26 fixed bug: the assembler suppressed a relocation record because it
thought it was RELPC. It was not
1989-06-27 16:26:02 +00:00
ceriel
cd8f86a7e4 Added descriptions for EM machines 1989-06-27 15:46:58 +00:00
ceriel
58f837cd33 fixed reading of archives 1989-06-27 15:41:47 +00:00
ceriel
b005d26d3f removed the ACKFLOAT #define 1989-06-27 13:17:39 +00:00
ceriel
1ae39bf15b Added con_float, for floating point constants 1989-06-27 13:16:17 +00:00
ceriel
f781103cb4 removed some useless PushBack's, and added warnings 1989-06-27 11:43:26 +00:00
eck
27d7d5ed68 various fixes and improvements 1989-06-26 10:37:05 +00:00
ceriel
11349c78cd use better algorithms for some mathematical functions 1989-06-20 13:10:32 +00:00
ceriel
6d78cd6710 bug fix: printed some reals wrong 1989-06-20 11:43:01 +00:00
ceriel
9e151cf706 Added routines to read and write LONGREALS 1989-06-20 11:23:43 +00:00
ceriel
761312d0dd use new math algorithms 1989-06-19 16:22:23 +00:00
ceriel
8b702734cf use new math routines 1989-06-19 15:56:30 +00:00
ceriel
d4389da709 initialize variable inheader 1989-06-19 11:31:22 +00:00
ceriel
197f5bc796 generated with newer makefile generator 1989-06-19 11:30:37 +00:00
ceriel
869ba1ec9e use make_asobj 1989-06-19 11:27:36 +00:00
ceriel
0374c089c3 Added some patterns for floating point code 1989-06-19 11:24:10 +00:00
ceriel
eabc223bf0 generated stupid code for long unsigned comparison 1989-06-19 11:23:08 +00:00
ceriel
9953b58092 don't remove compiler generated labels when they are external 1989-06-19 11:19:22 +00:00
ceriel
1205b95090 use different (better) hashing algorithm 1989-06-19 11:17:41 +00:00
ceriel
a9102764e6 Added ranlib line 1989-06-19 11:16:53 +00:00
ceriel
c48f281b39 Avoid I/O buffering when using the checking malloc 1989-06-19 11:10:58 +00:00
ceriel
e2b5163869 avoid a null-reference 1989-06-19 11:09:44 +00:00
ceriel
f99f25cc5f fix: sizes were the wrong way around for MAXINSTR 1989-06-19 09:57:35 +00:00
ceriel
b11e382851 some minor corrections 1989-06-19 09:56:16 +00:00
ceriel
3824cfd66d fixed some leapyear problems 1989-06-19 09:50:38 +00:00
ceriel
96a52f7a6f fixed exit status of test program 1989-06-19 09:49:22 +00:00
ceriel
f3249a04a1 versions for new Pascal compiler 1989-06-19 09:46:29 +00:00
ceriel
53b430aed6 fixed some typos 1989-06-15 19:50:14 +00:00
ceriel
eee6d61c7b improved Makefile, fixed writes: a field width of 0 is not standard 1989-06-15 19:11:01 +00:00
ceriel
676aee2213 Added call to C_close in the fatal routine 1989-06-15 19:08:18 +00:00
ceriel
b1c3d1bc53 fixed problem with void returns and changed a warning somewhat 1989-06-15 19:06:56 +00:00
ceriel
56e985729d some added patterns for M688881, and a fix 1989-06-15 10:35:42 +00:00
ceriel
4dfa2310fc continue when an include file is not found 1989-06-15 09:16:27 +00:00
eck
cd367c7940 Initial revision 1989-06-14 16:11:19 +00:00
eck
8c9800d8fe Initial revision 1989-06-14 15:07:06 +00:00
eck
06c441dab7 Initial revision 1989-06-14 14:41:35 +00:00
eck
5406895717 Initial revision 1989-06-13 11:23:28 +00:00
eck
341aaf8dc1 Initial revision 1989-06-12 15:22:14 +00:00
ceriel
8b21acdbb3 removed old Pascal error files 1989-06-12 14:24:17 +00:00
ceriel
e8aadf4409 some optimizations for M68881; it is still horrible, though 1989-06-12 14:05:25 +00:00
ceriel
43fb961091 Added simple support for M68881 1989-06-12 09:30:39 +00:00
ceriel
74bc0442bd Added some flags 1989-06-09 15:07:54 +00:00
ceriel
133ecee90d fixed typo 1989-06-09 09:53:29 +00:00
ceriel
2b8ee048c8 Added saving of registers 1989-06-09 09:32:40 +00:00
ceriel
3b4a813a6c installed new Pascal compiler 1989-06-08 13:05:21 +00:00
ceriel
018cf665d8 some additions to .distr file 1989-06-08 13:02:26 +00:00
ceriel
2cd40f68e6 Added support for MC68881 floating point processor 1989-06-08 12:46:17 +00:00
ceriel
64a35f954d leave register messages with a count of 0 1989-06-05 15:47:53 +00:00
ceriel
cc3459e5a8 fix to constant unary minus 1989-05-31 12:42:56 +00:00
ceriel
ced856c234 improved fix 1989-05-30 14:50:16 +00:00
ceriel
e6fb294aac transform HOL into BSS so that IL does not get confused 1989-05-30 14:32:12 +00:00
eck
69f02d8abc Initial revision 1989-05-30 13:34:25 +00:00
ceriel
8f2fe1c003 token references in EM replacements do not work. Give error message 1989-05-30 12:20:54 +00:00
ceriel
6266743c4c static links are not considered read-only anymore 1989-05-30 10:44:34 +00:00
ceriel
7c26c21b87 fixed typo, which resulted in memory fault 1989-05-30 10:41:42 +00:00
ceriel
2f81a59738 removed printf.s, put in dia.s 1989-05-30 10:38:45 +00:00
ceriel
3d7da616bf Added files 1989-05-29 14:45:56 +00:00
ceriel
013ccf9149 changed printf name: removed underscore 1989-05-29 14:42:18 +00:00
ceriel
ce81b47935 removed printf.s 1989-05-29 14:40:51 +00:00
ceriel
aa0e321971 some fixes 1989-05-29 11:32:23 +00:00
ceriel
aaea752423 Added version number to binary 1989-05-29 11:17:40 +00:00
ceriel
4a1f9bbc22 bug fix: did not handle #elif right 1989-05-29 11:11:34 +00:00
ceriel
c1075bd08c Added Version.c 1989-05-29 10:32:46 +00:00
ceriel
fd4e81f64e Modified to make the default M2 compiler name definable at compile time 1989-05-29 10:27:54 +00:00
ceriel
fdcad08fdf fixed typo 1989-05-25 17:22:27 +00:00
ceriel
efe2c8d032 some more fixes 1989-05-18 18:02:24 +00:00
ceriel
e431cec90a fixed some errors 1989-05-18 16:48:28 +00:00
ceriel
9f7ee118f7 new versions, mostly from Cody and Waite 1989-05-18 15:37:54 +00:00
ceriel
03d44703a2 bug fixes 1989-05-16 16:02:46 +00:00
ceriel
f45eda8c23 call .sts instead of .sti for STS instruction 1989-05-16 15:44:49 +00:00
ceriel
57106471dc some fixes 1989-05-16 15:41:36 +00:00
ceriel
4220dc1479 some fixes 1989-05-16 14:48:47 +00:00
eck
d818da36f0 Initial revision 1989-05-16 13:13:53 +00:00
ceriel
13bc7e128d a trap from a routine called by the termination sequence could
cause an infinite loop. This is prevented
1989-05-12 09:36:16 +00:00
ceriel
7531131416 fix: kills line for STI 1 with ADDR_LOCAL was wrong 1989-05-11 13:55:31 +00:00
eck
ee50a1d717 Initial revision 1989-05-11 12:32:26 +00:00
ceriel
3c8a8f0349 fixes: you cannot do stack-references in EM replacements! 1989-05-11 11:25:16 +00:00
ceriel
5a9d09a854 some fixes 1989-05-11 10:57:34 +00:00
ceriel
b7c7d50513 fixed typo 1989-05-11 10:43:37 +00:00
eck
c5b0e1bd4f Initial revision 1989-05-11 10:21:37 +00:00
eck
749c364816 Initial revision 1989-05-11 10:09:52 +00:00
eck
0a7c058d01 Initial revision 1989-05-10 16:22:28 +00:00
eck
d2f7f252b2 Initial revision 1989-05-10 16:08:14 +00:00
eck
f0cec58cf9 Initial revision 1989-05-10 10:43:58 +00:00
eck
85c9115d5b converted to ANSI C 1989-05-10 10:20:14 +00:00
ceriel
fdf26a7f06 reversed a-option 1989-05-10 10:19:22 +00:00
eck
d20988a1cb Initial revision 1989-05-10 09:39:49 +00:00
ceriel
c1ff4f2725 default is assertions ON 1989-05-09 15:54:01 +00:00
ceriel
b3e42570bb updated for new Pascal version 1989-05-09 13:49:25 +00:00
ceriel
ff4f0602ff Added 'all' entry 1989-05-08 12:42:53 +00:00
ceriel
d62d0c68ee not include em_path.h anymore 1989-05-08 12:39:33 +00:00
eck
0a60d5f585 updated for new pascal compiler 1989-05-08 10:04:50 +00:00
ceriel
600d569269 removed printf 1989-05-03 11:14:42 +00:00
ceriel
a94dec52d8 Many improvements by Hans van Eck 1989-05-03 10:30:22 +00:00
ceriel
19638876a1 Adapted for new Pascal Compiler 1989-05-03 09:53:25 +00:00
ceriel
948aa06740 fixed: signed divide by power of 2 not equivalent to shift-right 1989-05-02 18:00:37 +00:00
ceriel
bc1ab42895 some fixes 1989-05-01 18:32:24 +00:00
ceriel
dfc5d7318c Added cemain entry in Resolve script 1989-04-26 11:32:46 +00:00
ceriel
eb6c2af313 fix: M_DMAXEXP was wrong 1989-04-20 15:27:00 +00:00
ceriel
e967e920be removed one goto 1989-04-19 15:00:07 +00:00
ceriel
b7a6b75155 new pascal compiler 1989-04-18 13:34:50 +00:00
ceriel
9c24d8f3fe just define unix, not unix=unix 1989-04-18 10:35:57 +00:00
dick
0afe372ebb some printf format corrections 1989-04-17 10:10:59 +00:00
ceriel
6d9d69aebf take care of proper exit status 1989-04-14 18:33:56 +00:00
ceriel
ec3d8bb5aa fix: filename label sometimes turned up as external 1989-04-14 18:25:39 +00:00
ceriel
6e75af9cef make entry to generate .o files 1989-04-11 15:51:01 +00:00
ceriel
944c818096 Corrected some warnings a bit 1989-04-11 14:34:21 +00:00
ceriel
6f8702a65e fixed problem with hex numbers, and use new PushBack feature 1989-04-11 11:40:49 +00:00
ceriel
4d5f61ce45 fixed clock for larger word sizes 1989-04-07 09:20:06 +00:00
ceriel
50114318e2 fixed typo 1989-04-06 14:18:17 +00:00
ceriel
ff853d748c using new input module simplifies EOI handling 1989-04-04 15:02:47 +00:00
ceriel
0995f7a809 better error handling, simplified EOI handling with improved input module 1989-04-04 14:53:48 +00:00
ceriel
6877184666 improved version with better PushBack 1989-04-04 14:49:31 +00:00
ceriel
3030b5edd1 better attempt to indicate start and end of own BSS; still not good
enough
1989-04-04 10:09:27 +00:00
ceriel
1b6fe5b9ed Added DUP pattern 1989-04-04 09:46:47 +00:00
ceriel
c847bfb6c8 improved ASP patterns 1989-04-03 16:16:10 +00:00
ceriel
7a7d0e413b recognize but ignore #pragma 1989-03-31 11:47:12 +00:00
ceriel
d650e927a7 recognize but ignore #pragma 1989-03-31 10:56:53 +00:00
ceriel
87c1bc774b fix to fix 1989-03-30 15:14:37 +00:00
ceriel
f1c6de0f1f fix: initialize relocation records properly: some fields that are
not used on SunOs 3.5 are used on SunOs 4.0
1989-03-30 14:36:07 +00:00
ceriel
96840e712d fix: prevent unwanted sign-extension in the get4 routine 1989-03-30 09:34:43 +00:00
ceriel
6ac4bb17aa check arguments better 1989-03-29 14:58:42 +00:00
ceriel
4797a7d4ce make realloc behave like most Unix realloc versions when handed a
null pointer
1989-03-29 12:58:18 +00:00
ceriel
c5345bf6ac Changed semantics of CallAtEnd so that it calls installed procedures
in reversed order
1989-03-22 17:36:20 +00:00
ceriel
61f0a89372 declare extnd_main 1989-03-22 16:55:06 +00:00
ceriel
b296ddc4a0 documented extnd_main 1989-03-22 16:46:38 +00:00
ceriel
96c4943ef7 Added extnd_main routine 1989-03-22 16:44:20 +00:00
ceriel
d763d3ddeb fixed: beginpart must divert main stream 1989-03-22 16:41:38 +00:00
ceriel
52d3ee55e2 Added ce and libce to .distr 1989-03-22 15:16:36 +00:00
ceriel
eef9b6237b Initial revision 1989-03-22 15:06:05 +00:00
ceriel
4e21aced73 bug fix in WITH statement: called WalkDesignator instead of ChkDesig 1989-03-22 11:07:21 +00:00
ceriel
3a3b5db45d made the previous changes in parameter passing mechanism and return
value mechanism settable with compile time constants
1989-03-22 09:53:47 +00:00
ceriel
f9b6acf1dc New version with different parameter passing mechanism and some
minor fixes
1989-03-20 13:32:06 +00:00
ceriel
346bc839a3 use value parameters when VAR not needed 1989-03-20 13:03:34 +00:00
ceriel
9379157da7 use value parameters when VAR not needed 1989-03-20 12:46:25 +00:00
ceriel
a432f84eb0 more fine-tuning 1989-03-20 12:36:22 +00:00
ceriel
88ebd891b1 generate -c instead of -c.$(SUFFIX) 1989-03-17 17:06:21 +00:00
ceriel
3ecaa0b634 some fixes: fix order in which registers are allocated, make sure that
a pattern chosen by the distance routine can be made from the stack if the
fakestack does not contain enough tokens
1989-03-17 16:49:58 +00:00
ceriel
11cb7edde4 Also put the unstackset in tables.c, so that ncg can look at it 1989-03-17 16:34:39 +00:00
ceriel
1e3877b595 documented null-string behaviour 1989-03-16 15:41:43 +00:00
ceriel
7ed597eefc Added tables1 files to .distr 1989-03-16 11:32:16 +00:00
ceriel
c69004d5df Added pattern for BLS 4 1989-03-16 11:21:37 +00:00
ceriel
c1fc03b7e2 fixed typo's 1989-03-16 11:20:47 +00:00
ceriel
bfe38b6f40 no dependencies in suffix rules 1989-03-15 13:28:52 +00:00
ceriel
bb83c44309 fixed the arctan routine 1989-03-15 13:16:40 +00:00
ceriel
6218df1293 improved error message for no RETURN from function procedure 1989-03-15 10:46:27 +00:00
ceriel
21a8f93bc7 adapted for larger function result area 1989-03-14 15:36:33 +00:00
ceriel
fb0051c85a fixed: pattern for ADI STL and the like was wrong 1989-03-14 14:05:10 +00:00
ceriel
101e93205b some more improvements; made fancy modes dependant on #define 1989-03-14 12:47:11 +00:00
ceriel
5980b1e5ec return area has maximum size 2*pointer-size 1989-03-14 12:28:55 +00:00
ceriel
944898dd40 updated to current situation 1989-03-14 11:03:24 +00:00
ceriel
c81a6a0c7a better warnings for unused/undefined parameters 1989-03-13 15:04:05 +00:00
ceriel
0975784c8d some changes for more fine-tuning 1989-03-13 14:12:22 +00:00
ceriel
183942e70c made return value of topsize an unsigned. Some 2/4 back-ends do
not implement BLS 4
1989-03-10 14:03:34 +00:00
ceriel
162b824030 Changed method for returning big values; Instead of using a chunk of
global data area, caller creates space on the stack just above parameters
to store the result
1989-03-10 10:40:07 +00:00
ceriel
18d134bda7 put saved label in correct segment 1989-03-10 10:08:22 +00:00
ceriel
33992b426d fix: when looking for f.i. C_loe.., forgot to reset to_change when found 1989-03-10 10:06:47 +00:00
ceriel
f740dcf176 cleaner versions of Makefiles 1989-03-10 09:47:41 +00:00
ceriel
24f3f2f10e updated to ed4 1989-03-08 17:28:08 +00:00
ceriel
15beade4d2 Added code-expander documentation 1989-03-07 16:25:32 +00:00
ceriel
ae34da5376 simplified a bit 1989-03-07 10:33:47 +00:00
ceriel
3370f962a4 undid some changes; they were not effective 1989-03-07 10:29:15 +00:00
ceriel
ab1b682800 changed lint flags 1989-03-07 10:27:22 +00:00
ceriel
23f2646704 use general as pointer flag added 1989-03-07 10:24:32 +00:00
ceriel
15449606d1 bug fix: if a case-statement did not have a default, so that the
default is the successor of the block containing the CSA/CSB instruction,
the branch to the CSA/CSB block was not optimized
1989-03-07 10:11:24 +00:00
ceriel
b708373ff8 use $(REFER) instead of refer 1989-03-07 10:00:45 +00:00
ceriel
3a3db29339 fix to fix 1989-03-07 09:26:42 +00:00
ceriel
d97abb0763 avoid null-reference if some nonterminal is not defined 1989-03-06 18:48:30 +00:00
ceriel
bf62834959 commented out some code 1989-03-06 18:15:50 +00:00
ceriel
7e2d5f6065 commented out some code 1989-03-06 18:02:53 +00:00
dick
1d0b3910b2 more lint code 1989-03-06 15:17:39 +00:00
ceriel
bb7b8d6490 fixed problem with size option 1989-03-03 17:53:31 +00:00
ceriel
6030127779 brought up-to-date, and documented back-interface better 1989-03-03 17:09:28 +00:00
ceriel
018d91b6a1 Added options 1989-03-03 16:16:52 +00:00
ceriel
a1b4e28760 Added a local extension: procedure constants 1989-03-03 16:13:45 +00:00
ceriel
e8aab09b4b some improvements and corrections 1989-03-03 15:16:12 +00:00
ceriel
62729ad0b2 Added some patterns 1989-03-03 12:46:59 +00:00
ceriel
0fe88af93e Initial revision 1989-03-03 11:41:29 +00:00
ceriel
0e3f85e837 Added some patterns 1989-03-03 11:10:13 +00:00
ceriel
26e5032b9c Added some patterns 1989-03-03 10:36:42 +00:00
ceriel
ac2b7f8d44 replace more multiplies by shifts 1989-03-02 18:56:05 +00:00
ceriel
3ab954e38c adapted to new ordering in FILE struct 1989-03-02 11:24:55 +00:00
ceriel
bc1eb3116e made several patterns dependant on a #define. Using some of the
fancy addressing modes actually made the code slower.
1989-03-01 16:28:18 +00:00
ceriel
847c27663b avoid spurious error messages about missing #endif 1989-03-01 13:39:50 +00:00
ceriel
992dc3eb65 Many new patterns 1989-03-01 11:32:37 +00:00
ceriel
da2ba8e093 Added some patterns 1989-03-01 11:28:49 +00:00
ceriel
a22bbe847f use calloc instead of malloc, to make sure block is initialized to 0 1989-03-01 10:00:37 +00:00
ceriel
5c7325e0de fix: tst instruction also allowed on address register 1989-02-28 18:40:35 +00:00
ceriel
ef6efdee12 simplified CFF somewhat 1989-02-24 14:58:21 +00:00
ceriel
4c755666b8 fixed bug in Usage line 1989-02-24 14:53:49 +00:00
ceriel
587a8e8274 Added patterns and made some improvements 1989-02-24 14:09:46 +00:00
ceriel
80d87777f0 Added pattern for unlk after stack adjustment 1989-02-24 13:34:49 +00:00
ceriel
c3408302c1 better rule for LOE LOF DUP ADP ... 1989-02-23 17:59:30 +00:00
ceriel
c6a806ac4d generate better code for LOL ADP STL 1989-02-23 15:46:46 +00:00
ceriel
b4e24c5bdd bug fix: some variables were not initialized all the time 1989-02-23 10:40:12 +00:00
ceriel
6f4bdccf04 removed prt_ext 1989-02-23 10:08:20 +00:00
ceriel
19c225f75f fixed error in previous commit 1989-02-22 17:38:07 +00:00
ceriel
f2c241fe3a do not depend on SP for restoring registers 1989-02-22 17:18:34 +00:00
ceriel
13c2a9a2a5 changed interface to CSA and CSB 1989-02-22 17:18:17 +00:00
ceriel
5187e46404 speeded up a bit 1989-02-22 16:16:11 +00:00
ceriel
b1626ca895 try to move side effects as much as possible to the left of the
expression tree, to avoid stacking. This is not good enough yet!
1989-02-22 16:16:08 +00:00
ceriel
4fd066bb54 many improvements to the table, mostly to make it more readable
and less chaotic. Also removed some dummy routines in mach.c
1989-02-22 16:13:51 +00:00
ceriel
b37c8b0b24 improve signal handling of Floating Point Exception 1989-02-21 10:49:51 +00:00
ceriel
6beb10355e changed entry points csa and csb 1989-02-21 10:11:26 +00:00
ceriel
3b61d605c1 fixed syntax error in table 1989-02-21 10:09:22 +00:00
ceriel
75c18ef56c changed entry points csa and csb; strscript should call m68020
instead of acc
1989-02-21 10:09:01 +00:00
ceriel
432cf9054d changed entry points for csa and csb 1989-02-21 10:05:03 +00:00
ceriel
d5b2601b8f use a larger buffer on larger machines 1989-02-21 10:01:55 +00:00
ceriel
30959cd73f some fixes: calloc was wrong; catch traps, and let divides
by 0 generate a signal, if on a unix machine
1989-02-20 18:01:33 +00:00
ceriel
8aee01de95 made easier to compile with different compiler 1989-02-20 15:29:10 +00:00
ceriel
c096cc6522 fixed; did not work because there was no dependency on as_lib.a 1989-02-20 15:25:27 +00:00
ceriel
a4178ca843 do not catch floating point exceptions anymore 1989-02-17 09:58:06 +00:00
ceriel
9751e398e3 Made easier to use other compiler 1989-02-16 16:33:29 +00:00
ceriel
f7790b0e8e empty string in directory list now means current directory 1989-02-16 11:46:39 +00:00
ceriel
1e19db9d3a empty string in directory list now means current directory 1989-02-16 11:24:01 +00:00
ceriel
00ac6f88a7 empty string in directory list now means current directory 1989-02-16 11:18:44 +00:00
ceriel
188b1df96d fixed; the previous change was wrong 1989-02-16 11:14:22 +00:00
ceriel
9baa112ea1 Handle empty string in search path; It means: current directory 1989-02-16 10:48:06 +00:00
ceriel
59ea3478ac Add include directory when compiling head 1989-02-16 09:40:52 +00:00
ceriel
4da1930ff4 Initial revision 1989-02-15 16:39:58 +00:00
ceriel
0c19cc22e0 fixed some incorrect kills 1989-02-15 11:39:13 +00:00
ceriel
fcc033df20 Initial revision 1989-02-14 18:03:13 +00:00
ceriel
01626b2c32 Initial revision 1989-02-14 15:52:25 +00:00
ceriel
eb3dcf275e fixed some problems, updated with cemcom 1989-02-14 14:35:38 +00:00
ceriel
4629647d78 fixed wrong count in popping parameters 1989-02-14 14:10:31 +00:00
ceriel
ebce0b4a18 New coroutine mechanism incorporated 1989-02-13 18:41:17 +00:00
ceriel
7b2e749b0d make runtime error messages emacs-compatible 1989-02-13 18:28:17 +00:00
dick
429d527a64 more and better declarations in c.llb 1989-02-10 16:46:01 +00:00
ceriel
5a4933ff7f Try to allocate to the next power of 2, instead of just aligning
with GRABSIZE; This way, malloc(1000000) followed by free() followed by
another malloc(1000000) will result in the same block being allocated,
because first_present will now find it
1989-02-10 09:18:19 +00:00
ceriel
7161d59956 Added documentation about priority and optimizer keywords 1989-02-09 16:17:00 +00:00
ceriel
76cb7a0b33 Added some comments 1989-02-09 15:58:34 +00:00
ceriel
760ee8362e Fix: current distribution is 4th 1989-02-09 15:57:27 +00:00
ceriel
d7ce393510 Adapted; Do not use /dev/tty 1989-02-09 15:55:33 +00:00
ceriel
b005246ad5 Added Algol68S 1989-02-09 15:53:09 +00:00
ceriel
3b922f1292 fix: CHR expects a CARDINAL parameter 1989-02-09 15:43:28 +00:00
ceriel
62d8930080 deleted makefile from distribution; Added some comments about this to
the README file
1989-02-09 15:43:25 +00:00
ceriel
dbe4e49936 New method of calling optimizers; fixed lint entry in Makefile 1989-02-09 14:08:47 +00:00
ceriel
683c162cff New method of calling optimizer; Added Algol68S 1989-02-09 13:46:32 +00:00
ceriel
b11b5996c1 minor correction 1989-02-09 13:26:24 +00:00
ceriel
d79ad333bf *** empty log message *** 1989-02-09 13:24:20 +00:00
ceriel
86ace8a020 Fixed lintflags 1989-02-09 11:33:11 +00:00
ceriel
dfca9ea600 fixed lint options; Added -O<num> option 1989-02-09 11:22:24 +00:00
ceriel
6fc4ca1ae0 The s option now gives a percentage of the size of the input 1989-02-09 10:18:48 +00:00
ceriel
dcde07e7a7 use pusha and popa instructions, and on the proper place 1989-02-08 15:47:22 +00:00
ceriel
cd70a74d25 Added 1989-02-08 15:29:51 +00:00
ceriel
e91749bbce Added 1989-02-08 15:19:42 +00:00
ceriel
143abc2420 Initial revision 1989-02-08 15:12:03 +00:00
ceriel
f682c264a8 Initial revision 1989-02-08 14:57:48 +00:00
ceriel
fb88f5dbdd fixed problem with importing enumeration literals 1989-02-08 10:24:10 +00:00
ceriel
7c22618cb8 make sure that every command ends up in the same directory where it started 1989-02-08 09:44:32 +00:00
ceriel
81f2477282 Adapted to our installation 1989-02-08 09:38:15 +00:00
ceriel
be89699a1a fixed return value of signal 1989-02-08 09:29:27 +00:00
ceriel
04e2dac8e7 replaced some BSS by CON; The order in memory is important!
Adapted to our installation
1989-02-08 09:23:46 +00:00
ceriel
6fec436051 use an ed script instead of an ex script; more portable 1989-02-07 17:54:33 +00:00
ceriel
a13ea6d098 fix in IMUL, define DEBUG 1 1989-02-07 14:30:47 +00:00
ceriel
0bc88b77b2 fixed several problems:
- hex numbers and floating point numbers were wrong
- grammar was wrong; did not accept correct ANSI C
- prototype updates did not work
- float parameters to routines without prototype were not upgraded to double
- the dot operator no longer requires lvalue as left-hand-side
1989-02-07 13:16:02 +00:00
ceriel
9dcae8fcd0 made arg_error dependent on DEBUG; fixed cmp instruction in as_table 1989-02-07 11:42:28 +00:00
ceriel
fa6900fbbc made back.a dependent on some C files in this directory 1989-02-07 11:32:47 +00:00
ceriel
c64da88289 Added FORMAT information for our lint; Documented the _format routine 1989-02-07 11:17:22 +00:00
ceriel
f3584b3d52 made back.a dependent on some C files in this directory 1989-02-07 11:12:13 +00:00
ceriel
1e9d815c92 Documented need of em_data.a for libeme.a 1989-02-07 11:11:57 +00:00
ceriel
926da49d39 Initial revision 1989-02-07 11:04:05 +00:00
ceriel
e2fe3fec2c increment error count on errors 1989-02-07 09:50:28 +00:00
ceriel
c3f7993b1a fixed problem in sizeof() 1989-02-06 19:06:55 +00:00
ceriel
37fd03b14b some fixes 1989-02-06 15:15:27 +00:00
ceriel
687d428026 move to address register does not set condition codes 1989-02-06 15:11:49 +00:00
ceriel
929716a621 Improved label handling and handling of jumps to jumps 1989-02-06 14:39:08 +00:00
ceriel
e0c7813927 Added some patterns for LOC LOC CII followed by test on (in)equality to 0 1989-02-06 14:38:21 +00:00
ceriel
732d0eac5c Bug fix in cast 1989-02-06 14:38:00 +00:00
ceriel
0ec10de716 Use our own preprocessor, added dependencies 1989-02-06 14:37:51 +00:00
ceriel
eca0cde913 changed order of registers, so that d0 is allocated first 1989-02-06 14:35:10 +00:00
ceriel
76684055eb some simplifications and a bug fix 1989-02-03 16:32:07 +00:00
ceriel
9ea59fd48a corrected print formats 1989-02-02 16:32:19 +00:00
ceriel
920ba0eebe delinted somewhat 1989-02-02 16:31:51 +00:00
ceriel
3b76fbc284 bitwise operators available now 1989-02-02 16:15:54 +00:00
ceriel
821e1e624b Added header 1989-02-02 16:10:15 +00:00
ceriel
55705b22ca improved pattern 1989-02-02 16:04:18 +00:00
ceriel
8127265043 Added some patterns 1989-02-02 16:01:13 +00:00
ceriel
c52b10c115 many changes, to make the make_* files more portable 1989-02-02 14:45:26 +00:00
ceriel
91853768f7 name changes 1989-02-02 14:41:24 +00:00
ceriel
42b647d9a9 as_back/const.h is deleted 1989-02-02 14:36:34 +00:00
dick
f70dfe4d00 better evaluation order checking in expressions 1989-02-02 13:57:07 +00:00
ceriel
f7df668450 delinted, added chstack.c 1989-02-02 13:24:50 +00:00
ceriel
1daac3c5d1 made arg_error dependant on DEBUG 1989-02-02 12:49:21 +00:00
ceriel
0291c897be hidden names, made arg_error dependant on DEBUG 1989-02-02 12:29:14 +00:00
ceriel
bf6a1eb0ba removed unused code 1989-02-02 12:27:33 +00:00
ceriel
542eb9a7d8 made arg_error dependant on a DEBUG constant, improved Makefile 1989-02-02 11:45:50 +00:00
ceriel
45a94c9858 made arg_error dependant on a DEBUG constant 1989-02-02 11:42:53 +00:00
ceriel
f3c29355f6 simplified a bit to make the resulting optimizer smaller; Added a
constant w2 that can be used in the patterns instead of 2*w
1989-02-02 11:41:31 +00:00
ceriel
9359e081db documented w2 1989-02-01 15:58:31 +00:00
ceriel
2930ebb406 fixed bug: OO_halfflush did not work properly 1989-01-31 10:33:59 +00:00
ceriel
3adeb611df include back.h file 1989-01-27 16:41:04 +00:00
ceriel
df69d70608 Changed some names 1989-01-27 14:15:55 +00:00
ceriel
8811a2af14 Makefile added 1989-01-27 13:22:55 +00:00
ceriel
d87e8f72a9 Makefile added 1989-01-27 13:10:44 +00:00
ceriel
7bcd261f8e minor mods 1989-01-27 13:09:37 +00:00
ceriel
039552a46c define CODE_EXPANDER 1989-01-27 12:41:43 +00:00
ceriel
c9df20878f improved Makefile 1989-01-27 12:02:55 +00:00
ceriel
b0fdc82616 put table in alphabetical order again 1989-01-26 17:10:18 +00:00
ceriel
766d76e712 moved definitions for extnd routines 1989-01-26 17:08:15 +00:00
ceriel
e72a36bbb2 renamed jump, prolog, and locals to C_jump, C_prolog, and C_locals 1989-01-26 15:42:50 +00:00
ceriel
8ae2077591 adapted to no longer need an as.h file 1989-01-26 15:20:56 +00:00
ceriel
945cceccb5 replaced Dutch comment 1989-01-26 14:47:03 +00:00
ceriel
7f0b775587 cleaned up a bit 1989-01-26 14:43:09 +00:00
ceriel
6ee3538d91 cleaned up a bit 1989-01-26 14:39:09 +00:00
ceriel
f58722ab46 replaced Dutch comments 1989-01-26 14:27:02 +00:00
ceriel
817facac14 Added prefix C_ to the names prolog, jump, and locals 1989-01-26 14:04:11 +00:00
ceriel
e6fb2468c8 change some names 1989-01-26 13:46:19 +00:00
ceriel
709cf50fbd changed identifier Hashitems 1989-01-26 13:41:31 +00:00
ceriel
811321b190 change some names 1989-01-26 13:39:03 +00:00
ceriel
5a18c3748d hide names, and remap public ones 1989-01-26 13:32:57 +00:00
ceriel
e92f8ac398 change some names 1989-01-26 13:24:23 +00:00
ceriel
3373e11923 previous fix was wrong; corrected 1989-01-26 10:58:30 +00:00
ceriel
2ec4640e7e Added includes 1989-01-26 10:52:51 +00:00
ceriel
3a546eb8dd be a bit more liberal with prefixes 1989-01-24 13:51:05 +00:00
ceriel
5e14dddb6c fix in compile time int2float conversion 1989-01-23 16:52:22 +00:00
ceriel
cc55ab947d evaluate switch-expression on a different spot,
allow for *STRING expressions
1989-01-23 15:37:57 +00:00
ceriel
11843b44a1 changed bss() into a macro 1989-01-20 15:19:33 +00:00
ceriel
1c570328f0 fixed parameter types 1989-01-20 15:01:37 +00:00
ceriel
b1b4ba9677 Added some conversions 1989-01-20 14:54:55 +00:00
ceriel
fa9d7ce5ce Added Makefile 1989-01-19 17:51:44 +00:00
ceriel
c951295521 Initial revision 1989-01-19 16:43:32 +00:00
ceriel
b45706ce7a delinted a little 1989-01-19 16:41:55 +00:00
ceriel
57dfee488a Added .distr 1989-01-19 16:26:18 +00:00
ceriel
6833adfb50 Initial revision 1989-01-19 16:20:46 +00:00
ceriel
4c76583aba simplified assertion 1989-01-19 13:48:09 +00:00
ceriel
d55d4bb69f fixed another POINTER TO IDENT problem 1989-01-19 10:58:43 +00:00
ceriel
b83fca4445 use STS and LOS routines 1989-01-19 09:16:15 +00:00
ceriel
6420525753 Added STS and LOS routines 1989-01-18 10:51:57 +00:00
ceriel
7c39967dc5 use STS and LOS routine 1989-01-18 10:51:06 +00:00
ceriel
406d024e9f change to keep lint happy 1989-01-17 11:23:33 +00:00
ceriel
ed34e06d2d Added floating point, fixed LPB 1989-01-17 11:05:02 +00:00
ceriel
9c5f0e8159 changes to hide names and some fixes 1989-01-17 10:27:55 +00:00
ceriel
b800af87af changes to hide names and some fixes 1989-01-17 09:48:32 +00:00
ceriel
56c0f3bc5b many improvements 1989-01-16 16:10:32 +00:00
ceriel
6ba5c0b850 Added patterns 1989-01-16 13:35:02 +00:00
ceriel
ac86c49d85 deleted some patterns; they caused loop 1988-12-14 17:55:02 +00:00
ceriel
46f633870d fixes and improvements 1988-12-14 15:33:20 +00:00
ceriel
b9417a3a55 Added patterns 1988-12-12 18:22:59 +00:00
ceriel
f4caec88e8 use C_con_cst instead of C_con_icon when possible;
fix sizeof(string) to return the size of the string instead of the size of
a pointer
1988-12-12 14:21:45 +00:00
ceriel
8e09304da7 Added extra explanation of on_valu field 1988-12-12 12:51:52 +00:00
ceriel
10157af05f fixed: the fgets replacement did not work properly 1988-12-08 16:18:29 +00:00
ceriel
66ae1083a8 Added some patterns 1988-12-08 13:21:07 +00:00
ceriel
8e15d114ac declare holno 1988-12-07 16:00:46 +00:00
ceriel
87d0349814 handle local commons in one place only 1988-12-06 13:22:34 +00:00
ceriel
18b719de80 killbss routine smarter now; does not overwrite all BSS; did not work
as it should, because systemcall interface also uses the fact that BSS = 0
1988-12-02 15:39:59 +00:00
ceriel
5252b760d9 handle intorcard_type better in case statements 1988-11-29 13:13:03 +00:00
ceriel
73ac23824b changed error messages, initialize bss with funny value, and be
somewhat more conservative with memory usage
1988-11-28 12:54:38 +00:00
ceriel
da11deeece improved interface 1988-11-25 13:49:07 +00:00
ceriel
9eb1f7a67b cleaned up interface a bit 1988-11-24 11:46:31 +00:00
ceriel
15377abec5 Fix from Lindsey: changed CURRDIR mechanism to make it work on SunOs 4.0 1988-11-24 11:29:14 +00:00
ceriel
6a8360b335 Fix from Lindsey: changed CURRDIR mechanism to make it work on SunOs 4.0 1988-11-24 09:41:39 +00:00
ceriel
3d6ab89bc1 fix from Lindsey 1988-11-24 09:23:51 +00:00
ceriel
982138b8da another minor problem fixed: only test on options['R'] once
in a FOR statement!
1988-11-23 13:10:57 +00:00
ceriel
b86a455efa minor fix: sometimes wrote 0-byte 1988-11-23 11:31:20 +00:00
ceriel
d7bb7c9cf3 Added termcap support 1988-11-23 10:59:09 +00:00
ceriel
35b3050d88 fixed typo 1988-11-22 09:21:25 +00:00
ceriel
e43a0746a8 some more improvements and a fix 1988-11-21 16:55:16 +00:00
ceriel
fec83f1be3 many improvements 1988-11-21 15:04:23 +00:00
ceriel
712ba56ce8 declare procno and holno, extend_ilb changed 1988-11-18 18:00:47 +00:00
ceriel
4757be8bf6 declare procno, extend_ilb changed 1988-11-18 17:57:28 +00:00
ceriel
582ed4da02 declare procno and holno 1988-11-18 17:53:57 +00:00
ceriel
a804cc2e15 cleaned up; hidden names 1988-11-18 17:52:39 +00:00
ceriel
7d8e3b8fcd removed mysprint.c 1988-11-18 17:45:02 +00:00
ceriel
f452bfc1e1 extnd_ilb changed, declared holno and procno 1988-11-18 17:43:47 +00:00
ceriel
f2d5f15e51 fixed wr_arhdr: date and size 1988-11-18 16:06:07 +00:00
ceriel
430dad523d removed tab.c, use tabgen, and some fixes 1988-11-16 15:18:21 +00:00
ceriel
4b5e5a9764 fixed typo 1988-11-16 13:37:46 +00:00
ceriel
6ac798b50c removed tab.c, use tabgen 1988-11-16 11:23:58 +00:00
ceriel
b8cc947bc3 removed tab.c, use tabgen 1988-11-16 11:04:17 +00:00
ceriel
a08e71a16f removed tab.c, use tabgen 1988-11-16 10:58:33 +00:00
ceriel
4bacebab18 Use tabgen, so deleted chtab.c 1988-11-16 10:43:15 +00:00
ceriel
345873dae2 Added tabgen 1988-11-16 10:14:26 +00:00
ceriel
fda83cb06d Added tabgen + manual 1988-11-16 09:37:04 +00:00
ceriel
f1245e2e00 fixed some problems:
- removed null-reference in illegal use of pointers in constant expressions
- FOR-loops that count downwards did not work
- POINTER TO mechanism changed; works better now
1988-11-15 14:45:59 +00:00
ceriel
090f27251e fixed typo 1988-11-15 11:30:47 +00:00
ceriel
7f77ee091c Added some new patterns 1988-11-15 10:54:37 +00:00
ceriel
28c8abd52b fix to fix 1988-11-14 16:50:06 +00:00
ceriel
5c4164927d replaced some 'move's by the move instructions; Some were just wrong 1988-11-14 12:43:23 +00:00
ceriel
33b7bac870 several fixes 1988-11-11 19:13:26 +00:00
ceriel
66430b1900 fix to fix 1988-11-11 12:53:40 +00:00
ceriel
8bdd4c2a79 Use -kun option instead of absolute path 1988-11-11 11:06:47 +00:00
ceriel
0bb9c9b5a5 removed extra DUP rule. It was wrong after all 1988-11-10 15:38:50 +00:00
ceriel
09cc81f5b5 Use the system module for error messages 1988-11-10 13:46:53 +00:00
ceriel
19dad4482b fixed to generate only external commons. This cannot be done in common.c
because an external could later be declared static, and a static could later
be declared external.
1988-11-10 13:16:22 +00:00
ceriel
d6dfd5d1ad fixed to generate only external commons 1988-11-10 13:01:15 +00:00
ceriel
f210ef4f8e fixed problem with DUP: it also dupped tokens with side-effects 1988-11-09 15:49:29 +00:00
ceriel
11dee74e80 Initial revision 1988-11-08 14:09:24 +00:00
ceriel
246554a0b1 changes in search for more speed 1988-11-08 13:47:18 +00:00
ceriel
ef6f9168c4 do not refer to _exit. For some machines, it does not exist 1988-11-07 10:25:45 +00:00
ceriel
15e885ac8d produce better code for EXG 1988-11-07 09:35:47 +00:00
ceriel
af5ed82bff included changes from Andy Michael 1988-11-07 09:24:36 +00:00
ceriel
b90690ba5d Changed translation of FOR-statement: now, if it is executed 0
times, the loop-control-variable is not assigned to
1988-11-04 13:12:14 +00:00
ceriel
d418617de6 new version number 1988-11-04 10:24:34 +00:00
ceriel
f8a3f67ddb Added new line after trap message 1988-11-04 09:55:50 +00:00
ceriel
93cee9d434 Fixed problem with IMPORTS through PROCEDURE bounds 1988-11-03 15:37:37 +00:00
ceriel
5e766a0f20 Fixed bug with underscores in identifiers 1988-11-03 15:36:46 +00:00
dick
4ed20925c6 lint: printf testing and FORMATs 1988-11-03 15:18:46 +00:00
dick
7267917050 foute declaratie van sprint() 1988-11-03 14:59:47 +00:00
dick
190ea14bbf lint: retrieving string arguments from str_list 1988-11-03 13:20:27 +00:00
ceriel
0e895422bc removed include: was already done in nopt.h 1988-11-03 10:03:45 +00:00
ceriel
cfa5eafd3d fixed typo 1988-11-02 16:33:56 +00:00
ceriel
8cd2051b2e modifications in search for more speed 1988-10-31 16:03:44 +00:00
ceriel
8fab3192b6 modyfications in search for more speed 1988-10-31 15:54:54 +00:00
ceriel
7851ff900f many modyfications in search for more speed 1988-10-31 15:42:15 +00:00
ceriel
63f793aff3 modyfied to generate only one switchseg for each C_ routine 1988-10-31 15:21:47 +00:00
ceriel
0011c49d1e many changes, in search for more speed 1988-10-31 15:02:39 +00:00
ceriel
3bb19b6e7d Added code-expander library 1988-10-31 14:17:17 +00:00
ceriel
b5083a9ccf inline substitution of strcmp: was called many times! 1988-10-31 14:10:39 +00:00
ceriel
4f11f3c3fd fixed bug in preprocessor part:
#define aap(a) a did not work if the actual argument was spread over
multiple lines
1988-10-31 14:10:00 +00:00
dick
900421f411 library files now end in .llb 1988-10-28 16:27:32 +00:00
dick
63c0ca38f9 moving lint and lint.1 to lpass2 1988-10-28 16:04:31 +00:00
ceriel
7a6913dea1 some minor improvements 1988-10-28 13:37:48 +00:00
ceriel
78237f3ef8 some small fixes 1988-10-28 10:11:49 +00:00
ceriel
01252cb592 Initial revision 1988-10-26 15:21:11 +00:00
ceriel
a7a80689bf Only generate FIL when needed 1988-10-25 17:43:19 +00:00
ceriel
cfd6bca270 some fixes 1988-10-24 10:35:17 +00:00
ceriel
e71c873fc1 moved comment 1988-10-21 17:35:54 +00:00
ceriel
0d9daaa18d changed assert macro to also work with ANSI C compilers 1988-10-21 17:34:20 +00:00
ceriel
416020b5bd fixed minor problem with subranges 1988-10-21 17:24:34 +00:00
ceriel
ba1c1a82d7 patches to make more suitable for push-pop optim 1988-10-20 15:08:59 +00:00
ceriel
dc5a744d8d some minor changes 1988-10-20 14:33:55 +00:00
ceriel
e0fc646222 Many changes:
- added floating point
- improved assembler part, now uses short encodings when possible
- reduced generated relocation - and name table
1988-10-20 14:21:37 +00:00
ceriel
b61011fba9 use common() when possible 1988-10-20 13:28:02 +00:00
ceriel
163bbc5845 switch to text segment before generating the label 1988-10-20 13:23:52 +00:00
ceriel
f69a7e3e5d many changes, mostly for efficiency 1988-10-20 13:06:10 +00:00
ceriel
a281cc38a4 Added common() routine 1988-10-20 13:01:04 +00:00
ceriel
666367e328 Added obj_back/common.c 1988-10-20 12:59:21 +00:00
ceriel
497792f739 Use varargs.h for routine with variable number of args 1988-10-20 12:57:32 +00:00
ceriel
153a94aad4 Added missing filenames 1988-10-20 12:56:08 +00:00
ceriel
ed651bbd04 some fixes:
- use Malloc, Realloc instead of malloc, realloc
- generate common for un-initialized bss
- removed null-reference
1988-10-20 12:55:02 +00:00
ceriel
0ba4588be1 Changed name of compiler to m2 1988-10-19 16:44:01 +00:00
ceriel
10e2f5cb36 Added vars.s 1988-10-17 12:55:24 +00:00
ceriel
8b6ba39da4 made a bit more portable 1988-10-17 10:38:30 +00:00
ceriel
0f8489fe28 Added .distr 1988-10-14 16:47:39 +00:00
ceriel
d096f1882a improved version, generating .o files with much less relocation records
and name table entries
1988-10-13 15:53:31 +00:00
ceriel
ce0ec1c143 delinted somewhat 1988-10-13 15:43:23 +00:00
dick
c08c3e5cf6 driver and manual page added 1988-10-13 11:31:00 +00:00
dick
e66f3adc06 formats introduced in lint 1988-10-12 16:05:17 +00:00
dick
ac21f8d98a formats introduced 1988-10-12 15:49:11 +00:00
dick
bcb3b108a5 formats introduced 1988-10-12 15:32:32 +00:00
ceriel
f397d35b6a many changes: optimize generated code somewhat,
reduce relocation-table size
1988-10-07 16:52:44 +00:00
ceriel
ac3bf2cc95 Added pascal.ign 1988-10-07 10:59:23 +00:00
ceriel
1169f99c92 Added 1988-10-07 10:58:26 +00:00
ceriel
79295ca3ea delinted 1988-10-07 10:26:37 +00:00
ceriel
c488a4d491 Took over addition of -d flag from Erik Baalbergen 1988-10-07 09:48:23 +00:00
ceriel
b909bb629b modified bts2str to also escape double quotes 1988-10-05 16:19:42 +00:00
ceriel
8e7e1320ac Initial revision 1988-10-05 13:29:42 +00:00
ceriel
366b492174 Initial revision 1988-10-04 14:27:35 +00:00
ceriel
a54c470fef some mods from Charles Lindsey 1988-10-04 13:59:51 +00:00
ceriel
e1b871a6ea Initial revision 1988-10-04 13:41:01 +00:00
ceriel
a66faf4100 Initial revision 1988-10-04 10:56:50 +00:00
ceriel
7bac6eb164 Initial revision 1988-10-04 10:46:47 +00:00
ceriel
23a7e7b427 Initial revision 1988-10-04 10:33:39 +00:00
ceriel
17e980aa15 Also pass SRC 1988-10-04 10:04:37 +00:00
dick
5578d004bc simplification of e.out.h 1988-10-03 14:44:39 +00:00
ceriel
668b4ca6e7 many minor changes 1988-10-03 10:53:47 +00:00
ceriel
6b7a135b2b Coercion from int to float is now always done compile time 1988-10-03 10:09:19 +00:00
dick
4cecb6bffb wrong Makefile committed 1988-09-30 16:49:02 +00:00
dick
ff682c0cfc testing enums in switches/cases 1988-09-30 16:43:04 +00:00
ceriel
b0c8f9748a some fixes to procude faster :-) code 1988-09-30 16:13:44 +00:00
dick
1fb9c249b3 refinements in error reporting 1988-09-30 15:20:24 +00:00
dick
63d95a5f0e Initial commit 1988-09-30 11:45:14 +00:00
ceriel
9c8e5b9217 corrected a bit 1988-09-30 09:36:26 +00:00
ceriel
19698499d6 Also handle commons 1988-09-29 16:29:11 +00:00
ceriel
a831fab61d Also handle commons 1988-09-29 16:22:48 +00:00
dick
4f8b2e9926 lint: additional type tests in expressions 1988-09-29 15:24:02 +00:00
ceriel
6ae90c8f34 Initial revision 1988-09-28 16:47:47 +00:00
ceriel
391d115b4d fixes from bruce: there are four, not three types of pattern that the
routine findworst should look for
1988-09-27 11:16:04 +00:00
ceriel
751854f36a prevent multiple includes 1988-09-27 09:50:34 +00:00
ceriel
8a8d0d9151 prevent multiple includes 1988-09-26 15:11:25 +00:00
ceriel
2df4da50da made names more unique 1988-09-26 15:05:00 +00:00
dick
acf34e54ec crash() replaced by ASSERT() & NOTREACHED() in lint 1988-09-26 11:37:38 +00:00
dick
3d549e7932 reorganisation of lint code 1988-09-25 17:29:37 +00:00
ceriel
fb854c82ff Added flag to generate SUN .o format 1988-09-23 14:55:27 +00:00
ceriel
b533b53690 some improvements to manual page and interface 1988-09-22 16:09:18 +00:00
ceriel
9435c895bf Added l_ files to .distr 1988-09-21 13:32:24 +00:00
ceriel
b52e0e8ff1 fixed l_dummy.c to also work for the C-compiler,
added lint.h to BigPars and SmallPars,
and added stuff for CODE_EXPANDER and PEEPHOLE to Makefile
1988-09-21 11:48:29 +00:00
dick
6839d8afb1 introduction of lint source code, governed by ifdef LINT 1988-09-20 16:44:27 +00:00
ceriel
7e502b0937 fix: resolve forward references if definition is needed in lookfor() 1988-09-20 13:31:57 +00:00
ceriel
f8fb06210d fixed: apparently, the profil system-call does not quite work as described
in the manual page?
1988-09-19 16:55:35 +00:00
ceriel
6d3e9fb7af fixed; did not work properly 1988-09-19 15:07:12 +00:00
dick
1f7115fa8d error messages and error handling 1988-09-16 23:19:50 +00:00
ceriel
a5f48d6493 Initial revision 1988-09-15 09:49:22 +00:00
ceriel
091f3dbebf Added floating point support 1988-09-14 14:06:31 +00:00
ceriel
eaaa335e50 corrected 1988-09-14 14:05:11 +00:00
ceriel
b725b0af8b correction for update_ceg 1988-09-14 14:03:50 +00:00
ceriel
5fd21b16a9 initialize oh_stamp fields of header 1988-09-13 09:11:54 +00:00
ceriel
a9c8b67b65 Added define for CODE_EXPANDER 1988-09-12 14:33:15 +00:00
ceriel
2f479b6078 Added mechanism to generate C_out 1988-09-12 14:30:22 +00:00
ceriel
115e92a7dc corrected dependencies 1988-09-12 14:05:14 +00:00
ceriel
f2ea210122 Added C_insertpart.c 1988-09-12 14:03:51 +00:00
ceriel
4c8442f1f0 Added C_insertpart etc 1988-09-12 13:59:43 +00:00
ceriel
41d0500d81 replaced relative includes by <> includes 1988-09-12 09:13:49 +00:00
ceriel
5b50914bea fix exit status 1988-09-09 11:36:57 +00:00
ceriel
2d98c32cb2 use varargs 1988-09-09 11:32:59 +00:00
ceriel
ec5cff92d8 fix error count on error 1988-09-09 11:25:43 +00:00
ceriel
291b607f4e renamed update to update_ceg, fixed create_ofiles to make sure that the
.c files are detectably newer
1988-09-08 11:43:03 +00:00
ceriel
5c126dd968 declare SEGHOL 1988-09-08 10:26:18 +00:00
ceriel
b5f657aba6 Added support for new C_insertpart, C_beginpart, C_endpart functions 1988-09-08 10:24:16 +00:00
ceriel
93c04d3389 declare SEGHOL 1988-09-08 10:01:32 +00:00
ceriel
3a183b7b44 replaced all ::= by ==> 1988-09-07 14:47:46 +00:00
ceriel
a01ea4d930 correct exit status 1988-09-07 14:47:40 +00:00
ceriel
02fec008a2 Added install entry 1988-09-07 13:54:26 +00:00
ceriel
d66b646e58 replace spaces by tabs 1988-09-07 13:39:07 +00:00
ceriel
42560d86ef set_segment now generates legal code for SEGHOL; if used, the code
expander will complain
1988-09-07 13:20:03 +00:00
ceriel
64aae9d435 DS and DE are not man macros 1988-09-07 10:13:36 +00:00
ceriel
74fba213bc DS and DE are not man macros 1988-09-07 10:01:59 +00:00
ceriel
f78b282fb4 FIX: did not handle most of the 'end of basic block' instructions right;
many of them have effect on the stack, and this went by unnoticed
1988-09-07 09:20:37 +00:00
ceriel
612ddc8a4e return value sometimes was wrong 1988-09-06 15:34:47 +00:00
ceriel
575d4f5223 Extended to handle user libraries 1988-09-06 11:28:16 +00:00
ceriel
a0d2a1ea74 delinted somewhat 1988-09-05 15:51:35 +00:00
ceriel
dca9ed9bb2 Added stty and gtty 1988-09-02 15:40:45 +00:00
ceriel
79ac11bd40 Made to compile with DEBUG off 1988-09-02 13:55:54 +00:00
ceriel
83b92a8af2 fix: assertion was wrong 1988-09-02 13:52:11 +00:00
ceriel
feb6e7505c maybe I got it right this time! 1988-09-02 13:49:07 +00:00
ceriel
2b47b43390 fix: did not handle the case that a program module name and file name
differ
1988-09-02 12:01:53 +00:00
dick
a206f17205 #define PRIVATE; copyright message 1988-09-02 12:00:25 +00:00
ceriel
2dfd74fe14 fix in fix: INN ZEQ and INN ZNE still were wrong 1988-09-02 11:39:58 +00:00
ceriel
615b67952f make somewhat safer 1988-09-01 10:07:02 +00:00
ceriel
a40768b6f9 improve line number administration 1988-08-31 09:24:28 +00:00
ceriel
ac92c0b9c3 made safer 1988-08-30 12:52:09 +00:00
ceriel
d24592ee76 Added bsearch 1988-08-30 12:47:45 +00:00
ceriel
ddc46385f3 fix: did not work properly when name != TERM 1988-08-30 12:34:40 +00:00
ceriel
2540279185 corrected references 1988-08-30 11:40:58 +00:00
ceriel
e102a3f5cb better checks for recursion in tc= 1988-08-30 11:37:32 +00:00
dick
32e5679d6c filename and linenumber info in more places 1988-08-29 15:51:48 +00:00
ceriel
62d1432035 fixed typo 1988-08-29 14:11:13 +00:00
ceriel
8d68d0b1ee minor clarification 1988-08-25 15:16:31 +00:00
ceriel
9a7a7f7f4b Adapted for modula-2 1988-08-25 13:03:13 +00:00
ceriel
5e34ca7d2b ignore exit status of size 1988-08-24 11:39:57 +00:00
ceriel
2fba044900 ignore exit status of size 1988-08-24 11:15:40 +00:00
ceriel
2ffad4edb4 ignore exit status of size 1988-08-24 10:49:24 +00:00
ceriel
2deb5cafce remove empty-producing nonterminals 1988-08-23 16:05:19 +00:00
ceriel
f8a9f58006 Parameterize archiver 1988-08-23 13:16:38 +00:00
ceriel
9d6a005bb2 minor change: use int in array index 1988-08-23 12:54:16 +00:00
dick
61b8c3e9ec more modifications due to lint 1988-08-23 12:45:11 +00:00
ceriel
cc52343fbf fixed INN ZEQ and INN ZNE patterns 1988-08-22 11:23:24 +00:00
ceriel
95b4d20b5d fixed problem with dlbdlb 1988-08-22 10:54:03 +00:00
ceriel
7f5dfa7bb2 Changes from Nigel Hall 1988-08-19 17:05:03 +00:00
ceriel
f3a780ecec Changes from Nigel Hall 1988-08-19 16:46:22 +00:00
ceriel
6246c6fc9e generate new style constants 1988-08-19 16:41:49 +00:00
ceriel
f75ed26b04 made easier to patch 1988-08-19 14:29:04 +00:00
ceriel
859468b767 made easier to patch 1988-08-19 14:25:59 +00:00
ceriel
98359a035e make easier to patch 1988-08-19 14:20:03 +00:00
dick
1a6665e21d initial small modifications for lint 1988-08-19 13:55:22 +00:00
ceriel
e8730266e5 removed not-used variable 1988-08-19 13:40:01 +00:00
ceriel
b1712321e2 made easier to patch 1988-08-19 13:26:27 +00:00
ceriel
7ee4487924 Added ChPushBack 1988-08-19 13:07:20 +00:00
ceriel
282064375d use varargs 1988-08-19 09:22:07 +00:00
ceriel
3a075a7c67 Adapted fort ACK 1988-08-19 09:21:29 +00:00
ceriel
8134a42ee8 adapted for ACK 1988-08-19 09:20:25 +00:00
ceriel
01c8cd6d15 remove files before linking 1988-08-18 16:36:14 +00:00
ceriel
61a911c631 some fixes 1988-08-18 15:32:47 +00:00
ceriel
a1684f6d0b Initial revision 1988-08-18 14:33:57 +00:00
ceriel
367e4ac01c Adapted for ACK 1988-08-18 13:48:49 +00:00
ceriel
08bd32f88d modified for ACK 1988-08-18 13:47:56 +00:00
ceriel
e7683658b7 modified for ACK 1988-08-18 13:35:09 +00:00
ceriel
057ee4e5cb Added Makefile 1988-08-18 13:15:16 +00:00
ceriel
bb01ac81fd to make sure that directories are created ... 1988-08-18 13:12:39 +00:00
ceriel
0f83947e33 Adapted for ack 1988-08-18 11:46:05 +00:00
ceriel
7172fe9816 be a bit more precise in cleanup 1988-08-18 11:04:55 +00:00
ceriel
7e6fe16448 Somewhat adapted for ACK 1988-08-18 11:00:02 +00:00
ceriel
775bda9da0 Added Action file 1988-08-18 08:50:31 +00:00
ceriel
e496b6ee02 Added 1988-08-18 08:49:57 +00:00
ceriel
119bc227de use Realloc instead of Srealloc 1988-08-15 15:27:29 +00:00
ceriel
e0ad269d4c do not use [ for test; no as portable 1988-08-15 09:31:08 +00:00
ceriel
143531822a speeded up :-) 1988-08-11 22:02:53 +00:00
ceriel
371821c6a3 fixed typo 1988-08-11 15:59:35 +00:00
ceriel
a9a2e027c8 improved floating point handling 1988-08-11 14:57:39 +00:00
ceriel
5aa128ea62 speeded up again :-) 1988-08-11 14:50:18 +00:00
ceriel
ebfc4a15a4 Added strtod.c, use it in atof 1988-08-11 12:49:06 +00:00
ceriel
2cb7fcf861 leave maximum value if overflow trap is handled 1988-08-11 10:28:30 +00:00
ceriel
8f9ed86162 ignore floating overflow/underflow 1988-08-11 09:55:22 +00:00
ceriel
d308f4a3c2 fix: the minimum exponent is 1, not 0! 1988-08-10 22:33:48 +00:00
ceriel
e9094d3f03 corrected M_MAX_D 1988-08-10 16:40:48 +00:00
ceriel
094d427268 prevent overflow 1988-08-10 15:54:15 +00:00
ceriel
7e8d7af500 corrected 1988-08-10 15:18:37 +00:00
ceriel
d7d16cbede use new ecvt.c from C library 1988-08-10 11:21:40 +00:00
ceriel
03610bb643 improved/speeded up using new ecvt 1988-08-10 11:12:57 +00:00
ceriel
a1032b168c fix 1988-08-10 10:41:15 +00:00
ceriel
bb46f5218c Added version for machines with proper 4-byte operations 1988-08-10 10:07:53 +00:00
ceriel
e47418efff Use other version of div_ext 1988-08-10 10:00:30 +00:00
ceriel
d388145dce new, much faster version 1988-08-10 09:14:43 +00:00
ceriel
e6d132830a fix: line number administration wrong in scan.c 1988-08-09 14:07:39 +00:00
ceriel
2c413b9455 makefile --> Makefile 1988-08-08 18:03:12 +00:00
dick
56fff3d6cd many improvements 1988-08-07 22:55:20 +00:00
ceriel
5581bdad15 corrected exit status of script 1988-08-05 13:50:27 +00:00
ceriel
901e1b7565 fixes for exit status 1988-08-05 12:48:21 +00:00
ceriel
05bac6c619 also detect 0/0 1988-08-05 11:40:29 +00:00
ceriel
905c5a349f fix: >= and <= were wrong in constant expressions 1988-08-05 11:22:39 +00:00
ceriel
dc72163d44 cleaned up a bit 1988-08-04 18:10:34 +00:00
ceriel
cdb038ed6f forgot leading zero in front of . in F format 1988-08-04 15:48:34 +00:00
ceriel
96fc9c9ab7 gcvt was called with wrong precision 1988-08-04 15:48:20 +00:00
ceriel
28d39e927b fixed problem with 'if (array)' 1988-08-04 14:37:06 +00:00
ceriel
1726d23a44 problem fixed: number of digits displayed and/or format was sometimes wrong 1988-08-04 11:17:27 +00:00
ceriel
b26e580a74 cleaned up a bit, and made add_ext and sub_ext proper entry points,
without preconditions on the arguments
1988-08-04 11:16:20 +00:00
ceriel
2a9fe2a774 some modifications to improve speed (sorry, I mean, make a bit less slow) 1988-08-03 23:31:40 +00:00
ceriel
56a070ad99 fixed 1988-08-03 19:24:55 +00:00
ceriel
38e7921a9d Added E, G, and g format 1988-08-03 16:29:30 +00:00
ceriel
3e66a45a0d fixed 1988-08-03 16:15:48 +00:00
ceriel
caf948e80e moved getopt to stdio, because it uses it 1988-08-03 14:42:47 +00:00
ceriel
0406776361 fixed again 1988-08-02 11:57:37 +00:00
ceriel
0d45d9da11 correct exit status 1988-08-02 11:56:34 +00:00
ceriel
905907f304 Modified for 4th distribution 1988-08-01 09:00:03 +00:00
ceriel
0768c4d4f1 fix to fix 1988-07-29 19:22:48 +00:00
ceriel
87c8b648fc fix in preprocessor part: macro invocation with parameterlist on the
next line did not work
1988-07-29 18:38:25 +00:00
ceriel
5d247a2055 prevent generation of movl/movq instruction with floating point constant.
movf/movd should be used instead
1988-07-29 10:09:55 +00:00
ceriel
f5db63a96d grep -s means different things on different systems; do not use it 1988-07-28 18:47:21 +00:00
ceriel
334293bc04 Added possibility to disable installation of some languages or some machines 1988-07-28 18:43:26 +00:00
ceriel
a28e8440b7 Use Pascal 1988-07-28 18:33:51 +00:00
ceriel
fb53750ee3 fixed error in declaration of sprintf 1988-07-28 18:18:29 +00:00
ceriel
e1f4d01509 Installation of interpreters should be done from global action file 1988-07-28 16:46:23 +00:00
ceriel
fa564bb67c Installation of interpreters should not be done here 1988-07-28 16:45:13 +00:00
ceriel
29e5a20d23 fixed typo 1988-07-28 15:09:01 +00:00
ceriel
c56a92b18b document comment sign in Action files 1988-07-28 11:28:29 +00:00
ceriel
a5578bc229 BSD4.[23] could also run NFS, so added getdirent.s 1988-07-28 09:46:43 +00:00
ceriel
bbe7ae21e8 BSD4.[23] could also run NFS 1988-07-28 09:26:22 +00:00
ceriel
75d52f0a3e corrected Makefiles 1988-07-28 08:37:37 +00:00
ceriel
e4424a38c5 removed em_path.h and local.h from .distr 1988-07-28 00:30:40 +00:00
ceriel
8d6587a95e find out about operating system on foreign machines 1988-07-28 00:09:33 +00:00
ceriel
4f709d86ea clean should remove int 1988-07-27 22:43:19 +00:00
ceriel
3ad68743ca corrected for new TakeAction 1988-07-27 13:17:15 +00:00
ceriel
c0123c0e32 mention port to XenixV3 1988-07-27 13:14:26 +00:00
ceriel
761d355bf7 distribute descr.src instead of descr 1988-07-27 12:56:45 +00:00
ceriel
e70f6d3276 Remove m2mm on clean 1988-07-27 09:28:31 +00:00
ceriel
620f17db1b Added some, because local.h and em_path.h now have a source 1988-07-27 08:32:19 +00:00
ceriel
0c0ff5f64b do not write over distribution files 1988-07-26 19:22:11 +00:00
ceriel
84acaa1163 distribute Makefile 1988-07-26 19:08:46 +00:00
ceriel
9aedda4643 distribute fe.src 1988-07-26 19:06:35 +00:00
ceriel
24d5e841d1 and yet another ... 1988-07-26 15:57:34 +00:00
ceriel
fc1d04e192 fixed typo 1988-07-26 15:46:09 +00:00
ceriel
e0fd12fd05 removed obsolete comment 1988-07-26 15:15:01 +00:00
ceriel
d814f96e9d Added pattern 1988-07-26 14:21:15 +00:00
ceriel
fabf37e889 declared errno 1988-07-26 13:04:24 +00:00
ceriel
5a6849b006 yet another fix 1988-07-26 13:00:30 +00:00
ceriel
52d5e473c4 fix from Leo van Moergestel: signed byte offset must fit in a byte 1988-07-26 11:02:13 +00:00
ceriel
b1dc8c8f52 fixed 1988-07-26 09:53:47 +00:00
ceriel
dbbff76f4c Used new math lib of C to create new version of Mathlib 1988-07-25 16:41:51 +00:00
ceriel
e98a670850 fixed typo 1988-07-25 12:30:52 +00:00
ceriel
e5c19866eb Added math lib 1988-07-25 12:21:59 +00:00
ceriel
7b1eae1d37 fixed: call to atan changed into call to _atn 1988-07-25 11:41:19 +00:00
ceriel
c9f8962fc8 mod to remove declarations in math.h 1988-07-25 11:40:57 +00:00
ceriel
50d857e9f3 Added a #ifndef for not defining functions 1988-07-25 11:32:46 +00:00
ceriel
324c95ae62 replaced mathematical routines by our own 1988-07-25 11:26:26 +00:00
ceriel
d443f370d2 replaced mathematical routines by our own 1988-07-25 11:13:26 +00:00
ceriel
bcec2e84b5 merged with Michael Felts latest version 1988-07-25 10:46:15 +00:00
ceriel
b09805786d Added some prints 1988-07-22 20:58:48 +00:00
ceriel
24c59f9f68 adf and sbf did not work with 0.0 1988-07-22 20:54:49 +00:00
ceriel
44ce140103 Made to work under Microsoft Xenix V3.2 1988-07-22 19:34:07 +00:00
ceriel
a0a265736c Initial revision 1988-07-22 19:01:13 +00:00
ceriel
7515b51d64 Added installation of math lib 1988-07-22 18:51:02 +00:00
ceriel
6777bbfaca search -l libs here 1988-07-22 18:49:00 +00:00
ceriel
cb51abaacd search -l libs in i86 directory 1988-07-22 18:46:09 +00:00
ceriel
0beaad89d3 Added installation of math lib 1988-07-22 18:30:44 +00:00
ceriel
ffb6eb9ff4 Added .distr 1988-07-22 18:29:52 +00:00
ceriel
696f0b1c31 Added math 1988-07-22 18:29:51 +00:00
ceriel
c34fbb3831 Added math.h 1988-07-22 16:59:22 +00:00
ceriel
a18fcb9048 Initial revision 1988-07-22 16:53:29 +00:00
ceriel
8524608cf3 made easier to patch 1988-07-20 08:53:31 +00:00
ceriel
215e55282d some more fixes 1988-07-19 16:49:49 +00:00
ceriel
4d66061c82 install new back-end instead of old 1988-07-19 10:14:22 +00:00
ceriel
60e958a312 the patterns inside #ifdef LONGEMPAT were wrong anyway, so deleted 1988-07-19 10:12:21 +00:00
ceriel
0695089005 Added CS info 1988-07-19 09:45:59 +00:00
ceriel
9d48a61694 improved i86 description 1988-07-18 17:10:43 +00:00
ceriel
0dc643686e M must indicate back-end used 1988-07-18 16:59:39 +00:00
ceriel
becd33d3a9 made to work on small machines 1988-07-18 16:45:25 +00:00
ceriel
ca51618fe9 made to work; contained too many dependencies on word/pointer size 1988-07-18 16:41:04 +00:00
ceriel
5c508b566f Added flag to give stack size 1988-07-15 15:29:44 +00:00
ceriel
bfaff9d0ee simplified a little; does not seem to make much difference 1988-07-15 14:57:43 +00:00
ceriel
d363386a38 several fixes 1988-07-15 13:00:43 +00:00
ceriel
b9aa04dbb3 fixed problem with temporary DEALLOCATES: sometimes a register was
used for stacking, that was only temporarily deallocated
1988-07-15 11:23:44 +00:00
ceriel
68d3126f16 improved trap handling 1988-07-15 11:17:17 +00:00
ceriel
f0d3a648af fixed problem with temporary DEALLOCATES: sometimes a register was
used for stacking, that was only temporarily deallocated
1988-07-15 11:12:13 +00:00
ceriel
7aca78dc21 Also hide name b64_sft 1988-07-14 11:11:48 +00:00
ceriel
e8931fe5de make to compile on Xenix 1988-07-14 10:11:01 +00:00
ceriel
4be6b2ae55 adapted some sizes 1988-07-14 09:33:30 +00:00
ceriel
351429c19c make to work again 1988-07-14 09:15:21 +00:00
ceriel
02154c02b2 fixed problem with D scale factor 1988-07-13 20:13:17 +00:00
ceriel
1cf834f731 did not work properly; assumet it could remove sign AFTER converting to
machine dependant order
1988-07-13 20:00:22 +00:00
ceriel
c29ac899da added -L flag 1988-07-13 18:32:06 +00:00
ceriel
cdb8531b9a use sun3 command to translate 1988-07-13 18:31:57 +00:00
ceriel
1838e7143f Added -L flag 1988-07-13 18:24:07 +00:00
ceriel
d67c9ce97f pass some size flags to basic compiler 1988-07-13 18:04:01 +00:00
ceriel
f8cf94da98 changed text 1988-07-13 17:44:14 +00:00
ceriel
eec2ea8ffe changed text; did not work properly 1988-07-13 17:39:20 +00:00
ceriel
2197952a70 Added some erase() calls; aiaiai 1988-07-13 17:35:01 +00:00
ceriel
105c7e6009 fixed 1988-07-13 16:55:48 +00:00
ceriel
87e020db8a make trap handling more consistent 1988-07-13 14:29:32 +00:00
ceriel
be1e3440b7 other trp routine 1988-07-13 14:21:13 +00:00
ceriel
db95ccff91 updated; the int command now is an interpreter 1988-07-13 13:51:57 +00:00
ceriel
ea7209f246 Added some erase() calls; aiaiai 1988-07-13 13:48:38 +00:00
ceriel
722bf6de1e Added debug statement 1988-07-13 13:43:45 +00:00
ceriel
25f7fe9b77 fix: strhp should do brk system call 1988-07-13 12:51:57 +00:00
ceriel
b3efe7e46c should not result in commons; does not work with some ranlibs 1988-07-12 20:34:16 +00:00
ceriel
df4c1c8174 some minor fixes 1988-07-12 20:16:13 +00:00
ceriel
9178cb9851 corrected error: name is now xenix3 1988-07-12 16:46:39 +00:00
ceriel
2a3a417a29 output with better layout 1988-07-12 15:02:38 +00:00
ceriel
ccbf4f0cf6 made to compile on Xenix 1988-07-12 14:19:03 +00:00
ceriel
53bda08502 do not use shell meta characters in dependents; some makes do not like it 1988-07-12 11:10:31 +00:00
ceriel
20e2452350 updated dependencies 1988-07-11 19:22:19 +00:00
ceriel
0987aa0077 don't use our malloc in cpp on small machines 1988-07-11 15:01:12 +00:00
ceriel
45bb3b1413 try another SBRK 1988-07-11 14:06:11 +00:00
ceriel
6d7522ba44 fixes for Xenix 1988-07-11 13:24:32 +00:00
ceriel
778baeb2c0 fixes for Xenix 1988-07-11 13:18:43 +00:00
ceriel
cd54a85aec updated dependencies 1988-07-11 12:57:24 +00:00
ceriel
3aabba530d fixes for Xenix 1988-07-11 12:53:01 +00:00
dick
9dd080ae4b various improvements 1988-07-08 22:24:06 +00:00
ceriel
0505a65a74 check results in shell script 1988-07-08 16:10:17 +00:00
ceriel
32c3955be1 don't include too much 1988-07-08 15:51:27 +00:00
ceriel
87901b15ba declare mktemp 1988-07-08 15:31:32 +00:00
ceriel
290cb0660d Split in several files. Did not compile on Xenix 1988-07-08 13:57:07 +00:00
ceriel
c5d04fbd6a Added some extern delcarations; without them, it did not compile on Xenix 1988-07-08 13:52:52 +00:00
ceriel
9ab5e19576 use $(CC) instead of cc 1988-07-08 11:37:17 +00:00
ceriel
378b233c33 use system id from local.h 1988-07-08 10:37:00 +00:00
ceriel
892e6cf6f6 Added indication of operating system 1988-07-08 10:33:53 +00:00
ceriel
1c6ab039f4 indicate operating system in local.h 1988-07-08 10:33:06 +00:00
ceriel
d1a390924f we were lucky, but - indicates a range; corrected 1988-07-08 10:29:48 +00:00
ceriel
b8b355a0a2 keap type names different from others; some compilers don't like it 1988-07-08 09:14:04 +00:00
ceriel
a2fde712c3 fixed typo 1988-07-07 18:45:13 +00:00
ceriel
007483d1ed do not try to install Occam lib on non-BSD4.2 systems 1988-07-07 16:46:27 +00:00
ceriel
4d9a144aa7 only try to install Occam lib on Berkeley 4.2 system 1988-07-07 15:13:16 +00:00
ceriel
8fc459e811 fix: was wrong with constants causing overflow 1988-07-07 15:02:47 +00:00
ceriel
5ff8baabfa fix for constants 1988-07-07 14:31:29 +00:00
ceriel
beb142ed98 print longs with %ld 1988-07-07 14:19:16 +00:00
ceriel
3048d94603 bug fix: an array was declared too small 1988-07-07 10:55:52 +00:00
ceriel
b4265c5407 removed the result3 variable; it was not used anymore 1988-07-07 09:59:32 +00:00
ceriel
b365c53262 removed temp file 1988-07-06 18:18:46 +00:00
ceriel
c624447dfc removed cvf.s 1988-07-06 17:44:27 +00:00
ceriel
9cff92f3e1 fixed; did not work for vax 1988-07-06 13:10:24 +00:00
ceriel
b1ed49aea4 fixed syntax error 1988-07-06 10:09:18 +00:00
ceriel
4c0222fb1c fix in english text 1988-07-06 09:52:49 +00:00
ceriel
2ea025fdb4 fixed previously introduced error 1988-07-06 09:43:05 +00:00
ceriel
afc4d5211b made to fit on PDP-11 ... 1988-07-05 19:06:40 +00:00
ceriel
44014704a0 forgot C_magic 1988-07-05 18:27:10 +00:00
ceriel
e1cb398e02 made to fit on PDP-11 1988-07-05 18:06:00 +00:00
ceriel
938b7e3d9d don't use our malloc on small machines 1988-07-05 18:00:43 +00:00
ceriel
901d12332d removed faulty.h from makefile 1988-07-05 16:21:05 +00:00
ceriel
5faf0b599f identifier name clash resolved 1988-07-05 16:05:11 +00:00
ceriel
5d9471f186 unsigned long is not portable 1988-07-05 15:31:33 +00:00
ceriel
530344e2cc made to work 1988-07-05 14:12:26 +00:00
ceriel
93c8b46781 print memory usage as unsigned 1988-07-05 14:07:19 +00:00
ceriel
e35b40b793 spaces replaced by tabs 1988-07-05 14:05:24 +00:00
ceriel
7f6d1911e2 comment sign at begin of line 1988-07-05 12:56:43 +00:00
ceriel
849eeb9f61 handle memory better 1988-07-05 11:51:47 +00:00
ceriel
bb3dc913a2 improved; delayed frees did not work anyway 1988-07-05 11:50:11 +00:00
ceriel
a2905da259 don't use stdio.h 1988-07-05 10:53:53 +00:00
ceriel
bbf9b03ef4 changed order in archive 1988-07-05 09:12:07 +00:00
ceriel
ced82adfae make to work 1988-07-04 16:37:46 +00:00
dick
632b1b2c4b Initial entry, txt1 oversight 1988-07-04 15:30:12 +00:00
ceriel
c10adfa7cf removed README 1988-07-04 15:24:24 +00:00
ceriel
117cb7fd55 Added distr entry 1988-07-04 14:55:22 +00:00
ceriel
db0c67dd10 made to work 1988-07-04 13:41:47 +00:00
ceriel
84578cbd91 fixed, new basic compiler, new flag for EGO 1988-07-04 13:39:15 +00:00
ceriel
0cf8ad9930 updated for new Basic compiler 1988-07-04 13:19:09 +00:00
ceriel
93bdacae44 updated 1988-07-04 11:45:53 +00:00
ceriel
c39c666834 Initial revision 1988-07-04 11:45:41 +00:00
ceriel
bd5583311e corrected some more 1988-07-04 11:44:03 +00:00
ceriel
5157a5a186 several fixes for new basic compiler 1988-07-01 17:30:06 +00:00
ceriel
c2af3d7faa allow for three digits in exponent 1988-07-01 11:56:08 +00:00
ceriel
6ade1e3215 Also export LONGREAL routines 1988-06-30 16:32:54 +00:00
ceriel
74c779b81e mods to handle forward references better 1988-06-30 14:50:30 +00:00
ceriel
fa9e4c5ea3 corrected minor problem 1988-06-30 09:19:06 +00:00
ceriel
5391cf8b17 fixed; did not compile 1988-06-29 16:48:07 +00:00
ceriel
78f0107cb8 only change sign when value is not 0 1988-06-29 16:34:40 +00:00
ceriel
1f07fc05a4 fixed bug with linenumber counting 1988-06-29 14:05:37 +00:00
ceriel
3ed0f85ba7 fixed typo 1988-06-29 13:13:49 +00:00
ceriel
77830f353c small fix 1988-06-29 10:49:24 +00:00
ceriel
e64951e1d3 removed some lint complaints 1988-06-28 14:41:02 +00:00
ceriel
2f7e414d42 corrected lint entry 1988-06-28 14:36:21 +00:00
ceriel
3be40e8f15 removed some lint complaints 1988-06-28 13:55:25 +00:00
ceriel
bd975e3041 removed some lint complaints 1988-06-28 13:43:54 +00:00
ceriel
724d5ba148 use system module for system calls 1988-06-28 11:20:50 +00:00
ceriel
c03e25dc0d Added sys_rename 1988-06-28 11:12:18 +00:00
ceriel
d702321c37 do LLgen after modules 1988-06-28 11:00:54 +00:00
ceriel
2d16f61cdf Added SMALL for small unknown machine 1988-06-28 10:20:07 +00:00
ceriel
fb4ff4cab0 Added some code for small unknown machine 1988-06-28 10:19:23 +00:00
ceriel
4c7c1867c3 get some info from ACK include files 1988-06-27 15:21:37 +00:00
ceriel
4fbb44f790 Added interpreter 1988-06-27 15:14:34 +00:00
ceriel
911eb2ebf9 do not install interpreter on small machines 1988-06-27 15:14:31 +00:00
ceriel
406d72db67 Added interpreter 1988-06-27 15:08:38 +00:00
ceriel
c3255c0a42 Added interpreter 1988-06-27 15:00:08 +00:00
ceriel
ac925ef2d5 More adaptions for ACK 1988-06-27 14:54:40 +00:00
ceriel
3b32a79997 improved distr entry 1988-06-27 14:52:18 +00:00
ceriel
15cf912949 Added interpreter 1988-06-27 14:51:59 +00:00
ceriel
c69f99b644 Put int.1 in this directory 1988-06-27 14:48:30 +00:00
ceriel
fe74b9f8de Adapted for ACK 1988-06-27 14:40:29 +00:00
ceriel
a578d2eda8 for the time being, do not pass IP_SPEC to the Makefile in switch;
this does not work with relative paths
1988-06-27 11:49:17 +00:00
ceriel
9f795adbc4 added ACK entries to Makefile 1988-06-27 11:08:04 +00:00
ceriel
d32e121832 added ACK entries to Makefile 1988-06-27 10:58:44 +00:00
ceriel
5ffe3a4280 added ACK entries to Makefile 1988-06-27 10:51:16 +00:00
dick
0e847669e8 Proper place for directory test 1988-06-24 15:59:07 +00:00
dick
198c8525f2 Initial entry 1988-06-24 15:40:41 +00:00
ceriel
e67a70cbea LLscan either macro or function 1988-06-24 14:55:27 +00:00
ceriel
1c801f86eb minor mod: name change 1988-06-24 14:28:13 +00:00
ceriel
123b73506d inline scan 1988-06-24 14:26:35 +00:00
ceriel
71834855e8 generate #define for LL_LEXI in every file 1988-06-24 14:21:07 +00:00
ceriel
7b93233386 fixed typos 1988-06-24 13:21:37 +00:00
ceriel
d3723b3d38 modified distance function somewhat 1988-06-24 12:03:02 +00:00
ceriel
e1f7d20251 modified generation of token mapping somewhat 1988-06-24 11:48:10 +00:00
ceriel
8bdf3af20c fixed Makefile 1988-06-24 09:37:54 +00:00
ceriel
d20bfe4f68 some tables are static now 1988-06-24 09:32:15 +00:00
ceriel
a27fac26db hide some names 1988-06-24 09:31:28 +00:00
dick
6214be89c8 Initial entry 1988-06-22 21:48:19 +00:00
ceriel
b72f2848dd fixed panic mode 1988-06-22 18:47:48 +00:00
dick
da943cec51 Initial entry 1988-06-22 17:09:12 +00:00
ceriel
416944b293 Updated to dense switches generation 1988-06-22 17:04:52 +00:00
dick
a717832bfb Initial entry 1988-06-22 16:57:09 +00:00
ceriel
4934f830fc Added code to generate dense switches 1988-06-22 16:23:36 +00:00
ceriel
c146e278fc distance routine improved a little; still not safe! 1988-06-22 16:22:07 +00:00
dick
d49fb42d47 Initial entry 1988-06-22 16:22:00 +00:00
ceriel
ec40d28c25 Added some patterns to evaluate constant shifts 1988-06-22 13:47:57 +00:00
ceriel
83a22b318c handle SLU like SLI 1988-06-22 11:31:45 +00:00
ceriel
dd690a1065 a minor fix 1988-06-22 10:56:04 +00:00
ceriel
627d2060cd Added some code to reduce SLI, then decided against it 1988-06-22 10:41:52 +00:00
ceriel
f892470f88 when checking for array computations with SLI, also check at the ADS! 1988-06-21 16:49:52 +00:00
ceriel
d25a84511c corrected 1988-06-21 16:20:59 +00:00
ceriel
e8f4e47da5 better info for SLI 1988-06-21 16:10:19 +00:00
ceriel
7f5c3ac4f6 made reading of list from description file a bit more general 1988-06-21 15:31:51 +00:00
ceriel
46c8b743f2 run peephole optimizer after inline substitution 1988-06-21 15:20:49 +00:00
ceriel
860230a837 lay-out fix 1988-06-21 15:20:01 +00:00
ceriel
e4e7671ab6 Added ACK standard entries 1988-06-20 15:52:55 +00:00
ceriel
5ac6f79a47 Initial revision 1988-06-20 12:46:49 +00:00
ceriel
db62807b9b Initial revision 1988-06-20 11:43:45 +00:00
ceriel
9bbab79c2a Added latest change from kaashoek 1988-06-20 11:40:31 +00:00
ceriel
275966674b Initial revision 1988-06-20 11:26:47 +00:00
ceriel
f15a6e827a Initial revision 1988-06-20 11:21:01 +00:00
ceriel
701172d318 Added .distr 1988-06-20 11:20:13 +00:00
ceriel
765add698d Initial revision 1988-06-20 11:13:07 +00:00
ceriel
fcafcb1700 corrected dependancy list 1988-06-16 17:04:59 +00:00
ceriel
e0a4fd1989 some cosmetic changes 1988-06-16 15:06:09 +00:00
ceriel
59dbc95e0d made bittable dynamic 1988-06-16 13:46:38 +00:00
ceriel
a0934dc7e0 made bittable dynamic 1988-06-16 13:24:10 +00:00
ceriel
184984d472 Minor adaptions to comments 1988-06-16 11:44:31 +00:00
ceriel
922eba369d Added doc for new IL option 1988-06-16 10:49:45 +00:00
ceriel
3dd878594f Add option to global optimizer, to indicate that it is offered the
whole program
1988-06-16 09:59:25 +00:00
ceriel
8f1cac51c8 Added option for temporary directory 1988-06-16 09:57:59 +00:00
ceriel
dea600f9bf Added option to indicate that whole program is offered 1988-06-16 09:41:51 +00:00
ceriel
ec551e2f36 updated 1988-06-16 09:40:09 +00:00
ceriel
35d8ec11fa be a bit more optimistic about gain for pointer registers 1988-06-15 15:28:10 +00:00
ceriel
c68c06d0c3 only check duplicate ms_emx 1988-06-15 15:25:50 +00:00
ceriel
16e657858a Some improvements 1988-06-15 13:15:41 +00:00
ceriel
889cf28571 Added target optimizer 1988-06-14 09:43:11 +00:00
ceriel
9c6ef73ba3 Added target optimizer 1988-06-14 09:29:44 +00:00
ceriel
14233a4c03 Initial revision 1988-06-14 09:22:51 +00:00
ceriel
adadb10b17 corrected 1988-06-13 18:01:47 +00:00
ceriel
be8815e2b7 made nbits a long 1988-06-13 17:57:39 +00:00
ceriel
ed5868aa06 give some more info on global optimizer 1988-06-13 15:57:21 +00:00
ceriel
2722d45fdd larger bittable 1988-06-13 15:29:32 +00:00
ceriel
192de9bf32 linenumber in long instead of short 1988-06-13 15:28:19 +00:00
ceriel
cc9c3ae870 made to compile on system V 1988-06-13 15:01:54 +00:00
ceriel
2563acb019 Added pattern for ASS 4 1988-06-13 13:42:39 +00:00
ceriel
969b5221f5 make interface new_stackptr cleaner 1988-06-13 10:34:14 +00:00
ceriel
8f9818c385 Added short-hand for C_cal+C_asp, made interface new_stackptr cleaner 1988-06-13 10:29:36 +00:00
ceriel
de0048e96b don't throw away external procedures 1988-06-10 15:39:05 +00:00
ceriel
0c386e3032 tolower was called without checking for isupper; adapted 1988-06-10 14:28:32 +00:00
ceriel
f2b485740b adaptions for generation of compiler with embedded code-generator 1988-06-10 09:17:45 +00:00
ceriel
3d044db749 improved error messages with opaque types 1988-06-09 11:39:11 +00:00
ceriel
3fec1232da fixed problem with ReOrganize 1988-06-09 09:16:46 +00:00
ceriel
1347076988 changed behaviour of Allocate(..., 0) 1988-06-08 09:22:31 +00:00
ceriel
9fb5d02aa9 changed a comment 1988-06-07 12:34:04 +00:00
ceriel
40ef304bcf prevent core dump when e.out file too large 1988-06-07 12:17:00 +00:00
ceriel
9f9681bf39 corrected CFU 1988-06-07 11:08:55 +00:00
ceriel
f5d3ab845d fixed problem that was introduced by fix of alignment problem 1988-06-06 13:02:41 +00:00
ceriel
8a368a9ed1 Added code for new LOI/STI opcodes 1988-06-06 10:30:57 +00:00
ceriel
e75308763c Added opcodes for LOI/STI with size >= 32767 1988-06-06 10:10:27 +00:00
ceriel
02297c82ff fixed em.c: call lib/em44 instead of lib/int44 ... 1988-06-03 16:13:57 +00:00
ceriel
cd893a6ff8 corrected 1988-06-03 14:25:26 +00:00
ceriel
8036ca8aec improved test 82 1988-06-03 10:42:07 +00:00
ceriel
a22b21016e corrected cap.c 1988-06-03 09:36:08 +00:00
ceriel
5ce46ce603 removed faulty.h, updated Parameters 1988-06-03 09:33:29 +00:00
kaashoek
60af526ac5 mach.h table for generating assembly added 1988-05-31 17:00:23 +00:00
kaashoek
e568d54af9 bug removed 1988-05-31 14:12:35 +00:00
kaashoek
6a08adb962 grammar changed 1988-05-31 14:05:41 +00:00
kaashoek
f68b18f639 *** empty log message *** 1988-05-31 13:41:03 +00:00
kaashoek
7cc193c460 *** empty log message *** 1988-05-31 13:22:14 +00:00
kaashoek
83b11ebd82 *** empty log message *** 1988-05-31 13:20:28 +00:00
kaashoek
f466e4b0e7 skip traling spaces by operands 1988-05-31 13:16:48 +00:00
kaashoek
4e62421f45 The file 'data.h' must also be included. 1988-05-31 12:56:26 +00:00
kaashoek
12db9cf64e Execute_mnemonic() is changed so it won't loop when it can't find the
assembly-mnemonic in the as_table.
1988-05-31 12:54:30 +00:00
kaashoek
60de25db56 ::= replaced by ==> 1988-05-31 09:38:26 +00:00
dick
885d03a020 Initial version 1988-05-30 17:17:16 +00:00
kaashoek
8ba1ce6f1a Zorgen dat de prioriteit van de 'distance' goed is; haakjes om de expressie
zetten
1988-05-29 15:22:18 +00:00
kaashoek
95b5bdcdc5 Quotes en back-slashes moeten ook speciaal behandeld wordeni in strings. 1988-05-29 13:55:56 +00:00
kaashoek
953ac2b514 Subtiel foutje met haakjes tellen, twee regels moeten omgedraaid worden. 1988-05-29 13:53:57 +00:00
kaashoek
a5b6ef2a18 Quotes en back-slahses moeten ook speciaal behandeld worden in strings. 1988-05-29 13:52:54 +00:00
kaashoek
2edf3315d6 Initial revision 1988-05-27 17:07:58 +00:00
kaashoek
c7beb3208f Foutje met new-line karakters in een string, precies hetzelfde als bij eval. 1988-05-27 15:25:30 +00:00
kaashoek
6d56874b8f Stom tikfoutje: sitchseg ipv. switchseg. 1988-05-27 14:08:29 +00:00
kaashoek
7f580b3029 De routines C_xxx_fcon() stonden per ongeluk tussen commentaar haken. 1988-05-27 13:58:00 +00:00
kaashoek
28e86b7f15 process_mnemonic() van plaats verhuisd zodat deze nu aangeroepen wordt voor
het zoeken. Dit maakt het mogelijk om de gebruiker gekke karakters uit een
mnemonic te laten verwijderen, bijv. bij 68020 "move.l" --> "move_l".
1988-05-27 10:48:34 +00:00
kaashoek
abc9006b8e Stom foutje in vorige verbetering 1988-05-27 09:30:05 +00:00
kaashoek
cd73332f77 skip_string() gewijzigd zodat ook instructies met een '.' erin geaccepteerd
worden. Komen voor in de 68020 assembler, bijv. "move.l", "add.l", etc. .
1988-05-27 09:21:37 +00:00
kaashoek
8998c4165d Bij het vervangen van @text2() door print-statements zorgen dat het resultaat
ook 1 statement is: zet er '{' en '}' omheen.
Tevens kunnen de argumenten van een @reloc4() over meerdere regels staan. Dit
levert problemen met het in een string zetten om ze te printen, alle newlines
vervangen door '\\n'.
1988-05-27 08:56:47 +00:00
kaashoek
a3ad389064 final version 1988-05-16 13:16:03 +00:00
kaashoek
1099f24bbf 16/5 1988-05-16 10:51:32 +00:00
kaashoek
ebd4ca5662 Initial revision 1988-05-16 10:51:23 +00:00
kaashoek
b52eecb904 Initial revision 1988-05-16 10:32:30 +00:00
ceriel
2565b29679 changed int?? into em?? 1988-05-06 17:40:44 +00:00
ceriel
0be2e884b1 some last-minute minor changes 1988-05-06 17:03:30 +00:00
ceriel
d33fa59a9f found a %D; replaced by %ld 1988-05-06 17:03:06 +00:00
ceriel
066439ec19 changed int?? to em?? 1988-05-06 13:46:55 +00:00
ceriel
7f7078c9f0 check that files can be created 1988-05-04 16:49:58 +00:00
ceriel
f63363cfb8 small fix in sigvec 1988-05-04 16:16:41 +00:00
ceriel
b536454c5b previous change was wrong 1988-05-04 10:14:49 +00:00
ceriel
d19d409038 Added use of -T option 1988-05-04 10:14:48 +00:00
ceriel
b9943e0ca2 minor update 1988-05-03 15:17:13 +00:00
kaashoek
438572359f more comments from Dick and Henri 1988-05-03 15:15:28 +00:00
ceriel
2a1191bfc1 fixed very minor bug: strings should be aligned on word_boundaries 1988-05-03 15:04:30 +00:00
ceriel
58724710d1 Added some comments 1988-05-03 13:17:20 +00:00
kaashoek
b5f619dadd consistent naming 1988-05-03 13:03:07 +00:00
kaashoek
723e024d25 output_back 1988-05-03 12:55:48 +00:00
kaashoek
bc28af9d7c close_back() 1988-05-03 12:55:30 +00:00
kaashoek
3afe1ff2e4 open_back() 1988-05-03 12:54:52 +00:00
ceriel
e40b7407d5 declare some variables in init.c instead of runtime startoff 1988-05-03 12:44:32 +00:00
ceriel
781a1218a5 only increment line number on ASCII LF 1988-05-03 11:30:25 +00:00
ceriel
eb3dd52dd8 added comment 1988-05-03 09:53:52 +00:00
ceriel
94bb3d3e04 improved checking 1988-05-03 09:03:19 +00:00
ceriel
7dcfb2b4ad Added a stripped version of the Unix module 1988-05-03 08:33:33 +00:00
ceriel
8b655cb67e Exchanged role of ALLOCATE/Allocate 1988-05-03 08:20:11 +00:00
ceriel
e533bb9bbf minor mod 1988-05-02 15:51:29 +00:00
ceriel
2468ee6d34 did not compile with NOPP defined 1988-05-02 15:37:13 +00:00
ceriel
d5f6dfeb2a did not compile with USE_TMP not defined 1988-05-02 14:40:35 +00:00
ceriel
132e8d0baa minor fixes 1988-05-02 14:13:25 +00:00
ceriel
1408daf070 Added some OK commands and some #ifdefs 1988-05-02 13:25:38 +00:00
ceriel
f6f8a5e858 fixed another typo 1988-05-02 12:35:39 +00:00
ceriel
7af7f27042 mention limitation of Modula-2 on small machines 1988-05-02 11:11:04 +00:00
ceriel
e04d01106a don't try to install Modula-2 libraries for big machines on small machines 1988-05-02 11:05:54 +00:00
ceriel
e34c870d02 minor mods 1988-05-02 10:33:30 +00:00
ceriel
e030fdc548 fixed typo 1988-05-02 08:46:58 +00:00
ceriel
aadfe97a58 make to fit on PDP-11 again 1988-04-29 15:41:38 +00:00
ceriel
4d528bbc24 Added some unix signal handling 1988-04-29 14:38:36 +00:00
ceriel
f7efb51155 Added another trap number 1988-04-29 12:37:02 +00:00
ceriel
82c952bdeb updated somewhat; deleted int 1988-04-29 11:16:49 +00:00
ceriel
2cd29242ae deleted int 1988-04-29 11:00:40 +00:00
ceriel
23aca9118e improved clean entry 1988-04-29 09:22:57 +00:00
ceriel
69b293d86b types of case-labels are base-types 1988-04-29 09:16:51 +00:00
ceriel
578b8fd103 Fixed again to work with 'indir' 1988-04-29 09:15:01 +00:00
ceriel
a3e39fe309 mentioned another problem 1988-04-29 09:13:55 +00:00
ceriel
e8d1bdb192 make to work with modified installation script 1988-04-29 09:12:29 +00:00
ceriel
43de234b53 Added floating point support 1988-04-28 15:16:07 +00:00
ceriel
0e501983f4 don't allow allocates bigger than MAX(INTEGER) 1988-04-28 15:13:44 +00:00
ceriel
9388fb69f8 be careful about overflow in con_float 1988-04-28 15:03:03 +00:00
ceriel
6fa999d162 corrected 1988-04-28 14:50:27 +00:00
ceriel
88acb4c4d9 be careful about overflow in con_float 1988-04-28 14:46:11 +00:00
ceriel
c4d0a4f449 corrected the overflow checks 1988-04-28 14:21:55 +00:00
ceriel
2a11727622 updated to current situation 1988-04-28 13:38:24 +00:00
ceriel
81e724d4f6 improved printf 1988-04-28 11:16:50 +00:00
ceriel
673679e5eb improved trap handling 1988-04-27 18:11:33 +00:00
ceriel
5891ec12a0 corrected brk and sbrk somewhat 1988-04-27 18:02:59 +00:00
ceriel
2e009ecfff almost fixed problem with cfu 1988-04-27 16:57:43 +00:00
ceriel
420ca09aee improved; now also runs with interpreter 1988-04-27 13:01:25 +00:00
ceriel
20f4177c29 updated to different default action of TakeAction 1988-04-27 11:34:33 +00:00
ceriel
ccdfd76de2 Allow for (more) complex shell commands in parameter 1988-04-27 11:30:13 +00:00
ceriel
7fbb57dea4 clean entry should not throw away distributed files 1988-04-27 10:57:37 +00:00
ceriel
39d3496f4b Added termcap.c 1988-04-26 18:23:40 +00:00
ceriel
8acf1542f6 updated dependencies 1988-04-26 16:15:25 +00:00
ceriel
5a7fa39fc9 updated dependencies 1988-04-26 16:03:36 +00:00
ceriel
8781ada304 generate more register messages 1988-04-26 15:33:48 +00:00
ceriel
a0799c99ec Initial revision 1988-04-26 14:33:11 +00:00
ceriel
be39f6c6a0 updated smoewhat 1988-04-26 14:21:10 +00:00
ceriel
143387e11d updated smoewhat 1988-04-26 14:11:05 +00:00
ceriel
db786790ee made epsd 1e-14 instead of 1e-17 1988-04-26 14:10:55 +00:00
ceriel
bfd4554758 fixed: did not compute hexadecimal numbers right 1988-04-26 13:47:02 +00:00
ceriel
6722c28d81 Added comment 1988-04-26 13:04:04 +00:00
ceriel
7943327f7d corrected 1988-04-26 11:43:23 +00:00
ceriel
76a93fcbc3 better error checking in Storage module 1988-04-26 11:25:36 +00:00
ceriel
6c825b7892 fixed hexadecimal character class 1988-04-26 10:51:50 +00:00
ceriel
e925036f8d corrected 1988-04-26 10:49:07 +00:00
ceriel
2bbecf2416 better argument checking of standard functions 1988-04-26 10:14:01 +00:00
ceriel
b3ce56e32a Added many tests; probably still not enough 1988-04-25 18:20:49 +00:00
ceriel
d9638fca0e fixed bug: did not convert 0 right 1988-04-25 18:13:32 +00:00
ceriel
264773ee06 fixed bug in SIM and SIG 1988-04-25 17:05:36 +00:00
ceriel
d260937564 improved layout with varargs 1988-04-25 16:24:42 +00:00
ceriel
71dd29ae30 improved layout 1988-04-25 16:17:29 +00:00
ceriel
6607dc999e fixed; va_end(list) should be va_end(ap) 1988-04-25 15:31:58 +00:00
ceriel
093a970d7f generate scope info for functions 1988-04-25 12:55:25 +00:00
ceriel
131d4d9454 align on ints instead of shorts 1988-04-25 10:41:33 +00:00
ceriel
e4838a6225 dont generate .data4 1988-04-25 10:31:33 +00:00
ceriel
9bd075e3a0 Added TableHandl.def 1988-04-25 09:28:10 +00:00
ceriel
816c7e6416 made ioctls to work better on sun 1988-04-22 19:41:22 +00:00
ceriel
cf00c1ffa0 made to look better on our laser printer 1988-04-22 18:59:19 +00:00
ceriel
d6f2d2f25c corrected wait systemcall 1988-04-22 18:49:13 +00:00
ceriel
01faecb6ed conversion to our assembler was not complete 1988-04-22 18:44:28 +00:00
ceriel
3f3b3d04e6 conversion to our assembler was not complete 1988-04-22 18:37:59 +00:00
ceriel
3edf9486c9 fixed to not accept dots in numbers 1988-04-22 18:34:22 +00:00
ceriel
3228f4f21b restore external base, just to be sure 1988-04-22 17:19:40 +00:00
ceriel
856f58468e restore external base, just to be sure 1988-04-22 16:54:58 +00:00
ceriel
d1a444d6d1 minor fix 1988-04-22 16:19:56 +00:00
ceriel
4410cc5cdf main should return value 1988-04-22 16:00:01 +00:00
ceriel
48f7be1f8e corrected; did some shifts that have undefined result 1988-04-22 15:49:20 +00:00
ceriel
d3da6b76dc avoid use of modf; not portable 1988-04-22 14:17:34 +00:00
ceriel
b68e30f6ff avoid use of modf; not portable 1988-04-22 14:11:55 +00:00
ceriel
b948e4b59d corrected; sometimes lookahead would fail 1988-04-22 14:02:43 +00:00
ceriel
adaa19c807 some more actions for making distr 1988-04-22 09:39:50 +00:00
ceriel
fd4bda4865 made more portable 1988-04-21 18:53:31 +00:00
ceriel
e0d31020c8 made to conform to ACK rules 1988-04-21 18:48:15 +00:00
ceriel
0aa6d4ed5d corrected: a shift of 32 is not portable! 1988-04-21 18:40:42 +00:00
ceriel
5db0db5959 fixed minor bug in lin instruction (!) 1988-04-21 15:29:02 +00:00
ceriel
5f4707b280 improved comments; should now be understandable for anyone who knows EM 1988-04-21 10:08:56 +00:00
ceriel
e41fd6d8a9 corrected typo 1988-04-21 09:21:18 +00:00
ceriel
1cd66f2952 Dicks corrected emtest 1988-04-20 17:49:42 +00:00
ceriel
211f5d2ad8 improved signal handling 1988-04-20 17:10:21 +00:00
ceriel
79e3ac1a26 improved setjmp 1988-04-20 16:58:29 +00:00
ceriel
379101461e corrected .s files 1988-04-20 16:47:41 +00:00
ceriel
536716ba84 rewritten setjmp: compiler now gives a bit more support 1988-04-20 15:33:17 +00:00
ceriel
cd782a1488 corrected a syntax error 1988-04-20 15:28:26 +00:00
ceriel
ae50580eff new handling of setjmp; now pass return address 1988-04-20 15:28:10 +00:00
ceriel
083d520d38 SUN4 frexp strikes again ... 1988-04-20 14:42:04 +00:00
ceriel
09eb4f9325 changed xenix3.0 to xenix3 1988-04-20 11:52:53 +00:00
ceriel
b82c0d9bdd Added test 1988-04-20 10:45:09 +00:00
ceriel
fee10c4735 Initial revision 1988-04-20 10:43:48 +00:00
ceriel
06c28ad222 do not call frexp with 0.0; the SUN4 cannot stand it 1988-04-20 10:01:35 +00:00
ceriel
865e5b607a Added include 1988-04-20 09:25:31 +00:00
ceriel
750aad12f6 Made a bit more portable 1988-04-19 19:46:28 +00:00
ceriel
62c9bd14ce made to work for distribution 1988-04-19 18:58:08 +00:00
ceriel
b651e4cfbe Added my name to author list 1988-04-19 17:19:21 +00:00
ceriel
540fb5605b Added minix and minixST 1988-04-19 17:16:10 +00:00
ceriel
347a183428 avoid installation order problem 1988-04-19 17:05:05 +00:00
ceriel
0768c14544 Added check that script is started from proper directory 1988-04-19 16:57:19 +00:00
ceriel
39ee09e442 order was wrong 1988-04-19 16:56:40 +00:00
ceriel
832e4c3e8d order was wrong 1988-04-19 16:55:51 +00:00
ceriel
bbe4d39ddd improved stupid test 1988-04-19 16:45:19 +00:00
ceriel
9d3f9ea496 fixed a small problem with the 'symmetric' option; also fixed a
problem with Hex numbers
1988-04-19 14:40:27 +00:00
ceriel
fef0bf1075 adapted for new distribution 1988-04-19 14:33:58 +00:00
kaashoek
7fc73c9cf3 *** empty log message *** 1988-04-19 12:40:43 +00:00
kaashoek
805354f806 *** empty log message *** 1988-04-19 11:41:16 +00:00
ceriel
37a3f20b85 Added minix 1988-04-19 11:10:14 +00:00
ceriel
eb1ddcb2a3 Added minix 1988-04-19 11:01:39 +00:00
ceriel
3f28711419 Added minix 1988-04-19 10:56:12 +00:00
ceriel
a4d9ed6ac8 Initial revision 1988-04-19 10:48:34 +00:00
kaashoek
5b4ae84255 comments Dick 1988-04-19 10:41:05 +00:00
ceriel
8c20160cb6 Initial revision 1988-04-19 10:38:18 +00:00
ceriel
e9f4f7498c corrected somewhat 1988-04-19 10:33:07 +00:00
ceriel
d5b7752fdb Added define for ACK 1988-04-19 10:30:15 +00:00
ceriel
709fee14c6 Initial revision 1988-04-19 10:19:15 +00:00
ceriel
cac49c513c Added cleanup 1988-04-19 10:13:41 +00:00
ceriel
da872ef789 assert macro has one parameter 1988-04-19 09:57:44 +00:00
ceriel
9d3ae1c4d0 Added minixST 1988-04-19 09:40:02 +00:00
ceriel
a61b1a19bb Initial revision 1988-04-19 09:34:37 +00:00
ceriel
5140441585 Initial revision 1988-04-19 09:27:51 +00:00
ceriel
1519576e82 Added .distr 1988-04-19 09:22:48 +00:00
ceriel
647b192b1f Initial revision 1988-04-19 09:15:48 +00:00
ceriel
449ea0d073 Added .distr 1988-04-19 09:13:41 +00:00
ceriel
2a7411dd91 Added descr 1988-04-19 09:10:18 +00:00
ceriel
65f67f48a3 Added m2 as callname 1988-04-18 15:57:28 +00:00
ceriel
580b1c081f cleaned up some garbage. How did it get there? 1988-04-18 15:54:20 +00:00
ceriel
eb6ed2df62 Added .distr file 1988-04-18 15:00:24 +00:00
ceriel
f0dee053ca Added READ_ME file 1988-04-18 14:06:00 +00:00
ceriel
88d11eaf44 changed font 5 references to font CW references 1988-04-18 13:56:01 +00:00
ceriel
defbe00b6a changed font 5 references to font CW references 1988-04-18 13:42:35 +00:00
ceriel
003eed2758 deleted print and show 1988-04-18 13:40:54 +00:00
ceriel
71efb88a36 changed font 5 references to font CW references 1988-04-18 13:34:29 +00:00
ceriel
a9ad34c8db fixed a bug: did not handle %while in FIXED terms 1988-04-18 11:06:55 +00:00
ceriel
ba88529f50 deleted LLgen from distr file 1988-04-18 10:36:07 +00:00
ceriel
c06568406c Initial revision 1988-04-18 10:24:30 +00:00
ceriel
35e749a72f Added id.sed 1988-04-18 10:23:45 +00:00
ceriel
132548a987 Added a distr entry 1988-04-18 10:21:30 +00:00
ceriel
b7a100b1f5 create lib directory if not present 1988-04-18 10:17:58 +00:00
ceriel
26b57eab2f corrected some 1988-04-18 10:13:57 +00:00
ceriel
0de242d9bb Added make.sh 1988-04-18 09:18:18 +00:00
ceriel
d1c9c94493 generate message about parameter count 1988-04-15 17:29:02 +00:00
ceriel
9dbd7bdcf5 check for total size of locals and parameters 1988-04-15 17:25:01 +00:00
ceriel
09ed33d12d fixed minor bug: report on used memory was wrong 1988-04-15 16:05:05 +00:00
ceriel
a93bf46382 use varargs when needed 1988-04-15 15:43:52 +00:00
ceriel
f5be4dafc6 use varargs when needed 1988-04-15 15:34:19 +00:00
ceriel
2549099d3b use varargs where needed 1988-04-15 15:19:27 +00:00
ceriel
32e125b3f9 make sure there is a varargs.h file somewhere 1988-04-15 15:18:38 +00:00
ceriel
d1fee09721 Use varargs where needed 1988-04-15 15:07:51 +00:00
ceriel
648d745177 deleted sgtty.h 1988-04-15 15:03:59 +00:00
ceriel
143fe678d4 use stty/gtty instead of ioctl 1988-04-15 15:03:32 +00:00
ceriel
d7b7427431 Added varargs.h 1988-04-15 14:45:04 +00:00
ceriel
ecaea97a99 make to use varargs.h 1988-04-15 14:43:19 +00:00
ceriel
16e2e6f346 Added sgtty.h 1988-04-15 14:38:33 +00:00
ceriel
cc85226c3d changed address 1988-04-15 12:49:16 +00:00
ceriel
1c7c9c60cf fef4 and fef8 did not quite work properly: the exponent part is an
int, not a short!
1988-04-14 18:06:47 +00:00
ceriel
f92dad2d9d only fclose on non-NULL streams 1988-04-14 16:09:02 +00:00
ceriel
7971761628 generated illegal code; fixed 1988-04-14 16:03:55 +00:00
ceriel
355177a22c improved sbrk 1988-04-14 10:45:42 +00:00
ceriel
1da83e161b made to fit on PDP-11 again, and some other minor mods 1988-04-13 18:37:45 +00:00
kaashoek
9f4469d798 comments of Ceriel and Henri 1988-04-13 14:33:11 +00:00
ceriel
e53d23a925 some minor improvements 1988-04-13 13:05:38 +00:00
ceriel
24d7026a7a corrected comment message 1988-04-13 12:52:40 +00:00
ceriel
cdda84eaab minor improvement 1988-04-13 12:40:48 +00:00
ceriel
75345fa915 make a little more robust 1988-04-12 19:34:38 +00:00
ceriel
1f041497ec edit modula-2 compiler Makefile on small systems 1988-04-12 15:55:26 +00:00
kaashoek
ca94deb2c2 Initial revision 1988-04-12 14:31:05 +00:00
ceriel
37e21bc6a5 changed copyright notice 1988-04-12 11:30:10 +00:00
ceriel
39c5ab2997 better ORD, VAL, and CAP, and some other minor mods 1988-04-12 09:19:06 +00:00
ceriel
54bfaff625 Added a mechanism to test pointers as soon as possible 1988-04-11 18:32:47 +00:00
ceriel
287ff14a1f fixed typo 1988-04-11 14:46:41 +00:00
ceriel
52085d5555 updated 1988-04-11 13:03:14 +00:00
ceriel
eeb2f2ba80 updated+modula-2 1988-04-11 13:02:20 +00:00
ceriel
eddb43c08e catch possibly occurring trap with stores in the HP 1988-04-11 12:51:22 +00:00
ceriel
3df72f4136 Also allow .def files; compiler will give error message 1988-04-11 12:45:45 +00:00
ceriel
b371c91584 Added xenix3 1988-04-11 12:44:36 +00:00
ceriel
54d444c5c5 Added xenix3 1988-04-11 12:38:24 +00:00
ceriel
39ac6fb719 some minor fixes 1988-04-11 11:41:50 +00:00
ceriel
155a1ba5c8 adapted to new semantics of the EHEAP error: no longer fatal 1988-04-11 11:37:54 +00:00
ceriel
9d7f47c37a adapted to new semantics of the EHEAP error: no longer fatal 1988-04-11 11:27:37 +00:00
ceriel
8dfcff6911 fixed typo 1988-04-11 11:13:20 +00:00
ceriel
0c45ef1b5a adapted to new semantics of the EHEAP error: no longer fatal 1988-04-11 11:03:22 +00:00
ceriel
6eb15567ae Added some debug print statements 1988-04-11 10:55:07 +00:00
ceriel
6bfdc85d8f adapted to new semantics of the EHEAP error: no longer fatal 1988-04-11 10:50:58 +00:00
ceriel
01919da550 corrected some text on segemt registers 1988-04-11 10:44:06 +00:00
ceriel
61bfe50a66 Added installation for modula-2 1988-04-11 10:36:24 +00:00
ceriel
d7030591f9 fixed problems in Storage module: caused integer overflow and bad pointers 1988-04-11 10:34:31 +00:00
ceriel
48d2fa770e minor mod 1988-04-11 10:32:22 +00:00
ceriel
b2275303a2 adapted to new semantics of the EHEAP error: no longer fatal 1988-04-11 10:29:59 +00:00
ceriel
b190c55526 fix 1988-04-11 10:11:07 +00:00
ceriel
252d0e0667 minor fix 1988-04-11 09:55:13 +00:00
ceriel
b05198c6bf adapted to new semantics of the EHEAP error: no longer fatal 1988-04-11 09:52:48 +00:00
ceriel
474a3b4584 Added xenix3 to the list of machine-names 1988-04-11 09:51:11 +00:00
ceriel
b0715c481b also make a makecalls for code expander 1988-04-11 09:48:59 +00:00
ceriel
7c4afedd26 split into separate include files 1988-04-11 09:47:33 +00:00
ceriel
9abbd9eb10 Added some patterns 1988-04-11 09:38:31 +00:00
ceriel
8a51ae7b94 Added comments and m2_traps.h 1988-04-08 14:14:44 +00:00
ceriel
6535d32447 Added libm2 1988-04-08 13:39:19 +00:00
ceriel
131efe9348 Added libm2 1988-04-08 13:12:53 +00:00
ceriel
5250c1571f Added m2 1988-04-08 13:10:18 +00:00
ceriel
f109b70f3e updated for 4th distribution 1988-04-08 12:50:10 +00:00
ceriel
857fbcc0c7 Added u argument type, added distr entry in Makefile 1988-04-08 11:33:21 +00:00
ceriel
32d38f3eb8 two versions of the parameters file: small and large 1988-04-08 10:04:03 +00:00
ceriel
b671136060 don't generate HOL's of zero size 1988-04-08 09:46:04 +00:00
ceriel
ec612942a1 a minor mod 1988-04-07 15:35:48 +00:00
ceriel
0760483bee minor mod 1988-04-07 15:30:37 +00:00
ceriel
cc4c9e85c8 Added id.sed 1988-04-07 15:02:12 +00:00
ceriel
e2f1bc59a0 adapted so that interpreter traps on floating point instructions 1988-04-07 13:14:27 +00:00
ceriel
0582d4d83e Added libfp 1988-04-07 12:39:19 +00:00
ceriel
d664b9fb0b Initial revision 1988-04-07 12:36:30 +00:00
ceriel
92255b2a25 Added libfp 1988-04-07 12:31:47 +00:00
ceriel
9a7b199a5c Initial revision 1988-04-07 12:28:10 +00:00
ceriel
41bf233413 Added libfp 1988-04-07 12:26:29 +00:00
ceriel
4e2aea5cb0 Initial revision 1988-04-07 12:23:02 +00:00
ceriel
a614f3be7a Added ncg and libfp 1988-04-07 11:49:19 +00:00
ceriel
87a5000e57 Initial revision 1988-04-07 11:45:42 +00:00
ceriel
10b3d3d862 added floating point lib 1988-04-07 11:42:21 +00:00
ceriel
8ee3542787 Added copyright notices 1988-04-07 11:40:46 +00:00
ceriel
8a96f95c59 Initial revision 1988-04-07 10:57:49 +00:00
ceriel
cb4e02f02e fixed 1988-04-06 18:36:59 +00:00
ceriel
b64a224b99 Added modula-2 1988-04-06 18:34:20 +00:00
ceriel
14cdead342 lay-out mod 1988-04-06 18:31:49 +00:00
ceriel
f80afde044 Added floating point lib and modula-2 1988-04-06 18:31:20 +00:00
ceriel
935ae44985 Added modula-2 1988-04-06 18:18:55 +00:00
ceriel
c8a728969d some minor changes and a fix in pointer arithmetic 1988-04-06 18:14:50 +00:00
ceriel
c255ffeaaa Added some defines 1988-04-06 18:12:43 +00:00
ceriel
8e394c3c08 updated 1988-04-06 18:06:23 +00:00
ceriel
93c6adda3c Added modula-2 1988-04-06 18:04:33 +00:00
ceriel
4beb60683f Initial revision 1988-04-06 15:12:11 +00:00
ceriel
56b03adad0 z8000 uses asld, so suffix of targets is .s 1988-04-06 15:10:56 +00:00
ceriel
da052fb6ee Initial revision 1988-04-06 14:49:41 +00:00
ceriel
e25004012b Added an 'all' entry 1988-04-06 14:46:04 +00:00
ceriel
288c4c9a13 Added .distr file, added 'all' entry in Makefile 1988-04-06 14:42:22 +00:00
ceriel
d48f810ef6 Added .distr file 1988-04-06 14:37:14 +00:00
ceriel
04cabf258d Initial revision 1988-04-06 14:24:36 +00:00
ceriel
50cf97a378 Initial revision 1988-04-06 14:13:41 +00:00
ceriel
0320f9c7ba Added an 'all' entry 1988-04-06 14:08:08 +00:00
ceriel
f635588643 Initial revision 1988-04-06 14:03:28 +00:00
ceriel
f687134a38 Added an 'all' entry 1988-04-06 13:56:46 +00:00
ceriel
4afb2f0b23 Initial revision 1988-04-06 13:46:40 +00:00
ceriel
dc24ab8b57 Added an 'all' entry 1988-04-06 13:41:06 +00:00
ceriel
dc547a271a added .distr file 1988-04-06 13:38:42 +00:00
ceriel
6211edb4c6 z8000 uses asld 1988-04-06 13:18:10 +00:00
ceriel
ffff65a8d7 Initial revision 1988-04-06 13:17:21 +00:00
ceriel
6507aa0a73 Added .distr 1988-04-06 13:06:08 +00:00
ceriel
f47d49b1c0 Added cap.c 1988-04-05 15:27:50 +00:00
ceriel
e566fc551d some fixes 1988-03-31 17:58:56 +00:00
ceriel
2be8437d73 identifiers may not contain two consecutive underscores, and a fix 1988-03-31 16:09:53 +00:00
ceriel
702a73b734 identifiers may not contain two consecutive underscores, and a fix 1988-03-31 16:02:20 +00:00
ceriel
92f28ae164 Added another debug statement 1988-03-31 12:50:12 +00:00
ceriel
14d7db7499 remove some of the lint complaints 1988-03-31 11:17:47 +00:00
ceriel
4e419a19cd delinted 1988-03-31 10:38:05 +00:00
ceriel
092292683c modified to use a different 'panic' strategy, and use
new clash-table in tables.c when possible, and some other tuning
1988-03-31 10:14:48 +00:00
ceriel
35cb47328a modified to generate the clashes table in another form too 1988-03-31 10:00:07 +00:00
ceriel
21f4403fdb Initial revision 1988-03-30 13:06:41 +00:00
ceriel
021619910e changed PascalIO.Get behaviour and used Allocate instead of ALLOCATE 1988-03-28 18:15:50 +00:00
ceriel
9dccd59665 Added patch for bad fseeks 1988-03-23 18:04:08 +00:00
ceriel
36e934583a many minor mods: name changes 1988-03-23 17:55:57 +00:00
ceriel
7f9fd963fd many minor mods 1988-03-23 17:44:25 +00:00
ceriel
9dce6c6b88 Added patterns for loc sbu and loc adu 1988-03-23 16:52:23 +00:00
ceriel
934568dcf4 new translation of BLS, fix in LOF 1988-03-23 16:07:03 +00:00
ceriel
e71df15045 made to fit on PDP-11 again 1988-03-22 17:54:01 +00:00
ceriel
fba9192bbc new version, with 2/4 handling 1988-03-21 18:22:52 +00:00
ceriel
cc64f88964 adapted to new naming scheme 1988-03-21 18:15:59 +00:00
ceriel
cb52407188 Added .distr file 1988-03-21 18:02:45 +00:00
ceriel
dea657a673 too many changes: some cosmetic; some for 2/4; some for added options 1988-03-21 17:43:54 +00:00
ceriel
795a078d08 too many changes: some cosmetic; some for 2/4; some for added options 1988-03-21 17:22:26 +00:00
ceriel
0976dfa3b9 too many changes: some cosmetic; some for 2/4; some for added options 1988-03-21 17:06:20 +00:00
ceriel
bb51d7b0e2 too many changes: some cosmetic; some for 2/4; some for added options 1988-03-21 16:47:51 +00:00
ceriel
759f4738ca too many changes: some cosmetic; some for 2/4; some for added options 1988-03-21 16:36:31 +00:00
ceriel
6a51fac1e4 Initial revision 1988-03-21 13:48:24 +00:00
ceriel
134869ad1a Added an array bound checking procedure 1988-03-18 18:08:20 +00:00
ceriel
33f80c6eef adapted for 2/4 code generation, and also fixed some bugs 1988-03-18 14:23:04 +00:00
ceriel
fd467fd63d removed a cntrl-a character in the comments 1988-03-17 09:39:43 +00:00
ceriel
2c01d45a49 fix in csb: must be able to handle 0 cases 1988-03-17 09:24:01 +00:00
ceriel
0030ddd97f fixed csb so that it also handles 0 cases 1988-03-16 19:38:14 +00:00
ceriel
2f11dce5ef Added a trap number for cardinal underflow 1988-03-16 09:22:53 +00:00
ceriel
987683cf99 Added some comment 1988-03-16 09:20:36 +00:00
ceriel
750c838141 forgot to pop old handler 1988-03-15 17:37:19 +00:00
ceriel
ba7cc5f6fb more sensible values for SIG_DFL and SIG_IGN 1988-03-15 16:58:43 +00:00
ceriel
29b2b389fd added u opcode type 1988-03-15 14:35:45 +00:00
ceriel
bda28533c5 fix in writing of prompt 1988-03-15 13:48:56 +00:00
ceriel
628b9699e8 adapted to new ip_spec.t 1988-03-15 13:17:42 +00:00
ceriel
a739c9a0ff changed location of ip_spec.t 1988-03-15 11:46:42 +00:00
ceriel
f62a5c7157 adapted to new ip_spec.t and changed location 1988-03-15 11:43:36 +00:00
ceriel
f79f368c72 adapted to new ip_spec.t 1988-03-15 11:37:00 +00:00
ceriel
0b8a55c0cf adapted to new ip_spec.t 1988-03-15 11:29:39 +00:00
ceriel
539e01b5bc Adapted for PAREN_OPEN and PAREN_CLOSE, and better adaption for type-setter 1988-03-14 16:37:00 +00:00
ceriel
63a89b7080 modified to use PAREN_OPEN and PAREN_CLOSE 1988-03-14 16:15:23 +00:00
ceriel
ea9e90d785 fixed for operand separators within operands 1988-03-14 15:58:07 +00:00
ceriel
e8f4ce0886 Added the esize program 1988-03-14 14:29:31 +00:00
ceriel
517b1cae36 deleted an #endif, where-ever it came from I dont know 1988-03-14 14:12:49 +00:00
ceriel
bf3cfae610 CMI was translated wrongly; corrected 1988-03-14 13:56:33 +00:00
ceriel
23be652f11 CMI was translated wrongly; corrected 1988-03-14 13:42:20 +00:00
ceriel
eb6a4a95cd deleted some patterns that were wrong, and apparently never used 1988-03-14 13:30:48 +00:00
ceriel
f846c1648b changed definition of BITMAX 1988-03-12 13:47:11 +00:00
ceriel
a24c41e9cf fix in LXA 1988-03-11 16:34:22 +00:00
ceriel
9258a2a3e9 fixes from Nigel Hall 1988-03-10 16:00:58 +00:00
ceriel
1d98b5fd02 bug fix: did not work when procedure descriptors started on block boundary 1988-03-10 13:03:53 +00:00
ceriel
304f03a836 fixes from Nigel Hall 1988-03-09 18:07:05 +00:00
ceriel
41007486bf some compilers (Multimax) did not understand the sizeof constructions used 1988-03-09 11:42:54 +00:00
ceriel
4b79636b8f fixed a problem with #ifdef/#else/#endif 1988-03-08 11:42:00 +00:00
ceriel
1a259744af The Get routine did not work right, fixed 1988-03-08 11:28:00 +00:00
ceriel
ea21b16846 Added dependency 1988-03-08 10:44:09 +00:00
ceriel
78926a5a84 fix typo and parameters of overflow 1988-03-08 10:35:53 +00:00
ceriel
5cf3fc1017 some minor mods, mostly for better line number tracking 1988-03-08 10:18:58 +00:00
ceriel
75aba83724 some fixes 1988-03-07 11:44:39 +00:00
ceriel
653cd869ba deleted cvf.s 1988-03-07 09:47:06 +00:00
ceriel
14997fe479 "deleted -LIB, already in proto makefile" 1988-02-19 17:15:45 +00:00
ceriel
75986f7ac5 deleted -LIB, already in proto makefile 1988-02-19 17:05:26 +00:00
ceriel
d949e3e8c5 some more fixes to fixes 1988-02-19 16:52:54 +00:00
ceriel
dead814781 Of course: fixes to previous mods 1988-02-19 16:36:45 +00:00
ceriel
31ddd5ca12 mainly new comments 1988-02-19 15:54:01 +00:00
ceriel
96fc577b15 new version using the Streams module 1988-02-19 13:05:03 +00:00
ceriel
17921c4b5a Added the ArraySort module 1988-02-19 12:53:15 +00:00
ceriel
835c373123 parsing routine does not return value! 1988-02-18 18:06:28 +00:00
ceriel
41077644d1 fixed 1988-02-18 11:58:10 +00:00
ceriel
fd08220e2b fixes 1988-02-18 11:17:39 +00:00
ceriel
a298b55b95 sbu was replaced by sbu; is now replaced by sbi 1988-02-18 11:09:11 +00:00
ceriel
0058f45243 corrected 1988-02-18 10:36:22 +00:00
ceriel
25e21494f1 corrected 1988-02-18 10:22:15 +00:00
ceriel
3ccbd9cdc7 Initial revision 1988-02-18 10:22:14 +00:00
ceriel
083404fc90 corrected 1988-02-18 10:12:10 +00:00
ceriel
bab801171f Initial revision 1988-02-18 10:08:42 +00:00
ceriel
07a378fffe corrected 1988-02-18 10:06:46 +00:00
ceriel
02db417d31 Initial revision 1988-02-18 09:48:35 +00:00
ceriel
642acd5cbe Added .distr file 1988-02-18 09:32:26 +00:00
ceriel
ccf7ef96b5 Initial revision 1988-02-18 09:20:09 +00:00
ceriel
4e0c9a780a fixes and other mods 1988-02-17 17:21:51 +00:00
ceriel
31ed7f7e30 Added .distr file 1988-02-17 15:52:20 +00:00
ceriel
e9271376dc Initial revision 1988-02-17 15:44:54 +00:00
ceriel
83d7633503 a minor improvement 1988-02-17 15:41:27 +00:00
ceriel
d04dce377a Changed use of word_align: it now only indicates the alignment on
which word-operations are allowed to take place
1988-02-17 14:29:57 +00:00
ceriel
d034f5145c malloc now allows users to use sbrk too,
setjmp/longjmp now save/restore the signal mask on BSD 4.2 systems,
some minor mods in atof
1988-02-16 17:48:39 +00:00
ceriel
7bc8ed1270 fixed: returned wrong value 1988-02-16 17:48:28 +00:00
ceriel
b54a58e93c made counting for register messages depending on a #define,
adapted makefile to make version with peephole optimizer library
1988-02-16 16:23:00 +00:00
ceriel
3e01918c57 fixed: for some reason some back-quotes disappeared 1988-02-16 13:50:24 +00:00
ceriel
5d861a3399 made to work 1988-02-15 18:08:46 +00:00
ceriel
d6c52e0fef make to work with new em_code interface 1988-02-15 18:04:27 +00:00
ceriel
d7d501d43a made to fit on a PDP-11 again 1988-02-10 14:06:34 +00:00
ceriel
78de25b639 New baseline for distribution 1988-02-09 11:45:30 +00:00
ceriel
6217293e23 some fixes:
- always remove imports from definition modules
- minor improvement in error messages
1988-02-09 11:41:08 +00:00
ceriel
8fc22f0db7 allow assembler to read from STDIN 1988-02-05 15:10:08 +00:00
ceriel
f2dc30c912 modified to use Streams module 1988-02-03 14:34:40 +00:00
kaashoek
60278f1c52 ';' forgotten. 1988-02-03 12:55:36 +00:00
kaashoek
b3f21c47fc CODE_EXPANDER must be defined before including <em.h>. 1988-02-03 12:48:58 +00:00
kaashoek
990080cc04 create_ofiles must be executed in directory ce. 1988-02-03 11:40:29 +00:00
kaashoek
4ec4554fa5 Syntax error in shell command 1988-02-03 10:58:52 +00:00
kaashoek
474b2eb453 Previous version saw C_INSTR CONDITION as CALL ( e.g. C_asp ( $1 == 1) ). 1988-02-03 10:47:08 +00:00
kaashoek
e8f2566542 Don't generate pseudo instructions. 1988-02-03 10:20:58 +00:00
ceriel
eb2ce1f30b This version fixes many problems in older versions 1988-02-02 16:27:54 +00:00
kaashoek
64b4812664 RCS filenames should end with ,v 1988-02-02 15:59:40 +00:00
kaashoek
0ea2930de7 Error in pathnames 1988-02-02 15:53:47 +00:00
kaashoek
a0802dce05 Error in pathnames 1988-02-02 15:50:10 +00:00
ceriel
d70a20ae4c updated 1988-02-01 11:26:16 +00:00
ceriel
e130b1991f some corrections, added modula-2 docs 1988-02-01 10:45:43 +00:00
ceriel
da3c00aeac compare pointers with CMP 1988-02-01 10:17:51 +00:00
ceriel
9d83605ccd Added the Streams module 1988-01-29 11:35:45 +00:00
ceriel
a22ab5c7b7 better error message 1988-01-28 16:54:33 +00:00
ceriel
99611d287b conversion routinew now initialize whole array, Epilogue module changed slightly 1988-01-28 16:37:55 +00:00
ceriel
355fa2c764 Added some runtime trap numbers 1988-01-28 16:34:41 +00:00
ceriel
16e381031b improved filename and linenumber generation 1988-01-28 16:15:16 +00:00
ceriel
72e13f3a5a Yet another fix. ChkUnOper can also be called with a COERCION operator,
when NEW and DISPOSE are expanded
1988-01-28 14:05:34 +00:00
ceriel
7bb1897e98 minor fixes 1988-01-27 15:10:16 +00:00
ceriel
e67e59e56a bug fix in LONGINT constants 1988-01-26 13:54:24 +00:00
ceriel
e5b9c564af Added the Epilogue module 1988-01-25 16:14:48 +00:00
ceriel
b19a178e2e fixed a bug with string-initializers 1988-01-25 16:14:01 +00:00
ceriel
a7cdd16125 Allow the checking of definition modules 1988-01-22 12:04:27 +00:00
ceriel
9dfa2f6979 Added a test that at some point failed for the new CEMCOM 1988-01-19 11:45:43 +00:00
ceriel
ad2d61154b fixed some minor problems 1988-01-15 16:55:01 +00:00
kaashoek
bab6cd29ce Comments added 1988-01-15 16:09:52 +00:00
kaashoek
31efd16916 Comments added 1988-01-15 15:57:35 +00:00
ceriel
ea4b32d326 parameterize archiver used 1988-01-14 14:10:51 +00:00
ceriel
b5d320392c parameterize archiver used 1988-01-14 13:58:44 +00:00
ceriel
e873fd637d try to free mem as soon as possible 1988-01-14 13:53:58 +00:00
ceriel
fb65cda40f make separate lib for code-expander 1988-01-14 13:50:43 +00:00
ceriel
1f3ad61fd5 parameterize archiver used 1988-01-14 13:44:36 +00:00
ceriel
bf37d48ac5 Some minor corrections 1988-01-14 13:40:56 +00:00
ceriel
1ee5101ba7 Some corrections to make it work on small machines 1988-01-14 13:34:42 +00:00
ceriel
629fc3f824 adapted to new em_code module 1988-01-14 13:19:32 +00:00
ceriel
d5c423adaf better check if a block was already freed 1988-01-14 11:35:07 +00:00
ceriel
a726f7d49e adapted to use new em_code module, and a minor fix 1988-01-14 10:52:36 +00:00
ceriel
b90cc5ceb9 make it more K&R C 1988-01-13 11:06:06 +00:00
ceriel
31757c1935 output of id.c was wrong 1988-01-12 15:56:42 +00:00
ceriel
bdc37d879e Added some patterns 1988-01-12 13:27:11 +00:00
ceriel
d4e2dcfb67 prevent some 'bombed out of codegen' crashes 1988-01-12 11:48:38 +00:00
ceriel
a58740c4ee some fixes 1988-01-11 18:24:34 +00:00
ceriel
538896f0a3 improved some code for floating point 1988-01-11 17:06:11 +00:00
ceriel
897b86cba2 prevent a voluntary crash and generate better code 1988-01-11 14:06:20 +00:00
ceriel
85348f653d cas instruction was encoded wrong 1988-01-11 13:25:28 +00:00
kaashoek
055635d63d Comments added. 1988-01-07 16:09:30 +00:00
kaashoek
a92a93bc54 Comments added 1988-01-07 15:52:52 +00:00
kaashoek
dcf14f338b Comments added 1988-01-07 15:25:34 +00:00
kaashoek
41d9465e89 Made consistent with the file in ../common 1988-01-07 15:15:08 +00:00
kaashoek
ed4cfa01c5 Made consistent with file in ../common 1988-01-07 15:12:09 +00:00
kaashoek
544f59b0ea Comment added 1988-01-07 14:52:08 +00:00
kaashoek
dc88d56345 Made consistent with the file in directory ../common 1988-01-07 14:49:57 +00:00
kaashoek
31ba9c1471 Made consistent with the file in the directory ../common 1988-01-07 14:48:23 +00:00
kaashoek
79718501d6 Comments added. 1988-01-07 14:40:43 +00:00
kaashoek
9b1533a69b Some routines moved to 'help.c' 1987-12-18 16:23:42 +00:00
kaashoek
d69f0ef861 Initial revision 1987-12-18 16:22:16 +00:00
kaashoek
69040a2ae0 File 'assem.c' is changed to 'help.c' 1987-12-18 16:17:29 +00:00
kaashoek
572f8ec9c4 Comment added 1987-12-18 12:17:56 +00:00
kaashoek
ecabf96c86 Made consistent with 'arg_type.h' and 'decl.h' 1987-12-18 12:12:50 +00:00
kaashoek
9f510b9172 Comments added.
Made consistent with 'arg_type.h' and 'em_parser.h'
1987-12-18 12:11:58 +00:00
kaashoek
a6de718152 Made consistent with 'em_parser.h' and 'decl.h' 1987-12-18 12:10:50 +00:00
ceriel
d98394f0cf Added a test for casts 1987-12-04 12:53:18 +00:00
ceriel
a8703841b2 changed typing of constants, to be more compatible with PCC
and future standard
1987-12-03 11:12:02 +00:00
ceriel
3f2a4d9c7c added .distr file 1987-12-02 14:01:26 +00:00
ceriel
f8ede83073 deleted some incorrect patterns 1987-12-02 13:21:20 +00:00
ceriel
a61d36ff49 fixes and squeezing 1987-12-02 10:41:38 +00:00
ceriel
9cc60526b7 Added floating point stuff 1987-12-02 09:04:32 +00:00
ceriel
3627b9a16c added use checking for types and constants, improved overflow checking 1987-11-27 14:24:46 +00:00
ceriel
3e51d4f62f version with better overflow checking 1987-11-27 14:13:11 +00:00
ceriel
db572116e1 Added a flag to not give warnings 1987-11-27 11:04:07 +00:00
ceriel
896fec3fc5 version with better overflow checking 1987-11-26 14:15:24 +00:00
kaashoek
900e979035 *** empty log message *** 1987-11-26 12:14:32 +00:00
kaashoek
4b540c6d7e Initial revision 1987-11-26 12:14:26 +00:00
kaashoek
8202444413 *** empty log message *** 1987-11-26 12:00:32 +00:00
kaashoek
79457dabd1 Initial revision 1987-11-26 12:00:22 +00:00
ceriel
c27082938b fix to fix 1987-11-26 10:26:06 +00:00
ceriel
e3501a00dc handle rounding of floating point constants 1987-11-25 16:58:31 +00:00
ceriel
048eac2d67 fixed to also read from standard input 1987-11-25 16:55:51 +00:00
kaashoek
f1a897cec0 Comments added 1987-11-25 14:41:10 +00:00
kaashoek
5ef24f6923 Comments added 1987-11-25 14:22:15 +00:00
kaashoek
dcc3eb63c4 Initial revision 1987-11-25 14:18:23 +00:00
kaashoek
1240849cda *** empty log message *** 1987-11-25 14:03:48 +00:00
kaashoek
5865536463 Comments added 1987-11-25 13:55:12 +00:00
kaashoek
152faf2b36 *** empty log message *** 1987-11-25 13:54:01 +00:00
kaashoek
7af2561a91 1987-11-25 13:52:01 +00:00
kaashoek
67ab00564f n 1987-11-25 13:51:25 +00:00
kaashoek
a057f8e72c Comments added 1987-11-25 11:49:48 +00:00
kaashoek
f1aba7c217 Initial revision 1987-11-25 11:19:38 +00:00
ceriel
b2824fe796 check number of locals and parameters 1987-11-24 14:21:35 +00:00
ceriel
ea2c86ef0c do not allow reals as case labels, check size of array's 1987-11-24 13:22:04 +00:00
ceriel
067eace890 fixed a bug: a numeric label now kills condition codes 1987-11-24 11:43:51 +00:00
ceriel
70403f62d9 fixed a bug: casts to short or char did not work right 1987-11-23 13:48:09 +00:00
ceriel
2e932ba803 fixed: used wrong index in em_flag 1987-11-23 13:35:34 +00:00
ceriel
c41f63a4c8 %[...] did not work 1987-11-20 12:57:51 +00:00
kaashoek
ee3e8ed07e *** empty log message *** 1987-11-20 12:07:51 +00:00
kaashoek
02b72945f1 *** empty log message *** 1987-11-20 11:24:45 +00:00
kaashoek
58b70cc7dd *** empty log message *** 1987-11-20 11:15:42 +00:00
kaashoek
75e0c5f7ed Initial revision 1987-11-20 11:12:07 +00:00
kaashoek
9947059dcc Initial revision 1987-11-20 10:41:03 +00:00
ceriel
bffdad9cdc improved a bit 1987-11-17 16:22:13 +00:00
ceriel
619f6bb893 Fixed bug: subranges of subranges did not work right 1987-11-17 14:29:14 +00:00
ceriel
f00951f788 replaced some move.w by move.l 1987-11-16 15:52:57 +00:00
ceriel
046dc3d5a9 use $(CC) instead of cc 1987-11-16 10:35:32 +00:00
ceriel
7bbfcac62b generate CSA for empty case statement, replaced an #ifdef that was on the wrong spot 1987-11-13 16:21:33 +00:00
ceriel
808e5d8c7d generate CSA for empty case statement 1987-11-13 16:19:51 +00:00
ceriel
57b1a2757e some cosmetic changes+fix in calculator 1987-11-13 15:11:37 +00:00
ceriel
4359c699dc completely new version 1987-11-12 12:26:36 +00:00
ceriel
0baf75f779 completely new version 1987-11-12 11:59:31 +00:00
ceriel
f9281be252 fixed an obscure bug in the hash function: sometimes the globstep variable
had a value equal to size! Also, sizes of tables must be prime
1987-11-11 15:05:41 +00:00
ceriel
603c65950c Fixed some problems:
files that use the em_code module must include the em_code.h file
improved checking of definitions after use
fixed problem with ranges in case statements
1987-11-11 13:10:08 +00:00
ceriel
b434cd85a0 Added a test that LOI does not sign-extend 1987-11-11 10:08:05 +00:00
ceriel
c998623932 Some more adaptions to new semantics of ncgg 1987-11-10 13:49:04 +00:00
ceriel
2f37e8d600 Some more adaptions to new semantics of ncgg 1987-11-10 13:37:19 +00:00
ceriel
ae6e2acb87 Some more adaptions to new semantics of ncgg 1987-11-10 13:26:40 +00:00
ceriel
4489526a11 fixed some minor problems 1987-11-09 16:11:04 +00:00
ceriel
7b317f79e2 The 'ahead' mechanism was not right 1987-11-09 11:45:39 +00:00
ceriel
b6d6c4ee57 changed mechanism for for-loop checking, added some trap numbers 1987-11-09 11:36:45 +00:00
ceriel
785e174cbb Added mechanism for non-cross compiler (yet another way of squeezing it onto
a PDP-11
1987-11-09 11:29:48 +00:00
ceriel
e1a3a1c136 made to fit on a PDP-11 1987-11-09 10:17:20 +00:00
ceriel
028beaf5e6 corrected con_float 1987-11-06 13:12:21 +00:00
ceriel
7d0a77821c fixed bug in reading of longs in archive header 1987-11-05 11:55:28 +00:00
ceriel
734d549473 corrected signal.s 1987-11-05 10:34:04 +00:00
ceriel
cf0852c846 print initializer expression before call to code_declaration 1987-11-04 16:30:02 +00:00
ceriel
9dd87881e1 fixed a minor problem with unstacking 1987-11-04 15:55:23 +00:00
ceriel
50b73dc023 corrected 1987-11-04 10:54:02 +00:00
ceriel
f05d6fb70e improved alignments, and added libfp 1987-11-04 10:48:25 +00:00
ceriel
77bcd64f03 improved the alilgnment checking somewhat 1987-11-04 10:41:32 +00:00
ceriel
4d67ee1150 improved alignments, and added libfp 1987-11-04 10:28:01 +00:00
ceriel
bad6246b59 improved the alilgnment checking somewhat 1987-11-04 10:26:41 +00:00
ceriel
9e9a6d4575 improved ffp.s 1987-11-04 10:07:57 +00:00
ceriel
086a086d12 included floating point code in table 1987-11-04 09:44:00 +00:00
ceriel
4b265a4f0a improved alignment checking 1987-11-03 16:43:24 +00:00
ceriel
80af6ce214 improved previous improvements 1987-11-03 16:17:37 +00:00
ceriel
b236a708e2 improved the checking of sections 1987-11-03 16:09:55 +00:00
ceriel
2682c42a9e fixed alignments, and added floating point lib 1987-11-03 16:03:18 +00:00
ceriel
2b3f059c55 Added fakfp.s 1987-11-03 15:56:44 +00:00
ceriel
e2037c2e4b fixed some problems, and added floating point library 1987-11-03 15:35:43 +00:00
ceriel
ad65ffcf9b Added floating point lib 1987-11-03 15:33:28 +00:00
ceriel
1387926fdd align sections on long boundaries, add floating point 1987-11-03 15:13:57 +00:00
ceriel
2837aa68a7 fixed some minor problems with copying conformant arrays,
and a LB that pointed below SP in transfer
1987-11-03 15:04:21 +00:00
ceriel
9ae4e7924a Added Xstat.c, to convert between different alignments 1987-11-03 14:50:32 +00:00
ceriel
72ab7b68b8 Added Xstat.c 1987-11-03 14:43:40 +00:00
ceriel
6e5f3632c6 fixed some minor problems 1987-11-03 12:44:09 +00:00
ceriel
867232a244 fixed some minor problems 1987-11-02 17:59:18 +00:00
ceriel
ab5a0efd48 fixed some bugs 1987-11-02 14:23:38 +00:00
ceriel
017871b025 deleted debugging writes 1987-11-02 11:25:13 +00:00
ceriel
b24e6763c3 changed trap messages somewhat, corrected bug in InOut, undone changes
to confarray.c
1987-11-02 11:22:06 +00:00
ceriel
c41fae1f8a avoid *REG constructions because of bug in assembler 1987-11-02 10:52:40 +00:00
ceriel
bc6a9fbf66 Added handling of cardinal overflow 1987-10-30 18:32:14 +00:00
ceriel
e61d8f6356 made to work 1987-10-30 15:35:50 +00:00
ceriel
a93d4a1e29 corrected alignments in tbl 1987-10-30 11:30:17 +00:00
ceriel
f7c479d40b fixed typo 1987-10-30 10:49:35 +00:00
ceriel
e0c73d5195 Added fake floating point routines 1987-10-30 10:42:36 +00:00
ceriel
5cd95d47b2 Now detects use before declaration, f.i. in
VAR k: REAL;
REAL : INTEGER;
1987-10-30 09:19:23 +00:00
ceriel
032e9ebda5 fixed some problems with 1 and 2 byte compares 1987-10-29 15:10:30 +00:00
ceriel
3c63f1b656 sets now allowed for all subranges 1987-10-28 16:10:02 +00:00
ceriel
b668810351 sets now allowed for all subranges 1987-10-28 16:03:56 +00:00
ceriel
d80b501829 Fixed some problems, and improved range-checking 1987-10-28 11:10:30 +00:00
ceriel
98e6c244da CIU should not cause conversion errors! 1987-10-27 15:54:14 +00:00
ceriel
7de7b0c7ec CIU should not cause conversion errors! 1987-10-27 15:43:06 +00:00
ceriel
4974cd17eb Added new files to do range checks 1987-10-27 11:55:59 +00:00
ceriel
04f0550f1d do not warn about not using a type-identifier that indicates
an enumeration type and is imported, because its enumeration literals
might be used
1987-10-27 09:45:27 +00:00
ceriel
3ea6d40b4c fixed a typo. Case errors gave wrong trap number 1987-10-26 09:30:26 +00:00
ceriel
7df117128c fixed for very large numbers 1987-10-22 15:26:36 +00:00
ceriel
cf330f732c increased buffer size 1987-10-22 14:07:54 +00:00
ceriel
b75744f0d4 replace 10 by 10.0, so that the conversion is not done at runtime 1987-10-22 13:58:48 +00:00
ceriel
245397491a increased buffer size, check for end 1987-10-22 13:35:05 +00:00
ceriel
16a335ab42 removed some IMPORTS that were never used 1987-10-21 11:49:14 +00:00
ceriel
015e1b776e Some corrections and additions to improve the mechanism for
generating warnings on unused/uninitialized variables
1987-10-21 11:29:52 +00:00
ceriel
71df6e6cb8 removed the relative pathnames in #include's 1987-10-20 16:21:44 +00:00
ceriel
0ad68bdb66 fix to Lindseys changes 1987-10-20 16:09:39 +00:00
ceriel
688567a532 fix in reference counts for sets 1987-10-20 13:32:18 +00:00
ceriel
a24c90f5a9 fixed some problems: ADS was generated with size > pointer_size;
some (most) backends dont implement that.
Unstacking of macros did not quite work properly, but I dont know why
1987-10-20 09:36:34 +00:00
ceriel
e2c9a1a96f fix: there was a problem when more than 2 alternatives started with the same token 1987-10-19 15:35:28 +00:00
ceriel
503edee161 New version, with an option for strict Modula-2, and
warnings for unused or uninitialized variables
1987-10-19 11:28:37 +00:00
ceriel
211d2bcfff The use of {w} in a program line of fe did not work, because ack scans
fe before it scans MACH (which is where most vars are declared).
Reversing the order of the scans caused other problems, related to
callnames. I have therefore delayed the 'scanvars' of program lines
(as is already done with args).
1987-10-19 10:24:52 +00:00
ceriel
67cf9c4933 some fixes 1987-10-19 10:06:24 +00:00
ceriel
bf0ee1f16c some fixes 1987-10-16 17:57:09 +00:00
ceriel
f25570dd4e replaced calls to NEW by calls to ALLOCATE 1987-10-15 15:41:00 +00:00
ceriel
5c7379738b Some minor adaptions 1987-10-15 12:59:03 +00:00
ceriel
93e08cb946 Some minor adaptions 1987-10-15 12:42:55 +00:00
ceriel
5f35f2b26b parameterized archiver used 1987-10-15 10:32:12 +00:00
ceriel
772ead2f9e adapted fakfp.s 1987-10-14 13:22:57 +00:00
ceriel
8d35578ad2 Parameterized the archiver used 1987-10-14 12:41:38 +00:00
ceriel
4695d966ee next version 1987-10-14 12:38:01 +00:00
ceriel
fc6a8c5aa8 some minor fixes 1987-10-14 12:34:47 +00:00
ceriel
11e1b3ce15 fixed a bug in a LOS test 1987-10-08 16:54:38 +00:00
ceriel
2401ca127e Initial revision 1987-10-08 11:34:19 +00:00
ceriel
f19ffa5328 Initial revision 1987-10-06 16:58:10 +00:00
ceriel
4043036e27 Initial revision 1987-10-06 16:39:14 +00:00
ceriel
e61b887e31 improved previous fix 1987-10-05 16:17:51 +00:00
ceriel
38f70a3a06 new version for distr 1987-10-05 15:52:02 +00:00
ceriel
5d5e497d22 fixed a problem with procedures imported from other modules but not
declared in their definition modules
1987-10-05 15:41:30 +00:00
ceriel
4c7dc7eb20 did not work with CASE statements with large difference between lower
and upper bound
1987-10-05 15:40:53 +00:00
ceriel
efcb9468f4 fixed some bugs:
- switch with BIG difference between lower and upper now handled correctly
- made sure an added error production is never chosen as the default one
- don't allow AUTO as specification for a parameter
1987-10-05 10:17:44 +00:00
ceriel
8fb2664584 Also recognize m68020 as machine name 1987-10-05 09:59:16 +00:00
ceriel
158d0505ea Added unmount, now unmount as well as umount exist 1987-10-05 09:17:42 +00:00
ceriel
d4a31af34d set section alignments to 4 1987-10-05 09:01:56 +00:00
ceriel
31b2f7d9e0 take care of GTO 1987-10-02 12:53:04 +00:00
ceriel
102a2b1061 don't optimize when ms_gto 1987-10-02 12:52:29 +00:00
ceriel
1ac5d9c95a Handle GTO, LOR/STR 0 also use local base 1987-10-02 12:43:54 +00:00
ceriel
d2006b19af do not replace LAR/SAR by AAR LOI/STI, when the descriptor is not available 1987-10-02 10:48:38 +00:00
ceriel
c0dd8055c2 make variables that are assigned to alive, at least for a short while 1987-10-02 10:41:13 +00:00
ceriel
7f400e5073 print identifier name when multiple declared 1987-10-02 09:55:16 +00:00
ceriel
149a2abd07 some fixes 1987-09-29 16:07:10 +00:00
ceriel
7114bf47ec Adapted to new ncgg 1987-09-29 11:32:45 +00:00
ceriel
876026bedf Some improvements 1987-09-29 09:03:49 +00:00
ceriel
9d2bfee634 some fixes 1987-09-28 13:45:24 +00:00
ceriel
8c6981f642 ran 'make depend' again 1987-09-28 10:18:02 +00:00
ceriel
a4c02d15c6 new version 1987-09-24 13:42:50 +00:00
ceriel
c5674041bf Some minor mods and a bug fix with type transfer functions 1987-09-24 13:07:31 +00:00
ceriel
e30234fce8 Initial revision 1987-09-24 13:01:27 +00:00
ceriel
a830d68fae Added DO_TOSTACK 1987-09-24 10:26:39 +00:00
ceriel
fd817d4dbc Minor adaptions in order to reduce the size 1987-09-23 16:39:43 +00:00
ceriel
1eda133f01 Added register decl, re-arranged some code 1987-09-23 14:22:39 +00:00
ceriel
1655b2521f Added a register decl 1987-09-22 16:14:38 +00:00
ceriel
45c7ab1938 fix in error reporting 1987-09-21 13:21:50 +00:00
ceriel
6db64e924c several fixes 1987-09-17 16:57:03 +00:00
ceriel
8d2afe1103 some more fixes 1987-09-14 12:41:08 +00:00
ceriel
74c758e503 some more fixes 1987-09-14 11:24:12 +00:00
ceriel
617f210cf8 Added FORchk.c 1987-09-10 15:56:28 +00:00
ceriel
286acd933c make sure argument to open is terminated by a 0-byte 1987-09-08 15:35:34 +00:00
ceriel
1ce6abf3de replaced printfs by fputs where possible 1987-09-08 09:00:29 +00:00
ceriel
8120857c5b disabled listing facilities 1987-09-08 08:59:03 +00:00
ceriel
4059840c43 some fixes/improvements 1987-09-07 19:05:29 +00:00
ceriel
3ea0fc0fe6 deleted some unused variables 1987-09-03 09:32:21 +00:00
ceriel
c9e52b65d4 some minor fixes, and one important 2/4 one in the sbreak function 1987-09-02 18:42:21 +00:00
ceriel
18996b9698 brk must return pointer size 1987-09-02 14:54:32 +00:00
ceriel
93eba2874d previous fix was wrong; added another 1987-09-02 12:52:44 +00:00
ceriel
c93f6d9fb1 yet another fix in freopen: re-opening for reading did not work properly 1987-09-02 12:43:23 +00:00
ceriel
a1ae336247 first arg to putc must be int or char, not long 1987-09-01 18:31:42 +00:00
ceriel
f00c143b28 added declaration for fopen 1987-09-01 15:58:30 +00:00
ceriel
cb16212a09 declared freopen; apparently it is not declared in stdio.h
on some systems
1987-09-01 15:24:15 +00:00
ceriel
dd320002c2 time must be called with a 0-pointer, not with 0! Erikje toch! 1987-09-01 14:18:20 +00:00
ceriel
7e2c3130b0 dont count when USE_TMP is not defined 1987-09-01 10:41:35 +00:00
ceriel2
adce53f009 fix for statics in nested blocks 1987-08-28 09:56:00 +00:00
ceriel
c5d9d997b0 Added .globl, fix in Xfit call 1987-08-26 14:45:27 +00:00
cvs2hg
8d7ceb6d6c fixup commit for tag 'distr2' 1987-08-26 13:58:31 +00:00
ceriel
f4336d6f9d adapted to new semantics of STACK 1987-08-26 13:58:30 +00:00
ceriel
dfbbf1e5d8 adapted table to new semantics of STACK 1987-08-26 13:54:20 +00:00
ceriel
12d731dfcf adapted table to new semantics of STACK 1987-08-26 13:47:37 +00:00
ceriel
c1ffb28416 improved the c-flag, and corrected a bug in the produced relocation info 1987-08-26 13:22:44 +00:00
ceriel
7de2968629 added return.s 1987-08-26 13:06:09 +00:00
ceriel
99f8e49e93 FLOAT did not work 1987-08-24 14:23:13 +00:00
ceriel
6fdd5b6a6d FLOAT did not work 1987-08-24 13:59:06 +00:00
ceriel
f0fc857cb4 compiler could not handle using addresses of procedures declared
in imported definition modules. This is corrected
1987-08-24 11:42:37 +00:00
ceriel
469b3cc1e1 a fix: UID and GID were sign-extended 1987-08-24 09:13:31 +00:00
ceriel
18b7250736 Added a DO_TOSTACK command, and put set number of ALL in tables.c 1987-08-20 19:04:18 +00:00
ceriel
754f9ce45d fixed a problem with the ifdef-stack 1987-08-20 18:12:31 +00:00
ceriel
831cdc7580 fix to previous one. The previous one did not help, this one does 1987-08-20 16:00:18 +00:00
ceriel
c8afae83c9 fixed bug with quotes 1987-08-20 15:44:45 +00:00
ceriel
fd4f548d6e fixed addition, better patterns for SDL, SDE 1987-08-20 15:30:01 +00:00
ceriel
86b6fe60ea corrected option handling 1987-08-20 13:12:43 +00:00
ceriel
cbcde9a311 told ncg that jsr kills the scratch registers 1987-08-19 19:51:13 +00:00
ceriel
d8370d797b do not accept p flag 1987-08-19 18:13:19 +00:00
ceriel
0983b7700f changed code for loops a bit, and fixed an error in MkCoercion 1987-08-19 18:07:41 +00:00
ceriel
19b0c2a0b0 disabled range-checks 1987-08-19 18:07:01 +00:00
ceriel
9bcd5473ad minor adaption: index array with int, not long 1987-08-19 15:27:15 +00:00
ceriel
7dc04a3207 some minor corrections 1987-08-19 15:23:41 +00:00
ceriel
cc524c3d9a fixed bugs in tzset and ttyslot, adapted malloc to allocate in bigger chunks 1987-08-19 14:44:54 +00:00
ceriel
d747651237 improved -c option 1987-08-19 14:10:39 +00:00
ceriel
d35035fab8 bug fixes: ifval must be an arith, not an int 1987-08-19 10:36:37 +00:00
ceriel
d7b2998ebe LLsymb was declared twice 1987-08-19 10:12:34 +00:00
ceriel
1c85c44fad an attempt to improve error correction on unknown type identifiers.
Also, a minor fix to ival.g
1987-08-18 10:05:18 +00:00
ceriel
b53309f9f6 fixed: resulted in memory faults in rare cases 1987-08-17 20:32:00 +00:00
ceriel
939cc2432e fix 1987-08-17 19:39:30 +00:00
ceriel
b3e649e463 fixes to additions 1987-08-17 18:09:31 +00:00
ceriel
ddecd62870 minor fix 1987-08-17 16:30:14 +00:00
ceriel
b3a30acb30 some more additions 1987-08-17 16:24:56 +00:00
ceriel
46589d5798 not finding an include file is fatal 1987-08-17 14:36:55 +00:00
ceriel
c7990b3d31 some fixes to freopen 1987-08-17 14:23:16 +00:00
ceriel
76d34a00e6 fix in LDC CMS 1987-08-17 14:18:40 +00:00
ceriel
b8fb8a57fa fixed setbuf. count field was set wrong 1987-08-14 20:32:08 +00:00
ceriel
a2d921040d first free-ing and then reallocing did not work properly.
Now, free does nothing, except remembering that a block was freed.
malloc, realloc and free check for this.
1987-08-14 11:52:17 +00:00
ceriel
07a8c48171 fix in one of those tricky addressing modes 1987-08-14 00:15:49 +00:00
ceriel
538f21b781 some fixes to additions 1987-08-13 15:30:48 +00:00
ceriel
a0e4cd23cc signed compares were just wrong, added a few patterns 1987-08-13 11:22:59 +00:00
ceriel
e571911b1b added cmi4.s 1987-08-13 11:09:24 +00:00
ceriel
3d90e41a7f fixed a fix, which did not fix a bug after all 1987-08-13 10:18:25 +00:00
ceriel
4769a76ca0 corrected 1987-08-12 21:36:30 +00:00
ceriel
a0f89188b9 fixed 1987-08-12 20:51:23 +00:00
ceriel
ab341e1c93 fixed EXG instruction 1987-08-12 18:37:20 +00:00
ceriel
a6bf3e8892 yet another fix, this time to divu/divul/divs/divsl 1987-08-12 18:32:15 +00:00
ceriel
0ba64871f6 added many patterns 1987-08-12 16:19:02 +00:00
ceriel
9338e4e97d revised some patterns that could lead to NO REGS AVAILABLE 1987-08-12 15:58:54 +00:00
ceriel
887f6d16c9 some adaptions undone 1987-08-12 14:51:58 +00:00
ceriel
33d6860d36 stdio.h should not define BMASK 1987-08-12 09:24:57 +00:00
ceriel
123bcfc5e2 fix + some more statistics 1987-08-11 15:31:09 +00:00
ceriel
c3fec1f112 take alignments into account 1987-08-11 15:28:06 +00:00
ceriel
0300bbf5cb adapted sizes somewhat, made facility to print memory statistics 1987-08-11 14:42:15 +00:00
ceriel
a7b7fa4162 Added the possibility to disable range-checks 1987-08-11 10:50:30 +00:00
ceriel
d0b452373b yet another fix in those tricky FOR-loops 1987-08-11 08:58:20 +00:00
ceriel
51169956dc some more fixes, and tried to make smaller 1987-08-10 21:43:47 +00:00
ceriel
3de7f959d3 fix to fix 1987-08-10 14:06:37 +00:00
ceriel
abf9c71fa9 Generated code for FOR-loops was wrong 1987-08-10 13:01:54 +00:00
ceriel
e5af61151e nestlevel count per file 1987-08-10 11:17:20 +00:00
ceriel
b630da3424 nestlevel count per file 1987-08-10 10:43:51 +00:00
ceriel
7d2f8e4d3e dynamic table sizes, commons in ranlib table 1987-08-10 10:20:52 +00:00
ceriel
16082b9056 some fixes 1987-08-07 19:54:45 +00:00
ceriel
4623ed60b0 fixes to preprocessor part 1987-08-07 19:53:54 +00:00
ceriel
3ea06a4a2a ran out of another static list; made length dynamic 1987-08-07 14:35:21 +00:00
ceriel
fec5feef77 deleted a warning 1987-08-06 19:15:40 +00:00
ceriel
34bcf4786b make two versions: one for new peephole optimizer 1987-08-06 19:00:21 +00:00
ceriel
a5e33acf51 fixed manual page 1987-08-06 18:59:07 +00:00
ceriel
a9392483b1 Added files for new peephole optimizer 1987-08-06 18:58:39 +00:00
ceriel
60b336dd34 use newer read_em module, + checking library 1987-08-06 18:56:36 +00:00
ceriel
45264c9c25 align sizes 1987-08-06 18:40:02 +00:00
ceriel
fe67243700 generate commons for bss 1987-08-06 15:11:09 +00:00
ceriel
6cdc7b47cf OUTTRACE was doubly defined 1987-08-06 14:29:16 +00:00
ceriel
12fe5ce838 fix in font-change 1987-08-06 14:26:45 +00:00
ceriel
88eaeed762 code improvement 1987-08-06 14:24:08 +00:00
ceriel
5f6b6651e1 fixes 1987-08-06 14:21:01 +00:00
ceriel
912e362f11 minor mods 1987-08-06 14:20:11 +00:00
ceriel
bfd6e2061f fixed a bug with setjmp.
Fixed a bug with non-struct pointers referring to structs
1987-08-06 14:19:06 +00:00
ceriel
c24f960d82 moved the FCONST moves, so that they are found before the source moves 1987-08-06 13:08:02 +00:00
ceriel
16c73e6654 use malloc instead of sbrk 1987-08-06 13:04:20 +00:00
ceriel
6d85667761 bigger define for MAXSTAB 1987-08-06 13:00:47 +00:00
ceriel
e516b1e321 added end.s 1987-08-06 12:56:11 +00:00
ceriel
b80ad3f9b3 added missing patterns 1987-08-06 12:48:27 +00:00
ceriel
832066b81f use our own assembler instead of /bin/as 1987-08-06 11:36:47 +00:00
ceriel
7f7f9b36cd some nofits are actually errors 1987-08-06 11:17:30 +00:00
ceriel
ce6a1b9cfc many re-arrangements 1987-08-06 10:48:14 +00:00
ceriel
759026de6a to .m instead of .k 1987-08-06 10:27:10 +00:00
ceriel
0b8262a167 handle returns better 1987-08-06 09:55:00 +00:00
ceriel
285654f044 some minor improvements 1987-08-05 18:24:31 +00:00
ceriel
c9f7d845a2 temporary fix for commas within operands 1987-08-05 13:09:37 +00:00
ceriel
6439f09220 fixed a subtle bug: in some obscure cases involving conflict resolvers and
defaults, wrong code was generated
1987-08-05 12:52:15 +00:00
ceriel
040495ff56 fixed another bug with header blocks, and modified to use existing header
block when possible
1987-08-05 09:46:38 +00:00
ceriel
3c6a9b2b96 use malloc, made more robust against errors in line directives 1987-08-04 19:30:14 +00:00
ceriel
bcb04a1a76 fix 1987-08-04 19:29:28 +00:00
ceriel
159b84ef68 bug fixes: put header block at end of procedure 1987-08-04 14:13:24 +00:00
ceriel
d34064d660 resulted in 32768 instead of -32768 on a PDP-11 1987-08-04 08:59:50 +00:00
ceriel
956fa21b89 fix: variable sets were handled wrong 1987-08-03 18:20:55 +00:00
ceriel
3883f47fd0 fix in check 1987-08-03 18:03:23 +00:00
ceriel
3ce2cee0a5 Added a break, so that an error message is only given once 1987-08-03 18:00:22 +00:00
ceriel
af3e759da2 fix blocks.c 1987-08-03 14:40:49 +00:00
ceriel
1640b8cad8 fix: may no address more memory than is present blocks.c 1987-08-03 14:04:44 +00:00
ceriel
116a0f81f5 check name offset 1987-08-03 13:22:30 +00:00
ceriel
c37193b667 some cosmetic changes 1987-08-03 11:01:19 +00:00
ceriel
d10dd029b5 updated 1987-08-03 09:47:46 +00:00
ceriel
a203a029cb some cosmetic changes 1987-08-03 09:16:20 +00:00
ceriel
9c014b9e64 some fixes and cosmetic changes 1987-08-03 09:09:07 +00:00
ceriel
3b038786ad removed the limitation of the next field 1987-08-03 09:07:25 +00:00
ceriel
84bce837a0 fix in a call to record 1987-07-30 16:04:29 +00:00
ceriel
064f2b6a8b new version that passes current tests 1987-07-30 14:21:19 +00:00
ceriel
0e397f09f3 many changes; some cosmetic; coercions now explicit in tree 1987-07-30 13:37:39 +00:00
bruce
48a4d04b61 Corrected EMHOME in Makefile (yet again) 1987-07-30 09:42:39 +00:00
ceriel
aa5ab51147 do better bad-pointer testing 1987-07-30 09:20:59 +00:00
ceriel
0e9f072917 yet another fix: outoperand must do nothing with ps_end 1987-07-30 08:59:40 +00:00
ceriel
580bb15076 externals were not handled right 1987-07-29 19:49:15 +00:00
bruce
bf63b12a93 Added removal of dead code patterns 1987-07-29 16:10:27 +00:00
ceriel
3b0057625d did not handle HOL names right (null names) 1987-07-29 10:43:43 +00:00
ceriel
3cd5074594 fix: did not handle externals with big HOL offsets right 1987-07-29 10:39:02 +00:00
ceriel
300623ac88 changed order in LIST, ReadString from InOut still did not work right 1987-07-28 13:46:13 +00:00
bruce
9e55f02c3b Parser outputs some stats and fixed error is pseudo.r 1987-07-28 11:22:59 +00:00
bruce
ac20a570cd Updated nopt.doc for dfa encoded using row displacement 1987-07-28 10:56:44 +00:00
bruce
545bed355d Converted dfa to use row displacement compaction 1987-07-28 09:37:09 +00:00
ceriel
ead2873ab5 fixed the 'too many hits' complaint of refer 1987-07-28 09:06:53 +00:00
ceriel
05831b3438 System V has no ftime systemcall 1987-07-24 13:24:19 +00:00
ceriel
1d7814737d correction: had deleted a line by accident 1987-07-24 11:58:51 +00:00
ceriel
690a4cfbc6 characters were treated as unsigneds, lines with quotes in them
where not treated correctly
1987-07-24 09:21:24 +00:00
ceriel
3af275f8d6 A different way of detecting conformant arrays 1987-07-22 17:02:54 +00:00
ceriel
a1772be47d some cosmetic changes 1987-07-22 16:35:09 +00:00
ceriel
d502a17312 added docs about -Xi flag 1987-07-22 13:42:46 +00:00
ceriel
c550150071 pass -i flag to modula-2 compiler, via -Xi 1987-07-22 13:30:06 +00:00
ceriel
4600a65f07 did not export cerror, did not define _errno 1987-07-22 12:46:07 +00:00
ceriel
0aea30473c some small fixes and additions 1987-07-22 12:42:10 +00:00
bruce
85053cf283 Remove strings library from Makefile 1987-07-22 12:41:46 +00:00
ceriel
0bffe65c24 some more fixes 1987-07-22 10:59:24 +00:00
ceriel
03c5092815 fixed a bug: constant sets were not handled right on 4-byte machines 1987-07-22 09:21:00 +00:00
ceriel
19e580bdc9 fixed a typo 1987-07-22 09:12:47 +00:00
bruce
f5681a4234 Update for single buffer rather that queues 1987-07-21 14:28:11 +00:00
ceriel
6614384f3c fixes, changes to make smaller on PDP 1987-07-21 13:54:33 +00:00
bruce
1c1eed4fd8 Major change: All queues now in same buffer 1987-07-21 13:23:09 +00:00
ceriel
3929b47776 deleted useless tst.b instruction 1987-07-20 14:31:46 +00:00
ceriel
36a5618dc8 do not generate mes 11 AND mes 3! 1987-07-17 14:30:30 +00:00
ceriel
96957f398a call .trp instead of jmp to it 1987-07-17 14:16:39 +00:00
ceriel
5331d4d232 set _buf to 0 on open 1987-07-17 14:04:14 +00:00
ceriel
de55f34bbd name changes, fix in computation of set sizes 1987-07-17 13:50:04 +00:00
ceriel
e0f737c293 include <sys/time.h> on 4.2 systems 1987-07-17 09:38:18 +00:00
ceriel
e04230a126 bug fixes, name changes 1987-07-16 19:51:40 +00:00
ceriel
4804ab14b8 fix: wrong free 1987-07-16 16:08:13 +00:00
ceriel
0619d27b8d use new C_insertpart mechanism, other minor changes 1987-07-16 13:27:37 +00:00
ceriel
2381b2e136 disabled assertions, fixed bug with pack/unpk 1987-07-16 09:44:44 +00:00
ceriel
d843ec9f7a fixes with error_type, make "type" struct more compact. 1987-07-16 09:34:44 +00:00
bruce
287a122d85 remove a couple pieces of trivial lint 1987-07-14 09:15:10 +00:00
ceriel
59e3fd6c2c Added NOFL to Makefile, to pass NOFLOAT. Also improved the clean entry 1987-07-13 16:50:57 +00:00
bruce
ea247567ba Added optimser document 1987-07-13 15:14:13 +00:00
bruce
40b9920f8f dfa.c now a routine for each state rather than nested switch statement 1987-07-13 15:03:27 +00:00
ceriel
b93dc94cdb Added and corrected some comments 1987-07-13 13:34:56 +00:00
ceriel
6a8547cca0 version for installation 1987-07-13 12:53:21 +00:00
ceriel
a1b08c5ee3 compute some expressions in "int" instead of "arith" 1987-07-13 12:46:46 +00:00
ceriel
8dfafeb4e3 fixes 1987-07-13 11:49:32 +00:00
ceriel
c66066a91f fixes 1987-07-13 10:30:37 +00:00
bruce
dc8d6ce37b Remove free queue and use st_alloc/free from alloc module 1987-07-13 10:07:33 +00:00
bruce
c8aaa59e1c New patterns, man page changes, other little fixes 1987-07-10 14:16:32 +00:00
ceriel
a8e086dbc3 yet another bug fix: the brk systemcall destroyed d1 1987-07-10 11:57:45 +00:00
bruce
1b28d14dcb added manual pages for library and stand alone program 1987-07-10 09:08:31 +00:00
ceriel
fbf67d7a29 some fixes 1987-07-10 09:06:19 +00:00
ceriel
f12358bfb0 fix: sbu was wrong for 4-4 1987-07-09 17:46:31 +00:00
ceriel
d61fe61b66 added m2_traps.h 1987-07-09 15:17:56 +00:00
ceriel
c7d4d35200 changed random function, added CSP module 1987-07-09 15:15:22 +00:00
bruce
e5dd1249b2 Added lint entry to Makefile and removed some things lint complained about 1987-07-09 15:04:03 +00:00
bruce
65aab404ba Corrected clean option in Makefile 1987-07-09 09:14:43 +00:00
bruce
64578a3afd Changed trans.c from switch statement into series of small procedures. Output files from parser now only written if changed 1987-07-09 09:02:41 +00:00
ceriel
74ea5e0bd7 latest changes to PascalIO: Reset and Rewrite have their parameters switched 1987-07-08 16:37:23 +00:00
ceriel
9d66bc3258 fix: sometimes the index mode was used in the wrong way 1987-07-08 16:36:45 +00:00
bruce
466637933a Convert to new READ_EM data structure. Build a em_nopt. Input names now O_ and output C_. Add insert part support. 1987-07-07 16:31:16 +00:00
ceriel
85421efb19 Bug fix: ch7sel should call any2opnd 1987-07-06 18:24:46 +00:00
ceriel
69843cf9ce Added -DNDEBUG to Makefile, table now kills regvars 1987-07-06 15:28:59 +00:00
ceriel
8c10914e78 added Realloc, split into separate files 1987-07-06 14:46:00 +00:00
ceriel
d120b2b73a tried to make faster 1987-07-06 13:03:14 +00:00
ceriel
d6593abd5e bug fix: sometimes register variables were treated as scratch regs! 1987-07-06 10:24:51 +00:00
ceriel
5ca1be74b8 bug fix: did not check externals right 1987-07-03 16:41:45 +00:00
ceriel
5838d4899d name changes 1987-07-03 16:07:18 +00:00
ceriel
54a85f705b fix: errmod --> errmon 1987-07-03 15:50:38 +00:00
ceriel
10caf5c785 The em_argtype sometimes was not set right 1987-07-03 10:35:55 +00:00
ceriel
1310910b23 BASE only used when INCORE 1987-07-01 18:27:00 +00:00
ceriel
83bc77ad51 Added C_insertpart mechanism 1987-07-01 17:24:10 +00:00
ceriel
19897803d4 pass EMHOME on to nested make 1987-07-01 13:15:52 +00:00
ceriel
1487265556 Added seek.c, an interface to the lseek systemcall 1987-07-01 13:00:43 +00:00
ceriel
6161b898cd use proper selector names 1987-07-01 09:52:17 +00:00
ceriel
0e4defe032 again, more consistent naming 1987-06-30 18:59:51 +00:00
ceriel
db6c8a8b79 updated 1987-06-30 18:44:08 +00:00
ceriel
d41028a664 pass EMHOME to nested make 1987-06-30 18:30:45 +00:00
ceriel
d473c8b1df Added some register decls 1987-06-30 18:24:27 +00:00
ceriel
87c67b8c5f EM --> EMHOME 1987-06-30 18:20:25 +00:00
ceriel
480e58cc9f more consistent naming 1987-06-30 17:02:45 +00:00
ceriel
a7cb540ae3 [ek]/C_failed.c removed. Now called failed.c 1987-06-30 16:11:19 +00:00
ceriel
dce90d9491 all external names start with C_ 1987-06-30 16:09:36 +00:00
ceriel
19ffd2c1f2 all external names start with C_, output buffered 1987-06-30 16:09:18 +00:00
ceriel
329cc47ca6 putbyte --> C_putbyte 1987-06-30 15:24:02 +00:00
ceriel
d3031b22b7 fix 1987-06-30 13:17:53 +00:00
ceriel
53d5e42603 minor changes, consistent naming of variables 1987-06-30 13:11:16 +00:00
ceriel
0c5b54219e new version, different interface 1987-06-30 12:55:30 +00:00
ceriel
f6a828b183 fix: ReadREAL did not work, because ok was'nt initialized 1987-06-29 19:33:01 +00:00
ceriel
9179494c16 fix: rck must call trp, not jmp to it. Return is possible. 1987-06-29 18:13:47 +00:00
ceriel
7d26d60bd4 Added the modifications that were made to the Minix code generator 1987-06-29 15:57:48 +00:00
ceriel
7bb843eb0f fixed a bug in a name-changing routine 1987-06-29 14:41:23 +00:00
ceriel
efafb68f00 - fixes: improved POINTER TO IDENT mechanism, prevent core dump when
definition module not found, corrected typo.
- changed mechanism for variables that have their address given.
- added option for symmetric integer ranges
1987-06-29 12:46:00 +00:00
ceriel
b93c1cb093 fixes 1987-06-29 12:27:50 +00:00
ceriel
ea69982a26 fixes, different traps, new files 1987-06-26 15:59:52 +00:00
ceriel
8e013368b3 fix: ConvertInteger was wrong for MIN(INTEGER) 1987-06-23 17:38:18 +00:00
ceriel
1ae2bd256e map -Xs flag to -s for modula-2 compiler 1987-06-23 17:15:56 +00:00
ceriel
43a6aed45c fixes, made more consistent 1987-06-23 17:12:42 +00:00
ceriel
746f94368d fixes, added 's' option 1987-06-23 17:12:25 +00:00
ceriel
ef7fd61029 enabled range checks 1987-06-19 09:47:53 +00:00
ceriel
ea590431d8 fixes 1987-06-19 09:25:08 +00:00
ceriel
befe7be9de Added a kind of range-check for assignments between cards and ints 1987-06-18 17:42:47 +00:00
ceriel
c839c01680 some fixes, and changed priority of unary minus 1987-06-18 15:46:08 +00:00
ceriel
9c01340900 fix: Read did not set "Done" in the "unread" case 1987-06-16 09:04:27 +00:00
ceriel
02044d1d3f fixed bug 1987-06-12 19:10:12 +00:00
ceriel
1e5688a10e exg instruction translated wrong 1987-06-11 14:44:48 +00:00
ceriel
ee3a80c6e5 ReadString did not skip leading spaces 1987-06-11 13:07:27 +00:00
ceriel
a33bd07a3d fix in asp -2 1987-06-11 10:47:13 +00:00
ceriel
278eca6c56 modified print to use _write 1987-06-10 14:52:39 +00:00
ceriel
91bdfb9a12 some more fixes 1987-06-10 14:06:14 +00:00
ceriel
130abb7e3b bug fixes 1987-06-10 13:46:21 +00:00
ceriel
e43a1b00f6 bug fix 1987-06-10 10:33:19 +00:00
ceriel
85023f4c14 some fixes 1987-06-09 15:15:18 +00:00
ceriel
7698c135be corrected some errors 1987-06-09 11:05:09 +00:00
ceriel
7f64ff28c0 added some routines 1987-06-09 10:50:47 +00:00
ceriel
33bd1f17af corrected syntax error 1987-06-09 10:35:22 +00:00
ceriel
f751192942 many changes because of introduction of register variables si/di 1987-06-09 10:22:50 +00:00
ceriel
798261d992 pass EMHOME to nested make 1987-06-09 10:19:47 +00:00
ceriel
470dcc3d11 Added register variables: registers si and di 1987-06-09 09:47:02 +00:00
ceriel
3997e07366 removed printf.s 1987-06-09 09:24:05 +00:00
ceriel
25dd5857c2 minor changes to many files 1987-06-03 19:05:14 +00:00
ceriel
1fb8da7a02 bug fix in local extern-declarations, some other minor changes 1987-06-01 10:17:29 +00:00
ceriel
ed7105e2cf fixed Makefile 1987-06-01 08:59:07 +00:00
ceriel
e3ce64b2a2 fixed Makefile 1987-06-01 08:56:50 +00:00
ceriel
bb9b16ab50 fixes, added some standard functions to handle LONGREAL, LONGINT 1987-05-27 10:16:03 +00:00
ceriel
86c5c56a38 Added Mathlib; MathLib0 now uses Mathlib 1987-05-27 10:05:01 +00:00
ceriel
791ec39e57 fix to fix 1987-05-26 15:35:17 +00:00
ceriel
ac3c871ff8 yet another fix: conditional jumps did not work when exactly 256 bytes away 1987-05-26 15:31:43 +00:00
ceriel
312fe96bbd lseek was not declared 1987-05-25 17:45:57 +00:00
ceriel
5696478540 Added some 'register' to declarations 1987-05-25 09:13:12 +00:00
ceriel
981e5b206b Added .distr 1987-05-22 17:24:46 +00:00
ceriel
9294fb9b8c Added RealConversion 1987-05-22 17:15:09 +00:00
ceriel
61a5c8ce08 divided time costs by 10, because of overflow 1987-05-21 13:59:55 +00:00
ceriel
02ae5e4d7c bug fix, and made more robust 1987-05-21 13:43:56 +00:00
ceriel
6ac092bf38 core_alloc changed to old one 1987-05-21 10:10:27 +00:00
ceriel
4caf71f5b5 Some changes to handle more on small machines:
a section is now split into parts that fit in core
1987-05-21 10:06:14 +00:00
ceriel
ed2d6ab75b some changes to make smaller 1987-05-21 09:37:28 +00:00
ceriel
dd2cf6bbaa Fix in wrong assertion 1987-05-21 09:28:33 +00:00
ceriel
1d213e28c4 use stdio to do output 1987-05-20 17:17:42 +00:00
ceriel
1b47f26e4b Some more adaptions to new assembler 1987-05-20 17:15:59 +00:00
ceriel
a8db0ab298 Fixed some bugs 1987-05-20 17:15:22 +00:00
ceriel
479d45d2d9 Added modula, -L was passed twice to peephole optimizer 1987-05-20 14:51:02 +00:00
ceriel
e0694e88a2 Added 'loc slu' pattern 1987-05-20 14:13:29 +00:00
ceriel
0fff5cc80f transfer made to work on pdp/11 EM intrpreter 1987-05-20 14:11:22 +00:00
ceriel
72e27e7dab put mes 2 in front 1987-05-20 14:09:21 +00:00
ceriel
231841bcfe Added some patterns, generate mes 8 after mes 2 1987-05-20 13:56:26 +00:00
ceriel
10e1c10bcf some bug fixes: filename and unintialized data descriptor 1987-05-19 15:13:57 +00:00
ceriel
9eaf539e98 string compare must be on unsigned chars 1987-05-19 08:51:48 +00:00
ceriel
643dee0ab6 Added a pattern for better *p++ operation 1987-05-19 08:50:17 +00:00
ceriel
6731de5286 some bug fixes with 'bisb' 1987-05-18 18:34:59 +00:00
ceriel
946006fb08 many minor corrections 1987-05-18 15:57:33 +00:00
ceriel
e0c3807b29 -1 is now represented as such 1987-05-18 15:54:52 +00:00
ceriel
45f384c870 improved ROM handling 1987-05-18 15:50:42 +00:00
ceriel
66bcbd7d66 declare mktemp and strcpy 1987-05-18 14:27:06 +00:00
ceriel
6a52ce38f9 botch and clear have an unsigned as second arg 1987-05-18 14:16:41 +00:00
ceriel
e938380cb8 Added lintlib 1987-05-18 13:49:59 +00:00
ceriel
869e3bdc9a Added lintlib 1987-05-18 13:37:44 +00:00
ceriel
b14dd671b5 Added lintlib, minor fixes 1987-05-18 13:34:06 +00:00
ceriel
32a436bab4 handle ROM's better 1987-05-18 13:29:32 +00:00
ceriel
cdf0fa6d6b Added lintlib, minor optim 1987-05-18 13:11:50 +00:00
ceriel
ff505d48ed Added lintlib 1987-05-18 13:10:25 +00:00
ceriel
46a07e1da5 Added conversion program 1987-05-18 11:37:18 +00:00
ceriel
d2c6f22e32 Added *REG addressing mode, fixed a bug 1987-05-18 10:40:19 +00:00
ceriel
9e72c25a0f deleted FORMAT, fixed con_float 1987-05-15 16:32:14 +00:00
ceriel
decfd1ce9c bug fix in jmp instruction 1987-05-15 16:31:00 +00:00
ceriel
0679596d4d bug fix in RMI 1987-05-15 15:46:50 +00:00
ceriel
98da0bbffb added end.s 1987-05-15 12:55:51 +00:00
ceriel
3077cb6610 libraries can now be made on any machine 1987-05-15 09:30:47 +00:00
ceriel
4888f39b05 use aal 1987-05-15 09:28:57 +00:00
ceriel
212a9e04ce addd .distr 1987-05-15 09:22:54 +00:00
ceriel
04dc83c149 converted to ACK assembler format 1987-05-15 09:11:10 +00:00
ceriel
7abf78f452 converted to ACK assembler format 1987-05-14 17:45:41 +00:00
ceriel
680e0c347c document zero-initialization 1987-05-14 16:51:53 +00:00
ceriel
5053f2a183 generate code for ACK assembler, including floats 1987-05-14 14:58:21 +00:00
ceriel
235871bf4b minor fix; generate code for ACK assembler 1987-05-14 14:41:16 +00:00
ceriel
731edd0940 Initial revision 1987-05-14 14:32:55 +00:00
ceriel
d1e9f4e811 tell modula-2 compiler about the word-size! 1987-05-14 11:33:24 +00:00
ceriel
d85e43545b fix 1987-05-13 16:38:31 +00:00
ceriel
de8aceeeb4 use aal 1987-05-13 16:32:57 +00:00
ceriel
55e82ef0dc Bug fix: negative integers had the sign at the end 1987-05-13 16:30:06 +00:00
ceriel
b8b798706f fix 1987-05-13 16:19:49 +00:00
ceriel
2f729a1c05 added modula-2 1987-05-13 16:18:17 +00:00
ceriel
c20940b631 added modula-2 1987-05-13 16:16:57 +00:00
ceriel
43c8fb156b Initial revision 1987-05-13 16:13:52 +00:00
ceriel
5f67f1ad64 Added SYSTEM.h 1987-05-13 15:31:21 +00:00
ceriel
b630dc458f install manual pages, standard entries 1987-05-13 15:09:11 +00:00
ceriel
b98c031192 minor adaptions 1987-05-13 14:55:34 +00:00
ceriel
bbb0f99495 added modula-2 1987-05-13 14:41:31 +00:00
ceriel
0cc5442188 Initial revision 1987-05-13 14:36:45 +00:00
ceriel
28bbb40835 bug fix in getarea/freearea 1987-05-13 14:10:11 +00:00
ceriel
6fc7d0f866 bug fix in constant set computations 1987-05-13 13:04:28 +00:00
ceriel
e4cc45b56f fixed problem with em_last file for int24 1987-05-13 10:18:42 +00:00
ceriel
985a52b415 some bug fixes 1987-05-12 18:23:09 +00:00
ceriel
debba57b43 made to work with Modula-2 again 1987-05-12 18:20:10 +00:00
ceriel
e91a85cbec minor fix 1987-05-12 12:34:04 +00:00
ceriel
48acbe27bb fixed a minor bug in cstoper.c: computation of mach_long_sign was wrong 1987-05-12 11:15:55 +00:00
ceriel
46ad9ff041 Added a Giant size 1987-05-12 09:16:15 +00:00
ceriel
927a5636bd removed the limitation on number of include directories,
some bug fixes,
sets now have a constant and a variable part
1987-05-11 14:38:37 +00:00
ceriel
b3d24d4ec2 removed the limitation on number of include directories 1987-05-11 14:30:12 +00:00
ceriel
aab8234e55 bug fix in cstoper.c: max_long_sign was computed wrong 1987-05-11 14:19:13 +00:00
ceriel
b6e994767c removed the limitation on number of include directories 1987-05-11 14:08:58 +00:00
ceriel
7df184a5ec previous fix was wrong; corrected 1987-05-11 12:47:59 +00:00
ceriel
63ebea7540 small fix: -I flag was passed twice 1987-05-11 12:31:51 +00:00
ceriel
35fa794781 Fixes to return sequence 1987-05-11 10:24:36 +00:00
ceriel
85f491555f now generates "uninitialized data" descriptors 1987-04-29 14:54:16 +00:00
ceriel
1dba69eb38 bug fix in lseek.e 1987-04-29 13:36:52 +00:00
ceriel
ed582b0752 Added some patterns replacing divides by shifts (done by bruce) 1987-04-29 11:35:00 +00:00
ceriel
fbc0415761 make to work on sun, added copyright, etc 1987-04-29 10:22:07 +00:00
ceriel
8482d6776b Another error in the test 1987-04-28 15:09:39 +00:00
ceriel
d08b6d58ef removed some defines from tunable.h. They were not used. 1987-04-27 15:57:43 +00:00
ceriel
2d8e5089f4 vfork was wrong 1987-04-27 13:11:17 +00:00
ceriel
be4da756bc new LIST file; order was wrong 1987-04-27 12:28:28 +00:00
ceriel
5f533a35ce Thos long footnote marks were ugly. improved. 1987-04-24 13:46:59 +00:00
ceriel
bd90b8aba9 minor correction to sgtty.h, the 4.2 codes where wrong again 1987-04-23 16:24:39 +00:00
ceriel
3fbe8fa7c1 minor correction to sgtty.h, the 4.2 codes where wrong 1987-04-23 16:14:13 +00:00
ceriel
08ad853ac5 sleep sometimes hangs. This is corrected 1987-04-23 15:20:41 +00:00
ceriel
913a1f0b8f Fix for small machines 1987-04-23 14:52:34 +00:00
ceriel
2b9292bc38 Some fixes 1987-04-23 14:49:49 +00:00
ceriel
90c699f418 Fixed wrong mlu4.s 1987-04-23 14:47:28 +00:00
ceriel
41da733a19 minor bug fix: dumped core when called with more than one arg 1987-04-23 12:53:54 +00:00
ceriel
4cbff1975f bug fix: decode did not handle quotes within strings right 1987-04-21 19:34:52 +00:00
ceriel
a142d31a56 Initial revision 1987-04-16 16:04:55 +00:00
ceriel
22961f13af Initial revision 1987-04-16 15:57:16 +00:00
ceriel
23a4c5d7d6 Initial revision 1987-04-16 15:48:27 +00:00
ceriel
f206110cd2 Initial revision 1987-04-16 15:28:46 +00:00
ceriel
25d8e847a7 *** empty log message *** 1987-04-16 15:06:18 +00:00
ceriel
52f733988e Initial revision 1987-04-16 14:32:50 +00:00
ceriel
856935a3f6 usr --> proj 1987-04-16 13:57:54 +00:00
ceriel
2ab263265b Initial revision 1987-04-16 13:27:42 +00:00
ceriel
24aeb4ac0d Added line_prefix.h 1987-04-15 09:30:37 +00:00
ceriel
8123ac83f5 Updated "onerror" docs to current situation 1987-04-14 16:02:37 +00:00
ceriel
cbb10e3b1b I forgot 1987-04-14 11:11:03 +00:00
ceriel
8f1fba2b7b Initial revision 1987-04-13 17:10:33 +00:00
ceriel
161c523488 Added execle.c and ececv.c 1987-04-13 17:09:38 +00:00
ceriel
7158b3a1f6 different "onerror" handling 1987-04-13 16:34:46 +00:00
ceriel
4805d67ca1 -only generate warnings when there are conflict resolvers but no conflicts,
-handle "onerror" differently
1987-04-13 16:11:50 +00:00
ceriel
218c1c46c4 Bug fix, program was not partable. it assumed same byte order as i86. 1987-04-13 15:57:33 +00:00
ceriel
3433445bbb Bug fix: did not accept loc 1 loc 4 cii 1987-04-13 12:52:38 +00:00
6575 changed files with 407301 additions and 72688 deletions

72
.distr
View File

@@ -1,19 +1,57 @@
Action
Copyright
NEW
README
TakeAction
bin
doc
emtest
etc
first
CHANGES
Copyright
pm
pmfile
config.pm
h
include
modules
lang
lib
mach
man
mkun
util
modules/h
first
util/data
util/LLgen
modules/src/alloc
modules/src/assert
modules/src/system
modules/src/string
modules/src/read_em
modules/src/em_code
modules/src/em_mes
modules/src/print
modules/src/object
modules/src/idf
modules/src/input
modules/src/flt_arith
util/amisc
util/cmisc
util/ack
lib/descr/fe
util/arch
#util/cpp
util/cgg
util/ncgg
util/misc
util/opt
util/ego
util/topgen
util/led
lang/cem
lang/pc
lang/m2
#lang/occam
#lang/basic
mach/proto
mach/i80
mach/i86
mach/i386
plat/cpm
plat/pc86
plat/linux386
examples

4
.gitignore vendored Normal file
View File

@@ -0,0 +1,4 @@
*~
*.o
.*
-.gitignore

9
.hgtags Normal file
View File

@@ -0,0 +1,9 @@
5a0daa6017c4aa5ae23b870e97eb7431021762bc distr2
15b742c4c278c27029eca0e41f16463bc076de6e distr3
a0686e2ca8d6780ce37b8267b865f60e9317a340 llgen-1-0
d96cd06672c368e8aaa584fead379ce1d343acad oct-1
bf69b3579e8545ecfc03f5e2550586e3c479270d release-6-0-pre-4
e880082b57f12a7df1c33a2da2c7424d6368f185 dist2
fe535e3e8bc859d4a4e4a186f42670f9e588a5aa release-5-6
90102c21c4480102634c6a482d0dd55f2d9ca00f release-6-0-pre-3
ddc0de0e5e7d91b1dcd7c05602c9c2a6adf8d312 release-6-0-pre-1

134
Action
View File

@@ -1,28 +1,45 @@
name "System definition"
dir first
action did_first
failure "You have to run the shell script first in the directory first"
action ack_sys
failure "You have to run the shell script first/first"
fatal
end
name "EM definition"
dir etc
end
name "LL(1) Parser generator"
dir util/LLgen
name "Manual pages"
dir man
end
! name "EM definition"
! dir etc
! end
name "EM definition library"
dir util/data
end
name "C utilities"
dir util/cmisc
end
name "Yacc parser generator"
dir util/byacc
end
name "Flex lexical analyzer generator"
dir util/flex
action "make firstinstall && make clean"
end
name "Include files for modules"
dir modules/h
end
name "Modules"
dir modules/src
indir
end
! name "LL(1) Parser generator"
! dir util/LLgen
! action "make firstinstall && make clean"
! end
name "C preprocessor"
dir util/cpp
end
name "Peephole optimizer libraries"
dir modules/src/em_opt
end
name "ACK object utilities"
dir util/amisc
end
@@ -54,6 +71,10 @@ end
name "Bootstrap for newest form of backend tables"
dir util/ncgg
end
name "Bootstrap for code expanders"
dir util/ceg
indir
end
name "LED link editor"
dir util/led
end
@@ -63,16 +84,69 @@ end
name "C frontend"
dir lang/cem/cemcom
end
name "ANSI-C frontend"
dir lang/cem/cemcom.ansi
end
name "ANSI-C preprocessor"
dir lang/cem/cpp.ansi
end
name "ANSI-C header files"
dir lang/cem/libcc.ansi
end
name "LINT C program checker"
dir lang/cem/lint
end
name "EM definition lint-library"
action "make lintlib"
dir util/data
end
name "Modules lint libraries"
dir modules/src
indir "Action.lint"
end
name "Global optimizer lint libraries"
dir util/ego/share
action "make lintlib"
end
name "Pascal frontend"
dir lang/pc/comp
end
name "Basic frontend"
dir lang/basic/src
end
name "Occam frontend"
dir lang/occam/comp
end
name "Modula-2 frontend"
dir lang/m2/comp
end
name "Modula-2 definition modules"
dir lang/m2/libm2
end
name "Modula-2 makefile generator"
dir lang/m2/m2mm
end
name "Fortran to C compiler"
dir lang/fortran/comp
end
name "EM interpreter in C"
dir util/int
end
name "Symbolic debugger"
dir util/grind
end
name "Intel 8086 support"
dir mach/i86
indir
end
name "Intel 80286 support for Xenix"
dir mach/xenix3
indir
end
name "Intel 80386 support for Xenix 386 System V"
dir mach/i386
indir
end
name "MSC6500 support"
dir mach/6500
indir
@@ -94,15 +168,15 @@ dir mach/i80
indir
end
name "2-2 Interpreter support"
dir mach/int22
dir mach/em22
indir
end
name "2-4 Interpreter support"
dir mach/int24
dir mach/em24
indir
end
name "4-4 Interpreter support"
dir mach/int44
dir mach/em44
indir
end
name "Motorola 68000 2-4 support"
@@ -145,6 +219,16 @@ name "Sun 3 M68020 support"
dir mach/sun3
indir
end
name "Sun 4 SPARC SunOs 4 support"
dir mach/sparc
system "sparc|sparc_solaris"
indir
end
name "Sun 4 SPARC Solaris support"
dir mach/sparc_solaris
system "sparc_solaris"
indir
end
name "Sun 2 M68000 support"
dir mach/sun2
indir
@@ -153,6 +237,14 @@ name "Mantra M68000 System V.0 support"
dir mach/mantra
indir
end
name "PC Minix support"
dir mach/minix
indir
end
name "Atari ST Minix support"
dir mach/minixST
indir
end
name "Z80 support"
dir mach/z80
indir
@@ -161,6 +253,24 @@ name "Zilog Z8000 support"
dir mach/z8000
indir
end
name "Pascal frontend"
dir lang/pc/pem
name "Acorn Archimedes support"
dir mach/arm
indir
end
name "Documentation"
dir doc
end
name "Motorola 68000 interpreters"
system "m68*|sun*"
dir mach/mantra/int
end
name "Fast compilers"
system "m68020|sun3|i386|vax*"
dir fast
indir
end
name "Fast cc-compatible C compiler"
system "sun3|vax*"
dir fcc
indir
end

35
CHANGES Normal file
View File

@@ -0,0 +1,35 @@
# $Source$
# $State$
# $Revision$
6.0pre4
Fixed some minor bit-rotting issues that were preventing compilation on
modern Linux systems.
6.0pre3
Added the cpm platform. Made some optimisations to the i80 code generator,
including getting topgen up and running and adding some peephole optimiser
rules. Fixed loads of bugs in ego so that it now works on platforms that
support it (pc86 and linux386). Made the floating point work on platforms
that support it (pc86 and linux386 again). Made stdint.h work. Lots and lots
of bugfixes and tweaks everywhere.
6.0pre2
Much simplified the syscall interface by disabling libmon and instead
calling the syscalls directly. Disabled the K&R C compiler and libc because
it doesn't actually gain us anything and has a high maintenance load --- the
ANSI C compiler works fine with K&R C. Adapted the rest of the system to
build with the ANSI C compiler. Rewrote the pc86 syscall interface and added
linux386 support, using the i386 code generator. Lots and lots of bugfixes
and tweaks everywhere.
6.0pre1
First working version of the 6.0 release stream. Working frontends: both C
compilers, Pascal, Modula-2, Basic and Occam. Working backends: i86. Working
platforms: pc86, the very noddy testbed setup that produces floppy disk
images.

View File

@@ -1,16 +1,32 @@
/*
* A M S T E R D A M C O M P I L E R K I T
*
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
*
* Permission to use, sell, duplicate or disclose this software must be
* obtained in writing. Requests for such permissions may be sent to
*
* Dr. Andrew S. Tanenbaum
* Wiskundig Seminarium
* Vrije Universiteit
* Postbox 7161
* 1007 MC Amsterdam
* The Netherlands
*
*/
Copyright (c) 1987, 1990, 1993, 2005 Vrije Universiteit, Amsterdam, The Netherlands.
All rights reserved.
Redistribution and use of the Amsterdam Compiler Kit in source and
binary forms, with or without modification, are permitted provided
that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials provided
with the distribution.
* Neither the name of Vrije Universiteit nor the names of the
software authors or contributors may be used to endorse or
promote products derived from this software without specific
prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS, AUTHORS, AND
CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL VRIJE UNIVERSITEIT OR ANY AUTHORS OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

1
LICENSE Symbolic link
View File

@@ -0,0 +1 @@
Copyright

64
NEW
View File

@@ -1,27 +1,45 @@
What's new:
A lot of things have changed since the previous distribution.
This is ACK distribution 5.6.
This is a minor update of 5.5, the last public release from Vrije University.
Only minor changes have been made to make the system build on modern
platforms.
The NEW document from the previous release follows.
David Given
dg@cowlark.com 2005-06-24
-----------------------------------------------------------------------------
The only addition with respect to the 5th ACK distribution is the support
for Solaris 2 on SPARCs. It also contains many bug fixes.
Notes for the 5th ACK distribution:
It is not wise to mix files created by the previous version of the Kit
with files belonging to this version, although that might sometimes work.
The major changes are:
- a new C-compiler and runtime system
- a new C preprocessor
- new assembler framework, allowing the generation of relocatable
object code for most processors
- new versions of all assemblers, using the new assembler framework
- a new link-editor, linking is now a separate and fast phase for most
machines
- improved Pascal compiler, now also handles 4-byte wordsize
- Motorola M68020 backend and assembler
- Support for (some) SUN systems
- improved version of LL(1) parser generator, producing faster code
- a new language: Occam
- better System V support, the Kit should now just compile and run
Many problems with the previous distribution have been fixed.
The major additions are:
Ceriel J.H. Jacobs
Dept. of Math. and Computer Science
Vrije Universiteit
Postbus 7161
1007 MC Amsterdam
The Netherlands
- an ANSI C compiler
- a LINT C program checker, both non-ansi and ansi
- an Intel 80386 back-end
- a SPARC code expander
- a source level debugger for Pascal, Modula-2, C, and ANSI C
- an Acorn Archimedes back-end
- code-expanders for VAX, Intel 80386 and Motorola M68020 processors,
and very fast Pascal, Modula-2, ANSI C, and C compilers constructed
using these code expanders
- a cc-compatible very fast C compiler for SUN-3 and VAX.
(UseNet: ceriel@cs.vu.nl)
Also added, but not part of the Kit proper are
- flex: a lexical analyzer generator
- byacc: yacc-clone by UCB
- f2c: a Fortran to C compiler by AT&T.
See the ACK installation manual for their copyright notices.
--
Ceriel Jacobs, Dept. of Mathematics and Computer Science, Vrije Universiteit,
De Boelelaan 1081a, 1081 HV Amsterdam, The Netherlands
Email: ceriel@cs.vu.nl Fax: +31 20 6427705

168
README
View File

@@ -1,2 +1,166 @@
Before starting installation you should read
the file doc/install.pr
THE AMSTERDAM COMPILER KIT V6.0pre4
===================================
© 1987-2005 Vrije Universiteit, Amsterdam 2010-08-08
INTRODUCTION
============
The Amsterdam Compiler Kit is a complete compiler toolchain consisting of
front end compilers for a number of different languages, code generators,
support libraries, and all the tools necessary to go from source code to
executable on any of the platforms it supports.
This is an early prerelease of the apocryphal version 6.0 release. Not a
lot is supported, the build mechanism needs work, and a lot of things are
probably broken. However, what's there should be sufficient to get things
done and to evaluate how the full 6.0 release should work.
SUPPORT
=======
Languages:
ANSI C, Pascal, Modula 2. K&R is supported via the ANSI C compiler.
Platforms:
pc86 produces bootable floppy disk images for 8086 PCs
linux386 produces ELF executables for PC Linux systems
cpm produces i80 CP/M .COM files
INSTALLATION
============
The version 6.0 build mechanism has been completely rewritten and is based
around the Prime Mover build tool (see http://primemover.sf.net for more
information). Installation ought to be fairly straightforward.
Requirements:
- an ANSI C compiler. Currently, I'm afraid, it's hard-coded to use gcc.
To change, try changing the variable definitions in first/c.pm. This also
needs to be available as 'cc' from the shell.
- about 20MB free in /tmp (or some other temporary directory).
- about 6MB in the target directory.
Instructions:
- edit config.pm. There's a small section at the top containing some editable
variables. Probably the only one you may want to edit is PREFIX, which
changes where the ACK installs to.
- Run:
./pm configure
...from the command line. This will write out a configuration file.
- Run:
./pm
...from the command line. This will actually do the build. This takes
about two minutes on my 1.6GHz Athlon Linux machine and about 30 on my
166MHz Pentium OpenBSD machine.
- Run:
./pm install
...from the command line (possibly with sudo). This will install the built
ACK into whatever directory you nominated in PREFIX.
The ACK should now be ready to use.
USAGE
=====
Currently I haven't sorted out all the documentation --- it's supplied in the
distribution, but not all of it gets installed yet --- so here is a quickstart
guide.
The main command to use is 'ack'. This invokes the compiler and the linker.
Some useful options include:
-m<platform> build for the specified platform
-o <file> specifies the output file
-c produce a .o file
-c.s produce a .s assembly file
-O enable optimisation
-ansi compile ANSI C (when using the C compiler)
<file> build file
ack figures out which language to use from the file extension:
.c C (ANSI or K&R)
.b Basic
.mod Modula-2
.ocm Occam 1
.p Pascal
.o object files
.s assembly files
For further information, see the man page (which actually does get
installed, but is rather out of date).
There are some (known working) example programs in the 'examples' directory.
A sample command line is:
ack -mlinux386 -O examples/paranoia.c
GOTCHAS
=======
There are some things you should be aware of.
- Look at plat/<PLATFORMNAME>/README for information about the two supported
platforms.
- The library support is fairly limited; for C, it's at roughly the ANSI C
level, and for the other languages it's similar.
- When compiling languages other than C, the ACK will usually look at the
first character of the file. If it's a #, then the file will be run through
the C preprocessor anyway.
- BSD systems may need to up the number of file descriptors (e.g.
'ulimit -n 200') before the ACK will compile.
- The ACK uses its own .o format. You won't be able to mix the ACK's object
files and another compiler's.
DISCLAIMER
==========
The ACK is mature, well-tested software, but the environment in which it was
developed for and tested under is rather different from that available on
today's machines. There will probably be little in the way of logical bugs,
but there may be many compilation and API bugs.
If you wish to use the ACK, *please* join the mailing list. We are interested
in any reports of success and particularly, failure. If it does fail for you,
we would love to know why, in as much detail as possible. Bug fixes are even
more welcome.
The ACK is licensed under a BSD-like license. Please see the 'Copyright' file
for the full text.
You can find the mailing list on the project's web site:
http://tack.sourceforge.net/
Please enjoy.
David Given (dtrg on Sourceforge)
dg@cowlark.com
2010-08-08

1
README.md Symbolic link
View File

@@ -0,0 +1 @@
README

20
TODO Normal file
View File

@@ -0,0 +1,20 @@
# $Source$
# $State$
This file contains things that I have noticed need fixing, but have not
yet been fixed. Everything here should be reasonably low priority. Some
bugs have been bodged around to make things work; these are all marked in
the source with FIXME tags.
* util/int needs to be rewritten to emulate sgtty with termios; look for
FIXMEs.
* mach/i80/dl/nascom.c needs to be rewritten to use termios, not sgtty.
# Revision history
# $Log$
# Revision 2.1 2005-06-24 23:20:41 dtrg
# Added some new readmes at the top level.
#

View File

@@ -1,8 +1,10 @@
#!/bin/sh
case $# in
0) PAR=install ; CMD=Action ;;
0) PAR='make install && make clean' ; CMD=Action ;;
1) PAR="$1" ; CMD=Action ;;
2) PAR="$1" ; CMD="$2" ;;
*) echo Syntax: "$0" [param [file]] ; exit 1 ;;
*) echo Syntax: "$0" [command [file]] ; exit 1 ;;
esac
if test -r "$CMD"
then :
@@ -12,7 +14,17 @@ else
*) echo No Action file "($CMD)" present ;;
esac
fi
THISFILE=`pwd`/$0
case $0 in
/*) THISFILE=$0
;;
*) if [ -f $0 ]
then
THISFILE=`pwd`/$0
else
THISFILE=$0
fi
;;
esac
SYS=
RETC=0
{ while read LINE
@@ -21,7 +33,7 @@ do
case x"$1" in
x!*) ;;
xname) SYS="$2"
ACTION='make $PAR'
ACTION='$PAR'
DIR=.
FM=no
FAIL='Failed for $SYS, see $DIR/Out'
@@ -63,26 +75,45 @@ do
x) echo Missing name line; RETC=65 ;;
*) if test -d $DIR
then (
cd $DIR
X=
case $ATYPE in
indir)
if sh $THISFILE $PAR $ACTION
then eval echo $SUCC
else RETC=2 ; eval echo $FAIL
fi ;;
*)
if eval "$ACTION >Out 2>&1 </dev/null"
then eval echo $SUCC
else RETC=1 ; X=: ; eval echo $FAIL
fi
;;
esac
(echo ------- `pwd`
cat Out
$X rm -f Out
) 2>/dev/null 1>&- 1>&3
exit $RETC
cd $DIR
X=
case $ATYPE in
indir)
if $THISFILE "$PAR" $ACTION
then eval echo $SUCC
else RETC=2 ; eval echo $FAIL
fi ;;
*)
case "$ACTION" in
'$PAR')
ACTION="$PAR"
;;
*) ;;
esac
if [ -f No$CMD ]
then
x=`cat No$CMD`
if [ "$ACTION" = "$x" ]
then
ACTION='echo "No actions performed, No$CMD file present"'
SUCC='$SYS -- skipped'
fi
fi
if eval "{ $ACTION ; } >Out 2>&1 </dev/null"
then eval echo $SUCC
if [ "$SUCC" = '$SYS -- skipped' ]
then :
else echo "$ACTION" > No$CMD 2>/dev/null
fi
else RETC=1 ; X=: ; eval echo $FAIL
fi
;;
esac
(echo ------- `pwd`
cat Out
$X rm -f Out
) 2>/dev/null 1>&- 1>&3
exit $RETC
)
case $? in
0) ;;

View File

@@ -1 +1,9 @@
em.pascal
cc-and-mkdep.ack
cc-and-mkdep.all
cc-and-mkdep.sun
do_deps
do_resolve
lint-lib.ack
lint-lib.unix
mk_manpage
rm_deps

8
bin/cc-and-mkdep.ack Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/sh
: '$Id$'
: Compile and make dependencies. First argument is the file on which the
: dependencies must be produced. This version is for ACK.
n=$1
shift
exec $CC -Rcem-A$n -Rcem-m $*

21
bin/cc-and-mkdep.all Executable file
View File

@@ -0,0 +1,21 @@
#!/bin/sh
: '$Id$'
: Compile and make dependencies. First argument is the file on which the
: dependencies must be produced. This version is a generic one that should
: work for all Unix systems.
n=$1
shift
cpp_args=
for i in $*
do
case $i in
-I*|-D*|-U*) cpp_args="$cpp_args $i"
;;
-*) ;;
*) cpp_args="$cpp_args $i"
;;
esac
done
$UTIL_HOME/lib.bin/cpp -d -m $cpp_args > $n 2>/dev/null
exec $CC $*

8
bin/cc-and-mkdep.sun Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/sh
: '$Id$'
: Compile and make dependencies. First argument is the file on which the
: dependencies must be produced. This version is for the SUN cc.
n=$1
shift
exec $CC -Qpath $UTIL_HOME/lib.bin -Qoption cpp -d$n -Qoption cpp -m $*

19
bin/do_deps Executable file
View File

@@ -0,0 +1,19 @@
#!/bin/sh
: '$Id$'
: Produce dependencies for all argument files
for i in $*
do
n=`basename $i .c`
if [ -f $n.dep ]
then
:
else
echo $n.'$(SUF): '$i > $n.dep
echo " head -5 $n.dep > $n.dp1" >> $n.dep
echo ' CC="$(CC)" UTIL_HOME="$(UTIL_HOME)" $(CC_AND_MKDEP) '$n.dp2 '$(CFLAGS)' -c $i >> $n.dep
echo " cat $n.dp1 $n.dp2 > $n.dep" >> $n.dep
echo " rm -f $n.dp1 $n.dp2" >> $n.dep
fi
done

48
bin/do_resolve Executable file
View File

@@ -0,0 +1,48 @@
#!/bin/sh
: '$Id$'
: Resolve name clashes in the files on the argument list. If these
: files reside in another directory, a copy is made in the current
: directory. If not, it is overwritten. Never do this in a source
: directory! A list of the new files is produced on standard output.
UTIL_BIN=$UTIL_HOME/bin
trap "rm -f tmp$$ a.out nmclash.* longnames clashes" 0 1 2 3 15
: first find out if we have to resolve problems with identifier significance.
cat > nmclash.c <<'EOF'
/* Accepted if many characters of long names are significant */
abcdefghijklmnopr() { }
abcdefghijklmnopq() { }
main() { }
EOF
if $CC nmclash.c
then : no identifier significance problem
for i in $*
do
echo $i
done
else
$UTIL_BIN/prid -l7 $* > longnames
: remove code generating routines from the clashes list.
: code generating routine names start with C_.
: also remove names starting with flt_.
sed '/^C_/d' < longnames | sed '/^flt_/d' > tmp$$
$UTIL_BIN/cclash -c -l7 tmp$$ > clashes
for i in $*
do
$UTIL_BIN/cid -Fclashes < $i > tmp$$
n=`basename $i .xxx`
if cmp -s $n tmp$$
then
rm -f tmp$$
else
mv tmp$$ $n
fi
echo $n
done
fi

View File

@@ -1 +0,0 @@
exec /usr/em/doc/em/int/em /usr/em/doc/em/int/tables ${1-e.out} core

13
bin/lint-lib.ack Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/sh
: '$Id$'
: Create a lint library file. The name of the library file is constructed
: from the first argument. The second argument indicates the directory where
: the result is to be placed. This version is for ACK lint.
n=$1
shift
d=$1
shift
lint -L$n $*
mv $n.llb $d

13
bin/lint-lib.unix Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/sh
: '$Id$'
: Create a lint library file. The name of the library file is constructed
: from the first argument. The second argument indicates the directory where
: the result is to be placed. This version is for Unix lint.
n=$1
shift
d=$1
shift
/usr/bin/lint -C$n $*
mv llib-l$n.ln $d

20
bin/mk_manpage Executable file
View File

@@ -0,0 +1,20 @@
#!/bin/sh
num=`expr $1 : '.*\.\([1-8]\)'`
if [ -d $2/man ] ; then : ; else mkdir $2/man ; fi
if [ -f $2/man/head ] ; then : ; else cat > $2/man/head <<'EOF'
.rn TH yy
.de TH
.di zz
.yy "\\$1" "\\$2" "\\$3" "\\$4"
.ds ]W 5th ACK distribution
.ds ]D Amsterdam Compiler Kit
.ds ]L "\\$3
.di
.rm zz
..
EOF
fi
if [ -d $2/man/man$num ] ; then : ; else mkdir $2/man/man$num ; fi
cat $2/man/head $1 | sed "s!TARGETHOME!$2!" > $2/man/man$num/`expr //$1 : '.*/\([^/]*\)'`

9
bin/rm_deps Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/sh
: $Id$
: remove dependencies from a makefile, write result on standard output.
: we cannot do this directly in a makefile because some make versions
: have # start a comment, always.
sed -e '/^#DEPENDENCIES/,$d' $1
echo '#DEPENDENCIES'

71
config.pm Normal file
View File

@@ -0,0 +1,71 @@
-- ======================================================================= --
-- ACK CONFIGURATION --
-- (Edit this before building) --
-- ======================================================================= --
-- What platform to build for by default?
DEFAULT_PLATFORM = "pc86"
-- Where should the ACK put its temporary files?
ACK_TEMP_DIR = "/tmp"
-- Where is the ACK going to be installed, eventually?
PREFIX = "/usr/local"
-- ======================================================================= --
-- BROKEN ACK CONFIGURATION --
-- (Currently not editable) --
-- ======================================================================= --
-- FIXME: the following two variables must be set to their Minix variants
-- due to hard-coded references in the descr files.
-- Name of the platform-independent library directory; 'share' on modern
-- systems, 'lib' on Minix-like systems.
PLATIND = "lib"
-- Name of the platform-dependent library directory; 'lib' on modern
-- systems, 'lib.bin' on Minix-like systems.
PLATDEP = "lib.bin"
-- ======================================================================= --
-- BUILD SYSTEM CONFIGURATION --
-- (Not user servicable) --
-- ======================================================================= --
-- Absolute path to the ACK source directory.
ROOTDIR = posix.getcwd().."/"
-- Temporary directory used during the build process.
TEMPDIR = "/tmp/ack-temp/"
-- Directory in which dynamically generated header files will go during
-- the build process.
HEADERDIR = TEMPDIR.."headers/"
-- Directory in which tools used by the build process but which not actually
-- deployed with the ACK will go.
TOOLDIR = TEMPDIR.."tools/"
-- Directory in which the libraries used to build the ACK tools but which are
-- not actually deployed with the ACK will go.
LIBDIR = TEMPDIR.."lib/"
-- Staging area where the installation will be built before actually copying
-- it.
BINDIR = TEMPDIR.."staging/"
-- Directory that the pm cache goes in.
pm.intermediate_cache_dir = TEMPDIR.."pmcache/"

15
distr/Exceptions Normal file
View File

@@ -0,0 +1,15 @@
++ ./doc/install.pr made
++ ./doc/int/.distr made
++ ./etc/new_table_done made
++ ./lang/cem/cemcom.ansi/Version.c made
++ ./lang/cem/libcc.ansi/stdlib/malloc.c made
++ ./lang/cem/cemcom/Version.c made
++ ./lang/pc/comp/Version.c made
++ ./lang/m2/comp/Version.c made
++ ./lang/m2/m2mm/Version.c made
++ ./mach/sparc/ce/EM_table made
++ ./mach/sparc_solaris/libem/LIST made
++ ./util/LLgen/src/LLgen.c.dist made
++ ./util/cpp/Version.c made
++ ./util/ego/share/pop_push.h made
++ ./util/grind/ops.c made

90
distr/How_To Normal file
View File

@@ -0,0 +1,90 @@
How to make a distribution
--------------------------
I have written a new tool to generate the distributions that does not rely on
having a local CVS server --- distr/mkdist.
To use it, you need to specify your CVS work tree, the destination directory
that the distribution will be written to, plus flags. It should be self-
documenting; use:
mkdist --help
...to get documentation.
It uses .distr files in exactly the same way as the previous mechanism.
The documentation for the old distribution tools follows.
David Given
dg@cowlark.com
2005-06-25
-----------------------------------------------------------------------------
How to make a fresh distribution:
For a distribution you need ".distr" files and RCS files.
The EM home directory contains a file called ".distr". It contains
the names of all the files and directories you want to have in the distribution.
The directories should contain .distr files, the other files should
be placed under CVS.
There are files that derive from other files and yet should be placed
in the distribution.
These files should not be placed under RCS or CVS.
The file "Exceptions" in this directory contains the current list of
these files.
When all this is correct, use the shell script mktree the extract
the distribution from the EM tree.
sh mktree destination_tree repository_tree <distrname> 2>f.attf
Use the "cvs rtag" command to give the distribution a name first!
Make sure that the destination tree exists and is empty!
Failing to do that will almost certainly result in a welter of
error messages.
The file f.attf contains mktree error messages and should be compared
to Exceptions.
The actions of mktree are quite complicated. It starts in the current
directory creating a version in the destination directory.
Then it reads the .distr file.
For each file mentioned there it performes certain actions:
1- Directory Change to that directory and call yourself recursively.
2- File
a- Does a file LIST exist in this directory AND
is the first line of LIST equal to the name of the
destination file? If so, try to extract all the files
named in the rest of the LIST file and call the program
arch to create a library "arch cDr `cat LIST`".
In this manner libraries can be distributed whose members
have their own RCS file.
else
b- Try to run 'make distr'
else
c- Try to run 'make <filename>'
else
d- give message that says "not present" (or some such).
Now, the tree contains all the files in the distribution, but it also contains
files that should not be in the distribution, especially the files created
by CVS.
That is why we now give the command:
dtar cdf distr .
The file distr is the one you should put on tape!
But,.... before doing that: Try it out!
Repeat the process described in the installation manual.
Only if that succeeds you are sure that you included the files needed.
Good Luck,
Ed Keizer, 85/4/15.
Updated for 3rd distribution by Ceriel Jacobs, 87/3/11.
And again,
Good Luck!
Updated for 4th distribution by Ceriel Jacobs, 88/4/08.
And again,
Good Luck!
Updated for 5th distribution by Ceriel Jacobs, 91/19/12.
And again,
Good Luck!
Updated for 1st upgrade to 5th distribution by Ceriel Jacobs, 91/12/11.
And again,
Good Luck!

26
distr/dwalk Executable file
View File

@@ -0,0 +1,26 @@
#!/bin/sh
: ${CDIR=.}
${DF-:} $CDIR .distr
if test ! -r $DESTDIR/$CDIR/.distr
then
echo ++ no .distr in $CDIR 1>&2
exit 0
fi
for i in `cat $DESTDIR/$CDIR/.distr`
do
if test -d $i
then
( if cd $i
then
CDIR=$CDIR/$i
export CDIR
exec $DDIR/dwalk $*
else
echo ++ Could not access $CDIR/$i 1>&2
fi
)
else
${DF-:} $CDIR $i
fi
done

1
distr/echod Executable file
View File

@@ -0,0 +1 @@
echo $1

10
distr/listall Executable file
View File

@@ -0,0 +1,10 @@
case $# in
0) DESTDIR=. ;;
1) DESTDIR=$1 ;;
*) echo $0 [directory] ; exit 1 ;;
esac
DD=`pwd`/listall.d
DW=`pwd`/dwalk
export DD DESTDIR
cd $DESTDIR
$DW

2
distr/listall.d Executable file
View File

@@ -0,0 +1,2 @@
echo "<$1>"
ls -bCdx `cat .distr`

10
distr/listdirs Executable file
View File

@@ -0,0 +1,10 @@
case $# in
0) DIR=. ;;
1) DIR=$1 ;;
*) echo $0 [directory] ; exit 1 ;;
esac
DD=`pwd`/echod
DW=`pwd`/dwalk
export DD
cd $DIR
$DW

40
distr/mk_distr_syms Executable file
View File

@@ -0,0 +1,40 @@
#!/bin/sh
: Utility to make a tree of symbolic links to source tree.
: Mount the source tree read-only, use this script, and then try installation.
case $# in
2) ;;
*) echo "Usage: $0 <source-tree> <symlink-tree>" 1>&2
exit 1
;;
esac
if [ -f $1/.distr ]
then
for i in `cat $1/.distr`
do
if [ -d $1/$i ]
then
if mkdir $2/$i && $0 $1/$i $2/$i
then
:
else
exit 2
fi
else
if [ -f $1/$i ]
then
if ln -s $1/$i $2/$i
then
:
else
exit 3
fi
else
echo "Missing file $1/$i" 1>&2
exit 4
fi
fi
done
else
echo "No .distr file in $1" 1>&2
exit 5
fi

11
distr/mka Executable file
View File

@@ -0,0 +1,11 @@
#!/bin/sh
set -e
for i in `tail +2 $DESTDIR/$1/LIST`
do
${DF-false} $1 $i
done
cd $DESTDIR/$1
arch cDr `cat LIST`
: I do not remove the files constituating the library, because
: they might be present in .distr

177
distr/mkdist Executable file
View File

@@ -0,0 +1,177 @@
#!/bin/sh
# $Source$
# $State$
# Set up default variables.
destdir=
srcdir=`pwd`
arch=/usr/local/bin/arch
delete=no
copy="ln"
# --- Options parsing -------------------------------------------------------
while [ "$1" != "" ]; do
case "$1" in
-s|--srcdir)
srcdir="$2"
shift
;;
-d|--destdir)
destdir="$2"
shift
;;
-x|--delete)
delete=yes
;;
-c|--copy)
copy="cp -Rp"
;;
-S|--symlink)
copy="ln -s"
;;
-a|--arch)
arch="$2"
shift
;;
-h|--help)
echo "mkdist [options]"
echo "Options are:"
echo " -s --srcdir <path> The CVS tree to read from. (default: CWD)"
echo " -d --destdir <path> The directory to create the distribution in."
echo " -x --delete Erase the destination directory first."
echo " -c --copy Make physical copies of the files. (default: hardlink)"
echo " -S --symlink Make symbolic links instead of copying or hardlinking."
echo " -a --arch <path> Where the ACK 'arch' tool is."
echo " -h --help Display this message."
exit 0
;;
*)
echo "Unrecognised option. Try --help for help."
exit 1
esac
shift
done
if [ "$destdir" = "" ]; then
echo "You must specify a destination directory. (Try --help for help.)"
exit 1
fi
# --- Main routines ---------------------------------------------------------
# These two routines do the work of traversing the source tree and building
# the distribution tree.
addfile() {
local f
f="${1##$srcdir/}"
mkdir -p $destdir/`dirname $f`
$copy "$1" "$destdir/$f"
}
process_dir() {
local path
local archivename
path=$1
cd $path
echo $PWD
# Look for a LIST file and cache the first line.
archivename=
if [ -f LIST ]; then
archivename=`head -1 LIST`
fi
for i in `cat $path/.distr`; do
case "$i" in
\#*) # Comment. Do nothing.
;;
*)
if [ -d $i ]; then
# This is a directory. Recurse into it.
( process_dir $path/$i )
elif [ -f $i ]; then
# This is a file.
addfile $path/$i
elif [ "$i" = "$archivename" ]; then
# Build the named archive.
$arch cDr `cat LIST`
addfile $path/$archivename
else
echo "Don't know what to do with $i, listed in $PWD/.distr."
exit 1
fi
;;
esac
done
}
# --- Main program ----------------------------------------------------------
# Test to make sure that $arch points to the right thing.
if !(strings $arch | grep archiver > /dev/null); then
echo "$arch does not seem to point at the ACK archiver tool."
echo "(Don't confuse this with the Linux tool for displaying your"
echo "architecture.)"
echo ""
echo "Press RETURN to go ahead anyway, or CTRL+C to abort."
read ignored
fi
# Actually do the work.
echo "Creating distribution from CVS tree: $srcdir"
echo " into destination tree: $destdir"
echo ""
if [ -e $destdir ]; then
if [ "$delete" = "yes" ]; then
echo "Press RETURN to erase $destdir and its contents, or CTRL+C to abort."
read
echo "Erasing..."
rm -rf "$destdir"
else
echo "$destdir exists. Aborting."
exit 1
fi
fi
echo "Working..."
mkdir -p $destdir
process_dir $srcdir
echo "Done."
# Revision history
# $Log$
# Revision 1.5 2007-04-24 19:48:41 dtrg
# Removed bashish.
#
# Revision 1.4 2007/02/25 20:56:41 dtrg
# Performed major renovations to make the script work on OpenBSD.
#
# Revision 1.3 2007/02/24 02:05:56 dtrg
# Removed some bashish; added comment support; removed the make
# distr functionality, as nothing was using it any more and it was
# causing problems.
#
# Revision 1.2 2005/06/24 23:19:23 dtrg
# Added new mkdist tool.
#
# Revision 1.1 2005/06/24 22:13:57 dtrg
# Created new tool to generate distributions.

19
distr/mkf Executable file
View File

@@ -0,0 +1,19 @@
#!/bin/sh
if [ -f $DESTDIR/$1/$2 ]
then
:
elif grep LIST $DESTDIR/$1/.distr >/dev/null 2>&1 &&
(test "$2" = "`head -1 $DESTDIR/$1/LIST`") >/dev/null 2>&1 &&
${DA-false} "$1" "$2"
then
: Fetched library contents one by one and put them together
elif ( cd $DESTDIR/$1 ; make distr ) > /dev/null 2>&1
then
echo ++ $1/$2 made 1>&2
elif ( cd $DESTDIR/$1 ; make $2 ) > /dev/null 2>&1
then
echo ++ $1/$2 made 1>&2
else
echo ++ $1/$2 not present 1>&2
fi

42
distr/mktree Normal file
View File

@@ -0,0 +1,42 @@
case $# in
2|3) ;;
*) echo Usage: $0 directory repdir [ SVrecord ] 1>&2 ; exit 1 ;;
esac
case $0 in
/*) DDIR=`dirname $0`
;;
*) DDIR=`pwd`/`dirname $0`
;;
esac
case $1 in
/*) DESTDIR=$1 ;;
*) DESTDIR=`pwd`/$1 ;;
esac
case $2 in
/*) REPDIR=$2 ;;
*) REPDIR=`pwd`/$2 ;;
esac
# DD=$DDIR/mkd
# export DD
mkdir -p $DESTDIR
CVSROOT=/usr/proj/em/Repositories
export CVSROOT
cd $DESTDIR
case $# in
3)
cvs checkout world -r $3
;;
2)
cvs checkout world
;;
esac
cd $REPDIR
DF=$DDIR/mkf
DA=$DDIR/mka
export DDIR DESTDIR DF DA REPDIR
$DDIR/dwalk
cd $DESTDIR
find . -type d -print | xargs chmod "uog+rx"
chmod -R "og-w,u+w,uog+r" .

26
distr/todistr Normal file
View File

@@ -0,0 +1,26 @@
REV=
FILE=
while :
do
case $# in
0) break ;;
esac
ARG="$1"
shift
case "$ARG" in
-r*) REV=`echo "$ARG"| sed s/-r//` ;;
-*) FLAGS="$FLAGS $ARG" ;;
*) case x$FILE in
x) FILE="$ARG" ;;
*) echo todistr can only be done on one file at the time
exit 1 ;;
esac
esac
done
case x$REV in
x) REV=`rlog -h "$FILE"|sed -n -e '/head/s/^head:[ ]*//p'` ;;
esac
case x$REV in
x) exit 2 ;;
esac
rcs -ndistr4:$REV $FLAGS $FILE

2
distr/ts Executable file
View File

@@ -0,0 +1,2 @@
DD=`pwd`/ts
echo OK

View File

@@ -1,8 +1,11 @@
READ_ME
Makefile
proto.make
ack.doc
basic.doc
cg.doc
crefman.doc
ansi_C.doc
em
install.doc
install.pr
@@ -13,11 +16,17 @@ regadd.doc
toolkit.doc
v7bugs.doc
val.doc
LLgen
6500.doc
i80.doc
z80.doc
m68020.doc
m2ref.doc
nopt.doc
top
ego
occam
int
ceg
sparc
lint
pascal

View File

@@ -1,4 +1,4 @@
. \" $Header$"
. \" $Id$"
.RP
.ND Dec 1984
.TL

View File

@@ -1,3 +1,4 @@
LLgen.n
LLgen_NCER.n
LLgen.refs
Makefile
proto.make

View File

@@ -1,4 +1,4 @@
.\" $Header$
.\" $Id$
.\" Run this paper off with
.\" refer [options] -p LLgen.refs LLgen.doc | [n]eqn | tbl | (nt)roff -ms
.if '\*(>.'' \{\
@@ -59,7 +59,7 @@ It is based on so called \fBdefault choices\fR, which are
implicitly or explicitly specified by the user.
.PP
\fILLgen\fR has succesfully been used to create recognizers for
Pascal and C.
Pascal, C, and Modula-2.
.AE
.NH
Introduction
@@ -151,7 +151,7 @@ used for grouping.
.PP
We can describe the syntax of an ECF syntax with an ECF syntax :
.DS
.ft 5
.ft CW
grammar : rule +
;
.ft R
@@ -159,7 +159,7 @@ grammar : rule +
This grammar rule states that a grammar consists of one or more
rules.
.DS
.ft 5
.ft CW
rule : nonterminal ':' productionrule ';'
;
.ft R
@@ -169,7 +169,7 @@ followed by ":",
the \fBproduce symbol\fR, followed by a production rule, followed by a
";", in\%di\%ca\%ting the end of the rule.
.DS
.ft 5
.ft CW
productionrule : production [ '|' production ]*
;
.ft R
@@ -178,7 +178,7 @@ A production rule consists of one or
more alternative productions separated by "|". This symbol is called the
\fBalternation symbol\fR.
.DS
.ft 5
.ft CW
production : term *
;
.ft R
@@ -186,14 +186,14 @@ production : term *
A production consists of a possibly empty list of terms.
So, empty productions are allowed.
.DS
.ft 5
.ft CW
term : element repeats
;
.ft R
.DE
A term is an element, possibly with a repeat specification.
.DS
.ft 5
.ft CW
element : LITERAL
| IDENTIFIER
| '[' productionrule ']'
@@ -205,7 +205,7 @@ between apostrophes, it can be an IDENTIFIER, which is either a
nonterminal or a token, and it can be a production rule
between square parentheses.
.DS
.ft 5
.ft CW
repeats : '?'
| [ '*' | '+' ] NUMBER ?
| NUMBER ?
@@ -287,7 +287,7 @@ Names representing tokens must be declared before they are used.
This can be done using the "\fB%token\fR" keyword,
by writing
.nf
.ft 5
.ft CW
.sp 1
%token name1, name2, . . . ;
.ft R
@@ -301,7 +301,7 @@ The start symbols must be declared explicitly using the
"\fB%start\fR" keyword. It can be used whenever a declaration is
legal, f.i.:
.nf
.ft 5
.ft CW
.sp 1
%start LLparse, specification ;
.ft R
@@ -338,9 +338,14 @@ grammar rule.
.PP
In order to facilitate communication between the actions and
\fILLparse\fR,
the parsing routines can be given C-like parameters. So, for example
the parsing routines can be given C-like parameters.
Each parameter must be declared separately, and each of these declarations must
end with a semicolon.
For the last parameter, the semicolon is optional.
.PP
So, for example
.nf
.ft 5
.ft CW
.sp 1
expr(int *pval;) { int fact; } :
/*
@@ -464,7 +469,7 @@ By default, for terms with a repetition count containing "*" or
"?" the default choice is to continue with the rest of the rule
in which the term appears, and
.sp 1
.ft 5
.ft CW
.nf
term+
.fi
@@ -473,7 +478,7 @@ in which the term appears, and
is treated as
.sp 1
.nf
.ft 5
.ft CW
term term* .
.ft R
.fi
@@ -488,7 +493,7 @@ the skipping of such a term can be prevented by
using the keyword "\fB%persistent\fR".
For instance, the rule
.sp 1
.ft 5
.ft CW
.nf
commandlist : command* ;
.fi
@@ -496,7 +501,7 @@ commandlist : command* ;
.sp 1
could be changed to
.sp 1
.ft 5
.ft CW
.nf
commandlist : [ %persistent command ]* ;
.fi
@@ -592,7 +597,7 @@ returning 1 if the parameter supplied can start a specified
nonterminal, f.i.:
.sp 1
.nf
.ft 5
.ft CW
%first fmac, nonterm ;
.ft R
.sp 1
@@ -635,7 +640,7 @@ parameter, whose value is a token number, zero or -1.
A zero parameter indicates that the current token (the one in
the external variable \fILLsymb\fR) is deleted.
.br
A -1 parameter indicates that the parser expected end of file, but did'nt get
A -1 parameter indicates that the parser expected end of file, but didn't get
it.
The parser will then skip tokens until end of file is detected.
.br
@@ -653,13 +658,17 @@ token.
The user may also supply his own error recovery routines, or handle
errors differently. For this purpose, the name of a routine to be called
when an error occurs may be declared using the keyword \fB%onerror\fR.
This routine takes one parameter, which is either the token number of the
This routine takes two parameters.
The first one is either the token number of the
token expected, or 0. In the last case, the error occurred at a choice.
In both cases, the routine must ensure that the next call to the lexical
analyser returns the token that replaces the current one. Of course,
that could well be the current one, in which case
.I LLparse
recovers from the error.
The second parameter contains a list of tokens that are not skipped at the
error point. The list is in the form of a null-terminated array of integers,
whose address is passed.
.PP
The user must supply a lexical analyzer to read the input stream and
break it up into tokens, which are passed to
@@ -671,7 +680,7 @@ This keyword can be used wherever a declaration is legal and may appear
only once in the grammar specification, f.i.:
.sp 1
.nf
.ft 5
.ft CW
%lexical scanner ;
.ft R
.fi
@@ -695,10 +704,31 @@ the "#\ define" mechanism of C is used to give them a value and
to allow the lexical analyzer to return their token numbers symbolically.
These "#\ define"s are collected in the file \fILpars.h\fR which
can be "#\ include"d in any file that needs the token-names.
The maximum token number chosen is defined in the macro \fILL_MAXTOKNO\fP.
.PP
The lexical analyzer must signal the end
of input to \fILLparse\fR
by returning a number less than or equal to zero.
.NH
Programs with more than one parser
.PP
\fILLgen\fR offers a simple facility for having more than one parser in
a program: in this case, the user can change the names of global procedures,
variables, etc, by giving a different prefix, like this:
.sp 1
.nf
.ft CW
%prefix XX ;
.ft R
.fi
.sp 1
The effect of this is that all global names start with XX instead of LL, for
the parser that has this prefix. This holds for the variables \fILLsymb\fP,
which now is called \fIXXsymb\fP, for the routine \fILLmessage\fP,
which must now be called \fIXXmessage\fP, and for the macro \fILL_MAXTOKNO\fP,
which is now called \fIXX_MAXTOKNO\fP.
\fILL.output\fP is now \fIXX.output\fP, and \fILpars.c\fP and \fILpars.h\fP
are now called \fIXXpars.c\fP and \fIXXpars.h\fP.
.bp
.SH
References
@@ -713,7 +743,7 @@ This appendix has a description of the \fILLgen\fR input syntax,
as a \fILLgen\fR specification. As a matter of fact, the current
version of \fILLgen\fR is written with \fILLgen\fR.
.nf
.ft 5
.ft CW
.sp 2
/*
* First the declarations of the terminals
@@ -737,6 +767,7 @@ version of \fILLgen\fR is written with \fILLgen\fR.
%token PREFER; /* %prefer */
%token DEFAULT; /* %default */
%token LEXICAL; /* %lexical */
%token PREFIX; /* %prefix */
%token ONERROR; /* %onerror */
%token FIRST; /* %first */
@@ -767,6 +798,9 @@ declaration
| LEXICAL
IDENTIFIER
';'
| PREFIX
IDENTIFIER
';'
| ONERROR
IDENTIFIER
';'
@@ -785,11 +819,12 @@ ldecl : '{'
productions
: simpleproduction
[ '|' DEFAULT? simpleproduction ]*
[ '|' simpleproduction ]*
;
simpleproduction
: [ IF '(' /* Read C-expression here */ ')'
: DEFAULT?
[ IF '(' /* Read C-expression here */ ')'
| PREFER
| AVOID
]?
@@ -842,7 +877,7 @@ priority. The example shows how we can do it all with one
nonterminal, no matter how many priority levels there are.
.sp 1
.nf
.ft 5
.ft CW
{
#include <stdio.h>
#include <ctype.h>
@@ -891,38 +926,37 @@ stat { int ident, val; } :
| '\en'
;
expr(int level, *val;) { int expr; } :
%if (level <= MAXPRIO)
/* The grammar is ambiguous here. If level > MAXPRIO,
* this invocation will only scan one factor
*/
expr(MAXPRIO+1,val)
[ %while (prio(tok.t_tokno) >= level)
expr(int level; int *val;) { int expr; } :
factor(val)
[ %while (prio(tok.t_tokno) >= level)
/* Swallow operators as long as their priority is
* larger than or equal to the level of this invocation
*/
'+' expr(prio('+')+1,&expr)
'+' expr(prio('+')+1,&expr)
{ *val += expr; }
/* This states that '+' groups left to right. If it
* should group right to left, the rule should read:
* '+' expr(prio('+'),&expr)
*/
| '-' expr(prio('-'),&expr)
| '-' expr(prio('-')+1,&expr)
{ *val -= expr; }
| '*' expr(prio('*'),&expr)
| '*' expr(prio('*')+1,&expr)
{ *val *= expr; }
| '/' expr(prio('/'),&expr)
| '/' expr(prio('/')+1,&expr)
{ *val /= expr; }
| '%' expr(prio('%'),&expr)
| '%' expr(prio('%')+1,&expr)
{ *val %= expr; }
| '&' expr(prio('&'),&expr)
| '&' expr(prio('&')+1,&expr)
{ *val &= expr; }
| '|' expr(prio('|'),&expr)
| '|' expr(prio('|')+1,&expr)
{ *val |= expr; }
]*
]*
/* Notice the "*" here. It is important.
*/
| '(' expr(1,val) ')'
;
factor(int *val;):
'(' expr(1,val) ')'
| '-' expr(MAXPRIO+1,val)
{ *val = -*val; }
| number(val)
@@ -978,7 +1012,8 @@ main() {
ptab['-'] = 3;
ptab['&'] = 2;
ptab['|'] = 1;
return parse();
parse();
exit(nerrors);
} }
.fi
.ft R
@@ -1003,7 +1038,7 @@ one file.
As usual, there is a way around this problem.
A sample makefile follows:
.sp 1
.ft 5
.ft CW
.nf
# The grammar exists of the files decl.g, stat.g and expr.g.
# The ".o"-files are the result of a C-compilation.

View File

@@ -13,7 +13,7 @@
%A M. E. Lesk
%I Bell Laboratories
%D October 1975
%C Murrey Hill, New Jersey
%C Murray Hill, New Jersey
%R Comp. Sci. Tech. Rep. No. 39
%T Yacc: Yet Another Compiler Compiler

2712
doc/LLgen/LLgen_NCER.n Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -1,8 +1,15 @@
# $Header$
# $Id$
GRAP=grap
PIC=pic
EQN=eqn
REFER=refer
TBL=tbl
all: ../LLgen.doc ../LLgen_NCER.doc
../LLgen.doc: LLgen.n LLgen.refs
$(REFER) -sA+T -p LLgen.refs LLgen.n | $(EQN) | $(TBL) > $@
../LLgen_NCER.doc: LLgen_NCER.n
$(GRAP) LLgen_NCER.n | pic | eqn > $@

20
doc/LLgen/proto.make Normal file
View File

@@ -0,0 +1,20 @@
# $Id$
#PARAMS do not remove this line!
SRC_DIR = $(SRC_HOME)/doc/LLgen
GRAP=grap
PIC=pic
EQN=eqn
REFER=refer
TBL=tbl
all: $(TARGET_HOME)/doc/LLgen.doc $(TARGET_HOME)/doc/LLgen_NCER.doc
$(TARGET_HOME)/doc/LLgen.doc: $(SRC_DIR)/LLgen.n $(SRC_DIR)/LLgen.refs
$(REFER) -sA+T -p $(SRC_DIR)/LLgen.refs $(SRC_DIR)/LLgen.n | $(EQN) | $(TBL) > $@
$(TARGET_HOME)/doc/LLgen_NCER.doc: $(SRC_DIR)/LLgen_NCER.n
$(GRAP) $(SRC_DIR)/LLgen_NCER.n | pic | eqn > $@

View File

@@ -1,68 +1,82 @@
# $Header$
# $Id$
SUF=pr
PRINT=cat
NROFF=nroff
TBL=tbl
EQN=eqn
PIC=pic
REFER=refer
# This Makefile is not supposed to be used in the doc source directory.
# Instead, it is supposed to be copied to the target doc directory.
SUF=dit
PRINT=dis
NROFF=troff
MS=-ms
OPR=dip
RESFILES= \
toolkit.$(SUF) install.$(SUF) em.$(SUF) ack.$(SUF) v7bugs.$(SUF) \
peep.$(SUF) cg.$(SUF) ncg.$(SUF) regadd.$(SUF) LLgen.$(SUF) \
basic.$(SUF) crefman.$(SUF) pcref.$(SUF) val.$(SUF) \
basic.$(SUF) crefman.$(SUF) pascal.$(SUF) pcref.$(SUF) val.$(SUF) \
ansi_C.$(SUF) \
6500.$(SUF) i80.$(SUF) z80.$(SUF) top.$(SUF) ego.$(SUF) \
m68020.$(SUF) occam.$(SUF)
m68020.$(SUF) occam.$(SUF) m2ref.$(SUF) ceg.$(SUF) nopt.$(SUF) \
sparc.$(SUF) int.$(SUF) lint.$(SUF)
.SUFFIXES: .doc .$(SUF)
.SUFFIXES: .doc .$(SUF) .lpr .out
.doc.$(SUF):
$(NROFF) $(MS) $< > $@
crefman.$(SUF): crefman.doc
$(EQN) crefman.doc | $(NROFF) $(MS) >$@
# directly to the printer:
.doc.lpr:
$(NROFF) $(MS) $< | $(OPR)
# to standard output
.doc.out:
@$(NROFF) $(MS) $<
# Exceptions, to be run without -ms
v7bugs.$(SUF): v7bugs.doc
$(NROFF) v7bugs.doc >$@
install.$(SUF): install.doc
$(TBL) install.doc | $(NROFF) $(MS) >$@
v7bugs.lpr: v7bugs.doc
$(NROFF) v7bugs.doc | $(OPR)
v7bugs.out: v7bugs.doc
@$(NROFF) v7bugs.doc
pcref.$(SUF): pcref.doc
$(NROFF) pcref.doc >$@
pcref.lpr: pcref.doc
$(NROFF) pcref.doc | $(OPR)
pcref.out: pcref.doc
@$(NROFF) pcref.doc
val.$(SUF): val.doc
$(NROFF) val.doc >$@
6500.$(SUF): 6500.doc
$(TBL) 6500.doc | $(NROFF) $(MS) >$@
LLgen.doc: LLgen.X
LLgen.X:
cd LLgen; make "EQN="$(EQN) "TBL="$(TBL) "REFER="$(REFER)
top.doc: top.X
top.X:
cd top; make "EQN="$(EQN) "TBL="$(TBL) "REFER="$(REFER)
occam.doc: occam.X
occam.X:
cd occam; make "PIC="$(PIC) "TBL="$(TBL) "EQN="$(EQN)
ego.doc: ego.X
ego.X:
cd ego; make "REFER="$(REFER)
em.$(SUF): em.X
em.X:
cd em; make "TBL="$(TBL) "NROFF="$(NROFF) "SUF="$(SUF)
install cmp:
val.lpr: val.doc
$(NROFF) val.doc | $(OPR)
distr: install.doc
tbl install.doc | nroff -Tlp $(MS) >install.pr
val.out: val.doc
@$(NROFF) val.doc
pr:
@make "SUF="$(SUF) "NROFF="$(NROFF) "EQN="$(EQN) "TBL="$(TBL) \
"PIC="$(PIC) "MS="$(MS) \
@make "SUF="$(SUF) "NROFF="$(NROFF) "MS="$(MS) \
$(RESFILES) >make.pr.out 2>&1
@$(PRINT) $(RESFILES)
# The 'opr' entry creates a lot of paper ... but the user must be able
# to write the doc directory. I hope that this limits the users of
# this entry to persons that know what they are doing.
opr:
make pr | opr
@make "SUF="$(SUF) "NROFF="$(NROFF) "MS="$(MS) $(RESFILES)
$(OPR) $(RESFILES)
clean:
-rm -f *.old $(RESFILES) *.t *.out LLgen.doc top.doc \
occam.doc ego.doc
-rm -f $(RESFILES)
# The distr entry is only used when making a distribution tree.
# It makes a version of the installation manual, suitable for a simple
# line printer.
distr: install.doc
tbl install.doc | nroff -Tlp $(MS) >install.pr

8
doc/READ_ME Normal file
View File

@@ -0,0 +1,8 @@
Some of these documents use a font called CW.
If this font is not available, reference to it can be changed with
a sed-script like
s/\.ft CW/.ft yourfont/
s/\\f(CW/\\fyourfont/g
s/^.fp\(.*\)CW$/.fp\1yourfont/
However, the font must be a constant-width font for the documents to look
reasonable.

View File

@@ -1,4 +1,4 @@
.\" $Header$
.\" $Id$
.nr PD 1v
.tr ~
.TL
@@ -23,7 +23,7 @@ source file.
Each transformation table entry tells which input suffixes are
allowed and what suffix/name the output file has.
When the output file does not already satisfy the request of the
user, with the flag \fB\-c.suffix\fP, the table is scanned
user (indicated with the flag \fB\-c.suffix\fP), the table is scanned
starting with the next transformation in the table for another
transformation that has as input suffix the output suffix of
the previous transformation.
@@ -57,7 +57,7 @@ The way the backend table name is determined is more
convoluted.
.br
First, when the last filename in the program call name is not
one of \fIack\fP, \fIcc\fP, \fIacc\fP, \fIpc\fP or \fIapc\fP,
one of \fIack\fP or the front-end call-names,
this filename is used as the backend description name.
Second, when the \fB\-m\fP is present the \fB\-m\fP is chopped of this
flag and the rest is used as the backend description name.
@@ -75,7 +75,7 @@ At the moment of writing this document, the descriptions
included are: pdp, fe, i86, m68k2, vax2 and int.
The name of a description is first searched for internally,
then in lib/descr/\fIname\fP, then in
lib/\fIname\fP/descr, band finally in the current
lib/\fIname\fP/descr, and finally in the current
directory of the user.
.NH
Using the description file
@@ -226,7 +226,7 @@ The mapflags are used to grab flags given to \fIack\fP and
pass them on to a specific transformation.
This feature uses a few simple pattern matching and replacement
facilities.
Multiple occurences of this keyword are allowed.
Multiple occurrences of this keyword are allowed.
This text following the keyword is
subjected to backslashing.
The keyword is followed by a match expression and a variable
@@ -254,7 +254,7 @@ preserved.
The identifier LNAME is used in conjunction with the scanning of
\fB\-l\fP flags.
The value assigned to LNAME is used to replace the flag.
The example further on shows the use all this.
The example further on shows the use of all this.
.IP \fIargs\fP
.br
The keyword is followed by the program call arguments.
@@ -272,7 +272,17 @@ This keyword indicates that the transformation reads from standard input.
This keyword indicates that the transformation writes on standard output.
.IP \fIoptimizer\fP
.br
This keyword indicates that this transformation is an optimizer.
The presence of this keyword indicates that this transformation is an optimizer.
It can be followed by a number, indicating the "level" of the
optimizer (see description of the -O option in the ack(1ACK) manual page).
.IP \fIpriority\fP
.br
This \-~optional~\- keyword is followed by a number. Positive priority means
that the transformation is likely to be used, negative priority means that
the transformation is unlikely to be used.
Priorities can also be set with a ack(1ACK) command line option.
Priorities come in handy when there are several implementations of a
certain transformation. They can then be used to select a default one.
.IP \fIlinker\fP
.br
This keyword indicates that this transformation is the linker.
@@ -301,7 +311,7 @@ call name (acc, cc, apc or pc) or by the \fB\-.suffix\fP flag.
.IP \fIneed\fP
.br
This \-~optional~\- keyword indicates that the rest of the line must be
concatenated to the NEEDS variable.
concatenated to the HEAD and TAIL variables.
This is done once for every transformation used or indicated
by one of the program call names mentioned above or indicated
by the \fB\-.suffix\fP flag.
@@ -319,7 +329,7 @@ transformations.
\fIAck\fP sets the variable EM to the home directory of the
Amsterdam Compiler Kit.
The variable SOURCE is set to the name of the argument that is currently
being massaged, this is usefull for debugging.
being massaged, this is useful for debugging.
The variable SUFFIX is set to the suffix of the argument that is
currently being massaged.
.br
@@ -353,7 +363,7 @@ name cpp # the C-preprocessor
\-DEM_SSIZE={s} \-DEM_LSIZE={l} \-DEM_FSIZE={f} \-DEM_DSIZE={d} <
# The arguments are: first the \-[IUD]...
# then the include dir's for this machine
# then the NAME and size valeus finally
# then the NAME and size values finally
# followed by the input file name
stdout # Output on stdout
prep is # Is preprocessor
@@ -391,7 +401,11 @@ var p=2 # pointersize 2
var s=2 # short size 2
var l=4 # long size 4
var f=4 # float size 4
var d=8 # dou<EFBFBD><EFBFBD>XY<17>H<EFBFBD>\<5C>و<19>[H<1B>e startoff
var d=8 # double size 8
var M=em22
var NAME=em22 # for cpp (NAME=em22 results in #define em22 1)
var LIB=lib/{M}/tail_ # part of file name for libraries
var RT=lib/{M}/head_ # part of file name for run-time startoff
var SIZE_FLAG=\-sm # default internal table size flag
var INCLUDES=\-I{EM}/include # use {EM}/include for #include files
name asld # Assembler/loader
@@ -416,15 +430,15 @@ name asld # Assembler/loader
end
.DE
The command \fIack \-mint \-v \-v \-I../h \-L \-ly prog.c\fP
The command \fIack \-mem22 \-v \-v \-I../h \-L \-ly prog.c\fP
would result in the following
calls (with exec(II)):
.DS X
.ta 4n
1) /lib/cpp \-I../h \-I/usr/em/include \-Dint22 \-DEM_WSIZE=2 \-DEM_PSIZE=2 \e
1) /lib/cpp \-I../h \-I/usr/em/include \-Dem22 \-DEM_WSIZE=2 \-DEM_PSIZE=2 \e
\-DEM_SSIZE=2 \-DEM_LSIZE=4 \-DEM_FSIZE=4 \-DEM_DSIZE=8 prog.c
2) /usr/em/lib/em_cem \-Vw2i2p2f4s2l4d8 \-l
3) /usr/em/lib/em_ass \-sm /usr/em/mach/int/lib/head_cc \-o e.out prog.k
/usr/em/mach/int/lib/tail_y /usr/em/mach/int/lib/tail_cc.1s
/usr/em/mach/int/lib/tail_cc.2g /usr/em/mach/int/lib/tail_mon
3) /usr/em/lib/em_ass \-sm /usr/em/lib/em22/head_cc \-o e.out prog.k
/usr/em/lib/em22/tail_y /usr/em/lib/em22/tail_cc.1s
/usr/em/lib/em22/tail_cc.2g /usr/em/lib/em22/tail_mon
.DE

365
doc/ansi_C.doc Executable file
View File

@@ -0,0 +1,365 @@
.de NS
.sp
.in 0
\\fBANS \\$1:\\fP
..
.TL
Amsterdam Compiler Kit-ANSI C compiler compliance statements
.AU
Hans van Eck
.AI
Dept. of Mathematics and Computer Science
Vrije Universiteit
Amsterdam, The Netherlands
.PP
This document specifies the implementation-defined behaviour of the ANSI-C
front end of the Amsterdam Compiler Kit as required by ANS X3.159-1989. Since
the implementation-defined behaviour sometimes depends on the machine
compiling on or for, some items will be left unspecified in this
document\(dg.
.FS
\(dg when cross-compiling, run-time behaviour may be different from
compile-time behaviour
.FE
The compiler assumes that it runs on a UNIX system.
.NS A.6.3.1
.IP -
Diagnostics are placed on the standard error output. They have the
following specification:
.br
"<file>", line <nr>: [(<class>)] <diagnostic>
.br
There are three classes of diagnostics: "error", "strict" and "warning".
When the class is "error", the <class> is absent.
.br
The class "strict" is used for violations of the standard which are
not severe enough to stop compilation. An example is the the occurrence
of non white-space after an '#else' or '#endif' pre-processing
directive. The class "warning" is used for legal but dubious
constructions. An example is overflow of constant expressions.
.NS A.6.3.2
.IP -
The function 'main' can have two arguments. The first argument is an
integer specifying the number of arguments on the command line. The second
argument is a pointer to an array of pointers to the arguments (as
strings).
.IP -
Interactive devices are terminals.
.NS A.6.3.3
.IP -
The number of significant characters is an option. By default it is 64.
There is a distinction between upper and lower case.
.NS A.6.3.4
.IP -
The compiler assumes ASCII-characters in both the source and execution
character set.
.IP -
There are no multi-byte characters.
.IP -
There 8 bits in a character.
.IP -
Character constants with values that can not be represented in 8 bits
are truncated.
.IP -
Character constants that are more than 1 character wide will have the
first character specified in the least significant byte.
.IP -
The only supported locale is "C".
.IP -
A plain 'char' has the same range of values as 'signed char'.
.NS A.6.3.5
.IP -
The compiler assumes that it works on and compiles for a
2-complement binary-number system. Shorts will use 2 bytes and longs
will use 4 bytes. The size of integers are machine dependent.
.IP -
Converting an integer to a shorter signed integer is implemented by
ignoring the high-order byte(s) of the former.
Converting a unsigned integer to a signed integer of the same type is
only done in administration. This means that the bit-pattern remains
unchanged.
.IP -
The result of bitwise operations on signed integers are what can be
expected on a 2-complement machine.
.IP -
If either operand is negative, whether the result of the / operator is the
largest integer less than or equal to the algebraic quotient or the
smallest integer greater than or equal to the algebraic quotient is machine
dependent, as is the sign of the result of the % operator.
.IP -
The right-shift of a negative value is negative.
.NS A.6.3.6
.IP -
The representation of floating-point values is machine-dependent.
When native floating-point is not present an IEEE-emulation is used.
The compiler uses high-precision floating-point for constant folding.
.IP -
Truncation is always to the nearest floating-point number that can
be represented.
.NS A.6.3.7
.IP -
The type returned by the sizeof-operator (also known as size_t)
is 'unsigned int'. This is done for backward compatibility reasons.
.IP -
Casting an integer to a pointer or vice versa has no effect in
bit-pattern when the sizes are equal. Otherwise the value will be
truncated or zero-extended (depending on the direction of the
conversion and the relative sizes).
.IP -
When a pointer is as large as an integer, the type of a 'ptrdiff_t' will
be 'int'. Otherwise the type will be 'long'.
.NS A.6.3.8
.IP -
Since the front end has only limited control over the registers, it can
only make it more likely that variables that are declared as
registers also end up in registers. The only things that can possibly be
put into registers are : 'int', 'long', 'float', 'double', 'long double'
and pointers.
.NS A.6.3.9
.IP -
When a member of a union object is accessed using a member of a
different type, the resulting value will usually be garbage. The
compiler makes no effort to catch these errors.
.IP -
The alignment of types is a compile-time option. The alignment of
a structure-member is the alignment of its type. Usually, the
alignment is passed on to the compiler by the 'ack' program. When a
user wants to do this manually, he/she should be prepared for trouble.
.IP -
A "plain" 'int' bit-field is taken as a 'signed int'. This means that
a field with a size of 1 bit can only store the values 0 and -1.
.IP -
The order of allocation of bit-fields is a compile-time option. By
default, high-order bits are allocated first.
.IP -
An enum has the same size as a "plain" 'int'.
.NS A.6.3.10
.IP -
An access to a volatile declared variable is done by just mentioning
the variable. E.g. the statement "x;" where x is declared volatile,
constitutes an access.
.S A.6.3.11
.IP -
There is no fixed limit on the number of declarators that may modify an
arithmetic, structure or union type, although specifying too many may
cause the compiler to run out of memory.
.NS A.6.3.12
.IP -
The maximum number of cases in a switch-statement is in the order of
1e9, although the compiler may run out of memory somewhat earlier.
.NS A.6.3.13
.IP -
Since both the pre-processor and the compiler assume ASCII-characters,
a single character constant in a conditional-inclusion directive
matches the same value in the execution character set.
.IP -
The pre-processor recognizes -I... command-line options. The
directories thus specified are searched first. After that, depending on the
command that the preprocessor is called with, machine/system-dependant
directories are searched. After that, ~em/include/_tail_ac and
/usr/include are visited.
.IP -
Quoted names are first looked for in the directory in which the file
which does the include resides.
.IP -
The characters in a h- or q- char-sequence are taken to be UNIX
paths.
.IP -
Neither the compiler nor the preprocessor know any pragmas.
.IP -
Since the compiler runs on UNIX, __DATE__ and __TIME__ will always be
defined.
.NS A.6.3.14
.IP -
NULL is defined as ((void *)0). This in order to flag dubious
constructions like "int x = NULL;".
.IP -
The diagnostic printed by 'assert' is as follows:
.ti +4n
"Assertion "<expr>" failed, file "<file>", line <line>",
.br
where <expr> is the argument to the assert macro, printed as string.
(the <file> and <line> should be clear)
.KS
.IP -
The sets for character test macros.
.TS
l l.
name: set:
isalnum() 0-9A-Za-z
isalpha() A-Za-z
iscntrl() \e000-\e037\e177
islower() a-z
isupper() A-Z
isprint() <space>-~ (== \e040-\e176)
.TE
.KE
As an addition, there is an isascii() macro, which tests whether a character
is an ascii character. Characters in the range from \e000 to \e177 are ascii
characters.
.KS
.IP -
The behaviour of mathematic functions on domain error:
.TS
l c
l n.
name: returns:
asin() 0.0
acos() 0.0
atan2() 0.0
fmod() 0.0
log() -HUGE_VAL
log10() -HUGE_VAL
pow() 0.0
sqrt() 0.0
.TE
.KE
.IP -
Underflow range errors do not cause errno to be set.
.IP -
The function fmod() returns 0.0 and sets errno to EDOM when the second
argument is 0.0.
.IP -
The set of signals for the signal() function depends on the UNIX-system
which the compiler is compiling for. The default handling, semantics
and behaviour of these signals are those specified by the operating
system vendor. The default handling is not reset when SIGILL is
received.
.IP -
A text-stream need not end in a new-line character.
.IP -
White space characters before a new-line appear when read in.
.IP -
There may be any number of null characters appended to a binary
stream.
.IP -
The file position indicator of an append mode stream is initially
positioned at the beginning of the file.
.IP -
A write on a text stream does not cause the associated file to be
truncated beyond that point.
.IP -
The buffering intended by the standard is fully supported.
.IP -
A zero-length file actually exists.
.IP -
A file name can consist of any character, except for the '\e0' and
the '/'.
.IP -
A file can be open multiple times.
.IP -
When a remove() is done on an open file, reading and writing behave
just as can be expected from a non-removed file. When the associated
stream is closed, all written data will be lost.
.IP -
When a file exists prior to a call to rename(), the behaviour is that
of the underlying UNIX system. Normally, the call would fail.
.IP -
The %p conversion in fprintf() has the same effect as %#x or %#lx,
depending on the sizes of pointer and integer.
.IP -
The %p conversion in fscanf() has the same effect as %x or %lx,
depending on the sizes of pointer and integer.
.IP -
A - character that is neither the first nor the last character in the
scanlist for %[ conversion is taken to be a range indicator. When the
first character has a higher ASCII-value than the second, the - will
just be put into the scanlist.
.IP -
The value of errno when fgetpos() or ftell() failed is that of lseek().
This means:
.RS
.IP "EBADF \-" 10
when the stream is not valid
.IP "ESPIPE \-"
when fildes is associated with a pipe (and on some systems: sockets)
.IP "EINVAL \-"
the resulting file pointer would be negative
.RE
.LP
.IP -
The messages generated by perror() depend on the value of errno.
The mapping of errors to strings is done by strerror().
.IP -
When the requested size is zero, malloc(), calloc() and realloc()
return a null-pointer.
.IP -
When abort() is called, output buffers will be flushed. Temporary files
(made with the tmpfile() function) will have disappeared when SIGABRT
is not caught or ignored.
.IP -
The exit() function returns the low-order eight bits of its argument
to the environment.
.IP -
The predefined environment names are controlled by the user.
Setting environment variables is done through the putenv() function.
This function accepts a pointer to char as its argument.
To set f.i. the environment variable TERM to a230 one writes
.ti +4n
putenv("TERM=a230");
.br
The argument to putenv() is stored in an internal table, so malloc'ed
strings can not be freed until another call to putenv() (which sets the
same environment variable) is made. The function returns 1 if it fails,
0 otherwise.
.LP
.IP -
The argument to system is passed as argument to /bin/sh -c.
.IP -
The strings returned by strerror() depend on errno in the following
way:
.TS
l l.
errno string
0 "Error 0",
EPERM "Not owner",
ENOENT "No such file or directory",
ESRCH "No such process",
EINTR "Interrupted system call",
EIO "I/O error",
ENXIO "No such device or address",
E2BIG "Arg list too long",
ENOEXEC "Exec format error",
EBADF "Bad file number",
ECHILD "No children",
EAGAIN "No more processes",
ENOMEM "Not enough core",
EACCES "Permission denied",
EFAULT "Bad address",
ENOTBLK "Block device required",
EBUSY "Mount device busy",
EEXIST "File exists",
EXDEV "Cross-device link",
ENODEV "No such device",
ENOTDIR "Not a directory",
EISDIR "Is a directory",
EINVAL "Invalid argument",
ENFILE "File table overflow",
EMFILE "Too many open files",
ENOTTY "Not a typewriter",
ETXTBSY "Text file busy",
EFBUG "File too large",
ENOSPC "No space left on device",
ESPIPE "Illegal seek",
EROFS "Read-only file system",
EMLINK "Too many links",
EPIPE "Broken pipe",
EDOM "Math argument",
ERANGE "Result too large"
.TE
everything else causes strerror() to return "unknown error"
.IP -
The local time zone is per default MET (GMT + 1:00:00). This can be
changed through the TZ environment variable, or by some changes in the
sources.
.IP -
The clock() function returns the number of ticks since process
startup.
.SH
References
.IP [1]
ANS X3.159-1989
.I
American National Standard for Information Systems -
Programming Language C
.R

View File

@@ -1,5 +1,5 @@
.\" $Header$
.TL
.\" $Id$
.TL
.de Sy
.LP
.IP \fBsyntax\fR 10
@@ -13,10 +13,17 @@
The ABC compiler
.AU
Martin L. Kersten
Gert-Jan Akkerman
Marcel Worring
Edo Westerhuis
Frans Kunst
Ronnie Lachniet
.AI
Department of Mathematics and Computer Science.
.br
Vrije Universiteit
Free University
.br
Amsterdam
.AB
This manual describes the
programming language BASIC and its compiler
@@ -28,35 +35,40 @@ INTRODUCTION.
The BASIC-EM compiler is an extensive implementation of the
programming language BASIC.
The language structure and semantics are modelled after the
BASIC interpreter/compiler of Microsoft (tr), a detailed comparison
BASIC interpreter/compiler of Microsoft (tr), a short comparison
is provided in appendix A.
.LP
The compiler generates code for a virtual machine, the EM machine
[[ACM, etc]]
[[ACM, etc]].
Using EM as an intermediate machine results in a highly portable
compiler and BASIC code.
.br
The drawback of EM is that it does not directly reflect one particular
hardware design, which means that many of
the low level operations available within
BASIC are ill-defined or even inapplicable.
hardware design, which means that many of the low level operations available
within BASIC are ill-defined or even inapplicable.
To mention a few, the peek and poke instructions are likely
to be behave errorneous, while line printer and tapedeck
primitives are unknown.
.LP
This manual is divided into three chapters.
The first chapter discusses the general language syntax and semantics.
Chapter two describes the statements available in BASIC-EM.
Chapter 3 describes the predefined functions,
ordered alphabetically.
Appendix A discusses the differences with
Microsoft BASIC. Appendix B describes all reserved symbols.
Appendix C lists the error messages in use.
.br
Chapter 1 discusses the general language syntax and semantics.
.br
Chapter 2 describes the statements available in BASIC-EM.
.br
Chapter 3 describes the predefined functions, ordered alphabetically.
.LP
Appendix A discusses the differences with Microsoft BASIC.
.br
Appendix B describes all reserved symbols.
.LP
.LP
.SH
SYNTAX NOTATION
.LP
The conventions for syntax presentation are as follows:
.IP CAPS 10
Items are reserved words, must be input as shown
Items are reserved words, must be input as shown.
.IP <> 10
Items in lowercase letters enclosed in angular brackets
are to be supplied by the user.
@@ -71,18 +83,19 @@ must be chosen.
Vertical bars separate the choices within braces.
.LP
All punctuation must be included where shown.
.bp
.NH 1
GENERAL INFORMATION
.LP
The BASIC-EM compiler is designed for a UNIX based environment.
It accepts a text file with your BASIC program (suffix .b) and generates
It accepts a text file with a BASIC program (suffix .b) and generates
an executable file, called a.out.
.NH 2
LINE FORMAT
.LP
A BASIC program consists of a series of lines, starting with a
positive line number in the range 0 to 65529.
A line may consists of more then one physical line on your terminal, but must
positive line number in the range 0 to 32767.
A line may consists of more than one physical line on a terminal, but
is limited to 1024 characters.
Multiple BASIC statements may be placed on a single line, provided
they are separated by a colon (:).
@@ -105,19 +118,24 @@ character set enclosed by double quotation marks.
Numeric constants are positive or negative numbers, grouped into
five different classes.
.IP "a) integer constants" 25
.br
Whole numbers in the range of -32768 and 32767. Integer constants do
not contain decimal points.
.IP "b) fixed point constants" 25
.br
Positive or negative real numbers, i.e. numbers with a decimal point.
.IP "c) floating point constants" 25
.br
Real numbers in scientific notation. A floating point constant
consists of an optional signed integer or fixed point number
followed by the letter E (or D) and an optional signed integer
(the exponent).
The allowable range of floating point constants is 10^-38 to 10^+38.
.IP "d) Hex constants" 25
.br
Hexadecimal numbers, denoted by the prefix &H.
.IP "d) Octal constants" 25
.IP "e) Octal constants" 25
.br
Octal numbers, denoted by the prefix &O.
.NH 2
VARIABLES
@@ -128,7 +146,7 @@ Before a variable is assigned its value is assumed to be zero.
.br
Variable names are composed of letters, digits or the decimal point,
starting with a letter. Up to 40 characters are significant.
A variable name be be followed by any of the following type
A variable name can be followed by any of the following type
declaration characters:
.IP % 5
Defines an integer variable
@@ -139,11 +157,7 @@ Defines a double precision variable
.IP $ 5
Defines a string variable.
.LP
NOTE: Two variables with the same name but different type is
considered illegal.
.LP
Beside single valued variables, values may be grouped
into tables or arrays.
Beside single valued variables, values may be grouped into tables or arrays.
Each element in an array is referenced by the array name and an index,
such a variable is called a subscripted variable.
An array has as many subscripts as there are dimensions in the array,
@@ -154,14 +168,25 @@ function.
.br
A variable name may not be a reserved word nor the name
of a predefined function.
A list of all reserved identifiers is included as Appendix ?.
A list of all reserved identifiers is included as Appendix B.
.LP
NOTES:
.br
Two variables with the same name but different type is
considered illegal.
.br
The type of a variable without typedeclaration-character is set,
at it's first occurence in the program,
to the defaulttype which is (in this implementation) double precision.
.br
Multi-dimensional array's must be declared before use (see
DIM-statement ).
.br
BASIC-EM differs from Microsoft BASIC in supporting floats in one precision
only (due to EM), eg doubles and floats have the same precision.
.NH 2
EXPRESSIONS
.LP
BASIC-EM differs from Microsoft BASIC in supporting floats in one precision
only (due to EM).
All floating point constants have the same precision, i.e. 16 digits.
.LP
When necessary the compiler will convert a numeric value from
one type to another.
A value is always converted to the precision of the variable it is assigned
@@ -179,9 +204,9 @@ Arithmetic
.LP
The arithmetic operators in order of precedence,a re:
.DS L
\^ Exponentiation
^ Exponentiation
- Negation
*,/,\\,MOD Multiplication, Division, Remainder
*,/,\\\\\\\\,MOD Multiplication, Division, Remainder
+,- Addition, Substraction
.DE
The operator \\\\ denotes integer division, its operands are rounded to
@@ -189,7 +214,7 @@ integers before the operator is applied.
Modulus arithmetic is denoted by the operator MOD, which yields the
integer value that is the remainder of an integer division.
.br
The order in which operators are performed can be changec with parentheses.
The order in which operators are performed can be changed with parentheses.
.SH
Relational
.LP
@@ -210,7 +235,7 @@ then the arithmetic operators.
Logical
.LP
The logical operators performs tests on multiple relations, bit manipulations,
or Boolean operations.
or boolean operations.
The logical operators returns a bitwise result ("true" or "false").
In an expression, logical operators are performed after the relational and
arithmetic operators.
@@ -241,6 +266,7 @@ ERROR MESSAGES
.LP
The occurence of an error results in termination of the program
unless an ON....ERROR statement has been encountered.
.bp
.NH 1
B-EM STATEMENTS
.LP
@@ -266,7 +292,7 @@ The argument list consist of (subscripted) variables.
The BASIC compiler pushes the address of the arguments on the stack in order
of encounter.
.RM
Not yet available
Not yet available.
.NH 2
CLOSE
.Sy
@@ -274,7 +300,7 @@ CLOSE [[#]<file number>[,[#]<file number...>]]
.PU
To terminate I/O on a disk file.
<file number> is the number associated with the file
when it was OPENed (See OPEN). Ommission of parameters results in closing
when it was OPENed (See OPEN-statement). Ommission of parameters results in closing
all files.
.sp
The END statement and STOP statement always issue a CLOSE of
@@ -334,14 +360,15 @@ DIM <list of subscripted variable>
.PU
The DIM statement allocates storage for subscripted variables.
If an undefined subscripted variable is used
the maximum value of the array subscript(s) is assumed to be 10.
A subscript out of range is signalled by the program (when RCK works)
the maximum value of the array subscript is assumed to be 10.
A subscript out of range is signalled by the program (when ACK works)
The minimum subscript value is 0, unless the OPTION BASE statement has been
encountered.
.sp
All variables in a subscripted variable are initially zero.
.sp
BUG. Multi-dimensional arrays MUST be defined.
BUGS. Multi-dimensional arrays MUST be defined. Subscript out of range is
left unnotified.
.NH 2
END
.Sy
@@ -351,6 +378,10 @@ END terminates a BASIC program and returns to the UNIX shell.
An END statement at the end of the BASIC program is optional.
.NH 2
ERR and ERL
.Sy
<identifier name>= ERR
.br
<identifier name>= ERL
.PU
Whenever an error occurs the variable ERR contains the
error number and ERL the BASIC line where the error occurred.
@@ -362,10 +393,9 @@ ERROR
ERROR <integer expression>
.PU
To simulate the occurrence of a BASIC error.
To define your own error code use a value not already in
To define a private error code a value must be used that is not already in
use by the BASIC runtime system.
The list of error messages currently in use
can be found in appendix B.
The list of error messages currently in use can be found in appendix B.
.NH 2
FIELD
.PU
@@ -383,18 +413,15 @@ The FOR statements allows a series of statements to be performed
repeatedly. <variable> is used as a counter. During the first
execution pass it is assigned the value <low>,
an arithmetic expression. After each pass the counter
is incremented with the step size <size>, an expression.
is incremented (decremented) with the step size <size>, an expression.
Ommission of the step size is intepreted as an increment of 1.
.br
Execution of the program lines specified between the FOR and the NEXT
statement is terminated as soon as <low> is greater than <high>
statement is terminated as soon as <low> is greater (less) than <high>
.sp
The NEXT statement is labeled with the name(s) of the counter to be
incremented.
.sp
The body of the FOR statement is skipped when the initial value of the
loop times the sign of the step exceeds the value of the highest value
times the sign of the step.
.sp
The variables mentioned in the NEXT statement may be ommitted, in which case
the variable of increment the counter of the most recent FOR statement.
If a NEXT statement is encountered before its corresponding FOR statement,
@@ -408,7 +435,7 @@ To be implemented.
.NH 2
GOSUB...RETURN
.Sy
GOSUB <line number
GOSUB <line number>
...
.br
RETURN
@@ -512,7 +539,7 @@ LET
[LET]<variable>=<expression>
.PU
To assign the value of an expression to a (subscribted) variable.
The type convertions as dictated in section 1.X apply.
The type convertions as dictated in chapter 1 apply.
.NH 2
LINE INPUT
.Sy
@@ -558,18 +585,30 @@ Subsequent errors result in an error message and program termination.
ON...GOSUB and ON ...GOTO
.Sy
ON <expression> GOSUB <list of line numbers>
.br
ON <expression> GOTO <list of line numbers>
.PU
To branch to one of several specified line numbers or subroutines, based
on the result of the <expression>. The list of line numbers are considered
the first, second, etc alternative. Branching to the first occurs when
the expression evaluates to one, to the second alternative on two, etc.
If the value of the expression in zero or greater than the number of alternatives, processing continues at the first statement following the ON..GOTO
If the value of the expression is zero or greater than the number of alternatives, processing continues at the first statement following the ON..GOTO
(ON GOSUB) statement.
.sp
When the expression results in a negative number the
an "Illegal function call" error occurs.
.sp
BUG If the value of the expression is zero or greater than the number of
alternatives, processing does NOT continue at the first statement
following the ON..GOTO (ON GOSUB) statement.
.NH 2
OPEN
.Sy
OPEN {"i" | "o" | "r" } , [#]<file number> , <file-name>
.PU
To open <file-name> (filename should be quoted) for input/reading or output.
If file is not opened for output it has to be existent, otherwise an
"file not found" error will occur.
.NH 2
OPTION BASE
.Sy
@@ -587,7 +626,21 @@ because it requires full understanding of both
the implementation of the Amsterdam
Compiler Kit and the hardware characteristics.
.NH 2
PRINT [USING]
PRINT
.Sy
PRINT <list of variables and/or constants>
.PU
To print constants or the contents of variables on the terminal-device.
If the variables or constants are seperated by comma's the values will
be printed seperated by tabs.
If the variables or constants are seperated by semi-colon's the values
will be printed without spaces in between.
The new-line generated at the end of the print-statement can be suppressed by
a semi-colon at the end of list of variables or constants.
.NH 2
PRINT USING
.PU
To be implemented
.NH 2
PUT
.PU
@@ -608,7 +661,8 @@ READ <list of variables>
.PU
To read values from the DATA statements and assign them to variables.
The type of the variables should match to the type of the items being read,
otherwise a "Syntax error" occurs.
otherwise a "Syntax error" occurs. If all data is read the message "Out of
data" will be displayed.
.NH 2
REM
.Sy
@@ -651,6 +705,8 @@ SWAP
SWAP <variable>,<variable>
.PU
To exchange the values of two variables.
.sp
BUG. Strings cannot be swapped !
.NH 2
TRON/TROFF
.Sy
@@ -684,118 +740,121 @@ WRITE #<file number> ,<list of expressions>
.PU
To write a sequential data file, being opened with the "O" mode.
The values are being writting using the DATA statements layout conventions.
.bp
.NH
FUNCTIONS
.LP
.IP ABS(X) 12
.IP ABS(X) 25
Returns the absolute value of expression X
.IP ASC(X$) 12
.IP ASC(X$) 25
Returns the numeric value of the first character of the string.
If X$ is not initialized an "Illegal function call" error
is returned.
.IP ATN(X) 12
.IP ATN(X) 25
Returns the arctangent of X in radians. Result is in the range
of -pi/2 to pi/2.
.IP CDBL(X) 12
.IP CDBL(X) 25
Converts X to a double precision number.
.IP CHR$(X) 12
.IP CHR$(X) 25
Converts the integer value X to its ASCII character.
X must be in the range of 0 to 127.
X must be in the range of 0 to 257.
It is used for cursor addressing and generating bel signals.
.IP CINT(X) 12
.IP CINT(X) 25
Converts X to an integer by rounding the fractional portion.
If X is not in the range -32768 to 32767 an "Overflow"
error occurs.
.IP COS(X) 12
.IP COS(X) 25
Returns the cosine of X in radians.
.IP CSNG(X) 12
Converts X to a double precision number.
.IP CVI(<2-bytes>) 12
.IP CSNG(X) 25
Converts X to a single precision number.
.IP CVI(<2-bytes>) 25
Convert two byte string value to integer number.
.IP CVS(<4-bytes>) 12
.IP CVS(<4-bytes>) 25
Convert four byte string value to single precision number.
.IP CVD(<8-bytes>) 12
.IP CVD(<8-bytes>) 25
Convert eight byte string value to double precision number.
.IP EOF[(<file-number>)] 12
.IP EOF[(<file-number>)] 25
Returns -1 (true) if the end of a sequential file has been reached.
.IP EXP(X) 12
.IP EXP(X) 25
Returns e(base of natural logarithm) to the power of X.
X should be less then 10000.0.
.IP FIX(X) 12
.IP FIX(X) 25
Returns the truncated integer part of X. FIX(X) is
equivalent to SGN(X)*INT(ABS(X)).
The major difference between FIX and INT is that FIX does not
return the next lower number for negative X.
.IP HEX$(X) 12
.IP HEX$(X) 25
Returns the string which represents the hexadecimal value of
the decimal argument. X is rounded to an integer using CINT
before HEX$ is evaluated.
.IP INT(X) 12
.IP INT(X) 25
Returns the largest integer <= X.
.IP INPUT$(X[,[#]Y]) 12
.IP INP$(X[,[#]Y]) 25
Returns the string of X characters read from the terminal or
the designated file.
.IP LEX(X$) 12
.IP LEN(X$) 25
Returns the number of characters in the string X$.
Non printable and blancs are counted too.
.IP LOC(<file\ number>) 12
.IP LOC(<file\ number>) 25
For sequential files LOC returns
position of the read/write head, counted in number of bytes.
For random files the function returns the record number just
read or written from a GET or PUT statement.
If nothing was read or written 0 is returned.
.IP LOG(X) 12
.IP LOG(X) 25
Returns the natural logarithm of X. X must be greater than zero.
.IP MID$(X,I,[J]) 12
To be implemented.
.IP MKI$(X) 12
.IP MID$(X,I,[J]) 25
Returns first J characters from string X starting at position I in X.
If J is omitted all characters starting of from position I in X are returned.
.IP MKI$(X) 25
Converts an integer expression to a two-byte string.
.IP MKS$(X) 12
.IP MKS$(X) 25
Converts a single precision expression to a four-byte string.
.IP MKD$(X) 12
.IP MKD$(X) 25
Converts a double precision expression to a eight-byte string.
.IP OCT$(X) 12
.IP OCT$(X) 25
Returns the string which represents the octal value of the decimal
argument. X is rounded to an integer using CINT before OCTS is evaluated.
.IP PEEK(I) 12
.IP PEEK(I) 25
Returns the byte read from the indicated memory. (Of limited use
in the context of ACK)
.IP POS(I) 12
.IP POS(I) 25
Returns the current cursor position. To be implemented.
.IP RIGHT$(X$,I)
Returns the right most I characters of string X$.
If I=0 then the empty string is returned.
.IP RND(X) 12
.IP RND(X) 25
Returns a random number between 0 and 1. X is a dummy argument.
.IP SGN(X) 12
.IP SGN(X) 25
If X>0 , SGN(X) returns 1.
.br
if X=0, SGN(X) returns 0.
.br
if X<0, SGN(X) returns -1.
.IP SIN(X) 12
.IP SIN(X) 25
Returns the sine of X in radians.
.IP SPACE$(X) 12
.IP SPACE$(X) 25
Returns a string of spaces length X. The expression
X is rounded to an integer using CINT.
.IP STR$(X)
Returns the string representation value of X.
.IP STRING$(I,J) 12
.IP STRING$(I,J) 25
Returns thes string of length Iwhose characters all
have ASCII code J. (or first character when J is a string)
.IP TAB(I) 12
.IP TAB(I) 25
Spaces to position I on the terminal. If the current
print position is already beyond space I,TAB
goes to that position on the next line.
Space 1 is leftmost position, and the rightmost position
is width minus 1. To be used within PRINT statements only.
.IP TAN(X) 12
.IP TAN(X) 25
Returns the tangent of X in radians. If TAN overflows
the "Overflow" message is displayed.
.IP VAL(X$) 12
.IP VAL(X$) 25
Returns the numerical value of string X$.
The VAL function strips leading blanks and tabs from the
argument string.
.bp
.SH
APPENDIX A DIFFERENCES WITH MICROSOFT BASIC
.LP
@@ -847,3 +906,44 @@ LSET
RSET
PUT
.DE
.bp
.SH
APPENDIX B RESERVED WORDS IN BASIC-EM
.LP
The following list of words/symbols/names/identifiers are reserved, which
means that they can not be used for variable-names.
.DS
ABS AND ASC AS
ATN AUTO BASE CALL
CDBL CHAIN CHR CINT
CLEAR CLOAD CLOSE COMMON
CONT COS CSNG CSAVE
CVI CVS CVD DATA
DEFINT DEFSNG DEFDBL DEFSTR
DEF DELETE DIM EDIT
ELSE END EOF ERASE
ERROR ERR ERL ELSE
EQV EXP FIELD FIX
FOR FRE GET GOSUB
GOTO HEX IF IMP
INKEY INPUT INP INSTR
INT KILL LEFT LEN
LET LINE LIST LLIST
LOAD LOC LOG LPOS
LPRINT LSET MERGE MID
MKI MKS MKD MOD
NAME NEW NEXT NOT
NULL ON OCT OPEN
OPTION OR OUT PEEK
POKE PRINT POS PUT
RANDOMIZE READ REM RENUM
REN RESTORE RESUME RETURN
RIGHT RND RUN SAVE
STEP SGN SIN SPACE
SPC SQR STOP STRING
STR SWAP TAB TAN
THEN TO TRON TROFF
USING USR VAL VARPTR
WAIT WHILE WEND WIDTH
WRITE XOR
.DE

3
doc/ceg/.distr Normal file
View File

@@ -0,0 +1,3 @@
proto.make
ceg.ref
ceg.tr

42
doc/ceg/ceg.ref Normal file
View File

@@ -0,0 +1,42 @@
%T A Practical Toolkit For Making Compilers
%A A.S. Tanenbaum
%A H. v. Staveren
%A E.G. Keizer
%A J.W. Stevenson
%J Communications of the ACM
%V 26
%N 9
%D September 1983
%T Description of a Machine Architecture for Use with Block Structured Languages
%A A.S. Tanenbuum
%A H. v. Staveren
%A E.G. Keizer
%A J.W. Stevenson
%R IR-81
%I Dept. Mathematics and Computer Science, Vrije Universiteit
%C Amsterdam
%D August 1983
%T EM_CODE(3ACK)
%A ACK Documentation
%I Dept. Mathematics and Computer Science, Vrije Universiteit
%C Amsterdam
%T ACK.OUT(5ACK)
%A ACK Documentation
%I Dept. Mathematics and Computer Science, Vrije Universiteit
%C Amsterdam
%K aout
%T PRINT(3ACK)
%A ACK Documentation
%I Dept. Mathematics and Computer Science, Vrije Universiteit
%C Amsterdam
%T The C Programming Language
%A B.W. Kernighan
%A D.M. Ritchie
%I Prentice-Hall Inc.
%C Englewood Cliffs, New Jersey
%D 1978

1587
doc/ceg/ceg.tr Normal file

File diff suppressed because it is too large Load Diff

12
doc/ceg/proto.make Normal file
View File

@@ -0,0 +1,12 @@
# $Id$
#PARAMS do not remove this line!
SRC_DIR = $(SRC_HOME)/doc/ceg
PIC=pic
TBL=tbl
REFER=refer
$(TARGET_HOME)/doc/ceg.doc: $(SRC_DIR)/ceg.tr $(SRC_DIR)/ceg.ref
$(PIC) $(SRC_DIR)/ceg.tr | $(REFER) -e -p $(SRC_DIR)/ceg.ref | $(TBL) > $@

View File

@@ -1,4 +1,4 @@
.\" $Header$
.\" $Id$
.RP
.ND Nov 1984
.TL
@@ -374,12 +374,12 @@ It is undefined when the instruction has no operand.
.br
Although an exhaustive list could be given describing all the types
the following rule of thumb will suffice.
If you cannot imagine the operand of the instruction ever to be
If it is unimaginable for the operand of the instruction ever to be
something different from a plain integer, the type is integer,
otherwise it is string.
.br
.I Cg
makes all necessary conversions for you,
makes all necessary conversions,
like adding EM_BSIZE to positive arguments of instructions
dealing with locals,
prepending underlines to global names,
@@ -776,8 +776,8 @@ Items are pushed in the order of appearance.
This means that the last item will be on the top of the
stack after the push.
So if the stack pattern contained two token expressions
and you want to push them back unchanged,
you have to specify as stack replacement
and they must be pushed back unchanged,
they have to be specified as stack replacement
.DS
%[2] %[1]
.DE
@@ -878,7 +878,7 @@ and shows how to place erase() and setcc() calls.
"sxt %[a.even]" | { PAIRSIGNED, %[a.1], %[a.2] }| |
.DE
This coercion shows how to use the move and test calls.
At first you might think that the testcall is unnecessary,
At first one might think that the testcall is unnecessary,
since the move will have set the condition codes,
but the move may never have been executed
if the register already contained the value,
@@ -1155,8 +1155,8 @@ from the string of size w_size and generate code to assemble global
data for that integer.
Only the sizes for which arithmetic is implemented need be
handled,
so if you didn't implement 200-byte integer division
you don't have to implement 200-byte integer global data.
so if 200-byte integer division is not implemented,
200-byte integer global data do not have to be implemented.
Here one must take care of word order in long integers.
.IP con_float()
This function must generate code to assemble a floating
@@ -1170,7 +1170,8 @@ and room made for local variables for a total of f_nlocals bytes.
This function is called when a
.B mes
pseudo is seen that is not handled by the machine independent part.
Example below shows all you probably have to know about that.
The example below probably shows all the table writer ever has to know
about that.
.IP segname[]
This is not a function,
but an array of four strings.

View File

@@ -1,3 +1,5 @@
\." $Id$
.\" eqn crefman.doc | troff -ms
.EQ
delim $$
.EN
@@ -32,42 +34,42 @@ programs.
.SH
2.3 Keywords
.SH
\f5asm\fP
\f(CWasm\fP
.PP
The keyword \f5asm\fP
The keyword \f(CWasm\fP
is recognized.
However, the statement
.DS
.ft 5
.ft CW
asm(string);
.ft R
.DE
is skipped, while a warning is given.
.SH
\f5enum\fP
\f(CWenum\fP
.PP
The \f5enum\fP keyword is recognized and interpreted.
The \f(CWenum\fP keyword is recognized and interpreted.
.SH
\f5entry\fP, \f5fortran\fP
\f(CWentry\fP, \f(CWfortran\fP
.PP
The words \f5entry\fP and \f5fortran\fP
The words \f(CWentry\fP and \f(CWfortran\fP
are reserved under the restricted option.
The words are not interpreted by the compiler.
.SH
2.4.1 Integer Constants
.PP
An octal or hex constant which is less than or equal to the largest unsigned
(target) machine integer is taken to be \f5unsigned\fP.
An octal or hex constant which exceeds the largest unsigned (target) machine
integer is taken to be \f5long\fP.
The type of an integer constant is the first of the corresponding list
in which its value can be represented. Decimal: \f(CWint, long, unsigned long\fP;
octal or hexadecimal: \f(CWint, unsigned, long, unsigned long\fP; suffixed by
the letter L or l: \f(CWlong, unsigned long\fP.
.SH
2.4.3 Character Constants
.PP
A character constant is a sequence of 1 up to \f5sizeof(int)\fP characters
A character constant is a sequence of 1 up to \f(CWsizeof(int)\fP characters
enclosed in single quotes.
The value of a character constant '$c sub 1 c sub 2 ... c sub n$'
is $d sub n + M \(mu d sub {n - 1} + ... + M sup {n - 1} \(mu d sub 2 + M sup n \(mu d sub 1$,
where M is 1 + maximum unsigned number representable in an \f5unsigned char\fP,
where M is 1 + maximum unsigned number representable in an \f(CWunsigned char\fP,
and $d sub i$ is the signed value (ASCII)
of character $c sub i$.
.SH
@@ -80,46 +82,46 @@ The compiler does not support compile-time floating point arithmetic.
The compiler is capable of producing EM code for machines with the following
properties
.IP \(bu
a \f5char\fP is 8 bits
a \f(CWchar\fP is 8 bits
.IP \(bu
the size of \f5int\fP is equal to the word size
the size of \f(CWint\fP is equal to the word size
.IP \(bu
the size of \f5short\fP may not exceed the size of \f5int\fP
the size of \f(CWshort\fP may not exceed the size of \f(CWint\fP
.IP \(bu
the size of \f5int\fP may not exceed the size of \f5long\fP
the size of \f(CWint\fP may not exceed the size of \f(CWlong\fP
.IP \(bu
the size of pointers is equal to the size of either \f5short\fP, \f5int\fP
or \f5long\fP
the size of pointers is equal to the size of either \f(CWshort\fP, \f(CWint\fP
or \f(CWlong\fP
.LP
.SH
4 What's in a name?
.SH
\f5char\fP
\f(CWchar\fP
.PP
Objects of type \f5char\fP are taken to be signed.
The combination \f5unsigned char\fP is legal.
Objects of type \f(CWchar\fP are taken to be signed.
The combination \f(CWunsigned char\fP is legal.
.SH
\f5unsigned\fP
\f(CWunsigned\fP
.PP
The type combinations \f5unsigned char\fP, \f5unsigned short\fP and
\f5unsigned long\fP are supported.
The type combinations \f(CWunsigned char\fP, \f(CWunsigned short\fP and
\f(CWunsigned long\fP are supported.
.SH
\f5enum\fP
\f(CWenum\fP
.PP
The data type \f5enum\fP is implemented as described
The data type \f(CWenum\fP is implemented as described
in \fIRecent Changes to C\fP (see appendix A).
.I Cem
treats enumeration variables as if they were \f5int\fP.
treats enumeration variables as if they were \f(CWint\fP.
.SH
\f5void\fP
\f(CWvoid\fP
.PP
Type \f5void\fP is implemented.
Type \f(CWvoid\fP is implemented.
The type specifies an empty set of values, which takes no storage space.
.SH
\fRFundamental types\fP
.PP
The names of the fundamental types can be redefined by the user, using
\f5typedef\fP.
\f(CWtypedef\fP.
.SH
7 Expressions
.PP
@@ -131,7 +133,7 @@ Parameter lists are evaluated from right to left.
.SH
7.2 Unary operators
.PP
The type of a \f5sizeof\fP expression is \f5unsigned int\fP.
The type of a \f(CWsizeof\fP expression is \f(CWunsigned int\fP.
.SH
7.13 Conditional operator
.PP
@@ -147,8 +149,8 @@ The types of operands taking part must be the same.
.SH
8.2 Type specifiers
.PP
The combinations \f5unsigned char\fP, \f5unsigned short\fP
and \f5unsigned long\fP are implemented.
The combinations \f(CWunsigned char\fP, \f(CWunsigned short\fP
and \f(CWunsigned long\fP are implemented.
.SH
8.5 Structure and union declarations
.PP
@@ -157,7 +159,7 @@ are supported, as long as the type fits in a word on the target machine.
.PP
Fields are left adjusted by default; the first field is put into the left
part of a word, the next one on the right side of the first one, etc.
The \f5-Vr\fP option in the call of the compiler
The \f(CW-Vr\fP option in the call of the compiler
causes fields to be right adjusted within a machine word.
.PP
The tags of structs and unions occupy a different name space from that of
@@ -167,12 +169,12 @@ variables and that of member names.
.PP
The type of \fIexpression\fP in
.DS
.ft 5
\f5switch (\fP\fIexpression\fP\f5)\fP \fIstatement\fP
.ft CW
\f(CWswitch (\fP\fIexpression\fP\f(CW)\fP \fIstatement\fP
.ft
.DE
must be integral.
A warning is given under the restricted option if the type is \f5long\fP.
A warning is given under the restricted option if the type is \f(CWlong\fP.
.SH
10 External definitions
.PP
@@ -190,21 +192,21 @@ in \(sc11.1 is walked correctly.
.SH
12 Compiler control lines
.PP
Lines which do not occur within comment, and with \f5#\fP as first
Lines which do not occur within comment, and with \f(CW#\fP as first
character, are interpreted as compiler control line.
There may be an arbitrary number of spaces, tabs and comments (collectively
referred as \fIwhite space\fP) following the \f5#\fP.
referred as \fIwhite space\fP) following the \f(CW#\fP.
Comments may contain newline characters.
Control lines with only white space between the \f5#\fP and the line separator
Control lines with only white space between the \f(CW#\fP and the line separator
are skipped.
.PP
The #\f5include\fP, #\f5ifdef\fP, #\f5ifndef\fP, #\f5undef\fP, #\f5else\fP and
#\f5endif\fP control lines and line directives consist of a fixed number of
The #\f(CWinclude\fP, #\f(CWifdef\fP, #\f(CWifndef\fP, #\f(CWundef\fP, #\f(CWelse\fP and
#\f(CWendif\fP control lines and line directives consist of a fixed number of
arguments.
The list of arguments may be followed an arbitrary sequence of characters,
in which comment is interpreted as such.
(I.e., the text between \f5/*\fP and \f5*/\fP is skipped, regardless of
newlines; note that commented-out lines beginning with \f5#\fP are not
(I.e., the text between \f(CW/*\fP and \f(CW*/\fP is skipped, regardless of
newlines; note that commented-out lines beginning with \f(CW#\fP are not
considered to be control lines.)
.SH
12.1 Token replacement
@@ -216,10 +218,10 @@ Comments and newline characters, preceeded by a backslash, in the replacement
text are replaced by a space character.
.PP
The actual parameters of a macro are considered tokens and are
balanced with regard to \f5()\fP, \f5{}\fP and \f5[]\fP.
balanced with regard to \f(CW()\fP, \f(CW{}\fP and \f(CW[]\fP.
This prevents the use of macros like
.DS
.ft 5
.ft CW
CTL([)
.ft
.DE
@@ -228,22 +230,22 @@ Formal parameters of a macro must have unique names within the formal-parameter
list of that macro.
.PP
A message is given at the definition of a macro if the macro has
already been #\f5defined\fP, while the number of formal parameters differ or
already been #\f(CWdefined\fP, while the number of formal parameters differ or
the replacement texts are not equal (apart from leading and trailing
white space).
.PP
Recursive use of macros is detected by the compiler.
.PP
Standard #\f5defined\fP macros are
Standard #\f(CWdefined\fP macros are
.DS
\f5__FILE__\fP name of current input file as string constant
\f5__DATE__\fP curent date as string constant; e.g. \f5"Tue Wed 2 14:45:23 1986"\fP
\f5__LINE__\fP current line number as an integer
\f(CW__FILE__\fP name of current input file as string constant
\f(CW__DATE__\fP curent date as string constant; e.g. \f(CW"Tue Wed 2 14:45:23 1986"\fP
\f(CW__LINE__\fP current line number as an integer
.DE
.PP
No message is given if \fIidentifier\fP is not known in
.DS
.ft 5
.ft CW
#undef \fIidentifier\fP
.ft
.DE
@@ -254,18 +256,18 @@ A newline character is appended to each file which is included.
.SH
12.3 Conditional compilation
.PP
The #\f5if\fP, #\f5ifdef\fP and #\f5ifndef\fP control lines may be followed
The #\f(CWif\fP, #\f(CWifdef\fP and #\f(CWifndef\fP control lines may be followed
by an arbitrary number of
.DS
.ft 5
.ft CW
#elif \fIconstant-expression\fP
.ft
.DE
control lines, before the corresponding #\f5else\fP or #\f5endif\fP
control lines, before the corresponding #\f(CWelse\fP or #\f(CWendif\fP
is encountered.
The construct
.DS
.ft 5
.ft CW
#elif \fIconstant-expression\fP
some text
#endif /* corresponding to #elif */
@@ -273,7 +275,7 @@ some text
.DE
is equivalent to
.DS
.ft 5
.ft CW
#else
#if \fIconstant-expression\fP
some text
@@ -282,15 +284,15 @@ some text
.ft
.DE
.PP
The \fIconstant-expression\fP in #\f5if\fP and #\f5elif\fP control lines
The \fIconstant-expression\fP in #\f(CWif\fP and #\f(CWelif\fP control lines
may contain the construction
.DS
.ft 5
.ft CW
defined(\fIidentifier\fP)
.ft
.DE
which is replaced by \f51\fP, if \fIidentifier\fP has been #\f5defined\fP,
and by \f50\fP, if not.
which is replaced by \f(CW1\fP, if \fIidentifier\fP has been #\f(CWdefined\fP,
and by \f(CW0\fP, if not.
.PP
Comments in skipped lines are interpreted as such.
.SH
@@ -298,7 +300,7 @@ Comments in skipped lines are interpreted as such.
.PP
Line directives may occur in the following forms:
.DS
.ft 5
.ft CW
#line \fIconstant\fP
#line \fIconstant\fP "\fIfilename\fP"
#\fIconstant\fP
@@ -326,7 +328,7 @@ global variable initialization value
.IP \(bu
enum-value specifier
.IP \(bu
truth value in \f5#if\fP control line
truth value in \f(CW#if\fP control line
.LP
.PP
Constant integral expressions are compile-time evaluated while an effort
@@ -354,12 +356,12 @@ Prepend \fIpath\fR to the list of include directories.
To put the directories "include", "sys/h" and "util/h" into the
include directory list in that order, the user has to specify
.DS
.ft 5
.ft CW
-Iinclude -Isys/h -Iutil/h
.ft R
.DE
An empty \fIpath\fP causes the standard include
directory (usually \f5/usr/include\fP) to be forgotten.
directory (usually \f(CW/usr/include\fP) to be forgotten.
.IP \fB\-M\fP\fIn\fP
.br
Set maximum significant identifier length to \fIn\fP.
@@ -383,7 +385,7 @@ Create temporary files, if necessary, in directory \fIpath\fP.
Get rid of the compiler-predefined macro \fIname\fP, i.e.,
consider
.DS
.ft 5
.ft CW
#undef \fIname\fP
.ft R
.DE
@@ -416,7 +418,7 @@ Some particular flags may be recognized, others may have surprising effects.
Generate a dependency graph, reflecting the calling structure of functions.
Lines of the form
.DS
.ft 5
.ft CW
DFA: \fIcalling-function\fP: \fIcalled-function\fP
.ft
.DE
@@ -474,11 +476,11 @@ The syntax is
.RS
.I enum-specifier :
.RS
\&\f5enum\fP { \fIenum-list\fP }
\&\f(CWenum\fP { \fIenum-list\fP }
.br
\&\f5enum\fP \fIidentifier\fP { \fIenum-list\fP }
\&\f(CWenum\fP \fIidentifier\fP { \fIenum-list\fP }
.br
\&\f5enum\fP \fIidentifier\fP
\&\f(CWenum\fP \fIidentifier\fP
.RE
.sp
\&\fIenum-list\fP :

View File

@@ -1,4 +1,4 @@
Makefile
proto.make
bo
ca
cf

View File

@@ -1,52 +0,0 @@
REFS=-p refs.opt -p refs.stat -p refs.gen
INTRO=intro/intro?
OV=ov/ov?
IC=ic/ic?
CF=cf/cf?
IL=il/il?
SR=sr/sr?
CS=cs/cs?
SP=sp/sp?
UD=ud/ud?
LV=lv/lv?
CJ=cj/cj?
BO=bo/bo?
RA=ra/ra?
CA=ca/ca?
EGO=$(INTRO) $(OV) $(IC) $(CF) $(IL) $(SR) $(CS) $(SP) $(CJ) $(BO) \
$(UD) $(LV) $(RA) $(CA)
REFER=refer
../ego.doc: $(EGO)
$(REFER) -sA+T -l4,2 $(REFS) intro/head $(EGO) intro/tail > ../ego.doc
ego.f: $(EGO)
$(REFER) -sA+T -l4,2 $(REFS) intro/head $(EGO) intro/tail | nroff -ms > ego.f
intro.f: $(INTRO)
$(REFER) -sA+T -l4,2 $(REFS) ov/head $(INTRO) intro/tail | nroff -ms > intro.f
ov.f: $(OV)
$(REFER) -sA+T -l4,2 $(REFS) ov/head $(OV) intro/tail | nroff -ms > ov.f
ic.f: $(IC)
$(REFER) -sA+T -l4,2 $(REFS) ic/head $(IC) intro/tail | nroff -ms > ic.f
cf.f: $(CF)
$(REFER) -sA+T -l4,2 $(REFS) cf/head $(CF) intro/tail | nroff -ms > cf.f
il.f: $(IL)
$(REFER) -sA+T -l4,2 $(REFS) il/head $(IL) intro/tail | nroff -ms > il.f
sr.f: $(SR)
$(REFER) -sA+T -l4,2 $(REFS) sr/head $(SR) intro/tail | nroff -ms > sr.f
cs.f: $(CS)
$(REFER) -sA+T -l4,2 $(REFS) cs/head $(CS) intro/tail | nroff -ms > cs.f
sp.f: $(SP)
$(REFER) -sA+T -l4,2 $(REFS) sp/head $(SP) intro/tail | nroff -ms > sp.f
cj.f: $(CJ)
$(REFER) -sA+T -l4,2 $(REFS) cj/head $(CJ) intro/tail | nroff -ms > cj.f
bo.f: $(BO)
$(REFER) -sA+T -l4,2 $(REFS) bo/head $(BO) intro/tail | nroff -ms > bo.f
ud.f: $(UD)
$(REFER) -sA+T -l4,2 $(REFS) ud/head $(UD) intro/tail | nroff -ms > ud.f
lv.f: $(LV)
$(REFER) -sA+T -l4,2 $(REFS) lv/head $(LV) intro/tail | nroff -ms > lv.f
ra.f: $(RA)
$(REFER) -sA+T -l4,2 $(REFS) ra/head $(RA) intro/tail | nroff -ms > ra.f
ca.f: $(CA)
$(REFER) -sA+T -l4,2 $(REFS) ca/head $(CA) intro/tail | nroff -ms > ca.f

View File

@@ -27,20 +27,23 @@ While-loop optimization
The straightforward way to translate a while loop is to
put the test for loop termination at the beginning of the loop.
.DS
while cond loop LAB1: Test cond
body of the loop ---> Branch On False To LAB2
end loop code for body of loop
Branch To LAB1
LAB2:
while cond loop \kyLAB1: \kxTest cond
body of the loop --->\h'|\nxu'Branch On False To LAB2
end loop\h'|\nxu'code for body of loop
\h'|\nxu'Branch To LAB1
\h'|\nyu'LAB2:
Fig. 10.1 Example of Branch Optimization
.DE
If the condition fails at the Nth iteration, the following code
gets executed (dynamically):
.DS
N * conditional branch (which fails N-1 times)
N-1 * unconditional branch
N-1 * body of the loop
.TS
l l l.
N * conditional branch (which fails N-1 times)
N-1 * unconditional branch
N-1 * body of the loop
.TE
.DE
An alternative translation is:
.DS
@@ -53,9 +56,12 @@ LAB2:
.DE
This translation results in the following profile:
.DS
N * conditional branch (which succeeds N-1 times)
1 * unconditional branch
N-1 * body of the loop
.TS
l l l.
N * conditional branch (which succeeds N-1 times)
1 * unconditional branch
N-1 * body of the loop
.TE
.DE
So the second translation will be significantly faster if N >> 2.
If N=2, execution time will be slightly increased.
@@ -79,12 +85,15 @@ the basic block that comes textually next to S must stay
in that position.
So the transformation in Fig. 10.2 is illegal.
.DS
LAB1: S1 LAB1: S1
BRA LAB2 S2
... --> BEQ LAB3
LAB2: S2 ...
BEQ LAB3 S3
S3
.TS
l l l l l.
LAB1: S1 LAB1: S1
BRA LAB2 S2
... --> BEQ LAB3
LAB2: S2 ...
BEQ LAB3 S3
S3
.TE
Fig. 10.2 An illegal transformation of Branch Optimization
.DE
@@ -118,34 +127,36 @@ the last instruction of S is a conditional branch
If such a block B is found, the control flow graph is changed
as depicted in Fig. 10.3.
.DS
| |
| v
v |
|-----<------| ----->-----|
____|____ | |
| | | |-------| |
| S1 | | | v |
| Bcc | | | .... |
|--| | | | |
| --------- | | ----|---- |
| | | | | |
| .... ^ | | S2 | |
| | | | | |
| --------- | | | | |
v | | | ^ --------- |
| | S2 | | | | |
| | BRA | | | |-----<-----
| | | | | v
| --------- | | ____|____
| | | | | |
| ------>------ | | S1 |
| | | Bnn |
|-------| | | |
| | ----|----
v | |
|----<--|
|
v
.ft 5
| |
| v
v |
|-----<------| ----->-----|
____|____ | |
| | | |-------| |
| S1 | | | v |
| Bcc | | | .... |
|--| | | | |
| --------- | | ----|---- |
| | | | | |
| .... ^ | | S2 | |
| | | | | |
| --------- | | | | |
v | | | ^ --------- |
| | S2 | | | | |
| | BRA | | | |-----<-----
| | | | | v
| --------- | | ____|____
| | | | | |
| ------>------ | | S1 |
| | | Bnn |
|-------| | | |
| | ----|----
v | |
|----<--|
|
v
.ft R
Fig. 10.3 Transformation of the CFG by Branch Optimization
.DE

View File

@@ -63,13 +63,3 @@ present in the input program).
On the other hand, an identifier may be only internally visible.
If such an identifier is referenced before being defined,
an INA or INP pseudo must be emitted prior to its first reference.
.UH
Acknowledgements
.PP
The author would like to thank Andy Tanenbaum for his guidance,
Duk Bekema for implementing the Common Subexpression Elimination phase
and writing the initial documentation of that phase,
Dick Grune for reading the manuscript of this report
and Ceriel Jacobs, Ed Keizer, Martin Kersten, Hans van Staveren
and the members of the S.T.W. user's group for their
interest and assistance.

View File

@@ -15,8 +15,8 @@ that can reach B without going through C.
.PP
As an example of how the algorithm works,
consider the piece of program of Fig. 4.1.
First just look at the program and think for
yourself what part of the code constitutes the loop.
First just look at the program and try to
see what part of the code constitutes the loop.
.DS
loop
if cond then 1

View File

@@ -7,9 +7,12 @@ The optimization below is only possible if
we know for sure that the call to P cannot
change A.
.DS
A := 10; A:= 10;
P; -- procedure call --> P;
B := A + 2; B := 12;
.TS
l l.
A := 10; A:= 10;
P; -- procedure call --> P;
B := A + 2; B := 12;
.TE
.DE
Although it is not possible to predict exactly
all the effects a procedure call has, we may

View File

@@ -27,16 +27,18 @@ else
S3
(pseudo) EM:
TEST COND TEST COND
BNE *1 BNE *1
S1 S1
S3 ---> BRA *2
BRA *2 1:
1: S2
S2 2:
S3 S3
.TS
l l l.
TEST COND TEST COND
BNE *1 BNE *1
S1 S1
S3 ---> BRA *2
BRA *2 1:
1: S2
S2 2:
S3 S3
2:
.TE
Fig. 9.1 An example of Cross Jumping
.DE
@@ -54,20 +56,23 @@ as demonstrated by the Fig. 8.2.
.DS
Pascal:
if cond then
x := f(4)
else
x := g(5)
if cond then
x := f(4)
else
x := g(5)
EM:
EM:
... ...
LOC 4 LOC 5
CAL F CAL G
ASP 2 ASP 2
LFR 2 LFR 2
STL X STL X
.TS
l l.
... ...
LOC 4 LOC 5
CAL F CAL G
ASP 2 ASP 2
LFR 2 LFR 2
STL X STL X
.TE
Fig. 9.2 Effectiveness of Cross Jumping
.DE
@@ -92,37 +97,40 @@ blocks must be split into two.
The control flow graphs before and after the optimization are shown
in Fig. 9.3 and Fig. 9.4.
.DS
.ft 5
-------- --------
| | | |
| S1 | | S2 |
| S3 | | S3 |
| | | |
-------- --------
| |
|------------------|--------------------|
|
v
-------- --------
| | | |
| S1 | | S2 |
| S3 | | S3 |
| | | |
-------- --------
| |
|------------------|--------------------|
|
v
.ft R
Fig. 9.3 CFG before optimization
.DE
.DS
-------- --------
| | | |
| S1 | | S2 |
| | | |
-------- --------
| |
|--------------------<------------------|
v
--------
| |
| S3 |
| |
--------
|
v
.ft 5
-------- --------
| | | |
| S1 | | S2 |
| | | |
-------- --------
| |
|--------------------<------------------|
v
--------
| |
| S3 |
| |
--------
|
v
.ft R
Fig. 9.4 CFG after optimization
.DE

View File

@@ -18,12 +18,15 @@ but in general it will save space too.
As an example of the application of Common Subexpression Elimination,
consider the piece of program in Fig. 7.1(a).
.DS
x := a * b; TMP := a * b; x := a * b;
CODE; x := TMP; CODE
y := c + a * b; CODE y := x;
y := c + TMP;
.TS
l l l.
x := a * b; TMP := a * b; x := a * b;
CODE; x := TMP; CODE
y := c + a * b; CODE y := x;
y := c + TMP;
(a) (b) (c)
(a) (b) (c)
.TE
Fig. 7.1 Examples of Common Subexpression Elimination
.DE

View File

@@ -70,10 +70,13 @@ a common subexpression,
references to the element itself are replaced by
indirect references through TMP (see Fig. 7.4).
.DS
x := A[i]; TMP := &A[i];
. . . --> x := *TMP;
A[i] := y; . . .
*TMP := y;
.TS
l l l.
x := A[i]; TMP := &A[i];
. . . --> x := *TMP;
A[i] := y; . . .
*TMP := y;
.TE
Fig. 7.4 Elimination of an array address computation
.DE

View File

@@ -27,10 +27,13 @@ The value number of the result of an expression depends only
on the kind of operator and the value number(s) of the operand(s).
The expressions need not be textually equal, as shown in Fig. 7.5.
.DS
a := c; (1)
.TS
l l.
a := c; (1)
use(a * b); (2)
d := b; (3)
d := b; (3)
use(c * d); (4)
.TE
Fig. 7.5 Different expressions with the same value number
.DE
@@ -43,9 +46,12 @@ and the operator (*) is the same.
.PP
As another example of the value number method, consider Fig. 7.6.
.DS
.TS
l l.
use(a * b); (1)
a := 123; (2)
use(a * b); (3)
.TE
Fig. 7.6 Identical expressions with the different value numbers
.DE
@@ -64,7 +70,7 @@ of its operands.
A table of "available expressions" is used to do this mapping.
.PP
CS recognizes the following kinds of EM operands, called \fIentities\fR:
.IP
.DS
- constant
- local variable
- external variable
@@ -81,6 +87,7 @@ CS recognizes the following kinds of EM operands, called \fIentities\fR:
- local base
- heap pointer
- ignore mask
.DE
.LP
Whenever a new entity is encountered in the working window,
it is entered in the symbol table and given a brand new value number.

View File

@@ -26,26 +26,26 @@ There are groups for all sorts of operators:
unary, binary, and ternary.
The groups of operators are further partitioned according to the size
of their operand(s) and result.
\" .PP
\" The distinction between operators and expensive loads is not always clear.
\" The ADP instruction for example,
\" might seem a unary operator because it pops one item
\" (a pointer) from the stack.
\" However, two ADP-instructions which pop an item with the same value number
\" need not have the same result,
\" because the attributes (an offset, to be added to the pointer)
\" can be different.
\" Is it then a binary operator?
\" That would give rise to the strange, and undesirable,
\" situation that some binary operators pop two operands
\" and others pop one.
\" The conclusion is inevitable:
\" we have been fooled by the name (ADd Pointer).
\" The ADP-instruction is an expensive load.
\" In this context LAF, meaning Load Address of oFfsetted,
\" would have been a better name,
\" corresponding to LOF, like LAL,
\" Load Address of Local, corresponds to LOL.
.\" .PP
.\" The distinction between operators and expensive loads is not always clear.
.\" The ADP instruction for example,
.\" might seem a unary operator because it pops one item
.\" (a pointer) from the stack.
.\" However, two ADP-instructions which pop an item with the same value number
.\" need not have the same result,
.\" because the attributes (an offset, to be added to the pointer)
.\" can be different.
.\" Is it then a binary operator?
.\" That would give rise to the strange, and undesirable,
.\" situation that some binary operators pop two operands
.\" and others pop one.
.\" The conclusion is inevitable:
.\" we have been fooled by the name (ADd Pointer).
.\" The ADP-instruction is an expensive load.
.\" In this context LAF, meaning Load Address of oFfsetted,
.\" would have been a better name,
.\" corresponding to LOF, like LAL,
.\" Load Address of Local, corresponds to LOL.
.PP
There are groups for all sorts of stores:
direct, indirect, array element.
@@ -91,10 +91,13 @@ because EM expressions are postfix.
When we find an instruction to load an operand,
we load on the fake-stack a struct with the following information:
.DS
(1) the value number of the operand
(2) the size of the operand
(3) a pointer to the first line of EM-code
that constitutes the operand
.TS
l l.
(1) the value number of the operand
(2) the size of the operand
(3) a pointer to the first line of EM-code
that constitutes the operand
.TE
.DE
In most cases, (3) will point to the line
that loaded the operand (e.g. LOL, LOC),
@@ -121,13 +124,16 @@ a recurrence of this expression.
Not only will the operand(s) be popped from the fake-stack,
but the following will be pushed:
.DS
(1) the value number of the result
(2) the size of the result
(3) a pointer to the first line of the expression
.TS
l l.
(1) the value number of the result
(2) the size of the result
(3) a pointer to the first line of the expression
.TE
.DE
In this way an item on the fake-stack always contains
the necessary information.
As you see, EM expressions are parsed bottum up.
EM expressions are parsed bottum up.
.NH 3
Updating entities
.PP

View File

@@ -90,18 +90,22 @@ and let the null item be 0.
Then the tree of fig. 3.1(a)
can be represented as in fig. 3.1(b).
.DS
.ft 5
4
/ \e
9 12
/ \e / \e
12 3 4 6
/ \e \e /
8 1 5 1
.ft R
Fig. 3.1(a) A binary tree
.ft 5
4 9 12 0 0 3 8 0 0 1 0 0 12 4 0 5 0 0 6 1 0 0 0
.ft R
Fig. 3.1(b) Its sequential representation
.DE

View File

@@ -21,12 +21,15 @@ The syntactic structure of every component
is described by a set of context free syntax rules,
with the following conventions:
.DS
x a non-terminal symbol
A a terminal symbol (in capitals)
x: a b c; a grammar rule
a | b a or b
(a)+ 1 or more occurrences of a
{a} 0 or more occurrences of a
.TS
l l.
x a non-terminal symbol
A a terminal symbol (in capitals)
x: a b c; a grammar rule
a | b a or b
(a)+ 1 or more occurrences of a
{a} 0 or more occurrences of a
.TE
.DE
.NH 3
The object table
@@ -70,21 +73,24 @@ identifying number
(see previous section for their use).
.DS
.UL syntax
object_table:
{datablock} ;
datablock:
D_ID -- unique identifying number
PSEUDO -- one of ROM,CON,BSS,HOL,UNKNOWN
SIZE -- # bytes declared
FLAGS
{value} -- contents of rom
{object} ; -- objects of the datablock
object:
O_ID -- unique identifying number
OFFSET -- offset within the datablock
SIZE ; -- size of the object in bytes
value:
argument ;
.TS
lw(1i) l l.
object_table:
{datablock} ;
datablock:
D_ID -- unique identifying number
PSEUDO -- one of ROM,CON,BSS,HOL,UNKNOWN
SIZE -- # bytes declared
FLAGS
{value} -- contents of rom
{object} ; -- objects of the datablock
object:
O_ID -- unique identifying number
OFFSET -- offset within the datablock
SIZE ; -- size of the object in bytes
value:
argument ;
.TE
.DE
A data block has only one flag: "external", indicating
whether the data label is externally visible.
@@ -102,26 +108,29 @@ The table has one entry for
every procedure.
.DS
.UL syntax
procedure_table:
{procedure}
procedure:
P_ID -- unique identifying number
#LABELS -- number of instruction labels
#LOCALS -- number of bytes for locals
#FORMALS -- number of bytes for formals
FLAGS -- flag bits
calling -- procedures called by this one
change -- info about global variables changed
use ; -- info about global variables used
calling:
{P_ID} ; -- procedures called
change:
ext -- external variables changed
FLAGS ;
use:
FLAGS ;
ext:
{O_ID} ; -- a set of objects
.TS
lw(1i) l l.
procedure_table:
{procedure}
procedure:
P_ID -- unique identifying number
#LABELS -- number of instruction labels
#LOCALS -- number of bytes for locals
#FORMALS -- number of bytes for formals
FLAGS -- flag bits
calling -- procedures called by this one
change -- info about global variables changed
use ; -- info about global variables used
calling:
{P_ID} ; -- procedures called
change:
ext -- external variables changed
FLAGS ;
use:
FLAGS ;
ext:
{O_ID} ; -- a set of objects
.TE
.DE
.PP
The number of bytes of formal parameters accessed by
@@ -231,38 +240,41 @@ of arguments), then the list is terminated by a special
argument of type CEND.
.DS
.UL syntax
em_text:
{line} ;
line:
INSTR -- opcode
OPTYPE -- operand type
operand ;
operand:
empty | -- OPTYPE = NO
SHORT | -- OPTYPE = SHORT
OFFSET | -- OPTYPE = OFFSET
LAB_ID | -- OPTYPE = INSTRLAB
O_ID | -- OPTYPE = OBJECT
P_ID | -- OPTYPE = PROCEDURE
{argument} ; -- OPTYPE = LIST
argument:
ARGTYPE
arg ;
arg:
empty | -- ARGTYPE = CEND
OFFSET |
LAB_ID |
O_ID |
P_ID |
string | -- ARGTYPE = STRING
const ; -- ARGTYPE = ICON,UCON or FCON
string:
LENGTH -- number of characters
{CHARACTER} ;
const:
SIZE -- number of bytes
string ; -- string representation of (un)signed
-- or floating point constant
.TS
lw(1i) l l.
em_text:
{line} ;
line:
INSTR -- opcode
OPTYPE -- operand type
operand ;
operand:
empty | -- OPTYPE = NO
SHORT | -- OPTYPE = SHORT
OFFSET | -- OPTYPE = OFFSET
LAB_ID | -- OPTYPE = INSTRLAB
O_ID | -- OPTYPE = OBJECT
P_ID | -- OPTYPE = PROCEDURE
{argument} ; -- OPTYPE = LIST
argument:
ARGTYPE
arg ;
arg:
empty | -- ARGTYPE = CEND
OFFSET |
LAB_ID |
O_ID |
P_ID |
string | -- ARGTYPE = STRING
const ; -- ARGTYPE = ICON,UCON or FCON
string:
LENGTH -- number of characters
{CHARACTER} ;
const:
SIZE -- number of bytes
string ; -- string representation of (un)signed
-- or floating point constant
.TE
.DE
.NH 3
The control flow graphs
@@ -306,24 +318,27 @@ the identifiers of every
that the block belongs to (see next section for loops).
.DS
.UL syntax
control_flow_graph:
{basic_block} ;
basic_block:
B_ID -- unique identifying number
#INSTR -- number of EM instructions
succ
pred
idom -- immediate dominator
loops -- set of loops
FLAGS ; -- flag bits
succ:
{B_ID} ;
pred:
{B_ID} ;
idom:
B_ID ;
loops:
{LP_ID} ;
.TS
lw(1i) l l.
control_flow_graph:
{basic_block} ;
basic_block:
B_ID -- unique identifying number
#INSTR -- number of EM instructions
succ
pred
idom -- immediate dominator
loops -- set of loops
FLAGS ; -- flag bits
succ:
{B_ID} ;
pred:
{B_ID} ;
idom:
B_ID ;
loops:
{LP_ID} ;
.TE
.DE
The flag bits can have the values 'firm' and 'strong',
which are explained below.
@@ -387,28 +402,30 @@ strong nor firm, as it may be skipped during some iterations
.DS
loop
if cond1 then
... -- this code will not
-- result in a firm or strong block
... \kx-- this code will not
\h'|\nxu'-- result in a firm or strong block
end if;
... -- strong (always executed)
exit when cond2;
... -- firm (not executed on
-- last iteration).
... \kx-- firm (not executed on last iteration).
end loop;
Fig. 3.2 Example of firm and strong block
.DE
.DS
.UL syntax
looptable:
{loop} ;
loop:
LP_ID -- unique identifying number
LEVEL -- loop nesting level
entry -- loop entry block
end ;
entry:
B_ID ;
end:
B_ID ;
.TS
lw(1i) l l.
looptable:
{loop} ;
loop:
LP_ID -- unique identifying number
LEVEL -- loop nesting level
entry -- loop entry block
end ;
entry:
B_ID ;
end:
B_ID ;
.TE
.DE

View File

@@ -57,24 +57,27 @@ indicating which part of the EM text belongs
to that block.
.DS
.UL syntax
intermediate_code:
object_table_file
proctable_file
em_text_file
cfg_file ;
object_table_file:
LENGTH -- number of objects
object_table ;
proctable_file:
LENGTH -- number of procedures
procedure_table ;
em_text_file:
em_text ;
cfg_file:
{per_proc} ; -- one for every procedure
per_proc:
BLENGTH -- number of basic blocks
LLENGTH -- number of loops
control_flow_graph
looptable ;
.TS
lw(1i) l l.
intermediate_code:
object_table_file
proctable_file
em_text_file
cfg_file ;
object_table_file:
LENGTH -- number of objects
object_table ;
proctable_file:
LENGTH -- number of procedures
procedure_table ;
em_text_file:
em_text ;
cfg_file:
{per_proc} ; -- one for every procedure
per_proc:
BLENGTH -- number of basic blocks
LLENGTH -- number of loops
control_flow_graph
looptable ;
.TE
.DE

View File

@@ -93,8 +93,11 @@ Objects are recognized by looking at the operands
of instructions that reference global data.
If we come across the instructions:
.DS
LDE X+6 -- Load Double External
LAE X+20 -- Load Address External
.TS
l l.
LDE X+6 -- Load Double External
LAE X+20 -- Load Address External
.TE
.DE
we conclude that the data block
preceded by the data label X contains an object

View File

@@ -139,10 +139,10 @@ procedure p (x:integer);
begin
x := 20;
end;
...
a := 10; a := 10;
p(a); ---> a := 20;
write(a); write(a);
\&...
a := 10; \kxa := 10;
p(a); ---> \h'|\nxu'a := 20;
write(a); \h'|\nxu'write(a);
.DE
.IP 2.
P changes any of the operands of the

View File

@@ -104,18 +104,21 @@ The following model was developed empirically.
Assume procedure P calls procedure Q.
The call takes place in basic block B.
.DS
ZP = # zero parameters
CP = # constant parameters - ZP
LN = Loop Nesting level (0 if outside any loop)
F = \fIif\fR # formal parameters of Q > 0 \fIthen\fR 1 \fIelse\fR 0
FT = \fIif\fR Q falls through \fIthen\fR 1 \fIelse\fR 0
S = size(Q) - 1 - # inline_parameters - F
L = \fIif\fR # local variables of P > 0 \fIthen\fR 0 \fIelse\fR -1
A = CP + 2 * ZP
N = \fIif\fR LN=0 and P is never called from a loop \fIthen\fR 0 \fIelse\fR (LN+1)**2
FM = \fIif\fR B is a firm block \fIthen\fR 2 \fIelse\fR 1
.TS
l l l.
ZP \&= # zero parameters
CP \&= # constant parameters - ZP
LN \&= Loop Nesting level (0 if outside any loop)
F \&= \fIif\fR # formal parameters of Q > 0 \fIthen\fR 1 \fIelse\fR 0
FT \&= \fIif\fR Q falls through \fIthen\fR 1 \fIelse\fR 0
S \&= size(Q) - 1 - # inline_parameters - F
L \&= \fIif\fR # local variables of P > 0 \fIthen\fR 0 \fIelse\fR -1
A \&= CP + 2 * ZP
N \&= \fIif\fR LN=0 and P is never called from a loop \fIthen\fR 0 \fIelse\fR (LN+1)**2
FM \&= \fIif\fR B is a firm block \fIthen\fR 2 \fIelse\fR 1
pay_off = (100/S + FT + F + L + A) * N * FM
pay_off \&= (100/S + FT + F + L + A) * N * FM
.TE
.DE
S stands for the size increase of the program,
which is slightly less than the size of Q.

View File

@@ -165,19 +165,25 @@ These calls are inherited from the called procedure.
We will refer to these invocations as \fInested calls\fR
(see Fig. 5.1).
.DS
.TS
lw(2.5i) l.
procedure p is
begin .
a(); .
b(); .
begin .
a(); .
b(); .
end;
.TE
procedure r is procedure r is
begin begin
x(); x();
p(); -- in line a(); -- nested call
y(); b(); -- nested call
end; y();
end;
.TS
lw(2.5i) l.
procedure r is procedure r is
begin begin
x(); x();
p(); -- in line a(); -- nested call
y(); b(); -- nested call
end; y();
end;
.TE
Fig. 5.1 Example of nested procedure calls
.DE
@@ -224,11 +230,11 @@ All list traversals look like:
traverse(list)
{
for (c = first(list); c != 0; c = CDR(c)) {
if (c is marked) {
traverse(CAR(c));
} else {
do something with c
}
if (c is marked) {
traverse(CAR(c));
} else {
do something with c
}
}
}
.DE

View File

@@ -22,6 +22,6 @@ the driving routine for doing the substitution
lower level routines that do certain modifications
.IP 3_aux:
implements auxiliary procedures used by subphase 3
.IP aux
.IP aux:
implements auxiliary procedures used by several subphases.
.LP

View File

@@ -1,7 +1,10 @@
.ND
.ll 80m
.nr LL 80m
.nr tl 78m
.\".ll 80m
.\".nr LL 80m
.\".nr tl 78m
.tr ~
.ds >. .
.ds [. " \[
.ds >, ,
.ds [. " [
.ds .] ]
.cs 5 22

View File

@@ -1,3 +1,17 @@
.SH
Acknowledgements
.PP
The author would like to thank Andy Tanenbaum for his guidance,
Duk Bekema for implementing the Common Subexpression Elimination phase
and writing the initial documentation of that phase,
Dick Grune for reading the manuscript of this report
and Ceriel Jacobs, Ed Keizer, Martin Kersten, Hans van Staveren
and the members of the S.T.W. user's group for their
interest and assistance.
.bp
.SH
References
.LP
.[
$LIST$
.]

View File

@@ -76,11 +76,14 @@ EM is the assembly code of a virtual \fIstack machine\fR.
All operations are performed on the top of the stack.
For example, the statement "A := B + 3" may be expressed in EM as:
.DS
LOL -4 -- push local variable B
LOC 3 -- push constant 3
ADI 2 -- add two 2-byte items on top of
-- the stack and push the result
STL -2 -- pop A
.TS
l l.
LOL -4 -- push local variable B
LOC 3 -- push constant 3
ADI 2 -- add two 2-byte items on top of
-- the stack and push the result
STL -2 -- pop A
.TE
.DE
So EM is essentially a \fIpostfix\fR code.
.PP
@@ -139,7 +142,7 @@ We will give two methods to do this.
.PP
In "C" the notorious library routines "setjmp" and "longjmp"
.[
unix programmer's manual
unix programmer's manual McIlroy
.]
may be used to jump out of a procedure,
but can also be used for a number of other stuffy purposes,
@@ -298,9 +301,9 @@ optimizations; the report also contains a lengthy (over 60 pages)
bibliography.
.PP
The number of articles on optimization is quite impressive.
The Lowrey and Medlock paper on the Fortran H compiler
The Lowry and Medlock paper on the Fortran H compiler
.[
object code optimization
object code optimization Lowry Medlock
.]
is a classical one.
Other papers on global optimization are.

64
doc/ego/proto.make Normal file
View File

@@ -0,0 +1,64 @@
# $Id$
#PARAMS do not remove this line!
SRC_DIR = $(SRC_HOME)/doc/ego
REFS=-p $(SRC_DIR)/refs.opt -p $(SRC_DIR)/refs.stat -p $(SRC_DIR)/refs.gen
REFFILES = $(SRC_DIR)/refs.opt $(SRC_DIR)/refs.stat $(SRC_DIR)/refs.gen
INTRO=$(SRC_DIR)/intro/intro?
OV=$(SRC_DIR)/ov/ov?
IC=$(SRC_DIR)/ic/ic?
CF=$(SRC_DIR)/cf/cf?
IL=$(SRC_DIR)/il/il?
SR=$(SRC_DIR)/sr/sr?
CS=$(SRC_DIR)/cs/cs?
SP=$(SRC_DIR)/sp/sp?
UD=$(SRC_DIR)/ud/ud?
LV=$(SRC_DIR)/lv/lv?
CJ=$(SRC_DIR)/cj/cj?
BO=$(SRC_DIR)/bo/bo?
RA=$(SRC_DIR)/ra/ra?
CA=$(SRC_DIR)/ca/ca?
EGO=$(INTRO) $(OV) $(IC) $(CF) $(IL) $(SR) $(CS) $(SP) $(CJ) $(BO) \
$(UD) $(LV) $(RA) $(CA)
REFER=refer
TROFF=troff
TBL=tbl
TARGET=-Tlp
HEAD = $(SRC_DIR)/intro/head
TAIL = $(SRC_DIR)/intro/tail
$(TARGET_HOME)/doc/ego.doc: $(REFFILES) $(HEAD) $(TAIL) $(EGO)
$(REFER) -sA+T -l4,2 $(REFS) $(HEAD) $(EGO) $(TAIL) | $(TBL) > $(TARGET_HOME)/doc/ego.doc
ego.f: $(REFFILES) $(HEAD) $(TAIL) $(EGO)
$(REFER) -sA+T -l4,2 $(REFS) $(HEAD) $(EGO) $(TAIL) | $(TBL) | $(TROFF) $(TARGET) -ms > ego.f
intro.f: $(REFFILES) $(HEAD) $(TAIL) $(INTRO)
$(REFER) -sA+T -l4,2 $(REFS) $(HEAD) $(INTRO) $(TAIL) | $(TBL) | $(TROFF) $(TARGET) -ms > intro.f
ov.f: $(REFFILES) $(HEAD) $(TAIL) $(OV)
$(REFER) -sA+T -l4,2 $(REFS) $(HEAD) $(OV) $(TAIL) | $(TBL) | $(TROFF) $(TARGET) -ms > ov.f
ic.f: $(REFFILES) $(HEAD) $(TAIL) $(IC)
$(REFER) -sA+T -l4,2 $(REFS) $(HEAD) $(IC) $(TAIL) | $(TBL) | $(TROFF) $(TARGET) -ms > ic.f
cf.f: $(REFFILES) $(HEAD) $(TAIL) $(CF)
$(REFER) -sA+T -l4,2 $(REFS) $(HEAD) $(CF) $(TAIL) | $(TBL) | $(TROFF) $(TARGET) -ms > cf.f
il.f: $(REFFILES) $(HEAD) $(TAIL) $(IL)
$(REFER) -sA+T -l4,2 $(REFS) $(HEAD) $(IL) $(TAIL) | $(TBL) | $(TROFF) $(TARGET) -ms > il.f
sr.f: $(REFFILES) $(HEAD) $(TAIL) $(SR)
$(REFER) -sA+T -l4,2 $(REFS) $(HEAD) $(SR) $(TAIL) | $(TBL) | $(TROFF) $(TARGET) -ms > sr.f
cs.f: $(REFFILES) $(HEAD) $(TAIL) $(CS)
$(REFER) -sA+T -l4,2 $(REFS) $(HEAD) $(CS) $(TAIL) | $(TBL) | $(TROFF) $(TARGET) -ms > cs.f
sp.f: $(REFFILES) $(HEAD) $(TAIL) $(SP)
$(REFER) -sA+T -l4,2 $(REFS) $(HEAD) $(SP) $(TAIL) | $(TBL) | $(TROFF) $(TARGET) -ms > sp.f
cj.f: $(REFFILES) $(HEAD) $(TAIL) $(CJ)
$(REFER) -sA+T -l4,2 $(REFS) $(HEAD) $(CJ) $(TAIL) | $(TBL) | $(TROFF) $(TARGET) -ms > cj.f
bo.f: $(REFFILES) $(HEAD) $(TAIL) $(BO)
$(REFER) -sA+T -l4,2 $(REFS) $(HEAD) $(BO) $(TAIL) | $(TBL) | $(TROFF) $(TARGET) -ms > bo.f
ud.f: $(REFFILES) $(HEAD) $(TAIL) $(UD)
$(REFER) -sA+T -l4,2 $(REFS) $(HEAD) $(UD) $(TAIL) | $(TBL) | $(TROFF) $(TARGET) -ms > ud.f
lv.f: $(REFFILES) $(HEAD) $(TAIL) $(LV)
$(REFER) -sA+T -l4,2 $(REFS) $(HEAD) $(LV) $(TAIL) | $(TBL) | $(TROFF) $(TARGET) -ms > lv.f
ra.f: $(REFFILES) $(HEAD) $(TAIL) $(RA)
$(REFER) -sA+T -l4,2 $(REFS) $(HEAD) $(RA) $(TAIL) | $(TBL) | $(TROFF) $(TARGET) -ms > ra.f
ca.f: $(REFFILES) $(HEAD) $(TAIL) $(CA)
$(REFER) -sA+T -l4,2 $(REFS) $(HEAD) $(CA) $(TAIL) | $(TBL) | $(TROFF) $(TARGET) -ms > ca.f

View File

@@ -225,9 +225,12 @@ allocation.
To summarize, the number of bytes a certain allocation would
save is computed as follows:
.DS
net_bytes_saved = bytes_saved - init_cost
bytes_saved = #occurrences * gains_per_occ
init_cost = #initializations * costs_per_init
.TS
l l.
net_bytes_saved = bytes_saved - init_cost
bytes_saved = #occurrences * gains_per_occ
init_cost = #initializations * costs_per_init
.TE
.DE
.PP
It is inherently more difficult to estimate the execution

View File

@@ -11,12 +11,15 @@ the stack by the \fIcalling\fR procedure.
The ASP (Adjust Stack Pointer) instruction is used for this purpose.
A call in EM is shown in Fig. 8.1
.DS
Pascal: EM:
.TS
l l.
Pascal: EM:
f(a,2) LOC 2
LOE A
CAL F
ASP 4 -- pop 4 bytes
f(a,2) LOC 2
LOE A
CAL F
ASP 4 -- pop 4 bytes
.TE
Fig. 8.1 An example procedure call in Pascal and EM
.DE
@@ -35,17 +38,20 @@ A stack adjustment may be delayed if there is some other stack adjustment
later on in the same basic block.
The two ASPs can be combined into one.
.DS
Pascal: EM: optimized EM:
.TS
l l l.
Pascal: EM: optimized EM:
f(a,2) LOC 2 LOC 2
g(3,b,c) LOE A LOE A
CAL F CAL F
ASP 4 LOE C
LOE C LOE B
LOE B LOC 3
LOC 3 CAL G
CAL G ASP 10
ASP 6
f(a,2) LOC 2 LOC 2
g(3,b,c) LOE A LOE A
CAL F CAL F
ASP 4 LOE C
LOE C LOE B
LOE B LOC 3
LOC 3 CAL G
CAL G ASP 10
ASP 6
.TE
Fig. 8.2 An example of local Stack Pollution
.DE
@@ -85,19 +91,23 @@ the number of bytes pushed since the first ASP.
.LP
Condition 1. is not satisfied in Fig. 8.3.
.DS
Pascal: EM:
.TS
l l.
Pascal: EM:
5 + f(10) + g(30) LOC 5
LOC 10
CAL F
ASP 2 -- cannot be removed
LFR 2 -- push function result
ADI 2
LOC 30
CAL G
ASP 2
LFR 2
ADI 2
.TE
5 + f(10) + g(30) LOC 5
LOC 10
CAL F
ASP 2 -- cannot be removed
LFR 2 -- push function result
ADI 2
LOC 30
CAL G
ASP 2
LFR 2
ADI 2
Fig. 8.3 An illegal transformation
.DE
If the first ASP were removed (delayed), the first ADI would add
@@ -105,19 +115,22 @@ If the first ASP were removed (delayed), the first ADI would add
.sp
Condition 2. is not satisfied in Fig. 8.4.
.DS
Pascal: EM:
.TS
l l.
Pascal: EM:
f(10) + 5 * g(30) LOC 10
CAL F
ASP 2
LFR 2
LOC 5
LOC 30
CAL G
ASP 2
LFR 2
MLI 2 -- 5 * g(30)
ADI 2
f(10) + 5 * g(30) LOC 10
CAL F
ASP 2
LFR 2
LOC 5
LOC 30
CAL G
ASP 2
LFR 2
MLI 2 -- 5 * g(30)
ADI 2
.TE
Fig. 8.4 A second illegal transformation
.DE

View File

@@ -16,13 +16,16 @@ done by the EM Peephole Optimizer.
Strength reduction can also be applied
more generally to operators used in a loop.
.DS
i := 1; i := 1;
while i < 100 loop --> TMP := i * 118;
put(i * 118); while i < 100 loop
i := i + 1; put(TMP);
end loop; i := i + 1;
TMP := TMP + 118;
end loop;
.TS
l l.
i := 1; i := 1;
while i < 100 loop\ \ \ \ \ \ \ --> TMP := i * 118;
put(i * 118); while i < 100 loop
i := i + 1; put(TMP);
end loop; i := i + 1;
TMP := TMP + 118;
end loop;
.TE
Fig. 6.1 An example of Strenght Reduction
.DE

View File

@@ -105,11 +105,11 @@ iv_expression * constant
.IP (2)
constant * iv_expression
.IP (3)
A[iv-expression] := (assign to array element)
A[iv-expression] := \kx(assign to array element)
.IP (4)
A[iv-expression] (use array element)
A[iv-expression] \h'|\nxu'(use array element)
.IP (5)
& A[iv-expression] (take address of array element)
& A[iv-expression] \h'|\nxu'(take address of array element)
.LP
(Note that EM has different instructions to use an array element,
store into one, or take the address of one, resp. LAR, SAR, and AAR).
@@ -171,10 +171,13 @@ replaced by TMP.
For array optimizations, the replacement
depends on the form:
.DS
\fIform\fR \fIreplacement\fR
(3) A[iv-expr] := *TMP := (assign indirect)
(4) A[iv-expr] *TMP (use indirect)
(5) &A[iv-expr] TMP
.TS
l l l.
\fIform\fR \fIreplacement\fR
(3) A[iv-expr] := *TMP := (assign indirect)
(4) A[iv-expr] *TMP (use indirect)
(5) &A[iv-expr] TMP
.TE
.DE
The '*' denotes the indirect operator. (Note that
EM has different instructions to do
@@ -199,14 +202,17 @@ must be negated.
.PP
The transformations are demonstrated by an example.
.DS
i := 100; i := 100;
while i > 1 loop TMP := (6-i) * 5;
X := (6-i) * 5 + 2; while i > 1 loop
Y := (6-i) * 5 - 8; --> X := TMP + 2;
i := i - 3; Y := TMP - 8;
end loop; i := i - 3;
TMP := TMP + 15;
end loop;
.TS
l l.
i := 100; i := 100;
while i > 1 loop TMP := (6-i) * 5;
X := (6-i) * 5 + 2; while i > 1 loop
Y := (6-i) * 5 - 8;\ \ \ \ \ \ \ --> X := TMP + 2;
i := i - 3; Y := TMP - 8;
end loop; i := i - 3;
TMP := TMP + 15;
end loop;
.TE
Fig. 6.2 Example of complex Strength Reduction transformations
.DE

View File

@@ -64,12 +64,15 @@ The assignment must match one of the EM patterns below.
('x' is the candidate. 'ws' is the word size of the target machine.
'n' is any number.)
.DS
\fIpattern\fR \fIstep size\fR
INL x | +1
DEL x | -1
LOL x ; (INC | DEC) ; STL x | +1 | -1
LOL x ; LOC n ; (ADI ws | SBI ws) ; STL x | +n | -n
LOC n ; LOL x ; ADI ws ; STL x. +n
.TS
l l.
\fIpattern\fR \fIstep size\fR
INL x | +1
DEL x | -1
LOL x ; (INC | DEC) ; STL x | +1 | -1
LOL x ; LOC n ; (ADI ws | SBI ws) ; STL x | +n | -n
LOC n ; LOL x ; ADI ws ; STL x +n
.TE
.DE
From the patterns the step size of the induction variable
can also be determined.
@@ -95,19 +98,22 @@ code in front of it.
If an expression is to be optimized, it must
be generated by the following syntax rules.
.DS
optimizable_expr:
iv_expr const mult |
const iv_expr mult |
address iv_expr address array_instr;
mult:
MLI ws |
MLU ws ;
array_instr:
LAR ws |
SAR ws |
AAR ws ;
const:
LOC n ;
.TS
l l.
optimizable_expr:
iv_expr const mult |
const iv_expr mult |
address iv_expr address array_instr;
mult:
MLI ws |
MLU ws ;
array_instr:
LAR ws |
SAR ws |
AAR ws ;
const:
LOC n ;
.TE
.DE
An 'address' is an EM instruction that loads an
address on the stack.
@@ -120,36 +126,42 @@ instructions like LDL are an 'address'.
denote resp. the array address and the
array descriptor address).
.DS
address:
LAE |
LAL |
LOL if ps=ws |
LOE ,, |
LIL ,, |
LDL if ps=2*ws |
LDE ,, ;
.TS
l l.
address:
LAE |
LAL |
LOL if ps=ws |
LOE ,, |
LIL ,, |
LDL if ps=2*ws |
LDE ,, ;
.TE
.DE
The notion of an iv-expression was introduced earlier.
.DS
iv_expr:
iv_expr unair_op |
iv_expr iv_expr binary_op |
loopconst |
iv ;
unair_op:
NGI ws |
INC |
DEC ;
binary_op:
ADI ws |
ADU ws |
SBI ws |
SBU ws ;
loopconst:
const |
LOL x if x is not changed in loop ;
iv:
LOL x if x is an induction variable ;
.TS
l l.
iv_expr:
iv_expr unair_op |
iv_expr iv_expr binary_op |
loopconst |
iv ;
unair_op:
NGI ws |
INC |
DEC ;
binary_op:
ADI ws |
ADU ws |
SBI ws |
SBU ws ;
loopconst:
const |
LOL x if x is not changed in loop ;
iv:
LOL x if x is an induction variable ;
.TE
.DE
An iv_expression must satisfy one additional constraint:
it must use exactly one operand that is an induction

View File

@@ -1,9 +1,7 @@
Makefile
proto.make
READ_ME
addend.n
app.codes.nr
app.exam.nr
app.int.nr
assem.nr
cont.nr
descr.nr
@@ -21,8 +19,6 @@ mach.nr
macr.nr
mapping.nr
mem.nr
print
show
title.nr
traps.nr
types.nr

View File

@@ -1,36 +0,0 @@
HOME=../..
TBL=tbl
NROFF=nroff
SUF=pr
head: ../em.$(SUF)
FILES = macr.nr title.nr intro.nr mem.nr ispace.nr dspace.nr mapping.nr \
types.nr descr.nr env.nr traps.nr mach.nr assem.nr \
app.int.nr app.codes.nr app.exam.nr cont.nr
IOP=$(HOME)/util/ass/ip_spec.t# # to construct itables from
../em.$(SUF): $(FILES) itables dispatdummy em.i Makefile
$(TBL) $(FILES) | $(NROFF) > ../em.$(SUF)
app.codes.pr: app.codes.nr itables dispatdummy
itables: $(IOP) ip.awk
awk -f ip.awk $(IOP) | sed 's/-/\\-/g' | $(TBL) >itables
dispatdummy: $(IOP) mkdispatch
mkdispatch < $(IOP) > dispatdummy
sed -f dispat1.sed < dispatdummy | $(TBL) > dispat1
sed -f dispat2.sed < dispatdummy | $(TBL) > dispat2
sed -f dispat3.sed < dispatdummy | $(TBL) > dispat3
mkdispatch: mkdispatch.c
cc -I$(HOME)/util/ass -I$(HOME)/h -o mkdispatch mkdispatch.c $(HOME)/lib/em_data.a
.SUFFIXES : .pr .nr
.nr.pr: ; $(TBL) macr.nr $*.nr | $(NROFF) >$@
clean:
rm -f *.pr itables *.out dispatdummy dispat? *.o mkdispatch

View File

@@ -3,7 +3,4 @@ DESCRIPTION OF A MACHINE ARCHITECTURE FOR USE WITH BLOCK STRUCTURED LANGUAGES
The file em.i (text of the defining interpreter) was hand-edited from int/em.p
To print, set NROFF and TBL in the Makefile and call make.
It uses the kun macro package which is also distributed.
The directory int contains the interpreter.

File diff suppressed because it is too large Load Diff

View File

@@ -1,4 +1,4 @@
.BP
.bp
.AP "EM CODE TABLES"
The following table is used by the assembler for EM machine
language.
@@ -10,63 +10,66 @@ Each line describes a range of interpreter opcodes by
specifying for which instruction the range is used, the type of the
opcodes (mini, shortie, etc..) and range for the instruction
argument.
.A
.QQ
The first field on each line gives the EM instruction mnemonic,
the second field gives some flags.
If the opcodes are minis or shorties the third field specifies
how many minis/shorties are used.
The last field gives the number of the (first) interpreter
opcode.
.N 1
.LP
Flags :
.IS 3
.N 1
.IP ""
Opcode type, only one of the following may be specified.
.PS - 5 " "
.PT \-
.RS
.IP \-
opcode without argument
.PT m
.IP m
mini
.PT s
.IP s
shortie
.PT 2
.IP 2
opcode with 2-byte signed argument
.PT 4
.IP 4
opcode with 4-byte signed argument
.PT 8
.IP 8
opcode with 8-byte signed argument
.PE
.IP u
opcode with 2-byte unsigned argument
.RE
.IP ""
Secondary (escaped) opcodes.
.PS - 5 " "
.PT e
.RS
.IP e
The opcode thus marked is in the secondary opcode group instead
of the primary
.PE
.RE
.IP ""
restrictions on arguments
.PS - 5 " "
.PT N
.RS
.IP N
Negative arguments only
.PT P
.IP P
Positive and zero arguments only
.PE
.RE
.IP ""
mapping of arguments
.PS - 5 " "
.PT w
.RS
.IP w
argument must be divisible by the wordsize and is divided by the
wordsize before use as opcode argument.
.PT o
.IP o
argument ( possibly after division ) must be >= 1 and is
decremented before use as opcode argument
.PE
.IE
.RE
.LP
If the opcode type is 2,4 or 8 the resulting argument is used as
opcode argument (least significant byte first).
.N
If the opcode type is mini, the argument is added
to the first opcode \- if in range \- .
If the argument is negative, the absolute value minus one is
used in the algorithm above.
.N
.br
For shorties with positive arguments the first opcode is used
for arguments in the range 0..255, the second for the range
256..511, etc..
@@ -76,30 +79,32 @@ for arguments in the range \-1..\-256, the second for the range
The byte following the opcode contains the least significant
byte of the argument.
First some examples of these specifications.
.PS - 5
.PT "aar mwPo 1 34"
.IP "aar mwPo 1 34"
.br
Indicates that opcode 34 is used as a mini for Positive
instruction arguments only.
The w and o indicate division and decrementing of the
instruction argument.
Because the resulting argument must be zero ( only opcode 34 may be used
), this mini can only be used for instruction argument 2.
Because the resulting argument must be zero ( only opcode 34 may be used),
this mini can only be used for instruction argument 2.
Conclusion: opcode 34 is for "AAR 2".
.PT "adp sP 1 41"
.IP "adp sP 1 41"
.br
Opcode 41 is used as shortie for ADP with arguments in the range
0..255.
.PT "bra sN 2 60"
.IP "bra sN 2 60"
.br
Opcode 60 is used as shortie for BRA with arguments \-1..\-256,
61 is used for arguments \-257..\-512.
.PT "zer e\- 145"
.IP "zer e\- 145"
.br
Escaped opcode 145 is used for ZER.
.PE
.LP
The interpreter opcode table:
.N 1
.IS 3
.DS
.so itables
.IE
.P
.DE
.PP
The table above results in the following dispatch tables.
Dispatch tables are used by interpreters to jump to the
routines implementing the EM instructions, indexed by the next opcode.
@@ -108,46 +113,41 @@ of eight consecutive opcodes, preceded by the first opcode number
on that line.
Routine names consist of an EM mnemonic followed by a suffix.
The suffices show the encoding used for each opcode.
.N
.LP
The following suffices exist:
.N 1
.VS 1 0
.IS 4
.PS - 11
.PT .z
no arguments
.PT .l
16-bit argument
.PT .lw
16-bit argument divided by the wordsize
.PT .p
positive 16-bit argument
.PT .pw
positive 16-bit argument divided by the wordsize
.PT .n
negative 16-bit argument
.PT .nw
negative 16-bit argument divided by the wordsize
.PT .s<num>
shortie with <num> as high order argument byte
.PT .w<num>
shortie with argument divided by the wordsize
.PT .<num>
mini with <num> as argument
.PT .<num>W
mini with <num>*wordsize as argument
.PE 1
.TS
tab(:);
l l.
.z:no arguments
.l:16-bit argument
.L:32-bit argument
.u:16-bit unsigned argument
.lw:16-bit argument divided by the wordsize
.Lw:32-bit argument divided by the wordsize
.p:positive 16-bit argument
.P:positive 32-bit argument
.pw:positive 16-bit argument divided by the wordsize
.Pw:positive 32-bit argument divided by the wordsize
.n:negative 16-bit argument
.N:negative 32-bit argument
.nw:negative 16-bit argument divided by the wordsize
.Nw:negative 32-bit argument divided by the wordsize
.s<num>:shortie with <num> as high order argument byte
.w<num>:shortie with argument divided by the wordsize
.<num>:mini with <num> as argument
.<num>W:mini with <num>*wordsize as argument
.TE
.LP
<num> is a possibly negative integer.
.VS 1 1
.IE
.LP
The dispatch table for the 256 primary opcodes:
.N 1
.sp 1
.so dispat1
.N 2
.sp 2
The list of secondary opcodes (escape1):
.N 1
.sp 1
.so dispat2
.N 2
.sp 2
Finally, the list of opcodes with four byte arguments (escape2).
.N 1
.sp 1
.so dispat3

View File

@@ -1,7 +1,7 @@
.BP
.bp
.AP "AN EXAMPLE PROGRAM"
.A 1 0
.NA
.PP
.na
.ta 4n 8n 12n 16n 20n
.nf
1 program example(output);
@@ -45,12 +45,12 @@
39 test(r)
40 end.
.fi
.AD
.BP
.ad
.bp
The EM code as produced by the Pascal-VU compiler is given below. Comments
have been added manually. Note that this code has already been optimized.
.A 1 0
.NA
.LP
.na
.nf
.ta 1n 24n
mes 2,2,2 ; wordsize 2, pointersize 2
@@ -141,7 +141,7 @@ have been added manually. Note that this code has already been optimized.
lol 0
adp 2
sti 8 ; r.r2 :=
lni ; lin 23 prior to optimization
lni ; lin 30 prior to optimization
lal \-224
lol \-4
lae .2
@@ -176,7 +176,7 @@ have been added manually. Note that this code has already been optimized.
sti 8 ; r2 := x + y
loc 0
sil \-226 ; r1 := 0
lin 34 ; note the abscence of the unnecesary jump
lin 34 ; note the absence of the unnecessary jump
lae 22 ; address of output structure
lol \-4
cal $_wri ; write integer with default width
@@ -231,14 +231,13 @@ have been added manually. Note that this code has already been optimized.
end 0
mes 5 ; reals were used
.fi
.AD
.A 1 0
.ad
.PP
The compact code corresponding to the above program is listed below.
Read it horizontally, line by line, not column by column.
Each number represents a byte of compact code, printed in decimal.
The first two bytes form the magic word.
.N 1
.IS 3
.LP
.Dr 33
173 0 159 122 122 122 255 242 1 161 250 124 116 46 112 0
255 156 245 40 2 245 0 128 120 155 249 123 115 117 109 160
@@ -274,4 +273,3 @@ The first two bytes form the magic word.
116 8 122 69 120 20 249 124 95 104 108 116 8 122 152 120
159 124 160 255 159 125 255
.De
.IE

View File

@@ -1,8 +0,0 @@
.BP
.AP "EM INTERPRETER"
.nf
.ft CW
.ta 8 16 24 32 40 48 56 64 72 80
.so em.i
.ft P
.fi

View File

@@ -1,6 +1,6 @@
.BP
.SN 11
.S1 "EM ASSEMBLY LANGUAGE"
.bp
.P1 "EM ASSEMBLY LANGUAGE"
.PP
We use two representations for assembly language programs,
one is in ASCII and the other is the compact assembly language.
The latter needs less space than the first for the same program
@@ -16,7 +16,8 @@ The last part lists the EM instructions with the type of
arguments allowed and an indication of the function.
Appendix A gives a detailed description of the effect of all
instructions in the form of a Pascal program.
.S2 "ASCII assembly language"
.P2 "ASCII assembly language"
.PP
An assembly language program consists of a series of lines, each
line may be blank, contain one (pseudo)instruction or contain one
label.
@@ -25,13 +26,13 @@ Upper case is used in this
document merely to distinguish keywords from the surrounding prose.
Comment is allowed at the end of each line and starts with a semicolon ";".
This kind of comment does not exist in the compact form.
.A
.QQ
Labels must be placed all by themselves on a line and start in
column 1.
There are two kinds of labels, instruction and data labels.
Instruction labels are unsigned positive integers.
The scope of an instruction label is its procedure.
.A
.QQ
The pseudoinstructions CON, ROM and BSS may be preceded by a
line containing a
1\-8 character data label, the first character of which is a
@@ -46,13 +47,13 @@ These labels are considered as a special case and handled
more efficiently in compact assembly language (see below).
Note that a data label on its own or two consecutive labels are not
allowed.
.P
.PP
Each statement may contain an instruction mnemonic or pseudoinstruction.
These must begin in column 2 or later (not column 1) and must be followed
by a space, tab, semicolon or LF.
Everything on the line following a semicolon is
taken as a comment.
.P
.PP
Each input file contains one module.
A module may contain many procedures,
which may be nested.
@@ -62,14 +63,15 @@ collection of instructions and pseudoinstructions and finally an END
statement.
Pseudoinstructions are also allowed between procedures.
They do not belong to a specific procedure.
.P
.PP
All constants in EM are interpreted in the decimal base.
The ASCII assembly language accepts constant expressions
wherever constants are allowed.
The operators recognized are: +, \-, *, % and / with the usual
precedence order.
Use of the parentheses ( and ) to alter the precedence order is allowed.
.S3 "Instruction arguments"
.P3 "Instruction arguments"
.PP
Unlike many other assembly languages, the EM assembly
language requires all arguments of normal and pseudoinstructions
to be either a constant or an identifier, but not a combination
@@ -87,7 +89,7 @@ It is not allowed to add or subtract from instruction labels or procedure
identifiers,
which certainly is not a severe restriction and greatly aids
optimization.
.P
.PP
Instruction arguments can be constants,
data labels, data labels offsetted by a constant, instruction
labels and procedure identifiers.
@@ -98,7 +100,7 @@ that fit in a word.
Arguments used as offsets to pointers should fit in a
pointer-sized integer.
Finally, arguments to LDC should fit in a double-word integer.
.P
.PP
Several instructions have two possible forms:
with an explicit argument and with an implicit argument on top of the stack.
The size of the implicit argument is the wordsize.
@@ -109,7 +111,7 @@ integers on top of the stack are to be compared.
on top of the stack that specifies the size of the integers to
be compared.
Thus the following two sequences are equivalent:
.N 1
.KS
.TS
center, tab(:) ;
l r 30 l r.
@@ -118,16 +120,18 @@ LDL:\-14:LDL:\-14
::LOC:4
CMI:4:CMI:
ZEQ:*1:ZEQ:*1
.TE 1
.TE
.KE
Section 11.1.6 shows the arguments allowed for each instruction.
.S3 "Pseudoinstruction arguments"
.P3 "Pseudoinstruction arguments"
.PP
Pseudoinstruction arguments can be divided in two classes:
Initializers and others.
The following initializers are allowed: signed integer constants,
unsigned integer constants, floating-point constants, strings,
data labels, data labels offsetted by a constant, instruction
labels and procedure identifiers.
.P
.PP
Constant initializers in BSS, HOL, CON and ROM pseudoinstructions
can be followed by a letter I, U or F.
This indicator
@@ -142,10 +146,9 @@ As in instruction arguments, initializers include expressions of the form:
\&"LABEL+offset" and "LABEL\-offset".
The offset must be an unsigned decimal constant.
The 'IUF' indicators cannot be used in the offsets.
.P
.PP
Data labels are referred to by their name.
.P
.PP
Strings are surrounded by double quotes (").
Semicolon's in string do not indicate the start of comment.
In the ASCII representation the escape character \e (backslash)
@@ -153,7 +156,6 @@ alters the meaning of subsequent character(s).
This feature allows inclusion of zeroes, graphic characters and
the double quote in the string.
The following escape sequences exist:
.DS
.TS
center, tab(:);
l l l.
@@ -166,9 +168,8 @@ backslash:\e:\e\e
double quote:":\e"
bit pattern:\fBddd\fP:\e\fBddd\fP
.TE
.DE
The escape \fB\eddd\fP consists of the backslash followed by 1,
2, or 3 octal digits specifing the value of
2, or 3 octal digits specifying the value of
the desired character.
If the character following a backslash is not one of those
specified,
@@ -176,17 +177,18 @@ the backslash is ignored.
Example: CON "hello\e012\e0".
Each string element initializes a single byte.
The ASCII character set is used to map characters onto values.
.P
.PP
Instruction labels are referred to as *1, *2, etc. in both branch
instructions and as initializers.
.P
.PP
The notation $procname means the identifier for the procedure
with the specified name.
This identifier has the size of a pointer.
.S3 Notation
.P3 Notation
.PP
First, the notation used for the arguments, classes of
instructions and pseudoinstructions.
.IS 2
.DS
.TS
tab(:);
l l l.
@@ -204,18 +206,19 @@ l l l.
<...>+:\&=:one or more of <...>
[...]:\&=:optional ...
.TE
.IE
.S3 "Pseudoinstructions"
.S4 Storage declaration
.DE
.P3 "Pseudoinstructions"
.P4 "Storage declaration"
.PP
Initialized global data is allocated by the pseudoinstruction CON,
which needs at least one argument.
Each argument is used to allocate and initialize a number of
consequtive bytes in data memory.
consecutive bytes in data memory.
The number of bytes to be allocated and the alignment depend on the type
of the argument.
For each argument, an integral number of words,
determined by the argument type, is allocated and initialized.
.P
.PP
The pseudoinstruction ROM is the same as CON,
except that it guarantees that the initialized words
will not change during the execution of the program.
@@ -223,7 +226,7 @@ This information allows optimizers to do
certain calculations such as array indexing and
subrange checking at compile time instead
of at run time.
.P
.PP
The pseudoinstruction BSS allocates
uninitialized global data or large blocks of data initialized
by the same value.
@@ -239,14 +242,14 @@ the second byte by 1 etc. in assembly language.
The assembler/loader adds the base address of
the HOL block to these numbers to obtain the
absolute address in the machine language.
.P
.PP
The scope of a HOL block starts at the HOL pseudo and
ends at the next HOL pseudo or at the end of a module
whatever comes first.
Each instruction falls in the scope of at most one
HOL block, the current HOL block.
It is not allowed to have more than one HOL block per procedure.
.P
.PP
The alignment restrictions are enforced by the
pseudoinstructions.
All initializers are aligned on a multiple of their size or the wordsize
@@ -257,52 +260,51 @@ Switching to another type of fragment or placing a label forces
word-alignment.
There are three types of fragments in global data space: CON, ROM and
BSS/HOL.
.N 2
.IS 2
.PS - 4
.PT "BSS <cst1>,<val>,<cst2>"
.IP "BSS <cst1>,<val>,<cst2>"
.br
Reserve <cst1> bytes.
<val> is the value used to initialize the area.
<cst1> must be a multiple of the size of <val>.
<cst2> is 0 if the initialization is not strictly necessary,
1 if it is.
.PT "HOL <cst1>,<val>,<cst2>"
.IP "HOL <cst1>,<val>,<cst2>"
.br
Idem, but all following absolute global data references will
refer to this block.
Only one HOL is allowed per procedure,
it has to be placed before the first instruction.
.PT "CON <val>+"
.IP "CON <val>+"
.br
Assemble global data words initialized with the <val> constants.
.PT "ROM <val>+"
.IP "ROM <val>+"
.br
Idem, but the initialized data will never be changed by the program.
.PE
.IE
.S4 Partitioning
.P4 "Partitioning"
.PP
Two pseudoinstructions partition the input into procedures:
.IS 2
.PS - 4
.PT "PRO <pro>[,<cst>]"
.IP "PRO <pro>[,<cst>]"
.br
Start of procedure.
<pro> is the procedure name.
<cst> is the number of bytes for locals.
The number of bytes for locals must be specified in the PRO or
END pseudoinstruction.
When specified in both, they must be identical.
.PT "END [<cst>]"
.IP "END [<cst>]"
.br
End of Procedure.
<cst> is the number of bytes for locals.
The number of bytes for locals must be specified in either the PRO or
END pseudoinstruction or both.
.PE
.IE
.S4 Visibility
.P4 "Visibility"
.PP
Names of data and procedures in an EM module can either be
internal or external.
External names are known outside the module and are used to link
several pieces of a program.
Internal names are not known outside the modules they are used in.
Other modules will not 'see' an internal name.
.A
.QQ
To reduce the number of passes needed,
it must be known at the first occurrence whether
a name is internal or external.
@@ -312,46 +314,51 @@ If the first occurrence of a name is a reference,
the name is considered to be external.
If the first occurrence is in one of the following pseudoinstructions,
the effect of the pseudo has precedence.
.IS 2
.PS - 4
.PT "EXA <dlb>"
.IP "EXA <dlb>"
.br
External name.
<dlb> is known, possibly defined, outside this module.
Note that <dlb> may be defined in the same module.
.PT "EXP <pro>"
.IP "EXP <pro>"
.br
External procedure identifier.
Note that <pro> may be defined in the same module.
.PT "INA <dlb>"
.IP "INA <dlb>"
.br
Internal name.
<dlb> is internal to this module and must be defined in this module.
.PT "INP <pro>"
.IP "INP <pro>"
.br
Internal procedure.
<pro> is internal to this module and must be defined in this module.
.PE
.IE
.S4 Miscellaneous
.P4 "Miscellaneous"
.PP
Two other pseudoinstructions provide miscellaneous features:
.IS 2
.PS - 4
.PT "EXC <cst1>,<cst2>"
.IP "EXC <cst1>,<cst2>"
.br
Two blocks of instructions preceding this one are
interchanged before being processed.
<cst1> gives the number of lines of the first block.
<cst2> gives the number of lines of the second one.
Blank and pure comment lines do not count.
.PT "MES <cst>[,<par>]*"
This instruction is obsolete. Its use is strongly discouraged.
.IP "MES <cst>[,<par>]*"
.br
A special type of comment.
Used by compilers to communicate with the
optimizer, assembler, etc. as follows:
.VS 1 0
.PS - 4
.PT "MES 0"
.RS
.IP "MES 0"
.br
An error has occurred, stop further processing.
.PT "MES 1"
.IP "MES 1"
.br
Suppress optimization.
.PT "MES 2,<cst1>,<cst2>"
.IP "MES 2,<cst1>,<cst2>"
.br
Use wordsize <cst1> and pointer size <cst2>.
.PT "MES 3,<cst1>,<cst2>,<cst3>,<cst4>"
.IP "MES 3,<cst1>,<cst2>,<cst3>,<cst4>"
.br
Indicates that a local variable is never referenced indirectly.
Used to indicate that a register may be used for a specific
variable.
@@ -360,51 +367,57 @@ and offset from LB if negative.
<cst2> gives the size of the variable.
<cst3> indicates the class of the variable.
The following values are currently recognized:
.PS
.PT 0
The variable can be used for anything.
.PT 1
The variable is used as a loopindex.
.PT 2
The variable is used as a pointer.
.PT 3
The variable is used as a floating point number.
.PE 0
.br
0\0\0\0The variable can be used for anything.
.br
1\0\0\0The variable is used as a loopindex.
.br
2\0\0\0The variable is used as a pointer.
.br
3\0\0\0The variable is used as a floating point number.
.br
<cst4> gives the priority of the variable,
higher numbers indicate better candidates.
.PT "MES 4,<cst>,<str>"
.IP "MES 4,<cst>,<str>"
.br
Number of source lines in file <str> (for profiler).
.PT "MES 5"
.IP "MES 5"
.br
Floating point used.
.PT "MES 6,<val>*"
.IP "MES 6,<val>*"
.br
Comment. Used to provide comments in compact assembly language.
.PT "MES 7,....."
.IP "MES 7,....."
.br
Reserved.
.PT "MES 8,<pro>[,<dlb>]..."
.IP "MES 8,<pro>[,<dlb>]..."
.br
Library module. Indicates that the module may only be loaded
if it is useful, that is, if it can satisfy any unresolved
references during the loading process.
May not be preceded by any other pseudo, except MES's.
.PT "MES 9,<cst>"
.IP "MES 9,<cst>"
.br
Guarantees that no more than <cst> bytes of parameters are
accessed, either directly or indirectly.
.PT "MES 10,<cst>[,<par>]*
.IP "MES 10,<cst>[,<par>]*
.br
This message number is reserved for the global optimizer.
It inserts these messages in its output as hints to backends.
<cst> indicates the type of hint.
.PT "MES 11"
.IP "MES 11"
.br
Procedures containing this message are possible destinations of
non-local goto's with the GTO instruction.
Some backends keep locals in registers,
the locals in this procedure should not be kept in registers and
all registers containing locals of other procedures should be
saved upon entry to this procedure.
.PE 1
.VS 1 1
.RE
.IP ""
Each backend is free to skip irrelevant MES pseudos.
.PE
.IE
.S2 "The Compact Assembly Language"
.P2 "The Compact Assembly Language"
.PP
The assembler accepts input in a highly encoded form.
This
form is intended to reduce the amount of file transport between the
@@ -413,16 +426,14 @@ and back ends, and also reduces the amount of storage required for storing
libraries.
Libraries are stored as archived compact assembly language, not machine
language.
.P
.PP
When beginning to read the input, the assembler is in neutral state, and
expects either a label or an instruction (including the pseudoinstructions).
The meaning of the next byte(s) when in neutral state is as follows, where
b1, b2
etc. represent the succeeding bytes.
.N 1
.DS
.TS
tab(:) ;
tab(:);
rw17 4 l.
0:Reserved for future use
1\-129:Machine instructions, see Appendix A, alphabetical list
@@ -432,37 +443,31 @@ rw17 4 l.
180\-239:Instruction labels 0 \- 59 (180 is local label 0 etc.)
240\-244:See the Common Table below
245\-255:Not used
.TE 1
.DE 0
.TE
After a label, the assembler is back in neutral state; it can immediately
accept another label or an instruction in the next byte.
No linefeeds are used to separate lines.
.P
.PP
If an opcode expects no arguments,
the assembler is back in neutral state after
reading the one byte containing the instruction number.
If it has one or
more arguments (only pseudos have more than 1), the arguments follow directly,
encoded as follows:
.N 1
.IS 2
.TS
tab(:);
r l.
0\-239:Offsets from \-120 to 119
240\-255:See the Common Table below
.TE 1
.TE
Absence of an optional argument is indicated by a special
byte.
.IE 2
.CS
Common Table for Neutral State and Arguments
.CE
.TS
tab(:);
c s s s
c c s c
l8 l l8 l.
l4 l l4 l.
Common Table for Neutral State and Arguments
class:bytes:description
<ilb>:240:b1:Instruction label b1 (Not used for branches)
@@ -484,55 +489,51 @@ class:bytes:description
<end>:255::Delimiter for argument lists or
:::indicates absence of optional argument
.TE 1
.P
.PP
The bytes specifying the value of a 16, 32 or 64 bit constant
are presented in two's complement notation, with the least
significant byte first. For example: the value of a 32 bit
constant is ((s4*256+b3)*256+b2)*256+b1, where s4 is b4\-256 if
b4 is greater than 128 else s4 takes the value of b4.
A <string> consists of a <cst> inmediatly followed by
A <string> consists of a <cst> immediately followed by
a sequence of bytes with length <cst>.
.P
.PP
.ne 8
The pseudoinstructions fall into several categories, depending on their
arguments:
.N 1
.DS
Group 1 \- EXC, BSS, HOL have a known number of arguments
Group 2 \- EXA, EXP, INA, INP have a string as argument
Group 3 \- CON, MES, ROM have a variable number of various things
Group 4 \- END, PRO have a trailing optional argument.
.DE 1
Group 1 \- EXC, BSS, HOL have a known number of arguments
Group 2 \- EXA, EXP, INA, INP have a string as argument
Group 3 \- CON, MES, ROM have a variable number of various things
Group 4 \- END, PRO have a trailing optional argument.
.DE
Groups 1 and 2
use the encoding described above.
Group 3 also uses the encoding listed above, with an <end> byte after the
last argument to indicate the end of the list.
Group 4 uses
an <end> byte if the trailing argument is not present.
.N 2
.IS 2
.TS
tab(|);
l s l
l s s
l 2 lw(46) l.
l 2 lw(30) l.
Example ASCII|Example compact
(LOC = 69, BRA = 18 here):
2||182
1||181
LOC|10|69 130
LOC|\-10|69 110
LOC|300|69 245 44 1
BRA|*19|18 139
\0LOC|10|69 130
\0LOC|\-10|69 110
\0LOC|300|69 245 44 1
\0BRA|*19|18 139
300||241 44 1
.3||242 3
CON|4,9,*2,$foo|151 124 129 240 2 249 123 102 111 111 255
CON|.35|151 242 35 255
.TE 0
.IE 0
.S2 "Assembly language instruction list"
.P
\0CON|4,9,*2,$foo|151 124 129 240 2 249 123 102 111 111 255
\0CON|.35|151 242 35 255
.TE
.P2 "Assembly language instruction list"
.PP
For each instruction in the list the range of argument values
in the assembly language is given.
The column headed \fIassem\fP contains the mnemonics defined
@@ -556,7 +557,7 @@ are indicated by letters:
.ds z \fBz\fP
.ds o \fBo\fP
.ds - \fB\-\fP
.N 1
.sp
.TS
tab(:);
c s l l
@@ -577,8 +578,8 @@ l l 15 l l.
\&\*b:ilb:>= 0:label number
\&\*r:cst:0,1,2:register number
\&\*-:::no argument
.TE 1
.P
.TE
.PP
The * at the rationale for \*w indicates that the argument
can either be given as argument or on top of the stack.
If the argument is omitted, the argument is fetched from the
@@ -587,7 +588,7 @@ it is assumed to be a wordsized unsigned integer.
Instructions that check for undefined integer or floating-point
values and underflow or overflow
are indicated below by (*).
.N 1
.sp 1
.DS
.ta 12n
GROUP 1 \- LOAD
@@ -684,7 +685,7 @@ GROUP 7 \- INCREMENT/DECREMENT/ZERO
ZER \*w : Load \*w zero bytes
.DE
.DS \" ???
.DS
GROUP 8 \- CONVERT (stack: source, source size, dest. size (top))
CII \*- : Convert integer to integer (*)
@@ -741,7 +742,7 @@ GROUP 12 \- COMPARE
TGT \*- : True if greater, i.e. iff top of stack > 0
.DE
.DS \" ???
.DS
GROUP 13 \- BRANCH
BRA \*b : Branch unconditionally to label \*b
@@ -798,4 +799,4 @@ GROUP 15 \- MISCELLANEOUS
SIM \*- : Store 16 bit ignore mask
STR \*r : Store register (0=LB, 1=SP, 2=HP)
TRP \*- : Cause trap to occur (Error number on stack)
.DE 0
.DE

View File

@@ -1,6 +1,4 @@
.MS T A 0
.ME
.BP
.MS B A 0
.ME
.CT
.de PT
..
.bp
.Ct

View File

@@ -1,69 +1,62 @@
.SN 7
.BP
.S1 "DESCRIPTORS"
.bp
.P1 "DESCRIPTORS"
.PP
Several instructions use descriptors, notably the range check instruction,
the array instructions, the goto instruction and the case jump instructions.
Descriptors reside in data space.
They may be constructed at run time, but
more often they are fixed and allocated in ROM data.
.P
.PP
All instructions using descriptors, except GTO, have as argument
the size of the integers in the descriptor.
All implementations have to allow integers of the size of a
word in descriptors.
All integers popped from the stack and used for indexing or comparing
must have the same size as the integers in the descriptor.
.S2 "Range check descriptors"
.P2 "Range check descriptors"
.PP
Range check descriptors consist of two integers:
.IS 2
.PS 1 4 "" .
.PT
lower bound~~~~~~~signed
.PT
upper bound~~~~~~~signed
.PE
.IE
.IP 1.
lower bound signed
.IP 2.
upper bound signed
.LP
The range check instruction checks an integer on the stack against
these bounds and causes a trap if the value is outside the interval.
The value itself is neither changed nor removed from the stack.
.S2 "Array descriptors"
.P2 "Array descriptors"
.PP
Each array descriptor describes a single dimension.
For multi-dimensional arrays, several array instructions are
needed to access a single element.
Array descriptors contain the following three integers:
.IS 2
.PS 1 4 "" .
.PT
lower bound~~~~~~~~~~~~~~~~~~~~~signed
.PT
upper bound \- lower bound~~~~~~~unsigned
.PT
number of bytes per element~~~~~unsigned
.PE
.IE
.IP 1.
lower bound signed
.IP 2.
upper bound \- lower bound unsigned
.IP 3.
number of bytes per element unsigned
.LP
The array instructions LAR, SAR and AAR have the pointer to the start
of the descriptor as operand on the stack.
.sp
.LP
The element A[I] is fetched as follows:
.IS 2
.PS 1 4 "" .
.PT
.IP 1.
Stack the address of A (e.g., using LAE or LAL)
.PT
.IP 2.
Stack the value of I (n-byte integer)
.PT
.IP 3.
Stack the pointer to the descriptor (e.g., using LAE)
.PT
.IP 4.
LAR n (n is the size of the integers in the descriptor and I)
.PE
.IE
.LP
All array instructions first pop the address of the descriptor
and the index.
If the index is not within the bounds specified, a trap occurs.
If ok, (I~\-~lower bound) is multiplied
by the number of bytes per element (the third word). The result is added
to the address of A and replaces A on the stack.
.A
.QQ
At this point LAR, SAR and AAR diverge.
AAR is finished. LAR pops the address and fetches the data
item,
@@ -71,30 +64,29 @@ the size being specified by the descriptor.
The usual restrictions for memory access must be obeyed.
SAR pops the address and stores the
data item now exposed.
.S2 "Non-local goto descriptors"
.P2 "Non-local goto descriptors"
.PP
The GTO instruction provides a way of returning directly to any
active procedure invocation.
The argument of the instruction is the address of a descriptor
containing three pointers:
.IS 2
.PS 1 4 "" .
.PT
.IP 1.
value of PC after the jump
.PT
.IP 2.
value of SP after the jump
.PT
.IP 3.
value of LB after the jump
.PE
.IE
.LP
GTO replaces the loads PC, SP and LB from the descriptor,
thereby jumping to a procedure
and removing zeor or more frames from the stack.
and removing zero or more frames from the stack.
The LB, SP and PC in the descriptor must belong to a
dynamically enclosing procedure,
because some EM implementations will need to backtrack through
the dynamic chain and use the implementation dependent data
in frames to restore registers etc.
.S2 "Case descriptors"
.P2 "Case descriptors"
.PP
The case jump instructions CSA and CSB both
provide multiway branches selected by a case index.
Both fetch two operands from the stack:
@@ -106,7 +98,7 @@ Therefore, the descriptors for CSA and CSB,
as shown in figure 4, are different.
All pointers in the table must be addresses of instructions in the
procedure executing the case instruction.
.P
.PP
CSA selects the new PC by indexing.
If the index, a signed integer, is greater than or equal to
the lower bound and less than or equal to the upper bound,
@@ -116,23 +108,22 @@ The table does not contain the value of the upper bound,
but the value of upper-lower as an unsigned integer.
The default instruction pointer is used when the index is out of bounds.
If the resulting PC is 0, then trap.
.P
.PP
CSB selects the new PC by searching.
The table is searched for an entry with index value equal to the case index.
That entry or, if none is found, the default entry contains the
new PC.
When the resulting PC is 0, a trap is performed.
.P
.PP
The choice of which case instruction to use for
each source language case statement
is up to the front end.
If the range of the index value is dense, i.e
.DS
(highest value \- lowest value) / number of cases
.DE 1
.DE
is less than some threshold, then CSA is the obvious choice.
If the range is sparse, CSB is better.
.N 2
.Dr 30
|--------------------| |--------------------| high address
| pointer for upb | | pointer n-1 |

View File

@@ -1,6 +1,6 @@
.BP
.SN 4
.S1 "DATA ADDRESS SPACE"
.bp
.P1 "DATA ADDRESS SPACE"
.PP
The data address space is divided into three parts, called 'areas',
each with its own addressing method:
global data area,
@@ -9,24 +9,24 @@ and heap data area.
These data areas must be part of the same
address space because all data is accessed by
the same type of pointers.
.P
.PP
Space for global data is reserved using several pseudoinstructions in the
assembly language, as described in
the next paragraph and chapter 11.
The size of the global data area is fixed per program.
.A
.QQ
Global data is addressed absolutely in the machine language.
Many instructions are available to address global data.
They all have an absolute address as argument.
Examples are LOE, LAE and STE.
.P
.PP
Part of the global data area is initialized by the
compiler, the
rest is not initialized at all or is initialized
with a value, typically \-32768 or 0.
Part of the initialized global data may be made read-only
if the implementation supports protection.
.P
.PP
The local data area is used as a stack,
which grows from high to low addresses
and contains some data for each active procedure
@@ -44,14 +44,14 @@ Variables in other active procedures are addressed by following
the chain of statically enclosing procedures using the LXL or LXA instruction.
The variables in dynamically enclosing procedures can be
addressed with the use of the DCH instruction.
.A
.QQ
Many instructions have offsets to LB as argument,
for instance LOL, LAL and STL.
The arguments of these instructions range from \-1 to some
(negative) minimum
for the access of local storage and from 0 to some (positive)
maximum for parameter access.
.P
.PP
The procedure call instructions CAL and CAI each create a new frame
on the stack.
Each procedure has an assembly-time parameter specifying
@@ -62,7 +62,7 @@ Each procedure, therefore, starts with a stack with the local variables
already allocated.
The return instructions RET and RTT remove a frame.
The actual parameters must be removed by the calling procedure.
.P
.PP
RET may copy some words from the stack of
the returning procedure to an unnamed 'function return area'.
This area is available for 'READ-ONCE' access using the LFR instruction.
@@ -70,7 +70,7 @@ The result of a LFR is only defined if the size used to fetch
is identical to the size used in the last return.
The instruction ASP, used to remove the parameters from the
stack, the branch instruction BRA and the non-local goto
instrucion GTO are the only ones that leave the contents of
instruction GTO are the only ones that leave the contents of
the 'function return area' intact.
All other instructions are allowed to destroy the function
return area.
@@ -86,7 +86,7 @@ area is twice the pointer size,
because we want to be able to handle 'procedure instance
identifiers' which consist of a procedure identifier and the LB
of a frame belonging to that procedure.
.P
.PP
The heap data area grows upwards, to higher numbered
addresses.
It is initially empty.
@@ -96,7 +96,8 @@ The heap pointer may be manipulated
by the LOR and STR instructions.
The heap can only be addressed indirectly,
by pointers derived from previous values of HP.
.S2 "Global data area"
.P2 "Global data area"
.PP
The initial size of the global data area is determined at assembly time.
Global data is allocated by several
pseudoinstructions in the EM assembly
@@ -109,7 +110,7 @@ under certain conditions, several blocks are allocated
in a single fragment.
This guarantees that the bytes of these blocks
are consecutive.
.P
.PP
Global data is addressed absolutely in binary
machine language.
Most compilers, however,
@@ -124,7 +125,7 @@ It is the task of the assembler/loader to
translate these labels into absolute addresses.
These labels may also be used
in CON and ROM pseudoinstructions to initialize pointers.
.P
.PP
The pseudoinstruction CON allocates initialized data.
ROM acts like CON but indicates that the initialized data will
not change during execution of the program.
@@ -134,7 +135,7 @@ data.
The pseudoinstruction HOL is similar to BSS,
but it alters the meaning of subsequent absolute addressing in
the assembly language.
.P
.PP
Another type of global data is a small block,
called the ABS block, with an implementation defined size.
Storage in this type of block can only be addressed
@@ -146,7 +147,7 @@ update this counter.
A pointer at location 4 points to a string containing the
current source file name.
The instruction FIL can be used to update the pointer.
.P
.PP
All numeric arguments of the instructions that address
the global data area refer to locations in the
ABS block unless
@@ -158,7 +159,7 @@ Thus LOE 0 loads the zeroth word of the most recent HOL, unless no HOL has
appeared in the current file so
far, in which case it loads the zeroth word of the
ABS fragment.
.P
.PP
The global data area is highly fragmented.
The ABS block and each HOL and BSS block are separate fragments.
The way fragments are formed from CON and ROM blocks is more complex.
@@ -169,12 +170,11 @@ allocated consecutively in a single fragment, unless
these CON pseudos are separated in the assembly language program
by a data label definition or one or more of the following pseudos:
.DS
ROM, BSS, HOL and END
ROM, BSS, HOL and END
.DE
An analogous rule holds for ROM pseudos.
.S2 "Local data area"
.P2 "Local data area"
.PP
The local data area consists of a sequence of frames, one for
each active procedure.
Below the frame of the current procedure resides the
@@ -183,17 +183,15 @@ Frames are generated by procedure calls and are
removed by procedure returns.
A procedure frame consists of six 'zones':
.DS
1. The return status block
2. The local variables and compiler temporaries
3. The register save block
4. The dynamic local generators
5. The operand stack.
6. The parameters of a procedure one level deeper
1. The return status block
2. The local variables and compiler temporaries
3. The register save block
4. The dynamic local generators
5. The operand stack.
6. The parameters of a procedure one level deeper
.DE
A sample frame is shown in Figure 1.
.P
.PP
Before a procedure call is performed the actual
parameters are pushed onto the stack of the calling procedure.
The exact details are compiler dependent.
@@ -216,11 +214,11 @@ These instructions assume that this parameter contains the LB of
the statically enclosing procedure.
Procedures that do not have a dynamically enclosing procedure
do not need a static link at offset 0.
.P
.PP
Two instructions are available to perform procedure calls, CAL
and CAI.
Several tasks are performed by these call instructions.
.A
.QQ
First, a part of the status of the calling procedure is
saved on the stack in the return status block.
This block should contain the return address of the calling
@@ -235,12 +233,12 @@ The stack frames need not be contiguous then and the first
status save area can contain the parameter base AB,
which has the value of SP just after the last parameter has
been pushed.
.A
.QQ
Second, the LB is changed to point to the
first word above the local variables.
The new LB is a copy of the SP after the return status
block has been pushed.
.A
.QQ
Third, the amount of local storage needed by the procedure is
reserved.
The parameters and local storage are accessed by the same instructions.
@@ -256,28 +254,28 @@ The initial value of the allocated words is
not defined, but implementations that check for undefined
values will probably initialize them with a
special 'undefined' pattern, typically \-32768.
.A
.QQ
Fourth, any EM implementation is allowed to reserve a variable size
block beneath the local variables.
This block could, for example, be used to save a variable number
of registers.
.A
.QQ
Finally, the address of the entry point of the called procedure
is loaded into the Program Counter.
.P
.PP
The ASP instruction can be used to allocate further (dynamic)
local storage.
The base address of such storage must be obtained with a LOR~SP
instruction.
This same instruction ASP may also be used
to remove some words from the stack.
.P
.PP
There is a version of ASP, called ASS, which fetches the number
of bytes to allocate from the stack.
It can be used to allocate space for local
objects whose size is unknown at compile time,
so called 'dynamic local generators'.
.P
.PP
Control is returned to the calling procedure with a RET instruction.
Any return value is then copied to the 'function return area'.
The frame created by the call is deallocated and the status of
@@ -293,7 +291,7 @@ Violating this restriction might result in hard to detect
errors.
The calling procedure has to remove the parameters from the stack.
This can be done with the aforementioned ASP instruction.
.P
.PP
Each procedure frame is a separate fragment.
Because any fragment may be placed anywhere in memory,
procedure frames need not be contiguous.
@@ -345,7 +343,8 @@ procedure frames need not be contiguous.
.Df
Figure 1. A sample procedure frame and parameters.
.De
.S2 "Heap data area"
.P2 "Heap data area"
.PP
The heap area starts empty, with HP
pointing to the low end of it.
HP always contains a word address.
@@ -357,10 +356,10 @@ If it is smaller, then the heap shrinks.
HP may never point below its original value.
All words between the current HP and the original HP
are allocated to the heap.
The heap may not grow into a part of memory that is already allocated
for the stack.
The heap may not grow into a part of memory that is already allocated.
When this is attempted, the STR instruction will cause a trap to occur.
.P
In this case, HP retains its old value.
.PP
The only way to address the heap is indirectly.
Whenever an object is allocated by increasing HP,
then the old HP value must be saved and can be used later to address
@@ -370,7 +369,7 @@ is no longer part of the heap, then an attempt to access
the object is not allowed.
Furthermore, if the heap pointer is increased again to above
the object address, then access to the old object gives undefined results.
.P
.PP
The heap is a single fragment.
All bytes have consecutive addresses.
No limits are imposed on the size of the heap as long as it fits

View File

@@ -1,3 +1,10 @@
.bp
.AP "EM INTERPRETER"
.nf
.ft CW
.lg 0
.nr x \w' '
.ta \nxu +\nxu +\nxu +\nxu +\nxu +\nxu +\nxu +\nxu +\nxu +\nxu
{ This is an interpreter for EM. It serves as the official machine
definition. This interpreter must run on a machine which supports
@@ -159,7 +166,7 @@ var
iclass: insclass; { true for escaped opcodes }
dispat: array[insclass,byte] of dispatch;
retsize:size; { holds size of last LFR }
insr: mnem; { holds the instructionnumber }
insr: mnem; { holds the instruction number }
halted: boolean; { normally false }
exitstatus:word; { parameter of MON 1 }
ignmask:word; { ignore mask for traps }
@@ -205,7 +212,8 @@ begin if (a<sp) or (a mod wsize<>0) then trap(ESTACK); lb:=a end;
procedure newhp(a:adr);
begin if (a>sp) or (a>maxdata+1) or (a mod wsize<>0)
then trap(EHEAP); hp:=a
then trap(EHEAP)
else hp:=a
end;
function argc(a:double):sword;
@@ -521,7 +529,7 @@ begin j:=0;
end;
{---------------------------------------------------------------------------}
{ Array indexing
{ Array indexing }
{---------------------------------------------------------------------------}
function arraycalc(c:adr):adr; { subscript calculation }
@@ -866,6 +874,7 @@ begin
begin
iflag:=f; instr:=insr;
if '2' in cset then ilength:=2
else if 'u' in cset then ilength:=2
else if '4' in cset then ilength:=4
else if '8' in cset then ilength:=8
else if (mini in f) or (short in f) then
@@ -1664,3 +1673,6 @@ case insr of
writeln('halt with exit status: ',exitstatus:1);
doident;
end.
.ft P
.lg 1
.fi

View File

@@ -1,56 +1,43 @@
.SN 8
.VS 1 0
.BP
.S1 "ENVIRONMENT INTERACTIONS"
.bp
.P1 "ENVIRONMENT INTERACTIONS"
.PP
EM programs can interact with their environment in three ways.
Two, starting/stopping and monitor calls, are dealt with in this chapter.
The remaining way to interact, interrupts, will be treated
together with traps in chapter 9.
.S2 "Program starting and stopping"
.P2 "Program starting and stopping"
.PP
EM user programs start with a call to a procedure called
m_a_i_n.
_m_a_i_n.
The assembler and backends look for the definition of a procedure
with this name in their input.
The call passes three parameters to the procedure.
The parameters are similar to the parameters supplied by the
UNIX
.FS
UNIX is a Trademark of Bell Laboratories.
.FE
.UX
operating system to C programs.
These parameters are often called
.BW argc ,
.B argv
and
.BW envp .
These parameters are often called \fBargc\fP, \fBargv\fP and \fBenvp\fP.
Argc is the parameter nearest to LB and is a wordsized integer.
The other two are pointers to the first element of an array of
string pointers.
.N
The
.B argv
array contains
.B argc
The \fBargv\fP array contains \fBargc\fP
strings, the first of which contains the program call name.
The other strings in the
.B argv
The other strings in the \fBargv\fP
array are the program parameters.
.P
The
.B envp
.PP
The \fBenvp\fP
array contains strings in the form "name=string", where 'name'
is the name of an environment variable and string its value.
The
.B envp
The \fBenvp\fP
is terminated by a zero pointer.
.P
.PP
An EM user program stops if the program returns from the first
invocation of m_a_i_n.
invocation of _m_a_i_n.
The contents of the function return area are used to procure a
wordsized program return code.
EM programs also stop when traps and interrupts occur that are
not caught and when the exit monitor call is executed.
.S2 "Input/Output and other monitor calls"
.P2 "Input/Output and other monitor calls"
.PP
EM differs from most conventional machines in that it has high level i/o
instructions.
Typical instructions are OPEN FILE and READ FROM FILE instead
@@ -58,7 +45,7 @@ of low level instructions such as setting and clearing
bits in device registers.
By providing such high level i/o primitives, the task of implementing
EM on various non EM machines is made considerably easier.
.P
.PP
I/O is initiated by the MON instruction, which expects an iocode on top
of the stack.
Often there are also parameters which are pushed on the
@@ -68,45 +55,35 @@ Some i/o functions also provide results, which are returned on the stack.
In the list of monitor calls we use several types of parameters and results,
these types consist of integers and unsigneds of varying sizes, but never
smaller than the wordsize, and the two pointer types.
.N 1
.LP
The names of the types used are:
.IS 4
.PS - 10
.PT int
an integer of wordsize
.PT int2
an integer whose size is the maximum of the wordsize and 2
bytes
.PT int4
an integer whose size is the maximum of the wordsize and 4
bytes
.PT intp
an integer with the size of a pointer
.PT uns2
an unsigned integer whose size is the maximum of the wordsize and 2
.PT unsp
an unsigned integer with the size of a pointer
.PT ptr
a pointer into data space
.PE 1
.IE 0
.DS
.TS
tab(:);
l l.
int:an integer of wordsize
int2:an integer whose size is the maximum of the wordsize and 2 bytes
int4:an integer whose size is the maximum of the wordsize and 4 bytes
intp:an integer with the size of a pointer
uns2:an unsigned integer whose size is the maximum of the wordsize and 2
unsp:an unsigned integer with the size of a pointer
ptr:a pointer into data space
.TE
.DE
.LP
The table below lists the i/o codes with their results and
parameters.
This list is similar to the system calls of the UNIX Version 7
operating system.
.A
.QQ
To execute a monitor call, proceed as follows:
.IS 2
.N 1
.PS a 4 "" )
.PT
.IP a)
Stack the parameters, in reverse order, last parameter first.
.PT
.IP b)
Push the monitor call number (iocode) onto the stack.
.PT
.IP c)
Execute the MON instruction.
.PE 1
.IE
.LP
An error code is present on the top of the stack after
execution of most monitor calls.
If this error code is zero, the call performed the action
@@ -117,94 +94,100 @@ This construction enables programs to test for failure with a
single instruction (~TEQ or TNE~) and still find out the cause of
the failure.
The result name 'e' is reserved for the error code.
.N 1
.ne 5
.LP
List of monitor calls.
.DS B
.ta 2n 8n 16n 32n 48n
number name parameters results function
.LP
.nf
.na
.ta 4n 13n 29n 52n
nr name parameters results function
1 Exit status:int Terminate this process
2 Fork e,flag,pid:int Spawn new process
3 Read fildes:int;buf:ptr;nbytes:unsp
e:int;rbytes:unsp Read from file
4 Write fildes:int;buf:ptr;nbytes:unsp
e:int;wbytes:unsp Write on a file
5 Open string:ptr;flag:int
e,fildes:int Open file for read and/or write
6 Close fildes:int e:int Close a file
7 Wait e:int;status,pid:int2
Wait for child
8 Creat string:ptr;mode:int
e,fildes:int Create a new file
9 Link string1,string2:ptr
e:int Link to a file
10 Unlink string:ptr e:int Remove directory entry
12 Chdir string:ptr e:int Change default directory
14 Mknod string:ptr;mode,addr:int2
e:int Make a special file
15 Chmod string:ptr;mode:int2
e:int Change mode of file
16 Chown string:ptr;owner,group:int2
e:int Change owner/group of a file
18 Stat string,statbuf:ptr
e:int Get file status
19 Lseek fildes:int;off:int4;whence:int
e:int;oldoff:int4 Move read/write pointer
20 Getpid pid:int2 Get process identification
21 Mount special,string:ptr;rwflag:int
e:int Mount file system
22 Umount special:ptr e:int Unmount file system
23 Setuid userid:int2 e:int Set user ID
24 Getuid e_uid,r_uid:int2 Get user ID
25 Stime time:int4 e:int Set time and date
26 Ptrace request:int;pid:int2;addr:ptr;data:int
e,value:int Process trace
27 Alarm seconds:uns2 previous:uns2 Schedule signal
28 Fstat fildes:int;statbuf:ptr
e:int Get file status
29 Pause Stop until signal
30 Utime string,timep:ptr
e:int Set file times
33 Access string:ptr;mode:int
e:int Determine file accessibility
34 Nice incr:int Set program priority
35 Ftime bufp:ptr e:int Get date and time
36 Sync Update filesystem
37 Kill pid:int2;sig:int
e:int Send signal to a process
41 Dup fildes,newfildes:int
e,fildes:int Duplicate a file descriptor
42 Pipe e,w_des,r_des:int Create a pipe
43 Times buffer:ptr Get process times
44 Profil buff:ptr;bufsiz,offset,scale:intp Execution time profile
46 Setgid gid:int2 e:int Set group ID
47 Getgid e_gid,r_gid:int Get group ID
48 Sigtrp trapno,signo:int
e,prevtrap:int See below
51 Acct file:ptr e:int Turn accounting on or off
53 Lock flag:int e:int Lock a process
54 Ioctl fildes,request:int;argp:ptr
e:int Control device
56 Mpxcall cmd:int;vec:ptr e:int Multiplexed file handling
59 Exece name,argv,envp:ptr
e:int Execute a file
60 Umask complmode:int2 oldmask:int2 Set file creation mode mask
61 Chroot string:ptr e:int Change root directory
.DE 1
1 Exit status:int Terminate this process
2 Fork e,flag,pid:int Spawn new process
3 Read fildes:int;buf:ptr;nbytes:unsp
e:int;rbytes:unsp Read from file
4 Write fildes:int;buf:ptr;nbytes:unsp
e:int;wbytes:unsp Write on a file
5 Open string:ptr;flag:int
e,fildes:int Open file for read and/or write
6 Close fildes:int e:int Close a file
7 Wait e:int;status,pid:int2
Wait for child
8 Creat string:ptr;mode:int
e,fildes:int Create a new file
9 Link string1,string2:ptr
e:int Link to a file
10 Unlink string:ptr e:int Remove directory entry
12 Chdir string:ptr e:int Change default directory
14 Mknod string:ptr;mode,addr:int2
e:int Make a special file
15 Chmod string:ptr;mode:int2
e:int Change mode of file
16 Chown string:ptr;owner,group:int2
e:int Change owner/group of a file
18 Stat string,statbuf:ptr
e:int Get file status
19 Lseek fildes:int;off:int4;whence:int
e:int;oldoff:int4 Move read/write pointer
20 Getpid pid:int2 Get process identification
21 Mount special,string:ptr;rwflag:int
e:int Mount file system
22 Umount special:ptr e:int Unmount file system
23 Setuid userid:int2 e:int Set user ID
24 Getuid e_uid,r_uid:int2 Get user ID
25 Stime time:int4 e:int Set time and date
26 Ptrace request:int;pid:int2;addr:ptr;data:int
e,value:int Process trace
27 Alarm seconds:uns2 previous:uns2 Schedule signal
28 Fstat fildes:int;statbuf:ptr
e:int Get file status
29 Pause Stop until signal
30 Utime string,timep:ptr
e:int Set file times
33 Access string:ptr;mode:int
e:int Determine file accessibility
34 Nice incr:int Set program priority
35 Ftime bufp:ptr e:int Get date and time
36 Sync Update filesystem
37 Kill pid:int2;sig:int
e:int Send signal to a process
41 Dup fildes,newfildes:int
e,fildes:int Duplicate a file descriptor
42 Pipe e,w_des,r_des:int Create a pipe
43 Times buffer:ptr Get process times
44 Profil buff:ptr;bufsiz,offset,scale:intp
Execution time profile
46 Setgid gid:int2 e:int Set group ID
47 Getgid e_gid,r_gid:int Get group ID
48 Sigtrp trapno,signo:int
e,prevtrap:int See below
51 Acct file:ptr e:int Turn accounting on or off
53 Lock flag:int e:int Lock a process
54 Ioctl fildes,request:int;argp:ptr
e:int Control device
56 Mpxcall cmd:int;vec:ptr e:int Multiplexed file handling
59 Exece name,argv,envp:ptr
e:int Execute a file
60 Umask mask:int2 oldmask:int2 Set file creation mode mask
61 Chroot string:ptr e:int Change root directory
.fi
.ad
.LP
Codes 0, 11, 13, 17, 31, 32, 38, 39, 40, 45, 49, 50, 52,
55, 57, 58, 62, and 63 are
not used.
.P
.PP
All monitor calls, except fork and sigtrp
are the same as the UNIX version 7 system calls.
.P
.PP
The sigtrp entry maps UNIX signals onto EM interrupts.
Normally, trapno is in the range 0 to 252.
In that case it requests that signal signo
will cause trap trapno to occur.
When given trap number \-2, default signal handling is reset, and when given
trap number \-3, the signal is ignored.
.P
.PP
The flag returned by fork is 1 in the child process and 0 in
the parent.
The pid returned is the process-id of the other process.

View File

@@ -86,7 +86,7 @@
lol 0
adp 2
sti 8 ; r.r2 :=
lni ; was lin 23 prior to optimization
lni ; was lin 30 prior to optimization
lal -224
lol -4
lae .2
@@ -121,7 +121,7 @@
sti 8 ; r2 := x + y
loc 0
sil -226 ; r1 := 0
lin 34 ; note the abscence of the unnecesary jump
lin 34 ; note the absence of the unnecessary jump
lae 22 ; address of output structure
lol -4
cal $_wri ; write integer with default width

Some files were not shown because too many files have changed in this diff Show More