📄 read.me
字号:
Small C Compiler / Small Assembler
User Notes
COPYRIGHT NOTICES
Compiler: Copyright 1982, 1983, 1985, 1988 J. E. Hendrix
Library: Copyright 1984 J. E. Hendrix, L. E. Payne
Assembler: Copyright 1988 J. E. Hendrix
All rights reserved.
COMPILER VERSION
This diskette contains version 2.2 (revision level 117) of the Small C
compiler as implemented under PC/MS-DOS 2.1 (and later versions) by
James E. Hendrix. This version differs from 2.1 primarily in that the
code generating and optimizing parts of the compiler have been
extensively rewritten, making them much more lucid and noticably
improving the quality of the code generated. The source files have been
reorganized into a more logical arrangement. No new features have been
added.
Compared to the previous release (version 2.1, revision level 75), this
compiler generates programs with EXE files that are between 4% and 13%
(typically 10%) smaller and TWICE as fast. Although much more
optimizing is done, the compiler itself is about 6% smaller and runs
slightly faster than the previous version. About one fourth of its time
is spent optimizing.
The main reason for the doubling of the speed of programs compiled with
Small C is a revision to the library function iscons() so that it calls
DOS only for the first refererence to a file, thereafter it returns a
value based on its memory of DOS's original answer. It turned out that
this was a very very slow DOS call, and since iscons() is called in
fgets(), fgetc(), and _read(), which form a thread, the penalty was
high. So, not surprisingly, avoiding this DOS call on a byte-by-byte
basis yielded spectacular improvements in read times.
Another reason for the speed improvement is a rewrite of the character
classification functions -- isalpha(), isdigit(), etc. Whereas they
used to test a character's value with "if" statements, they now simply
reference an array with the questionable character as a subscript and
return a bit indicating whether or not the character is of the specified
class. This sped up these functions by THREE times. Since these
functions are now so small, they have been grouped into a single source
module IS.C.
Finally, there is the general improvement in speed produced by the
additional code optimizing, which goes far beyond what was being done.
While not as good as the major C compilers, the code Small C now
generates is quite respectable. For example, AR.EXE is 1.13 times the
size of the same program compiled with Microsoft 4.0.
For those interested in studying the compiler itself, perhaps the nicest
thing about version 2.2 is the rewrite of the code generation and
optimizing logic, the reorganization of the source files, and the
revised p-code names. These changes have made the compiler much more
understandable. First, the p-code names now follow a system so that it
is possible to tell exactly what a code does without looking at the
assembly text it generates. The regrouping of the source code clearly
differentiates between front end, back end, and parsing functions. All
of the p-codes appear alphabetically in the function setcodes() together
with the assembly strings they generate, making it unnecessary to forage
around for the exact effect of a p-code. Finally, the peephole
optimizer has been generalized to take both the p-code sequence to be
matched and the optimizing instructions from integer arrays to which it
is directed. A single array contains both of these for a given
optimization case. One can easily understand the optimizations by
studying these arrays -- which are initialized with p-code symbols and
other symbols that form a kind of language. There is no need to study
the optimizer itself to read these optimization actions.
This version fixes a number of problems with the earlier version -- most
notably, a tendency of scanf() to drop characters. Read the file
HISTORY for a complete listing of the revisions since 2.1.
ASSEMBLER VERSION
This diskette contains an executable copy of version 1.0 (revision level
0) of the Small Assembler. This is an assembler written in Small C
primarily for use in processing Small C output. At this stage in its
development, the assembler is not yet fully developed, and runs quite
slowly compared to Microsoft's latest assembler (version 5.1). But it
is adequate for use with Small C, making it unnecessary to purchase
an expensive assembler. If all goes well, by the fall of 1988 the Small
Assembler will be released as a product in its own right -- complete
with source code and a user's manual. Still later, a book (along the
lines of "A Small C Compiler") is to be published. It will fully treat
assembly language programming, use of the Small Assembler, and its
theory and design.
This assembler is essentially compatible with the Microsoft product.
Either may be used with the Small C compiler. Differences are
primarily: (1) many Microsoft directives are not supported (most notably
the conditional assembly directives), (2) macros employ positional
rather than named parameters, (3) not all of the Microsoft expression
operators are supported, and (4) most of the expression operators in the
C language are supported.
Since this is the initial release of the Small Assembler, I would not be
surprised to learn of problems. So, keep your eyes open and let me know
of any trouble you have. If you want a response, then be sure to
enclose a self addressed, stamped envelope. My address is:
James E. Hendrix
P.O. Box 1435
Oxford, MS 38655
THE DISTRIBUTION DISKETTE
The following files are included on this disk:
READ.ME This documentation.
REGISTER User registration form.
ORDER "Small" software order form.
HISTORY History of Small C rivisions.
CCC.BAT Procedure to compile the compiler.
CC.EXE Executable Small C compiler.
CC.H Header file for compiling Small C.
CC1.C Small C source (part 1).
CC2.C Small C source (part 2).
CC3.C Small C source (part 3).
CC4.C Small C source (part 4).
NOTICE.H Copyright header for compiling Small C.
STDIO.H Standard header file for all compiles.
CLIB.LIB Small C object library for use with LINK.
CLIB.ARC Small C library source archive.
CLIBARC.LST List supplied to AR for building CLIB.ARC.
AR.EXE Executable archive maintainer.
AR.C Archive maintainer source.
ASM.EXE Executable Small Assembler.
DOCUMENTATION
The Small C compiler is fully described in "A Small C Compiler:
Language, Usage, Theory, and Design" by James E. Hendrix. Copies are
available from:
M&T Publishing, Inc.
501 Galveston Dr.
Redwood City, CA 94063
Phone: 1 (800) 533-4372
In this book, you will find a full treatment of the Small-C language,
the use of the Small-C compiler, and the theory of operation of the
compiler. It documents revision level 112 of the compiler. Any
additional revisions to the compiler on this diskette are described in
the file named HISTORY.
Until the assembler is released as a separate product, its only
documentation is that which is found here in this file.
USING THE COMPILER
The Small-C compiler takes in a subset of the full C language, and
generates Microsoft assembly language output. It supports only integer
and character data types. Arrays are limited to one dimension. It does
not support arrays of pointers, structures, or unions. Also lacking are
sizeof, casts, #if expr, #undef, and #line. External functions are
automatically declared, but external variables (defined in another
source file) must be declared explicitly. Functions always return
integer values. Globals may be initialized using the = syntax, but
locals cannot be initialized. Locals are always automatic, and the
specifiers auto, static, extern, register, and typedef are not accepted
at the local level. Only extern is accepted at the global level.
Character variables are expanded with sign-extension when they are
referenced; character constants are not sign extended, however.
The steps involved in compiling a program are documented in the file
C.BAT.
Examples of invoking the compiler follow:
CC compile console input
giving console output
CC <FILE1 -L1 -P compile FILE1 giving console
output, list the source as
comments in the output, and
pause on errors
CC <FILE1 >FILE2 -M compile FILE1 giving FILE2
and monitor progress by
listing function headers on
the console
CC FILE1 compile FILE1.C giving FILE1.ASM
CC FILE1 FILE2 compile FILE1.C then FILE2.C
giving FILE1.ASM
CC FILE1 FILE2 >FILE3 compile FILE1.C then FILE2.C into
a single program in FILE3
CC FILE1 >FILE2 -NO -A compile FILE1.C giving FILE2,
negate optimizing, and
sound the alarm on errors
Any number of files may be concatenated as input by listing them in the
command line; in that case stdin is not used. Standard DOS file
specifications, including logical devices, are accepted. The listing
switch has two forms:
-L1 lists on stdout (with output) as comments
-L2 lists on stderr (always the console)
If the compiler aborts with an exit code of 1, there is insufficient
memory to run it. Pressing control-S makes the compiler pause until
another key is pressed, and control-C aborts the run with an exit code
of 2. Press ENTER to resume execution after a pause because of a
compile error. If input is from the keyboard, control-Z indicates end-
of-file, control-X rubs out the pending line, and Backspace rubs out the
previous character.
USING THE ASSEMBLER
The Small Assembler reads an ASCII source file and writes an object file
in the standard .OBJ file format. This makes the Small Assembler
compatible with LINK which comes with PC/MS-DOS. In fact, Small
Assembler has no linker of its own; it must be used with the DOS linker.
The command line for invoking the assembler has the following format:
ASM source [object] [-C] [-L] [-NM] [-P] [-S#]
Command-line arguments may be given in any order. Switches may be
introduced by a hyphen or a slash. The brackets indicate optional
arguments; do not enter the brackets themselves.
source Name of the source file to be assembled. The default, and
only acceptable, extension is ASM. Drive and path may be
specified.
object Name of the object file to be output. It must have a OBJ
extension to be recognized as the output file. Drive and path
may be specified. If no object file is specified, output will
go to a file bearing the same name and path as the source
file, but with a OBJ extension.
-C Use case sensitivity. Without this switch, all symbols are
converted to upper-case. With this switch, they are taken as
is; upper- and lower-case variants of the same letter are
considered to be different. With or without this switch,
segment, group, and class names are always converted to upper-
case in the output OBJ file.
Note: The .CASE directive may be included at the
beginning of the source file to produce the same
effect as this switch.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -