Dec 132017
 
Sherlock C Debugging code. Uses debugging macros and commmand line switches to turn on debugging code.
File SHERLOCK.ZIP from The Programmer’s Corner in
Category C Source Code
Sherlock C Debugging code. Uses debugging macros and commmand line switches to turn on debugging code.
File Name File Size Zip Size Zip Type
CPP.C 13796 3933 deflated
CPP.DOC 2926 1289 deflated
CPP.EXE 38934 21209 deflated
CPP.H 2080 1003 deflated
CPP.LNK 210 101 deflated
CPP.MAK 761 348 deflated
CPP.ML 136 82 deflated
CPPDB.LNK 306 127 deflated
CPPDB.ML 213 105 deflated
CPPDBX.LNK 278 121 deflated
DEF.C 28587 7824 deflated
DIR.C 20567 5712 deflated
DUMMYSL.H 1637 551 deflated
ENUM.H 3120 1206 deflated
GLB.C 2228 1074 deflated
GLB.H 2800 1162 deflated
MACRO.TST 2660 1124 deflated
MCPP.MMK 1831 468 deflated
MCPPDB.MMK 1998 489 deflated
MEM.C 1366 726 deflated
MST.C 6867 2286 deflated
PR.C 3371 1301 deflated
READ.ME 5435 2316 deflated
READ.ME2 2329 1165 deflated
SHERLOCK.DOC 95788 27780 deflated
SL.H 1637 551 deflated
STR.C 3074 1035 deflated
SUBMIT.DSK 3386 1561 deflated
SYS.C 14107 4241 deflated
TMP.H 5043 1109 deflated
TOK.C 9405 2517 deflated
UTL.C 11296 2637 deflated

Download File SHERLOCK.ZIP Here

Contents of the READ.ME file


FILE NAME: read.me
CPP Version 5.3 for the IBM PC
February 1, 1990


REWARD

A reward of $5.12 is cheerfully paid to the first person who finds any bug in
this code. Typo's in the code or in the documentation are worth $1.28.


AUTHOR

All programs on this disk were written by:

Edward K. Ream
1617 Monroe Street
Madison, WI 53711
(608) 257-0802


PUBLIC DOMAIN SOFTWARE

The sole author and owner of CPP, Edward K. Ream, hereby places CPP and
all other files on this disk in the public domain.


DISCLAIMER

With respect to the programs and documentation contained on this disk,
Edward K. Ream specifically disclaims all warranties, express or implied,
including but not limited to implied warranties of merchantability and fitness
for a particular purpose. In no event shall Ream be liable for any loss of
profit or commercial damage, including but not limited to special, incidental,
consequential or other damages.


FILES ON DISK 1

read.meThis file.
cpp.docDocumentation for CPP.

cpp*.hHeader files for CPP.
cpp*.cSource code files for CPP.
cpp.exeExecutable version of CPP.

cpp.makTurboc C make file for cpp.exe.
cpp.lnkTurboc C link file for cpp.exe.
mcpp.mmkMicrosoft C make files for cpp.exe.
cpp.mlMicrosoft C link files for cpp.exe.


FILES ON DISK 2

read.me2Brief summary of Sherlock system.
sherlock.docDocumentation for the Sherlock (TM) debugging system.
dummysl.hDummy macro definitions for all Sherlock macros.
cppdb.exeExecutable version of CPP, withSherlock macros added.
See the source code listing for the names of tracepoints.
Add ++dump to the command line for a listing of statistics.
All sherlock output goes to standard out.
cppdbx.exeSame as cppdb.exe except that timing statistics are disabled.

cppdb.makTurboc C make file for cppdb.exe.
cppdb.lnkTurboc C link file for cppdb.exe.
mcppdb.mmkMicrosoft C make file for cppdb.exe.
cppdb.mlMicrosoft C link file for cppdb.exe.

macro.tstHairy tests of macro expansion from the draft standard.

Note:Turbo C make and line files are for version 2.0 or later.
Microsoft C make and link files are for version 5.0x or later.


KNOWN PROBLEMS

1. The draft ANSI C standard specifies that macros which take arguments are to be
considered "identical" only if the spellings of all formal parameters are
identical and the respective replacement texts are identical. For example, the
the following two #defines are NOT supposed to be considered identical and a
warning is supposed to be given,

#define max(a,b) (( (a) > (b) ) ? (a) : (b))
#define max(A,B) (( (A) > (B) ) ? (A) : (B))

SPP considers two macros to be identical if their replacement text are
identical. SPP does not check the actual spellings of formal parameters to
macros. This additional checking is left as an exercise to the reader.

SPP does check the placement of parameters within the replacement text, so that
a warning about a non-identical redefinition is issued in the following
example,

#define max(a,b) (( (a) > (b) ) ? (a) : (b))
#define max(a,b) (( (b) > (a) ) ? (a) : (b)) /* oops */

2. Version 5.3 supports single-line comments, which start with // and continue
to the end of the line. Naturally, the // character sequence does not start a
single-line comment if it occurs inside a normal comment or a string.

Single line comments are treated EXACTLY like regular C comments. In
particular, this means that single line comments are replaced by a single blank
in the replacement text of macros.

You C++ language experts will recognize that current C++ compilers handle
single-line comments as explained above, and that anachronistic C++ translators
included // (and any text following //) in the replacement text of macros.


COMPILER WARNINGS YOU MAY SAFELY IGNORE

def.c: When using the Turbo C compiler and when Sherlock macros are disabled
there are two warnings about variables not being used. These warnings go away
if Sherlock macros are defined.

utl.c: When using the Turbo C compiler there are five warnings about
"Possibly incorrect assignments."


BUGS FIXED IN VERSION 5.1

o White space was not allowed in the list of formal arguments to a macro. The
fix was mad to pp_def() in DEF.C.

o Token pasting did not work properly because white space was inserted between
tokens. The fix was made to pp_def().

o Stringizing did not affect character constants, only strings. The fix was
made to substitute() in DEF.C.


BUGS FIXED IN VERSION 5.2

o Comments were not allowed everywhere in preprocessor directives.
The fix was to do_pp() in DIR.C.

o CPP looped when skipping some kinds of comments. The fixes were in
skip_pp() and copy_pp() in UTL.C.

o Backslash-newline combinations were not properly deleted by sysnext().
CPP now follows the Draft ANSI Standard, which means that you can put the
backslash-newline combination absolutely ANYWHERE, inside identifiers,
keywords, multi-character operators, etc.


BUGS FIXED IN VERSION 5.3

o An extra carriage return was inserted at the end of each line.

o Very long or deeply nested macro expansions caused CPP to crash due to stack
overflow. It is still possible to crash the stack, but it's much less likely.
Fixes were made to substitute(), expand() and rescan() in DEF.C.


 December 13, 2017  Add comments

 Leave a Reply

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>

(required)

(required)