home *** CD-ROM | disk | FTP | other *** search
- Copyright (C) 1991 MetaWare Incorporated; All Rights Reserved.
-
- High C Version 1.71
- for Extended DOS 80386/486
- April 1991
-
- Table of Contents
- -----------------
- 1. New Features
- 2. Release Notes
- 3. Additions/Corrections to Printed Documentation
- 4. Open Files
- 5. Wildcard Expansion
- 6. Driver Notes
- 7. New Command-Line Options
- 8. Cyrix Support
- 9. GFX Graphics Functions
- 10. Macro Incompatibility with High C Version 2.3
- 11. Problems
-
-
- 1. New Features
- ----------------
-
- * Compatibility with MetaWare Debugger, with support for AutoCAD ADS
- applications.
-
- * Execution profiler: see file README.PRF for information about the Profiler.
-
- * Microsoft Graphics compatibility functions.
-
- * SIGNAL.H functions raise() and signal() implemented.
-
- * Interrupt vector functions added to DOS.H:
- _getrvect()
- _getpvect()
- _setrvect()
- _setpvect()
- _setrpvectp()
-
- * Functions _fsopen and _fdopen added to the library.
-
- * Compiler and Library bugs fixed, as listed below.
-
- * 64K node limit removed. 33% more tree storage space is needed for all
- compilations (80386 host only).
-
-
- 2. Release Notes
- -----------------
-
- * For installation instructions, read the Installation Guide provided with
- your documentation.
-
- * For differences from prior versions, read the New Information! document.
-
- * Last-minute-supplied or unclassified software is in the directory "etc".
-
- * See file WEITEK.DOC in the WEITEK subdirectory for information about Weitek
- ABACUS coprocessor support.
-
- * "variable referenced before set" message deleted for local statics.
-
- * Stringizing: for #x, any \ or " in x is replaced with \\ (respectively
- \") only within a string. Thus, for:
-
- #define str(x) #x
- ...
- printf(str(abc\ndef));
-
- High C Version 1.6 printed out:
-
- abc\ndef
-
- whereas High C 1.7 prints out:
-
- abc
- def
-
- * Static functions may be declared at file scope without getting the message
- "extern assumed".
-
- * Static variables referenced before set are no longer diagnosed. Too often
- the diagnosis was misleading.
-
-
- 3. Additions/Corrections to Printed Documentation
- --------------------------------------------------
-
- None at this time.
-
-
- 4. Open Files
- --------------
-
- The library has been changed so you can increase the number of file-table
- entries. Although MS-DOS usually limits the number of open files per
- process to 20, there is a new MS-DOS system call that works in later
- versions of MS-DOS (earlier versions were disastrously buggy) that
- increases the limit. Because C is highly dependent on the static _iob
- table, you must increase the size of this table to increase the number of
- files that can be open simultaneously.
-
- The source to the file that initializes the _iob has been provided as
- LIB\SRC\CVARS.C. Read this file for more instructions on how to increase
- the number of _iob entries.
-
-
- 5. Wildcard Expansion
- ----------------------
-
- In ETC\WCARD.C is a program that examines DOS wildcards in the argc/argv
- array and expands them. If compiled with TEST defined, the program
- executes and shows the arguments before and after expansion. Compiled
- without TEST, it is suitable for inclusion in your program.
-
- 6. Driver Notes
- ----------------
-
- - When you invoke High C with the command hc386, you are invoking a driver
- program which in turn invokes the compiler. See the Programmer's Guide
- chapter Invoking and Controlling the Compiler.
-
- - In High C Version 1.6, command hc386p invoked the protected-mode-hosted
- compiler with the driver. This command is no longer needed and is not
- included with 1.7. The protected-mode-hosted compiler is the default for
- 1.7, and it is invoked by the driver with command hc386. To invoke the
- real-mode-hosted compiler executable, use driver command-line option -HV.
- See the Programmer's Guide chapter Driver Command-Line Options for a
- description of -HV.
-
- - Version 1.62 included programs HCLDR.EXE and HCLDRP.EXE, which were intended
- to let you invoke the compiler without using the driver. These are no
- longer needed and are not included. In 1.7, to invoke the compiler without
- the driver use hcd386 for real mode, and hcd386p for protected mode. These
- commands invoke the compiler directly. See the Programmer's Guide appendix
- Driver and Compiler Controls for a list of compiler options.
-
- 7. New Command-Line Options
- ----------------------------
-
- -fsoft Causes the compiler to generate emulation code and link
- with the emulation library.
-
- -f287 Causes the compiler to generate 287 floating-point code
- and link with the coprocessor library.
-
- -f387 Causes the compiler to generate 387 floating-point code
- and link with the coprocessor library.
-
- -f3167 See file WEITEK.DOC in the WEITEK subdirectory, and Programmer's
- -f1167 Guide chapter Floating-Point Support, for information about these
- options.
-
- -femc87 Causes the compiler to generate code for the Cyrix EMC87
- coprocessor and link with the coprocessor library.
-
-
- 8. Cyrix Support
- ----------------
-
- Support for the Cyrix EMC87 chip is enabled by including in your program:
-
- pragma on(emc87);
-
- or by including on your driver command line:
-
- -Hon=emc87
-
- You must also link with the coprocessor library. 387-like code generation
- is assumed. See Programmer's Guide chapter Floating-Point Support for
- details.
-
- The BYTE magazine floating-point-benchmark executables are provided in the
- etc directory, compiled for the 80387 and separately for the EMC87. You
- can use these two programs to determine the increase in speed possible by
- using the EMC87 in memory-mapped mode.
-
- Some machine BIOS versions do not support EMC87 initialization, and you
- must run a special initializer program called PRESON, supplied by Cyrix.
- If you are using Phar Lap's 386|DOS-Extender, the error:
-
- Abnormal Program Termination: Page Fault
-
- is returned if the EMC87 is not initialized. In the Phar Lap environment
- you must run PRESON before executing any Cyrix code.
-
- Furthermore, Pharlap's 386|DOS-Extender may not automatically detect the
- presence of the EMC87 at run time. To force RUN386 to recognize the EMC87,
- specify -weitek on. For example:
-
- RUN386 -weitek on my_prog
-
-
- 9. GFX Graphics Functions
- -------------------------
-
- WARNING: The program GFX_TEST.C included in the examples directory of your
- High C distribution requires a CGA, EGA, or VGA monitor. If you compile
- this program and try to run it on a Monochrome or Hercules monitor, it will
- hang your system.
-
- If you use option -Hansi (for strict ANSI conformance), GFX Graphics
- functions will not be available to you with the documented function names
- unless you explicitly link non-ANSI library NA.LIB. This is because these
- functions have non-ANSI names that appear only in NA.LIB, which is omitted
- from the link when you specify -Hansi on the driver command line.
-
- You can use the functions as documented, with option -Hansi specified, by
- linking NA.LIB and specifying #define __HIGHC__ before including GFX.H.
- For example:
-
- #define __HIGHC__
- #include <GFX.H>
- #undef __HIGHC__
-
- Link NA.LIB by specifying driver command-line option -lNA.LIB.
-
- NA.LIB includes all the non-ANSI function names. GFX Graphics functions
- have also been provided in the ANSI library, with their names lowercased
- and prefixed by _gfx_. For example, SCREEN becomes _gfx_screen. The GFX
- macro names are prefixed with an underscore. For example, DFLT becomes
- _DFLT.
-
- Note: The GFX Graphics functions work only if linked with a linker that
- produces Phar Lap .EXP type executables.
-
-
- 10. Macro Incompatibility with High C version 2.3
- ---------------------------------------------------
-
- An area of incompatibility has been discovered between the High C Locally
- Optimizing Compiler and the High C Globally Optimizing Compiler. Some #define
- macros in the header files have different values, and they cannot be changed
- so as to be compatible. Therefore, any module using any of these macros MUST
- be recompiled when used with the library of the other compiler. A module
- compiled with LOC cannot be linked with the GOC library if any of these macros
- have been used. Likewise, modules compiled with GOC cannot be linked with the
- LOC library when these macros have been used. The system issues no warning
- that this has happened.
-
- The macros known to cause problems are:
-
- * All error values associated with the errno variable, such as:
- ERANGE
- EDOM
- Error_path_not_found
- Error_too_many_open_files
- Error_access_denied
-
- * The getc and putc macros. The functions are fine; only the macros exhibit
- the problem.
-
- * The _IOFBF, _IONBF and _IOLBF values. These are different, and each
- library depends on its own set of values.
-
- * The LC_ALL, LC_COLLATE, LC_CTYPE, LC_MONETARY, LC_NUMERIC and LC_TIME
- macros. The values are different, but may be adjusted in GOC some time in
- the future, to make them compatible. Until then, object modules using
- these constants cannot be mixed between the two High C compilers/libraries.
-
-
- 11. Problems
- ------------
-
- * There is a bug in the keyword volatile that allows the volatile data
- to be optimized away. For example:
-
- void junk(void){
- unsigned char a = 1, b = 2, c = 3;
- volatile unsigned char *p;
- p = (volatile unsigned char *) &a;
- *p = b;
- c = *p;
- }
-
- If you compile this program with -Hasm and examine the assembly listing,
- you will see that below the line c = *p; the pointer is optimized away.
-
- * Foward references to nested functions are not properly resolved. For
- example:
-
- void main(){
- int a = 10;
- void nf1(void) {
- if (a-- > 0)
- nf2();
- }
- void nf2(void) {
- if (a-- > 0)
- nf1();
- }
- nf1();
- }
-
- This code generates the compiler warnings:
- nf2: Function called but not defined
- nf2: Local Function never referenced; no code will be generated.
-
- Also:
-
- void main(){
- int a = 10;
- void nf2(void);
-
- void nf1(void) {
- if (a-- > 0)
- nf2();
- }
- void nf2(void) {
- if (a-- > 0)
- nf1();
- }
- nf1();
- }
-
- This code generates the compiler warning:
- nf2: This function should be declared "extern" Assumed
-
- and compiler error:
- nf2: This is multiply defined.
-
- * Function _bios_disk does not support read, write, and verify operations.
-
- * The graphics functions provided work only if linked with a linker which
- produces Phar Lap .EXP type executables.
-
- * There is a bug in fgets that causes the end-of-file flag to not be set
- when end-of-file is reached while reading a file in binary mode. When
- end-of-file is reached, fgets returns NULL.
-
- * The signal and raise functions support only Ctrl-C and the critical-error
- exception at the hardware level. All other signals are supported at the
- software level (via raise).
-
- Warning: If a hardware interrupt occurs during a DOS or BIOS operation,
- it may not be possible to execute the signal handler. In this case, the
- results are undefined, and may result in a system crash. See the Library
- Reference Manual for a description of signal and raise.
-
- * Running program SI_TEST.C in the Blackstar C Function Library may hang
- your machine.
-
-
- Problems
- --------
-
- If you think you have discovered a compiler problem, send a problem report to
- MetaWare Technical Support. If possible, please send a test case that
- demonstrates the problem.
-
- All problem reports must include your serial number and specify which version
- of the compiler you are using. If your sample code exceeds 15 lines, please
- send it by diskette to the address below, or by E-mail to:
-
- uunet!acad!metaware!tech
- -or-
- Internet tech@metaware.com
- -or-
- INTERNET:tech@metaware.com
-
- MetaWare Technical Support can be reached at (408) 429-6111, 8:00 am to 4:30 pm
- Monday through Friday.
-
-
- MetaWare Incorporated
- 2161 Delaware Avenue
- Santa Cruz, CA 95060-5706
- (408)429-6382 FAX:(408)429-9273
-