device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
[fw/sdcc] / ChangeLog
1 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
2
3         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
4
5 2005-12-18 Raphael Neider <rneider AT web.de>
6
7         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
8           (genUnpackBits): improved code for direct operands,
9           (genPackBits): improved code for literal assignment to bitfields
10             and for direct destination operands (no FSR indirection),
11             prevented redundant AND, fixes #1362800,
12           (AccLsh): added parameter to disable masking of the result
13         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
14           skip instructions with side-effects (like incfsz),
15           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
16         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
17         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
18           fixes #1375263
19
20 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
21
22         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
23         volatile variables as spill location
24
25 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
26
27         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
28         replacing literals
29         * support/regression/tests/bug-1376320.c: added
30
31 2005-12-08 Raphael Neider <rneider AT web.de>
32
33         * src/pic/device.c: renamed is_shared to pic14_is_shared
34         * src/pic/gen.c (genIfx): re-enabled handling of sbits
35         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
36           (is_valid_identifier): added for above workaround
37
38 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
39
40         * device/lib/Makefile.in: fixed to enable port-specific-objects
41         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
42           char, thanks Hubert Sack
43         * doc/sdccman.lyx: documented --xstack-loc,
44           elaborated a bit more on interrupts and pitfalls,
45           removed "setjmp/longjmp unsupported",
46           documented some unsupported C99 features
47         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
48         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
49           if, thanks Hubert Sack
50         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
51         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
52           make make_library
53         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
54           regression tests can report resource usage (rfe 700441)
55         * support/regression/collate-results.py: report resource usage
56         * support/regression/ports/ds390/spec.mk,
57         * support/regression/ports/hc08/spec.mk,
58         * support/regression/ports/mcs51/spec.mk,
59         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
60         * support/regression/ports/ds390/uCsim.cmd,
61         * support/regression/ports/hc08/uCsim.cmd,
62         * support/regression/ports/mcs51/uCsim.cmd,
63         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
64         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
65           library, use the default one
66         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
67           building the library
68
69 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
70
71         * config.dsp: added dependency on .version and configure_vc.awk
72         * device/include/setjmp.h: updated for --stack-auto and --xstack
73         * device/include/mcs51/at89c51snd1c.h: corrected line endings
74         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
75         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
76         * device/lib/libsdcc.lib: added _setjmp
77         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
78           (decorateType): fixed bug 1372851,
79           (optimizeGetHbit): fixed warning
80         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
81           array initialisation
82         * support/regression/tests/bug1057979.c: added test for bug 1358192
83         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
84
85 2005-12-03 Borut Razem <borut.razem AT siol.net>
86
87         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
88           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
89
90 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
91
92         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
93         createIval): implement symbol independant "flexible array member",
94         (createIvalCharPtr): implemented flexible array initialisation with a
95         string
96         * src/SDCCsymt.c (copyStruct): removed,
97         (getSize): fixed misleading comment,
98         (getAllocSize): removed, the additional allocation size is now in
99         sym->flexArrayLength,
100         (checkStructFlexArray): new, syntax checks for flexible array members,
101         (compStructSize): added syntax checks for "flexible array members"
102         (copyStruct): removed,
103         (copyLinkChain): removed inefficient fix for bug 770487
104         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
105         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
106         symbol->flexArrayLength
107         * src/SDCCerr.c,
108         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
109         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
110         * support/regression/tests/structflexarray.c: added
111         * support/valdiag/tests/structflexiblearray.c: added
112
113 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
114
115         * src/SDCCast.c (decorateType): fixed bug 1368489
116         * support/Util/SDCCerr.c,
117         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
118
119 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
120
121         * device/include/mcs51/at89c51snd1c.h: added file submitted by
122           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
123
124 2005-11-27 Borut Razem <borut.razem AT siol.net>
125
126         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
127           support/cpp2/mkdeps.h: added command line option
128           -obj-ext=<extension> to SDCPP to define object file externion, used
129           for generation of make dependencies (-M)
130         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
131
132 2005-11-26 Borut Razem <borut.razem AT siol.net>
133
134         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
135           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
136           added pic and pic16 libraries
137
138 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
139
140         * device/include/float.h: Corrected typo in prototype of __fsgt
141
142 2005-11-25 Borut Razem <borut.razem AT siol.net>
143
144         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
145           added creation of model-mcs51-stack-auto libraries
146
147 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
148
149         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
150         and fields-list too
151         * src/SDCCast.c (createIvalArray): removed obsolete comment
152
153 2005-11-24 Borut Razem <borut.razem AT siol.net>
154
155         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
156           added missing device/lib/mcs51/crt*.asm sources
157
158 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
159
160         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
161
162 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
163
164         * device/lib/_fs2schar.c,
165         * device/lib/_fs2sint.c,
166         * device/lib/_fs2slong.c: optimized inline asm
167
168 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
169
170         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
171           Better handling of floats between -1.0 and 0.0.
172
173 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
174
175         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
176           (the missing "if"s prohibited removal of redundant labels)
177
178 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
179
180         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
181           Properly convert floats between -1.0 and 0.0 to long, int, and char
182           types (max integer value of negative floats tends to zero).
183         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
184           Removed changes made so to work properly with floats between
185           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
186           and _fs2char.c
187
188 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
189
190         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
191         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
192         (genCast) cosmetic change
193         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
194         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
195         from mcs51
196         * support/regression/tests/bitfields (testSignedBitfields): added
197
198 2005-11-18 Borut Razem <borut.razem AT siol.net>
199
200         * sdcc/device/lib/Makefile.in: remove all unnecessary files
201         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
202           introduced SILENT option to make building of pic16 libraries less
203
204 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
205
206         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
207           Now they work properly with floats between -1.0 and 0.0
208         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
209
210 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
211
212         * src/SDCCicode.c (printOperand): added missing else
213
214 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
215
216         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
217         reformatted for better readability
218         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
219         signed bitfields
220
221 2005-11-17 Borut Razem <borut.razem AT siol.net>
222
223         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
224           introduced SILENT option to make building of pic16 libraries less
225           verbose - used for nightly snapshot build
226         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
227           available on Win32 platforms.
228         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
229           medium, large, pic and pic16
230
231 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
232
233         * device/lib/printf_large.c: Temporary patch for bug 1358192:
234           printf("%f"...) sets fraction to zero.
235
236 2005-11-16 Raphael Neider <rneider AT web.de>
237
238         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
239           fixes #1357221
240         * src/pic/gen.c (genIfx): implemented for CARRY bit
241         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
242           to generic pointers, fixes #1357332,
243           (pic16_movLit2f): NEW,
244           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
245
246 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
247
248         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
249
250 2005-11-11 Raphael Neider <rneider AT web.de>
251
252         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
253         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
254           compute pointer's type from operand,
255           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
256           improved single bit reads, fixes bug #1353379
257
258 2005-11-09 Borut Razem <borut.razem AT siol.net>
259
260         * support/scripts/sdcc.nsi: added lib/pic to the package
261
262 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
263
264         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
265
266 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
267
268         * support/regression/tests/bug1348008.c: added
269         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
270         * support/regression/tests/bug1337835.c: updated comment
271
272 2005-11-06 Borut Razem <borut.razem AT siol.net>
273
274         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
275           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
276           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
277           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
278           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
279           dynamic construction of cl_error_class and derivates - 2.nd try
280
281 2005-11-05 Borut Razem <borut.razem AT siol.net>
282
283         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
284           bug, which caused Bus Errors on sparc solaris
285
286 2005-11-04 Borut Razem <borut.razem AT siol.net>
287
288         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
289           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
290           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
291           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
292           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
293           and derivates to resolve the initialization problem on OSX
294
295 2005-11-02 Borut Razem <borut.razem AT siol.net>
296
297         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
298           corrected typo - #include <winsock2.h>
299
300 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
301
302         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
303           (_asxxxx_mapping): added org directive for future enhancements
304
305 2005-11-01 Borut Razem <borut.razem AT siol.net>
306
307         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
308           enabled sockets on WIN32
309         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
310
311 2005-10-31 Borut Razem <borut.razem AT siol.net>
312
313         * support/regression/generate-cases.py: escape backslashes in {testcase}:
314           WIN32 backslash path delimiters should be escaped when used in C strings
315         * support/regression/tests/bitfields.c: exclude failing assertions for
316           __CYGWIN32__ and __MINGW32__ hosts
317
318 2005-10-30 Borut Razem <borut.razem AT siol.net>
319
320         * src/SDCCutil.c: corrected double comparison typo
321
322 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
323
324         * device/lib/medium/Makefile: added for new memory model medium
325         * device/include/asm/mcs51/features.h: updated for medium/pdata
326         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
327           added Multiply & Accumulate sbit's and MAC0_PAGE define
328         * device/include/mcs51/c8051f300.h: added sfr16 definitions
329         * device/include/mcs51/c8051f310.h: added sfr16 definitions
330         * device/lib/_mullong.c: update for medium model
331         * device/lib/incl.mk: added medium model
332         * doc/sdccman.lyx: documented medium model
333         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
334         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
335         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
336         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
337           (allocParms): set SCLS and OCLS to pdata for medium model
338         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
339           for pdata,
340           (powof2): return <0 if not power of 2
341         * src/avr/gen.c (genBitWise): use updated powof2
342         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
343           (shiftR2Left2Result): small optimization in setup, save acc when storing,
344           (shiftLLeftOrResult): use B if necessary
345         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
346         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
347         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
348         * support/regression/Makefile.in: added test-mcs51-medium
349         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
350
351 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
352
353         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
354         specifier unsigned
355         * device/lib/time.c (mktime): fixed bug 1334315
356
357 2005-10-28 Raphael Neider <rneider AT web.de>
358
359         * device/include/pic/p16f_common.inc: added common declarations
360         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
361
362 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
363
364         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
365           (aopPutUsesAcc): added to predict accumulator use,
366           (assignResultValue): save acc if necessary,
367           (genMinusDec): store result if indirectly addressed,
368           (genDivOneByte):  save acc if necessary,
369           (movLeft2Result): bugfix if left already in acc,
370           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
371             attention to accumulator use (esp. pdata),
372           (genReceive): receive pdata correctly
373         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
374         * src/SDCCicode.h: added isOperandInPagedSpace prototype
375
376 2005-10-27 Raphael Neider <rneider AT web.de>
377
378         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
379
380 2005-10-27 Raphael Neider <rneider AT web.de>
381
382         * .version: changed version to 2.5.4
383         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
384         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
385           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
386             arithmetics support routines
387         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
388         * device/lib/Makefile.in: also create installdir for pic
389
390         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
391           pic14 port as well
392         * src/pic/device.c (dump_sfr): rewritten to delegate register
393           placement to the linker (use `extern sym' rather than sym EQU addr),
394           (validAddress): fixed to check last specified address
395         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
396           (popGetLit): truncate literal value to 8 bit,
397           (popGet): moved assert to more appropriate place
398           (popGetExternal): create pCode operand from and mark the according
399             symbol as being `extern'
400           (popGetAddr): added sanity check on immediate's offset, provide
401             GPOINTER tag on demand
402           (aopPut): fixed for immediates,
403           (mov2w_op): move operand's address or contents to WREG (depending on
404             operand type), safer variant of mov2w,
405           (movwf,call_libraryfunc): NEW, handy abbreviations,
406           (get_argument_pcop,get_return_val_pcop,pass_argument,
407           get_returnvalue): interface for accessing function parameters and
408             return values,
409           (assignResultValuei,genRet): use new parameter/return value interface
410           (pic14_getDataSize): back to old version handling generic pointers,
411           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
412             provided implementation and/or fixed old one,
413           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
414             calls, removed legacy 8051 reference code
415           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
416           (loadSignToC): NEW, move the operands sign bit to CARRY,
417           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
418             genRightShiftSigned, accepts negative shift counts,
419           (setup_fsr): load FSR and adjust IRP (indirect memory access),
420           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
421             generic pointers, __data pointers and __code pointers,
422           (genUnpackBits,genPackBits): rewritten to work with generic pointers
423             and signed bitfields, limit bitfields to 8 bit,
424           (genDataPointerGet): fixed number of bytes read,
425           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
426           (genPointerGet,genPointerSet): fixed handling of __code pointers,
427             pointers to constant data are no longer assumed to point to __code
428             space, removed invalid pointer types,
429           (bitpatternFromVal): retrieve the PICs representation of an integer
430             or float literal,
431           (genDataPointerSet): fixed assigning to po_immediate operands,
432           (genGenPointerSet): implemented as library call,
433           (genIfx): fixed incorrect condition,
434           (genAddrOf): limit generic pointers' addresses to 2 bytes,
435             provide GPOINTER tag according to destination's storage class,
436           (genCast): added code to handle casting to generic pointers, added
437             sign-/zero extension of the result
438           (aop_isLitLike,op_isLitLike): fixed handling of immediates
439         * src/pic/gen.h: added macros to access IRP bit in STATUS register
440         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
441           extend the result
442         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
443           address/register resides in the shared banks
444           (emitSymbolToFile): improved to handle global and `pinned' symbols,
445             put all variables into separate sections (have the linker arrange
446             them)
447           (picglue): put init code and interrupt handlers in separate sections
448         * src/pic/main.c: added port specific options table, modified to PORT
449           structure to make GPOINTERs 3 byte, added pic14_options
450           (_pic14_do_link): private linking routine (update paths to libraries,
451             add libsdcc.lib by default)
452         * src/pic/main.h: declare pic14_options
453         * src/pic/pcode.c: fixed instructions i/o relations,
454           (RegCond): reverted to correct version,
455           (newpCodeOpLit): truncate literals to 8 bit,
456           (genericPrint): added debug output,
457           (getRegFromInstruction): fixed for various operand types, simplified
458           (BuildFlow): fixed broken handling of isntructions with labels
459           (LinkFlow): start at last instruction in flow (skip trailing comments),
460             pass the flow on to the next instruction after CALL
461           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
462           (insertPCodeInstruction): fixed inserting after a skip instruction,
463           (DoBankSelect): fixed for labeled instructions
464           (OptimizepBlock): honor --nopeep switch
465           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
466         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
467         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
468           (pCodeOptime2pCodes): allow disabling this optimization via
469             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
470             but is still buggy), started implementation of a dataflow based
471             pCode optimization (CSE + dead code elimination)
472           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
473         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
474           names are independant of the stack location and therefore portable across
475           devices
476
477 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
478
479         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
480           (selectSpil): fixed bug 1337835 by not spilling bit variables
481         * support/regression/tests/bug1337835.c: added test for this bug
482         * src/mcs51/peeph.def: restart after rule 3.c,
483           addded rules 263.x to optimize loading constants
484
485 2005-10-26 Raphael Neider <rneider AT web.de>
486
487         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
488         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
489           (genAssign): emit warning when casting literals to generic pointer
490             type, also applies when taking the address of a fixed variable,
491           (genCast): improved casting to generic pointers
492         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
493           extern variables, added verbose error message
494         * device/include/pic16/{string.h,errno.h}: added #pragma library c
495
496 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
497
498         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
499         carry must be complemented too
500         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
501         could be emitted by genMinus
502         * src/SDCCval.c (constVal): fixed bug 1305065
503
504 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
505
506         * src/SDCCast.c (addCast): added promotion for bit variables
507         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
508         promotion casts + optimisation
509         (optimizeGetWord): fix warning 'i' might be used uninitialized
510         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
511         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
512
513 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
514
515         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
516         all chars are promoted to int; promotion should be handled in SDCCast.c
517
518 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
519
520         * device/lib/_strcmp.c: Fixed bug 1326457
521
522 2005-10-11 Raphael Neider <rneider AT web.de>
523
524         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
525         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
526
527 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
528
529         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
530         * support/regression/tests/sfr16.c: added test for the sfr32 bug
531
532 2005-10-04 Raphael Neider <rneider AT web.de>
533
534         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
535           device/lib/pic16/pics.all: added pic18f1320
536         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
537
538 2005-09-30 Raphael Neider <rneider AT web.de>
539
540         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
541         * src/pic16/devices.inc: NEW, provides device descriptions
542         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
543
544 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
545
546         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
547           GETHBIT
548
549 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
550
551         * doc/sdccman.lyx: updated Highest Order Bit documentation,
552           documented Any Order Bit, Higher Order Byte and Higher Order Word
553         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
554         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
555           (optimizeGetAbit): new, to get any bit, not only the high bit,
556           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
557           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
558           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
559           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
560             RIGHT_OP: also try GETBYTE, GETWORD optimization,
561             GETABIT, GETBYTE, GETWORD: decorate them,
562           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
563           (ast_print): added GETABIT, GETBYTE, GETWORD
564         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
565         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
566           (geniCodeBinary): new generic binary icode,
567           (ast2iCode): added GETABIT, GETBYTE, GETWORD
568         * src/port.h: updated comment for PORT.hasExtBitOp
569         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
570           (genGetByte): new, to get a single byte,
571           (genGetWord): new, to get a word from a long,
572           (gen51Code): added GETABIT, GETBYTE, GETWORD
573         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
574
575 2005-09-23 Raphael Neider <rneider AT web.de>
576
577         * configure.in, configure: have device/lib/pic configured
578         * device/lib/Makefile.in: added model-pic14
579         * device/lib/clean.mk: added pic/ to clean rule
580         * device/lib/pic: added rudimentary pic14 library providing support
581           functions for multiplication/division/generic pointer access
582         * src/SDCCopt.c (convilong): mark support functions as extern
583           for pic14 port as well
584         * src/pic/gen.c (genMult): added assertions,
585           (genpic14Code): emit warning on unhandled iCodes
586         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
587         * src/pic/pcode.c (pCodeOpCopy),
588         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
589           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
590           SFR_REGISTER}), made safe for future extensions
591         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
592           instructions even if preceeded by SKIP instructions (also remove
593           them); removed unused code
594         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
595           prevents leaving parts of the structure uninitialized after copying
596
597 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
598
599         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
600           ago by me
601         * support/regression/tests/addsub.c: added test for the bug
602
603 2005-09-21 Raphael Neider <rneider AT web.de>
604
605         * device/include/pic16/pic18f1220.h,
606           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
607         * device/lib/pic16/Makefile.rules: added missing opening paren
608         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
609           are provided in genutils.c,
610           (genUminusFloat,genUminus,genCmpEq): added asserts on different
611           operand/result sizes,
612           (genCmp): assert on NULL pointers first, then check deref'ed values
613         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
614           result size
615
616 2005-09-18 Raphael Neider <rneider AT web.de>
617
618         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
619           as these are now unused,
620           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
621         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
622           local, avoids uninitialized pointer dereference on r->name
623         * src/pic16/ralloc.c (newReg): fixed indentation
624
625 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
626
627         * src/SDCCval.c (constVal): fixed bug 730366
628         * support/Util/SDCCerr.c,
629         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
630
631 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
632
633         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
634
635 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
636
637         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
638
639 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
640
641         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
642           (hex2dec): made hex_digit unsigned char, removed ascii dependance
643         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
644           (hex2dec): made hex_digit unsigned char, removed ascii dependance
645         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
646         * packihx/packihx.c (hexDigit): made c unsigned char
647         * as/mcs51/lklibr.c (fndsym),
648         * link/z80/lkgb.c (gb),
649         * link/z80/lklibr.c (fndsym),
650         * link/z80/lkrloc.c (relr),
651         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
652         * src/SDCC.lex (checkCurrFile, process_pragma),
653         * src/SDCCglue.c (spacesToUnderscores),
654         * src/SDCCmain.c (setParseWithComma, processFile),
655         * src/asm.c (tvsprintf, printCLine),
656         * src/avr/gen.c (emitcode, aopPut),
657         * src/ds390/gen.c (emitcode),
658         * src/hc08/gen.c (emitcode, emitinline),
659         * src/mcs51/gen.c (emitcode, genInline),
660         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
661           tokenizeLineNode),
662         * src/pic/ralloc.c (debugLog),
663         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
664           tokenizeLineNode),
665         * src/pic16/ralloc.c (debugLog),
666         * src/z80/main.c (_process_pragma):
667            made all ctype.h function calls safe
668         * src/SDCCopt.c: include math.h for fabs
669         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
670           and used them throughout the code to make ctype.h function calls safe
671         * src/ds390/main.c (asmLineNodeFromLineNode),
672         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
673         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
674            unsigned char*
675         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
676           (newpCodeAsmDir): made ctype.h function calls safe
677         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
678           pic16_emitcode):  made lbp unsigned char*
679         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
680           (pic16_newpCodeAsmDir): made ctype.h function calls safe
681         * src/xa51/gen.c (emitcode),
682         * src/z80/gen.c (_emit2): made lbp unsigned char*
683         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
684            char*
685
686 2005-09-05 Raphael Neider <rneider AT web.de>
687
688         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
689           access bank splitpoint
690
691 2005-09-05 Raphael Neider <rneider AT web.de>
692
693         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
694
695 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
696
697         * .version: changed to version 2.5.3
698         * doc/sdccman.lyx: changed version to 2.5.3,
699           documented --codeseg and --constseg and pragma codeseg and constseg,
700           documented bit parameters (reentrant) and bit returning
701         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
702            currFunc->recvSize, but is this ok for all ports?
703           (ast2iCode): result of ~ on unsigned char must be cast to int for
704            bool to work
705         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
706           function pointers in bit space
707         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
708           (processFuncArgs): call port.reg_parm() with reentrancy info
709         * src/port.h,
710         * src/avr/main.c,
711         * src/ds390/main.c,
712         * src/hc08/main.c,
713         * src/pic/main.c,
714         * src/pic16/main.c,
715         * src/xa51/main.c,
716         * src/z80/main.c: port.reg_parm prototype extended with
717           "bool reentrant" parameter
718         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
719           options.stackAuto for allocating bit register parameters
720         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
721           (genSend): set BitBankUsed if it is,
722           (selectRegBank): factored out of genCall for use in genPcall,
723           (genCall): removed redundant dtype assignmen, use selectRegBank,
724           (genPcall): handle returning in Carry properly, save in F0 if needed,
725           (genReceive): handle bit register parameters
726         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
727           (mcs51_assignRegisters): enable bit registers for all reentrant
728            functions and don't set BitBankUsed unconditionally
729         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
730         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
731         * support/regression/tests/funptrs.c: added tests for BOOL and for return
732
733 2005-08-27 Borut Razem <borut.razem AT siol.net>
734
735         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
736         ppc-osx (Darwin) does not support -u option. It seems that it is
737         supported only on Linux - GNU cp
738
739 2005-08-25 Borut Razem <borut.razem AT siol.net>
740
741         * sim/ucsim/gui.src/serio.src/Makefile.in,
742           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
743           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
744           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
745           install and strip, since the strip at /usr/ccs/bin should be used
746           on solaris
747
748 2005-08-24 Borut Razem <borut.razem AT siol.net>
749
750         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
751
752 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
753
754         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
755         ffffffffu
756
757 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
758
759         * as/mcs51/aslink.h: completed lkrloc.c prototypes
760         * as/mcs51/lkmain.c (link_main): fixed warning
761         * device/include/stdbool.h: ds390 has no advanced bit support yet
762         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
763         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
764         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
765           and updated their macros
766         * src/SDCCval.c (constVal): updated comment for renamed b_long
767
768 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
769
770         * as/mcs51/asdata.c: changed ctype['['] to BINOP
771         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
772           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
773           (oprio): set priority for '['
774         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
775            and adb_24_bit
776         * as/mcs51/asm.h: added defines R_BIT and S_BIT
777         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
778         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
779         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
780           added overlayable BIT_BANK area
781         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
782           (summary2): explain 'T' in legenda
783         * as/mcs51/lkrloc.c: replaced old K&R style,
784           (relr): added R_BIT processing,
785           (errmsg): added "Bit-addressable relocation error",
786           (adb_bit): added for converting from byte- to bit-addressable space,
787           (adb_24_bit): added for converting from byte- to bit-addressable space
788         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
789            used in reentrant functions now even as return value
790         * device/lib/_gptrput.c (_gptrput): removed obsolete code
791         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
792           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
793         * src/SDCCglobl.h: added indicator BitBankUsed
794         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
795            the bit registers b0-b7
796         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
797           (geniCodeCast): fixed bug 1263853,
798           (geniCodeLogicAndOr): put result in bool or char,
799           (geniCodeReceive): added parameter func for accessing the return type,
800           (geniCodeFunctionBody): pass func to geniCodeReceive
801         * src/SDCCmain.c: added indicator BitBankUsed
802         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
803         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
804           (checkSClass): don't put automatic bool/bit on stack,
805           (checkFunction): removed check on function cannot return bit
806         * src/SDCCsymt.h: added newBoolLink prototype
807         * src/mcs51/gen.c (rb1regs): added bit registers,
808           (movc): created for assigning to carry,
809           (pushReg, popReg): created for pushing registers,
810           (sameRegs): check both AOP_REG and AOP_CRY types,
811           (aopOp): handle bit registers,
812           (aopPut): optimization no self-assign,
813           (saveRegisters): push reg->base (bits) only once for bit registers,
814            and use pushReg,
815           (unsaveRegisters): pop reg->base only once and use popReg,
816           (assignResultValue): added parameter func and return in carry for bits,
817           (genIpush): optimization no reload in A if not changed,
818           (genSend): bit parameters in reentrant functions are passed in bit
819            registers by first assigning to bits in B, then save registers and
820            copy B to bits,
821           (genCall): handle returning in Carry properly, save it in F0 if needed,
822           (genPcall): updated assignResultValue call, this is not safe yet for bit
823            returning function !!!
824           (genFunction): don't generate equ's for bit registers and use pushReg,
825           (genEndFunction): take care of bit returning functions and use popReg,
826           (genRet): return bit in Carry,
827           (genIfx): optimize bit registers and other directly addressable bits,
828           (genReceive): updated assignResultValue call
829         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
830           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
831            registers when using stack-auto
832         * src/mcs51/ralloc.c (_G): added allBitregs,
833           (regs8051): added the bit registers,
834           (createStackSpil): use macro IS_BIT,
835           (getRegBit): added to allocate a bit register, else spill,
836           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
837           (updateRegUsage): factored out to ease stepping while debugging,
838           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
839            also allocate bit registers,
840           (fillGaps): handle bit registers,
841           (findAllBitregs): added to create bit vector with all bit registers,
842           (mcs51_allBitregs): returns this bit vector,
843           (mcs51_assignRegisters): when using stack-auto use bit registers for
844            passing parameters and creating local variables
845         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
846
847 2005-08-22 Borut Razem <borut.razem AT siol.net>
848
849         * device/lib/Makefile.in: replaced find option -or with -o
850           to make it run on solaris
851
852 2005-08-22 Raphael Neider <rneider AT web.de>
853
854         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
855           fixes #1265442 (crash on Solaris)
856
857 2005-08-20 Borut Razem <borut.razem AT siol.net>
858
859         * configure, configure.in: added tests for libsocket and libnsl libraries,
860           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
861           from support/regression/Makefile.in
862         * support/regression/Makefile.in: added
863         * device/lib/pic16/Makefile.common.in: force make to use bash shell
864         * sim/ucsim/libtool: regenerated on sparc-solaris
865         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
866           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
867           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
868           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
869           sparc-solaris, which doesn't use GNU ld linker
870         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
871         * as/Makefile: find on sparc-solaris does not support -maxdepth option
872
873 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
874
875         * src/mcs51/peeph.def: updated comments
876
877 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
878
879         * device/lib/_gptrget.c,
880         * device/lib/_gptrput.c: slightly shorter
881         * doc/sdccman.lyx: incremented version
882         * src/mcs51/peeph.def: moved peephole comments to the line of first
883           change to better keep line correlation, reanimated 186.e
884         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
885
886 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
887
888         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
889           David Saxton with quotes around file name.
890
891 2005-08-15 Borut Razem <borut.razem AT siol.net>
892
893         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
894           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
895           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
896           make tests run on x86_64 platform
897
898 2005-08-13 Raphael Neider <rneider AT web.de>
899
900         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
901           as it might be executed DURING a build (parallel make is wonderful)
902
903 2005-08-13 Raphael Neider <rneider AT web.de>
904
905         * device/lib/Makefile.in (port-specific-objects-pic16):
906           revert to cp $(PORT)/bin/*.* $(PORTDIR)
907         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
908           dependency
909         * device/lib/pic16/Makefile.rules: build subdirs before creating
910           the library, removed builddir rule, create $(builddir) early in
911           recurse rule, use empty recurse rule for leaf directories
912         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
913           mkdir errors (race condition), removed duplicate suffix "hex"
914           from clean rules
915         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
916         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
917           prevents mkdir -p from aborting on Alpha
918
919 2005-08-12 Raphael Neider <rneider AT web.de>
920
921         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
922           db-statements in order to allow for arrays of pointers in code
923           sections to be placed without interspersed 0-padding, fixes
924           bug #1256215
925         * (emitStatistics): fixed division by zero for pic18f1220
926         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
927           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
928         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
929         * (pic16_pCodeConstString): keep track of already emitted string
930           literals to prevent "duplicate definitions of symbol _str_NR"
931         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
932           debug message
933         * device/lib/Makefile.in: ignore failing PIC16 library builds
934         * device/lib/pic16/Makefile: do not build if gputils are missing
935         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
936
937 2005-08-10 Raphael Neider <rneider AT web.de>
938
939         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
940           my last commit)
941
942 2005-08-10 Raphael Neider <rneider AT web.de>
943
944         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
945           Rokas' patch to add the new fixed point type "__fixed16x16"
946         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
947           functions for __fixed16x16 arithmetics
948         * device/lib/pic16: reimplemented the build system to support
949           a separate build directory, better handling of libio (create
950           the library in a separate subdir for each architecture) and
951           easier configuration (centralized in Makefile.common)
952
953 2005-08-07 Raphael Neider <rneider AT web.de>
954
955         * src/pic16/gen.c (genrshTwo): fixed sign extension
956         * src/pic16/device.c: added pic18f2320, 4220 and 4320
957         * device/include/pic16/pic18f2220.h: changed some bit definitions,
958           added T0CONbits
959         * device/include/pic16/pic18f4220.h: NEW, header for
960           pic18f4220 and pic18f4320
961         * device/include/pic16/pic18fregs.h: added new devices,
962           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
963         * device/include/pic16/signal.h: resolved name clashes
964           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
965           to also allow testing for interrupt enable bits, added
966           comments on how to use the macros
967         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
968         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
969           register definitions for the devices
970         * device/lib/pic16/pics.all: added new devices
971         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
972           allocated memory
973         * device/lib/pic16/libc/stdlib/memfree: do not count
974           the block header as free memory
975         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
976           simplified and added missing end-of-blocklist-marker
977           (reported by Peter Onion, fixes #1252814)
978         * (_mergeHeapBlock): fixed loop condition
979         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
980           len==0, restructured code
981         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
982           up a bit, reduced bitfield accesses, prevent endless loops
983           in case of heap corruption
984         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
985           "unreferenced arguments/must return a value" warnings
986         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
987           replaced BAUDREG with SPBRG
988         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
989           device/lib/pic16/debug/gstack/gstack.c: replaced
990           _naked, _asm, _endasm with __naked, __asm, __endasm
991
992 2005-08-05 Raphael Neider <rneider AT web.de>
993
994         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
995           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
996
997 2005-08-05 Borut Razem <borut.razem AT siol.net>
998
999         * device/lib/Makefile.in: added missing ';'
1000         * configure: removed ^M characters
1001
1002 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1003
1004         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
1005           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
1006           License
1007
1008 2005-08-04 Borut Razem <borut.razem AT siol.net>
1009
1010         * configure.in: pic16 libraries build 2nd try - enable running
1011           configure in device/lib/pic16
1012         * configure: regenerated from configure.in
1013         * device/lib/Makefile.in: create $(PORT)/bin directory
1014
1015 2005-08-03 Raphael Neider <rneider AT web.de>
1016
1017         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
1018           to get/set values via pointers
1019         * (genUnpackBits,genPackBits): changed detection of
1020           ptr->bitfield vs. sym.bitfield, fixed access via generic
1021           pointers, removed dead (wrong) code for multibyte bitfields
1022         * (genNearPointerGet, genGenPointerGet): removed useless code,
1023           fixed bitfield detection, fixes #1250594
1024         * (genNearPointerSet): removed useless code
1025         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
1026           and introduced macro pic16_emitpcode that conditionally emits
1027           the origin of the following pCode (useful for debugging SDCC)
1028         * src/pic16/pcode.c: changed (and disabled) some debug outputs
1029         * (createDefmap): fixed handling of LFSR for --optimize-df
1030
1031 2005-08-02 Borut Razem <borut.razem AT siol.net>
1032
1033         * device/lib/Makefile.in: pic16 libraries build enabled since
1034           gputils-0.13.2 are now localy installed at sourceforge's compile farm
1035
1036 2005-08-02 Raphael Neider <rneider AT web.de>
1037
1038         * src/pic16/gen.c (genPackBits): removed deprecated warning
1039         * (genGenPointerSet): fixed bitfield detection
1040
1041 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1042
1043         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
1044
1045 2005-07-31 Raphael Neider <rneider AT web.de>
1046
1047         * device/lib/pic16/libdev/pic18f458.c,
1048           device/include/pic16/pic18f458.h: added missing T0CONbits
1049
1050 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
1051
1052         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
1053
1054 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
1055
1056         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
1057
1058 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1059
1060         * device/include/mcs51/at89c51ed2.h: added.
1061
1062 2005-07-23 Raphael Neider <rneider AT web.de>
1063
1064         * src/pic/gen.h: added emitpcode macro for debugging
1065         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
1066           and replace by macro adding debug information on demand
1067         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
1068         * (gencjne): tried to fix; replaced with correct (slower) code
1069         * (gen{Unp,P}ackBits): fixed single bit access
1070         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
1071         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
1072           previous instruction
1073         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
1074           register has to be handled with care (forbidding movement
1075           of assignments/uses, removing assignments completely, ...)
1076         * (pCodeOptime2pCodes): make use of regIsSpecial
1077         * added lots of debugging output (commented out)
1078         * src/pic/rallloc.c (deassignLRs): prevent operand registers
1079           from being reused as result UNLESS it is known to work
1080
1081 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
1082
1083         * support/Util/dbuf.h: include <stddef.h> for size_t
1084         * .version: changed to version 2.5.2
1085
1086 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1087
1088         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
1089
1090 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1091
1092         * src/hc08/gen.c (genMinus): fixed bug #1241835,
1093           (genModOneByte): removed needless psha/pula
1094
1095 2005-07-22 Raphael Neider <rneider AT web.de>
1096
1097         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
1098           have PIC14 handled like PIC16, fixes broken pic14 linker calls
1099         * src/pic/gen.c (resolveIfx): do not "invent" labels
1100         * (genSkipc): changed to positive logic
1101         * (genSkipCond): removed as no longer needed
1102         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
1103           backport from PIC16
1104         * (genLeftShift): check operands are in different registers
1105         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
1106           INCF does not update CARRY...
1107         * src/pic/main.c: fixed _linkCmd
1108         * src/pic/pcode.c (unlinkpCode): added inactive code
1109         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
1110           alive (do not assign result and operand overlapping registers)
1111
1112 2005-07-22 Raphael Neider <rneider AT web.de>
1113
1114         * src/pic/device.c (dump_sfr): replaced register declaration with
1115           call to emitSymbolToFile() to avoid duplicate symbols
1116         * (assignRelocatableRegisters): do not declare external symbols
1117         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
1118           right (take size of type, not etype)
1119         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
1120         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
1121         * (packRegsForAccUse): disabled assignment of WREG as
1122           the result reg to prevent occurence of just fixed #1235003,
1123           fixes #1242954
1124         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
1125           symbols (avoids duplicate symbols in .asm file)
1126         * (pic14emitRegularMap): use emitSymbolToFile()
1127         * src/pic/gen.c (aopOp): fixed spillLocation handling
1128         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
1129         * (genDataPointerSet): removed unneccessary variables/output
1130
1131 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
1132
1133         * as/mcs51/lkarea.c: enlarged codemap for banked memory
1134         * device/lib/mcs51/crtbank.asm: added # to 0x0F
1135
1136 2005-07-21 Raphael Neider <rneider AT web.de>
1137
1138         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
1139           architecture cannot handle them efficiently, fixes bug #1235003
1140         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
1141           check for empty sets before using them (fixes bug #1232190)
1142
1143 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
1144
1145         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
1146           (lnksect2): generate warnings for memory overlap
1147         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
1148           constseg to set the name of these segments so you can instruct the linker
1149           to place them in banks
1150         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
1151         * src/SDCCglobl.h: added MODEL_HUGE to enum,
1152           added code_seg and const_seg to options
1153         * src/SDCCglue.c (emitMaps): use options.const_seg,
1154           (createInterruptVect): put interrupt vectors in segment HOME,
1155           (glue): put HOME before static segment and put the main glue in HOME,
1156           (glue): use options.code_seg
1157         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
1158         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
1159           these segments so you can instruct the linker to place them in banks
1160           (linkEdit): use code_loc for HOME segment which should be the first
1161           segment in code memory now
1162         * src/SDCCmem.c: fixed more stuff like bug 1238386
1163         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
1164           (changePointer): don't change function pointers to code pointers for
1165           banked functions,
1166           (compareType): added exceptional check for banked function pointers
1167         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
1168         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
1169           after static in code memory
1170         * src/mcs51/gen.c: added aopLiteralLong prototype,
1171           (aopForSym): use getSize for functions,
1172           (genCall): generate banked calls over one trampoline __sdcc_banked_call
1173           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
1174           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
1175           the segment,
1176           (genPcall): use call for literal function pointers and generate banked
1177           calls over the one trampoline so there's only one place for the user to
1178           modify according to his/hers hardware,
1179           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
1180           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
1181         * src/mcs51/main.c: added keyword banked,
1182           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
1183         * support/Util/SDCCerr.c,
1184         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
1185           needed for passing the bank and address to the trampoline
1186         * device/lib/mcs51/crtbank.asm: added for bankswitching
1187         * device/lib/mcs51/Makefile: added crtbank
1188
1189 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1190
1191         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
1192           for fields at offset 0 of a struct or union as reported
1193           on 2005-07-07 in the developer mailing list.
1194
1195 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
1196
1197         * src/SDCCmem.c: fixed bug 1238386
1198
1199 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1200
1201         * src/mcs51/peeph.def: added labelrefcounting for peepholes
1202           (patch #1144962), added peephole 300, enabled 259.x
1203         * doc/sdccman.lyx: removed screenshot and provided link instead
1204
1205 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1206
1207         * doc/sdccman.lyx: added section about debugging with ddd
1208         * doc/figures/ddd_example.eps: screenshot of debugging session
1209
1210 2005-07-04 Raphael Neider <rneider AT web.de>
1211
1212         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
1213           like CODE pointers, fixes #1115683
1214         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
1215           call, fixes bugs #1232211, #1228110,
1216           fixed wrong casts to pCodeFlow from pCodeInstructions
1217
1218 2005-07-04 Raphael Neider <rneider AT web.de>
1219
1220         * src/pic/gen.c (popGet): changed assert to allow for
1221           bit operands
1222         * (popGetAddr): changed signature to provide
1223           an additional index, patched all call sites
1224         * (genCmpEq): handle literal-like operands correctly
1225         * (genAddrOf): added sanity checks on __code/__data pointers
1226         * (genAssign): added handling of symbols from __code section
1227         * (gencjne): do not generate code for comparisons whose result
1228           is neither stored nor used, fixes bug #1171114
1229         * (AccLsh, AccRsh): operate on operand instead of WREG
1230         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
1231           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
1232           by known count
1233         * rewrote complete shift-by-literal logic, commented unused
1234           functions out
1235         * (genConstPointerGet): get multiple bytes (if result size > 1),
1236           fixed handling of non-immediate addresses
1237         * (genPointerGet): handle CODE pointers like CONST pointers
1238         * (genpic14Code): insert C-SRC lines as Cource-pCodes
1239         * ({aop,op}_isLitLike): NEW, single place to decide whether an
1240           operand is to be treated as a literal or not
1241         * (mov2w,genPcall,genCmpEq),
1242           src/pic/genarith.c: use aop_isLitLike() to decide between
1243           literal/register contents
1244         * (addSign): added missing offset
1245         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
1246           only emit comment in debug-mode,
1247           use {aop,op}_isLitLike throughout the file
1248         * src/pic/glue.c: fix initializers for pointers (work in progress)
1249         * src/pic/pcode.c (get_op): honor index on _const symbols
1250         * ({reset,dump}pCodeStatistics): NEW, estimate code size
1251         * (dumppBlock): added pCode size estimation
1252         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
1253           check for IS_SYMOP before OP_SYMBOL'ing
1254         * fixed indentation, compacted switch-statements
1255         * (allocReg): find free register and allocate it instead of
1256           allocating new registers all the time
1257         * (deassignLRs): prevent POINTER_GET's from being assigned the same
1258           registers as its operands (necessary only for multibyte GETs)
1259
1260 2005-07-01 Raphael Neider <rneider AT web.de>
1261
1262         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
1263           debugging .asm-output macros FENTRY + FEXIT
1264         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
1265           way... I wonder...
1266         * (emitpComment): NEW, printf to pCode
1267         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
1268           offset handling
1269         * (popGetAddr): NEW, variant of popGet to access an immediates
1270           high(er) bytes instead of the n'th byte of memory they reference,
1271           replaced popGet with popGetAddr where neccessary
1272         * (genDataPointerGet): reactivated and fixed implementation
1273         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
1274           accesses
1275         * (genDataPointerSet): fixed multibyte assignments
1276         * (genpic14Code): fixed --i-code-in-asm handling
1277         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
1278         * (genPlus): fixed index-out-of-bounds error
1279         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
1280         * src/pic/ralloc.c: added debugging output macro FENTRY2
1281         * (spillThis): fixed indentation, enbraced for-body for clarity
1282         * (rematStr): commented out as now unused
1283         * (regTypeNum): commented out special spill case (overwrites
1284           arbitrary values)
1285         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
1286
1287 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
1288
1289         * doc/sdccman.lyx: documented sfr16/sfr32,
1290           added example for using storage class with function pointers
1291         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
1292
1293 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
1294
1295         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
1296         * device/lib/_itoa.c,
1297         * device/lib/_ltoa.c: optimized codesize
1298         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
1299           but don't know how to suppress the double warning.
1300         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
1301         * support/Util/SDCCerr.c,
1302         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
1303
1304 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
1305
1306         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
1307           fixed old K&R prototypes
1308         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
1309         * device/lib/_gptrget.c,
1310         * device/lib/_gptrgetc.c,
1311         * device/lib/_gptrput.c: changed versions for new memory indicator values,
1312           also new versions for small generic pointers and banked generic pointers
1313         * src/port.h: added const_name
1314         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
1315         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
1316         * src/SDCCcse.c (findPrevIc): check all associative operators
1317         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
1318         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
1319         * src/SDCCmem.c: updated comments,
1320           set far-space to 0 for pdata, results in optimized code
1321         * src/SDCCmem.h: added macro CONST_NAME
1322         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
1323           moving the info into the highest bits, see also gptrget/gptrput
1324         * src/src.dsp: added sdcc.ico to project files
1325         * src/avr/gen.c (genCast): fixed bug 0x%d
1326         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
1327         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
1328           relation between ptr_type and DCL_TYPE,
1329           (genCast): fixed bug 0x%d
1330         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
1331           (CODE)" for const_name
1332         * src/hc08/gen.c (genCast): fixed bug 0x%d
1333         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
1334           (hc08_port): added "CONST (CODE)" for const_name
1335         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
1336           (aopForRemat, adjustArithmeticResult): disconnected direct relation
1337           between ptr_type and DCL_TYPE,
1338           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
1339           operand* and took AOP() inside function so sfr-ness can be checked,
1340           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
1341           new prototype,
1342           (genFunction, genEndFunction): optimized stack setup,
1343           (genMinus): optimized for literals with ending zeroes (in bytes),
1344           (genCast): fixed bug 0x%d
1345         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
1346           (mcs51_port): added "CONST (CODE)" for const_name
1347         * src/mcs51/peeph.def: made rule 226 more generic
1348         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
1349         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
1350         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
1351         * src/z80/main.c (z80_port): added NULL for const_name,
1352           (gbz80_port): added NULL for const_name
1353         * support/regression/tests/bug663539.c,
1354         * support/regression/tests/sfr16.c: new tests
1355
1356 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1357
1358         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
1359
1360 2005-06-24 Raphael Neider <rneider AT web.de>
1361
1362         * device/lib/pic16/libdev/pic18f[68][567]20.c:
1363           corrected typos...
1364         * device/include/pic16/signal.h: added USBIF
1365           and SIG_USB
1366
1367 2005-06-24 Raphael Neider <rneider AT web.de>
1368
1369         * device/lib/pic16/libdev/pic18f2455.c,
1370           device/include/pic16/pic18f2455.h: NEW
1371         * device/include/pic16/pic18fregs.h,
1372           device/lib/pic16/pics.all,
1373           src/pic16/device.c: added 18f2455
1374         * device/lib/pic16/libdev/pic18f[68][567]20.c,
1375           device/include/pic16/{pic18f[68][567].h,usart.h}:
1376           replaced MULTIPLE_USARTS define with more relaible
1377           compatibility sfrs (for USART access)
1378
1379 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
1380
1381         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
1382           and the output asm file line is printed on two lines.
1383
1384 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1385
1386         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
1387           BGT, BLE, BHI, and BLS instructions
1388         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
1389           genCmpEq): removed
1390         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
1391           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
1392           fixes bug #1216342
1393         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
1394
1395 2005-06-15 Raphael Neider <rneider AT web.de>
1396
1397         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
1398         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
1399         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
1400           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
1401           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
1402
1403 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1404
1405         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
1406           Marcel Telka in bug #1215704
1407
1408 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
1409
1410         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
1411           located in shared memory bank.
1412
1413 2005-05-31 Raphael Neider <rneider AT web.de>
1414
1415         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
1416           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
1417           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
1418
1419 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
1420
1421         * device/lib/_strncpy.c: fixed the fix
1422
1423 2005-05-26 Raphael Neider <rneider AT web.de>
1424
1425         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
1426           initializers with \0, bug #1208187
1427         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
1428           intializers with \0, bug #1208187
1429
1430 2005-05-26 Raphael Neider <rneider AT web.de>
1431
1432         * src/pic16/glue.c (pic16_printIvalChar): fixed string
1433           initializers with \0, bug #1208187
1434         * src/pic16/main.c (_process_pragma): added sanity checks
1435           for stack position and size, emit warnings when appropriate
1436
1437 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
1438
1439         * device/lib/_strncpy.c: fixed not filling with \0
1440
1441 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1442
1443         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
1444           createFunction),
1445         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
1446           compound_statement),
1447         * src/SDCCsymt.h,
1448         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
1449
1450 2005-05-24 Raphael Neider <rneider AT web.de>
1451
1452         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
1453
1454 2005-05-24 Raphael Neider <rneider AT web.de>
1455
1456         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
1457           TRISE definitions, closes bug #1162453
1458
1459 2005-05-22 Raphael Neider <rneider AT web.de>
1460
1461         * src/pic16/main.c (_process_pragma): check for missing
1462           arguments to pragmas code and udata
1463         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
1464           consistency fixes to match other headers (thanks to Jim Paris)
1465         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
1466
1467 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
1468
1469         * src/SDCCicode.c (isOperandEqual): fixed missing ;
1470
1471 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
1472
1473         * support/regression/tests/bug1198642.c: new test
1474         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
1475         * src/SDCCcse.c (findPrevIc): added comment, please have a look
1476         * support/scripts/resource.h,
1477         * support/scripts/resource.rc,
1478         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
1479         * support/scripts/sdcc.ico: added 32x32 icon
1480
1481 2005-05-18 Raphael Neider <rneider AT web.de>
1482
1483         * device/lib/pic16/libdev/pic18f*.c,
1484         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
1485           keywords to "__sfr" and "__at (X)"
1486         * device/include/pic16/pic18fregs.h: added pic18f4520
1487         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
1488           #1203088 (MPLAB compatibility)
1489
1490 2005-05-17 Raphael Neider <rneider AT web.de>
1491
1492         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
1493         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
1494         * device/lib/pic16/pics.all: added new devices
1495         * src/pic16/device.c: added support for pic18f4520
1496
1497 2005-05-16 Raphael Neider <rneider AT web.de>
1498         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
1499         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
1500         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
1501           convenience function for bit access
1502
1503 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
1504
1505         * device/lib/printf_large.c: fixed bug 1193299
1506         * support/regression/tests/bug1057979.c: added test %3.3s
1507
1508 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1509
1510         * device/include/mcs51/8051.h,
1511         * device/include/mcs51/8052.h: made parseable with lint
1512         * device/include/mcs51/lint.h: added include file for (sp)lint
1513         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
1514         * doc/cdbfileformat.lyx,
1515         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
1516
1517 2005-05-14 Raphael Neider <rneider AT web.de>
1518
1519         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
1520         * device/lib/pic16/libc/stdlib/itoa.c (new)
1521         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
1522         * device/lib/pic16/libio/Makefile: exclude subdir according to
1523           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
1524         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
1525         * src/pic16/gen.c (genFunction): prevent annoying warning
1526         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
1527           nameclashes on BeOS
1528         * support/cpp2/cppmain.c (cpp_output_string): new
1529         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
1530           fixes bug 1116802
1531
1532 2005-05-13 Borut Razem <borut.razem AT siol.net>
1533
1534         * src/SDCCmain.c (linkEdit): fixed bug 1195202
1535
1536 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1537
1538         * .version: changed to version 2.5.1; back to bleeding edge development
1539
1540 2005-05-11 Borut Razem <borut.razem AT siol.net>
1541
1542         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
1543           generate PDF version 1.3 documents
1544
1545 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1546
1547         * .version: changed to version 2.5.0
1548
1549 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1550
1551         * doc/sdccman.lyx: updated weblinks, index and smaller updates
1552
1553 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1554
1555         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
1556         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
1557         well as many smaller updates.
1558         * .version: changed to version 2.5.0-pre1
1559
1560 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1561
1562         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
1563
1564 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
1565
1566         * support/regression/tests/bug1185672.c: added
1567         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
1568           bug 1185672
1569         * src/mcs51/gen.c (genCall): added comments, made it look safer
1570         * src/mcs51/gen.c (genEndFunction): simplified
1571
1572 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
1573
1574         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
1575
1576 2005-04-14 Borut Razem <borut.razem AT siol.net>
1577
1578         * fixed bug 1045046 - SIGSEGV with really simple code?:
1579           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
1580           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
1581
1582 2005-04-14 Borut Razem <borut.razem AT siol.net>
1583
1584         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
1585           src/pic16/device.h: temporarily disabled experimental #inline pragma
1586           for 2.5.0 release
1587
1588 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
1589
1590         * device/include/z80/stdio.h,
1591         * device/include/z80/string.h: removed these highly incomplete files so
1592           SDCC can use the default ones in device/include/
1593
1594 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1595
1596         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
1597         gcc warning.
1598         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
1599         fix sdcpp warnings.
1600
1601 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1602
1603         * device/include/malloc.h: removed redundant __reentrant prototypes
1604         * device/lib/_mullong.c: added working xstack variant in asm (C version
1605           doesn't pass regression tests)
1606         * device/lib/bpx.c: used __data and made bpx char for mcs51
1607         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
1608           (createFunction): fixed bug with xstackPtr
1609         * src/SDCCcse.c: corrected comments
1610         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
1611           (killDeadCode, eBBlockFromiCode): removed unused code
1612         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
1613           corrected comments
1614         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
1615           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
1616           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
1617           (genModOneByte): fixed warning in MSVC
1618         * src/mcs51/main.c (): added comments
1619         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
1620
1621 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1622
1623         * src/SDCCmain.c (linkEdit): oops, changed one line too many
1624
1625 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
1626
1627         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
1628
1629 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
1630
1631         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
1632         characters arrays of larger size than the declared one.
1633
1634 2005-04-10 Borut Razem <borut.razem AT siol.net>
1635
1636         * src/pic/gen.c (genInline),
1637           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
1638           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
1639           (findNextInstruction), (findPrevInstruction),
1640           (findInstructionUsingLabel),
1641           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
1642         * src/pic/pcode.c (findLabel): added missing '\n'
1643         * src/src.dsp: added SDCCdwarf2.c to the project
1644
1645 2005-04-09 Borut Razem <borut.razem AT siol.net>
1646
1647         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
1648
1649 2005-04-08 Raphael Neider <rneider AT web.de>
1650
1651         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
1652           into the chain after a given one) and mergeDefmapSymbols (combine
1653           defmap entries for each symbol per pcode)
1654         * (createDefmap): have defmap entries merged in the end
1655         * (defmapReplaceSymRef): split defmap entries covering two accesses to
1656           a symbol before replacing one access type's symbol, merge symbols in
1657           the end (replacement symbol might already have an entry)
1658         * (assignValnums): keep reference to written WREG intact
1659
1660 2005-04-08 Raphael Neider <rneider AT web.de>
1661
1662         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
1663           Alpha)
1664
1665 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
1666
1667         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
1668         bytes
1669
1670 2005-04-07 Raphael Neider <rneider AT web.de>
1671
1672         * device/include/pic16/usart.h: added compatibility defines for
1673           devices with more than one USART
1674         * device/include/pic16/pic18f[68][567]20.h: activated above defines
1675
1676 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1677
1678         * device/lib/Makefile.in: updated for port specific include
1679
1680 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1681
1682         * support/regression/ports/mcs51/spec.mk: added mcs51 include
1683
1684 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1685
1686         * device/include/8051.h,
1687         * device/include/8052.h,
1688         * device/include/at89S8252.h,
1689         * device/include/at89c55.h,
1690         * device/include/at89x051.h,
1691         * device/include/at89x51.h,
1692         * device/include/at89x52.h,
1693         * device/include/mcs51reg.h,
1694         * device/include/reg51.h,
1695         * device/include/reg764.h,
1696         * device/include/regc515c.h,
1697         * device/include/sab80515.h: (re)moved these 12 files
1698         * device/include/mcs51/8051.h,
1699         * device/include/mcs51/8052.h,
1700         * device/include/mcs51/at89S8252.h,
1701         * device/include/mcs51/at89c55.h,
1702         * device/include/mcs51/at89x051.h,
1703         * device/include/mcs51/at89x51.h,
1704         * device/include/mcs51/at89x52.h,
1705         * device/include/mcs51/mcs51reg.h,
1706         * device/include/mcs51/reg51.h,
1707         * device/include/mcs51/reg764.h,
1708         * device/include/mcs51/regc515c.h,
1709         * device/include/mcs51/sab80515.h: and added them here
1710
1711 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
1712
1713         * device/include/stdarg.h: changed SDCC specific keywords to double
1714           underlined form.
1715         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
1716           mcs51 and ds390.
1717         * device/include/hc08/mc68hc908gp32.h,
1718         * device/include/hc08/mc68hc908jb8.h,
1719         * device/include/hc08/mc68hc908jkjl.h,
1720         * device/include/hc08/mc68hc908qy.h: fixed comments
1721         * device/include/mcs51/README: updated
1722         * device/include/mcs51/c8051f120.h: added PINRSF
1723         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
1724         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
1725           amidst code. Also inline is not supported.
1726
1727 2005-04-06 Raphael Neider <rneider AT web.de>
1728
1729         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
1730         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
1731           callers stack/frame pointers
1732
1733 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
1734
1735         * device/include/pic16/usart.h: added, missing in previous commit,
1736         * device/include/pic16/adc.h: fixed typo,
1737         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
1738         commit,
1739         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
1740         <p18fxxx.inc>
1741         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
1742         uninitialized because a bug appears with gplink
1743         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
1744         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
1745         complains for unrecognised option
1746
1747 2005-04-05 Raphael Neider <rneider AT web.de>
1748
1749         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
1750           structs as well (using memcpy)
1751         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
1752           on ISRs (GOTO has no label)
1753         * src/pic16/device.h: added OF_OPTIMIZE_DF
1754         * src/pic16/main.c: added compiler switch --optimize-df to enable the
1755           new data flow analysis/optimization
1756         * src/pic16/pcode.c: added (prototypes for and implementation of)
1757           dataflow analysis functions, fixed pCodeInstructions' inCond and
1758           outCond values, made RCALL a branch instruction
1759         * (pic16_unlinkpCode): keep C line if possible
1760         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
1761           C line moved if possible
1762         * (pic16_getRegFrompCodeOp): NEW, improved version of...
1763         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
1764           to use new pic16_getRegFrompCodeOp (works for more SFRs)
1765         * (pic16_BuildFlow): fixed skip instructions with label (did not start
1766           new flow)
1767         * (pic16_getJumptabpCode): NEW, needed in...
1768         * (LinkFlow): fixed handling of jumptables, calls and conditional
1769           branches
1770         * (pic16_InsertCommentAfter): NEW
1771         * (pic16_pCodeReplace): made verbose and flow preserving
1772         * (AnalyzeFlow): added call to data flow analysis
1773         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
1774         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
1775         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
1776
1777 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1778
1779         * src/SDCCast.c (decorateType): fixed bug #1105626
1780
1781 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
1782
1783         * device/include/asm/pic16/features.h,
1784         * pic18f*.h headers,
1785         * device/include/pic16/adc.h,
1786         * device/include/pic16/delay.h,
1787         * device/include/pic16/i2c.h,
1788         * device/include/pic16/malloc.h,
1789         * device/include/pic16/stdio.h,
1790         * device/include/pic16/stdlib.h,
1791         * device/include/pic16/string.h,
1792         * device/lib/pic16/libc/stdio/printf_tiny.c,
1793         * device/lib/pic16/libc/stdio/printf_small.c,
1794         * device/lib/pic16/libc/stdio/strmgpsim.c,
1795         * device/lib/pic16/libc/stdio/strmmssp.c,
1796         * device/lib/pic16/libc/stdio/strmusart.c,
1797         * device/lib/pic16/libc/stdio/vfprintf.c,
1798         * device/lib/pic16/libc/stdlib/ltoa.c,
1799         * device/lib/pic16/libc/stdlib/putchar.c,
1800         * device/lib/pic16/libc/stdlib/x_ftoa.c,
1801         * device/lib/pic16/libc/stdlib/memchrpgm.c,
1802         * device/lib/pic16/libc/stdlib/memchrram.c,
1803         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
1804         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
1805         * device/lib/pic16/libio/adc/adcbusy.c,
1806         * device/lib/pic16/libio/adc/adcread.c,
1807         * device/lib/pic16/libio/adc/adcsetch.c,
1808         * device/lib/pic16/libio/usart/ubaud.c,
1809         * device/lib/pic16/libio/usart/ubusy.c,
1810         * device/lib/pic16/libio/usart/udrdy.c,
1811         * device/lib/pic16/libio/usart/uopen.c,
1812         * device/lib/pic16/libio/usart/uputc.c,
1813         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
1814         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
1815         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
1816         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
1817         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
1818         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
1819         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
1820         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
1821         specific keywords to double underlined form,
1822         * device/lib/pic16/libc/Makefile.rules,
1823         * device/lib/pic16/libsdcc/Makefile.rules,
1824         * device/lib/pic16/libm/Makefile,
1825         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
1826         to compile with C standard set in Makefile.common
1827         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
1828         rand.c and crc.c in compilation process,
1829         * device/lib/pic16/libsdcc/int/divuint.c,
1830         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
1831         `c' from signed to unsigned,
1832         * device/lib/pic16/startup/crt0.c,
1833         * device/lib/pic16/startup/crt0i.c,
1834         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
1835         keywords to double underlined form, bug fixes in _do_cinit function
1836         which prevented the correct initialization of the .idata segment,
1837         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
1838         core to enter a infinite loop
1839         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
1840
1841 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1842
1843         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
1844
1845 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1846
1847         * device/include/Makefile.in: add support for hc08 subdirectory
1848         * device/include/hc08/: new subdirectory
1849         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
1850         Lucas Loizaga, thanks!
1851         * device/include/hc08/mc68hc908qy.h,
1852         * device/include/hc08/mc68hc908gp32.h,
1853         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
1854         their own directory. Changed internal macro names to use the compiler
1855         reserved namespace. Changed SDCC specific keywords to double
1856         underlined form.
1857         * device/include/math.h,
1858         * device/include/malloc.h,
1859         * device/include/stdarg.h,
1860         * device/include/stdbool.h
1861         * device/include/string.h,
1862         * device/include/tinibios.h,
1863         * device/include/ds400rom.h,
1864         * device/include/8051.h,
1865         * device/include/8052.h,
1866         * device/include/80c51xa.h,
1867         * device/include/at89c55.h,
1868         * device/include/at89S8252.h,
1869         * device/include/at89x51.h,
1870         * device/include/at89x52.h,
1871         * device/include/ds80c390.h,
1872         * device/include/reg764.h,
1873         * device/include/regc515c.h,
1874         * device/include/sab80515.h,
1875         * device/include/mcs51/c8051f000.h,
1876         * device/include/mcs51/c8051f018.h,
1877         * device/include/mcs51/c8051f020.h,
1878         * device/include/mcs51/c8051f040.h,
1879         * device/include/mcs51/c8051f060.h,
1880         * device/include/mcs51/c8051f120.h,
1881         * device/include/mcs51/c8051f300.h,
1882         * device/include/mcs51/c8051f310.h,
1883         * device/include/mcs51/c8051f320.h,
1884         * device/include/mcs51/c8051f330.h,
1885         * device/include/mcs51/c8051f350.h,
1886         * device/include/z180.h: Changed SDCC specific keywords to double
1887         underlined form.
1888
1889 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
1890
1891         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
1892         18F4455,
1893         * (pic16_assignConfigWordValue): disable testing of configuration
1894         register value with config mask,
1895         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
1896         function with port->fun_prefix,
1897         * (genFunction): when generating a naked interrupt function never
1898         create an absolute segment placed in interrupt vector address, place
1899         the actual interrupt function at IVA instead, when an interrupt
1900         function is generated with unspecified interrupt then do not create
1901         the absolute section,
1902         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
1903         code for generating a call to generic pointer get/put function with
1904         a call to function pic16_callGenericPointer(),
1905         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
1906         the call to the generic pointer get/put functions with prefixing the
1907         function name with port->fun_prefix,
1908         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
1909         * src/pic16/main.c (_process_pragma): prefix function with
1910         port->fun_prefix,
1911         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
1912         calling assembler, old 18Fxxxx macro is deprecated,
1913         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
1914         PC_ASMDIR in while condition,
1915         * (findInstruction): add PC_ASMDIR in while condition,
1916         * (buildCallTree): prefix main with port->fun_prefix,
1917         * (pic16_pCode2str): fixed bug that didn't emit the memory access
1918         identifier for variable with banked access in instructions BTFSS,
1919         BTFSC, BCF, BSF, BTG
1920         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
1921         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
1922         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
1923         perform optimization when enviroment variable NO_REG_OPT is set,
1924         * (insideLRBlock): NEW, return 1 if register is inside an
1925         INF_LOCALREGS block,
1926         * (RemoveRegFromLRBlock): remove a register that is completely
1927         eliminated by register optimization, but it is still left in local
1928         register store/restore in/from stack block,
1929         * (Remove2pcodes): after removing register, check to see if it
1930         should be removed from local register store/restore in/from stack
1931         block,
1932         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
1933         DUMMY_READ_VOLATILE,
1934
1935         * device/include/pic16/adc.h: minor prototype modifications and
1936         update,
1937         * device/include/pic16/malloc.h: added GPL notice various
1938         modifications,
1939         * device/include/pic16/stdint.h: NEW, standard header for ints
1940         * device/include/pic16/delay.h: NEW, header for delay functions,
1941         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
1942         delay1mtcy,
1943         * device/include/pic16/signal.h: NEW, header providing helper macros
1944         for implementing signal handlers,
1945         * device/include/pic16/stdio.h: added prototypes for functions,
1946         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
1947         prototypes for stdin and stdout, added macro PUTCHAR to
1948         automatically implement putchar function prototype,
1949         * device/include/pic16/usart.h: modified and updated USART library,
1950         * device/lib/pic16/libio/adc/,
1951         * device/lib/pic16/libio/i2c: some modifications to improve library
1952         performance,
1953         * device/lib/pic16/libc/stdio/: modifications for the new printf*
1954         family of functions,
1955         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
1956         family of functions and other sources,
1957         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
1958         of the PIC18Fxx[28] devices,
1959         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
1960         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
1961         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
1962         _do_cinit function, because the previous failed when local variables
1963         where not placed in the same memory bank,
1964         * device/lib/pic16/libsdcc/char/: various modifications to improve
1965         library performance,
1966         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
1967         information on the new functions of the c library and more...
1968
1969 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1970
1971         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
1972
1973 2005-03-26 Raphael Neider <rneider AT web.de>
1974
1975         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
1976           if condition == CARRY)
1977         * (genCmp): adapted to new genSkipc semantics
1978         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
1979           on rIfx (genCmp was broken)
1980
1981 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1982
1983         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
1984         * src/z80/main.c (_keywords[]),
1985         * src/SDCCglobal.h (struct options),
1986         * src/SDCC.y,
1987         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
1988         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
1989         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
1990         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
1991         always available in leading double underscore form. The C99 support is
1992         mostly missing, but it's a start.
1993         * support/regression/tests/bug-227710.c: fixed nonconforming use of
1994         reserved identifier "__data".
1995
1996 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
1997
1998         * src/mcs51/peeph.def: fixed bug 1170013
1999
2000 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
2001
2002         * device/include/mcs51reg.h: fixed bug 842007
2003
2004 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2005
2006         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
2007         last time.
2008
2009 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2010
2011         * src/port.h (struct PORT),
2012         * src/avr/ralloc.c (avr_assignRegisters),
2013         * src/avr/main.c,
2014         * src/ds390/ralloc.c (ds390_assignRegisters),
2015         * src/ds390/main.c,
2016         * src/hc08/ralloc.c (hc08_assignRegisters),
2017         * src/hc08/main.c,
2018         * src/mcs51/ralloc.c (mcs51_assignRegisters),
2019         * src/mcs51/main.c,
2020         * src/pic/ralloc.c (pic14_assignRegisters),
2021         * src/pic/main.c,
2022         * src/pic16/ralloc.c (pic16_assignRegisters),
2023         * src/pic16/main.c,
2024         * src/xa51/ralloc.c (xa51_assignRegisters),
2025         * src/xa51/main.c,
2026         * src/z80/ralloc.c (z80_assignRegisters),
2027         * src/z80/ralloc.h,
2028         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
2029         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
2030         * src/SDCCcse.h,
2031         * src/SDCCdflow.c (computeDataFlow),
2032         * src/SDCCdflow.h,
2033         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
2034         * src/SDCCloop.h,
2035         * src/SDCCcflow.c (*),
2036         * src/SDCCcflow.h,
2037         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
2038         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
2039         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
2040         immedDom() returning wrong block; probably fixes bug #1160833)
2041
2042 2005-03-20 Borut Razem <borut.razem AT siol.net>
2043
2044         * support/scripts/inc2h.pl: WIN32 port
2045
2046 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
2047
2048         * device/lib/makefile.in: added abs.c and labs.c
2049
2050 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
2051
2052         * device/include/stdint.h: added
2053         * device/lib/abs.c: added
2054         * device/lib/labs.c: added
2055         * device/include/stdlib.h: added abs() and labs() prototypes
2056         * device/lib/libsdcc.lib: added abs and labs
2057         * device/include/float.h,
2058         * device/lib/_fsmul.c,
2059         * device/lib/printf_fast.c,
2060         * device/lib/printf_tiny.c: updated comments
2061
2062 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2063
2064         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
2065         bug #1164313
2066
2067 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2068
2069         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
2070         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
2071
2072 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
2073
2074         * device/lib/printf_large.c: removed inline assembly for portability and
2075           readability. Use printf_fast if speed or size are more important.
2076         * src/pic16/gen.c: removed conditions around use of DEBUGpc
2077         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
2078
2079 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
2080
2081         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
2082         prevent compiler warning
2083
2084 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
2085
2086         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
2087         moved to level 0 and declared as static. Also they are explicit
2088         placed in access bank. This was necessery because some times they
2089         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
2090         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
2091         optimizations. Currently only compare to unsigned char is implemented,
2092         * src/pic16/gen.c: added fReturnIdx array,
2093         * (struct resolvedIfx) is moved to gen.h and made public,
2094         * (struct _G): added sregsAlloc and sregsAllocSet fields,
2095         * (aopForSym): added an optimization to directly store in stack of
2096         the operand of a SEND iCode,
2097         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
2098         but as registers instead (AOP_REG) using the fReturnIdx array,
2099         * (pic16_freeAsmop): remove the freed register from the
2100         _G.sregsAlloc field,
2101         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
2102         a compare of 'WREG',
2103         * (pic16_popGetTempRegCond): changed function prototype, now
2104         function takes also a bitVector argument v which holds the current
2105         set of registers that are allocated for stack access by aopForSym,
2106         registers allocated in aopForSym for accessing stack symbols are not
2107         any more part of the functions usedRegs field,
2108         * (genCall): some times aopOp is called for a stack variable to be
2109         send, aopForSym might perform the push, if this is true make sure
2110         that genCall doesn't push the variable twice by testing _G.resDirect,
2111         * (genFunction): changed testing for unspecified interrupt number
2112         from 256 to INTNO_UNSPEC,
2113         * modified selection scheme of frame pointer generation. Previously
2114         if function did use local registers a frame pointer was generated,
2115         now a frame pointer is generated only if function has arguments
2116         (that need PLUSW2 register access), or has stack arguments, or the
2117         compiler is not instructed to omit the frame pointer,
2118         * (genEndFunction): before restoring local registers that were saved
2119         in the function preamble, also restore the registers that *might*
2120         have been allocated for stack access,
2121         * (genRet): removed some old comments,
2122         * (genCmp, the active (RN's) version): added a call to the
2123         pic16_genCmp_special function to perform the compare with a more
2124         robust and optimized way,
2125         * (genInline): a feature has been added in inline code generation,
2126         which allows a wildcard variable substitution when writing inline
2127         assembly. Code is incomplete and experimental therefore undocumented,
2128         * (genCast): changed order of aopOp for result and right to allow
2129         aopForSym to directly load the result if possible,
2130         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
2131         perform an optimized compare on some selected special occasions,
2132         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
2133         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
2134         generate an IVT any more,
2135         * src/pic16/main.c (pic16_optionsTable): added command line option
2136         --optimize-cmp,
2137         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
2138         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
2139         macros,
2140         * src/pic16/NOTES: Raphael Neider added in list of active developers
2141         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
2142         jumptable_end to prevent bug #,
2143         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
2144         inCond and outCond fields,
2145         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
2146         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
2147         turn off register spilling,
2148         * (packRegsForOneUse): synced with other ports' versions although it
2149         is not used currently,
2150         * (pic16_packRegisters): added an optimization while reading
2151         structure bitfields, some registers may be saved (malloc code is
2152         decreased by 80 bytes)
2153
2154 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
2155
2156         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
2157         left is a bitfield, if yes, then don't optimize assignment. Perhaps
2158         this can be optimized more?
2159
2160 2005-03-10 Raphael Neider <rneider AT web.de>
2161
2162         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
2163           genNearPointerGet): (hopefully) fixed access to bitfields via
2164           pointers (p->bitN = x; and x = p->bitN; failed)
2165
2166 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
2167
2168         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
2169
2170 2005-03-09 Raphael Neider <rneider AT web.de>
2171
2172         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
2173
2174 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
2175
2176         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
2177         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
2178           (regTypeNum): set REG_BIT type if necessary
2179         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
2180         * support/regression/tests/critical.c: check bug 1144613
2181
2182 2005-03-02 Raphael Neider <rneider AT web.de>
2183
2184         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
2185
2186 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2187
2188         * src/avr/ralloc.c (serialRegAssign),
2189         * src/ds390/ralloc.c (serialRegAssign),
2190         * src/hc08/ralloc.c (serialRegAssign),
2191         * src/mcs51/ralloc.c (serialRegAssign),
2192         * src/pic/ralloc.c (serialRegAssign),
2193         * src/pic16/ralloc.c (serialRegAssign),
2194         * src/xa51/ralloc.c (serialRegAssign),
2195         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
2196
2197 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
2198
2199         * src/SDCCast.c (decorateType): fixed bug 1124787
2200
2201 2005-02-20 Hubert Sack <sack AT digiplan.de>
2202         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2203
2204         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
2205         patch #1121755
2206
2207 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2208
2209         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
2210         to keep the correct label reference count when adding/removing references
2211         to labels. A peephole file using this is appended to patch #1144962.
2212
2213 2005-02-14 Raphael Neider <rneider AT web.de>
2214
2215         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
2216         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
2217         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
2218           retrievals of result operand's value on assignment
2219
2220 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
2221
2222         * device/include/pic16/string.h: modified prototype for memccpy()
2223         to memccpy(void *, void *, char, size_t)
2224         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
2225         check whether to omit frame pointer or not,
2226         * (genInline): convert all occurences of "\n" to LF in inline
2227         assembler blocks, this helps formatting the inline text,
2228         * (pic16_loadFSR0): modified prototype,
2229         * (genNearPointerGet, genNearPointerSet): reorganization of code,
2230         removed some 8051 legacy code,
2231         * (genPackBits): enabled handling bitfields exceeding one byte in size,
2232         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
2233         before allocating temporary registers in functions,
2234
2235 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
2236
2237         * support/regression/tests/bitvars.c: corrected the "fix"
2238
2239 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
2240
2241         * support/regression/tests/bitvars.c,
2242         * support/regression/tests/bitwise.c,
2243         * support/regression/tests/rotate.c: "fixed" problems on Alpha
2244
2245 2005-02-10 Raphael Neider <rneider AT web.de>
2246
2247         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
2248           different size for Alpha
2249         * src/pic16/gen.c (genCmpEq) : improved compare with 0
2250
2251 2005-02-09 Raphael Neider <rneider AT web.de>
2252
2253         * src/SDCC.lex(doPragma) : save and restore warning options as well
2254           (also added new stack plus clone- and copyAndFreeSDCCERRG())
2255         * have #pragma less_pedantic set the errorlevel to WARNING
2256           (fixes #1117001)
2257         * (cloneOptimize) : fixed wrong malloc's size
2258         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
2259           facilitate correct handling of #pragma (save|restore)
2260
2261 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
2262
2263         * src/mcs51/gen.c: removed non-standard C nameless struct/union
2264
2265 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
2266
2267         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
2268
2269 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
2270
2271         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
2272
2273 2005-02-02 Raphael Neider <rneider AT web.de>
2274
2275         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
2276         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
2277         * (pic16_storeForReturn): fixed to allow returning function pointers
2278         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
2279         * device/include/pic16/{stddef.h,stdbool.h}: added
2280
2281 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
2282
2283         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
2284
2285 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
2286
2287         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
2288         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
2289          appeared to be required
2290
2291 2005-01-31 Borut Razem <borut.razem AT siol.net>
2292
2293         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
2294           include/mcs51 and include/z80 directories to the package
2295
2296 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2297
2298         * src/hc08/gen.c (genFunction): fixed bug #1112752
2299
2300 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2301
2302         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
2303
2304 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2305
2306         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
2307
2308 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
2309
2310         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
2311
2312 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
2313
2314         * device/include/c8051fxxx.h: removed these 6 files
2315         * device/include/mcs51/c8051fxxx.h: added these 11 new files
2316
2317 2005-01-26 Raphael Neider <rneider AT web.de>
2318
2319         * src/pic16/gen.c (genAssign): fixed assignment from longs
2320           in codespace (were cut to three bytes)
2321         * (genDummyRead): implemented (except for CODESPACE...),
2322           fixed bug #1108575
2323         * src/pic16/glue.c (emitStatistics): beautified
2324         * device/lib/pic16/libm/Makefile: added include path
2325
2326 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2327
2328         * src/z80/gen.c (aopPut): fixed bug #1103902
2329
2330 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2331
2332         * device/lib/expf.c: fixed bug #1095792
2333
2334 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
2335
2336         * device/lib/pic16/libm: added Math library sources
2337
2338 2005-01-24 Raphael Neider <rneider AT web.de>
2339
2340         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
2341           to enable upcast to pCodeOpReg2 (there is no type tag to
2342           differenciate the two and pic16_popGet2p cast into PCOR2)
2343         * src/pic16/main.c (_process_pragma): fixed another malloc bug
2344           (sizeof(sectNames) changed to sizeof(sectName))
2345           Both patches fix segfaults under MinGW.
2346
2347 2005-01-23 Raphael Neider <rneider AT web.de>
2348
2349         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
2350           Safe_[mc]?alloc()'ed variables
2351         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
2352           of (byte sized) temporaries (assign them to WREG for now)
2353         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
2354           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
2355           this might fix SIGSEGVs on MinGW...
2356         * src/SDCCopt.c (killDeadCode): restored original behaviour
2357           (volatile operands might get thrown away though)
2358
2359 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
2360
2361         * src/pic16/gen.c: fixed bug #1106975,
2362         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
2363         pointer update, INTCON is saved, global interrupts are disabled and
2364         restored after updateing TOS.
2365         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
2366         * added function attribute 'shadowregs' to take advantage of shadow
2367         registers,
2368         * added function attribute 'wparam' as an alternative to the wparam
2369         pragma,
2370         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
2371         user declares a non-ISR function as 'shadowregs',
2372         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
2373
2374 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
2375
2376         * .version: bumped version number to 2.4.8
2377         * device/lib/pic16/pics.all: list of PIC18F devices supported by
2378         pic16 port,
2379         * device/lib/pic16/libio/i2c/: I2C module support library,
2380         * device/include/pic16/i2c.h: I2C support library header,
2381         * device/lib/pic16/libc/stdio/: standard IO support sources,
2382         * (printf_small.c): printf_small() source, supports float print,
2383         * (printf_tiny.c): printf_tiny() source, does not support floats,
2384         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
2385         enable global optimizations for entire library source, other
2386         Makefiles in the source tree are also modified to reflect this,
2387         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
2388         function,
2389         * doc/sdccman.lyx: updated to reflect new changes,
2390         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
2391         sym->onStack if-case,
2392         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
2393         sbit, idata, _idata, xdata, _xdata,
2394         * added pragma library, to link an external library, (see doc),
2395         * removed command line options, --pomit-config-words, --pomit-ivt,
2396         --pleave-reset-vector,
2397         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
2398         when calling assembler to reflect memory model used, also define
2399         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
2400         reflect stack model used,
2401         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
2402         on stack return NULL,
2403
2404 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2405
2406         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
2407           of the operands is volatile. Fixes #1020220
2408
2409 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2410
2411         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
2412         * (OptimizeRegUsage): make sure that there is really no other flow where
2413           the first pCode is used
2414
2415 2005-01-22 Raphael Neider <rneider AT web.de>
2416
2417         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
2418           to fix #1106967 (pCode->seq are not set up correctly)
2419
2420 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2421
2422         * src/SDCCglue.c (glue): make sure code area is declared before the
2423         static initialization area.
2424
2425 2005-01-21 Raphael Neider <rneider AT web.de>
2426
2427         * device/lib/Makefile.in: fixed test for pic16 install dir
2428         * device/lib/pic16/*/Makefile*: modified compile flags to enable
2429           optimizations
2430         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
2431           added --optimize-goto compiler switch and pragma wparam documentation
2432         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
2433         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
2434           and PRODH closing bug #1071770 (peephole optimizer)
2435
2436 2005-01-19 Raphael Neider <rneider AT web.de>
2437
2438         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
2439           cmdLine buffers (used when calling sdcpp...) are large enough
2440           (MAX_PATH=256 truncates arguments leading to system halts when
2441           used in MinGW...)
2442         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
2443         * (genUminus): rewritten to for efficiency
2444         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
2445           used uninitialized in some cases)
2446         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
2447           copy the third byte from the int -- now assumes 0x80 (data memory)
2448         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
2449           operands (genAddLit expects the iCode's operands to swapped as
2450           well), fixed leftover bytes (crashed for short left operands)
2451         * (pic16_genMinusDec): performance improvements, removed false
2452           PIC14 emitSKPNCs
2453         * (pic16_genMinus): fixed to cope with differently sized operands
2454         * src/pic16/glue.c (pic16_glue): added new banksel optimization
2455           for --obanksel > 1
2456         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
2457         * src/pic16/graph.[ch]: implementation of directed graphs, used by
2458           new banksel optimization
2459         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
2460           analysis for temporary registers (segfaults...)
2461         * src/pic16/peeph.def: added rule
2462
2463 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
2464
2465         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
2466         which converts a float number to its ASCII representation
2467         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
2468         functions to convert the fractional and integer part of a float to ASCII,
2469         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
2470         realloc.c): added _MALLOC_SPEC to explicit place variables in data
2471         ram
2472         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
2473         _STATMEM macros,
2474         * device/include/pic16/adc.h: added GPL info,
2475         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
2476         a pCodeOp as tested operand,
2477         * (genNearPointerGet): optimized bit testing, does not use
2478         intermediate register for bit value, test directly instead with
2479         BTFSS, BTFSC, works only for single bits,
2480         * (genpic16Code): dump the name of the iCode in the asm,
2481         * src/pic16/ralloc.c (decodeOp): removed static declaration and
2482         renamed to pic16_decodeOp,
2483         * (serialRegAssign): do not allocate a temporary register for iCode
2484         sequences that test a single bit for 1/0
2485
2486 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
2487
2488         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
2489         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
2490         access stack and frame pointers. They are initially assigned to
2491         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
2492         accessing SFRs. Updated all occurences of modification of stack or
2493         frame pointer in gen.c and pcode.c,
2494         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
2495         assigning of a literal value to pointers,
2496         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
2497         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
2498         selected
2499
2500 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
2501
2502         * doc/sdccman.lyx: update documentation about stack pragma, added
2503         some info for stack memory models
2504
2505 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2506
2507         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
2508
2509 2005-01-08 Raphael Neider <rneider AT web.de>
2510
2511         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
2512           udata sections to fix bug #1097823
2513
2514 2005-01-05 Raphael Neider <rneider AT web.de>
2515
2516         * src/pic16/gen.c (genGenericShift): added handling of differently
2517           sized left operand and result
2518
2519 2005-01-04 Raphael Neider <rneider AT web.de>
2520
2521         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
2522         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
2523           to hold the condition bit)
2524         * added new version of genCmp (old code available via #define)
2525         * added new version of genShiftLeft/genShiftRight in a generic
2526           way, now supports shifting by negative values
2527         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
2528           shiftCount (expected by genGenericShift)
2529         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
2530         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
2531           dump
2532         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
2533           is an invalid literal too...)
2534
2535 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
2536
2537         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
2538         from Raphael Neider,
2539         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
2540         for 8-bit literals. This fixes some literal operands which are sign
2541         extended to 16-bits ints when instruction needs only 8-bits.
2542
2543 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
2544
2545         * device/lib/logf.c: added mcs51 assembly version
2546         * device/lib/expf.c: added mcs51 assembly version
2547         * device/lib/_logexpf.c: new shared asm code for expf and logf
2548         * device/include/math.h: add defines for assembly math library
2549         * device/lib/Makefile.in: build new _logexpf.c
2550         * device/lib/libfloat.lib: use new _logexpf.c
2551
2552 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2553
2554         * src/pic/device.c
2555         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
2556           device types which have less than 0x7f registers.
2557
2558 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2559
2560         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
2561
2562 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2563
2564         * device/lib/printf_fast.c: only build on supported arch.
2565         * device/lib/printf_tiny.c: only build on supported arch.
2566         * device/lib/printf_fast_f.c: only build if asm float lib
2567         * device/lib/_fsget1arg.c: only build if asm float lib
2568         * device/lib/_fsget2args.c: only build if asm float lib
2569         * device/lib/_fsnormalize.c: only build if asm float lib
2570         * device/lib/_fsreturnval.c: only build if asm float lib
2571         * device/lib/_fsrshift.c: only build if asm float lib
2572         * device/lib/_fsswapargs.c: only build if asm float lib
2573         * device/include/stdio.h: don't provide print_fast,
2574           print_fast_f, print_tiny prototypes if --xstack used
2575
2576 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
2577
2578         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
2579         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
2580           to the SOURCES
2581
2582 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2583
2584         * device/lib/printf_fast_f.c: same as printf_fast, but
2585           with floating point enabled
2586         * device/lib/printf_fast.c: minor tweaks
2587         * device/include/stdio.h: add printf_fast_f
2588
2589 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2590
2591         * src/SDCCmain.c: make --float-reent default for mcs51
2592         * device/lib/_fsadd.c: added mcs51 assembly version
2593         * device/lib/_fssub.c: added mcs51 assembly version
2594         * device/lib/_fsmul.c: added mcs51 assembly version
2595         * device/lib/_fsdiv.c: added mcs51 assembly version
2596         * device/lib/_fseq.c: added mcs51 assembly version
2597         * device/lib/_fsneq.c: added mcs51 assembly version
2598         * device/lib/_fsgt.c: added mcs51 assembly version
2599         * device/lib/_fslt.c: added mcs51 assembly version
2600         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
2601         * device/lib/Makefile.in: add _fscmp to build
2602         * device/lib/libfloat.lib: add _fscmp to build
2603
2604 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2605
2606         * device/lib/_fs2slong.c: added mcs51 assembly version
2607         * device/lib/_fs2sint.c: added mcs51 assembly version
2608         * device/lib/_fs2schar.c: added mcs51 assembly version
2609         * device/lib/_fs2ulong.c: added mcs51 assembly version
2610         * device/lib/_fs2uint.c: added mcs51 assembly version
2611         * device/lib/_fs2uchar.c: added mcs51 assembly version
2612         * device/lib/_slong2fs.c: added mcs51 assembly version
2613         * device/lib/_sint2fs.c: added mcs51 assembly version
2614         * device/lib/_schar2fs.c: added mcs51 assembly version
2615         * device/lib/_ulong2fs.c: added mcs51 assembly version
2616         * device/lib/_uint2fs.c: added mcs51 assembly version
2617         * device/lib/_uchar2fs.c: added mcs51 assembly version
2618         * device/include/float.h: added #define to select asm vs c
2619
2620 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
2621
2622         * device/lib/printf_fast.c: improvements to float output
2623         * device/include/float.h: add defines for assembly float library
2624         * device/lib/_fsget1arg.c: receive 1 float arg
2625         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
2626         * device/lib/_fsnormalize.c: normalize a float
2627         * device/lib/_fsreturnval.c: return float, various helper routines
2628         * device/lib/_fsrshift.c: right shift a float's mantissa
2629         * device/lib/_fsswapargs.c: swap 2 floats
2630         * device/lib/Makefile.in: build these 6 new files for mcs51
2631         * device/lib/libfloat.lib: add these 6 files to the library
2632
2633 2004-12-26 Borut Razem <borut.razem AT siol.net>
2634
2635         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
2636           built by gcc 3.4.2
2637
2638 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
2639
2640         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
2641           and fully reentrant and register bank neutral.
2642         * device/lib/printf_fast.c: added float (not enabled by default),
2643           added compact/slower integer (also not enabled by default),
2644           improved size/speed of fast integer code, other minor changes
2645         * device/include/stdio.h, device/lib/Makefile.in,
2646           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
2647
2648 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
2649
2650         * src/pic16/pcode.c: declaring variables other than at the start of a
2651           block is not supported in C by VC6.
2652
2653 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
2654
2655         * applied a previous patch from Raphael Neider that wasn't included
2656         in the previous commits, which fixes infinite loops within jumptable
2657         improvements,
2658         * made some fixes that previous patches introduced
2659
2660 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
2661
2662         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
2663         that fixes an issue with AOP_PCODE asmop's offset,
2664         * (pic16_popCopyReg): update instance field too,
2665         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
2666         function of pic port,
2667         * (genCmp, genAnd, genAssign),
2668         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
2669
2670 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
2671
2672         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
2673         variables initial values to idata section,
2674         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
2675         variables in some functions. This utilizes parmBytes field of iCode
2676         structure to hold the offset of the variable in stack. (might be
2677         able to use the stack field too?)
2678         * applied patch from Raphael Neider # ### , # ###
2679         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
2680         variable initial values in idata section,
2681         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
2682         for static variables with initial value
2683         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
2684         applied fix in while loop from Raphael Neider.
2685
2686 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
2687
2688         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
2689         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
2690         * src/ds390/ralloc.c (serialRegAssign): spill bits
2691         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
2692         * support/Util/SDCCerr.c,
2693         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
2694         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
2695         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
2696
2697 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
2698
2699         * device/include/sdcc-lib.h: inserted LGPL, added includes
2700           asm/ds390/features.h and asm/mcs51/features.h
2701         * device/include/asm/default/features.h,
2702         * device/include/asm/gbz80/features.h,
2703         * device/include/asm/z80/features.h: added empty _AUTOMEM
2704           and _STATMEM
2705         * device/include/asm/ds390/features.h,
2706         * device/include/asm/mcs51/features.h: added files with defines for
2707           _AUTOMEM and _STATMEM indicating automatic and static storage class
2708         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
2709         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
2710         * src/SDCCicode.c (geniCodeCast),
2711         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
2712         * src/SDCCloop.c (loopInduction): removed unused variable lr
2713         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
2714           to convertToFcall to include char modulo (RFE 1065037), added check
2715           if left operand is unsigned and use abs of literal value
2716         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
2717           as it doesn't work after conversion from peephole.def to peephole.rul
2718         * src/mcs51/gen.c (toBoolean): added check for size,
2719           (genModOneByte): optimized code for signed char modulo a literal
2720           power of 2 (thanks to Hubert Sack),
2721           (genRRC): removed unnecessary "clr c",
2722           (genRLC): replaced "add a,acc" with cheaper "rlc a"
2723         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
2724           jump optimization,
2725           swapped rules 256.c and 256.d,
2726           extended 256.d by using new multiple checks (thanks Erik),
2727           added rules 256.e and 256.f,
2728           updated rule 261.a and 261.b to new generated code
2729         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
2730
2731 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2732
2733         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
2734           induction related bugs, including first part of bug #1074377
2735
2736 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
2737
2738         * applied patch from bug-report #1076292,
2739         * applied patches for genAnd and Goto-optimizations for Raphael
2740         Neider,
2741         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
2742         dump a less iCode information,
2743         * src/pic16/device.h (pic16_options_t): added field debgen,
2744         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
2745         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
2746         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
2747         puclic,
2748         * (various functions): added macros FENTRY and FENTRY2 to functions,
2749         to emit function prologue,
2750         * (various functions): fixed indentation,
2751         * (genNearPointerGet): fixed loading of FSR0,
2752         * (genPackBits): applied patch from Raphael Neider to fix updating
2753         of FSR0 and touching only the modified bits,
2754         * src/pic16/genarith.c (various functions): added macros FENTRY to
2755         emit function prologue in comments,
2756         * src/pic16/pcode.h: added functions debugf2, debugf3,
2757         * src/pic16/ralloc.c: partial fix for packForPush caused
2758         segmentation fault,
2759
2760 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2761
2762         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
2763           <stsp AT users.sourceforge.net> with reversed byte order
2764         * support/regression/tests/rotate.c: added (ds390 skips some tests)
2765
2766 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2767
2768         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
2769           bug #1074377
2770         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
2771         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
2772
2773 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2774
2775         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
2776
2777 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2778
2779         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
2780           conditions,
2781           (setFromConditionArgs): friendly operand parser for peephole rules,
2782           (operandBaseName, operandsNotRelated): new peephole condition
2783           "operandsNotRelated" -- similar to "operandsNotSame", but takes
2784           architecture specific register naming into account, handles n-way
2785           comparisons, and supports quoted literals
2786         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
2787
2788 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2789
2790         * src/mcs51/peeph.def: fixed bug #1076940
2791
2792 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2793
2794         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
2795
2796 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2797
2798         Adding support for replacing ljmps with sjmps in jumptables
2799         generated for switch statements. For now you need to set the
2800         environment variable SDCC_SJMP_JUMPTABLE to enable this.
2801         Now 4 algorithms for mcs51 jumptable generation are used:
2802         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
2803         addresses loaded pc-relative for up to 112 cases and stack-pushing
2804         target addresses loaded with offset from dptr for up to 256 cases.
2805
2806         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
2807         * src/mcs51/main.c: adapted constants for switch table generation
2808         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
2809
2810 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
2811
2812         * device/lib/printf_large.c (_print_format): fixed bug 1073386
2813         * support/regression/tests/bug1057979.c: added test for bug 1073386
2814
2815 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2816
2817         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
2818         compilers
2819
2820 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2821
2822         * src/pic16/device.h,
2823         * src/pic16/genarith.c,
2824         * src/pic16/glue.c,
2825         * src/pic16/main.c,
2826         * src/pic16/pcode.c: applied patches #1068154 and #1070213
2827
2828 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
2829
2830         Large cummulative patch for pic16 port.
2831         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
2832         to call when a stack overflow occurs,
2833         * (malloc.h): added CVS Id tag,
2834         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
2835         variable,
2836         * added libc directory. The current version of LibC contains string
2837         functions, ctype functions and macros and some functions of the
2838         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
2839         be extensively tested in the future. Standard disclaimer here.
2840         Library is not automatically build yet. But one can build it by
2841         invoking 'make' inside the libc directory.
2842         * added ADC library under libio. Preliminary version yet.
2843
2844         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
2845         * src/pic16/gen.c (aopForRemat): asmop size is filled by
2846         aopForRemat() now and not by pic16_aopOp(),
2847         * (pic16_popGetTempReg): removed warning messgae when allocating
2848         temporary registers, its a buggy feature and will be removed,
2849         * (pic16_popGet): set register instance field in AOP_CRY,
2850         * (pic16_outBitC): fixed for results in size greater than 1,
2851         * (genUminusFloat): fixed for pic16, ported code from mcs51,
2852         * (pic16_storeForReturn): optimized return of 0,
2853         * (genCmp): experimental code for new genCmp which uses PIC18's
2854         special compare&skip instructions. Initial tests fail some times
2855         with variables grater than 1 byte in size, so new code is disabled,
2856         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
2857         a single bit,
2858         * (genCast): began a fix to optimize the casting of a bit to another
2859         bit, now assigning a bitfield to another bitfield will fail, sorry,
2860         * src/pic16/main.c: disabled the use of lr-support feature,
2861         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
2862         * added some function prototypes, added function _debugf prototype,
2863         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
2864         bits with offset (case PO_GPR_BIT),
2865         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
2866         command line,
2867         * (isBankInstruction): modified to return 0 for no banking instruction,
2868         and 1 for banking instruction,
2869         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
2870         caused stop processing pCodes after a inline assembly block,
2871         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
2872         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
2873         registers when it shouldn't,
2874         * src/pic16/ralloc.c (allocReg): add preliminary support for
2875         supporting a limited set of temporary registers,
2876
2877 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2878
2879         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
2880           genDataPointerSet): ensure assignments always copy in MSB to LSB
2881           order,
2882           (loadRegFromAop): recognize CLRH optimization,
2883           (genFunction): optimize RECEIVE iCodes in reentrant functions
2884
2885 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2886
2887         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
2888           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
2889           selected.
2890         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
2891         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
2892           contiguous with data
2893
2894 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2895
2896         * device/lib/_gptrget.c (_gptrget),
2897         * device/lib/_gptrgetc.c (_gptrgetc),
2898         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
2899           instead of sjmp to ret
2900         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
2901           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
2902
2903 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
2904
2905         * .version: bumped version to 2.4.7
2906         * device/lib/_gptrget.c (_gptrget): is now _naked
2907         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
2908         * device/lib/_gptrput.c (_gptrput): is now _naked
2909         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
2910           (createFunction): fixed xstack
2911         * src/SDCCglue.c (emitMaps): set allocation required for bit area
2912         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
2913           or bit either,
2914           (geniCodeCritical): store original interrupt state in an iTemp bit
2915           var unless stack-auto
2916         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
2917         * src/SDCCmain.c (setIncludePath): added include/target to search path
2918         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
2919         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
2920           prototype,
2921           (processFuncArgs): put bit vars in bit area
2922         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
2923           unsaveRBank): fixed xstack,
2924           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
2925           (genFunction, genEndFunction): fixed xstack,
2926           (genAssign): optimization don't walk backwards through mem
2927         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
2928         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
2929         * support/regression/Makefile: also make library (for stack-auto) when
2930           making "all" and added "test-mcs51-xstack-auto"
2931         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
2932         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
2933         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
2934         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
2935         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
2936           make-library by MAKE_LIBRARY
2937         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
2938           regression tests for xstack
2939         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
2940         * support/regression/tests/critical.c: test for critical on mcs51
2941
2942 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2943
2944         * support/regression/ports/ucz80/spec.mk: use include and lib files from
2945           built version of sdcc instead of installed version
2946
2947 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
2948
2949         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
2950         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
2951           vprintf.c now
2952         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
2953         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
2954           WARNING: remove device/lib/build/z80/printf.o by hand when
2955           updating from previous build!
2956         * device/lib/z80/printf.c: updated comment
2957         * support/regression/tests/bug1057979.c: test all ports now
2958         * support/regression/tests/bug1065458.c: file added
2959
2960 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2961
2962         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
2963           *_start and *_end symbols for static functions
2964
2965 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
2966
2967         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
2968           and search crt0.o in all library paths,
2969           (setIncludePath): proper handling of --nostdinc,
2970           (setLibPath): proper handling of --nostdlib
2971         * support/regression/Makefile,
2972         * support/regression/ports/ds390/spec.mk,
2973         * support/regression/ports/gbz80/spec.mk,
2974         * support/regression/ports/hc08/spec.mk,
2975         * support/regression/ports/mcs51/spec.mk,
2976         * support/regression/ports/mcs51-large/spec.mk,
2977         * support/regression/ports/mcs51-stack-auto/spec.mk,
2978         * support/regression/ports/z80/spec.mk: use include and lib files from
2979           built version of sdcc instead of installed version
2980         * doc/sdccman.lyx: fixed typo in --nostdinc
2981
2982 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
2983
2984         * src/pic/pcode.c,
2985         * src/pic/device.c,
2986         * src/pic/ralloc.c,
2987         * src/pic/gen.c : added support to generate code for struct bit fields.
2988
2989 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
2990
2991         * as/xa51/xa_version.h,
2992         * device/include/errno.h,
2993         * device/include/regc515c.h,
2994         * device/lib/_itoa.c,
2995         * device/lib/_ltoa.c,
2996         * device/lib/ser_ir_cts_rts.c,
2997         * sim/ucsim/xa.src/glob.cc,
2998         * sim/ucsim/xa.src/inst_gen.cc,
2999         * sim/ucsim/xa.src/xa_bit.cc,
3000         * sim/ucsim/xa.src/xa_sfr.cc,
3001         * sim/ucsim/z80.src/inst_dd.cc,
3002         * sim/ucsim/z80.src/inst_fdcb.cc,
3003         * support/scripts/keil2sdcc.pl,
3004         * src/pic16/pic16.dsp,
3005         * src/pic16/pic16a.dsp: corrected cvs line endings
3006         * device/lib/printf_large.c: fixed bug 1057979
3007         * src/pic16/gen.c: fixed non-C standard code
3008         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
3009         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
3010         * support/regression/ports/mcs51/support.c: reload T1 asap
3011         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
3012           pdata use and clear idata startup behaviour
3013         * support/regression/tests/bug1057979.c: added
3014
3015 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
3016
3017         * device/examples/ds390/ow390/ad26.h,
3018         * device/examples/ds390/ow390/cnt1d.h,
3019         * device/examples/ds390/ow390/crcutil.c,
3020         * device/examples/ds390/ow390/ownet.h,
3021         * device/examples/ds390/ow390/owsesu.c,
3022         * device/examples/ds390/ow390/swt12.h,
3023         * device/examples/ds390/ow390/swtoper.c,
3024         * device/examples/ds390/ow390/temp10.h,
3025         * device/examples/ds390/ow390/thermodl.c,
3026         * device/examples/ds390/tinitalk/tinitalk.dsp,
3027         * device/examples/ds390/tinitalk/tinitalk.dsw,
3028         * device/examples/mcs51/clock/hw.h,
3029         * device/examples/mcs51/simple2/go.bat,
3030         * device/examples/serialcomm/windows/serial.h,
3031         * device/examples/xa51/dummy.c,
3032         * device/examples/xa51/hello.c,
3033         * device/include/80c51xa.h,
3034         * device/include/at89x051.h: corrected cvs line endings
3035
3036 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
3037
3038         * src/pic16/main.c (options): added command line --gstack, to trace
3039         stack over/under flows,
3040         * added pragma 'wparam' to allow passing first byte of function
3041         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
3042         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
3043         call to __gstack_test function and sets up the symbol as extern,
3044         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
3045         * popaop): added call to pic16_testStackOverflow,
3046         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
3047         wparamList list,
3048         * (genCall, genPcall): now all parameters are passed via stack
3049         except in functions that are pass to wparam pragma in which WREG is
3050         used too,
3051         * (genPcall): REENTRANT flag is checked to see if variable prototype
3052         contains reentrant keyword, don't call a non-reentrant function, via
3053         a reentrant function pointer or vice versa, functions are never
3054         passed via WREG,
3055         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
3056         D.Winkler,
3057         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
3058         SIGSEGV when accessing a NULL register stucture,
3059         * (pic16_printGPointerType): modified to handle UPPER modifier for
3060         function initializers, changed prototype of function to simpler one,
3061         * (pic16_printIvalFuncPtr): check to see if function is already
3062         added in externs list,
3063         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
3064         optimized a move from W to SFR with a move to the same register
3065         later after a CALL,
3066         * device/lib/pic16/debug: NEW directory, contains debug features
3067         which are enabled when linking with libdebug.lib, currently command
3068         line option --gstack enables stack pointer tracing for over/under
3069         flow, corresponding sources are in debug/gstack
3070
3071 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
3072
3073         * doc/sdccman.lyx: updated SDCC version,
3074         * (PIC16 port): update list of command line options,
3075         * src/pic16/device.h (structure pic16_options_t): added field gstack
3076         to enable stack overflow tracing on push/pops,
3077         * src/pic16/device.c (statistics structure): added statistics
3078         structure,
3079         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
3080         pic16_dump_int_registers): increase statistics counters for each
3081         * variable which is encountered
3082         * (pic16_dump_usection): emit each .udata variable to its own udata
3083         section,
3084         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
3085         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
3086         parameters via stack, otherwise use old scheme,
3087         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
3088         assembler output file,
3089         * src/pic16/main.c: added command line options --gstack to enable
3090         push/pop tracing for stack overflow,
3091         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
3092         instructions): added size of each instruction,
3093         * (pic16_countInstruction): estimate size of instructions in
3094         the_pFile list, inline assembly blocks are not counted,
3095         * (pic16_FixRegisterBanking): trace previous register usage, when
3096         banksel optimizations is greater than 0, don't emit a redudant
3097         banksel directive,
3098
3099 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
3100
3101         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
3102         * src/pic16/ralloc.c : applied same fix for pic16.
3103         * src/pic/gen.c : tidied it up a little.
3104
3105 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3106
3107         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
3108         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
3109
3110 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3111
3112         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
3113
3114 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3115
3116         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
3117         non-reentrant function __modsint in the interrupt function (thus
3118         corrupting math operations during serial I/O)
3119         * device/lib/ser_ir.c: as above, changed buffersize
3120         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
3121         256.c,d for zeroing
3122         * doc/Makefile: added option -t for rsync
3123
3124 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3125
3126         * src/SDCCast.h (struct ast),
3127         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
3128
3129 2004-10-20 Borut Razem <borut.razem AT siol.net>
3130
3131         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
3132         package
3133
3134 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
3135
3136         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
3137         makefile targets,
3138         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
3139         support functions to replace long sequences of MOVFF's from access
3140         bank registers to stack and vice versa,
3141         * src/pic16/device.h: added new field opt_flags, where optimization
3142         flags can be set to enable certain features,
3143         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
3144         * pBlock, (genFunction, genEndFunction): surroung loop for
3145         saving/loading used registers in stack with PC_INFO pCodes,
3146         INF_LREGS. Code in between can then be optimized by pCode optimizer
3147         to support function calls,
3148         * (genDataPointerSet): fixed bug which loaded float fields in
3149         structures with corrupt data,
3150         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
3151         in a standard way debug info on stderr. Feature used for developing
3152         and debugging only,
3153         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
3154         obsolete chunks of code,
3155         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
3156         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
3157         * pic16/src/pcode.c (pic16_newpCodeInfo,
3158         * (pic16_newpCodeOpLocalRegs),
3159         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
3160         feature,
3161         * (pic16_pCodeConstString): printing of the initial value of a
3162         symbol as a comment is inhibited since parsing was already done by
3163         copyStr and output is corrupt,
3164         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
3165
3166 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3167
3168         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
3169
3170 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
3171
3172         * as/mcs51/lkarea.c: removed old K&R style,
3173           (lnksect): changed check on boundary error,
3174           (lnksect2): changed check on boundary error,
3175           (lnksect2): extend XSTK to end of page if size = 1
3176         * as/mcs51/lkmain.c: removed old K&R style,
3177           (Areas51): create l_IRAM symbol
3178         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
3179         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
3180           model-mcs51-stack-auto, added model-mcs51-xstack-auto
3181         * device/lib/_mullong.c: added version to be compiled with xstack
3182         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
3183         * device/lib/mcs51/crtxclear.asm: clear pdata as well
3184         * device/lib/mcs51/crtxstack.asm: fixed comment
3185         * src/SDCCglue.c: maxInterrupts defaults to 0,
3186           (emitMaps): added pdata,
3187           (createInterruptVect): (re)moved default,
3188           (glue): added pdata,
3189           (glue): moved __start__xstack to XSTK with default size 1
3190         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
3191           and options.float_rent when options.stackAuto is set,
3192           (linkEdit): only write XDATA_NAME if provided on command line
3193         * src/SDCCmem.h,
3194         * src/SDCCmem.c: added pdata
3195         * src/port.h: added pdata_name to PORT
3196         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
3197           (saveRegisters, unsaveRegisters): removed usage of B,
3198           (genMinus): fixed accumulator clash,
3199           (genJumpTab): added comment, this needs another look
3200         * src/mcs51/gen.c: added check for "B in use" paranoia,
3201           added pushB() and popB()
3202         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
3203           chance
3204         * src/avr/main.c,
3205         * src/ds390/main.c,
3206         * src/hc08/main.c,
3207         * src/mcs51/main.c,
3208         * src/pic/main.c,
3209         * src/pic16/main.c,
3210         * src/xa51/main.c,
3211         * src/z80/main.c: (reset_regparms) made void parameter explicit and
3212           added PSEG (PAG,XDATA) or NULL to port specifier
3213         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
3214         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
3215           (_mcs51_genInitStartup): removed __start__xstack equ,
3216           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
3217         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
3218         * src/z80/gen.c (_rleAppend): fixed warnings
3219         * support/regression/tests/zeropad.c: added pdata test
3220         * .version: bumped to 2.4.6
3221
3222 2004-10-17 Borut Razem <borut.razem AT siol.net>
3223
3224         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
3225         as a part of nightly build
3226
3227 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
3228
3229         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
3230         WREG holds the first byte function parameters,
3231         * (aopForSym): take special case for symbols which are in FARSPACE
3232         but in CODESPACE too,
3233         * (assignResultValue): modified to take into account _G.useWreg,
3234         * (genCall): don't use wreg for parameter passing when function is
3235         declared as reentrant, too, added optimization INCF to stack
3236         pointer when stack parameter count is 1,
3237         * (genFunction, genEndFunction): refurnished and fixed to not using
3238         wreg for passing parameters when function has varargs or is
3239         reentrant, fixed bug with symbol name compare for generating
3240         functions in absolute address,
3241         * (pic16_storeForReturn): refurnished,
3242         * (genCmp): began writing a new version of the function, not ready
3243         yet, therefore it is disabled,
3244         * (genAssign): do not read code memory when assigning a function to
3245         a pointer function,
3246         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
3247         array of characters, not pointer,
3248         * (pic16initialComments): in debug mode emit an .ident directive for
3249         the assembler,
3250         * (_process_pragma): emit a new warning type (internal to pic16)
3251         when setting stack to default length, emit a similar warning when
3252         placing a function at absolute address and address is not word aligned
3253         * (_pic16_parseOptions): added 'return TRUE' statement,
3254         * (_pic16_linkEdit): if compiling a source, then add the source's
3255         file object, first in the list of objects to link,
3256
3257 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
3258
3259         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
3260         * src/pic/main.c : removed VC warning.
3261         * src/pic/gen.c : changed comment.
3262
3263 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
3264
3265         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
3266         reference to a deprecated symbol _GPTRREG was causing failure to
3267         link. Thanks G. M. Gallant for the info.
3268
3269 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
3270
3271         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
3272         comments for Bugs item #954788.
3273
3274 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
3275
3276         * src/pic16/device.c (pic16_dump_gsection,
3277         * pic16_groupRegistersInSection): handle symbols declared to be in
3278         access bank differently,
3279         * src/pic16/gen.c (struct _G): added field resDirect,
3280         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
3281         send values read from stack directly to result and don't allocate
3282         temporary values,
3283         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
3284         same registers,
3285         * (pic16_sameRegsOfs): NEW,
3286         * (freeAsmop): if _G.resDirect is set then do not mark registers as
3287         free because they were not allocated from temporary pool,
3288         * pic16_popRegFromString): workaround to fix a problem with
3289         allocating variables twice or never,
3290         * (genGenPointerGet): using PRODL instead of FSR0H,
3291         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
3292         instead of FSR0H,
3293         * (genAssign): take advantage of the _G.resDirect flag,
3294         * (genCast): around line 11844, use mov2f instead of directly
3295         MOVFF'ing between operands to account for literal values,
3296         * src/pic16/genutils.c: some new debug functions for gpsim have been
3297         added,
3298         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
3299         float with integer part only,
3300         * src/pic16/main.c (_process_pragma): handle pragma udata access to
3301         place variables in access bank
3302         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
3303         updated sources to reflect recent changes in gen.c
3304
3305 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
3306
3307         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
3308         sources that searched for headers in installation path, now the
3309         device/include/pic16 is used,
3310         * src/pic16/glue.c (pic16glue),
3311         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
3312         .line directives if not in debug mode, this suppresses assembler's
3313         warnings for ignored directives
3314
3315 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
3316
3317         * src/port.h: made reset_regparms prototype void parameter explicit.
3318         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
3319         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
3320         * doc/sdccman.lyx: documented warning disabling and how to use
3321           printf_large to make it print floats.
3322         * device/include/stdbool.h: NEW
3323         * device/lib/_atof.c,
3324         * device/lib/_divuint.c,
3325         * device/lib/_divulong.c,
3326         * device/lib/expf.c,
3327         * device/lib/printf_large.c,
3328         * device/lib/sincosf.c,
3329         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
3330         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
3331           a completely reentrant lib.
3332
3333 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
3334
3335         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
3336         * device/include/pic16/stdio.h: fixed bug with colon
3337
3338 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
3339
3340         * device/include/pic16/stdio.h,
3341         * device/include/pic16/stdlib.h,
3342         * device/include/pic16/math.h: NEW
3343         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
3344         declared as _naked to reduce overhead
3345         * device/lib/Makefile.in (target port-specific-objects-pic16):
3346         changed * to *.* so to ignore the CVS directory,
3347         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
3348         stacked variables back in stack,
3349         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
3350         corruption
3351
3352 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
3353
3354         * .version: bumped version number to 2.4.5
3355         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
3356         * support/Util/SDCCerr.c (messages structure): added entry for
3357         W_POSSBUG2
3358
3359         Large cumulative patch for pic16 port and libraries.
3360         * device/include/pic16/sdcc-lib.h,
3361         * device/include/pic16/stdarg.h,
3362         * device/include/asm/pic16/features.h,
3363         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
3364         * device/include/pic16/float.h: changes reentrant keyword with
3365         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
3366         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
3367         updated target build-libraries to include objects from gptr,
3368         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
3369         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
3370         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
3371         all function headings,
3372         * src/SDCCmain.c: added global parameter userIncDirsSet,
3373         * (parseCmdLine): when option -I is encountered add directory to
3374         userIncDirsSet too,
3375         * src/version.awk: added space between control and long,
3376         * src/pic16/NOTES: added some notes for the port,
3377         * src/pic16/gen.c: added prototype for mov2fp function,
3378         * (fReturnpic16[]): properly named return value registers,
3379         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
3380         * (aopForSym): added code to handle symbols with onStack flag set,
3381         symbols onStack are allocated PTRSIZE bytes,
3382         * (aopFreeAsmop): handles special case where asmops are stack objects,
3383         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
3384         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
3385         added argument lock to trace flaws in allocating temporary registers
3386         when developing port,
3387         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
3388         * (pic16_popRegFromString): reenabled allocating a direct register
3389         from string,
3390         * (assignResultValue): various beautifications,
3391         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
3392         referenced function argument,
3393         * (genIpush): reenabled to allow stacked arguments, handles only
3394         ic->parmPush iCodes,
3395         * (genCall, genPcall): major changes to allow for variable argument
3396         functions, fixed a bug with falsely restoring stack pointer after
3397         returning from call,
3398         * (genFunction): pending code for critical function,
3399         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
3400         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
3401         * (genNearPointerGet): fixed bug with indirect reading, was always
3402         reading from INDF0
3403         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
3404         pointers,
3405         * (genAddrOf): rewrote code to take address of a stacked function parameter
3406         * (genCast): fixed casting to generic pointer type,
3407         * src/pic16/gen.h: added AOP_STA,
3408         * (struct asmop): added field stk,
3409         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
3410         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
3411         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
3412         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
3413         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
3414         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
3415         generic pointers,
3416         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
3417         and library paths,
3418         * (pic16_port structure): generic pointer size is set to 3,
3419         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
3420         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
3421         compiler warning,
3422         * src/pic16/ralloc.c (allocReg): prevent allocating register when
3423         operand is an iTemp,
3424
3425 2004-09-24 Martin Helmling <mh AT octo-soft.de>
3426
3427         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
3428         * debugger/mcs51/simi.c: addapt new syntax of s51
3429
3430 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
3431
3432         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
3433         * src/pic16/pcode.c: commented out some calls to free() in order to
3434         fix bug #989576,
3435
3436 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3437
3438         * src/SDCCicode.h,
3439         * src/SDCCicode.c (isiCodeInFunctionCall),
3440         * src/avr/ralloc.c (selectSpil),
3441         * src/pic/ralloc.c (selectSpil),
3442         * src/pic16/ralloc.c (selectSpil),
3443         * src/ds390/ralloc.c (selectSpil),
3444         * src/hc08/ralloc.c (selectSpil),
3445         * src/xa51/ralloc.c (selectSpil),
3446         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
3447         stack in the middle of a function call sequence (fixes bug #1020268)
3448         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
3449         costs associated with the minimum switch case.
3450
3451 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3452
3453         * src/SDCC.lex: fixed bug #1030549
3454
3455 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3456
3457         * src/SDCCcse.h (struct cseDef),
3458         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
3459         over a function call if the CSE is derived from a symbol whose
3460         address has been taken (fixes bug #1029883)
3461         * support/regression/tests/bug-1029883: a new regression test for
3462         this bug
3463
3464 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3465
3466         * src/hc08/gen.c (emitinline): fixed bug #1029778
3467         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
3468         to a cast object is no longer a syntax error ("fixes" bug #1030006,
3469         and starts toward RFE #905167)
3470
3471 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
3472
3473         * src/pic16/gen.c (mov2f): New function to move an operand to
3474         another without considering if it is a literal or a register,
3475         * (pic16_sameRegs): don't check if they are both AOP_REG,
3476         * (AccRsh): removed andmask=0 lines,
3477         * (genLeftShift): duplicated to be improved in future versions,
3478         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
3479         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
3480         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
3481         * (pic16initMnemonics): added initialization for POC_INFSNZW,
3482         * (insertBankSwitch): fixed inserting banksel directives algorithm
3483         for instructions that follow a skip instruction, this fixes a report
3484         for broken subtraction code generation,
3485         * src/pic16/ralloc.c (deassignLRs): do not free register if current
3486         iCode is a left op, just in case result and right share the same
3487         registers
3488
3489 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3490
3491         * src/hc08/main.c,
3492         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
3493         preservation of HX
3494         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
3495         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
3496         on 2004-09-12; it was buggy
3497
3498 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
3499
3500         * src/SDCCsymt.h: removed RESULT_CHECK
3501         * src/SDCCast.c,
3502         * src/SDCCglue.c,
3503         * src/SDCCval.c,
3504         * src/pic/glue.c,
3505         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
3506
3507 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
3508
3509         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
3510         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
3511         configuration values no more rejected by compiler, they are assigned
3512         to configuration registers with a warning message instead,
3513         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
3514         the for-loop so last conf register is emitted too,
3515         * (_pic16_initPaths): link library libsdcc.lib by default,
3516         * (_hasNativeMulFor): modified test for multiplication according to
3517         Raphael Neider's remarks. Integer multiplication is also done with
3518         support functions,
3519         * device/include/pic16/pic18fregs.h: corrected type error in while
3520         testing and including 18f6720 header file
3521
3522 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
3523
3524         * src/pic16/device.h (pic16_options): removed field use_crt,
3525         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
3526         until an optimization to handle single bits is added,
3527         * (pic16_loadFSR0): moved before genUnpackBits,
3528         * (genAnd): some white lines removed,
3529         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
3530         leave_reset flags in pic16_options when using crt modules,
3531
3532 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
3533
3534         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
3535           for bugs 898889 & 979599. Also used some safer print instructions.
3536
3537 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
3538
3539         * src/pic16/device.h (pic16_options_t): added field use_crt,
3540         crt_name, no_crt,
3541         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
3542         catch a probable future bug,
3543         * src/pic16/gen.c: aopIdx function commented out,
3544         * (genAssign): commented out old code which used aopIdx,
3545         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
3546         code, added if conditionals to take into account the --use-crt
3547         command line options,
3548         * src/pic16/main.c (pic16_optionsTable): added new command line
3549         options, --use-crt= and --no-crt,
3550         * (_pic16_linkEdit): now the proper crt object is added in the
3551         linker command line except than when --no-crt is specified,
3552         * src/pic16/pcode.c,
3553         * src/pic16/pcode.h: added some structures and functions for a new
3554         optimization scheme to compansate for instruction overhead between
3555         same iCodes, this scheme is currently under development and is not
3556         working in any way,
3557         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
3558         to && operator,
3559         * device/lib/pic16/startup/crt0i.c,
3560         * device/lib/pic16/startup/crt0iz.c: added global char variable
3561         __uflags to force the generation of an idata section
3562
3563 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
3564
3565         * doc/Makefile,
3566         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
3567         * doc/sdccman.lyx: updated sdcc version to 2.4.4
3568
3569 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3570
3571         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
3572         Frieder) and clarified the default code optimization mode
3573
3574 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3575
3576         * src/SDCC.lex (doPragma, process_pragma),
3577         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
3578         "opt_code_size", and "opt_code_balanced"
3579         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
3580         regrouped options by category, added support for category headers
3581         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
3582         and "--opt-code-size"
3583         * doc/sdccman.lyx: documented these new options and pragmas
3584         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
3585         preference into account
3586
3587 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3588
3589         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
3590           geniCodePreDec): Fixed bug 904237 by generating a warning
3591         * src/SDCCerr.h,
3592         * src/SDCCerr.c: added warning W_SIZEOF_VOID
3593
3594 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
3595
3596         * src/pic/device.c : When no max ram set validate full memory range.
3597         * src/pic/pcode.c,
3598         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
3599
3600 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3601
3602         * device/lib/_gptrget.c,
3603         * device/lib/_gptrput.c: updated comment
3604         * device/lib/calloc.c,
3605         * device/lib/free.c,
3606         * device/lib/malloc.c,
3607         * device/lib/realloc.c: added LGPL, made them reentrant-safe
3608         * src/SDCCcse.c (cseBBlock),
3609         * src/SDCCicode.c (printOperand, geniCodeArray),
3610         * src/SDCCicode.h (struct operand): fixed bug 868103
3611         * support/regression/tests/bug-868103.c: added
3612         * src/SDCCast.c (searchLitOp),
3613         * src/SDCCcse.h (struct cseDef),
3614         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
3615         * src/SDCCicode.h (struct operand),
3616         * src/SDCCsymt.h (struct sym_link),
3617         * src/avr/gen.c (hasInc),
3618         * src/ds390/gen.c (hasInc),
3619         * src/hc08/gen.c (genPlusIncr, hasInc),
3620         * src/mcs51/gen.c (hasInc),
3621         * src/pic16/glue.c (pic16_printIvalChar),
3622         * src/pic16/ralloc.c (regWithIdx),
3623         * src/xa51/gen.c (hasInc) : removed warnings
3624         * src/SDCCast.c (createBlock): added comment ???
3625         * src/hc08/ralloc.c: updated comments
3626
3627 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3628
3629         * doc/sdccman.lyx: updated section on switch statements, added
3630         section about semaphore locking
3631         * doc/Makefile: added option -info for latex2html
3632         * device/lib/_gptrget.c,
3633         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
3634
3635 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3636
3637         * src/pic/device.h,
3638         * src/pic/device.c,
3639         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
3640          maxram is less than 0x100.
3641
3642 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3643
3644         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
3645
3646 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3647
3648         * src/port.h,
3649         * src/mcs51/main.c,
3650         * src/ds390/main.c,
3651         * src/z80/main.c,
3652         * src/hc08/main.c,
3653         * src/pic/main.c,
3654         * src/pic16/main.c,
3655         * src/avr/main.c,
3656         * src/xa51/main.c
3657         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
3658         a jump table is the best form for a switch statement, including
3659         automatic insertion of missing cases to make the case range
3660         continuous. Developed in collaboration with Frieder Ferlemann.
3661
3662 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3663
3664         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
3665         accumulator result if it needs sign extension
3666
3667 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3668
3669         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
3670
3671 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3672
3673         * device/lib/gbz80/printf.c,
3674         * device/lib/z80/printf.c: removed define for NULL
3675
3676 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3677
3678         * as/xa51/xa_link.c,
3679         * device/examples/ds390/ow390/ad26.c,
3680         * device/examples/ds390/ow390/cnt1d.c,
3681         * device/examples/ds390/ow390/counter.c,
3682         * device/examples/ds390/ow390/ds2480.h,
3683         * device/examples/ds390/ow390/ds2480ut.c,
3684         * device/examples/ds390/ow390/findtype.c,
3685         * device/examples/ds390/ow390/gethumd.c,
3686         * device/examples/ds390/ow390/owllu.c,
3687         * device/examples/ds390/ow390/ownetu.c,
3688         * device/examples/ds390/ow390/swt12.c,
3689         * device/examples/ds390/ow390/swtloop.c,
3690         * device/examples/ds390/ow390/temp.c,
3691         * device/examples/ds390/ow390/temp10.c,
3692         * device/examples/ds390/ow390/thermo21.c,
3693         * device/examples/ds390/ow390/tinilnk.c,
3694         * device/examples/ds390/ow390/tstfind.c,
3695         * device/examples/serialcomm/windows/serial.cpp,
3696         * device/examples/serialcomm/windows/test_serialcomm.cpp,
3697         * device/include/reg51.h: fixed line endings for cvs
3698
3699 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3700
3701         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
3702         packRegsForAccUse, packRegisters): new accumulator register
3703         packing algorithm
3704         * support/regression/ports/hc08/support.c (_putchar): suppress
3705         warning of unused variable
3706         * src/SDCCicode.c: added SWAP entry to codeTable
3707
3708 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
3709
3710         * device/lib/sprintf.c: forgot to add this file before previous commit
3711
3712 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
3713
3714         * src/pic16/gen.c (genPackBits): added operand right in function
3715         parameters, load result directly if p_type is POINTER (that is
3716         called by genNearPointerSet)
3717         * (genUnPackBits): added operand left in function parameters,
3718         * (genNearPointerGet, genNearPointerSet): prevent the loading of
3719         FSR0 if accessing bitfields,
3720
3721 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
3722
3723         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
3724           _print_format; updated printf, sprintf, vsprintf
3725         * device/include/asm/default/features.h: corrected comment/define
3726         * device/lib/Makefile.in: added sprintf.c
3727         * device/lib/libsdcc.lib: added sprintf module
3728         * device/lib/printf_large.c,
3729         * device/lib/vprintf.c,
3730         * device/lib/sprintf.c: totally refactored printf_large and vprintf
3731           into these 3 files
3732         * support/regression/Makefile: changed ALL_PORTS into a usefull default
3733         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
3734         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
3735           hc08 test
3736         * support/regression/tests/zeropad.c: define idata as data for hc08
3737
3738 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3739
3740         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
3741         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
3742         labels are referenced at least once (even if a reference is not found)
3743         * src/hc08/gen.c (emitcode): set isComment flag for comments
3744         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
3745         loads), rules 6a..6b (optimize jumps to return)
3746
3747 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3748
3749         * device/lib/acosf.c (acosf),
3750         * device/lib/asinf.c (asinf),
3751         * device/lib/atanf.c (atanf),
3752         * device/lib/ceilf.c (ceilf),
3753         * device/lib/cosf.c (cosf),
3754         * device/lib/coshf.c (coshf),
3755         * device/lib/cotf.c (cotf),
3756         * device/lib/fabsf.c (fabsf),
3757         * device/lib/floorf.c (floorf),
3758         * device/lib/log10f.c (log10f),
3759         * device/lib/logf.c (logf),
3760         * device/lib/sinf.c (sinf),
3761         * device/lib/sinhf.c (sinhf),
3762         * device/lib/sqrtf.c (sqrtf),
3763         * device/lib/tanf.c (tanf),
3764         * device/lib/tanhf.c (tanhf),
3765         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
3766         replaced all instances of "reentrant" in the library functions
3767         defined in math.h with this macro.
3768         * support/regression/tests/float_trans.c: reenabled test for hc08
3769
3770 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
3771
3772         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
3773         erroneously deleted
3774
3775 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3776
3777         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
3778         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
3779         multi-byte volatile operands are used
3780         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
3781         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
3782         initialization to area GSINIT0 so that it would always precede
3783         any static initializers in GSINIT
3784         * support/regression/tests/zeropad.c: fixed idata define for hc08
3785         * support/regression/tests/bug-927659.c,
3786         * support/regression/tests/float_trans.c: disabled tests for hc08
3787         pending missing library routines
3788         * .version: increased version number to 2.4.4 - hc08 port now passes
3789         regression tests
3790
3791
3792 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
3793
3794         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
3795         * Makefile.common.in,
3796         * as/Makefile,
3797         * as/hc08/Makefile.in,
3798         * as/mcs51/Makefile.in,
3799         * as/z80/Makefile.in,
3800         * debugger/mcs51/Makefile.in,
3801         * device/include/Makefile.in,
3802         * device/lib/Makefile.in,
3803         * doc/Makefile,
3804         * link/Makefile,
3805         * link/z80/Makefile.in,
3806         * packihx/Makefile.in,
3807         * sim/ucsim/main_in.mk,
3808         * sim/ucsim/avr.src/Makefile.in,
3809         * sim/ucsim/doc/Makefile.in,
3810         * sim/ucsim/gui.src/serio.src/Makefile.in,
3811         * sim/ucsim/hc08.src/Makefile.in,
3812         * sim/ucsim/s51.src/Makefile.in,
3813         * sim/ucsim/xa.src/Makefile.in,
3814         * sim/ucsim/z80.src/Makefile.in,
3815         * src/Makefile.in,
3816         * support/cpp2/Makefile.in,
3817         * support/librarian/Makefile,
3818         * support/makebin/Makefile: added DESTDIR to the install path proposed
3819         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
3820         * doc/sdccman.lyx: added DESTDIR documentation
3821
3822 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
3823
3824         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
3825         instruction for interrupt handlers, use fast returns when returning
3826         from high priority interrupts
3827
3828 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3829
3830         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
3831         code generation
3832         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
3833         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
3834         bugs, ported much of Bernhard's code from mcs51
3835         * src/mcs51/gen.c (genSend),
3836         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
3837         than one when calling a reentrant function
3838         * device/lib/_mullong.c: defined an alternate struct layout for big
3839         endian ports (hc08)
3840
3841 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3842
3843         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
3844         test
3845
3846 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3847
3848         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
3849         are sane and complete before asking the port its prefered parameter
3850         passing method (fixes bug #1017633)
3851         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
3852         and _ret3
3853
3854 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3855
3856         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
3857         problem in bitfields >= 8 bits.
3858
3859 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3860
3861         * src/SDCCsymt.c: undid changes that were not meant to be committed
3862
3863 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3864
3865         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
3866
3867 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3868
3869         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
3870           copied and wrong bit got inverted
3871
3872 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3873
3874         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
3875         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
3876         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
3877         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
3878         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
3879         assignments to bitfields at known addresses
3880         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
3881         reads from bitfields at known addresses
3882         * src/hc08/ralloc.c (packRegisters),
3883         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
3884         genhc08Code): optimize pointer get values used as conditionals
3885         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
3886         and branch
3887
3888 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3889
3890         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
3891         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
3892         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
3893         as conditionals
3894
3895 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3896
3897         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
3898
3899 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3900
3901         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
3902         related problems
3903
3904 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
3905
3906         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
3907
3908 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3909
3910         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
3911         mcs51 port
3912
3913 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
3914
3915         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
3916
3917 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3918
3919         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
3920         cases use more compact code.
3921
3922 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
3923
3924         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
3925
3926 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3927
3928         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
3929
3930 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3931
3932         * src/SDCCsymt.h,
3933         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
3934         parameter of changePointer() from symbol* to sym_link*
3935         * src/SDCCast.c (decorateType): call changePointer() for CAST op
3936         * src/SDCCsymt.c (compareType): void* type is castable to other
3937         pointers, but not necesarily an exact match.
3938         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
3939         is no longer blindly treated as an exact match.
3940         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
3941
3942 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
3943
3944         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
3945
3946 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
3947
3948         * src/pic/gen.c,
3949         * src/pic/pcode.c,
3950         * src/pic/ralloc.h,
3951         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
3952
3953 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
3954
3955         * src/pic/device.c,
3956         * src/pic/device.h,
3957         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
3958
3959 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3960
3961         * src/mcs51/gen.c (emitcode): fixed bug #992819
3962
3963 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
3964
3965         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
3966           there's no need to make it worse
3967
3968 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3969
3970         * src/mcs51/ralloc.c (deassignLR),
3971         * src/ds390/ralloc.c (deassignLR),
3972         * src/hc08/ralloc.c (deassignLR),
3973         * src/z80/ralloc.c (deassignLR),
3974         * src/pic/ralloc.c (deassignLR),
3975         * src/pic16/ralloc.c (deassignLR),
3976         * src/avr/ralloc.c (deassignLR),
3977         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
3978         rlivePoint): fixed another part of bug #971834
3979
3980 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3981
3982         * src/z80/main.c: enabled "critical" keyword
3983         * src/z80/mappings.i,
3984         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
3985         functions (fixes bug #979646)
3986         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
3987
3988 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3989
3990         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
3991           such as c:\mydir.
3992
3993 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
3994
3995         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
3996           doesn't disable too much optimizations
3997
3998 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3999
4000         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
4001
4002 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
4003
4004         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
4005
4006 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4007
4008         * src/pic/gen.c tidied up tabs
4009         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
4010         * src/pic/main.c tidied up tabs
4011         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
4012         * src/pic/pcoderegs.c tidied up tabs
4013         * src/pic/ralloc.c tidied up tabs
4014
4015 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
4016
4017         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
4018         to S_FIXED for pic16 port and when symbol is not in level 0,
4019         allocate for S_REGISTER storage class and pic16 port, too,
4020         * src/pic16/device.h: prototype for checkSym,
4021         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
4022         * (pic16_assignConfigWordValue): test the value and the mask to
4023         validate that the value is suitable for the configuration word,
4024         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
4025         collect extern declared symbols, don't emit symbol twice, check
4026         first if symbol is in publics set first,
4027         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
4028         * added command line '--fstack' which enables an experimental
4029         feature for stack access, too buggy to be used yet...
4030         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
4031         * (pic16_allocDirReg): when register has storage class S_REGISTER
4032         allocate in pic16_dynAccessRegs,
4033         * device/include/pic16/pic18f????.h: modified configuration word
4034         naming convention, words started as CONFIG0H but should be CONFIG1H
4035
4036 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
4037
4038         * device/include/mcs51reg.h: fixed bug 970993
4039
4040 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
4041
4042         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
4043         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
4044         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
4045         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
4046         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
4047         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
4048           error/warning numbers,
4049           added function setWarningDisabled()
4050         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
4051         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
4052           _memcmp.c _memmove.c calloc.c realloc.c free.c
4053         * support/regression/tests/malloc.c: added tests for new functionality
4054         * support/regression/tests/zeropad.c: added tests for truncated initializers
4055           and initialized char arrays starting with '\x0'
4056         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
4057
4058 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
4059
4060         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
4061
4062 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4063
4064         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
4065         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
4066         peephole 177.e. Thanks to anonymous
4067
4068 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
4069
4070         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
4071         function isn't used in the source but referenced as a
4072         variable initializer then declare it as extern in .asm file
4073
4074 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
4075
4076         * .version: increased version number to 2.4.3
4077
4078         Adding version extension according to ChangeLog CVS revision
4079         * src/Makefile.in (target all): added dependency 'version.h'
4080         * (rule version.h): added rule to create version.h from ChangeLog,
4081         * (rule dep): added dependency version.h,
4082         * src/version.awk: AWK script to create version.h
4083         * src/SDCCdwarf2.c (dwWriteModule),
4084         * src/SDCCglue.c (initialComments),
4085         * src/SDCCmain.c (printVersionInfo): modified to write after
4086         version string the version extension number,
4087         * src/SDCCutil.c: included "version.h"
4088         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
4089         number,
4090         * src/SDCCutil.h: added prototype for getBuildNumber
4091
4092         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
4093         includeDirsSet, too,
4094         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
4095         const char [] is found in function prototype...
4096
4097         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
4098         moving to WREG with source is already in WREG,
4099         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
4100         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
4101         * (aopForSym): stack'ed symbols are partially supported, added
4102         if-clause to support symbols in FARSPACE,
4103         * (sameRegs): added test for AOP_ACC to see if registers are same,
4104         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
4105         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
4106         * (pic16_popRegFromString): will not allocate a new register if it
4107         doesn't find one by name, bug may have introduced...
4108         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
4109         * (genIpush): revived to use pic16 port's stack,
4110         * (genAddrOf): added incomplete case for stack'ed operand,
4111         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
4112         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
4113         can handle multibyte operands,
4114         * src/pic16/glue.c (pic16_printIval*): some debug info added,
4115         * (pic16initialComments): added message for MPLAB compatibility
4116         mode enabled,
4117         * src/pic16/main.h: prototype for pic16_mplab_comp,
4118         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
4119         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
4120         * (_pic16_linkEdit): NEW, handles link stage, transferred here
4121         because of increased complexity of procedure,
4122         * (_process_pragma): stack pragma changed to format 'stack pos len',
4123         emit symbol '_stack_end' to conform with gplink,
4124         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
4125         to search for register,
4126         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
4127         PO_GPR_REGISTER,
4128         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
4129         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
4130         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4131         case for PO_GPR_REGISTER,
4132         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
4133         dies, the new era is ahead !...
4134         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
4135         pic16_dynInternalRegs,
4136         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
4137         * (pic16_allocDirReg): minor optimizations and bug fixes,
4138         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
4139
4140         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
4141         load stack and frame pointer with address of 'stack_end' symbol
4142
4143 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
4144
4145         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
4146         without source code but only variable initializers
4147
4148 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
4149
4150         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
4151         external are not declared as extern to reduce overhead while linking
4152
4153 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
4154
4155         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
4156
4157 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
4158
4159         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
4160           Yee Keat for the patch
4161         * src/SDCCast.c (decorateType): fixed bug #979599
4162         * src/ds390/gen.h: removed local fReturnSizeDS390
4163         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
4164         * src/ds390/gen.c (genAnd, genOr, genXor),
4165         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
4166
4167 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
4168
4169         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
4170         add relFilesSet to $3, manipulate $2 to handle linking of object
4171         files without source files in command line,
4172         * device/include/pic16 (all headers): added ID location macros,
4173         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
4174         entries for ID location bytes,
4175         * (pic16_assignIdByteValue): NEW,
4176         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
4177         added field dumpcalltree to pic16_options_t,
4178         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
4179         is used instead of pic16_Gstack_base_addr, check if (ifx) before
4180         emitting rFalseIfx label after check_carry label,
4181         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
4182         pic16_emitDIRegs), NEW
4183         * (pic16glue): dump .calltree file when option --calltree found,
4184         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
4185         * (_pic16_genAssemblerPreamble): emit ID locations after
4186         configuration registers,
4187         * (pic16_linkCmd): modifications of the link command,
4188         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
4189         * (pic16_pCodeInitRegisters): don't init stack registers,
4190         * (pic16_findPrevInstruction): fixed bug,
4191         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
4192         bug with immediate registers,
4193         * (buildCallTree): traces stack push and pop,
4194         * (pct2): dump also stack usage for each function,
4195         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
4196         * (pic16_allocDirReg): various modifications,
4197         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
4198         fixed to 1,
4199
4200 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
4201
4202         * src/pic16/pcode.c: removed buggy double colon
4203
4204 2004-07-01 Borut Razem <borut.razem AT siol.net>
4205
4206         * support/scripts/sdcc.nsi: added include/pic16 to setup
4207
4208 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
4209
4210         * device/lib/Makefile.in: fixed bug in target objects-pic16,
4211         * device/lib/pic16/Makefile: prefixed with dash (-) command under
4212         target 'clean',
4213         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
4214         specific command line arguments. Also added sample lkr script
4215         for placing a variable at a specific memory bank.
4216         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
4217         at a specific memory bank,
4218         * (pic16_dump_isection): fixed bug which caused string literals to
4219         be omitted when dumping idata section,
4220         * (pic16_groupRegistersInSection): added code to handle registers
4221         in specific memory banks,
4222         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
4223         public, all references are renamed too,
4224         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
4225         AOP_DPTR2,
4226         * (pic16_storeForReturn): added case to handle when dest is WREG,
4227         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
4228         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
4229         pic16_rel_udata, check to see if that register is marked as being
4230         a member of a specific memory bank,
4231         * (pic16_printIvalCharPtr): added code to add string literals either
4232         to code or the idata sections,
4233         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
4234         also accept the 'udata' pragma,
4235         * src/pic16/main.h: new structure types sectName and sectSym
4236         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
4237         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
4238         * (pic16_findPrevInstruction): fixed, it returned nothing,
4239         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
4240         instruction combinations,
4241         * (pic16_FixRegisterBanking): heavily reorganised,
4242         * (pic16_AnalyzeBanking): if generating banksel directives is
4243         disabled, then don't call FixRegisterBanking at all,
4244         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
4245         completely removed,
4246         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
4247
4248 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
4249
4250         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
4251         Phuah Yee Keat <yk.phuah AT nestac.com>
4252
4253 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4254
4255         * src/pic16/glue.c (pic16createInterruptVect): function now emits
4256         correctly the IVT even if it is relocated to some other location
4257
4258 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4259
4260         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
4261         * device/include/pic16/pic18f2220.h: NEW,
4262         * device/lib/pic16/libdev/pic18f2220.c: NEW,
4263         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
4264         * src/pic16/device.c (struct Pics16): added info for 18f2220,
4265         * src/pic16/device.h (struct pic16_options): added ivt_loc and
4266         nodefaultlibs, ivt_loc is the location of the interrupt vector
4267         table, and nodefaultlibs signs that default libraries should not be
4268         linked in link stage,
4269         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
4270         according to --ivt-loc argument,
4271         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
4272         when pragma stack is found,
4273
4274 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4275
4276         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
4277         256 (range check), 257 (do while), 258.a-f (bit banging
4278         f.e. on 3-wire SPI bus)
4279
4280 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4281
4282         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
4283         variables used exclusively within a loop
4284
4285 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
4286
4287         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
4288
4289 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4290
4291         * src/SDCClrange.c (computeClash): fixed bug #971834
4292
4293 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4294
4295         * src/mcs51/gen.c (genCmp): fixed bug #975903
4296         * src/hc08/gen.c (operandsEqu),
4297         * src/ds390/gen.c (operandsEqu),
4298         * src/z80/gen.c (operandsEqu),
4299         * src/pic/gen.c (operandsEqu),
4300         * src/pic16/gen.c (operandsEqu),
4301         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
4302         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
4303
4304 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4305
4306         * src/SDCCcse.c (cseBBlock): fixed bug #966963
4307
4308 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
4309
4310         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
4311         default case in switch statement,
4312         * glue.c (pic16_initPointer): expr is initialised via decoarteType
4313         to eliminate problem with initialisation of pointers, but problem
4314         still exists,
4315         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
4316         * (emitStaticSegment): removed various lines emitting debug info,
4317         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
4318         added processor registers for utilizing EEPROM,
4319         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
4320         configurable and set 8
4321
4322 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
4323
4324         * .version: increased version number to 2.4.2,
4325
4326         Cumulative patch for pic16 port
4327         * src/pic16/device.c: changed scheme to dump initial values for
4328         variables in idata segment, all print_idata* functions were removed,
4329         now the pic16_printIval* will be called,
4330         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
4331         * _pic16_printPointerType, pic16_printPointerType,
4332         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
4333         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
4334         NEW, similar to the respective functions in SDCCglue.c,
4335         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
4336         way, emitting hex bytes,
4337         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
4338
4339 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4340
4341         * src/avr/ralloc.c (serialRegAssign),
4342         * src/xa51/ralloc.c (serialRegAssign),
4343         * src/pic/ralloc.c (serialRegAssign),
4344         * src/pic16/ralloc.c (serialRegAssign),
4345         * src/hc08/ralloc.c (serialRegAssign),
4346         * src/z80/ralloc.c (serialRegAssign),
4347         * src/ds390/ralloc.c (serialRegAssign),
4348         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
4349
4350 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4351
4352         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
4353         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
4354
4355 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
4356
4357         Cumulative patch for pic16 port:
4358         * src/pic16/device.h (typedef PIC16_device) modified fields for
4359         defining microcontrollers,
4360         * src/pic16/device.c: added new info for all devices in Pics16 array,
4361         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
4362         to be optimised out by the pCode optimiser,
4363         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
4364         specially, bug reported by G.M. Gallant,
4365         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
4366         as force'd so that cannot be optimised out by pCode optimiser,
4367         * src/pic16/pcode.c,
4368         * src/pic16/pcodepeeph.c,
4369         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
4370         they are disabled by default, but can be enabled explicit with
4371         command argument --denable-peeps, for testing,
4372         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
4373         --pomit-ivt in COMPILE_FLAGS
4374
4375 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4376
4377         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
4378           compilation on MSVC
4379
4380 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4381
4382         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
4383
4384 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4385
4386         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
4387         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
4388
4389 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
4390
4391         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
4392         would only assign 0x300001 register.
4393
4394 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
4395
4396         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
4397         in COMPILE_FLAGS. Thanks to G. Gallant for report.
4398
4399 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4400
4401         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
4402         for ds80c400
4403         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
4404         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
4405         added peephole 254 (left shift), 255 (jump table)
4406
4407 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
4408
4409         * device/lib/Makefile.in: removed comment line with model-pic16,
4410         * (target port-specific-objects-pic16): the libraries and objects
4411         are copied to the build directory form the device/lib/pic16/bin
4412         directory
4413
4414         Cumulative patch concerning pic16 port:
4415         * library directory has been re-organized,
4416         * added support for PIC18F1220,
4417         * added headers and library sources for chips 18f1220,18f6520,
4418         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
4419
4420         * configuration registers setting has changed, now each supported
4421         device has a complete description of the registers it uses,
4422         * all initialisations are moved to idata sections, these section
4423         can be absolute or relocatable,
4424         * fixed initialisation of codespace variables,
4425         * fixed warning about PCLATU and gpsim,
4426         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
4427         * (genAssign): use table reads when assigning from variables in codespace,
4428         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
4429         char/int variables placed in codespace,
4430         * (pic16_emitConfigRegs): NEW, emits a list with configuration
4431         registers set in .asm file, no need for --pomit-config-words anymore,
4432         * (pic16glue): some 8051 legacy segments are commented out
4433         (to be removed completely),
4434         * added support for alternative assembler and linker with --asm=
4435         and --link= command line arguments,
4436         * peepholes are disabled automatically in the port, no need to
4437         specify on command line,
4438         * port supports natively char/int/long multiplication, but converts
4439         all divisions to support functions,
4440         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
4441         to the file set in variable $2,
4442         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
4443         strings in ASCII format and not in hex,
4444         * ralloc.c (serialRegAssign): added a triplet of conditional calls
4445         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
4446         allocate proper register if iCodes aren't temporary,
4447
4448 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
4449
4450         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
4451
4452 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
4453
4454         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
4455         is commented out
4456
4457 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4458
4459         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
4460         computed address is reused
4461         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
4462         multi-byte bitfields
4463
4464 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4465
4466         * src/z80/gen.c: (genArrayInit): must check for pointers too
4467
4468 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4469
4470         * support/regression/tests/zeropad.c: never meant to commit the
4471           nestedstruct test: removed, added check for GCC version
4472
4473 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
4474
4475         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
4476         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
4477         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
4478           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
4479           bugs 928906 and 954082 half-empty initializers
4480         * src/SDCCsymt.h,
4481         * src/SDCCsymt.c (getAllocSize): added for above fix
4482         * src/z80/gen.c (genArrayInit): fixed bug 741044
4483         * support/regression/tests/zeropad.c: added tests
4484
4485 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
4486
4487         * src/pic16/device.c (pic16_dump_section): corrected bug which
4488         caused some symbols of the libraries to be misplaced
4489
4490 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4491
4492         * src/pic16/glue.c,
4493         * src/pic16/ralloc.h,
4494         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
4495         to fix conflict with pic port
4496
4497 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4498
4499         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
4500         externs configuration variables,
4501         * src/pic16/ralloc.h,
4502         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
4503         prototype in header, commented out some debug messages
4504
4505 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
4506
4507         * src/pic16/glue.c,
4508         * src/pic16/main.c,
4509         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
4510         for gpasm COFF object generation. Thanks to D. Hawkins for
4511         his patch info
4512
4513 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4514
4515         * src/ds390/main.c,
4516         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
4517         Brock for spotting this)
4518         * src/ds390/gen.c (genEndFunction),
4519         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
4520         interrupt handler and critical. Disable push/pop optimizations when
4521         peephole optimizations disabled.
4522
4523 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4524
4525         Updated pic16 library sources and headers.
4526         * device/lib/pic16/pic18f*/ ,
4527         * device/include/pic16/*.h: modified to handle structured SFR
4528         definitions
4529
4530 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4531
4532         * src/port.h (PORT structure): added hook initPaths, now each
4533         port can declare its own default search paths,
4534         which can been seen with the --print-search-dirs option,
4535         see pic16 port for example,
4536         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
4537         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
4538         * (doPrintSearchDirs): NEW, replaces in a central manner the
4539         printing of search dirs which was split in set*Paths functions,
4540         * (main): added call to port->initPaths and doPrintSearchDirs,
4541         * src/avr/main.c,
4542         * src/ds390/main.c,
4543         * src/hc08/main.c,
4544         * src/izt/i186.c,
4545         * src/izt/tlcs900h.c,
4546         * src/mcs51/main.c,
4547         * src/pic/main.c,
4548         * src/pic16/main.c: modified port structures to reflect addition of
4549         initPaths hook,
4550
4551         * src/pic16/device.c (regCompare): registers are finally sorted by name,
4552         * (pic16_dump_section): for registers in same address reserve memory once,
4553         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
4554         to no_banksel,
4555         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
4556         result is greater in size than right or left,
4557         * (pic16_genUMult8X8_8): there are some cases where the result can
4558         be 16 bits size, so handle these,
4559         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
4560         * (pic16_outBitC): modified to emit pcodes,
4561         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
4562         or not,
4563         * (genDivOneByte): implemented algorithm to divide 8-bits,
4564         * (genCmp): uncommented goto, but issues still exist,
4565         * (genAnd): fixed a bug with variables >8bits,
4566         * (genPackBits): optimization added that uses BCF/BSF to change a
4567         single bit,
4568         * (genAssign): fixed bug when assigning floating point literals,
4569         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
4570         __sdcc_gsinit_startup label,
4571         * src/pic16/main.c (_pic16_init): removed search directory
4572         initialisations,
4573         * (_pic16_initPaths): NEW, used to initialise search directories,
4574         * (_hasNativeMulFor): support functions for all except char/int
4575         multiplication, and char division,
4576         * (PIC16_port struct): modified entry for native mul support,
4577         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
4578         no_banksel option,
4579         * (buildCallTree): call to register_usage is ifdef'ed out,
4580
4581 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4582
4583         * device/include/string.h: applied Stas Sergeev's patch to make this
4584         header file compatible with the preprocessor -Wundef option
4585         * src/SDCCmain.c (main): abort compilation if preprocessor reports
4586         failure (fixes bug #941458)
4587
4588 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4589
4590         * src/SDCCopt.c (killDeadCode): fixed bug #907733
4591         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
4592         that the variable, not the function, should be static
4593         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
4594         to be consistent with non-literal case
4595
4596 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4597
4598         * src/SDCCast.c (isConformingBody): fixed bug #949967
4599         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
4600         convilong): fixed bug #952086
4601
4602 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4603
4604         * src/SDCCmem.c (allocVariables): fixed bug #955321
4605
4606 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4607
4608         * src/hc08/main.c (_hc08_genAssemblerEnd),
4609         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
4610         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
4611         completely eliminated the use of a temporary file
4612         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
4613         when more than one file linked
4614         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
4615
4616 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4617
4618         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
4619         which fixes bug #543481
4620         * support/regression/tests/bug-751703.c: fixed comments left from a
4621         cut and paste error
4622         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
4623         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
4624         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
4625         scopes
4626         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
4627         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
4628         are now changed to underscores in moduleName
4629
4630 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4631
4632         * as/mcs51/lkmem.c: better fix for bug #954173
4633
4634 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
4635         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4636
4637         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
4638         * device/include/c8051f000.h,
4639         * device/include/c8051f120.h,
4640         * device/include/c8051f300.h,
4641         * device/include/c8051f310.h,
4642         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
4643         PWM16) and detab'ed
4644
4645 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4646
4647         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
4648         and mailing lists, doc'ed --no-peep-comments, removed reference
4649         to knoppix (newest version has no LyX/LaTeX), other minor changes
4650         * src/SDCCglue.c (glue): save 2 bytes stack space with
4651         option --main-return. The ljmp could probably be avoided too
4652
4653 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4654
4655         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
4656
4657 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4658
4659         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
4660         * src/SDCCopt.c (isLocalWithoutDef),
4661         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
4662         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
4663         (credit to Maarten Brock for patch #949363, on which this is based)
4664         * support/regression/tests/bug-751703.c: some test cases of extern used
4665         within inner scopes.
4666
4667 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4668
4669         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
4670         SPEC_STRUCT
4671         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
4672         struct definitions
4673         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
4674         dwWriteLabel): fix to create valid debugger symbols even when
4675         the module name has non-alphanumeric symbols in it
4676         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
4677         when a variable's allocation has been optimized away
4678
4679
4680 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4681
4682         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
4683         * src/hc08/main.c,
4684         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
4685         * src/mcs51/main.c,
4686         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
4687         * src/ds390/main.c,
4688         * src/z80/gen.c (z80_emitDebuggerSymbol),
4689         * src/z80/main.c,
4690         * src/pic/gen.c (pic14_emitDebuggerSymbol),
4691         * src/pic/main.c,
4692         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
4693         * src/pic16/main.c,
4694         * src/avr/gen.c (avr_emitDebuggerSymbol),
4695         * src/avr/main.c,
4696         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
4697         * src/xa51/main.c,
4698         * src/SDCCdebug.c (emitDebuggerSymbol),
4699         * src/SDCCdebug.h,
4700         * src/port.h: added a debugger struct to the port struct. Added a
4701         callback for defining debugger symbols
4702
4703         * src/SDCCast.c (createLabel),
4704         * src/SDCC.y (labeled_statement): mark all compiler generated labels
4705         with isitmp = 1
4706         * src/SDCCicode.h,
4707         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
4708         iCode back to the ast for the function
4709
4710         * src/hc08/ralloc.c (hc08_assignRegisters),
4711         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
4712         unneeded fields from the regs struct.
4713         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
4714         pushReg() & pullReg() functions instead of emitcode()
4715
4716         * src/hc08/gen.c (genLabel, genhc08Code),
4717         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
4718
4719         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
4720         debugger hooks
4721
4722         * src/hc08/gen.c (genEndFunction, genhc08Code),
4723         * src/hc08/gen.h,
4724         * src/mcs51/gen.c (genEndFunction, gen51Code),
4725         * src/mcs51/gen.h,
4726         * src/ds390/gen.c (genEndFunction, gen390Code),
4727         * src/ds390/gen.h,
4728         * src/z80/gen.c (genEndFunction, genZ80Code),
4729         * src/z80/gen.h,
4730         * src/z80/z80.h,
4731         * src/pic/gen.c (genEndFunction, genpic14Code),
4732         * src/pic/gen.h,
4733         * src/pic16/gen.c (genEndFunction, genpic16Code),
4734         * src/pic16/gen.h,
4735         * src/avr/gen.c (genEndFunction, genAVRCode),
4736         * src/avr/gen.h,
4737         * src/xa51/gen.c (genEndFunction, genXA51Code),
4738         * src/xa51/gen.h,
4739         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
4740         specific code to cdbFile.c and out of the backend code generators
4741
4742         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
4743         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
4744         starting address is now 0
4745
4746         * as/hc08/asm.h,
4747         * as/hc08/m08pst.c,
4748         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
4749         assembler directive for DWARF support
4750         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
4751
4752         * src/src.dsp,
4753         * src/Makefile.in,
4754         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
4755
4756 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4757
4758         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
4759         and inappropriate peephole optimization in jump tables
4760
4761 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4762
4763         * as/hc08/m08pst.c,
4764         * src/SDCCglue.c: sdccopt works for the hc08 port now
4765
4766 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
4767
4768         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
4769
4770 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4771
4772         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
4773
4774 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4775
4776         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
4777         rules
4778         * src/SDCCmain.c,
4779         * src/SDCCglobl.h,
4780         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
4781         comments from the peephole optimizer replacement rules
4782         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
4783         symbols
4784         * src/SDCCcse.c (updateSpillLocation),
4785         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
4786         equivalents
4787         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
4788         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
4789         objects far pointers
4790
4791 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4792
4793         * src/SDCCsymt.h: a missing part of my last change
4794         * src/pic/ralloc.c (regTypeNum),
4795         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
4796
4797 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4798
4799         * src/SDCCicode.h,
4800         * src/SDCCicode.c (aggrToPtrDclType),
4801         * src/SDCCptropt.h,
4802         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
4803         ptrPseudoSymConvert),
4804         * src/pic/ralloc.c (regTypeNum),
4805         * src/pic16/ralloc.c (regTypeNum),
4806         * src/hc08/ralloc.c (regTypeNum),
4807         * src/ds390/ralloc.c (regTypeNum),
4808         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
4809         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
4810
4811 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4812
4813         * link/z80/lkmain.c (afile),
4814         * as/hc08/lkmain.c (afile),
4815         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
4816         prevent a pointer problem when a filename has no directory and
4817         no extension specified.
4818
4819 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4820
4821         * link/z80/lkmain.c (afile): allow periods in directory names
4822         * link/z80/lkmain.c (afile),
4823         * as/mcs51/lkmain.c (afile),
4824         * as/hc08/lkmain.c (afile): allow linker script file to have an
4825         extension other than ".lnk"
4826         * link/z80/lklex.c (getfid),
4827         * link/z80/lkmain.c (parse),
4828         * as/mcs51/lklex.c (getfid),
4829         * as/mcs51/lkmain.c (parse),
4830         * as/hc08/lklex.c (getfid),
4831         * as/hc08/lkmain.c (parse): Support comments in the linker script
4832         file on lines by themselves and after filenames
4833
4834 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4835
4836         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
4837
4838 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4839
4840         * src/z80/peeph-z80.def: removed some peephole rules that don't
4841         work with multibyte arithmetic (fixed bug #937126)
4842         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
4843         to registers and not global variables
4844         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
4845         geniCodePreInc, geniCodePostDec, geniCodePreDec,
4846         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
4847         checking for assignments not internally generated (fixed bug #931895)
4848         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
4849         structure member (fixed bug #930072)
4850
4851 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4852
4853         * src/SDCCmain.c (linkEdit),
4854         * src/hc08/main.c (_hc08_parseOptions),
4855         * as/hc08/Makefile.in,
4856         * as/hc08/aslink.h,
4857         * as/hc08/asm.h,
4858         * as/hc08/m08pst.c,
4859         * as/hc08/lkrloc.c (relr, rele),
4860         * as/hc08/lkarea.c (lnkarea)
4861         * as/hc08/lkmain.c (afile, parse),
4862         * as/hc08/lkelf.c: support for ELF output
4863         * as/hc08/lks19.c (s19),
4864         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
4865
4866 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4867
4868         * as/mcs51/lkihx.c: Fixed bug #899105.
4869
4870 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4871
4872         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
4873         .dsp files from Unix to DOS.
4874
4875 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4876
4877         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
4878         function pointers; we have been compliant for several months now.
4879         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
4880         change that was accidently commented out
4881         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
4882         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
4883         bug #922319
4884
4885 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4886
4887         * src/hc08/gen.c: output of all of the internal debugging information
4888         is now controlled by the D() macro; it is disabled by default
4889
4890 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4891
4892         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
4893         harder to keep the same registers during a CAST iCode
4894         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
4895         long via int can be done in a single cast, if the signedness is
4896         correct.
4897         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
4898         putchar() in tinibios.c in ds390's library
4899
4900 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
4901
4902         * src/SDCCast.c (decorateType): fixed bug #898889,
4903         cast result of a literal complement too
4904         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
4905         fixed check for bitfields
4906
4907 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
4908
4909         * src/SDCCicode.c (geniCodeLogic): made it static,
4910         (geniCodeLogicAndOr): added in order to fix bug #905492,
4911         (ast2iCode): fixed bug #905492
4912         * support/regression/tests/bug-905492.c: added
4913         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
4914         (processParms): fixed bug #927659: don't copy parms, this will clear
4915         decorated flag
4916         * support/regression/tests/bug-927659.c: added
4917
4918 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
4919
4920         * src/SDCCast.c (addCast): don't cast float to char
4921         * device/lib/libsdcc.lib: added _memmove
4922
4923 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
4924
4925         * device/lib/large/Makefile: fixed parallel execution by
4926         replacing `make` by `$(MAKE)`
4927
4928 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4929
4930         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
4931         offsets (fixes bug #923936)
4932
4933 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
4934
4935         * device/lib/small/Makefile: fixed parallel execution by
4936         replacing `make` by `$(MAKE)`
4937
4938 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4939
4940         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
4941
4942 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
4943
4944         * src/pic/gen.c (genCpl): multi-byte complements were not working.
4945         * src/regression/Makefile: Regression test was not running.
4946
4947 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4948
4949         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
4950         complement if possible
4951         * src/SDCCval.c (valComplement),
4952         * src/SDCCicode.c (operandOperation): fixed complement of literal
4953         * support/regression/tests/onebyte.c (testComplement): added
4954
4955 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
4956
4957         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
4958         return an optimized tree; actually replace actParm with the new tree
4959         * src/SDCCast.h: added some parantheses to remove side effects
4960         * support/regression/tests/bug-920866.c
4961
4962 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
4963         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
4964         Bit operands were not being handled properly in the pic14 port.
4965         (now src/regression/add.c passes again).
4966
4967 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4968
4969         * src/SDCC.y (labeled_statement): case and default no longer require
4970         a following statement (RFE #893037)
4971
4972 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4973
4974         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
4975         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
4976         disabled (fixes bug #916294)
4977         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
4978         "mov a,acc"; patch provided by Lenny Story
4979         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
4980
4981 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4982
4983         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
4984         functions
4985         * src/ds390/gen.c (genFunction, genEndFunction),
4986         * src/ds390/ralloc.c (ds390_assignRegisters),
4987         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
4988         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
4989         pushed if there are parameters passed on the stack. Also, a cleaner
4990         way to decide if r0/r1 should be pushed/popped. (Together they fix
4991         bug #918693)
4992
4993 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4994
4995         * doc/sdccman.lyx,
4996         * device/lib/mcs51/crtpagesfr.asm,
4997         * device/lib/mcs51/crtxinit.asm,
4998         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
4999         to avoid confusion with Si Lab's SFRPAGE register.
5000
5001 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5002
5003         * src/SDCCglue.c (emitMaps): allow public sfr variables
5004         * src/SDCCglue.c (initialComments): include compiler build date
5005         with compiler version and put the timestamp of the generated
5006         assembly file on a serperate line to be less confusing.
5007         * src/port.h: added genInitStartup hook
5008         * src/avr/main.c,
5009         * src/ds390/main.c,
5010         * src/hc08/main.c,
5011         * src/pic/main.c,
5012         * src/pic16/main.c,
5013         * src/xa51/main.c,
5014         * src/z80/main.c: genInitStartup initialize as NULL (default to
5015         historical behaviour)
5016         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
5017         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
5018         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
5019         library instead of hard coding it into the compiler.
5020         * support/regression/ports/mcs51-stack-auto/spec.mk,
5021         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
5022         * device/lib/mcs51/Makefile,
5023         * device/lib/small/Makefile,
5024         * device/lib/large/Makefile,
5025         * device/lib/mcs51/crtpagesfr.asm,
5026         * device/lib/mcs51/crtstart.asm,
5027         * device/lib/mcs51/crtxclear.asm,
5028         * device/lib/mcs51/crtxinit.asm,
5029         * device/lib/mcs51/crtclear.asm,
5030         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
5031         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
5032         and into user configurable files.
5033         * device/lib/clean.mk: clean mcs51 directory too
5034         * support/regression/tests/longlit.c: added static to T1 declaration
5035         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
5036         accesses in the initialization code
5037
5038 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5039
5040         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
5041         OSCTRIMVAL as noted in bug #916008
5042
5043 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5044
5045         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
5046         in loops with multiple exits (reported as incorrect registers
5047         used by Martin Helmling in Sdcc-user list)
5048
5049 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5050
5051         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
5052         made ds390 register extensions look less like error messages
5053
5054 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5055
5056         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
5057         reported by Adam Wozniak in Sdcc-user list
5058
5059 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
5060
5061         * src/SDCCast.c (decorateType): fixed with bug and promotion in
5062         arithmetic optimizations, added debug output
5063
5064 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
5065
5066         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
5067         * sdcc.spec: updated and split sdcc into 3 rpms
5068         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
5069         needed for literals of LEFT_OP and '+'
5070         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
5071         introduced RESULT_TYPE_NOPROM
5072         (geniCodeMultiply): fixed logic for decision if mul is optimized to
5073         left shift
5074         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
5075         limited promotion to int only for '*'
5076         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
5077
5078 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
5079
5080         * src/pic16/gen.c (genSkip),
5081         (genc16bit2lit), (gencjneshort): commented out
5082         (is_LitOp): new helper function, checks operand type
5083         (genCmpEq): rewritten
5084
5085 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
5086
5087         * support/regression/tests/bug-908454.c: added
5088
5089 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
5090
5091         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
5092         * src/SDCCicode.c (usualBinaryConversions): op needs int type
5093         (geniCodeCast): cosmetic, don't preserve bit storage class
5094         (geniCodeLeftShift): added promotion
5095         (geniCodeLogic): fixed regression
5096         * src/SDCCsymt.c (computeTypeOr): accept bits too
5097         (compareType): 2nd part of fix for bug #908454, needed for bitfields
5098
5099 2004-03-07  Borut Razem <borut.razem AT siol.net>
5100
5101         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
5102
5103 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
5104
5105         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
5106         version of pic16_genPackRegisters which does not check if ic is a
5107         CAST operator,
5108         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
5109         function cause string1.c regression test fails
5110
5111 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
5112
5113         * sim/ucsim/configure.in,
5114         * sim/ucsim/configure,
5115         * sim/ucsim/doc/Makefile.in: use docdir
5116         * src/SDCC.y: fixed sbit atrributes
5117         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
5118         * src/SDCCast.c (decorateType): |^& need special promotion handling
5119         * src/SDCCast.h,
5120         * src/SDCCsymt.h: moved definition of RESULT_TYPE
5121         * src/SDCCsymt.h (computeType),
5122         * src/SDCCicode.c: computeType() needs op
5123         * src/SDCCsymt.c (checkTypeSanity),
5124         * doc/sddman.lyx: "plain" bitfields are unsigned
5125         * src/SDCCsymt.c (computeTypeOr): added
5126         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
5127         |^& ops
5128         * src/SDCCval.c (val*): computeType() needs op
5129         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
5130         * support/regression/tests/onebyte.c: added tests for |^&
5131
5132 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
5133
5134         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
5135         for writing icode into asm output.
5136
5137 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
5138
5139         * src/pic16/device.c: added some debug lines enabled
5140         with macro DEBUG_CHECK,
5141         * src/pic16/genarith.c: more debug in genPlus,
5142         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
5143         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
5144         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
5145         * (aopForSym): onStack symbols are re-placed in data memspace,
5146         and onStack flag is cleared,
5147         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
5148         copy temporary pcodeop,
5149         * (genPcall): added warning for not updating PCLATU,
5150         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
5151         always true for pic16 port,
5152         * (genMultOneWord): NEW, supports integer multiplication,
5153         * (genMult): modified to call genMultOneWord,
5154         * (ifxForOp): added warning when return NULL,
5155         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
5156         flag is set before call to operandFromSymbol for implicit
5157         added structures,
5158         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
5159         options.intlong_rent are set by default,
5160         * (_hasNativeMulFor): modified to allow port generation of integer
5161         multiplication,
5162         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
5163         set regtype to REG_SFR for all registers, restricting seting the
5164         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
5165
5166 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5167
5168         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
5169         more than 500 times in the regression tests
5170
5171 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5172
5173         * support/Util/SDCCerr.h,
5174         * support/Util/SDCCerr.c,
5175         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5176         enumerator_list),
5177         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
5178         for symbol conflicts.
5179         * support/valdiags/tests/enum.c,
5180         * support/valdiags/tests/tentdecl.c,
5181         * support/valdiags/tests/struct.c: expect possible error messages
5182         referring to original symbol definitions.
5183         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
5184         * src/SDCCsymt.h,
5185         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
5186
5187 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
5188
5189         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
5190
5191 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
5192
5193         * src/pic16/ralloc.c (newReg): fixed bug #908929
5194
5195 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5196
5197         * src/ds390/gen.c: added missing #include "main.h"
5198
5199 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
5200
5201         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
5202         checking if symbol is already in set,
5203         * src/pic16/device.h: prototype for checkAddSym,
5204         * src/pic16/gen.c: (_G): added entry interruptvector,
5205         * (assignResultValue): removed some commented out lines,
5206         * (genFunction): check for ISR via sym->type, absolute section for
5207         interrupt code is created via a new pBlock, the goto instruction is
5208         placed now correctly at the interrupt vector position, changed all
5209         references from ivec to _G.interruptvector,
5210         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
5211         is the interrupt is a high priority one, same for return from ISR,
5212         * src/pic16/glue.c: changed all calls of addSetHead for publics and
5213         externs to calls of checkAddSym,
5214         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
5215         pic16_pcode_verbose flag is set,
5216         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
5217         * src/pic16/pcoderegs.c: message about how many registers are saved
5218         will only be emitted if pic16_pcode_verbose flag is set,
5219
5220 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5221
5222         * src/ds390/ralloc.h,
5223         * src/ds390/ralloc.c (ds390_regWithIdx),
5224         * src/ds390/gen.c (emitcode),
5225         * src/ds390/main.h,
5226         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
5227         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5228         ds390operandCompare, getRegsRead, getRegsWritten,
5229         initializeAsmLineNode): customized instruction size calculation for
5230         ds390, started basis for some register optimizations
5231         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
5232         corresponding assembly output
5233         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
5234         missing push/pop of r0/r1. Optimized push/pops
5235
5236 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5237
5238         * src/mcs51/main.c (instructionSize): fixed ACALL size
5239         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
5240
5241 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
5242
5243         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
5244         the sorting of rlist with NULL elements
5245         * (print_idataType, print_idata): NEW to create idata sections
5246         * src/pic16/device.h: idataSymSet new variable
5247         * src/pic16/gen.c (genFunction): fixed some bugs in string
5248         comparing, improved the absolute section creation for ISRs,
5249         added FSR0L/FSR0H in registers that are saved in an ISR,
5250         * (genInline): fixed the processing of inline snippets,
5251         now they undergo no process by the peephole optimizer
5252         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
5253         are placed in idataSymSet,
5254         * (pic16emitStaticSeg): extern symbols are added in externs,
5255         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
5256         switching when aboslute variables are placed in access bank memory
5257         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
5258         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
5259         commented out with #if,
5260         * (pic16_packRegisters): reintroduce the check for CAST because some
5261         symbols are not correctly handled,
5262         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
5263         pCodeInstruction instead of pCode,
5264         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
5265         pCodeAsmDir definition,
5266         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
5267         directive, then the argument directive is emitted without the leading
5268         tab, hack for inline labels which must be in the first column,
5269         * (compareLabel,pic16_findNextInstruction),
5270         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
5271         * (insertBankSwitch): modified for the new pCodeAsmDir,
5272
5273 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5274         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
5275
5276         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
5277         instance,
5278         * (pushSide): commented out with #if,
5279         * (assignResultValue): fixed some typos in saving
5280         registers,
5281         * (genPcall): FIXED and sync'ed with genCall,
5282         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
5283         * (genNearPointerGet): fixed to handle some more cases,
5284         implementation scheme via table reads,
5285         * (genConstPointerGet): modified to access code memory correct,
5286         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
5287         and improved to handle some cases
5288         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
5289         instead of "RETLW" for init data
5290         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
5291         not IN_DIRSPACE, work around to reduce bank switching when aboslute
5292         variables are placed in access bank memory (<0x80 and >=0xf80),
5293         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
5294         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
5295         TBLWT_POSTDEC,TBLWT_PREINC
5296         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
5297         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
5298         directives
5299         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
5300         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
5301         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
5302         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
5303
5304 2004-02-29  Borut Razem <borut.razem AT siol.net>
5305
5306         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
5307         support/Util/findme.h, support/Util/system.h: enhance binary relative
5308         search for lib and include by using findProgramPath()
5309
5310 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5311
5312         * src/SDCCpeeph.h,
5313         * src/SDCCpeeph.c (pcDistance),
5314         * src/port.h,
5315         * src/mcs51/ralloc.h,
5316         * src/mcs51/ralloc.c (mcs51_regWithIdx),
5317         * src/mcs51/main.h,
5318         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
5319         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5320         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
5321         size calculation port specific, started basis for some register
5322         optimizations
5323         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
5324         missing push/pop of r0/r1. Optimized push/pops
5325         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
5326         * device/lib/_modsint.c (_modsint),
5327         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
5328         and stack version so regression tests pass
5329
5330 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
5331
5332         * src/Makefile.in (dep): include SLIBOBJS in dependency check
5333         * src/SDCCast.c (decorateType): catch another small optimization
5334         with '?' operator
5335         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
5336         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
5337         modified to finally use computeType() all over SDCC,
5338         see Feature Request #877103
5339         * src/SDCCval.h: cosmetic
5340         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
5341         valCompare(); regression tested in muldiv.c
5342         * support/regression/tests/muldiv.c (testMod): mod sign follows
5343         dividend only
5344
5345 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
5346
5347         * src/SDCCast.c (decorateType): fixed bug #902362
5348         * doc/INSTALL.txt: fixed install instructions for win32
5349
5350 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
5351
5352         * device/include/Makefile.in (install): fixed by replacing spaces
5353         by tabs
5354         * doc/README.txt,
5355         * doc/INSTALL.txt: updated for release
5356         * doc/sdccman.lyx: added warning for --xstack being buggy
5357
5358 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
5359
5360         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
5361         to eliminate build warnings.
5362         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
5363
5364 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
5365            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5366
5367         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
5368         removed -penable-stack, added comment for stack pragma, added
5369         warning for not initializing the stack/frame registers, removed
5370         comment at interrupts section
5371
5372         Stack is made permanent, there is no ability to disable stack usage.
5373         * src/pic16/device.h,
5374         * src/pic16/device.c: removed all references to USE_STACK macro,
5375         * src/pic16/device.c (pic16_dump_section): when no elements in
5376         rlist, free rlist before return,
5377         * (pic16_dump_int_registers): NEW, internal registers are a new set
5378         of general purpose registers reused by each function,
5379         * (checkAddReg): returns 1 if registers is added to set,
5380         * (pic16_groupRegistersInSection): when a registers is of type
5381         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
5382         * src/pic16/device.h: memRange and Assigned Memory are deleted,
5383         SRCASECMP macro is moved here from device.c
5384         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
5385         PO_PCLATU, PO_PRODL, PO_PRODH,
5386         * (pic16_pCodeOpType, genMinus,
5387         changed compares to "a" register, with AOP_ACC,
5388         * (pic16_genPlus): fixed some bugs and indented properly,
5389         * (pic16_addSign): changed size to size+offset in the MOVWF
5390         instruction,
5391         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
5392         multiply 8-bit operand by literal, result is 8-bit,
5393         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
5394         multiply 2 8-bit operand, result is 8-bit,
5395         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
5396         genUMult8X*_16,
5397         * src/pic16/gen.c: changed accUse to contain WREG only,
5398         * (pic16_emitcomment): renamed to pic16_emitpcomment,
5399         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
5400         true, do not use immediate addressing any more unless sym is a
5401         pointer in codespace,
5402         * (aopForRemat): do not use immediate addressing when symbol not in
5403         codespace and when symbol's address is requested,
5404         * (aopOp): for-loop in if(sym->accUse) is modified for the new
5405         accUse size (= 1),
5406         * (aopGet): added case for AOP_ACC and don't return "accumulator
5407         bug" but WREG instead,
5408         * (popGetTempReg): pushes contents of temporary register in stack,
5409         * (popReleaseTempReg): pops contents of temporary register from
5410         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
5411         * (pic16_popGet): separated case AOP_ACC to return register WREG
5412         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
5413         or PO_IMMEDIATE and initializes their instance/offset appropriately,
5414         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
5415         the use of immediate pointers to certain cases only.
5416
5417         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
5418         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
5419         * (assignResultValue, genCall, genRet): modified to use the new
5420         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
5421         genPcall is still broken,
5422         * (genFunction): added code to create 'A' type pBlocks when
5423         interrupt functions are generated, code not extensively tested yet,
5424         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
5425         * (genEndFunction): modified so ISRs pop stored registers from stack,
5426         * (genMultOneByte): cleanup,
5427         * (AccRsh): added flag andmask, to and result with appropriate mask,
5428         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
5429         * (genDataPointerGet): fixed and reenabled its use,
5430         * (genNearDataPointerGet): bugs fixed,
5431         * (genDataPointerSet): bugs fixed,
5432         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
5433         pic16_DumpSymbol, pic16_DumpOp,
5434         * src/pic16/genutils.h: function prototypes for the above functions,
5435         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
5436         pointers,
5437         * (pic16emitRegularMap): many many many improvements, but needs a
5438         major cleanup,
5439         * src/pic16/main.c: enable_stack in pic16_options is removed,
5440         * (_pic16_parseOptions): removed command line options -penable-stack,
5441         * (_process_pragma): emit stack symbol only when stack pragma is
5442         processed,
5443         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
5444         redirected to FSR0L/FSR0H pair,
5445         * (pic16_get_op, pic16_get_op2): modifications and improvements,
5446         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5447         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
5448         for immediates,
5449         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
5450         * (dumpPicOptype): NEW,
5451         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
5452         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
5453         with movff instruction,
5454         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
5455         added pic16_int_regs, some packRegsFor* functions are commented out,
5456         because produce errors,
5457         * src/pic16/NOTES: minor modifications
5458
5459 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5460
5461         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
5462         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
5463         --pack-iram.
5464         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
5465         * as/mcs51/lkaomf51.c: fixed bug #895763
5466
5467 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
5468
5469         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
5470
5471 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5472
5473         * doc/sdccman.lyx: added details about the HC08 storage classes and
5474         interrupts, fixed the register usage info for z80 & gbz80
5475
5476 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
5477
5478         * doc/sdccman.lyx: added more pic16 port documentation
5479         * device/include/pic16/: added header pic18fregs.h
5480
5481 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
5482
5483         * doc/sdccman.lyx: added Vangelis' contribution
5484
5485 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5486
5487         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
5488         extend to the next CALL or PCALL, not just to the next CALL.
5489
5490 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
5491
5492         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
5493
5494 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5495
5496         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
5497         bug #895752 and a better fix for bug #716790
5498
5499 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5500
5501         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
5502
5503 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5504
5505         * doc/sdccman.lyx: minor changes, minor changed
5506
5507 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
5508
5509         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
5510         which can't handle SDCC_NEWONEBYTEOPS,
5511         (geniCodeMultiply): removed conversion from mult to shift for pic14
5512         and pic16
5513
5514 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5515
5516         * src/hc08/gen.h,
5517         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
5518         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
5519         thus fixing bug #895406
5520
5521 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
5522
5523         * device/lib/_modsint.c,
5524         * device/lib/_modslong.c: sign follows divisor only
5525         * src/hc08/gen.c (genMultOneByte): if result size is 1,
5526         signs or signedness can be ignored
5527         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
5528         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
5529         added optimization for IFX,
5530         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
5531         arguments;
5532         reenabled optimization for IFX, which was removed on 2004-01-11
5533         * src/SDCCast.h: added return type IFX
5534         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
5535         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
5536         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
5537         SDCC_OLDONEBYTEOPS selects the old behaviour
5538         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
5539         changed again and commented promotion rule
5540         * src/SDCCval.c (valDiv): promotion no longer necessary
5541         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
5542         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
5543         rewritten
5544         * support/regression/tests/onebyte.c: added
5545
5546 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
5547
5548         * gen.c (genInline): reverted to old code for assemnling inline
5549         code because of bug reported James Chadd
5550
5551 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
5552
5553         * ralloc.h: missing declarations from previous patch,
5554         seems that patch for ralloc.h was never applied, fixed
5555
5556 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5557            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5558
5559         * pcode.c,
5560         * pcode.h,
5561         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
5562         indirect addressing. Marked FSR0 as deprecated
5563         * gen.c (pointerCode): commented out, not needed now
5564         (pic16_popGet2p): new MOVFF helper function
5565         (genGenPointerGet),
5566         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
5567         (shiftRLong): removed duplicate debugging info
5568
5569 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5570
5571         * src/ds390/gen.c (genNearPointerGet),
5572         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
5573         optimization with bits, but not bitfields.
5574         * src/ds390/ralloc.c (packRegisters),
5575         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
5576
5577 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
5578
5579         * src/SDCCcse.c (algebraicOpts): copy operands before modification
5580
5581 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5582
5583         * src/SDCCsymt.h,
5584         * src/SDCCicode.c (operandFromSymbol),
5585         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
5586         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
5587         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
5588         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
5589         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
5590         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
5591         bug #892038
5592         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
5593         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
5594         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
5595         * src/SDCCsymt.c (newSymbol),
5596         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5597         enumerator_list),
5598         * src/SDCCval.h,
5599         * src/SDCCval.c (newiList): fixed bug #885705
5600
5601 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5602
5603         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
5604         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
5605
5606 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5607
5608         * device/include/c8051f120.h,
5609         * device/include/c8051f300.h,
5610         * device/include/c8051f310.h: added/updated header files for Silicon
5611         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5612         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
5613         in new section Submitting patches
5614
5615 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5616
5617         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
5618         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5619         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5620         genGenPointerSet),
5621         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
5622         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5623         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5624         genGenPointerSet),
5625         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
5626         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5627         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5628         genGenPointerSet),
5629         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
5630         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5631         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5632         genGenPointerSet): fixed bug #892400
5633         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
5634         to eliminate build warnings.
5635         * src/SDCCast.c (processParms),
5636         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
5637         fixed bug 751859
5638         * support/valdiag/valdiag.py: added GCC to the list of defines active
5639         when compiling with gcc
5640
5641 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5642
5643         * support/Util/SDCCerr.h,
5644         * support/Util/SDCCerr.c,
5645         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
5646         with an incomplete type (fixed bug #883734)
5647         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
5648
5649 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5650
5651         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
5652
5653 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5654
5655         * src/SDCCast.c (decorateType),
5656         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
5657         function pointer implementation
5658         * support/regression/tests/funptrs.c: added tests to verify both forms
5659         of function pointers work correctly. Added tests to verify parameters
5660         are passed in the correct order.
5661
5662 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
5663
5664         * device.c (regCompare): registers are sorted by ascending
5665         address and increasing size,
5666         * main.c (_pic16_finaliseOptions): removed the declaration
5667         of compiler macro MCU. Now a macro of the format pic18fxxxx
5668         will be defined from the command line
5669
5670 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5671             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5672
5673         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
5674         PCOP_RLCF was overwritten!
5675         * gen.c (genSkip): commented out calls to pic16_emitcode,
5676         * (genCmpEQ): fixed "long" compares, only high word did get compared,
5677         * (genlshTwo),
5678         * (genRRC): added debugging info,
5679         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
5680         overwritten while shifting,
5681         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
5682         overwritten while shifting,
5683         * (AccLsh),
5684         * (AccRsh),
5685         * (shiftLLeftOrResult),
5686         * (shiftRLeftOrResult),
5687         * (shiftRLong),
5688         * (shiftLLong): Implemented with pic16_emitpcode
5689         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
5690         * (genLeftShift): Fixed bug, operand for shift by variable always
5691         was "and"ed with 0x0f,
5692         * (genLeftShiftLiteral),
5693         * (genrshTwo),
5694         * (genRightShiftLiteral): added debugging info,
5695         * (genrshFour): added comment,
5696         * (genRightShift): determined signedness from operand "left"
5697         instead of "result"
5698
5699 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5700
5701         * src/SDCCicode.c (geniCodeParms),
5702         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
5703         function pointers, fixed function pointer bugs #861242 and #861896
5704
5705 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5706
5707         * device/include/c8051f000.h,
5708         * device/include/c8051f120.h,
5709         * device/include/c8051f300.h: added header files for Silicon
5710         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5711
5712 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
5713
5714         * src/SDCCast.c (processParams): added new type flow and restructured
5715         (gatherAutoInit): added new type flow
5716         (addCast): cosmetic changes
5717         (getLeftResultType): added new type flow for array indices, patch
5718         provided by Stas, see FR #877103
5719         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
5720         array index patch by Stas
5721         * src/SDCCast.h: added prototype getResultTypeFromType()
5722         * src/SDCCval.h,
5723         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
5724         * src/pic/glue.c (pic14emitStaticSeg),
5725         * src/pic16/glue.c (pic16emitStaticSeg),
5726         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
5727         for initialization of symbols
5728         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
5729         * support/Util/SDCCerr.h:
5730         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
5731         * .version: bumped version number to 2.3.8
5732         * device/include/Makefile.in (install),
5733         * doc/Makefile (install): changed to 'rm `find ...`' construct to
5734         avoid warnings
5735
5736 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
5737
5738         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
5739         Slade Rich fixed an optimization bug
5740         * src/pic/pcodepeep.c,
5741         * src/pic/pcoderegs.c
5742         * doc/Makefile (install): added test for directory
5743
5744 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5745
5746         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
5747         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
5748         * src/pic/ralloc.c (getRegPtr, getRegGpr),
5749         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
5750         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
5751         * as/mcs51/asexpr.c (term),
5752         * as/hc08/asexpr.c (term): fixed bug #887146
5753
5754 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5755
5756         * src/z80/gen.c (genMult): handle single byte result product
5757         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
5758         DUMMY_READ_VOLATILE (fixed bug #886367)
5759
5760 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5761
5762         * support/regression/tests/libmullong.c: fixed logic, on little endian
5763         hosts we ended without a mullong_wrapper()
5764
5765 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5766
5767         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
5768         virus/worm forged address usage.
5769
5770 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5771
5772         Fixed promotion, it should be done on AST level:
5773         * src/SDCCast.c (addCast): added promotion to int
5774         (decorateType): updated call to upCast()
5775         * src/SDCCicode.c (geniCodeLeftShift): removed call to
5776         usualUnaryConversions()
5777
5778 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
5779
5780         * support/regression/tests/literalop.c (mulWrapper): Added a
5781         wrapper to remove integer overflow warnings.
5782
5783         * support/regression/tests/float_trans.c: Made work on host.
5784
5785         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
5786         location of sz80.
5787
5788         * support/regression/generate-cases.py (main): Changed from inline
5789         to a main method.
5790
5791         * doc/Makefile (install): Changed to depth first to get rid of
5792         missing directory install warning.
5793
5794         * as/Makefile (install-doc): Made work on Mac.
5795
5796 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
5797
5798         * src/SDCCast.c: added an additional type flow in decorateType() of
5799         opposite direction, see feature request #860006; it's enabled at runtime
5800         by setting the environment variable SDCC_NEWTYPEFLOW
5801         * src/SDCCast.h: changed prototype of decorateType()
5802         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
5803         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
5804         'char' to 'int' can be omitted, if both operands are 'unsigned char';
5805         see feature request #877103
5806         * src/SDCCval.c: updated call of decorateType()
5807         (valBitwise): fixed bug #882876
5808         (valMinus): added promotion
5809         (valLogicAndOr): result is unsigned
5810         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
5811         * src/SDCCsymt.c (computeType),
5812         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
5813         must not cause an unsigned operation
5814         * src/pic/glue (pic14emitRegularMap),
5815         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
5816
5817 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
5818
5819         * src/pic/pcode.c (PCodeID): commented out left over debug code
5820
5821 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
5822
5823         * support/valdiag/tests/overflow.c: added shift tests
5824         * src/pic/device.c,
5825         * src/pic/gen.c,
5826         * src/pic/gen.h,
5827         * src/pic/glue.c,
5828         * src/pic/main.c,
5829         * src/pic/pcode.c,
5830         * src/pic/pcode.h,
5831         * src/pic/pcodepeep.c,
5832         * src/pic/pcoderegs.c,
5833         * src/pic/ralloc.c,
5834         * src/pic/ralloc.h: applied patch from Slade Rich;
5835         added support for multiple code pages and multiple RAM banks on the
5836         PIC 14 port. The ASM files now no longer simply assume all the
5837         code / RAM are in the same page / bank. This means the linker can
5838         safely allocate code/RAM of separate ASM files to different pages/banks.
5839         * doc/sdccman.lyx: added Slade's tips
5840         * src/mcs51/peeph.def: fixed bug #880768
5841
5842 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5843
5844         * src/hc08/ralloc.c (rematStr): fixed bug #879282
5845         * src/SDCCast.c (decorateType): fixed bug #880197
5846
5847 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
5848
5849         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
5850         getopt.h.
5851
5852         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
5853         strtof is not part of C89 and isn't included with Mac OS X.
5854
5855 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5856
5857         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
5858         shiftL2Left2Result): fixed bug #879326
5859         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
5860         (genMultOneByte): fixed bug in signed vs unsigned multiplication
5861         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
5862         address fetch for clr instruction
5863         * device/lib/hc08/_mulint.c: created optimized assembly version
5864         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
5865
5866 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
5867
5868         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
5869         proposed in FR #877103
5870
5871 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
5872
5873         * src/SDCCval.c (cheapestVal): added missing checks
5874         * src/SDCCicode.c (usualBinaryConversions): fixed condition
5875         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
5876
5877 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
5878
5879         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
5880         equal operands
5881
5882 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
5883
5884         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
5885         loaded with the linker search paths (-L arguments) and the libraries
5886         to be linked with the current source (-l arguments). Changes
5887         currently will affect only the pic16 port.
5888         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
5889         include path the port specific paths and port specific libraries,
5890         * gplink command now contains the $3 argument,
5891         * src/pic16/device.h,
5892         * src/pic16/device.c,: structure PIC_device is made public and
5893         renamed to PIC16_device, the same for variable Pics which is renamed
5894         to Pics16. Updated all references to them.
5895         * src/pic16/glue.c (pic16glue): corrected bug with code
5896         initialization which bypassed the variable initializations block.
5897
5898         * device/lib/pic16/Makefile.rules: removed --penable-stack from
5899         COMPILE_FLAGS and added the --nostdinc option
5900
5901 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5902
5903         * device/include/mc68hc908jb8.h: Register defs for another member
5904         of the hc08 family. Contributed by Bjorn Bringert - thanks!
5905
5906 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
5907
5908         Documenting changes from previous commits.
5909         * configure.in (version 1.56),
5910         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
5911         when generating output files to configure the pic16 library,
5912         but now I've commented it out, since gputils aren't installed in the
5913         SF compile farm, so library won't compile
5914
5915         * device/lib/Makefile.in (version 1.56): initially I've added in
5916         target 'all' the prerequestive 'model-pic16' so it compiled the
5917         pic16 library, but now I've commented it out for the same reasons
5918         above,
5919         * added targets 'model-pic16' and 'objects-pic16' to compile the
5920         library
5921         * added target 'port-specific-objects-pic16' to handle the
5922         generated libraries and copy them into the build/ directory
5923         * added target 'clean-intermediate-pic16' to clean intermediate
5924         files into pic16 directory
5925         * in target 'installdirs' added line to create directory pic16 in
5926         the installation path
5927
5928         * device/include/Makefile.in (version 1.11): in target 'install'
5929         added lines to copy all header files to installation path,
5930         * in target 'installdirs' added line create directory for pic16
5931         headers in the installation path
5932
5933 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
5934
5935         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
5936          a function call
5937
5938 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
5939
5940         * configure,
5941         * device/lib/configure.in,
5942         * device/lib/configure: fixed for autoconf 2.57
5943
5944 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5945
5946         * src/z80/main.c (_parseOptions): fixed the portmode= command line
5947         option so that it actually works. Made it specific to the z80, since
5948         the gbz80 doesn't have these kinds of I/O ports.
5949
5950 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5951
5952         * device/include/z180.h,
5953         * device/lib/_memcpy.c,
5954         * device/lib/_memmove.c,
5955         * device/lib/_mulint.c,
5956         * device/lib/ser_ir.c,
5957         * device/lib/ser_ir_cts_rts.c,
5958         * device/lib/_strcmp.c,
5959         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
5960         * src/z80/main.c (_process_pragma): add support for pragmas bank and
5961         portmode; added deprecation warning for bank= and protmode= forms.
5962         Also, guard against buffer overflow.
5963         * src/z80/gen.c (aopGet): generate better code for sfr banked read
5964
5965 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5966
5967         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
5968         changed interrupt vector table generation to only emit declared vectors.
5969         * device/include/Makefile.in: added missing backslash
5970         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
5971
5972 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5973
5974         Mainly changes to support compilation of the device libraries
5975         * src/pic16/device.c: stack is allocated via symbol and not
5976         via literal number. The symbol is placed in the corresponding
5977         position of the data ram
5978         * (pic16_dump_section): relocatable and absolute uninitialized
5979         data are now emitted in sorted order to reduce section naming,
5980         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
5981         weren't marked as being in the access bank,
5982
5983 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5984
5985         Added portion of GNU PIC Library under the directory
5986         device/include/pic16 and device/lib/pic16. These files
5987         contain the declarations of SFRs for the PIC18Fxx2 devices.
5988         The directory is initialized via configure from toplevel.
5989
5990 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
5991
5992         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
5993         the spilllocations to be compared correctly
5994
5995 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5996
5997         * src/SDCCast.c (decorateType): fixed bug introduced today
5998
5999 2004-01-12  Borut Razem <borut.razem AT siol.net>
6000
6001         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
6002         doc/sdccman.lyx: upper case pragmas are deprecated
6003
6004 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6005
6006         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
6007         in simpler and even better code
6008
6009 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
6010
6011         * src/SDCCicode.c (operandOperation): fixed bug #874819
6012         * src/SDCCast.c (decorateType): fixed
6013         char foo (unsigned long ul) { return ul > 0; }
6014
6015 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6016
6017         * doc/sdccman.lyx: Moved and added some sections, small changes
6018         all over. Telling LaTeX to be less strict with word spacing
6019         to better keep the right margin. Changed some notes about
6020         maintainance of the ports in section 3.2.1 - is it OK like this?
6021
6022 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
6023
6024         SDCC source changes:
6025         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
6026         convilong): modified to inform the pic16 port that builtin functions
6027         are external
6028
6029         PIC16 PORT specific changes:
6030         * src/pic16/device.c pic16_dump_equates() added,
6031         processor registers declared internally by the port are emitted in
6032         the translation as equates,
6033         * src/pic16/gen.c: inline code is passed unprocessed to the
6034         translation,
6035         * (pic16_popGetLit2): fnuction modified to take second operand as
6036         pCodeOp pointer and not as literal,
6037         * (popRegFromIdx): prefixed with pic16_,
6038         * (pic16_popCombine2): modified to receive already allocated pCode
6039         operands,
6040         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
6041         * (genFunction): initializes local stack frame and pushes on stack
6042         all the registers used by this function,
6043         * (genEndFunction): restores all registers from stack and restores
6044         stack frame,
6045         * src/pic16/glue.c (pic16emitRegularMap): various changes and
6046         improvements,
6047         * (pic16glue): changed the program startup sequence,
6048         * added new dbName code 'A' for functions placed in absolute section
6049         * src/pic16/main.c: added function attribute _naked,
6050         * added pragma 'code' to place a fnuction at an absolute address,
6051         * added command line arguments --debug-ralloc and --pcode-verbose,
6052         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
6053         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
6054         * (pic16_newpCodeOpLit2): modified to take the second operand as
6055         pCodeOp pointer,
6056         * (pic16_printpBlock): modified to emit each function in a separate
6057         section,
6058         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
6059         UPPER for immediate operands,
6060         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
6061         instruction,
6062         * src/pic16/peeph.def: all peepholes with movff are commented out,
6063         because there is a problem in the pcode peep optimizer,
6064         * src/pic16/ralloc.c: the register allocator can now reuse local
6065         function symbols for another function. This saves register usage.
6066         * src/pic16/ralloc.h: added flag isLocal in structure regs,
6067
6068         Added file src/pic16/NOTES with information about program writing on
6069         the current port version.
6070
6071 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6072
6073         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
6074         and peephole 252 (array access)
6075
6076 2004-01-09  Borut Razem <borut.razem AT siol.net>
6077
6078         * src/SDCCmain.c : fixed #872250: -l command line defined library
6079           files are scanned before standard library files
6080
6081 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6082
6083         * src/SDCCast.c (decorateType): fixed bug #874046
6084
6085 2004-01-09  Borut Razem <borut.razem AT siol.net>
6086
6087         * support/scripts/sdcc.nsi: remove previous installation
6088
6089 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6090
6091         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
6092         bytes for last interrupt vector (mcs51)
6093         * sdcc.spec: fixed typo
6094
6095 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6096
6097         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
6098         gen51Code): more efficient parameter receive for --model-large
6099         ("bug" #845294)
6100
6101 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6102
6103         * src/ds390/main.c,
6104         * src/z80/main.c: added missed needLinkerScript flags (more than
6105         one port structure defined in these file)
6106         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
6107         bug #795325
6108
6109 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
6110
6111         * src/SDCCmain.c: removed various references to DEFAULT_PORT
6112         * src/port.h: added flag needLinkerScript in port->linker
6113         structure to inform whether to create a .lnk file or not,
6114         * src/avr/main.c,
6115         * src/ds390/main.c,
6116         * src/hc08/main.c,
6117         * src/mcs51/main.c,
6118         * src/pic/main.c,
6119         * src/pic16/main.c,
6120         * src/xa51/main.c,
6121         * src/z80/main.c: changed appropriately to configure
6122         needLinkerScript flag
6123         * src/pic/gen.c,
6124         * src/pic16/gen.c (genAddrOf): fixed bug #863624
6125         * src/pic/glue.c: added variable udata_section_name to
6126         override default uninitialized data segment definition for
6127         devices only with SHAREBANK memory (reported from Erik Epetrich)
6128         * (pic14emitOverlay): modified to emit a commented overlay segment
6129         directive when no overlay data exist
6130         * (picglue): modified to emit uninitialized data segment
6131         according to udata_section_name
6132         * src/pic/main.c (_pic14_parseOptions): added command line
6133         options --udata-section-name=[name] to override default
6134         udata definition name
6135         * modified _linkCmd and _asmCmd to include compiler passed
6136         arguments via -W option
6137         * src/pic16/main.c: added $l in _asmCmd, changed extension for
6138         object file from '.rel' to '.o' in port->linker structure,
6139         changed size of fptr from 2 to 3 in port structure
6140
6141 2004-01-07  Borut Razem <borut.razem AT siol.net>
6142
6143         * support/scripts/sdcc.nsi: update PATH
6144         * support/scripts/sdcc.ico: craeted
6145
6146 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
6147
6148         * device/include/Makefile.in: fix install
6149         * doc/Makefile: fix install
6150
6151 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6152
6153         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
6154         in bug #860505
6155         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
6156         how the function variable allocation summary is displayed; also
6157         include information about variables allocated to the overlay
6158         segment
6159
6160 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6161
6162         * as/mcs51/lkmain.c: Help about -Y option
6163         * as/mcs51/lkarea.c: Fixed gcc warnings
6164
6165 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6166
6167         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
6168         fixed warning
6169         * support/valdiag/tests/overflow.c: added
6170         * src/SDCCast.c (decorateType),
6171         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
6172         LEFT_OP (left shift)
6173
6174 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6175
6176         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
6177         (default behaviour).
6178
6179 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6180
6181         A python script to validate compiler diagnostic messages. It can be
6182         used to verify that sdcc complains about bad c source code and
6183         gives a good location of the error.
6184         * support/valdiag/Makefile,
6185         * support/valdiag/valdiag.py,
6186         * support/valdiag/tests/*
6187
6188 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6189
6190         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
6191         * src/SDCCsymt.c (newEnumType),
6192         * src/SDCCsymt.h
6193         * support/Util/SDCCerr.c,
6194         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
6195         enum related bugs.
6196         * support/regression/tests/enum.c: added test for enum values that
6197         require at least 2 bytes of storage.
6198
6199 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6200
6201         * src/common.h: added ifndef/define/endif macros
6202         around the header file.
6203         Bug reported from Jesus Calvino-Fraga
6204
6205 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6206
6207         * sdcc.spec: updated
6208         * device/include/Makefile.in: don't install CVS directories
6209         * device/lib/Makefile.in: added removal of CVS directories after install
6210         * doc/Makefile: fixed install, added local_icons
6211         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
6212         * src/mcs51/gen.c (genRightShift): fixed bug #870788
6213         * src/ds390/gen.c (genRightShift): fixed bug #870788
6214         * src/SDCCast.c (decorateType): fixed bug #870781
6215
6216 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6217
6218         PIC16 port related changes:
6219         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
6220         added variable stackPos,
6221
6222         * gen.c: genCall, assignResultValue: added support for
6223         pushing/retrieving function parameters to/from stack,
6224         genFunction,genEndFunction: setup stack frame for the
6225         generated function,
6226         genAddrOf: will be changed according to bug 863624
6227
6228         * added files genutils.c and genutils.h which contain gen*
6229         debugged and optimised functions extracted from gen.c
6230
6231         * glue.c: added variable 'externs' which holds extern symbols,
6232         pic16emitRegularMap: is modified to properly handle relocatable
6233          symbols under the new scheme,
6234         pic16createInterruptVect: is modified
6235         pic16printPublics: is modified to emit 'global' assembler directives,
6236         added pic16_printExterns to print extern symbols,
6237         pic16glue: initializes stack/frame pointer in the beginning of
6238         the assembly output. Temporary hack, will be corrected later,
6239         because gplink yet does not support stack and SDCC does not
6240         yet support a type of crt0.o object to create the final binary.
6241
6242         * Removed many lines that contain 8051 legacy code.
6243         * The code is finally placed under a 'code' directive.
6244         * Added port specific options.
6245
6246         * _process_pragma: simplified since now we do not need *special*
6247         include file to define SFR registers. But a separate header
6248         will be needed. This will be developed later.
6249         * _pic16_parseOptions: added, parses port specific options:
6250         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
6251         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
6252         --preplace-udata-with=
6253
6254         * _pic16_setDefaultOptions: modified to initialize section names,
6255         but hack is temporarly out of order since it needs improvement.
6256         * _pic16_genAssemblerPreamble: configuration words are emitted by
6257         their address instead of their name. This part is incomplete and
6258         supports only the 18Fxx2 devices. Other devices will emit an error
6259         during assembly since they do not contain the same set of config
6260         registers
6261         * _pic16_genIVT: is modified,
6262
6263         * pcode.c: added definitions for some hardware registers that are needed
6264         for stack support
6265         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
6266         All PCI entries are updated. Now LFSR is supported.
6267         * Removed pic16_pciTRIS is mentioned by mdubuc in source
6268         * added pic16_newpCodeOpLit2 to support instructions with
6269         two literal arguments
6270         * pic16_pCode2str: corrected code that emits assembler instructions
6271         with two literal operands and those that have an access bit modifier
6272         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
6273         this fixes a bug which caused some labels to be lost, when an
6274         assembler directive was added, i.e. banksel,
6275         * pic16_FixRegisterBanking: improved logic that causes the insertion
6276         of bank switching,
6277         * InlineFunction: functions that are called once, are not any more
6278         inlined. This can be a port option in the future,
6279
6280         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
6281
6282         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
6283         hold the corresponding uninitialized symbols,
6284         * pic16_allocProcessorRegister: registers have explicit marked the
6285         accessBank field,
6286         * pic16_allocInternalRegister: registers are explicit marked as
6287         not used,
6288         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
6289         processing list, so bit registers were lost,
6290         *
6291
6292         * ralloc.h: added field 'accessBank' and original symbol operand
6293         in register definition,
6294         * removed the field isMapped from register definition,
6295
6296         ** Several functions have been removed from various sources:
6297         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
6298         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
6299         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
6300         pic16_assignRelocatableRegisters
6301
6302         ** others have been introduced:
6303         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
6304         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
6305
6306 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
6307
6308         * support/scripts/inc2h.pl: changed definition of BIT_AT
6309         to emit 'sbit at' instead of 'bit at'. This was a request.
6310
6311         PIC16 port related preliminary changes:
6312         * gen.c: prefixed function popRegFromString with
6313         pic16_ and all references to it corrected
6314         * pcode.c: all pic16_pc_* hardware registers prefixed
6315         with underscore (_),
6316         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
6317         * ralloc.c: newReg(): when register is REG_SFR then
6318         set address to rIdx,
6319         pic16_allocProcessorRegister(): marks register wasUsed=0
6320         pic16_writeUsedRegs(): added a call to assign processor
6321         registers via pic16_assignFixedRegisters
6322
6323 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6324
6325         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
6326         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
6327         variables in unused register banks.  Also the SSEG is placed
6328         wherever there is enough space for it, and IDATA can be anywhere
6329         in internal RAM.  For now compile using -Wl-Y[stack_size].
6330         The mem file is different for this option as well, since it
6331         makes no sense of talking about DSEG lenght.
6332
6333 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
6334
6335         * src/SDCClrange.c: fixed bug 869095 that caused segfault
6336         in certain cases, e.g. when ROM assignment, patch provided
6337         from Albert den Haan.
6338
6339 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
6340
6341         Many signedness and type propagation fixes:
6342         * src/SDCCicode.c: made geniCodeCast() static
6343         replaced SPEC_ by IS_ (cosmetic)
6344         (operandOperation): fixed div and mod operation
6345         (usualBinaryConversions): added support for promotion of char
6346         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
6347         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
6348         (geniCodeAdd): an array index will stay unsigned, even if promoted
6349         from char to int
6350         (geniCodeArray): ditto
6351         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
6352         * src/SDCCsymt.c (computeType): added more support for char;
6353         promotion of char is selectable by promoteCharToInt, fixed signedness
6354         for all cases
6355         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6356         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6357         * src/SDCCval (val*): replaced signedness calculation by
6358         computeType()
6359         rearranged if-branches (cosmetic)
6360         (valShift): added warning W_SHIFT_CHANGED
6361         (valCompare): fixed problem with different types
6362         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
6363         * support/regression/tests/literalop.c: added many cases
6364         * support/regression/tests/ast_constant_folding.c: changed finally to
6365         'unsigned int'
6366         * .version: new year, new version: 2.3.7
6367         * src/SDCCmain.c (main): applied patch #866468
6368         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
6369         provided by Scott Bronson
6370         * doc/sdccman.lyx: updated documentation for sdcdb
6371         updated and added chapter tips
6372
6373 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6374
6375         * src/SDCCsymt.h: missing from yesterday's commits
6376
6377 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6378
6379         * src/SDCC.y (struct_or_union_specifier),
6380         * support/Util/SDCCerr.c,
6381         * support/Util/SDCCerr.h: verify that struct & union tags are used
6382         as declared.
6383
6384 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6385
6386         * src/SDCCglobl.h: missing from yesterday's commits
6387
6388 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6389
6390         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
6391         sft_attributes, struct_declaration, parameter_declaration,
6392         type_name, start_block, declaration_list),
6393         * src/SDCC.lex (check_type): support redefinition of typedef names
6394
6395 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6396
6397         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
6398         aligned xdata arrays. Erik helped me with the if clause.
6399
6400 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6401
6402         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
6403         warning
6404
6405 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6406
6407         * src/SDCCast.h,
6408         * src/SDCCast.c (newAst_),
6409         * src/SDCCicode.h,
6410         * src/SDCCicode.c (ast2iCode, newiCode),
6411         * src/SDCCglobl.h,
6412         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
6413         expr, statement, expression_statement, selection_statement,
6414         iteration_statement, expr_opt, jump_statement): foundation for tracking
6415         sequence points
6416         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
6417         point code too)
6418
6419 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6420
6421         * support/Util/SDCCerr.c,
6422         * src/SDCCast.h,
6423         * src/SDCCast.c (createCase, createDefault, decorateType),
6424         * src/SDCClabel.c (labelUnreach),
6425         * src/SDCC.y (labeled_statement, jump_statement): More improvements
6426         to error messages.
6427         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
6428         (with thanks to Stas Sergeev)
6429         * device/include/time.h,
6430         * device/lib/time.c (CheckTime): suppress unreachable code warning
6431
6432 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6433
6434         * src/SDCCast.c (createIvalCharPtr),
6435         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
6436         bug #753752)
6437         * support/regression/tests/nullstring.c: tests for these two bugs
6438
6439 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6440
6441         * support/Util/SDCCerr.h,
6442         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
6443         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
6444         about storage class and 'at' used inside struct or union
6445         * src/SDCCBBlock.c (iCodeFromeBBlock),
6446         * src/SDCCcse.c (ifxOptimize),
6447         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
6448         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
6449         printIval, emitStaticSeg, emitOverlay),
6450         * src/SDCClabel.c (deleteIfx),
6451         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
6452         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
6453         gatherAutoInit, processParms),
6454         * support/Util/SDCCerr.h,
6455         * support/Util/SDCCerr.c (werrorfl): Support for better error location
6456         reporting for post-parse errors.
6457
6458 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6459
6460         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
6461         implicit casts via union; they don't work on big endian systems
6462         (possible fix for bug #861138)
6463
6464 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6465
6466         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
6467         * src/mcs51/main.c: fixed the fix for bug #737001
6468
6469 2003-12-15  Borut Razem <borut.razem AT siol.net>
6470
6471         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
6472
6473 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6474
6475         * support/makebin/makebin.c: put output in binary mode
6476
6477 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6478
6479         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
6480         xdata and data memory on startup. Set the environment variable
6481         SDCC_NOGENRAMCLEAR to disable this.
6482         * src/mcs51/peephole.def,
6483         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
6484         (allows non-interrupt and interrupt code to safely compete for a resource
6485         without the non-interrupt code having to disable interrupts)
6486
6487 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6488
6489         * src/SDCCicode.c (geniCodeAdd),
6490         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
6491         with valFromType if type might be a pointer and host is big endian).
6492         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
6493         types, not just integer types.
6494         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
6495         multiply defined with mismatching "at" address.
6496
6497 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6498
6499         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
6500         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
6501         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
6502         with embedded nulls (fixed bug #753752)
6503
6504 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6505
6506         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
6507         Apparently this did not see much testing (endless loop)
6508
6509 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6510
6511         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
6512
6513 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6514
6515         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
6516         gracefully handle NULL memmap pointers
6517
6518 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6519
6520         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
6521         instead of deleting the iCode when an operand is volatile
6522         * src/z80/gen.c (genDummyRead),
6523         * src/mcs51/gen.c (genDummyRead),
6524         * src/ds390/gen.c (genDummyRead),
6525         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
6526         not just IC_RIGHT
6527         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
6528         * src/SDCC.y: fixed bug #850420
6529
6530 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6531
6532         Applied z80 i/o port patch from Peter Townson and fixed some operators
6533         to better handle operands in A register.
6534         * device/include/z180.h
6535         * src/SDCC.y
6536         * src/SDCCglue.c
6537         * src/z80/gen.c
6538         * src/z80/gen.h
6539         * src/z80/main.c
6540         * src/z80/peeph-z80.def
6541         * src/z80/peeph.def
6542         * src/z80/z80.h
6543
6544 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6545
6546         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
6547
6548 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6549
6550         * device/lib/hc08/_mullong.c: Removed extra #endif
6551
6552 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6553
6554         * sim/ucsim/hc08.src/inst.cc,
6555         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
6556         carries from x to h
6557         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
6558         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
6559         * device/include/stdarg.h: fixed varargs for hc08
6560         * device/lib/Makefile.in,
6561         * device/lib/hc08/Makefile,
6562         * device/lib/hc08/_mulint.c,
6563         * device/lib/hc08/_mullong.c: fixed some endian problems
6564
6565 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6566
6567         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
6568         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
6569         * device/lib/_gptrget.c,
6570         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
6571
6572 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6573
6574         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
6575         * src/SDCCast.c (astErrors): fixed bug #846007
6576         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
6577
6578 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6579
6580         * src/SDCCast.c (decorateType): disabled a transformation I added in
6581         revision 1.188 (access to fields of a structure at an absolute address);
6582         it breaks with bitfields, extern declarations, and gcse analysis.
6583         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
6584         could be assigned through a pointer, so don't complain.
6585         * src/SDCCast.c (astErrors),
6586         * src/SDCCast.h,
6587         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
6588
6589 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
6590
6591         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
6592         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
6593         output of __config directives, since gpasm now supports them
6594         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
6595         pre-processor macro, i.e. -DMCU=p18f452
6596         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
6597         and modified to handle 'cast' icode similarly to '=' icode
6598         * src/pic16/device.h (typedef struct PIC_device): added field
6599         'extMIface' to indicate that chip has external memory interface
6600         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
6601         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
6602         18F8720
6603
6604 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6605
6606         * src/SDCC.y (pointer): fixed bug #846006
6607         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
6608         * src/SDCCast.c (decorateType): fixed bug #846009
6609         * src/ds390/peeph.def,
6610         * src/ds390/gen.c (genAnd, genOr),
6611         * src/mcs51/peeph.def,
6612         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
6613
6614 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6615
6616         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
6617         * src/SDCCdflow.c
6618         * src/SDCCcse.c
6619         * src/SDCCcse.h
6620         * src/SDCCBBlock.h
6621         * src/SDCCBBlock.c
6622
6623 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
6624
6625         fixed bug #845089
6626         * src/SDCCbitv.h,
6627         * src/SDCCbitv.c: added function to free a bitvector
6628         * src/SDCClrange.h,
6629         * src/SDCClrange.c: added function to recompute the liveranges
6630         * src/avr/ralloc.c,
6631         * src/ds390/ralloc.c,
6632         * src/hc08/ralloc.c,
6633         * src/mcs51/ralloc.c,
6634         * src/pic/ralloc.c,
6635         * src/pic16/ralloc.c,
6636         * src/xa51/ralloc.c,
6637         * src/z80/ralloc.c: recompute the liveranges after register packing
6638
6639 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
6640
6641         * src/SDCCloop.c (newInduction): fixed bug #845630
6642
6643 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6644
6645         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
6646         inadvertantly left behind from my 2003-11-12 change
6647
6648 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6649
6650         Updated headers I neglected to commit yesterday.
6651         * src/SDCClrange.h,
6652         * src/SDCCicode.h
6653
6654 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6655
6656         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
6657         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
6658         * src/SDCCopt.c (eBBlockFromiCode),
6659         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
6660         the creation of the key hash table from the sequencing so it can be used
6661         earlier (for some GCSE bug fixes still pending)
6662
6663 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6664
6665         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
6666         * support/regression/tests/addsub.c: testing genPlus shortcut
6667
6668 2003-11-15  Borut Razem <borut.razem AT siol.net>
6669
6670         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
6671
6672 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6673
6674         * src/SDCCcse.c (cseBBlock): fixed bug #527779
6675         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
6676         ordering is immaterial.
6677         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
6678
6679 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6680
6681         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
6682         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
6683         (SIGSEV) of bug #840381
6684         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
6685         unlink new file before rename if new and old filenames are the same)
6686
6687 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6688
6689         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
6690         uninitialized variables) for the mcs51. Set environment variable
6691         SDCC_GENRAMCLEAR to test.
6692         xdata initialization slightly shorter
6693
6694 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6695
6696         * src/SDCCsymt.h,
6697         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
6698         #838241 & 780691 (basicly the same bug)
6699         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
6700         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
6701
6702 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
6703
6704         * src/SDCCmain.c (linkEdit): "fix" #834252
6705
6706 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6707
6708         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
6709         * src/SDCCast.h,
6710         * src/SDCC.y: fixed bug #819403
6711
6712 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6713
6714         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
6715         the reentrant attribute.
6716         * src/hc08/gen.c (genPackBits): added missing stack readjustment
6717         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
6718         simulation
6719         * src/SDCCast.c (decorateType): fixed bug with storage class not being
6720         updated during pointer dereference; f.e. ~(((char *)1)*) was being
6721         erroneously reduced to a literal.
6722         * src/hc08/ralloc.c (packRegisters, rematStr),
6723         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
6724         some cases
6725
6726 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6727
6728         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
6729         * doc/sdccman.lyx: changed from 'article' to 'book'
6730         * doc/Makefile: readded test_suite_spec and cdbfileformat
6731
6732 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
6733
6734         * device/include/stdlib.h: include malloc.h to comply with ANSI
6735         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
6736
6737 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6738
6739         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
6740         * doc/clean.mk: also remove *.out files
6741         * doc/sdccman.lyx: some additions, larger top/bottom margins
6742
6743 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6744
6745         * src/SDCC.y: fixed bug #837365
6746         * support/regression/tests/bitopcse.c
6747         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
6748         a symbol (might be valop instead)
6749         * device/lib/Makefile.in: added errno.c to HC08SOURCES
6750         * device/lib/clean.mk: added hc08 to the cleaning list
6751
6752 2003-11-04  Borut Razem <borut.razem AT siol.net>
6753
6754         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
6755           made 2003-11-04
6756         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6757           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
6758           malloc is declared in standard stdlib.h
6759
6760 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6761
6762         * device/lib/hc08/Makefile: need to clean .rel not .o files
6763         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
6764
6765 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6766
6767         * src/port.h,
6768         * src/hc08/main.c,
6769         * src/mcs51/main.c,
6770         * src/ds390/main.c,
6771         * src/z80/main.c,
6772         * src/avr/main.c,
6773         * src/pic/main.c,
6774         * src/pic16/main.c,
6775         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
6776         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
6777         tests (which uses the port's oclsExpense function)
6778         * src/SDCC.y,
6779         * src/SDCCast.c,
6780         * src/SDCCicode.c,
6781         * src/hc08/gen.c,
6782         * src/ds390/gen.c,
6783         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
6784
6785 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6786
6787         * src/SDCCcse.c (ifxOptimize),
6788         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
6789         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
6790         deleting the IFX iCode.
6791         * src/hc08/ralloc.c: reduced unneeded slocs
6792         * src/hc08/gen.c: fixed bug in asmopToBoolean
6793
6794 2003-11-04  Borut Razem <borut.razem AT siol.net>
6795
6796         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
6797           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6798           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
6799           transferred to configure
6800
6801 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
6802
6803         Use headers defined in the C[++] standards:
6804         * sim/ucsim/gui.src/serio.src/fileio.cc
6805         * sim/ucsim/gui.src/serio.src/frontend.cc
6806         * sim/ucsim/gui.src/serio.src/main.cc
6807         * sim/ucsim/gui.src/serio.src/posix_signal.cc
6808         * support/Util/NewAlloc.c
6809         * as/hc08/lklibr.c
6810         * as/mcs51/lklibr.c
6811         * as/z80/aslist.c
6812         * as/z80/assym.c
6813
6814 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6815
6816         * Added MSVC projects for hc08 assembler and linker:
6817         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
6818         /as/hc08/link_hc08.dsp
6819
6820 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
6821
6822         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
6823
6824 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
6825
6826         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
6827
6828 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6829
6830         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
6831
6832 2003-10-31  Borut Razem <borut.razem AT siol.net>
6833
6834         * support/cpp2/cpplib.h,
6835           support/cpp2/cpplib.c,
6836           support/cpp2/cpplex.c,
6837           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
6838           to switch _asm block preprocessing on / off. Default is
6839           #pragma preproc_asm +
6840
6841 2003-10-31  Borut Razem <borut.razem AT siol.net>
6842
6843         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
6844           when outputting comment blocks (when executed with -C option) and
6845           _asm (SDCPP specific) blocks
6846
6847 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6848
6849         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
6850
6851 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
6852
6853         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
6854
6855 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
6856
6857         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
6858         * src/SDCCast.c (decorateType): fixed bug #832664
6859
6860 2003-10-31  Borut Razem <borut.razem AT siol.net>
6861
6862         * support\cpp2\cpplex.c: fixed for SDCPP:
6863           comments(when executed with -C option) and _asm blocks
6864           were included even if they where in skipped #if block.
6865           Applied solution from GCC cpp 3.3.2
6866
6867 2003-10-31  Borut Razem <borut.razem AT siol.net>
6868
6869         * src/SDCC.lex: sdcc now understands both formats:
6870           '# <line_number> <file_name>' and
6871           '#line <line_number> <file_name>'
6872         * support/cpp2/cppmain.c: sdcpp now generates the standard
6873           '# <line_number> <file_name>' instead of former
6874           '#line <line_number> <file_name>'
6875
6876 2003-10-30  Borut Razem <borut.razem AT siol.net>
6877
6878         * support/cpp2/cpphash.h,
6879         * support/cpp2/cpplib.h
6880         * support/cpp2/cpplex.c,
6881         * support/cpp2/cppmain.c,
6882         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
6883
6884 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6885
6886         Fixed a number of problems revealed by bug #827883.
6887         * src/SDCCloop.c (loopInvariants): Spill location of the
6888         result operand should be recomputed if extracted from
6889         a loop. Also, don't extract assignments of an iTemp
6890         from a literal.
6891         * src/SDCCast.c (isConformingBody): loop reversal should
6892         not occur if the control variable is involved with a
6893         relational operator.
6894
6895 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
6896
6897         * .version: bumped to 2.3.6 to reflect the big improvements
6898         made by Erik and Klaus. Thanks!
6899
6900 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
6901
6902         Replaced the livrange code.
6903         * src/SDCClrange.c: added new LR code
6904         * src/SDCCloop.c,
6905         * src/SDCCBBlock.h: removed remainig parts from old LR code
6906         * src/ds390/ralloc.c,
6907         * src/ds390/gen.c: minor fixes to make it work with new code
6908
6909 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6910
6911         * as/hc08/asm.h,
6912         * as/hc08/lkrloc.c,
6913         * src/hc08/gen.c,
6914         * src/hc08/ralloc.c: Fix various warnings related to the hc08
6915         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
6916         (tweaked fix for bug #818696)
6917
6918 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6919
6920         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
6921
6922 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6923
6924         * src/SDCCmain.c,
6925         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
6926         * src/mcs51/gen.c (gencjneshort),
6927         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
6928         more efficient (per Scott Bronson's suggestion)
6929
6930 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6931
6932         Extended the semantics of the critical keyword to include
6933         individual statements. See RFE #827755 and #799831
6934         * src/SDCC.y
6935         * src/SDCCicode.c
6936         * src/SDCCopt.c
6937         * src/SDCCast.c
6938         * support/Util/SDCCerr.c
6939         * support/Util/SDCCerr.h
6940         * src/mcs51/gen.c
6941         * src/ds390/gen.c
6942         * src/hc08/gen.c
6943
6944 2003-10-19  Borut Razem <borut.razem AT siol.net>
6945
6946         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
6947
6948 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6949
6950         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
6951         Fixed bug #818696
6952         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
6953         and predecrement operand is displayed
6954
6955 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6956
6957         * src/SDCCval.c (valMinus): fixed bug #826041
6958
6959 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6960
6961         Some hc08 related updates that I missed earlier
6962         * sim/ucsim/stypes.h
6963         * support/regression/ports/hc08/spec.mk
6964
6965 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6966
6967         New target "hc08" for the Motorola 68hc08 family of micros
6968
6969         * configure
6970         * configure.in
6971         * Makefile
6972         * src/hc08/*
6973         * src/SDCCmain.c
6974         * src/port.h
6975         * sim/ucsim/hc08.src/*
6976         * sim/ucsim/configure.in
6977         * src/ucsim/configure
6978         * sim/ucsim/packages_in.mk
6979         * as/hc08/*
6980         * as/Makefile
6981         * device/include/mc68hc908qy.h
6982         * device/lib/hc08/*
6983         * device/lib/Makefile.in
6984         * support/regression/ports/hc08/*
6985         * support/regression/Makefile
6986
6987 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6988
6989         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
6990         regression test
6991         * src/ds390/gen.c (genCast): fixed bug #821957
6992
6993 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6994
6995         * device/lib/logf.c: "fixed" overlay bug
6996         * support/regression/ports/host/spec.mk: added m library
6997         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
6998         * support/regression/tests/float_trans: added (for Eric)
6999
7000 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
7001
7002         * src/mcs51/gen.c (genCpl): fixed bug
7003         http://sf.net/mailarchive/message.php?msg_id=6263915
7004
7005 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
7006
7007         * src/SDCCast.c (decorateType): added extended constant folding
7008         * src/SDCCsymt.c (computeType): cleanup
7009         * src/SDCCval.c (valShift): minor optimization
7010         * support/regression/tests/ast_constant_folding.c: added
7011
7012 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7013
7014         * src/SDCCmain.c: removed some unintended changes
7015
7016 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7017
7018         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
7019         * src/z80/gen.c: fixed part of bug #817589
7020         * src/SDCCsymt.c (checkFunction): fixed bug #817895
7021
7022 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
7023
7024         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
7025         * src/SDCCcflow.c
7026         * src/SDCCcse.c
7027         * src/SDCCdflow.c
7028         * src/SDCClabel.c
7029         * src/SDCClrange.c
7030         * src/SDCCmem.c
7031         * src/SDCCopt.c
7032         * src/SDCCpeeph.c
7033         * src/SDCCset.c
7034         * src/avr/ralloc.c
7035         * src/ds390/ralloc.c
7036         * src/izt/ralloc.c
7037         * src/mcs51/ralloc.c
7038         * src/pic/ralloc.c
7039         * src/pic16/ralloc.c
7040         * src/xa51/ralloc.c
7041         * src/z80/ralloc.c
7042         * src/z80/gen.c: removed unused label "release:"
7043
7044 2003-10-06  Borut Razem <borut.razem AT siol.net>
7045
7046         * src/SDCC.lex: removed definition of unused variables
7047           save_optimize and save_options
7048
7049 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
7050
7051         * clean.mk: removed '=' in "-maxdepth=1"
7052         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
7053         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
7054
7055 2003-10-06  Borut Razem <borut.razem AT siol.net>
7056
7057         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
7058           my_unput() replaced by unput()
7059
7060 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
7061
7062         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
7063         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
7064         type-punned pointer will break strict-aliasing rules"
7065         Old LR behaviour is again default; Klaus' LR can be choosen by
7066         defining the environment variable LRKLAUS
7067         * src/SDCCBBlock.h
7068         * src/SDCCloop.c
7069         * src/SDCClrange.c
7070         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
7071         * clean.mk: fixed removal of files in bin/CVS/
7072         * device/lib/clean.mk: fixed removal of directories small and large
7073         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
7074         * src/SDCCicode.c,
7075         * src/SDCCval.c: removed superflous test for pedantic
7076
7077 2003-10-05  Borut Razem <borut.razem AT siol.net>
7078
7079         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
7080           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
7081           message "unmatched #pragma SAVE and #pragma RESTORE"
7082
7083 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7084
7085         * doc/sdccman.lyx: various additions and updates (interrupts, inline
7086           assembly, critical functions, atomic, nojtbound)
7087
7088 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
7089
7090         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
7091         * src/SDCCBBlock.h
7092         * src/SDCCloop.c
7093         * src/SDCCloop.h
7094         * src/SDCClrange.c
7095
7096 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7097
7098         * src/z80/gen.h,
7099         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7100         * src/mcs51/gen.h
7101         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7102         * src/ds390/gen.h
7103         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7104         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
7105         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
7106
7107 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7108
7109         * src/z80/gen.c (genRet): fixed bug #524753
7110         * src/z80/gen.c (genCast): fixed internal error on cast from
7111         pointer to long
7112         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
7113         fix for bug #477835 to the z80
7114         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
7115         for tracking iCodes in the peephole optimizer for z80
7116
7117 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7118
7119         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
7120         the other part of bug #814548
7121         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
7122
7123 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
7124
7125         * src/SDCCcse.c: fixed part of bug #814548
7126
7127 2003-09-28  Borut Razem <borut.razem AT siol.net>
7128
7129         * src/asm.c: rewrite of printILine() to use temporary file instead
7130           a pipe
7131         * src/xa51/main.c: commented out declaration of int rewinds
7132
7133 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7134
7135         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
7136
7137 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7138
7139         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
7140         * src/asm.c (printILine): Fixed bug #811015
7141
7142 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7143
7144         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
7145         freeing.
7146
7147 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7148
7149         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
7150         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
7151         to correctly handle general case of AOP_PAIRPTR
7152         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
7153
7154 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7155
7156         * src/mcs51/ralloc.c (fillGaps),
7157         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
7158         register positioning bug)
7159
7160 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
7161
7162         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
7163
7164 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7165
7166         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
7167         genCodePointerGet, genGenPointerGet, genFarPointerSet,
7168         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
7169         (ralloc doesn't intentionally do this now, but perhaps later)
7170         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
7171         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
7172         register positioning bugs (Fixed bug #762602 and #795325)
7173         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
7174         (Fixed bug #808779)
7175         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
7176         lines that --i-code-in-asm generates
7177
7178 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7179
7180         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
7181         trying to fclose a FILE* that was already closed.
7182
7183 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7184
7185         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
7186         of const struct should be treated as if const themselves)
7187
7188 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
7189
7190         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
7191
7192 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7193
7194         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
7195         Unix (/n) and DOS (/r/n) line terminations.
7196
7197 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7198
7199         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
7200         bug #613775
7201
7202 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7203
7204         * src/mcs51/gen.c (genFunction, genEndFunction),
7205         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
7206         and restore of EA so that stack offsets to parameters are
7207         correct when using both critical and reentrant/stack-auto.
7208         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
7209         size (can be triggered in error if sloc is shared between
7210         different sized objects)
7211         * device/include/float.h: fixed macros to explicitly use
7212         unsigned long where needed
7213
7214 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
7215
7216         Feature req. 799831: added code to allow nesting of critical functions
7217         * src/mcs51/gen.c (genFunction, genEndFunction)
7218         * src/ds390/gen.c (genFunction, genEndFunction)
7219
7220 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7221
7222         * src/SDCCsymt.c (sclsFromPtr),
7223         * src/SDCCsymt.h,
7224         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
7225         support for standard C idiom of memory mapped variables; for
7226         example, *((xdata int*)0x1234) = 1 is now internally equivalent
7227         to xdata int at 0x1234 tempvar = 1.
7228         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
7229         provided by Akiya ISHIDA
7230
7231 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
7232
7233         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
7234         * src/SDCCval.c (constVal): added reduction from int to char
7235         * src/SDCCval.c (valMult, valDiv): fixed sign handling
7236         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
7237         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
7238         to ignore the sign
7239         * support/regression/tests/shifts.c: fixed
7240
7241 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7242
7243         * src/z80/gen.c (genXor): Fixed bug #805445
7244
7245 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7246
7247         Fixed bug #621531 (const & volatile confusion in the type chain).
7248         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
7249         refer to the const or volatile state of the pointer itself.
7250
7251         * src/SDCCast.c
7252         * src/SDCCglue.c
7253         * src/SDCCicode.c
7254         * src/SDCCsymt.c
7255         * src/SDCCval.c
7256         * src/SDCC.y
7257         * src/SDCCsymt.h
7258         * src/pic/gen.c
7259         * src/pic/ralloc.c
7260         * src/pic16/gen.c
7261         * src/pic16/ralloc.c
7262         * support/regression/tests/const.c
7263
7264 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7265
7266         When checking for duplicated modules, use absolute paths
7267         instead of relative paths.  Files changed:
7268
7269         * as/mcs51/lklib.c
7270         * link/z80/lklib.c
7271
7272 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7273
7274         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
7275
7276 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7277
7278         * device/include/string.h: added size_t typedef, changed
7279         prototypes to use size_t, eliminated separate reentrant and
7280         non-reentrant declarations, added _memmove declaration
7281         * device/lib/_memcpy.c: changed to use size_t instead of int,
7282         changed /4 to >>2 to avoid division library call
7283         * device/lib/_memcmp.c,
7284         * device/lib/_memset.c,
7285         * device/lib/_strncat.c,
7286         * device/lib/_strncpy.c,
7287         * device/lib/_strncmp.c: changed to use size_t instead of int
7288         * device/lib/_memmove.c: new file (fixed bug #772294)
7289         * device/lib/Makefile.in: added _memmove.c
7290         * device/lib/z80/asm_strings.s: fixed bug #772290
7291         * support/regression/tests/bitfields.c: attempt to fix host assertion
7292         failure on amd64-unknown-linux2.2
7293
7294 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7295
7296         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
7297         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
7298         * as/z80/asmain.c (main): fixed bug #801766
7299
7300 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
7301
7302         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
7303         compilers
7304
7305 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7306
7307         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
7308         reported in bug #800609
7309
7310 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
7311
7312         * Top header beautifications in src/pic16 directory:
7313           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
7314           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
7315           pcoderegs.h, ralloc.c, ralloc.h
7316         * main.c: added top header and GPL license notice
7317         * pcode.c: fixed the if-conditional warning
7318
7319 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
7320
7321         * device/lib/_mullong.c: replaced int by short for gcc
7322
7323 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7324
7325         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
7326         and JUMPTABLE iCodes properly now (worked by accident before)
7327         * src/mcs51/gen.c (leftRightUseAcc),
7328         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
7329         iCode properly now. Use getSize instead of nRegs since a & b
7330         aren't part of the nRegs tally.
7331
7332 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
7333
7334         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
7335         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
7336           before instructions that use the _STATUS register
7337
7338 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
7339
7340         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
7341         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
7342         fetching of the pointer
7343         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
7344         copied from genNearPointerSet()
7345         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
7346         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
7347         If they pop r0/r1 they must be called in the opposite order than aopOp().
7348         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
7349         (resp. --stack-auto), prepared for --xstack
7350
7351 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7352
7353         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
7354
7355 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
7356
7357         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
7358         these ports have their own __sdcc_external_start()
7359
7360 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
7361
7362         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7363         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
7364         type for bits was changed. It resulted in bit variables becoming
7365         global, which is not permitted in PIC 14 assembly output.
7366
7367 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7368
7369         * doc/sdccman.lyx: various additions and updates. Rearranged sections
7370
7371 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7372
7373         Z80 and MCS51 linkers complaint if a public symbol is defined
7374         in more than one library module:
7375
7376         * as/mcs51/lklib.c
7377         * link/z80/lklib.c
7378         * as/mcs51/Makefile.in
7379
7380 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7381
7382         A few small changes that speed up the peephole optimizer.
7383
7384         * src/SDCCpeeph.c
7385
7386 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7387
7388         Try to make the peephole optimizer smarter by maintaining
7389         an association between the assembly source code and the
7390         iCodes that originated them. Put this information to use
7391         with a new peephole rule condition "notVolatile" so that
7392         the rules can be aggressive yet still safe.
7393
7394         * src/SDCCpeeph.c
7395         * src/SDCCpeeph.h
7396         * src/mcs51/gen.c
7397         * src/mcs51/peeph.def
7398
7399 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7400
7401         Fixed bug #741761
7402
7403         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
7404         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
7405         if the left or right operand symbols have the accuse flag set.
7406
7407 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7408
7409         Changed the type of the result of the ! (NOT) operator to char;
7410         previously it returned the same type as the source. This allows
7411         us to eliminate all the genFloatNot functions (all of its target
7412         implementations were very buggy) since !float can use the same
7413         code as !long now.
7414
7415         * src/SDCCicode.c (ast2iCode): ! returns char
7416         * src/mcs51/gen.c (genNot, genNotFloat),
7417         * src/ds390/gen.c (genNot, genNotFloat),
7418         * src/z80/gen.c (genNot, genNotFloat),
7419         * src/pic/gen.c (genNot, genNotFloat),
7420         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
7421
7422 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
7423
7424         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7425         1. Interrupt would not compile properly. Ensure PCLATH register is saved
7426            during interrupts. Ensure WSAVE is located at a shared bank address.
7427         2. Fixed page selection in some places
7428         3. Fixed BTFSS/C to where necessary use registers directly and not simply
7429            the registers name strings.
7430         4. Fixed "signed / unsigned compare" compiler warnings.
7431         5. The PIC port manages its own allocation of the general purpose
7432            registers, but makes no attempt to reuse them. As a result when
7433            compiling it soon runs out of general purpose registers. Some
7434            additional code was added to the files pcode.c and device.c to walk
7435            through the function call tree and rename the registers so that they
7436            get reused.
7437
7438         * src/pic/device.c
7439         * src/pic/gen.c
7440         * src/pic/glue.c
7441         * src/pic/pcode.c
7442         * src/pic/pcode.h
7443         * src/pic/ralloc.c
7444         * src/pic/ralloc.h
7445         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
7446         genPlus() & genMinus() when the result is the same as left or right
7447
7448 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7449
7450         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
7451
7452 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7453
7454         Made bitfield a distinct type from bit so that bitfields
7455         convert as per ANSI C and bits retain their traditional
7456         boolean style behaviour. Implemented bitfield support in
7457         the z80 port.
7458
7459         * src/SDCCsymt.h,
7460         * src/SDCCsymt.c,
7461         * src/SDCCast.c,
7462         * src/cdbFile.c,
7463         * src/mcs51/gen.c,
7464         * src/ds390/gen.c: bit v bitfield split
7465         * src/z80/gen.c: New support for bitfields
7466         * support/regression/tests/bitfields.c: reenabled z80,
7467         added more tests
7468
7469 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7470
7471         Rules 246.x, 247.x relate to bitfields, the others speed up
7472         access to xdata mapped I/O devices.
7473
7474         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
7475
7476 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7477
7478         Cleaned up genPackBits and genUnpackBits and added two helper
7479         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
7480         for literal assignments in genPackBits (thanks to Frieder for
7481         reminding me).
7482
7483         * src/mcs51/gen.c
7484         * src/ds390/gen.c
7485
7486 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7487
7488         Fixed bug #748310 (pointer to function type mishandled when the
7489         function name is omitted). Also fixed a SIGSEGV when a function
7490         attribute (reentrant, etc) is used on a non-function or on a
7491         function but misplaced before the parameter list.
7492
7493         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
7494         bug #748310
7495         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
7496         * support/Util/SDCCerr.h,
7497         * support/Util/SDCCerr.c: Added func attr misuse error msg
7498
7499 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7500
7501         Fixed bug #787649 by anonymous
7502         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
7503         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
7504
7505 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7506
7507         Fixed numerous bitfield problems.
7508
7509         * src/SDCC.y: More bitfield related error checking
7510         * src/SDCCsymt.h,
7511         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
7512         * support/Util/SDCCerr.h,
7513         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
7514         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7515         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7516         * support/regression/tests/bitfields.c: tests added
7517
7518 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7519
7520         Made the constant following the "interrupt" keyword optional. If
7521         omitted, the function will not automatically be given an entry
7522         in the interrupt vector table (similar to #pragma NOIV, but
7523         less syntacticly kludgy). The interrupt number is also now
7524         range checked. Also fixed a bug in the high order bit example
7525         in the manual.
7526
7527         * src/SDCC.y
7528         * src/SDCCmem.c
7529         * src/SDCCglue.c
7530         * src/SDCCsymt.h
7531         * support/Util/SDCCerr.c
7532         * support/Util/SDCCerr.h
7533         * doc/sdccman.lyx
7534
7535 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7536
7537         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
7538         * src/SDCCicode.c (operandOperation): rewritten some ops
7539         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
7540         * src/SDCCsymt.c (computeType): literals are handled the same way as any
7541         other type
7542         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
7543         be re-activated by defining REDUCE_LITERALS)
7544         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
7545         unsigned, but are signed by default
7546         * src/SDCCval.c (constVal): rearranged
7547         * src/SDCCval.c (valMod): preliminary fix
7548         * src/SDCCval.c (valCastLiteral): use TYPE_* types
7549         * support/regression/literalop.c: added, work in progress
7550
7551 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7552
7553         Generate warnings for useless declarations like "char data;"
7554         that don't do what new users expect.
7555
7556         * src/SDCC.y
7557         * support/Util/SDCCerr.h
7558         * support/Util/SDCCerr.c
7559
7560 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
7561
7562         * src/SDCCval.c (valMult): fix overflow detection of negative int
7563
7564 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7565
7566         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
7567
7568         Changes to support big endian targets:
7569
7570         * src/ports.h
7571         * src/SDCCglue.c
7572         * src/avr/main.c
7573         * src/ds390/main.c
7574         * src/izt/i186.c
7575         * src/mcs51/main.c
7576         * src/pic/main.c
7577         * src/pic16/main.c
7578         * src/xa51/main.c
7579         * src/z80/main.c
7580
7581 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
7582
7583         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
7584         * device/lib/time.c: fixed warning "integer overflow in expression"
7585
7586 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
7587
7588         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
7589         * src/SDCCval.c (constVal): changed default to signed; hex and octal
7590         constants are unsigned; added recognition of "u" flag for unsigned
7591         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
7592         * src/SDCCval.c (valDiv, valMod): fixed signdness
7593         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
7594         signedness of modulo, left and right shift
7595         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
7596         * support/Util/SDCCerr.h: added warning W_INT_OVL
7597         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
7598         * src/SDCCast.c (ast_print): improved output of constants
7599
7600 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7601
7602         Fixed some warnings when building with MSVC:
7603
7604         * as\mcs51\asdata.c
7605         * as\z80\asdata.c
7606         * as\mcs51\asm.h
7607         * as\z80\asm.h
7608         * link\z80\aslink.h
7609         * link\z80\lkdata.c
7610         * link\z80\lkeval.c
7611         * link\z80\lkgb.c
7612         * link\z80\lkihx.c
7613         * link\z80\lks19.c
7614         * link\z80\lksym.c
7615         * support\cpp2\cpplib.c
7616         * src\ds390\gen.c
7617         * src\mcs51\gen.c
7618
7619 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
7620
7621         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
7622
7623 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7624
7625         * support\librarian\clean.mk: Do not remove Makefile.
7626         * support\librarian\Makefile: added.
7627
7628 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7629
7630         Added librarian to MSVC build:
7631         * all.dsp
7632         * sdcc.dsw
7633         * support\librarian\librarian.dsp
7634
7635         'configure' not needed for librarian, removed:
7636         * support\librarian\configure
7637         * support\librarian\configure.in
7638         * support\librarian\config_in.h
7639         * support\librarian\Makefile.in
7640
7641         Hopefully these ones built the librarian and the rest of sdcc properly:
7642         * Makefile
7643         * Makefile.common.in
7644
7645         Messed up 'configure', so revert to previous version:
7646         * configure
7647         * configure.in
7648
7649 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
7650
7651         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
7652         there, while the mantissa of a double is "only" 53 bits wide.
7653
7654 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7655
7656         Adding sdcclib to the build.  MSVC project coming soon.
7657         Files added/changed:
7658
7659         * support\librarian\clean.mk
7660         * support\librarian\configure
7661         * support\librarian\configure.in
7662         * support\librarian\config_in.h
7663         * support\librarian\Makefile.bcc
7664         * support\librarian\Makefile.in
7665         * support\librarian\sdcclib.c
7666         * Makefile.bcc
7667         * Makefile
7668         * Makefile.common.in
7669         * configure
7670         * configure.in
7671
7672 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7673
7674         Linker now complaints if linked modules have conflicting options, for
7675         example, one compiled using --model-large and another one compiled with
7676         --model-small.  The following files were modified:
7677
7678         * as\mcs51\asdata.c
7679         * as\mcs51\aslink.h
7680         * as\mcs51\asm.h
7681         * as\mcs51\asmain.c
7682         * as\mcs51\asout.c
7683         * as\mcs51\i51pst.c
7684         * as\mcs51\lkdata.c
7685         * as\mcs51\lklibr.c
7686         * as\mcs51\lkmain.c
7687         * as\z80\asdata.c
7688         * as\z80\asm.h
7689         * as\z80\asmain.c
7690         * as\z80\asout.c
7691         * as\z80\z80pst.c
7692         * link\z80\aslink.h
7693         * link\z80\lkdata.c
7694         * link\z80\lklibr.c
7695         * link\z80\lkmain.c
7696         * src\SDCCglue.c
7697
7698 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7699
7700         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
7701         as/mcs51/lklibr.c: Generate a warning when a library is not found.
7702
7703 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
7704
7705         * src/z80/mappings.i: fix _mul[us][int,long] entries
7706
7707 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7708
7709         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
7710
7711 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7712
7713         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
7714         * support/regression/tests/bitopcse.c: added
7715         fixed warning:
7716         * src/avr/gen.c:
7717         * src/pic/gen.c:
7718         * src/pic16/gen.c:
7719         * src/z80/gen.c:
7720         * src/xa51/gen.c:
7721
7722 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7723
7724         added support for new library format to z80, gbz80 linkers:
7725         *link/z80/aslink.h
7726         *link/z80/lklex.c
7727         *link/z80/lklib.c
7728         *link/z80/lklist.c
7729
7730 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7731
7732         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
7733         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
7734
7735 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
7736
7737         added DUMMY_READ_VOLATILE:
7738         * src/SDCC.y:
7739         * src/avr/gen.c:
7740         * src/xa51/gen.c:
7741         * src/z80/gen.c:
7742         * src/pic/gen.c:
7743         * src/pic16/gen.c:
7744         * src/mcs51/gen.c:
7745         * src/ds390/gen.c:
7746         * src/SDCCcse.c (algebraicOpts): many improvements
7747         * src/SDCCcse.h: removed algebraicOpts()
7748         * src/SDCCicode.c (picDummyRead): added
7749
7750 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7751
7752         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
7753         "Insufficient space in data memory".
7754
7755 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7756
7757         * src/mcs51/gen.c: fixed bug #771358
7758         * src/z80/gen.c: fixed bug #759087
7759
7760 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
7761
7762         * src/pic16/glue.c: minor cleanup by Vangelis
7763
7764 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7765
7766         * device/include/regc515c.h: fixed #758477
7767         * device/lib/_gptrget.c: saving some cycles in generic pointer get
7768         * device/lib/_gptrput.c: saved a few bytes
7769         * my tab spacing is 8, yours too?)
7770         * device/lib/_ser.c: process RX bytes earlier than TX bytes
7771         * device/lib/serial.c: process RX bytes earlier than TX bytes
7772         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
7773
7774 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7775
7776         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
7777
7778 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7779
7780     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
7781
7782 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
7783
7784         * device/lib/Makefile.in: bad fix, reverted to 1.43
7785
7786 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
7787
7788         * device/lib/Makefile.in: added missing z80 object files
7789
7790 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
7791
7792         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
7793         pic16 progress by Vangelis:
7794         * src/SDCCglobl.h:
7795         * src/SDCCmain.c:
7796         * src/pic/Makefile:
7797         * src/pic:
7798         * pic/Makefile:
7799         * pic16/device.c:
7800         * pic16/device.h:
7801         * pic16/gen.c:
7802         * pic16/gen.h:
7803         * pic16/genarith.c:
7804         * pic16/glue.c:
7805         * pic16/main.c:
7806         * pic16/pcode.c:
7807         * pic16/pcode.h:
7808         * pic16/pcodepeep.c:
7809         * pic16/peeph.def:
7810
7811 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7812
7813     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
7814
7815 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7816
7817     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
7818     added gbz80 build to MSVC project.
7819     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
7820     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
7821     from 8051 stuff and setup so it links using a .lnk file.
7822
7823 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7824
7825     * support/librarian/sdcclib.c: sdcc librarian.
7826     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
7827     with sdcclib.
7828
7829 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7830
7831     * as/mcs51/lkmain.c: properly handle extensions in function afile.
7832
7833 2003-07-02  Borut Razem <borut.razem AT siol.net>
7834
7835         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
7836         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
7837         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
7838         src/xa51/main.c, src/z80/main.c:
7839         virtualization of glue() function: each port has it's own glue function,
7840         which is accessed by do_glue function pointer in PORT.general structure
7841
7842 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
7843
7844         * DS800C400 fun, improved ROM interface and tinibios.
7845
7846 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
7847
7848         * More support for DS80C400. Now includes beginning of interface to ROM.
7849
7850 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
7851
7852         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
7853
7854 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7855
7856         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
7857
7858 2003-06-19  Borut Razem <borut.razem AT siol.net>
7859
7860         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
7861
7862 2003-06-19  Borut Razem <borut.razem AT siol.net>
7863
7864         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
7865         fixed Z80 port - crt0.o: cannot open.
7866
7867 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
7868
7869         * support/Util/MySystem.c (merge_command): revert bad fix
7870
7871 2003-06-18  Borut Razem <borut.razem AT siol.net>
7872
7873         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
7874
7875 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7876
7877         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7878         option --use-stdout sends errors to stdout instead of stderr.
7879
7880 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
7881
7882         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
7883
7884 2003-06-15  Borut Razem <borut.razem AT siol.net>
7885
7886         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
7887         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
7888         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
7889         fixed width array of pointers replaced with sets;
7890         multiple include and lib paths ared transferred to preprocessor and linker
7891         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
7892         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
7893         fixed width array of pointers
7894         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
7895         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
7896         fixupPath(), getPathDifference()
7897         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
7898         fixed width array of pointers
7899
7900 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
7901
7902         * src/pic16/ralloc.c: fix warnings
7903         * src/pic16/pcode.c: fix warning
7904
7905 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
7906
7907          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
7908         know all the details, but essentially this set of changes enable
7909         the pic16 port to generate movff instructions and generate assembler
7910         directives,
7911         * src/SDCCmain.c:
7912         * src/pic16/gen.c:
7913         * src/pic16/glue.c:
7914         * src/pic16/pcode.c:
7915         * src/pic16/device.c:
7916         * src/pic16/main.c:
7917         * src/pic16/pcode.h:
7918         * src/pic16/pcoderegs.c:
7919         * src/pic16/ralloc.c:
7920         * src/pic16/ralloc.h:
7921
7922 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7923
7924         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7925         added option --vc, so sdcc errors and warnings are compatible with
7926         Microsoft Visual Studio.
7927
7928 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7929
7930         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
7931           device/lib/libfloat.lib: added atof function.
7932
7933 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
7934
7935         * doc/sdccman.lyx: updated to Lyx 1.3
7936         * doc/cdbfileformat.lyx: updated to Lyx 1.3
7937         * doc/test_suite_spec.lyx: updated to Lyx 1.3
7938         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
7939
7940 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
7941
7942         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
7943
7944 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7945
7946         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
7947           additions to the "related tools/documentation" section
7948
7949 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
7950
7951         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
7952
7953 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
7954
7955         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
7956         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
7957
7958 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
7959
7960         * doc/sdccman.lyx: fix double dash and other minor things
7961         * doc/Makefile: fix double dash
7962
7963 2003-05-28  Karl Bongers(patches from Martin Helmling)
7964         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
7965           condition and ignore commands.
7966
7967 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7968
7969         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
7970           is in parts still quite out of date, I did changes as far as I felt makes sense
7971           for a non-native english speaker.
7972           Please feel free to add to the manual or to correct my changes.
7973         * doc/Makefile: undid touching the date of intermediate tex files.
7974
7975 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7976
7977         * doc/sdccman.lyx: Manual has an index now
7978
7979 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
7980
7981         Finalize muluint/mulsint and mululong/mulslong merging:
7982         * device/lib/_mulint.c
7983         * device/lib/_mullong.c
7984         * device/lib/gbz80/mul.s
7985         * device/lib/gbz80/stubs.s
7986         * device/lib/z80/mul.s
7987         * device/lib/z80/stubs.s
7988         * src/SDCCsymt.c (initCSupport)
7989
7990 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7991
7992         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
7993         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
7994           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
7995           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
7996           instead of /Zm500.
7997
7998 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7999
8000         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
8001           the regression tests I'm not brave enough to enable 245.b, 245.c
8002         * doc/sdccman.lyx: added latex preamble for hyperref package.
8003           Using pdflatex this will give you a hyperlinked pdf file with
8004           bookmarks. (prepend '%' before /usepackage if this breaks something)
8005
8006 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8007
8008          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
8009
8010 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
8011
8012         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
8013
8014 2003-05-21    <johan AT balder>
8015
8016         * src/SDCCglue.c (printIval): fixed bug #739934
8017
8018 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8019
8020         Applied patch from bug 737905 (renamed yylineo to mylineno):
8021         * src/altlex.c
8022         * src/SDCCast.c
8023         * src/SDCglobl.h
8024         * src/SDCC.lex
8025         * src/SDCCsymt.c
8026         * src/SDCCval.c
8027         * src/pic16/pcode.c: Cleaned warnings
8028         * src/pic16/pcodeflow.c: Cleaned warnings
8029         * src/pic16/pcoderegs.c: Cleaned warnings
8030
8031 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
8032
8033         * src/pic16/pcode.c: Cleaned warnings
8034         * src/pic16/pcodepeep.c: Cleaned warnings
8035         * src/pic16/ralloc.c: Cleaned warnings
8036
8037 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8038
8039         * doc/sdccman.lyx: fixed bug 739745
8040         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
8041
8042 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
8043
8044         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
8045         it can be defined with CFLAGS when running configure
8046         * src/SDCCmain.c: fixed compiling + linking with object files
8047
8048 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
8049
8050         * configure.in: configure for pic16 port,
8051             added --disable-pic16-port
8052         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
8053         * src/SDCCmain.c: linkOptions is changed to set *,
8054             added if/endif conditional macros to remove options help
8055             messages from optionsTable when a port is not configured, added
8056             support for the PIc16 port in the ports table, when executing
8057             the compiler with no port specified on command line, a default
8058             port is selected with the new macro DEFAULT_PORT which is
8059             defined in port.h, in setDefaultOptions() linkOptions is removed
8060             from initialization assignment, since now it is a set,
8061             parseCmdLine uses setParseWithComma for linkOptions, in
8062             linkEdit() linkOptions are accessed with new function indexSet()
8063             which returns the i'th item of a set variable. See SDCCset.c, in
8064             linkEdit() when calling buildCmdLine(), added linkOptions as
8065             last argument. Now users can pass arguments to gplink via the
8066             -Wl option, main() uses pic16glue() to glue up pic16 programs
8067         * src/SDCCpeeph.c: various changes to support pic16
8068         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
8069             return the i'th item of the set
8070         * src/SDCCset.h: added function prototype for indexSet()
8071         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
8072         * src/clean.mk: added pic16 in CLEANALLPORTS variable
8073         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
8074             added macro DEFAULT_PORT
8075         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
8076         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
8077             generated
8078         * src/pic16/glue.c: commented out some error producing lines
8079         * src/pic16/main.c: __config directives are commented out to stop
8080             gpasm complaining and test the linkage with gplink, _linkCmd and
8081             _asmCmd changed to be more gplink and gpasm friendly
8082         * src/pic16/peeph.def: peep rule 3 is commented out, since it
8083             produced an error when parsed, peep rule 12 is added to utilize
8084             movff, but it is commented out since the pCode does not support
8085             yet a command with 2 address arguments
8086
8087 2003-05-18    <johan AT balder>
8088
8089         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8090         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8091 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
8092
8093         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
8094   Added feature to script commands from file.
8095
8096 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
8097
8098         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
8099         * src/SDCCutil.c: include ctype.h for win32
8100
8101 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
8102
8103         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
8104
8105 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
8106
8107         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
8108   Fixed so you can set breakpoints prior to run, run does not stop
8109   on entry now.  Add tbreak.  Other enhancements and fixes for use
8110   with ddd.
8111
8112 2003-05-12  Borut Razem <borut.razem AT siol.net>
8113
8114         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
8115
8116 2003-05-11  Borut Razem <borut.razem AT siol.net>
8117
8118         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
8119         the path of bin directory, so that PATH is the only env. variable, which has to be set
8120         in case of standard installation.
8121         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
8122         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
8123         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
8124
8125 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8126
8127         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
8128         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
8129         temp files are in the port dir; clean the gen/test directory when
8130         generating new test.c
8131         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
8132         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
8133         * support/regression/tests/zeropad.c: added
8134
8135 2003-05-09    <johan AT balder>
8136
8137         * src/SDCCglue.c: fixed bug #597940
8138
8139 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
8140
8141         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8142   cache sfr, optimize next,step, fix off by one sourceline,
8143   support ddd list function.
8144         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
8145
8146 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8147
8148         * support/regression/HTMLgen.py: added compare_s2f()
8149         * support/regression/Makefile: redo 1.27
8150         * support/regression/generate-cases.py: redo 1.5
8151
8152 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
8153
8154         * support/regression/tests/float.c: workaround 33 bit hex constant
8155         * support/regression/tests/simplefloat.c: fix division for host
8156
8157 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
8158
8159         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
8160         that tame's the PIC's over-aggressive optimizer.
8161
8162 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8163
8164          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
8165          support for MSVC.
8166
8167 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
8168
8169         Initial support for DS80C400. "Hello world" runs on TINIm400
8170         (with polled I/O).
8171
8172 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
8173
8174          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8175          * Some notes on ddd usage added in debugger/README
8176          Martin Helmling adding more features and fixes for ddd GUI debugger.
8177          Code added for nexti, stepi, up, down, and other adjustments.
8178
8179 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
8180
8181         * src/pic/pCodepeep.c non-wildcard asmops are now handled
8182         * src/pic/peeph.def Added two rules to optimize carry manipulation
8183         * src/pic/* removed debug printfs
8184
8185 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
8186
8187         * debugger/mcs51/cmd.c: added header newalloc.h
8188
8189 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
8190
8191         * as/Makefile: new EXEEXT
8192         * as/z80/Makefile: remove trailing slash of BUILDIR
8193         * as/z80/clean.mk: new EXEEXT
8194         * Makefile.common.in: add to CFLAGS (and others), don't replace it
8195         * support/cpp2/Makefile.in: new EXEEXT
8196         * src/pic/glue.c (pic14emitRegularMap): fixed warning
8197
8198 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
8199
8200         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
8201         EXEEXT was introduced to fix all related problems with targets
8202         "clean", "install" and "uninstall"; a couple of further flaws
8203         especially with "clean" have been fixed too
8204         * as/mcs51/Makefile.in
8205         * as/mcs51/clean.mk
8206         * as/z80/Makefile
8207         * Makefile
8208         * clean.mk
8209         * debugger/mcs51/Makefile.in
8210         * debugger/mcs51/clean.mk
8211         * link/z80/Makefile
8212         * link/z80/Makefile.in
8213         * link/z80/clean.mk
8214         * link/Makefile
8215         * packihx/Makefile.in
8216         * packihx/clean.mk
8217         * sim/ucsim/Makefile
8218         * sim/ucsim/clean.mk
8219         * sim/ucsim/avr.src/Makefile.in
8220         * sim/ucsim/avr.src/clean.mk
8221         * sim/ucsim/s51.src/Makefile.in
8222         * sim/ucsim/s51.src/clean.mk
8223         * sim/ucsim/xa.src/Makefile.in
8224         * sim/ucsim/xa.src/clean.mk
8225         * sim/ucsim/z80.src/Makefile.in
8226         * sim/ucsim/z80.src/clean.mk
8227         * sim/ucsim/main_in.mk
8228         * sim/ucsim/packages_in.mk
8229         * sim/ucsim/gui.src/Makefile.in
8230         * sim/ucsim/gui.src/serio.src/Makefile.in
8231         * sim/ucsim/gui.src/serio.src/clean.mk
8232         * src/Makefile.in
8233         * src/clean.mk
8234         * support/cpp2/Makefile.in
8235         * support/cpp2/clean.mk
8236         * support/makebin/Makefile
8237         * support/makebin/clean.mk
8238         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
8239         * doc/sdccman.lyx: --program-suffix no longer needed
8240
8241 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
8242
8243          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
8244          Martin Helmling added support for ddd GUI debugger.
8245          Code added to display assembly, set variables, and other commands
8246          to interface to ddd.
8247
8248 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
8249
8250         * as/Makefile: fix target clean
8251         * as/clean.mk: fix target clean
8252         * as/z80/clean.mk: fix target clean
8253
8254 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
8255
8256         * Makefile.common.in: added  AT EXEEXT AT
8257         * configure.in: removed all mingw32 stuff
8258         * configure: rebuilt from configure.in
8259         * doc/sdccman.lyx: updated section "installation"
8260         * support/scripts/sdcc_mingw32: adapted to configure
8261         * support/scripts/sdcc_cygwin_mingw32: added
8262
8263 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
8264
8265         * src/pic Added object file support for the PIC port
8266         * src/pic Applied patch from Craig Franklin (this started the object file support)
8267         * src/regression Updated the PIC regression tests for object files
8268
8269 2003-04-20  Borut Razem <borut.razem AT siol.net>
8270
8271         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
8272           lklex.c: In function `getfid':
8273           lklex.c:203: warning: array subscript has type `char'
8274         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
8275           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
8276         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
8277           stack handling macros
8278
8279 2003-04-19  Borut Razem <borut.razem AT siol.net>
8280
8281         * "handling space characters in file path" task:
8282         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
8283         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
8284         * support/Util/MySystem.h: make it self-sufficient
8285         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
8286           src/z80/main.c, sdcc/as/mcs51/lklex.c:
8287           handling space characters in file path
8288         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
8289           (it will be used by assemblers, which have their own includes, e.g. gpasm)
8290         * support/Util/MySystem.c: handling space characters in executable's path
8291
8292 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
8293
8294         * as/z80/Makefile: fix permanent rebuild of z80
8295         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
8296         * support/regression/tests/bitfields.c: added Johan's bitfields.c
8297
8298 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
8299
8300         * src/SDCCopt.c: add special case optimization to replace modulo by
8301           a power of two with a bitwise AND.
8302
8303 2003-04-18    <johan AT balder>
8304
8305         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
8306
8307 2003-04-17    <johan AT balder>
8308
8309         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
8310         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
8311
8312 2003-04-13  Borut Razem <borut.razem AT siol.net>
8313
8314         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
8315         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
8316           fixed mingw problem in adl_NORMALIZE_PATH
8317
8318 2003-04-12  Borut Razem <borut.razem AT siol.net>
8319
8320         * fixed "#pragma SAVE/RESTORE can not be nested":
8321         * src/SDCC.lex: reworked pragma handling functions
8322         * sdcc/src/SDCCglobl.h: reworked stack handling macros
8323         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
8324
8325 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8326
8327         * src/SDCCutil.c (pathEquivalent): defined but not used
8328         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
8329         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
8330         * configure: rebuilt from configure.in
8331         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8332         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8333         * device/include/Makefile.in: replace sdcc_datadir
8334         * device/lib/Makefile.in: replace sdcc_datadir
8335         * Makefile.common.in: add LDFLAGS from configure
8336         * packihx/Makefile.in: use LDFLAGS
8337         * src/Makefile.in: use LDFLAGS
8338         * support/cpp2/Makefile.in: add LDFLAGS from configure
8339         * support/makebin/Makefile: use LDFLAGS
8340         * .version: bumped version number to 2.3.5
8341
8342 2003-04-12  Borut Razem <borut.razem AT siol.net>
8343
8344         * completed "different paths" task:
8345         * src/SDCCmacro.c: fixed bug in handling quotes
8346         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
8347         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
8348
8349 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8350
8351         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
8352
8353 2003-04-11 kevin Vigor <kevin AT vigor.nu>
8354
8355         * ds390/gen.c ds390/peeph.def: fix bug 706781
8356
8357 2003-04-11  Borut Razem <borut.razem AT siol.net>
8358
8359         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
8360
8361 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
8362
8363         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
8364         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
8365          set - this bit used to not be set...).
8366         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
8367           bad code in PIC Port
8368         * src/regression/and2.c added to test bug 609268
8369         * src/regression/Makefile added and2.c to regression test
8370
8371
8372 2003-04-08    <johan AT CP255758-A>
8373
8374         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
8375         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
8376         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
8377
8378 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
8379
8380         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
8381         fix bug #487815
8382         * support/cpp2/Makefile.in: fix bug #487815
8383         * configure: rebuilt from configure.in
8384         * Makefile.common.in: docdir changed, new path suffixes
8385         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8386         * sdcc_vc_in.h: reflect changes from sdccconf.h
8387         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
8388         * src/SDCCutil.h: remove BINDIR hack
8389         * doc/sdccman.lyx: update new path hierarchy
8390
8391 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8392
8393         * src/SDCCpeeph.c: added okToRemoveSLOC test
8394
8395 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8396
8397         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
8398
8399 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8400
8401         * src/SDCCpeeph.c: added labelIsReturnOnly test
8402         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
8403
8404 2003-04-05    <johan AT balder>
8405
8406         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
8407         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
8408         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
8409         * src/SDCCast.c: fixed a warning
8410         * src/SDCCast.h: fixed a warning
8411         * src/SDCCicode.c (operandFromAst): fixed a warning
8412
8413 2003-04-04    <johan AT balder>
8414
8415         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
8416         * src/SDCCast.c (decorateType): fixed bug #715076
8417         * src/SDCC.y: fixed bug #702907
8418
8419 2003-04-03    <johan AT balder>
8420
8421         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
8422         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
8423         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
8424         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
8425         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
8426
8427 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
8428
8429         * _decdptr.c: fix return values
8430         * _gptrget.c: fix return values
8431         * _gptrgetc.c: fix return values
8432         * _gptrput.c: fix return values
8433         * _mulint.c: fix return values
8434         * as/z80/Makefile: fix 'make -j' problem
8435
8436 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
8437
8438         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
8439         * configure.in: big cleanup, updated to autoconf 2.5x
8440         * configure: rebuilt from configure.in
8441         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8442         * sdcc_vc_in.h: reflect changes from sdccconf.h
8443         * doc/Makefile: fixed a flaw in "make install"
8444
8445 2003-04-02    <johan AT balder>
8446
8447         * src/ds390/gen.c (genCmp): no comments
8448         * src/mcs51/gen.c (genCmp): no comments
8449         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
8450         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
8451
8452 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
8453
8454         * support/regression/generate-cases.py: place generated file in given sub directory
8455         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
8456         * support/regression/Makefile: improvements for 'make -j';
8457         side effect: it's simpler and faster now
8458
8459 2003-03-31  Borut Razem <borut.razem AT siol.net>
8460
8461         * src/z80/main.c: link-{port} and as-{port} defined without path
8462         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
8463
8464 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
8465
8466         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
8467
8468 2003-03-30  Borut Razem <borut.razem AT siol.net>
8469
8470         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
8471           changed type of list parameter to set
8472         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
8473         * src/port.h: changed type of do_assemble() parameter to set
8474         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
8475           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
8476           definition of "cppoutfilename" macro with NULL value in preProcess()
8477         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
8478         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
8479         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
8480           replaced with set *binPathSet
8481         * shash_add() deallocates the item, if allready exsists, before adding the new one
8482         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
8483
8484 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
8485
8486         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
8487           a nested for loop bug in the PIC port
8488         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
8489           for loops
8490
8491 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
8492
8493         * support/Util/dbuf.h: remove C++ stuff to make it portable
8494
8495 2003-03-28  Borut Razem <borut.razem AT siol.net>
8496
8497         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
8498           literal strings in stringLiteral()
8499         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
8500         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
8501           to the project
8502
8503 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
8504
8505         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
8506
8507 2003-03-26    <johan AT balder>
8508
8509         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
8510         * src/ds390/gen.c (saveRegisters): catched symbol abuse
8511         * src/SDCCast.c (decorateType): fixed " -v < 3"
8512
8513 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
8514
8515         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
8516         Added Lenny Story's debug infrastructure changes:
8517         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
8518         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
8519         * src/cdbFile.c: added
8520         * src/SDCCdebug.c: added
8521         * src/SDCCdebug.h: added
8522         * src/SDCCast.c (createFunction)
8523         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
8524         * src/SDCCmain.c (parseCmdLine, main)
8525         * src/SDCCmem.c (redoStackOffsets)
8526         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
8527         * src/SDCCsymt.h
8528         * src/common.h
8529         * src/avr/gen.c (genAVRCode)
8530         * src/ds390/gen.c (gen390Code)
8531         * src/mcs51/gen.c (gen51Code)
8532         * src/pic/gen.c (genpic14Code)
8533         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
8534         * src/xa51/gen.c (genXA51Code)
8535         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
8536
8537 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8538
8539         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
8540         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
8541
8542 2003-03-22    <johan AT balder>
8543
8544         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
8545
8546 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
8547
8548         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
8549         * doc/cdbfileformat.lyx: added, written by Lenny Story
8550         * doc/Makefile: added cdbfileformat.lyx
8551         * doc/clean.mk: added cdbfileformat.lyx
8552
8553 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
8554
8555         * src/mcs51/peeph.def: fix bug #705773
8556
8557 2003-03-20    <johan AT balder>
8558
8559         An sfr/sbit can have an "at #" AND an initializer
8560         * src/SDCCsymt.c (checkSClass):
8561         * src/SDCCmem.c (allocGlobal):
8562         * src/SDCCmem.c (allocLocal):
8563         * src/SDCCast.c (createBlock):
8564
8565 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
8566
8567         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
8568
8569 2003-03-16    <johan AT balder>
8570
8571         Undid the hackup of const and volatile, the problem is much bigger
8572         * src/SDCC.y:1.65
8573         * src/SDCCast.c:1.171
8574         * src/SDCCglue.c:1.138
8575         * src/SDCCicode.c:1.146
8576         * src/SDCCsymt.c:1.150
8577         * src/SDCCval.c:1.65
8578
8579 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
8580
8581         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
8582         * src/ds390/gen.c (genAddrOf): fixed bug #704087
8583
8584 2003-03-13    <johan AT balder>
8585
8586         Hackup const and volatile modifiers in type chains a bit:
8587         * src/SDCC.y:1.63
8588         * src/SDCCast.c:1.169
8589         * src/SDCCglue.c:1.136
8590         * src/SDCCicode.c:1.143
8591         * src/SDCCsymt.c1.146
8592         * src/SDCCsymt.h1.59
8593         * src/SDCCval.c:1.63
8594
8595 2003-03-12    <johan AT balder>
8596
8597         * src/SDCCBBlock.h: more LRH debugging junk
8598         * src/SDCCcflow.h: more LRH debugging junk
8599         * src/SDCCloop.c: more LRH debugging junk
8600         * src/SDCC.y (struct_declaration): fixed bug #697590
8601         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
8602         * src/ds390/gen.c (aopForRemat): fixed bug #700031
8603         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
8604
8605 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8606         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
8607         test function names must now match exactly).
8608         * src/SDCCcse.c: added special case in findCheaperOp to allow
8609         extending a short integer. Makes less awful code for bug 700121 test case.
8610
8611 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8612
8613         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
8614         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
8615
8616 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8617
8618         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
8619         actually called (operandsNotEqual() was called for all
8620         operandsNotEqualX tests).
8621
8622 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8623
8624         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
8625         with shorter literals. Fixes bug 700121.
8626
8627 2003-03-11    <johan AT balder>
8628
8629         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
8630
8631 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
8632
8633         * src/SDCCloop.c (mergeRegions): an evil beast is dead
8634         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
8635
8636 2003-03-10  Borut Razem <borut.razem AT siol.net>
8637
8638         * src/SDCCmain.c: pipe preprocessor's output
8639         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8640         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8641         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8642         which closes all pipes in pipeSet set
8643         * src/SDCCset.c: free deleted item in function deleteSetItem()
8644         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8645         moved from z80 to src subproject
8646         * .version: increased version number to 2.3.4
8647
8648 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
8649
8650         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
8651         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
8652         * support/regression/ports/xa51/spec.mk: fix typo
8653
8654 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
8655
8656         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
8657
8658 2003-03-09  Borut Razem <borut.razem AT siol.net>
8659
8660         * src/SDCCmain.c: pipe preprocessor's output
8661         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8662         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8663         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8664         which closes all pipes in pipeSet set
8665         * src/SDCCset.c: free deleted item in function deleteSetItem()
8666         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8667         moved from z80 to src subproject
8668
8669 2003-03-09  Borut Razem <borut.razem AT siol.net>
8670
8671         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
8672         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
8673         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
8674         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
8675         * src/SDCCglobl.h: unification of WIN32 native definitions
8676
8677 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8678
8679         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
8680
8681 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8682
8683         * src/configure.in:   check for endianess (even while cross-compiling)
8684         * src/configure:      check for endianess (even while cross-compiling)
8685         * src/configure_in.h: check for endianess (even while cross-compiling)
8686         * src/avr/gen.c:        remove old endianess stuff
8687         * src/mcs51/gen.c:      remove old endianess stuff
8688         * src/ds390/gen.c:      remove old endianess stuff
8689         * src/pic/gen.c:        remove old endianess stuff
8690         * src/pic/genarith.c:   remove old endianess stuff
8691         * src/pic/glue.c:       fix endianess check
8692         * src/pic16/gen.c:      remove old endianess stuff
8693         * src/pic16/genarith.c: remove old endianess stuff
8694         * src/pic16/glue.c:     fix endianess check
8695         * src/xa51/gen.c:       remove old endianess stuff
8696         * src/z80/gen.c:        fix endianess check
8697         * src/SDCCglue.c:       fix endianess check
8698         * src/ds390/peeph.def: fix bug 700036
8699
8700 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8701
8702         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
8703         * src/configure: find appropriate data-types on host for SDCC's int and long
8704         * src/configure.in: find appropriate data-types on host for SDCC's int and long
8705         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
8706         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
8707
8708 2003-03-07    <johan AT balder>
8709
8710         Just a big NOOP:
8711                 some minor cleanups before the big shot
8712                 OP_DEFS and OP_USES now use Kevin's protection
8713                 new option --nolabelopt
8714
8715         * src/SDCCBBlock.c:
8716         * src/SDCCast.c,:
8717         * src/SDCCcflow.c:
8718         * src/SDCCcse.c:
8719         * src/SDCCicode.c:
8720         * src/SDCCicode.h:
8721         * src/SDCClabel.c:
8722         * src/SDCCloop.c:
8723         * src/SDCCmain.c:
8724         * src/ds390/ralloc.c:
8725         * src/mcs51/ralloc.c:
8726         * src/pic/ralloc.c:
8727         * src/xa51/ralloc.c:
8728         * src/z80/ralloc.c:
8729
8730 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
8731
8732         * src/pic/pcode.c (get_op): fix 64 bit warnings
8733         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
8734         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
8735         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
8736         * support/regression/tests/malloc.c: fix 64 bit warnings
8737
8738 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
8739
8740         * src/mcs51/gen.c (genMinus): fixed bug 696436
8741
8742 2003-03-02  Borut Razem <borut.razem AT siol.net>
8743
8744         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
8745
8746 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
8747
8748         * configure.in: test for mkstemp
8749         * sdccconf_in.h: add HAVE_MKSTEMP
8750
8751 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
8752
8753         * device/include/ctype.h: removed warning while using --stack-auto
8754         * device/include/malloc.h: removed warning while using --stack-auto
8755         * device/include/string.h: removed warning while using --stack-auto
8756
8757 2003-02-23  Borut Razem <borut.razem AT siol.net>
8758
8759         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
8760         because NDEBUG is defined (see man assert)
8761         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
8762
8763 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8764
8765         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
8766         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
8767
8768 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8769
8770         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
8771         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
8772
8773 2003-02-18    <johan AT balder>
8774
8775         * as/mcs51/asmain.c (asmbl): module can start with a digit
8776         * as/z80/asmain.c (asmbl): module can start with a digit
8777
8778 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
8779
8780         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
8781         * src/asm.c: fix pipe() for Mingw32
8782
8783 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
8784
8785         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
8786         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
8787         make -V work again; --c1mode reads now from stdin
8788         * doc/sdccman.lyx: added --c1mode
8789         * support/Util/SDCCerr.c: new messages for c1 mode
8790         * support/Util/SDCCerr.h: new messages for c1 mode
8791         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
8792
8793 2003-02-15    <johan AT balder>
8794
8795         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
8796
8797 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
8798
8799         * doc/sdccman.lyx: Environment variables, -o and other minor things
8800
8801 2003-02-14    <johan AT balder>
8802
8803         * src/xa51/main.c: before anyone really tries to use it :)
8804
8805         * Install doc's in share/sdcc/doc
8806         * removed some obsolete files
8807         * Do a proper make distclean and uninstall
8808         M Makefile.common.in
8809         R sdccbuild.sh
8810         M as/Makefile
8811         M device/include/Makefile.in
8812         M device/lib/Makefile.in
8813         M doc/sdccman.lyx
8814         M link/Makefile
8815         M sim/ucsim/doc/Makefile.in
8816         M src/clean.mk
8817         R src/avr/peeph.rul
8818         R src/xa51/peeph.rul
8819         M support/cpp2/Makefile.in
8820         M support/makebin/Makefile
8821
8822
8823 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
8824
8825         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
8826
8827 2003-02-10  Borut Razem <borut.razem AT siol.net>
8828
8829         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
8830         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
8831         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
8832         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
8833         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
8834         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
8835         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
8836         src/z80/Makefile.bcc: Borland Makefile cleanup
8837         * as/z80/Makefile.bcc: Added Borland Makefile
8838         * support/cpp2/borland.h: Removed
8839
8840 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
8841
8842         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
8843         * src/SDCC.lex: new pragma NOIV
8844         * src/SDCCglobl.h: new pragma NOIV
8845         * src/SDCCmem.c: new pragma NOIV
8846
8847 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8848
8849         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
8850
8851 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8852
8853         * src/SDCCmain.c: signal handling is switched off by --debug
8854         * doc/Makefile: small fix for install; use clean.mk again
8855         * doc/clean.mk: clean *.pdf and *.html too
8856
8857 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
8858
8859         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
8860         * device/lib/printfl.c: fix a ds390 bug by making it portable
8861         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
8862         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
8863         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
8864         * debugger/mcs51/cmd.c: converted multi-line string literals
8865         * sim/ucsim/globals.cc: converted multi-line string literals
8866         * src/SDCCmain.c: introduced signal handler to remove temp files
8867         * doc/Makefile: small tweaks, implement clean
8868         * doc: removed generated files
8869
8870 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8871
8872         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
8873         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
8874         Address Record is not correctly generated for DS390."
8875
8876 2003-02-02  Borut Razem <borut.razem AT siol.net>
8877
8878         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
8879         * as/mcs51/asm.h: fixed compilation with Borland C
8880         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
8881         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
8882         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
8883         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
8884         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
8885         src/z80/Makefile.bcc: delete $(LIB) only if exist
8886         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
8887
8888 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
8889
8890         * device/include/malloc.h: introduced NULL
8891         * device/include/string.h: introduced NULL
8892         * device/include/stdlib.h: introduced NULL
8893         * device/lib/_memcpy.c: removed NULL
8894         * device/lib/_strcat.c: removed NULL
8895         * device/lib/_strchr.c: removed NULL
8896         * device/lib/_strcmp.c: removed NULL
8897         * device/lib/_strcpy.c: removed NULL
8898         * device/lib/_strcspn.c: removed NULL
8899         * device/lib/_strlen.c: removed NULL
8900         * device/lib/_strncat.c: removed NULL
8901         * device/lib/_strncmp.c: removed NULL
8902         * device/lib/_strncpy.c: removed NULL
8903         * device/lib/_strpbrk.c: removed NULL
8904         * device/lib/_strrchr.c: removed NULL
8905         * device/lib/_strspn.c: removed NULL
8906         * device/lib/_strstr.c: removed NULL
8907         * device/lib/_strtok.c: removed NULL
8908         * device/lib/malloc.c: removed NULL, include own header
8909
8910 2003-02-02    <johan AT balder>
8911
8912         * src/mcs51/ralloc.c (packForPush): fixed bug #631653, maybe other ports need this too? At least now some new alerts in SDCCBBlock.c and SDCCicode.c gives an early warning
8913         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
8914         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
8915         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
8916         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
8917         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
8918
8919 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8920
8921         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
8922         area 'DATA'"
8923
8924 2003-02-01    <johan AT balder>
8925
8926         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
8927
8928 2003-01-31    <johan AT CP255758-A>
8929
8930         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
8931
8932 2003-01-30    <johan AT balder>
8933
8934         * src/SDCCBBlock.c: automatic bug detection
8935         * src/SDCCicode.c: automatic bug detection
8936
8937 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8938
8939         * src/SDCCglobl.h:   now --xram-size 0 works
8940         * src/SDCCmain.c:    now --xram-size 0 works
8941
8942 2003-01-29    <johan AT balder>
8943
8944         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
8945
8946 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8947
8948         * as/mcs51/aslink.h: Added options --xram-size and --code-size
8949         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
8950         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
8951         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
8952         * src/SDCCglobl.h:   Added options --xram-size and --code-size
8953         * src/SDCCmain.c:    Added options --xram-size and --code-size
8954
8955 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
8956
8957         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
8958         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
8959
8960 2003-01-27    <johan AT balder>
8961
8962         * src/SDCC.y: fixed bug #613764
8963
8964 2003-01-26    <johan AT balder>
8965
8966         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
8967         * src/SDCCsymt.h: fixed bug #673374
8968         * src/SDCCglue.c: fixed bug #661910
8969         * src/SDCCast.c: fixed bug #458099 and 673374
8970
8971 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
8972
8973         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
8974         * as/mcs51/strcmpi.h: added
8975         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
8976         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
8977         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
8978         * as/mcs51/assym.c: strcmpi -> as_strcmpi
8979         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
8980         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
8981         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
8982         * as/mcs51/Makefile.aslink: new module strcmpi
8983         * as/mcs51/Makefile.asx8051: new module strcmpi
8984         * as/mcs51/Makefil.bcc: new module strcmpi
8985         * as/mcs51/Makefile.in: new module strcmpi
8986         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
8987
8988 2003-01-26    <johan AT balder>
8989
8990         * src/SDCCglue.c: reverted back to 1.124
8991         * src/SDCCast.c: reverted back to 1.156
8992         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
8993
8994 2003-01-25    <johan AT balder>
8995
8996         * src/SDCCglue.c: A better fix for bug #661910
8997         * src/SDCCast.c: A better fix for bug #661910
8998         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
8999
9000 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9001
9002         * src/Makefile.in: remove spawn.o
9003         * src/SDCCmain.c: remove spawn.h
9004         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
9005         * src/spawn.c: removed
9006         * src/spawn.h: removed
9007         * support/regression/ports/ds390/spec.mk: link with -r
9008
9009 2003-01-24    <johan AT CP255758-A>
9010
9011         * src/ds390/gen.c (aopOp): fixed bug #667458
9012         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
9013         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
9014         (createIvalCharPtr): an ival doesn't always have a storage class anymore
9015
9016 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9017
9018         * src/mcs51/peeph.def: better assembler identation by Frieder
9019         * src/mcs51/gen.c: better assembler identation by Frieder
9020
9021 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
9022
9023         * as/z80/string.h: removed for gcc 3.2
9024         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
9025         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
9026
9027 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9028
9029         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
9030         * src/SDCCpeeph.c (replaceRule): fix bug #663503
9031         * support/regression/Makefile: separate temp files for ports
9032         * support/regression/generate-cases.py: separate temp files for ports
9033         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9034         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9035
9036 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9037
9038         * moved tinitalk to device/examples/ds390
9039
9040 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
9041
9042         * as/mcs51/lkmem.c: rflag is for DS390
9043         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
9044         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
9045                          (linkEdit): move mem- and map-files the same way as ihx-files
9046         * src/z80/main.c (_setDefaultOptions): removed --generic
9047         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
9048         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
9049         * src/pic/glue.c (picglue): --c1mode works again
9050         * src/pic16/glue.c (pic16glue): --c1mode works again
9051         * src/asm.c (printCLine): fix #660034
9052
9053 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
9054
9055         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
9056         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
9057         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
9058         * as/mcs51/lkmem (summary): better fix for sp problem
9059         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
9060         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
9061         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
9062                                               remove --stack-after-data
9063
9064 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
9065
9066         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
9067         * src/SDCCutil.c (join): ugly bug: missing '\0'
9068         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
9069
9070 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9071
9072         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
9073         * src/port.h: typo
9074         * src/pic/main.c (_asmCmd): gpasm supports -o
9075         * src/z80/main.c: more general macros
9076         * device/lib/Makefile.in: remove intermediate files
9077
9078 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9079
9080         * .version: Bumped version number to 2.3.3
9081         * src/SDCCBBlock.c: new option -o
9082         * src/SDCCglobl.h: new option -o
9083         * src/SDCCglue.c: new option -o
9084         * src/SDCCmain.c: new option -o
9085         * src/asm.c: new option -o
9086         * src/ds390/main.c: new option -o
9087         * src/pic/glue.c: new option -o
9088         * src/pic/pcode.c: new option -o
9089         * src/pic/ralloc.c: new option -o
9090         * src/pic16/glue.c: new option -o
9091         * src/pic16/pcode.c: new option -o
9092         * src/pic16/ralloc.c: new option -o
9093         * src/z80/main.c: new option -o
9094         * device/lib/Makefile.in: use -o
9095         * support/regression/ports/ds390/spec.mk: use -o
9096         * support/regression/ports/gbz80/spec.mk: use -o
9097         * support/regression/ports/mcs51/spec.mk: use -o
9098         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
9099         * support/regression/ports/z80/spec.mk: use -o
9100         * support/regression/ports/ucz80/spec.mk: use -o
9101         * support/regression/ports/xa51/spec.mk: use -o
9102         * support/regression/fwk/lib/timeout.c: fix usage string
9103
9104 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
9105         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
9106
9107 2003-01-07    <johan AT balder>
9108
9109         * src/SDCCast.c (decorateType): fixed bug #600035
9110
9111 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
9112         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
9113         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
9114         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
9115         * src/pic/pcode.c: outcommented unused variable to remove warnings
9116         * src/pic/ralloc.c: outcommented unused variable to remove warnings
9117
9118 2003-01-06    <karl AT turbobit.com>
9119         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
9120    regression tests.
9121
9122 2003-01-06    <johan AT balder>
9123
9124         * src/SDCCicode.c: fixed array add
9125
9126 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
9127         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
9128         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
9129
9130 2003-01-04    <johan AT balder>
9131
9132         * src/SDCCval.c (getNelements): fixed the initialized array of structures
9133
9134 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9135         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
9136
9137 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9138         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
9139         * support/regression/tests/bug-524697.c: fit mem usage into 8032
9140
9141 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9142         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
9143
9144 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
9145         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
9146
9147 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
9148         * src/mcs51/main.c: removed {bindir}{sep} from aslink
9149
9150 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9151
9152     * in \sdcc\as\mcs51\ changed these files in order to create an
9153     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
9154     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
9155     following files to include the previous two files: aslink.dsp,
9156     Makefile.aslink, Makefile.bcc, and Makefile.in.
9157
9158     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
9159     .adb instead of .cdb
9160
9161 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9162
9163         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
9164         value from option --iram-size.
9165
9166 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9167
9168         * \sdcc\as\mcs51\lklist.c: added boundary check before using
9169         dram[] array.
9170
9171 2002-09-18    <wiml AT hhhh.org>
9172
9173         * SDCClrange.h: exposed setFromRange() and setToRange()
9174         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
9175           packRegsForAccUse() (bug 542397)
9176         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
9177           multiple times and emitting the fetch operations more than once
9178           added aopGetUsesAcc() function to allow binary operators to
9179           fetch their operands in the correct order; made genMinus() emit
9180           compact code for X = LITERAL - Y
9181
9182 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9183         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
9184         sprintf() in line 1267.
9185
9186 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9187         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
9188         like ports.
9189
9190 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9191         Changes to aslink (All the changes are marked with 'JCF'):
9192
9193         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
9194         summary().
9195
9196         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
9197         area BSEG.  Also moves, if possible, the DATA area down into the internal
9198         ram so more space is available.
9199
9200         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
9201         sflag.
9202
9203         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
9204         not bytes.  Function summary() which creates a memory usage summary
9205         file with extension .mem.  Reports of overlaping stack and small stack
9206         size.  If the space for the stack is less than 16 bytes aslink trows a
9207         warning.
9208
9209         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
9210         the 8051.  Option 'y' for memory summary output file.
9211
9212         Changes to sdcc (All the changes are marked with 'JCF'):
9213
9214         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
9215
9216         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
9217         overlaying area for it (uses RegBankUsed[4]).
9218
9219         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
9220         bank zero as used by default.  By default aslink locates the stack
9221         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
9222         the creation of the .mem file.  Delegates the allocation of data area
9223         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
9224         the begining of the stack area to aslink.
9225
9226         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
9227         glue() in SDCCglue.c creates an area for it.
9228
9229 2002-09-03  Borut Razem <borut.razem AT siol.net>
9230         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
9231         sdcc/src/pic/glue.c:
9232         introduced atexit() handler for teporay files removal in case of
9233         errors, assertions, ...
9234
9235 2002-08-29  Borut Razem <borut.razem AT siol.net>
9236         * sdcc/support/cpp2/auto-host_vc_in.h:
9237         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
9238         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
9239         Maybe there is a similar problem with BORLANDC? It should be checked!
9240
9241         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
9242         corrected improper use of assert: the assignment to clr variable was done inside the assert.
9243         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
9244         was not executed, and the compiler (cl) launched a warning:
9245         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
9246
9247 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
9248         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
9249
9250 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
9251         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
9252
9253         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9254           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
9255           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
9256           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9257           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
9258           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
9259           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
9260         - added Release configuration in VS projects
9261         - review of compiler an linker options
9262         - VC .exe files are generated in bin_vc directory, not to interfere
9263           with binaries generated from other projects (cygwin, mingw, bcc ...)
9264
9265         * sdcc/src/yacc.dsp: added
9266
9267         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
9268         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
9269         and insert the version number definitions from .version
9270
9271         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
9272
9273         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
9274         added - genarate auto-host.h using auto-host_vc_in.h as template
9275
9276         * sdcc/sdcc_vc.h,
9277         removed from CVS, generated automatically
9278
9279 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
9280         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
9281
9282 2002-08-11  Borut Razem <borut.razem AT siol.net>
9283         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
9284
9285 2002-08-10  Borut Razem <borut.razem AT siol.net>
9286         * src/SDCCmain.c (main):
9287         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
9288         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
9289         The consequence was that some temporary files were not removed.
9290
9291         * src/SDCCglue.c:
9292         unification of code in functions tempfilename() and tempfile():
9293         function tempnam() is defined in Visual Studio 6.0 and .NET
9294
9295         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
9296
9297         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9298           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
9299         - removed compiler command line option /WX: Treats all warnings as errors
9300         - update a list of source files, included into the project
9301
9302         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9303           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
9304         changed project type to Generic Project so that can be correcly converted to VS.NET project
9305
9306         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
9307
9308         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
9309
9310         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
9311
9312         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
9313         added return 0 statements after assert() to make compiler happy
9314
9315         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
9316         added newline in the def file to keep MSC compiler satisfied
9317
9318         * sdcc/src/z80/gen.c:
9319         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
9320           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
9321         - solved MSC error in function aopDump()
9322
9323         * sdcc_vc.h: define PREFIX as "\\sdcc"
9324
9325 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
9326         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
9327
9328 2002-06-22  Scott Dattalo <scott AT dattalo.com>
9329         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
9330         - Rewrote the register banking algorithm.
9331         - Added pCode live-range analysis to registers (for now, only non-used and
9332         singly-used registers optimized away)
9333
9334         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
9335
9336         * support/scripts/inc2h.pl Kevin L. Pauba <klpauba AT cox.net> submitted this perl script for converting MicroChip include files into SDCC Pic include files.
9337
9338 2002-05-10  Scott Dattalo <scott AT dattalo.com>
9339         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
9340
9341 2002-04-22  Michael Hope  <michaelh AT vroom>
9342
9343         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
9344
9345         * configure.in (DD_COPT): Added include support required for gbdk.
9346
9347         * .version: Bumped version number just to increase it.
9348
9349         * src/SDCCmain.c: Added -nostdinc to the default options.
9350
9351 2002-04-15  Michael Hope  <michaelh AT vroom>
9352
9353         * device/lib/z80/printf.c (sprintf): Added.
9354
9355         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
9356
9357         * src/z80/peeph.def: Added transpose redundent load rule.
9358
9359         * src/z80/main.c: Added force callee saves for jaune.
9360
9361         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
9362
9363         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
9364
9365 2002-03-28  Johan Knol  <johan AT balder>
9366
9367         * src/SDCCval.c: fixed bug #532436
9368
9369 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9370         * /src/port.h:
9371         Added "char *Processor" field to the port structure.
9372
9373         * /src/SDCCmain.c:
9374         Added -p option. Allows port dependent processor to be specified.
9375
9376         * all ports:
9377         Initialized the new field char *Processor field to NULL in all ports
9378
9379         * /src/pic/*:
9380         Compiler generated registers for interrupt context saving
9381         were not getting allocated.
9382
9383 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
9384
9385         * /src/SDCCast.c:
9386         Fixed left shift. Will promote the left side of a left shift
9387         if a) left shifting more than size of operand or b) when assigned
9388         to something size > size of left side
9389
9390 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9391         * src/pic/*
9392         tons of changes. Register allocation has been
9393         rewritten. Added customization for the various PICs. Flow
9394         analysis is restructured. ...
9395
9396         * src/pic/device.h:
9397         Added
9398
9399         * src/pic/device.c:
9400         Added. device.c is a PIC port hack to accomodate variations
9401         in PIC devices.
9402
9403 2002-03-13  Michael Hope  <michaelh AT vroom>
9404
9405         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
9406
9407 2002-03-04  johanknol  <johanknol AT manik>
9408
9409         * /src/SDCCval.c: fixed
9410
9411         const unsigned char arr[][2] = { { 0, 1 } };
9412         t18.c:1: error: Initializer element is not constant
9413
9414 2002-03-04  bela  <bela AT manik>
9415
9416         * /device/include/mcs51reg.h:
9417         ds89c420 register definition update
9418
9419 2002-03-03    <johan AT FRIJA>
9420
9421         * support/Util/SDCCerr.c: did something, but don't no why anymore
9422
9423         * support/regression/tests/bug-524691.c: made it a little less shy
9424
9425         * src/SDCCast.c (decorateType): fixed bug #524697
9426
9427         * src/SDCCast.c: made some lineno improvements
9428
9429         * src/SDCCval.c (getNelements): changed warning to error
9430
9431         * src/SDCCglue.c (printIvalArray): changed warning to error
9432
9433         * src/SDCCicode.c: fixed a warning for mingw
9434
9435         * src/SDCCast.c (decorateType): fixed the << promotion for ops
9436
9437         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
9438
9439 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
9440
9441         * src/ds390/peeph.def:
9442         Added some more peephole rules
9443
9444         * src/ds390/gen.c: Various fixes & enhancements
9445
9446         * src/SDCClrange.c, src/SDCClrange.h:
9447         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
9448
9449         * src/ds390/ralloc.c:
9450         various fixes & enhancements (ds390) specific
9451
9452         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
9453         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
9454         from rallocs.
9455
9456         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
9457
9458 2002-03-02    <johan AT FRIJA>
9459
9460         * src/SDCCast.c (decorateType): fixed bug #524708
9461
9462         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
9463
9464         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
9465
9466 2002-03-01  Michael Hope  <michaelh AT vroom>
9467
9468         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
9469
9470         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
9471
9472 2002-03-01    <johan AT FRIJA>
9473
9474         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
9475
9476         * src/SDCCast.c (decorateType): fixed bug #524209
9477
9478         * src/SDCCval.c (valNot): fixed bug #524195
9479
9480 2002-02-26    <johan AT balder>
9481
9482         * src/xa51/gen.c: fixed a warning
9483
9484         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
9485
9486         * src/SDCCast.c (decorateType): fixed bug #522534
9487
9488 2002-02-23    <johan AT balder>
9489
9490         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
9491
9492 2002-02-22    <johan AT balder>
9493
9494         * src/SDCCast.c: fixed bug #514865
9495
9496         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
9497
9498 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
9499
9500         * sdcc/src/SDCCloop.c:
9501         Previous fix was not good. basic blocks that have "break" or "return" are
9502         not really partof a loop , but live ranges used in these blocks should
9503         be live thru the entire loop, so set partOfLoop but don't add them to
9504         loop region
9505
9506 2002-02-21    <johan AT FRIJA>
9507
9508         * src/SDCCcse.c: fixed bug #514308
9509
9510 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
9511
9512         * src/SDCCloop.c:
9513         Fixed BUG #519583. If a conditional block ended in a return/break
9514         statement inside a loop, it was not being considered part of the loop.
9515
9516         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
9517
9518 2002-02-10  Karl Bongers <karl AT turbobit.com>
9519
9520         * debugger/*:
9521         Fixed up SDCDB debugger somewhat.  Updated debugger/README
9522         with lots of comments and notes.
9523
9524         * device/examples/test2.c:
9525         Fix bug, "red" variable not being initialized(compiler complained).
9526
9527         * device/examples/Makefile, examples/test3.c:
9528         Add Makefile in device/examples folder, compiles test3.c
9529         for use as a multiple module SDCDB test case.
9530
9531         * sim/ucsim/cmd.src/cmdset.cc:
9532         Took out debug printfs in ucsim "next" command.
9533
9534         * sim/ucsim/xa.src:
9535         Karl and Johan start ucsim XA support.  Most dissassembly working,
9536         about 75% emulation done(plenty of work remaining).
9537
9538         * sim/ucsim/z80.src:
9539         Add Z80 support to ucsim, add test-ucz80 regression test,
9540         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
9541         Notice z80 compiler fails on examples/test3.c/crc code.
9542
9543 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
9544
9545         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
9546         Added support for --parms-in-bank1
9547
9548         * src/ds390/peeph.def:
9549         added a few more peephole optimzations
9550
9551         * src/ds390/main.c:
9552         1) added __builtin_inp & __builtin_outp used to read in data of given length
9553            from a memory mapped port
9554         2) added __builtin_memcmp
9555         3) added __builtin_swapw swap bytes of a short
9556
9557         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
9558         1) handle multiple send & receives from register bank1
9559         2) ralloc can now allocate DPTR1 to some liveRanges
9560
9561         * src/SDCCsymt.c, src/SDCCsymt.h:
9562         changes to handle multiple sends & receives
9563
9564         * src/SDCCptropt.h:
9565         added some pointer arithmetic optimization
9566
9567         * src/SDCCptropt.c:
9568         added some pointer arithmetic optimizations but not stable yet so not
9569         called from anywhere (will get this working shortly)
9570
9571         * src/SDCCopt.c: fixed for multiple sends & receives
9572
9573         * src/SDCCmain.c:
9574         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
9575         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
9576            set preprocessor defines (depending on options)
9577
9578         * src/SDCCicode.c, src/SDCCicode.h:
9579         changes made to handle multiple sends & receives
9580
9581         * src/SDCCglobl.h:
9582         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
9583
9584         * src/SDCCcse.c, src/SDCCcse.h:
9585         added function findbackward def (to be used in upcoming optimization)
9586
9587         * src/SDCCcflow.c, src/SDCCcflow.h:
9588         added function returnAtEnd - to determine if a basic block terminates with
9589         a RETURN iCode
9590
9591         * src/SDCCast.c, src/SDCCast.h:
9592         added option parms-in-bank1
9593
9594         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
9595         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
9596         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
9597         adjusted for --parms-in-bank1 option
9598
9599         * device/include/string.h:
9600         donot redefine "reentrant" keyword
9601
9602         * device/include/ds80c390.h: Added some more SFRs
9603
9604 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
9605
9606         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
9607
9608 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
9609
9610         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
9611
9612 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
9613
9614         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
9615
9616 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
9617
9618         * Added --xram-movc option
9619
9620 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
9621
9622         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
9623
9624 2002-01-11  Johan Knol
9625
9626         * Added math lib of Jesus Calvino-Fraga
9627
9628 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
9629
9630         * src/SDCCmain.c (processFile): fix processing of ../../src.c
9631         * support/regression/Makefile: new target test-mcs51-stack-auto
9632         * support/regression/ports/mcs51-stack-auto/spec.mk: added
9633
9634 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9635
9636         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
9637
9638 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9639
9640         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
9641
9642 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
9643
9644         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
9645
9646         * src/SDCCglue.h: add definition for printIvalChar()
9647
9648 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9649
9650         * src/SDCCast.c: fix #498138 by Johan
9651
9652         * src/SDCCglue.c: fix #498138 by Johan
9653
9654 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9655
9656         * support/regression/Makefile: fix clean
9657
9658         * support/regression/ports/ds390/support.c: fix transmission of last character
9659
9660 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
9661
9662         * /sdcc/src/ds390/gen.c:
9663         a) improved computing address of stack variable
9664         b) took out some #if 0 code
9665         c) improved parmBytes adjustment
9666         d) improved genPlusIncr & genMinusIncr
9667         e) genCmp could generate bad code (when left assigned to DPTR)
9668         f) Fixed bug in hasInc
9669
9670         * /sdcc/src/ds390/ralloc.c:
9671         a) packRegsForSupport could mess up live information (Fixed)
9672         b) packRegsDPTRuse could be incorrect for left & right shift
9673
9674         * /sdcc/src/mcs51/ralloc.c:
9675         packRegsForSupport could mess up the live information (Fixed)
9676
9677         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
9678
9679         * /sdcc/src/SDCCast.c:
9680         can reverse a loop even if function call is present as long
9681         as the loop control variable is local & is not passed as parameter
9682
9683 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9684
9685         * /sdcc/ChangeLog: *** empty log message ***
9686
9687         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
9688         More builtin function additions for TININative
9689
9690         * /sdcc/src/ds390/ralloc.c:
9691         Had broken the regression testsuite
9692
9693         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
9694
9695         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
9696         Added funcattr hasStackParms will be set for reentrant functions when there
9697         are paramteres on the stack, this helps in minimizing frame pointer generation
9698         typeFromStr can handle function pointers now
9699
9700         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
9701         *** empty log message ***
9702
9703 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9704
9705         * /src/ds390/gen.c, /src/ds390/main.c:
9706         More builtin function additions for TININative
9707
9708         * /src/ds390/ralloc.c:
9709         Had broken the regression testsuite
9710
9711         * /src/SDCCast.c: Fixed a bug in dumptree
9712
9713         * /src/SDCCsymt.c, /src/SDCCsymt.h:
9714         Added funcattr hasStackParms will be set for reentrant functions when there
9715         are paramteres on the stack, this helps in minimizing frame pointer generation
9716         typeFromStr can handle function pointers now
9717
9718         * /doc/builtins.txt, /doc/TININative.txt:
9719         *** empty log message ***
9720
9721
9722 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9723
9724         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
9725         ALPHA version for -mTININative
9726
9727         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
9728         updated to reflect changes in the port structure
9729
9730         * /src/port.h:
9731         added function do_assemble (similar to do_link) if non-null this function
9732         will be called to do assembly (-mTININative) requires a multi command
9733         assembly
9734         added function genAssemblerEnd will be called to generate assembler Epilogue
9735
9736         * /src/SDCCsymt.c:
9737         added _JavaNative to debug info printing
9738
9739         * /src/SDCCmain.c: added option --tini-libid
9740         added port->do_assemble function (-mTININative) has a multi command assemble
9741
9742         * /src/SDCCglue.c: Disabled "constExpr" check
9743         added port->genAssemblerEnd function
9744
9745         * /src/SDCCglobl.h: Added option --tini-libid value
9746
9747         * /src/SDCCast.h:
9748         tookout optimizeCompare from the header (has no external references)
9749
9750         * /src/SDCCast.c: made one more function "static"
9751
9752 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
9753
9754         * src/z80/mappings.i: Added z80asm support.
9755
9756         * src/z80/main.c: Added z80asm support on --asm=z80asm
9757
9758         * src/z80/gen.c: Fixed asm portability issues.
9759
9760         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
9761
9762         * src/SDCCglue.c (printExterns): Added global/extern split.
9763
9764 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
9765
9766         * support/regression/Makefile: added test for mcs51 model large
9767
9768         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
9769
9770         * support/regression/ports/gbz80/spec.mk: added -mgbz80
9771
9772 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
9773
9774         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
9775
9776 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
9777
9778         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
9779
9780         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
9781
9782 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
9783
9784         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
9785
9786         * support/regression/tests/simplefloat.c: Port to mcs51.
9787
9788 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
9789         * support/regression/tests/bug-485362.c: Added.
9790
9791         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
9792
9793         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
9794
9795         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
9796
9797         * src/z80/gen.c (aopDump): Added a dump function.
9798
9799 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
9800         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
9801
9802         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
9803
9804         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
9805
9806         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
9807
9808         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
9809
9810         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
9811
9812         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
9813
9814         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
9815
9816         * support/regression/ports/ds390/support.c: Use tinibios.
9817
9818         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
9819
9820 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
9821
9822         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
9823         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
9824
9825         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
9826
9827         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
9828
9829 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
9830
9831         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
9832
9833         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
9834         (packRegsForIYUse): Created and optimised.
9835
9836 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9837
9838         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
9839 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
9840
9841         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
9842
9843         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
9844
9845         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
9846
9847 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9848
9849         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
9850
9851         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
9852
9853 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9854
9855         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
9856
9857         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
9858
9859         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
9860
9861 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9862
9863         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
9864         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
9865         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
9866
9867         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
9868
9869         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
9870         (genNotFloat): Added.
9871         (genUminusFloat): Added.
9872
9873         * device/lib/z80/Makefile: Added floating pt stubs.
9874
9875         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
9876
9877         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
9878
9879         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
9880
9881 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9882
9883         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
9884
9885         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
9886
9887         * sdcc/support/regression/Makefile: Add port ds390.
9888
9889         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
9890
9891         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
9892
9893         * sdcc/support/regression/ports/ds390/spec.mk: Added.
9894
9895         * sdcc/support/regression/ports/ds390/support.c: Added.
9896
9897         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
9898
9899         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
9900
9901         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
9902
9903 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9904
9905         * device/include/malloc.h: Added z80 and gbz80 support.
9906
9907         * device/lib/gbz80/heap.s: Added.
9908
9909         * device/lib/z80/heap.s: Added.
9910
9911         * device/lib/malloc.c: Added z80 and gbz80 support.
9912
9913         * support/regression/tests/malloc.c (testMalloc): Added.
9914
9915         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
9916
9917         * support/regression/tests/bug-478094.c: Added.
9918
9919         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
9920
9921 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
9922
9923         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
9924
9925         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
9926
9927         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
9928
9929         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
9930
9931         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
9932
9933 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9934
9935         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
9936
9937 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
9938
9939         * support/regression/tests/bug-477927.c: Added.
9940
9941         * src/z80/peeph.def: Added minor rules.
9942
9943         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
9944
9945         * src/z80/peeph.def: Added jump optimisation modification.
9946
9947 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
9948
9949         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
9950
9951 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
9952
9953         * support/regression/tests/funptrs.c: Added.
9954
9955 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
9956
9957         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
9958
9959 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
9960
9961         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
9962
9963         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
9964
9965         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
9966         (movLeft2ResultLong): Created.
9967
9968         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
9969         (joinPushes): Added.  Joins two char pushes into a word push.
9970
9971 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
9972
9973         * support/cpp2/Makefile.in (install): Added creation of dest dir.
9974
9975         * support/makebin/Makefile (install): Added creation of dest dir.
9976
9977 2001-10-24 Karl Bongers <karl AT turbobit.com>
9978
9979         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
9980
9981 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
9982
9983         * src/z80/ralloc.c: Turned off faulty pack for one use.
9984
9985         * src/z80/peeph-gbz80.def: Removed redundent restart options.
9986
9987         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
9988
9989 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
9990
9991         * support/regression/Makefile: Improved clean
9992
9993         * support/regression/ports/gbz80/spec.mk: Added clean
9994
9995         * support/regression/ports/host/spec.mk: Added clean
9996
9997         * support/regression/ports/z80/spec.mk: Added clean
9998
9999         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
10000
10001         * support/regression/ports/mcs51/timeout.c: little improvements
10002
10003 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
10004
10005         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
10006
10007         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
10008
10009         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
10010
10011 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
10012
10013         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
10014
10015         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
10016
10017 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
10018         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
10019
10020         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
10021
10022         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
10023
10024         * src/mcs51/main.c (_linkCmd): Added bin path to command.
10025
10026         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
10027
10028         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
10029
10030         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
10031
10032         * support/regression/tests/longor.c: Added.
10033
10034 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
10035
10036         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
10037
10038         * as/mcs51/aslink.h: define PATH_MAX
10039
10040         * as/mcs51/asm.h: define PATH_MAX
10041
10042         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
10043
10044         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
10045
10046         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
10047
10048         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
10049
10050         * src/SDCCglobl.h: define PATH_MAX
10051
10052         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
10053
10054         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
10055
10056 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
10057
10058         * src/z80/gen.c (gencjneshort): Fixed
10059
10060         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
10061
10062 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
10063
10064         * support/regression/tests/bug-469671.c: Added.
10065
10066         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
10067
10068 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
10069
10070         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
10071
10072         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
10073
10074 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
10075
10076         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
10077
10078         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
10079
10080         * src/device/lib/_mullong.c : removed hint: nooverlay bug
10081
10082         * src/device/lib/_divuint.c : removed hint: nooverlay bug
10083
10084         * src/device/lib/_divulong.c: removed hint: nooverlay bug
10085
10086         * src/device/lib/_moduint.c : removed hint: nooverlay bug
10087
10088         * src/device/lib/_modulong.c: removed hint: nooverlay bug
10089
10090 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
10091
10092         * src/z80/gen.c (setupPair): Added 'extended stack' support for the z80.  Can now have local variables or parameters of more than 127 bytes in size.  Increadibly slow, but it will work.  Currently anything involving the carry flag.
10093
10094         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
10095
10096         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
10097
10098 2001-10-07    <johan AT FRIJA>
10099
10100         * device/lib/gets.c (gets): fixed the return value.
10101
10102 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
10103         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
10104
10105         * src/SDCCpeeph.c (peepHole): Fixed all leaks.  Added trace support for freeing lines.  Optimised restart logic to re-run instead of restart.  Now compiles dscan.c on ~60MB instead of ~200MB.
10106
10107         * support/Util/NewAlloc.c: Added ability to use libgc instead of malloc.  Added Safe_free and Safe_strdup.  Added trace support where you can log allocations and free all at once.
10108
10109         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
10110
10111         * src/pic/gen.c: Removed Safe_strdup.
10112
10113         * configure.in: Added option to enable libgc support.
10114
10115         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
10116         (bitVectUnion): Optimised.
10117         (bitVectIntersect): Optimised.
10118         (bitVectBitsInCommon): Optimised.
10119         (bitVectCplAnd): Optimised.
10120
10121         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
10122
10123 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10124
10125         * src/SDCCmain.c: distinguish between assembler debug and plain options
10126
10127         * src/avr/main.c:   remove standard assembler options
10128
10129         * src/ds390/main.c: remove standard assembler options
10130
10131         * src/mcs51/main.c: remove standard assembler options
10132
10133         * src/port.h: removed "PENDING" comment
10134
10135 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10136
10137         * src/device/lib/_mulint.c  : new, with assember functions
10138
10139         * src/device/lib/_mullong.c : new, with assember functions
10140
10141         * src/device/lib/_divuint.c : with assember functions
10142
10143         * src/device/lib/_divsint.c : with assember functions
10144
10145         * src/device/lib/_divulong.c: with assember functions
10146
10147         * src/device/lib/_divslong.c: with assember functions
10148
10149         * src/device/lib/_moduint.c : with assember functions
10150
10151         * src/device/lib/_modsint.c : with assember functions
10152
10153         * src/device/lib/_modulong.c: with assember functions
10154
10155         * src/device/lib/_modslong.c: with assember functions
10156
10157         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
10158
10159         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
10160
10161         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
10162                                       replaced _mululong.c and _mulslong.c by _mullong.c
10163
10164 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10165
10166         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
10167
10168 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10169
10170         * src/SDCCglue.c: test, if win32api is available for MINGW
10171
10172 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10173
10174         * src/SDCCsymt.c: no more _modifier in printTypeChain()
10175         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
10176         * support/regression/ports/gbz80/spec.mk: removed GENERIC
10177         * support/regression/ports/host/spec.mk: removed GENERIC
10178         * support/regression/ports/mcs51/spec.mk: removed GENERIC
10179         * support/regression/ports/z80/spec.mk: removed GENERIC
10180
10181 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
10182
10183         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
10184
10185         * support/regression/tests/bug-467035.c: Created.
10186
10187 2001-10-01    <johan AT FRIJA>
10188
10189         * src/SDCC.y: fixed bug #466586 part 1
10190
10191 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
10192
10193         * SDCCicode.c: z80 has no generic pointers
10194         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
10195
10196 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
10197
10198         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
10199
10200 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
10201
10202         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
10203
10204         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
10205
10206 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
10207
10208         * configure.in: Fixed up so that ucsim is only configured once.
10209
10210         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
10211
10212         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
10213         (getPathDifference): As above.
10214
10215         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
10216
10217         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
10218
10219 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
10220         * .version: Updated to 2.3.1
10221
10222         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
10223         Added copyright header.
10224
10225         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
10226         (assemble): Added support for macro based assembler commands.
10227         (linkEdit): Added support for macro based linker commands.
10228         (preProcess): Changed the pre-processor to use macros.
10229         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
10230         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
10231
10232         * device/lib/z80/crt0.s: Added module name for debugging.
10233
10234 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
10235
10236         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10237
10238         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
10239
10240         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
10241
10242         * src/Makefile.in: Added SDCCmacro and SDCCutil
10243
10244 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
10245
10246         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10247
10248 2001-09-16    <johan AT FRIJA>
10249
10250         * support/Util/SDCCerr.c: fixed up the error/warning/info database. I only changed the E_ W_ I_ prefix to what SDCCerr.c says it is.
10251
10252 2001-09-15    <johan AT FRIJA>
10253
10254         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
10255         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
10256
10257 2001-09-11    <johan AT FRIJA>
10258
10259         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
10260
10261 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
10262
10263         * support/regression/tests/bug-460444.c: Added test case.
10264
10265         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
10266         (genCast): Added justification for all of the asserts.
10267
10268 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
10269
10270         * support/regression/support.c: _xdata replaced by xdata
10271
10272         * support/regression/spec.mk: removed _generic
10273
10274 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
10275
10276         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
10277
10278         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
10279         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
10280
10281         * src/z80/peeph.def: Added a rule to optimise shift then compare.
10282
10283         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
10284
10285         * support/regression/tests/bug-460010.c: Added test case.
10286
10287         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
10288
10289 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
10290
10291         * support/regression/Makefile: inter-port-clean adjusted for mcs51
10292
10293         * support/regression/testfwk.c: removed workaround for bug #436344
10294
10295         * support/regression/tests/bp.c: use less memory with mcs51
10296
10297         * support/regression/tests/bug-441448.c: use less memory
10298
10299         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
10300
10301         * support/regression/collate-results.py: typo
10302
10303 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
10304
10305         * support/regression/tests/fetchoverlap.c: Added new test case.
10306
10307         * support/regression/tests/bp.c: Added new test case.
10308
10309         * support/regression/tests/bug-448984.c: Added new test case.
10310
10311         * support/regression/tests/pow2shifts.c: Added new test case.
10312
10313         * src/z80/gen.c: Turned off the noise it normally generates for the release.
10314         (genlshTwo): Fixed right shift for count > 8.
10315
10316         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
10317
10318 2001-09-08    <johan AT FRIJA>
10319
10320         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
10321
10322 2001-09-07    <johan AT FRIJA>
10323
10324         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
10325
10326         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
10327
10328 2001-09-06    <johan AT FRIJA>
10329
10330         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
10331         * bernhard noted me at this: "() equals to (void)" (1.38)
10332
10333 2001-09-05    <johan AT FRIJA>
10334
10335         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
10336
10337 2001-09-04    <johan AT FRIJA>
10338
10339         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
10340
10341
10342 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
10343
10344         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
10345
10346 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
10347
10348         * link/z80/aslink.h: Fixed path for PATH_MAX
10349
10350 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
10351
10352         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
10353
10354         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
10355
10356         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
10357
10358         * src/z80/gen.c (genUminus): Fixed add, sub, and uminus on the gbz80 port for longs.  Had to shift some functions about to do it.
10359
10360 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
10361
10362         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
10363         (genCmp): Fixed up genCmp for the GB with longs.
10364
10365         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
10366
10367         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
10368
10369         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
10370
10371         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
10372
10373 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
10374
10375         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
10376
10377 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
10378
10379         * device/lib/gbz80/crt0.s (init): Fixed up support for the gbz80 such that it will at least run (and fail badly) the regression tests.
10380
10381         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
10382
10383 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
10384
10385         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
10386
10387         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
10388
10389 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
10390
10391   * sim/ucsim/configure:    little improvement of Cygwin-detection
10392   * sim/ucsim/configure.in: little improvement of Cygwin-detection
10393   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
10394   * support/regression/tests/bug-221100.c: small changes for mcs51
10395   * support/regression/tests/bug-221168.c: small changes for mcs51
10396   * support/regression/tests/bug-227710.c: small changes for mcs51
10397   * support/regression/tests/staticinit.c: small changes for mcs51
10398   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
10399   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10400   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10401
10402 $Revision$