* src/SDCCicode.c (piCode): applied patch from Raphael Neider,
[fw/sdcc] / ChangeLog
1 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
2
3         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
4         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
5         configuration values no more rejected by compiler, they are assigned
6         to configuration registers with a warning message instead,
7         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
8         the for-loop so last conf register is emitted too,
9         * (_pic16_initPaths): link library libsdcc.lib by default,
10         * (_hasNativeMulFor): modified test for multiplication according to
11         Raphael Neider's remarks. Integer multiplication is also done with
12         support functions,
13         * device/include/pic16/pic18fregs.h: corrected type error in while
14         testing and including 18f6720 header file
15
16 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
17
18         * src/pic16/device.h (pic16_options): removed field use_crt,
19         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
20         until an optimization to handle single bits is added,
21         * (pic16_loadFSR0): moved before genUnpackBits,
22         * (genAnd): some white lines removed,
23         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
24         leave_reset flags in pic16_options when using crt modules,
25
26 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
27
28         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
29           for bugs 898889 & 979599. Also used some safer print instructions.
30
31 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
32
33         * src/pic16/device.h (pic16_options_t): added field use_crt,
34         crt_name, no_crt,
35         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
36         catch a probable future bug,
37         * src/pic16/gen.c: aopIdx function commented out,
38         * (genAssign): commented out old code which used aopIdx,
39         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
40         code, added if conditionals to take into account the --use-crt
41         command line options,
42         * src/pic16/main.c (pic16_optionsTable): added new command line
43         options, --use-crt= and --no-crt,
44         * (_pic16_linkEdit): now the proper crt object is added in the
45         linker command line except than when --no-crt is specified,
46         * src/pic16/pcode.c,
47         * src/pic16/pcode.h: added some structures and functions for a new
48         optimization scheme to compansate for instruction overhead between
49         same iCodes, this scheme is currently under development and is not
50         working in any way,
51         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
52         to && operator,
53         * device/lib/pic16/startup/crt0i.c,
54         * device/lib/pic16/startup/crt0iz.c: added global char variable
55         __uflags to force the generation of an idata section
56
57 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
58
59         * doc/Makefile,
60         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
61         * doc/sdccman.lyx: updated sdcc version to 2.4.4
62
63 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
64
65         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
66         Frieder) and clarified the default code optimization mode
67
68 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
69
70         * src/SDCC.lex (doPragma, process_pragma),
71         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
72         "opt_code_size", and "opt_code_balanced"
73         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
74         regrouped options by category, added support for category headers
75         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
76         and "--opt-code-size"
77         * doc/sdccman.lyx: documented these new options and pragmas
78         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
79         preference into account
80
81 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
82
83         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
84           geniCodePreDec): Fixed bug 904237 by generating a warning
85         * src/SDCCerr.h,
86         * src/SDCCerr.c: added warning W_SIZEOF_VOID
87
88 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
89
90         * src/pic/device.c : When no max ram set validate full memory range.
91         * src/pic/pcode.c,
92         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
93
94 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
95
96         * device/lib/_gptrget.c,
97         * device/lib/_gptrput.c: updated comment
98         * device/lib/calloc.c,
99         * device/lib/free.c,
100         * device/lib/malloc.c,
101         * device/lib/realloc.c: added LGPL, made them reentrant-safe
102         * src/SDCCcse.c (cseBBlock),
103         * src/SDCCicode.c (printOperand, geniCodeArray),
104         * src/SDCCicode.h (struct operand): fixed bug 868103
105         * support/regression/tests/bug-868103.c: added
106         * src/SDCCast.c (searchLitOp),
107         * src/SDCCcse.h (struct cseDef),
108         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
109         * src/SDCCicode.h (struct operand),
110         * src/SDCCsymt.h (struct sym_link),
111         * src/avr/gen.c (hasInc),
112         * src/ds390/gen.c (hasInc),
113         * src/hc08/gen.c (genPlusIncr, hasInc),
114         * src/mcs51/gen.c (hasInc),
115         * src/pic16/glue.c (pic16_printIvalChar),
116         * src/pic16/ralloc.c (regWithIdx),
117         * src/xa51/gen.c (hasInc) : removed warnings
118         * src/SDCCast.c (createBlock): added comment ???
119         * src/hc08/ralloc.c: updated comments
120
121 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
122
123         * doc/sdccman.lyx: updated section on switch statements, added
124         section about semaphore locking
125         * doc/Makefile: added option -info for latex2html
126         * device/lib/_gptrget.c,
127         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
128
129 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
130
131         * src/pic/device.h,
132         * src/pic/device.c,
133         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
134          maxram is less than 0x100.
135
136 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
137
138         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
139
140 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
141
142         * src/port.h,
143         * src/mcs51/main.c,
144         * src/ds390/main.c,
145         * src/z80/main.c,
146         * src/hc08/main.c,
147         * src/pic/main.c,
148         * src/pic16/main.c,
149         * src/avr/main.c,
150         * src/xa51/main.c
151         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
152         a jump table is the best form for a switch statement, including
153         automatic insertion of missing cases to make the case range
154         continuous. Developed in collaboration with Frieder Ferlemann.
155
156 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
157
158         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
159         accumulator result if it needs sign extension
160
161 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
162
163         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
164
165 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
166
167         * device/lib/gbz80/printf.c,
168         * device/lib/z80/printf.c: removed define for NULL
169
170 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
171
172         * as/xa51/xa_link.c,
173         * device/examples/ds390/ow390/ad26.c,
174         * device/examples/ds390/ow390/cnt1d.c,
175         * device/examples/ds390/ow390/counter.c,
176         * device/examples/ds390/ow390/ds2480.h,
177         * device/examples/ds390/ow390/ds2480ut.c,
178         * device/examples/ds390/ow390/findtype.c,
179         * device/examples/ds390/ow390/gethumd.c,
180         * device/examples/ds390/ow390/owllu.c,
181         * device/examples/ds390/ow390/ownetu.c,
182         * device/examples/ds390/ow390/swt12.c,
183         * device/examples/ds390/ow390/swtloop.c,
184         * device/examples/ds390/ow390/temp.c,
185         * device/examples/ds390/ow390/temp10.c,
186         * device/examples/ds390/ow390/thermo21.c,
187         * device/examples/ds390/ow390/tinilnk.c,
188         * device/examples/ds390/ow390/tstfind.c,
189         * device/examples/serialcomm/windows/serial.cpp,
190         * device/examples/serialcomm/windows/test_serialcomm.cpp,
191         * device/include/reg51.h: fixed line endings for cvs
192
193 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
194
195         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
196         packRegsForAccUse, packRegisters): new accumulator register
197         packing algorithm
198         * support/regression/ports/hc08/support.c (_putchar): suppress
199         warning of unused variable
200         * src/SDCCicode.c: added SWAP entry to codeTable
201
202 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
203
204         * device/lib/sprintf.c: forgot to add this file before previous commit
205
206 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
207
208         * src/pic16/gen.c (genPackBits): added operand right in function
209         parameters, load result directly if p_type is POINTER (that is
210         called by genNearPointerSet)
211         * (genUnPackBits): added operand left in function parameters,
212         * (genNearPointerGet, genNearPointerSet): prevent the loading of
213         FSR0 if accessing bitfields,
214
215 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
216
217         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
218           _print_format; updated printf, sprintf, vsprintf
219         * device/include/asm/default/features.h: corrected comment/define
220         * device/lib/Makefile.in: added sprintf.c
221         * device/lib/libsdcc.lib: added sprintf module
222         * device/lib/printf_large.c,
223         * device/lib/vprintf.c,
224         * device/lib/sprintf.c: totally refactored printf_large and vprintf
225           into these 3 files
226         * support/regression/Makefile: changed ALL_PORTS into a usefull default
227         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
228         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
229           hc08 test
230         * support/regression/tests/zeropad.c: define idata as data for hc08
231
232 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
233
234         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
235         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
236         labels are referenced at least once (even if a reference is not found)
237         * src/hc08/gen.c (emitcode): set isComment flag for comments
238         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
239         loads), rules 6a..6b (optimize jumps to return)
240
241 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
242
243         * device/lib/acosf.c (acosf),
244         * device/lib/asinf.c (asinf),
245         * device/lib/atanf.c (atanf),
246         * device/lib/ceilf.c (ceilf),
247         * device/lib/cosf.c (cosf),
248         * device/lib/coshf.c (coshf),
249         * device/lib/cotf.c (cotf),
250         * device/lib/fabsf.c (fabsf),
251         * device/lib/floorf.c (floorf),
252         * device/lib/log10f.c (log10f),
253         * device/lib/logf.c (logf),
254         * device/lib/sinf.c (sinf),
255         * device/lib/sinhf.c (sinhf),
256         * device/lib/sqrtf.c (sqrtf),
257         * device/lib/tanf.c (tanf),
258         * device/lib/tanhf.c (tanhf),
259         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
260         replaced all instances of "reentrant" in the library functions
261         defined in math.h with this macro.
262         * support/regression/tests/float_trans.c: reenabled test for hc08
263
264 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
265
266         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
267         erroneously deleted
268
269 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
270
271         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
272         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
273         multi-byte volatile operands are used
274         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
275         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
276         initialization to area GSINIT0 so that it would always precede
277         any static initializers in GSINIT
278         * support/regression/tests/zeropad.c: fixed idata define for hc08
279         * support/regression/tests/bug-927659.c,
280         * support/regression/tests/float_trans.c: disabled tests for hc08
281         pending missing library routines
282         * .version: increased version number to 2.4.4 - hc08 port now passes
283         regression tests
284
285
286 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
287
288         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
289         * Makefile.common.in,
290         * as/Makefile,
291         * as/hc08/Makefile.in,
292         * as/mcs51/Makefile.in,
293         * as/z80/Makefile.in,
294         * debugger/mcs51/Makefile.in,
295         * device/include/Makefile.in,
296         * device/lib/Makefile.in,
297         * doc/Makefile,
298         * link/Makefile,
299         * link/z80/Makefile.in,
300         * packihx/Makefile.in,
301         * sim/ucsim/main_in.mk,
302         * sim/ucsim/avr.src/Makefile.in,
303         * sim/ucsim/doc/Makefile.in,
304         * sim/ucsim/gui.src/serio.src/Makefile.in,
305         * sim/ucsim/hc08.src/Makefile.in,
306         * sim/ucsim/s51.src/Makefile.in,
307         * sim/ucsim/xa.src/Makefile.in,
308         * sim/ucsim/z80.src/Makefile.in,
309         * src/Makefile.in,
310         * support/cpp2/Makefile.in,
311         * support/librarian/Makefile,
312         * support/makebin/Makefile: added DESTDIR to the install path proposed
313         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
314         * doc/sdccman.lyx: added DESTDIR documentation
315
316 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
317
318         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
319         instruction for interrupt handlers, use fast returns when returning
320         from high priority interrupts
321
322 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
323
324         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
325         code generation
326         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
327         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
328         bugs, ported much of Bernhard's code from mcs51
329         * src/mcs51/gen.c (genSend),
330         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
331         than one when calling a reentrant function
332         * device/lib/_mullong.c: defined an alternate struct layout for big
333         endian ports (hc08)
334
335 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
336
337         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
338         test
339
340 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
341
342         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
343         are sane and complete before asking the port its prefered parameter
344         passing method (fixes bug #1017633)
345         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
346         and _ret3
347
348 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
349
350         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
351         problem in bitfields >= 8 bits.
352
353 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
354
355         * src/SDCCsymt.c: undid changes that were not meant to be committed
356
357 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
358
359         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
360
361 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
362
363         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
364           copied and wrong bit got inverted
365
366 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
367
368         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
369         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
370         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
371         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
372         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
373         assignments to bitfields at known addresses
374         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
375         reads from bitfields at known addresses
376         * src/hc08/ralloc.c (packRegisters),
377         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
378         genhc08Code): optimize pointer get values used as conditionals
379         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
380         and branch
381
382 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
383
384         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
385         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
386         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
387         as conditionals
388
389 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
390
391         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
392
393 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
394
395         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
396         related problems
397
398 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
399
400         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
401
402 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
403
404         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
405         mcs51 port
406
407 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
408
409         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
410
411 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
412
413         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
414         cases use more compact code.
415
416 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
417
418         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
419
420 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
421
422         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
423
424 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
425
426         * src/SDCCsymt.h,
427         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
428         parameter of changePointer() from symbol* to sym_link*
429         * src/SDCCast.c (decorateType): call changePointer() for CAST op
430         * src/SDCCsymt.c (compareType): void* type is castable to other
431         pointers, but not necesarily an exact match.
432         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
433         is no longer blindly treated as an exact match.
434         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
435
436 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
437
438         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
439
440 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
441
442         * src/pic/gen.c,
443         * src/pic/pcode.c,
444         * src/pic/ralloc.h,
445         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
446
447 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
448
449         * src/pic/device.c,
450         * src/pic/device.h,
451         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
452
453 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
454
455         * src/mcs51/gen.c (emitcode): fixed bug #992819
456
457 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
458
459         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
460           there's no need to make it worse
461
462 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
463
464         * src/mcs51/ralloc.c (deassignLR),
465         * src/ds390/ralloc.c (deassignLR),
466         * src/hc08/ralloc.c (deassignLR),
467         * src/z80/ralloc.c (deassignLR),
468         * src/pic/ralloc.c (deassignLR),
469         * src/pic16/ralloc.c (deassignLR),
470         * src/avr/ralloc.c (deassignLR),
471         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
472         rlivePoint): fixed another part of bug #971834
473
474 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
475
476         * src/z80/main.c: enabled "critical" keyword
477         * src/z80/mappings.i,
478         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
479         functions (fixes bug #979646)
480         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
481
482 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
483
484         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
485           such as c:\mydir.
486
487 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
488
489         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
490           doesn't disable too much optimizations
491
492 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
493
494         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
495
496 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
497
498         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
499
500 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
501
502         * src/pic/gen.c tidied up tabs
503         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
504         * src/pic/main.c tidied up tabs
505         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
506         * src/pic/pcoderegs.c tidied up tabs
507         * src/pic/ralloc.c tidied up tabs
508
509 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
510
511         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
512         to S_FIXED for pic16 port and when symbol is not in level 0,
513         allocate for S_REGISTER storage class and pic16 port, too,
514         * src/pic16/device.h: prototype for checkSym,
515         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
516         * (pic16_assignConfigWordValue): test the value and the mask to
517         validate that the value is suitable for the configuration word,
518         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
519         collect extern declared symbols, don't emit symbol twice, check
520         first if symbol is in publics set first,
521         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
522         * added command line '--fstack' which enables an experimental
523         feature for stack access, too buggy to be used yet...
524         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
525         * (pic16_allocDirReg): when register has storage class S_REGISTER
526         allocate in pic16_dynAccessRegs,
527         * device/include/pic16/pic18f????.h: modified configuration word
528         naming convention, words started as CONFIG0H but should be CONFIG1H
529
530 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
531
532         * device/include/mcs51reg.h: fixed bug 970993
533
534 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
535
536         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
537         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
538         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
539         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
540         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
541         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
542           error/warning numbers,
543           added function setWarningDisabled()
544         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
545         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
546           _memcmp.c _memmove.c calloc.c realloc.c free.c
547         * support/regression/tests/malloc.c: added tests for new functionality
548         * support/regression/tests/zeropad.c: added tests for truncated initializers
549           and initialized char arrays starting with '\x0'
550         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
551
552 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
553
554         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
555
556 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
557
558         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
559         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
560         peephole 177.e. Thanks to anonymous
561
562 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
563
564         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
565         function isn't used in the source but referenced as a
566         variable initializer then declare it as extern in .asm file
567
568 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
569
570         * .version: increased version number to 2.4.3
571
572         Adding version extension according to ChangeLog CVS revision
573         * src/Makefile.in (target all): added dependency 'version.h'
574         * (rule version.h): added rule to create version.h from ChangeLog,
575         * (rule dep): added dependency version.h,
576         * src/version.awk: AWK script to create version.h
577         * src/SDCCdwarf2.c (dwWriteModule),
578         * src/SDCCglue.c (initialComments),
579         * src/SDCCmain.c (printVersionInfo): modified to write after
580         version string the version extension number,
581         * src/SDCCutil.c: included "version.h"
582         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
583         number,
584         * src/SDCCutil.h: added prototype for getBuildNumber
585
586         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
587         includeDirsSet, too,
588         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
589         const char [] is found in function prototype...
590
591         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
592         moving to WREG with source is already in WREG,
593         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
594         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
595         * (aopForSym): stack'ed symbols are partially supported, added
596         if-clause to support symbols in FARSPACE,
597         * (sameRegs): added test for AOP_ACC to see if registers are same,
598         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
599         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
600         * (pic16_popRegFromString): will not allocate a new register if it
601         doesn't find one by name, bug may have introduced...
602         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
603         * (genIpush): revived to use pic16 port's stack,
604         * (genAddrOf): added incomplete case for stack'ed operand,
605         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
606         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
607         can handle multibyte operands,
608         * src/pic16/glue.c (pic16_printIval*): some debug info added,
609         * (pic16initialComments): added message for MPLAB compatibility
610         mode enabled,
611         * src/pic16/main.h: prototype for pic16_mplab_comp,
612         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
613         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
614         * (_pic16_linkEdit): NEW, handles link stage, transferred here
615         because of increased complexity of procedure,
616         * (_process_pragma): stack pragma changed to format 'stack pos len',
617         emit symbol '_stack_end' to conform with gplink,
618         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
619         to search for register,
620         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
621         PO_GPR_REGISTER,
622         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
623         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
624         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
625         case for PO_GPR_REGISTER,
626         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
627         dies, the new era is ahead !...
628         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
629         pic16_dynInternalRegs,
630         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
631         * (pic16_allocDirReg): minor optimizations and bug fixes,
632         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
633
634         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
635         load stack and frame pointer with address of 'stack_end' symbol
636
637 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
638
639         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
640         without source code but only variable initializers
641
642 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
643
644         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
645         external are not declared as extern to reduce overhead while linking
646
647 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
648
649         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
650
651 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
652
653         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
654           Yee Keat for the patch
655         * src/SDCCast.c (decorateType): fixed bug #979599
656         * src/ds390/gen.h: removed local fReturnSizeDS390
657         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
658         * src/ds390/gen.c (genAnd, genOr, genXor),
659         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
660
661 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
662
663         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
664         add relFilesSet to $3, manipulate $2 to handle linking of object
665         files without source files in command line,
666         * device/include/pic16 (all headers): added ID location macros,
667         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
668         entries for ID location bytes,
669         * (pic16_assignIdByteValue): NEW,
670         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
671         added field dumpcalltree to pic16_options_t,
672         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
673         is used instead of pic16_Gstack_base_addr, check if (ifx) before
674         emitting rFalseIfx label after check_carry label,
675         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
676         pic16_emitDIRegs), NEW
677         * (pic16glue): dump .calltree file when option --calltree found,
678         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
679         * (_pic16_genAssemblerPreamble): emit ID locations after
680         configuration registers,
681         * (pic16_linkCmd): modifications of the link command,
682         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
683         * (pic16_pCodeInitRegisters): don't init stack registers,
684         * (pic16_findPrevInstruction): fixed bug,
685         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
686         bug with immediate registers,
687         * (buildCallTree): traces stack push and pop,
688         * (pct2): dump also stack usage for each function,
689         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
690         * (pic16_allocDirReg): various modifications,
691         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
692         fixed to 1,
693
694 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
695
696         * src/pic16/pcode.c: removed buggy double colon
697
698 2004-07-01 Borut Razem <borut.razem AT siol.net>
699
700         * support/scripts/sdcc.nsi: added include/pic16 to setup
701
702 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
703
704         * device/lib/Makefile.in: fixed bug in target objects-pic16,
705         * device/lib/pic16/Makefile: prefixed with dash (-) command under
706         target 'clean',
707         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
708         specific command line arguments. Also added sample lkr script
709         for placing a variable at a specific memory bank.
710         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
711         at a specific memory bank,
712         * (pic16_dump_isection): fixed bug which caused string literals to
713         be omitted when dumping idata section,
714         * (pic16_groupRegistersInSection): added code to handle registers
715         in specific memory banks,
716         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
717         public, all references are renamed too,
718         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
719         AOP_DPTR2,
720         * (pic16_storeForReturn): added case to handle when dest is WREG,
721         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
722         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
723         pic16_rel_udata, check to see if that register is marked as being
724         a member of a specific memory bank,
725         * (pic16_printIvalCharPtr): added code to add string literals either
726         to code or the idata sections,
727         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
728         also accept the 'udata' pragma,
729         * src/pic16/main.h: new structure types sectName and sectSym
730         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
731         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
732         * (pic16_findPrevInstruction): fixed, it returned nothing,
733         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
734         instruction combinations,
735         * (pic16_FixRegisterBanking): heavily reorganised,
736         * (pic16_AnalyzeBanking): if generating banksel directives is
737         disabled, then don't call FixRegisterBanking at all,
738         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
739         completely removed,
740         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
741
742 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
743
744         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
745         Phuah Yee Keat <yk.phuah AT nestac.com>
746
747 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
748
749         * src/pic16/glue.c (pic16createInterruptVect): function now emits
750         correctly the IVT even if it is relocated to some other location
751
752 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
753
754         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
755         * device/include/pic16/pic18f2220.h: NEW,
756         * device/lib/pic16/libdev/pic18f2220.c: NEW,
757         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
758         * src/pic16/device.c (struct Pics16): added info for 18f2220,
759         * src/pic16/device.h (struct pic16_options): added ivt_loc and
760         nodefaultlibs, ivt_loc is the location of the interrupt vector
761         table, and nodefaultlibs signs that default libraries should not be
762         linked in link stage,
763         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
764         according to --ivt-loc argument,
765         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
766         when pragma stack is found,
767
768 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
769
770         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
771         256 (range check), 257 (do while), 258.a-f (bit banging
772         f.e. on 3-wire SPI bus)
773
774 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
775
776         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
777         variables used exclusively within a loop
778
779 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
780
781         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
782
783 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
784
785         * src/SDCClrange.c (computeClash): fixed bug #971834
786
787 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
788
789         * src/mcs51/gen.c (genCmp): fixed bug #975903
790         * src/hc08/gen.c (operandsEqu),
791         * src/ds390/gen.c (operandsEqu),
792         * src/z80/gen.c (operandsEqu),
793         * src/pic/gen.c (operandsEqu),
794         * src/pic16/gen.c (operandsEqu),
795         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
796         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
797
798 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
799
800         * src/SDCCcse.c (cseBBlock): fixed bug #966963
801
802 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
803
804         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
805         default case in switch statement,
806         * glue.c (pic16_initPointer): expr is initialised via decoarteType
807         to eliminate problem with initialisation of pointers, but problem
808         still exists,
809         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
810         * (emitStaticSegment): removed various lines emitting debug info,
811         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
812         added processor registers for utilizing EEPROM,
813         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
814         configurable and set 8
815
816 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
817
818         * .version: increased version number to 2.4.2,
819
820         Cumulative patch for pic16 port
821         * src/pic16/device.c: changed scheme to dump initial values for
822         variables in idata segment, all print_idata* functions were removed,
823         now the pic16_printIval* will be called,
824         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
825         * _pic16_printPointerType, pic16_printPointerType,
826         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
827         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
828         NEW, similar to the respective functions in SDCCglue.c,
829         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
830         way, emitting hex bytes,
831         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
832
833 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
834
835         * src/avr/ralloc.c (serialRegAssign),
836         * src/xa51/ralloc.c (serialRegAssign),
837         * src/pic/ralloc.c (serialRegAssign),
838         * src/pic16/ralloc.c (serialRegAssign),
839         * src/hc08/ralloc.c (serialRegAssign),
840         * src/z80/ralloc.c (serialRegAssign),
841         * src/ds390/ralloc.c (serialRegAssign),
842         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
843
844 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
845
846         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
847         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
848
849 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
850
851         Cumulative patch for pic16 port:
852         * src/pic16/device.h (typedef PIC16_device) modified fields for
853         defining microcontrollers,
854         * src/pic16/device.c: added new info for all devices in Pics16 array,
855         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
856         to be optimised out by the pCode optimiser,
857         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
858         specially, bug reported by G.M. Gallant,
859         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
860         as force'd so that cannot be optimised out by pCode optimiser,
861         * src/pic16/pcode.c,
862         * src/pic16/pcodepeeph.c,
863         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
864         they are disabled by default, but can be enabled explicit with
865         command argument --denable-peeps, for testing,
866         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
867         --pomit-ivt in COMPILE_FLAGS
868
869 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
870
871         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
872           compilation on MSVC
873
874 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
875
876         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
877
878 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
879
880         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
881         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
882
883 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
884
885         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
886         would only assign 0x300001 register.
887
888 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
889
890         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
891         in COMPILE_FLAGS. Thanks to G. Gallant for report.
892
893 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
894
895         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
896         for ds80c400
897         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
898         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
899         added peephole 254 (left shift), 255 (jump table)
900
901 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
902
903         * device/lib/Makefile.in: removed comment line with model-pic16,
904         * (target port-specific-objects-pic16): the libraries and objects
905         are copied to the build directory form the device/lib/pic16/bin
906         directory
907
908         Cumulative patch concerning pic16 port:
909         * library directory has been re-organized,
910         * added support for PIC18F1220,
911         * added headers and library sources for chips 18f1220,18f6520,
912         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
913
914         * configuration registers setting has changed, now each supported
915         device has a complete description of the registers it uses,
916         * all initialisations are moved to idata sections, these section
917         can be absolute or relocatable,
918         * fixed initialisation of codespace variables,
919         * fixed warning about PCLATU and gpsim,
920         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
921         * (genAssign): use table reads when assigning from variables in codespace,
922         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
923         char/int variables placed in codespace,
924         * (pic16_emitConfigRegs): NEW, emits a list with configuration
925         registers set in .asm file, no need for --pomit-config-words anymore,
926         * (pic16glue): some 8051 legacy segments are commented out
927         (to be removed completely),
928         * added support for alternative assembler and linker with --asm=
929         and --link= command line arguments,
930         * peepholes are disabled automatically in the port, no need to
931         specify on command line,
932         * port supports natively char/int/long multiplication, but converts
933         all divisions to support functions,
934         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
935         to the file set in variable $2,
936         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
937         strings in ASCII format and not in hex,
938         * ralloc.c (serialRegAssign): added a triplet of conditional calls
939         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
940         allocate proper register if iCodes aren't temporary,
941
942 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
943
944         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
945
946 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
947
948         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
949         is commented out
950
951 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
952
953         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
954         computed address is reused
955         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
956         multi-byte bitfields
957
958 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
959
960         * src/z80/gen.c: (genArrayInit): must check for pointers too
961
962 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
963
964         * support/regression/tests/zeropad.c: never meant to commit the
965           nestedstruct test: removed, added check for GCC version
966
967 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
968
969         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
970         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
971         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
972           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
973           bugs 928906 and 954082 half-empty initializers
974         * src/SDCCsymt.h,
975         * src/SDCCsymt.c (getAllocSize): added for above fix
976         * src/z80/gen.c (genArrayInit): fixed bug 741044
977         * support/regression/tests/zeropad.c: added tests
978
979 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
980
981         * src/pic16/device.c (pic16_dump_section): corrected bug which
982         caused some symbols of the libraries to be misplaced
983
984 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
985
986         * src/pic16/glue.c,
987         * src/pic16/ralloc.h,
988         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
989         to fix conflict with pic port
990
991 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
992
993         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
994         externs configuration variables,
995         * src/pic16/ralloc.h,
996         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
997         prototype in header, commented out some debug messages
998
999 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
1000
1001         * src/pic16/glue.c,
1002         * src/pic16/main.c,
1003         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
1004         for gpasm COFF object generation. Thanks to D. Hawkins for
1005         his patch info
1006
1007 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1008
1009         * src/ds390/main.c,
1010         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
1011         Brock for spotting this)
1012         * src/ds390/gen.c (genEndFunction),
1013         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
1014         interrupt handler and critical. Disable push/pop optimizations when
1015         peephole optimizations disabled.
1016
1017 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
1018
1019         Updated pic16 library sources and headers.
1020         * device/lib/pic16/pic18f*/ ,
1021         * device/include/pic16/*.h: modified to handle structured SFR
1022         definitions
1023
1024 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
1025
1026         * src/port.h (PORT structure): added hook initPaths, now each
1027         port can declare its own default search paths,
1028         which can been seen with the --print-search-dirs option,
1029         see pic16 port for example,
1030         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
1031         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
1032         * (doPrintSearchDirs): NEW, replaces in a central manner the
1033         printing of search dirs which was split in set*Paths functions,
1034         * (main): added call to port->initPaths and doPrintSearchDirs,
1035         * src/avr/main.c,
1036         * src/ds390/main.c,
1037         * src/hc08/main.c,
1038         * src/izt/i186.c,
1039         * src/izt/tlcs900h.c,
1040         * src/mcs51/main.c,
1041         * src/pic/main.c,
1042         * src/pic16/main.c: modified port structures to reflect addition of
1043         initPaths hook,
1044
1045         * src/pic16/device.c (regCompare): registers are finally sorted by name,
1046         * (pic16_dump_section): for registers in same address reserve memory once,
1047         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
1048         to no_banksel,
1049         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
1050         result is greater in size than right or left,
1051         * (pic16_genUMult8X8_8): there are some cases where the result can
1052         be 16 bits size, so handle these,
1053         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
1054         * (pic16_outBitC): modified to emit pcodes,
1055         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
1056         or not,
1057         * (genDivOneByte): implemented algorithm to divide 8-bits,
1058         * (genCmp): uncommented goto, but issues still exist,
1059         * (genAnd): fixed a bug with variables >8bits,
1060         * (genPackBits): optimization added that uses BCF/BSF to change a
1061         single bit,
1062         * (genAssign): fixed bug when assigning floating point literals,
1063         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
1064         __sdcc_gsinit_startup label,
1065         * src/pic16/main.c (_pic16_init): removed search directory
1066         initialisations,
1067         * (_pic16_initPaths): NEW, used to initialise search directories,
1068         * (_hasNativeMulFor): support functions for all except char/int
1069         multiplication, and char division,
1070         * (PIC16_port struct): modified entry for native mul support,
1071         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
1072         no_banksel option,
1073         * (buildCallTree): call to register_usage is ifdef'ed out,
1074
1075 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1076
1077         * device/include/string.h: applied Stas Sergeev's patch to make this
1078         header file compatible with the preprocessor -Wundef option
1079         * src/SDCCmain.c (main): abort compilation if preprocessor reports
1080         failure (fixes bug #941458)
1081
1082 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1083
1084         * src/SDCCopt.c (killDeadCode): fixed bug #907733
1085         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
1086         that the variable, not the function, should be static
1087         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
1088         to be consistent with non-literal case
1089
1090 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1091
1092         * src/SDCCast.c (isConformingBody): fixed bug #949967
1093         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
1094         convilong): fixed bug #952086
1095
1096 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1097
1098         * src/SDCCmem.c (allocVariables): fixed bug #955321
1099
1100 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1101
1102         * src/hc08/main.c (_hc08_genAssemblerEnd),
1103         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
1104         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
1105         completely eliminated the use of a temporary file
1106         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
1107         when more than one file linked
1108         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
1109
1110 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1111
1112         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
1113         which fixes bug #543481
1114         * support/regression/tests/bug-751703.c: fixed comments left from a
1115         cut and paste error
1116         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
1117         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
1118         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
1119         scopes
1120         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
1121         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
1122         are now changed to underscores in moduleName
1123
1124 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1125
1126         * as/mcs51/lkmem.c: better fix for bug #954173
1127
1128 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
1129         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1130
1131         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
1132         * device/include/c8051f000.h,
1133         * device/include/c8051f120.h,
1134         * device/include/c8051f300.h,
1135         * device/include/c8051f310.h,
1136         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
1137         PWM16) and detab'ed
1138
1139 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1140
1141         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
1142         and mailing lists, doc'ed --no-peep-comments, removed reference
1143         to knoppix (newest version has no LyX/LaTeX), other minor changes
1144         * src/SDCCglue.c (glue): save 2 bytes stack space with
1145         option --main-return. The ljmp could probably be avoided too
1146
1147 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1148
1149         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
1150
1151 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1152
1153         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
1154         * src/SDCCopt.c (isLocalWithoutDef),
1155         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
1156         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
1157         (credit to Maarten Brock for patch #949363, on which this is based)
1158         * support/regression/tests/bug-751703.c: some test cases of extern used
1159         within inner scopes.
1160
1161 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1162
1163         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
1164         SPEC_STRUCT
1165         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
1166         struct definitions
1167         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
1168         dwWriteLabel): fix to create valid debugger symbols even when
1169         the module name has non-alphanumeric symbols in it
1170         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
1171         when a variable's allocation has been optimized away
1172
1173
1174 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1175
1176         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
1177         * src/hc08/main.c,
1178         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
1179         * src/mcs51/main.c,
1180         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
1181         * src/ds390/main.c,
1182         * src/z80/gen.c (z80_emitDebuggerSymbol),
1183         * src/z80/main.c,
1184         * src/pic/gen.c (pic14_emitDebuggerSymbol),
1185         * src/pic/main.c,
1186         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
1187         * src/pic16/main.c,
1188         * src/avr/gen.c (avr_emitDebuggerSymbol),
1189         * src/avr/main.c,
1190         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
1191         * src/xa51/main.c,
1192         * src/SDCCdebug.c (emitDebuggerSymbol),
1193         * src/SDCCdebug.h,
1194         * src/port.h: added a debugger struct to the port struct. Added a
1195         callback for defining debugger symbols
1196
1197         * src/SDCCast.c (createLabel),
1198         * src/SDCC.y (labeled_statement): mark all compiler generated labels
1199         with isitmp = 1
1200         * src/SDCCicode.h,
1201         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
1202         iCode back to the ast for the function
1203
1204         * src/hc08/ralloc.c (hc08_assignRegisters),
1205         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
1206         unneeded fields from the regs struct.
1207         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
1208         pushReg() & pullReg() functions instead of emitcode()
1209
1210         * src/hc08/gen.c (genLabel, genhc08Code),
1211         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
1212
1213         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
1214         debugger hooks
1215
1216         * src/hc08/gen.c (genEndFunction, genhc08Code),
1217         * src/hc08/gen.h,
1218         * src/mcs51/gen.c (genEndFunction, gen51Code),
1219         * src/mcs51/gen.h,
1220         * src/ds390/gen.c (genEndFunction, gen390Code),
1221         * src/ds390/gen.h,
1222         * src/z80/gen.c (genEndFunction, genZ80Code),
1223         * src/z80/gen.h,
1224         * src/z80/z80.h,
1225         * src/pic/gen.c (genEndFunction, genpic14Code),
1226         * src/pic/gen.h,
1227         * src/pic16/gen.c (genEndFunction, genpic16Code),
1228         * src/pic16/gen.h,
1229         * src/avr/gen.c (genEndFunction, genAVRCode),
1230         * src/avr/gen.h,
1231         * src/xa51/gen.c (genEndFunction, genXA51Code),
1232         * src/xa51/gen.h,
1233         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
1234         specific code to cdbFile.c and out of the backend code generators
1235
1236         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
1237         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
1238         starting address is now 0
1239
1240         * as/hc08/asm.h,
1241         * as/hc08/m08pst.c,
1242         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
1243         assembler directive for DWARF support
1244         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
1245
1246         * src/src.dsp,
1247         * src/Makefile.in,
1248         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
1249
1250 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1251
1252         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
1253         and inappropriate peephole optimization in jump tables
1254
1255 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1256
1257         * as/hc08/m08pst.c,
1258         * src/SDCCglue.c: sdccopt works for the hc08 port now
1259
1260 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
1261
1262         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
1263
1264 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1265
1266         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
1267
1268 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1269
1270         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
1271         rules
1272         * src/SDCCmain.c,
1273         * src/SDCCglobl.h,
1274         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
1275         comments from the peephole optimizer replacement rules
1276         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
1277         symbols
1278         * src/SDCCcse.c (updateSpillLocation),
1279         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
1280         equivalents
1281         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
1282         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
1283         objects far pointers
1284
1285 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1286
1287         * src/SDCCsymt.h: a missing part of my last change
1288         * src/pic/ralloc.c (regTypeNum),
1289         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
1290
1291 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1292
1293         * src/SDCCicode.h,
1294         * src/SDCCicode.c (aggrToPtrDclType),
1295         * src/SDCCptropt.h,
1296         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
1297         ptrPseudoSymConvert),
1298         * src/pic/ralloc.c (regTypeNum),
1299         * src/pic16/ralloc.c (regTypeNum),
1300         * src/hc08/ralloc.c (regTypeNum),
1301         * src/ds390/ralloc.c (regTypeNum),
1302         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
1303         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
1304
1305 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1306
1307         * link/z80/lkmain.c (afile),
1308         * as/hc08/lkmain.c (afile),
1309         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
1310         prevent a pointer problem when a filename has no directory and
1311         no extension specified.
1312
1313 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1314
1315         * link/z80/lkmain.c (afile): allow periods in directory names
1316         * link/z80/lkmain.c (afile),
1317         * as/mcs51/lkmain.c (afile),
1318         * as/hc08/lkmain.c (afile): allow linker script file to have an
1319         extension other than ".lnk"
1320         * link/z80/lklex.c (getfid),
1321         * link/z80/lkmain.c (parse),
1322         * as/mcs51/lklex.c (getfid),
1323         * as/mcs51/lkmain.c (parse),
1324         * as/hc08/lklex.c (getfid),
1325         * as/hc08/lkmain.c (parse): Support comments in the linker script
1326         file on lines by themselves and after filenames
1327
1328 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1329
1330         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
1331
1332 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1333
1334         * src/z80/peeph-z80.def: removed some peephole rules that don't
1335         work with multibyte arithmetic (fixed bug #937126)
1336         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
1337         to registers and not global variables
1338         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
1339         geniCodePreInc, geniCodePostDec, geniCodePreDec,
1340         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
1341         checking for assignments not internally generated (fixed bug #931895)
1342         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
1343         structure member (fixed bug #930072)
1344
1345 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1346
1347         * src/SDCCmain.c (linkEdit),
1348         * src/hc08/main.c (_hc08_parseOptions),
1349         * as/hc08/Makefile.in,
1350         * as/hc08/aslink.h,
1351         * as/hc08/asm.h,
1352         * as/hc08/m08pst.c,
1353         * as/hc08/lkrloc.c (relr, rele),
1354         * as/hc08/lkarea.c (lnkarea)
1355         * as/hc08/lkmain.c (afile, parse),
1356         * as/hc08/lkelf.c: support for ELF output
1357         * as/hc08/lks19.c (s19),
1358         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
1359
1360 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1361
1362         * as/mcs51/lkihx.c: Fixed bug #899105.
1363
1364 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1365
1366         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
1367         .dsp files from Unix to DOS.
1368
1369 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1370
1371         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
1372         function pointers; we have been compliant for several months now.
1373         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
1374         change that was accidently commented out
1375         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
1376         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
1377         bug #922319
1378
1379 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1380
1381         * src/hc08/gen.c: output of all of the internal debugging information
1382         is now controlled by the D() macro; it is disabled by default
1383
1384 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1385
1386         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
1387         harder to keep the same registers during a CAST iCode
1388         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
1389         long via int can be done in a single cast, if the signedness is
1390         correct.
1391         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
1392         putchar() in tinibios.c in ds390's library
1393
1394 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
1395
1396         * src/SDCCast.c (decorateType): fixed bug #898889,
1397         cast result of a literal complement too
1398         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
1399         fixed check for bitfields
1400
1401 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
1402
1403         * src/SDCCicode.c (geniCodeLogic): made it static,
1404         (geniCodeLogicAndOr): added in order to fix bug #905492,
1405         (ast2iCode): fixed bug #905492
1406         * support/regression/tests/bug-905492.c: added
1407         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
1408         (processParms): fixed bug #927659: don't copy parms, this will clear
1409         decorated flag
1410         * support/regression/tests/bug-927659.c: added
1411
1412 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
1413
1414         * src/SDCCast.c (addCast): don't cast float to char
1415         * device/lib/libsdcc.lib: added _memmove
1416
1417 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
1418
1419         * device/lib/large/Makefile: fixed parallel execution by
1420         replacing `make` by `$(MAKE)`
1421
1422 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1423
1424         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
1425         offsets (fixes bug #923936)
1426
1427 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
1428
1429         * device/lib/small/Makefile: fixed parallel execution by
1430         replacing `make` by `$(MAKE)`
1431
1432 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
1433
1434         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
1435
1436 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
1437
1438         * src/pic/gen.c (genCpl): multi-byte complements were not working.
1439         * src/regression/Makefile: Regression test was not running.
1440
1441 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
1442
1443         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
1444         complement if possible
1445         * src/SDCCval.c (valComplement),
1446         * src/SDCCicode.c (operandOperation): fixed complement of literal
1447         * support/regression/tests/onebyte.c (testComplement): added
1448
1449 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
1450
1451         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
1452         return an optimized tree; actually replace actParm with the new tree
1453         * src/SDCCast.h: added some parantheses to remove side effects
1454         * support/regression/tests/bug-920866.c
1455
1456 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
1457         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
1458         Bit operands were not being handled properly in the pic14 port.
1459         (now src/regression/add.c passes again).
1460
1461 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1462
1463         * src/SDCC.y (labeled_statement): case and default no longer require
1464         a following statement (RFE #893037)
1465
1466 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1467
1468         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
1469         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
1470         disabled (fixes bug #916294)
1471         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
1472         "mov a,acc"; patch provided by Lenny Story
1473         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
1474
1475 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1476
1477         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
1478         functions
1479         * src/ds390/gen.c (genFunction, genEndFunction),
1480         * src/ds390/ralloc.c (ds390_assignRegisters),
1481         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
1482         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
1483         pushed if there are parameters passed on the stack. Also, a cleaner
1484         way to decide if r0/r1 should be pushed/popped. (Together they fix
1485         bug #918693)
1486
1487 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1488
1489         * doc/sdccman.lyx,
1490         * device/lib/mcs51/crtpagesfr.asm,
1491         * device/lib/mcs51/crtxinit.asm,
1492         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
1493         to avoid confusion with Si Lab's SFRPAGE register.
1494
1495 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1496
1497         * src/SDCCglue.c (emitMaps): allow public sfr variables
1498         * src/SDCCglue.c (initialComments): include compiler build date
1499         with compiler version and put the timestamp of the generated
1500         assembly file on a serperate line to be less confusing.
1501         * src/port.h: added genInitStartup hook
1502         * src/avr/main.c,
1503         * src/ds390/main.c,
1504         * src/hc08/main.c,
1505         * src/pic/main.c,
1506         * src/pic16/main.c,
1507         * src/xa51/main.c,
1508         * src/z80/main.c: genInitStartup initialize as NULL (default to
1509         historical behaviour)
1510         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
1511         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
1512         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
1513         library instead of hard coding it into the compiler.
1514         * support/regression/ports/mcs51-stack-auto/spec.mk,
1515         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
1516         * device/lib/mcs51/Makefile,
1517         * device/lib/small/Makefile,
1518         * device/lib/large/Makefile,
1519         * device/lib/mcs51/crtpagesfr.asm,
1520         * device/lib/mcs51/crtstart.asm,
1521         * device/lib/mcs51/crtxclear.asm,
1522         * device/lib/mcs51/crtxinit.asm,
1523         * device/lib/mcs51/crtclear.asm,
1524         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
1525         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
1526         and into user configurable files.
1527         * device/lib/clean.mk: clean mcs51 directory too
1528         * support/regression/tests/longlit.c: added static to T1 declaration
1529         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
1530         accesses in the initialization code
1531
1532 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1533
1534         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
1535         OSCTRIMVAL as noted in bug #916008
1536
1537 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1538
1539         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
1540         in loops with multiple exits (reported as incorrect registers
1541         used by Martin Helmling in Sdcc-user list)
1542
1543 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1544
1545         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
1546         made ds390 register extensions look less like error messages
1547
1548 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1549
1550         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
1551         reported by Adam Wozniak in Sdcc-user list
1552
1553 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
1554
1555         * src/SDCCast.c (decorateType): fixed with bug and promotion in
1556         arithmetic optimizations, added debug output
1557
1558 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
1559
1560         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
1561         * sdcc.spec: updated and split sdcc into 3 rpms
1562         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
1563         needed for literals of LEFT_OP and '+'
1564         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
1565         introduced RESULT_TYPE_NOPROM
1566         (geniCodeMultiply): fixed logic for decision if mul is optimized to
1567         left shift
1568         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
1569         limited promotion to int only for '*'
1570         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
1571
1572 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
1573
1574         * src/pic16/gen.c (genSkip),
1575         (genc16bit2lit), (gencjneshort): commented out
1576         (is_LitOp): new helper function, checks operand type
1577         (genCmpEq): rewritten
1578
1579 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
1580
1581         * support/regression/tests/bug-908454.c: added
1582
1583 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
1584
1585         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
1586         * src/SDCCicode.c (usualBinaryConversions): op needs int type
1587         (geniCodeCast): cosmetic, don't preserve bit storage class
1588         (geniCodeLeftShift): added promotion
1589         (geniCodeLogic): fixed regression
1590         * src/SDCCsymt.c (computeTypeOr): accept bits too
1591         (compareType): 2nd part of fix for bug #908454, needed for bitfields
1592
1593 2004-03-07  Borut Razem <borut.razem AT siol.net>
1594
1595         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
1596
1597 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
1598
1599         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
1600         version of pic16_genPackRegisters which does not check if ic is a
1601         CAST operator,
1602         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
1603         function cause string1.c regression test fails
1604
1605 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
1606
1607         * sim/ucsim/configure.in,
1608         * sim/ucsim/configure,
1609         * sim/ucsim/doc/Makefile.in: use docdir
1610         * src/SDCC.y: fixed sbit atrributes
1611         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
1612         * src/SDCCast.c (decorateType): |^& need special promotion handling
1613         * src/SDCCast.h,
1614         * src/SDCCsymt.h: moved definition of RESULT_TYPE
1615         * src/SDCCsymt.h (computeType),
1616         * src/SDCCicode.c: computeType() needs op
1617         * src/SDCCsymt.c (checkTypeSanity),
1618         * doc/sddman.lyx: "plain" bitfields are unsigned
1619         * src/SDCCsymt.c (computeTypeOr): added
1620         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
1621         |^& ops
1622         * src/SDCCval.c (val*): computeType() needs op
1623         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
1624         * support/regression/tests/onebyte.c: added tests for |^&
1625
1626 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
1627
1628         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
1629         for writing icode into asm output.
1630
1631 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
1632
1633         * src/pic16/device.c: added some debug lines enabled
1634         with macro DEBUG_CHECK,
1635         * src/pic16/genarith.c: more debug in genPlus,
1636         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
1637         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
1638         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
1639         * (aopForSym): onStack symbols are re-placed in data memspace,
1640         and onStack flag is cleared,
1641         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
1642         copy temporary pcodeop,
1643         * (genPcall): added warning for not updating PCLATU,
1644         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
1645         always true for pic16 port,
1646         * (genMultOneWord): NEW, supports integer multiplication,
1647         * (genMult): modified to call genMultOneWord,
1648         * (ifxForOp): added warning when return NULL,
1649         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
1650         flag is set before call to operandFromSymbol for implicit
1651         added structures,
1652         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
1653         options.intlong_rent are set by default,
1654         * (_hasNativeMulFor): modified to allow port generation of integer
1655         multiplication,
1656         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
1657         set regtype to REG_SFR for all registers, restricting seting the
1658         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
1659
1660 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1661
1662         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
1663         more than 500 times in the regression tests
1664
1665 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1666
1667         * support/Util/SDCCerr.h,
1668         * support/Util/SDCCerr.c,
1669         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
1670         enumerator_list),
1671         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
1672         for symbol conflicts.
1673         * support/valdiags/tests/enum.c,
1674         * support/valdiags/tests/tentdecl.c,
1675         * support/valdiags/tests/struct.c: expect possible error messages
1676         referring to original symbol definitions.
1677         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
1678         * src/SDCCsymt.h,
1679         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
1680
1681 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
1682
1683         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
1684
1685 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
1686
1687         * src/pic16/ralloc.c (newReg): fixed bug #908929
1688
1689 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1690
1691         * src/ds390/gen.c: added missing #include "main.h"
1692
1693 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
1694
1695         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
1696         checking if symbol is already in set,
1697         * src/pic16/device.h: prototype for checkAddSym,
1698         * src/pic16/gen.c: (_G): added entry interruptvector,
1699         * (assignResultValue): removed some commented out lines,
1700         * (genFunction): check for ISR via sym->type, absolute section for
1701         interrupt code is created via a new pBlock, the goto instruction is
1702         placed now correctly at the interrupt vector position, changed all
1703         references from ivec to _G.interruptvector,
1704         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
1705         is the interrupt is a high priority one, same for return from ISR,
1706         * src/pic16/glue.c: changed all calls of addSetHead for publics and
1707         externs to calls of checkAddSym,
1708         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
1709         pic16_pcode_verbose flag is set,
1710         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
1711         * src/pic16/pcoderegs.c: message about how many registers are saved
1712         will only be emitted if pic16_pcode_verbose flag is set,
1713
1714 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1715
1716         * src/ds390/ralloc.h,
1717         * src/ds390/ralloc.c (ds390_regWithIdx),
1718         * src/ds390/gen.c (emitcode),
1719         * src/ds390/main.h,
1720         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
1721         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
1722         ds390operandCompare, getRegsRead, getRegsWritten,
1723         initializeAsmLineNode): customized instruction size calculation for
1724         ds390, started basis for some register optimizations
1725         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
1726         corresponding assembly output
1727         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
1728         missing push/pop of r0/r1. Optimized push/pops
1729
1730 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1731
1732         * src/mcs51/main.c (instructionSize): fixed ACALL size
1733         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
1734
1735 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
1736
1737         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
1738         the sorting of rlist with NULL elements
1739         * (print_idataType, print_idata): NEW to create idata sections
1740         * src/pic16/device.h: idataSymSet new variable
1741         * src/pic16/gen.c (genFunction): fixed some bugs in string
1742         comparing, improved the absolute section creation for ISRs,
1743         added FSR0L/FSR0H in registers that are saved in an ISR,
1744         * (genInline): fixed the processing of inline snippets,
1745         now they undergo no process by the peephole optimizer
1746         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
1747         are placed in idataSymSet,
1748         * (pic16emitStaticSeg): extern symbols are added in externs,
1749         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
1750         switching when aboslute variables are placed in access bank memory
1751         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
1752         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
1753         commented out with #if,
1754         * (pic16_packRegisters): reintroduce the check for CAST because some
1755         symbols are not correctly handled,
1756         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
1757         pCodeInstruction instead of pCode,
1758         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
1759         pCodeAsmDir definition,
1760         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
1761         directive, then the argument directive is emitted without the leading
1762         tab, hack for inline labels which must be in the first column,
1763         * (compareLabel,pic16_findNextInstruction),
1764         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
1765         * (insertBankSwitch): modified for the new pCodeAsmDir,
1766
1767 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
1768         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
1769
1770         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
1771         instance,
1772         * (pushSide): commented out with #if,
1773         * (assignResultValue): fixed some typos in saving
1774         registers,
1775         * (genPcall): FIXED and sync'ed with genCall,
1776         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
1777         * (genNearPointerGet): fixed to handle some more cases,
1778         implementation scheme via table reads,
1779         * (genConstPointerGet): modified to access code memory correct,
1780         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
1781         and improved to handle some cases
1782         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
1783         instead of "RETLW" for init data
1784         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
1785         not IN_DIRSPACE, work around to reduce bank switching when aboslute
1786         variables are placed in access bank memory (<0x80 and >=0xf80),
1787         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
1788         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
1789         TBLWT_POSTDEC,TBLWT_PREINC
1790         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
1791         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
1792         directives
1793         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
1794         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
1795         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
1796         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
1797
1798 2004-02-29  Borut Razem <borut.razem AT siol.net>
1799
1800         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
1801         support/Util/findme.h, support/Util/system.h: enhance binary relative
1802         search for lib and include by using findProgramPath()
1803
1804 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1805
1806         * src/SDCCpeeph.h,
1807         * src/SDCCpeeph.c (pcDistance),
1808         * src/port.h,
1809         * src/mcs51/ralloc.h,
1810         * src/mcs51/ralloc.c (mcs51_regWithIdx),
1811         * src/mcs51/main.h,
1812         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
1813         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
1814         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
1815         size calculation port specific, started basis for some register
1816         optimizations
1817         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
1818         missing push/pop of r0/r1. Optimized push/pops
1819         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
1820         * device/lib/_modsint.c (_modsint),
1821         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
1822         and stack version so regression tests pass
1823
1824 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
1825
1826         * src/Makefile.in (dep): include SLIBOBJS in dependency check
1827         * src/SDCCast.c (decorateType): catch another small optimization
1828         with '?' operator
1829         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
1830         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
1831         modified to finally use computeType() all over SDCC,
1832         see Feature Request #877103
1833         * src/SDCCval.h: cosmetic
1834         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
1835         valCompare(); regression tested in muldiv.c
1836         * support/regression/tests/muldiv.c (testMod): mod sign follows
1837         dividend only
1838
1839 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
1840
1841         * src/SDCCast.c (decorateType): fixed bug #902362
1842         * doc/INSTALL.txt: fixed install instructions for win32
1843
1844 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
1845
1846         * device/include/Makefile.in (install): fixed by replacing spaces
1847         by tabs
1848         * doc/README.txt,
1849         * doc/INSTALL.txt: updated for release
1850         * doc/sdccman.lyx: added warning for --xstack being buggy
1851
1852 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
1853
1854         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
1855         to eliminate build warnings.
1856         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
1857
1858 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
1859            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
1860
1861         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
1862         removed -penable-stack, added comment for stack pragma, added
1863         warning for not initializing the stack/frame registers, removed
1864         comment at interrupts section
1865
1866         Stack is made permanent, there is no ability to disable stack usage.
1867         * src/pic16/device.h,
1868         * src/pic16/device.c: removed all references to USE_STACK macro,
1869         * src/pic16/device.c (pic16_dump_section): when no elements in
1870         rlist, free rlist before return,
1871         * (pic16_dump_int_registers): NEW, internal registers are a new set
1872         of general purpose registers reused by each function,
1873         * (checkAddReg): returns 1 if registers is added to set,
1874         * (pic16_groupRegistersInSection): when a registers is of type
1875         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
1876         * src/pic16/device.h: memRange and Assigned Memory are deleted,
1877         SRCASECMP macro is moved here from device.c
1878         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
1879         PO_PCLATU, PO_PRODL, PO_PRODH,
1880         * (pic16_pCodeOpType, genMinus,
1881         changed compares to "a" register, with AOP_ACC,
1882         * (pic16_genPlus): fixed some bugs and indented properly,
1883         * (pic16_addSign): changed size to size+offset in the MOVWF
1884         instruction,
1885         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
1886         multiply 8-bit operand by literal, result is 8-bit,
1887         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
1888         multiply 2 8-bit operand, result is 8-bit,
1889         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
1890         genUMult8X*_16,
1891         * src/pic16/gen.c: changed accUse to contain WREG only,
1892         * (pic16_emitcomment): renamed to pic16_emitpcomment,
1893         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
1894         true, do not use immediate addressing any more unless sym is a
1895         pointer in codespace,
1896         * (aopForRemat): do not use immediate addressing when symbol not in
1897         codespace and when symbol's address is requested,
1898         * (aopOp): for-loop in if(sym->accUse) is modified for the new
1899         accUse size (= 1),
1900         * (aopGet): added case for AOP_ACC and don't return "accumulator
1901         bug" but WREG instead,
1902         * (popGetTempReg): pushes contents of temporary register in stack,
1903         * (popReleaseTempReg): pops contents of temporary register from
1904         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
1905         * (pic16_popGet): separated case AOP_ACC to return register WREG
1906         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
1907         or PO_IMMEDIATE and initializes their instance/offset appropriately,
1908         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
1909         the use of immediate pointers to certain cases only.
1910
1911         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
1912         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
1913         * (assignResultValue, genCall, genRet): modified to use the new
1914         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
1915         genPcall is still broken,
1916         * (genFunction): added code to create 'A' type pBlocks when
1917         interrupt functions are generated, code not extensively tested yet,
1918         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
1919         * (genEndFunction): modified so ISRs pop stored registers from stack,
1920         * (genMultOneByte): cleanup,
1921         * (AccRsh): added flag andmask, to and result with appropriate mask,
1922         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
1923         * (genDataPointerGet): fixed and reenabled its use,
1924         * (genNearDataPointerGet): bugs fixed,
1925         * (genDataPointerSet): bugs fixed,
1926         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
1927         pic16_DumpSymbol, pic16_DumpOp,
1928         * src/pic16/genutils.h: function prototypes for the above functions,
1929         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
1930         pointers,
1931         * (pic16emitRegularMap): many many many improvements, but needs a
1932         major cleanup,
1933         * src/pic16/main.c: enable_stack in pic16_options is removed,
1934         * (_pic16_parseOptions): removed command line options -penable-stack,
1935         * (_process_pragma): emit stack symbol only when stack pragma is
1936         processed,
1937         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
1938         redirected to FSR0L/FSR0H pair,
1939         * (pic16_get_op, pic16_get_op2): modifications and improvements,
1940         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
1941         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
1942         for immediates,
1943         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
1944         * (dumpPicOptype): NEW,
1945         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
1946         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
1947         with movff instruction,
1948         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
1949         added pic16_int_regs, some packRegsFor* functions are commented out,
1950         because produce errors,
1951         * src/pic16/NOTES: minor modifications
1952
1953 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1954
1955         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
1956         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
1957         --pack-iram.
1958         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
1959         * as/mcs51/lkaomf51.c: fixed bug #895763
1960
1961 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
1962
1963         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
1964
1965 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1966
1967         * doc/sdccman.lyx: added details about the HC08 storage classes and
1968         interrupts, fixed the register usage info for z80 & gbz80
1969
1970 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
1971
1972         * doc/sdccman.lyx: added more pic16 port documentation
1973         * device/include/pic16/: added header pic18fregs.h
1974
1975 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
1976
1977         * doc/sdccman.lyx: added Vangelis' contribution
1978
1979 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1980
1981         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
1982         extend to the next CALL or PCALL, not just to the next CALL.
1983
1984 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
1985
1986         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
1987
1988 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1989
1990         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
1991         bug #895752 and a better fix for bug #716790
1992
1993 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1994
1995         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
1996
1997 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1998
1999         * doc/sdccman.lyx: minor changes, minor changed
2000
2001 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
2002
2003         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
2004         which can't handle SDCC_NEWONEBYTEOPS,
2005         (geniCodeMultiply): removed conversion from mult to shift for pic14
2006         and pic16
2007
2008 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2009
2010         * src/hc08/gen.h,
2011         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
2012         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
2013         thus fixing bug #895406
2014
2015 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
2016
2017         * device/lib/_modsint.c,
2018         * device/lib/_modslong.c: sign follows divisor only
2019         * src/hc08/gen.c (genMultOneByte): if result size is 1,
2020         signs or signedness can be ignored
2021         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
2022         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
2023         added optimization for IFX,
2024         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
2025         arguments;
2026         reenabled optimization for IFX, which was removed on 2004-01-11
2027         * src/SDCCast.h: added return type IFX
2028         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
2029         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
2030         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
2031         SDCC_OLDONEBYTEOPS selects the old behaviour
2032         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
2033         changed again and commented promotion rule
2034         * src/SDCCval.c (valDiv): promotion no longer necessary
2035         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
2036         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
2037         rewritten
2038         * support/regression/tests/onebyte.c: added
2039
2040 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
2041
2042         * gen.c (genInline): reverted to old code for assemnling inline
2043         code because of bug reported James Chadd
2044
2045 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
2046
2047         * ralloc.h: missing declarations from previous patch,
2048         seems that patch for ralloc.h was never applied, fixed
2049
2050 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
2051            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
2052
2053         * pcode.c,
2054         * pcode.h,
2055         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
2056         indirect addressing. Marked FSR0 as deprecated
2057         * gen.c (pointerCode): commented out, not needed now
2058         (pic16_popGet2p): new MOVFF helper function
2059         (genGenPointerGet),
2060         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
2061         (shiftRLong): removed duplicate debugging info
2062
2063 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2064
2065         * src/ds390/gen.c (genNearPointerGet),
2066         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
2067         optimization with bits, but not bitfields.
2068         * src/ds390/ralloc.c (packRegisters),
2069         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
2070
2071 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
2072
2073         * src/SDCCcse.c (algebraicOpts): copy operands before modification
2074
2075 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2076
2077         * src/SDCCsymt.h,
2078         * src/SDCCicode.c (operandFromSymbol),
2079         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
2080         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
2081         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
2082         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
2083         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
2084         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
2085         bug #892038
2086         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
2087         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
2088         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
2089         * src/SDCCsymt.c (newSymbol),
2090         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
2091         enumerator_list),
2092         * src/SDCCval.h,
2093         * src/SDCCval.c (newiList): fixed bug #885705
2094
2095 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2096
2097         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
2098         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
2099
2100 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2101
2102         * device/include/c8051f120.h,
2103         * device/include/c8051f300.h,
2104         * device/include/c8051f310.h: added/updated header files for Silicon
2105         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
2106         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
2107         in new section Submitting patches
2108
2109 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2110
2111         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
2112         genFarPointerGet, genCodePointerGet, genGenPointerGet,
2113         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
2114         genGenPointerSet),
2115         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
2116         genFarPointerGet, genCodePointerGet, genGenPointerGet,
2117         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
2118         genGenPointerSet),
2119         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
2120         genFarPointerGet, genCodePointerGet, genGenPointerGet,
2121         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
2122         genGenPointerSet),
2123         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
2124         genFarPointerGet, genCodePointerGet, genGenPointerGet,
2125         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
2126         genGenPointerSet): fixed bug #892400
2127         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
2128         to eliminate build warnings.
2129         * src/SDCCast.c (processParms),
2130         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
2131         fixed bug 751859
2132         * support/valdiag/valdiag.py: added GCC to the list of defines active
2133         when compiling with gcc
2134
2135 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2136
2137         * support/Util/SDCCerr.h,
2138         * support/Util/SDCCerr.c,
2139         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
2140         with an incomplete type (fixed bug #883734)
2141         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
2142
2143 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2144
2145         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
2146
2147 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2148
2149         * src/SDCCast.c (decorateType),
2150         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
2151         function pointer implementation
2152         * support/regression/tests/funptrs.c: added tests to verify both forms
2153         of function pointers work correctly. Added tests to verify parameters
2154         are passed in the correct order.
2155
2156 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
2157
2158         * device.c (regCompare): registers are sorted by ascending
2159         address and increasing size,
2160         * main.c (_pic16_finaliseOptions): removed the declaration
2161         of compiler macro MCU. Now a macro of the format pic18fxxxx
2162         will be defined from the command line
2163
2164 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
2165             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
2166
2167         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
2168         PCOP_RLCF was overwritten!
2169         * gen.c (genSkip): commented out calls to pic16_emitcode,
2170         * (genCmpEQ): fixed "long" compares, only high word did get compared,
2171         * (genlshTwo),
2172         * (genRRC): added debugging info,
2173         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
2174         overwritten while shifting,
2175         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
2176         overwritten while shifting,
2177         * (AccLsh),
2178         * (AccRsh),
2179         * (shiftLLeftOrResult),
2180         * (shiftRLeftOrResult),
2181         * (shiftRLong),
2182         * (shiftLLong): Implemented with pic16_emitpcode
2183         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
2184         * (genLeftShift): Fixed bug, operand for shift by variable always
2185         was "and"ed with 0x0f,
2186         * (genLeftShiftLiteral),
2187         * (genrshTwo),
2188         * (genRightShiftLiteral): added debugging info,
2189         * (genrshFour): added comment,
2190         * (genRightShift): determined signedness from operand "left"
2191         instead of "result"
2192
2193 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2194
2195         * src/SDCCicode.c (geniCodeParms),
2196         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
2197         function pointers, fixed function pointer bugs #861242 and #861896
2198
2199 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2200
2201         * device/include/c8051f000.h,
2202         * device/include/c8051f120.h,
2203         * device/include/c8051f300.h: added header files for Silicon
2204         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
2205
2206 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
2207
2208         * src/SDCCast.c (processParams): added new type flow and restructured
2209         (gatherAutoInit): added new type flow
2210         (addCast): cosmetic changes
2211         (getLeftResultType): added new type flow for array indices, patch
2212         provided by Stas, see FR #877103
2213         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
2214         array index patch by Stas
2215         * src/SDCCast.h: added prototype getResultTypeFromType()
2216         * src/SDCCval.h,
2217         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
2218         * src/pic/glue.c (pic14emitStaticSeg),
2219         * src/pic16/glue.c (pic16emitStaticSeg),
2220         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
2221         for initialization of symbols
2222         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
2223         * support/Util/SDCCerr.h:
2224         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
2225         * .version: bumped version number to 2.3.8
2226         * device/include/Makefile.in (install),
2227         * doc/Makefile (install): changed to 'rm `find ...`' construct to
2228         avoid warnings
2229
2230 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
2231
2232         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
2233         Slade Rich fixed an optimization bug
2234         * src/pic/pcodepeep.c,
2235         * src/pic/pcoderegs.c
2236         * doc/Makefile (install): added test for directory
2237
2238 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2239
2240         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
2241         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
2242         * src/pic/ralloc.c (getRegPtr, getRegGpr),
2243         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
2244         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
2245         * as/mcs51/asexpr.c (term),
2246         * as/hc08/asexpr.c (term): fixed bug #887146
2247
2248 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2249
2250         * src/z80/gen.c (genMult): handle single byte result product
2251         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
2252         DUMMY_READ_VOLATILE (fixed bug #886367)
2253
2254 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
2255
2256         * support/regression/tests/libmullong.c: fixed logic, on little endian
2257         hosts we ended without a mullong_wrapper()
2258
2259 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2260
2261         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
2262         virus/worm forged address usage.
2263
2264 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
2265
2266         Fixed promotion, it should be done on AST level:
2267         * src/SDCCast.c (addCast): added promotion to int
2268         (decorateType): updated call to upCast()
2269         * src/SDCCicode.c (geniCodeLeftShift): removed call to
2270         usualUnaryConversions()
2271
2272 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
2273
2274         * support/regression/tests/literalop.c (mulWrapper): Added a
2275         wrapper to remove integer overflow warnings.
2276
2277         * support/regression/tests/float_trans.c: Made work on host.
2278
2279         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
2280         location of sz80.
2281
2282         * support/regression/generate-cases.py (main): Changed from inline
2283         to a main method.
2284
2285         * doc/Makefile (install): Changed to depth first to get rid of
2286         missing directory install warning.
2287
2288         * as/Makefile (install-doc): Made work on Mac.
2289
2290 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
2291
2292         * src/SDCCast.c: added an additional type flow in decorateType() of
2293         opposite direction, see feature request #860006; it's enabled at runtime
2294         by setting the environment variable SDCC_NEWTYPEFLOW
2295         * src/SDCCast.h: changed prototype of decorateType()
2296         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
2297         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
2298         'char' to 'int' can be omitted, if both operands are 'unsigned char';
2299         see feature request #877103
2300         * src/SDCCval.c: updated call of decorateType()
2301         (valBitwise): fixed bug #882876
2302         (valMinus): added promotion
2303         (valLogicAndOr): result is unsigned
2304         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
2305         * src/SDCCsymt.c (computeType),
2306         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
2307         must not cause an unsigned operation
2308         * src/pic/glue (pic14emitRegularMap),
2309         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
2310
2311 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
2312
2313         * src/pic/pcode.c (PCodeID): commented out left over debug code
2314
2315 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
2316
2317         * support/valdiag/tests/overflow.c: added shift tests
2318         * src/pic/device.c,
2319         * src/pic/gen.c,
2320         * src/pic/gen.h,
2321         * src/pic/glue.c,
2322         * src/pic/main.c,
2323         * src/pic/pcode.c,
2324         * src/pic/pcode.h,
2325         * src/pic/pcodepeep.c,
2326         * src/pic/pcoderegs.c,
2327         * src/pic/ralloc.c,
2328         * src/pic/ralloc.h: applied patch from Slade Rich;
2329         added support for multiple code pages and multiple RAM banks on the
2330         PIC 14 port. The ASM files now no longer simply assume all the
2331         code / RAM are in the same page / bank. This means the linker can
2332         safely allocate code/RAM of separate ASM files to different pages/banks.
2333         * doc/sdccman.lyx: added Slade's tips
2334         * src/mcs51/peeph.def: fixed bug #880768
2335
2336 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2337
2338         * src/hc08/ralloc.c (rematStr): fixed bug #879282
2339         * src/SDCCast.c (decorateType): fixed bug #880197
2340
2341 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
2342
2343         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
2344         getopt.h.
2345
2346         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
2347         strtof is not part of C89 and isn't included with Mac OS X.
2348
2349 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2350
2351         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
2352         shiftL2Left2Result): fixed bug #879326
2353         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
2354         (genMultOneByte): fixed bug in signed vs unsigned multiplication
2355         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
2356         address fetch for clr instruction
2357         * device/lib/hc08/_mulint.c: created optimized assembly version
2358         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
2359
2360 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
2361
2362         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
2363         proposed in FR #877103
2364
2365 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
2366
2367         * src/SDCCval.c (cheapestVal): added missing checks
2368         * src/SDCCicode.c (usualBinaryConversions): fixed condition
2369         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
2370
2371 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
2372
2373         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
2374         equal operands
2375
2376 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
2377
2378         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
2379         loaded with the linker search paths (-L arguments) and the libraries
2380         to be linked with the current source (-l arguments). Changes
2381         currently will affect only the pic16 port.
2382         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
2383         include path the port specific paths and port specific libraries,
2384         * gplink command now contains the $3 argument,
2385         * src/pic16/device.h,
2386         * src/pic16/device.c,: structure PIC_device is made public and
2387         renamed to PIC16_device, the same for variable Pics which is renamed
2388         to Pics16. Updated all references to them.
2389         * src/pic16/glue.c (pic16glue): corrected bug with code
2390         initialization which bypassed the variable initializations block.
2391
2392         * device/lib/pic16/Makefile.rules: removed --penable-stack from
2393         COMPILE_FLAGS and added the --nostdinc option
2394
2395 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2396
2397         * device/include/mc68hc908jb8.h: Register defs for another member
2398         of the hc08 family. Contributed by Bjorn Bringert - thanks!
2399
2400 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
2401
2402         Documenting changes from previous commits.
2403         * configure.in (version 1.56),
2404         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
2405         when generating output files to configure the pic16 library,
2406         but now I've commented it out, since gputils aren't installed in the
2407         SF compile farm, so library won't compile
2408
2409         * device/lib/Makefile.in (version 1.56): initially I've added in
2410         target 'all' the prerequestive 'model-pic16' so it compiled the
2411         pic16 library, but now I've commented it out for the same reasons
2412         above,
2413         * added targets 'model-pic16' and 'objects-pic16' to compile the
2414         library
2415         * added target 'port-specific-objects-pic16' to handle the
2416         generated libraries and copy them into the build/ directory
2417         * added target 'clean-intermediate-pic16' to clean intermediate
2418         files into pic16 directory
2419         * in target 'installdirs' added line to create directory pic16 in
2420         the installation path
2421
2422         * device/include/Makefile.in (version 1.11): in target 'install'
2423         added lines to copy all header files to installation path,
2424         * in target 'installdirs' added line create directory for pic16
2425         headers in the installation path
2426
2427 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
2428
2429         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
2430          a function call
2431
2432 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
2433
2434         * configure,
2435         * device/lib/configure.in,
2436         * device/lib/configure: fixed for autoconf 2.57
2437
2438 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2439
2440         * src/z80/main.c (_parseOptions): fixed the portmode= command line
2441         option so that it actually works. Made it specific to the z80, since
2442         the gbz80 doesn't have these kinds of I/O ports.
2443
2444 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2445
2446         * device/include/z180.h,
2447         * device/lib/_memcpy.c,
2448         * device/lib/_memmove.c,
2449         * device/lib/_mulint.c,
2450         * device/lib/ser_ir.c,
2451         * device/lib/ser_ir_cts_rts.c,
2452         * device/lib/_strcmp.c,
2453         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
2454         * src/z80/main.c (_process_pragma): add support for pragmas bank and
2455         portmode; added deprecation warning for bank= and protmode= forms.
2456         Also, guard against buffer overflow.
2457         * src/z80/gen.c (aopGet): generate better code for sfr banked read
2458
2459 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2460
2461         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
2462         changed interrupt vector table generation to only emit declared vectors.
2463         * device/include/Makefile.in: added missing backslash
2464         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
2465
2466 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
2467
2468         Mainly changes to support compilation of the device libraries
2469         * src/pic16/device.c: stack is allocated via symbol and not
2470         via literal number. The symbol is placed in the corresponding
2471         position of the data ram
2472         * (pic16_dump_section): relocatable and absolute uninitialized
2473         data are now emitted in sorted order to reduce section naming,
2474         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
2475         weren't marked as being in the access bank,
2476
2477 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
2478
2479         Added portion of GNU PIC Library under the directory
2480         device/include/pic16 and device/lib/pic16. These files
2481         contain the declarations of SFRs for the PIC18Fxx2 devices.
2482         The directory is initialized via configure from toplevel.
2483
2484 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
2485
2486         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
2487         the spilllocations to be compared correctly
2488
2489 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
2490
2491         * src/SDCCast.c (decorateType): fixed bug introduced today
2492
2493 2004-01-12  Borut Razem <borut.razem AT siol.net>
2494
2495         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
2496         doc/sdccman.lyx: upper case pragmas are deprecated
2497
2498 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
2499
2500         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
2501         in simpler and even better code
2502
2503 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
2504
2505         * src/SDCCicode.c (operandOperation): fixed bug #874819
2506         * src/SDCCast.c (decorateType): fixed
2507         char foo (unsigned long ul) { return ul > 0; }
2508
2509 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2510
2511         * doc/sdccman.lyx: Moved and added some sections, small changes
2512         all over. Telling LaTeX to be less strict with word spacing
2513         to better keep the right margin. Changed some notes about
2514         maintainance of the ports in section 3.2.1 - is it OK like this?
2515
2516 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
2517
2518         SDCC source changes:
2519         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
2520         convilong): modified to inform the pic16 port that builtin functions
2521         are external
2522
2523         PIC16 PORT specific changes:
2524         * src/pic16/device.c pic16_dump_equates() added,
2525         processor registers declared internally by the port are emitted in
2526         the translation as equates,
2527         * src/pic16/gen.c: inline code is passed unprocessed to the
2528         translation,
2529         * (pic16_popGetLit2): fnuction modified to take second operand as
2530         pCodeOp pointer and not as literal,
2531         * (popRegFromIdx): prefixed with pic16_,
2532         * (pic16_popCombine2): modified to receive already allocated pCode
2533         operands,
2534         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
2535         * (genFunction): initializes local stack frame and pushes on stack
2536         all the registers used by this function,
2537         * (genEndFunction): restores all registers from stack and restores
2538         stack frame,
2539         * src/pic16/glue.c (pic16emitRegularMap): various changes and
2540         improvements,
2541         * (pic16glue): changed the program startup sequence,
2542         * added new dbName code 'A' for functions placed in absolute section
2543         * src/pic16/main.c: added function attribute _naked,
2544         * added pragma 'code' to place a fnuction at an absolute address,
2545         * added command line arguments --debug-ralloc and --pcode-verbose,
2546         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
2547         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
2548         * (pic16_newpCodeOpLit2): modified to take the second operand as
2549         pCodeOp pointer,
2550         * (pic16_printpBlock): modified to emit each function in a separate
2551         section,
2552         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
2553         UPPER for immediate operands,
2554         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
2555         instruction,
2556         * src/pic16/peeph.def: all peepholes with movff are commented out,
2557         because there is a problem in the pcode peep optimizer,
2558         * src/pic16/ralloc.c: the register allocator can now reuse local
2559         function symbols for another function. This saves register usage.
2560         * src/pic16/ralloc.h: added flag isLocal in structure regs,
2561
2562         Added file src/pic16/NOTES with information about program writing on
2563         the current port version.
2564
2565 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2566
2567         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
2568         and peephole 252 (array access)
2569
2570 2004-01-09  Borut Razem <borut.razem AT siol.net>
2571
2572         * src/SDCCmain.c : fixed #872250: -l command line defined library
2573           files are scanned before standard library files
2574
2575 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2576
2577         * src/SDCCast.c (decorateType): fixed bug #874046
2578
2579 2004-01-09  Borut Razem <borut.razem AT siol.net>
2580
2581         * support/scripts/sdcc.nsi: remove previous installation
2582
2583 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2584
2585         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
2586         bytes for last interrupt vector (mcs51)
2587         * sdcc.spec: fixed typo
2588
2589 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2590
2591         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
2592         gen51Code): more efficient parameter receive for --model-large
2593         ("bug" #845294)
2594
2595 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2596
2597         * src/ds390/main.c,
2598         * src/z80/main.c: added missed needLinkerScript flags (more than
2599         one port structure defined in these file)
2600         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
2601         bug #795325
2602
2603 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
2604
2605         * src/SDCCmain.c: removed various references to DEFAULT_PORT
2606         * src/port.h: added flag needLinkerScript in port->linker
2607         structure to inform whether to create a .lnk file or not,
2608         * src/avr/main.c,
2609         * src/ds390/main.c,
2610         * src/hc08/main.c,
2611         * src/mcs51/main.c,
2612         * src/pic/main.c,
2613         * src/pic16/main.c,
2614         * src/xa51/main.c,
2615         * src/z80/main.c: changed appropriately to configure
2616         needLinkerScript flag
2617         * src/pic/gen.c,
2618         * src/pic16/gen.c (genAddrOf): fixed bug #863624
2619         * src/pic/glue.c: added variable udata_section_name to
2620         override default uninitialized data segment definition for
2621         devices only with SHAREBANK memory (reported from Erik Epetrich)
2622         * (pic14emitOverlay): modified to emit a commented overlay segment
2623         directive when no overlay data exist
2624         * (picglue): modified to emit uninitialized data segment
2625         according to udata_section_name
2626         * src/pic/main.c (_pic14_parseOptions): added command line
2627         options --udata-section-name=[name] to override default
2628         udata definition name
2629         * modified _linkCmd and _asmCmd to include compiler passed
2630         arguments via -W option
2631         * src/pic16/main.c: added $l in _asmCmd, changed extension for
2632         object file from '.rel' to '.o' in port->linker structure,
2633         changed size of fptr from 2 to 3 in port structure
2634
2635 2004-01-07  Borut Razem <borut.razem AT siol.net>
2636
2637         * support/scripts/sdcc.nsi: update PATH
2638         * support/scripts/sdcc.ico: craeted
2639
2640 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
2641
2642         * device/include/Makefile.in: fix install
2643         * doc/Makefile: fix install
2644
2645 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2646
2647         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
2648         in bug #860505
2649         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
2650         how the function variable allocation summary is displayed; also
2651         include information about variables allocated to the overlay
2652         segment
2653
2654 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2655
2656         * as/mcs51/lkmain.c: Help about -Y option
2657         * as/mcs51/lkarea.c: Fixed gcc warnings
2658
2659 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
2660
2661         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
2662         fixed warning
2663         * support/valdiag/tests/overflow.c: added
2664         * src/SDCCast.c (decorateType),
2665         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
2666         LEFT_OP (left shift)
2667
2668 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2669
2670         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
2671         (default behaviour).
2672
2673 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2674
2675         A python script to validate compiler diagnostic messages. It can be
2676         used to verify that sdcc complains about bad c source code and
2677         gives a good location of the error.
2678         * support/valdiag/Makefile,
2679         * support/valdiag/valdiag.py,
2680         * support/valdiag/tests/*
2681
2682 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2683
2684         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
2685         * src/SDCCsymt.c (newEnumType),
2686         * src/SDCCsymt.h
2687         * support/Util/SDCCerr.c,
2688         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
2689         enum related bugs.
2690         * support/regression/tests/enum.c: added test for enum values that
2691         require at least 2 bytes of storage.
2692
2693 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
2694
2695         * src/common.h: added ifndef/define/endif macros
2696         around the header file.
2697         Bug reported from Jesus Calvino-Fraga
2698
2699 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
2700
2701         * sdcc.spec: updated
2702         * device/include/Makefile.in: don't install CVS directories
2703         * device/lib/Makefile.in: added removal of CVS directories after install
2704         * doc/Makefile: fixed install, added local_icons
2705         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
2706         * src/mcs51/gen.c (genRightShift): fixed bug #870788
2707         * src/ds390/gen.c (genRightShift): fixed bug #870788
2708         * src/SDCCast.c (decorateType): fixed bug #870781
2709
2710 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
2711
2712         PIC16 port related changes:
2713         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
2714         added variable stackPos,
2715
2716         * gen.c: genCall, assignResultValue: added support for
2717         pushing/retrieving function parameters to/from stack,
2718         genFunction,genEndFunction: setup stack frame for the
2719         generated function,
2720         genAddrOf: will be changed according to bug 863624
2721
2722         * added files genutils.c and genutils.h which contain gen*
2723         debugged and optimised functions extracted from gen.c
2724
2725         * glue.c: added variable 'externs' which holds extern symbols,
2726         pic16emitRegularMap: is modified to properly handle relocatable
2727          symbols under the new scheme,
2728         pic16createInterruptVect: is modified
2729         pic16printPublics: is modified to emit 'global' assembler directives,
2730         added pic16_printExterns to print extern symbols,
2731         pic16glue: initializes stack/frame pointer in the beginning of
2732         the assembly output. Temporary hack, will be corrected later,
2733         because gplink yet does not support stack and SDCC does not
2734         yet support a type of crt0.o object to create the final binary.
2735
2736         * Removed many lines that contain 8051 legacy code.
2737         * The code is finally placed under a 'code' directive.
2738         * Added port specific options.
2739
2740         * _process_pragma: simplified since now we do not need *special*
2741         include file to define SFR registers. But a separate header
2742         will be needed. This will be developed later.
2743         * _pic16_parseOptions: added, parses port specific options:
2744         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
2745         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
2746         --preplace-udata-with=
2747
2748         * _pic16_setDefaultOptions: modified to initialize section names,
2749         but hack is temporarly out of order since it needs improvement.
2750         * _pic16_genAssemblerPreamble: configuration words are emitted by
2751         their address instead of their name. This part is incomplete and
2752         supports only the 18Fxx2 devices. Other devices will emit an error
2753         during assembly since they do not contain the same set of config
2754         registers
2755         * _pic16_genIVT: is modified,
2756
2757         * pcode.c: added definitions for some hardware registers that are needed
2758         for stack support
2759         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
2760         All PCI entries are updated. Now LFSR is supported.
2761         * Removed pic16_pciTRIS is mentioned by mdubuc in source
2762         * added pic16_newpCodeOpLit2 to support instructions with
2763         two literal arguments
2764         * pic16_pCode2str: corrected code that emits assembler instructions
2765         with two literal operands and those that have an access bit modifier
2766         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
2767         this fixes a bug which caused some labels to be lost, when an
2768         assembler directive was added, i.e. banksel,
2769         * pic16_FixRegisterBanking: improved logic that causes the insertion
2770         of bank switching,
2771         * InlineFunction: functions that are called once, are not any more
2772         inlined. This can be a port option in the future,
2773
2774         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
2775
2776         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
2777         hold the corresponding uninitialized symbols,
2778         * pic16_allocProcessorRegister: registers have explicit marked the
2779         accessBank field,
2780         * pic16_allocInternalRegister: registers are explicit marked as
2781         not used,
2782         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
2783         processing list, so bit registers were lost,
2784         *
2785
2786         * ralloc.h: added field 'accessBank' and original symbol operand
2787         in register definition,
2788         * removed the field isMapped from register definition,
2789
2790         ** Several functions have been removed from various sources:
2791         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
2792         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
2793         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
2794         pic16_assignRelocatableRegisters
2795
2796         ** others have been introduced:
2797         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
2798         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
2799
2800 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
2801
2802         * support/scripts/inc2h.pl: changed definition of BIT_AT
2803         to emit 'sbit at' instead of 'bit at'. This was a request.
2804
2805         PIC16 port related preliminary changes:
2806         * gen.c: prefixed function popRegFromString with
2807         pic16_ and all references to it corrected
2808         * pcode.c: all pic16_pc_* hardware registers prefixed
2809         with underscore (_),
2810         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
2811         * ralloc.c: newReg(): when register is REG_SFR then
2812         set address to rIdx,
2813         pic16_allocProcessorRegister(): marks register wasUsed=0
2814         pic16_writeUsedRegs(): added a call to assign processor
2815         registers via pic16_assignFixedRegisters
2816
2817 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2818
2819         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
2820         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
2821         variables in unused register banks.  Also the SSEG is placed
2822         wherever there is enough space for it, and IDATA can be anywhere
2823         in internal RAM.  For now compile using -Wl-Y[stack_size].
2824         The mem file is different for this option as well, since it
2825         makes no sense of talking about DSEG lenght.
2826
2827 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
2828
2829         * src/SDCClrange.c: fixed bug 869095 that caused segfault
2830         in certain cases, e.g. when ROM assignment, patch provided
2831         from Albert den Haan.
2832
2833 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
2834
2835         Many signedness and type propagation fixes:
2836         * src/SDCCicode.c: made geniCodeCast() static
2837         replaced SPEC_ by IS_ (cosmetic)
2838         (operandOperation): fixed div and mod operation
2839         (usualBinaryConversions): added support for promotion of char
2840         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
2841         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
2842         (geniCodeAdd): an array index will stay unsigned, even if promoted
2843         from char to int
2844         (geniCodeArray): ditto
2845         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
2846         * src/SDCCsymt.c (computeType): added more support for char;
2847         promotion of char is selectable by promoteCharToInt, fixed signedness
2848         for all cases
2849         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
2850         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
2851         * src/SDCCval (val*): replaced signedness calculation by
2852         computeType()
2853         rearranged if-branches (cosmetic)
2854         (valShift): added warning W_SHIFT_CHANGED
2855         (valCompare): fixed problem with different types
2856         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
2857         * support/regression/tests/literalop.c: added many cases
2858         * support/regression/tests/ast_constant_folding.c: changed finally to
2859         'unsigned int'
2860         * .version: new year, new version: 2.3.7
2861         * src/SDCCmain.c (main): applied patch #866468
2862         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
2863         provided by Scott Bronson
2864         * doc/sdccman.lyx: updated documentation for sdcdb
2865         updated and added chapter tips
2866
2867 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2868
2869         * src/SDCCsymt.h: missing from yesterday's commits
2870
2871 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2872
2873         * src/SDCC.y (struct_or_union_specifier),
2874         * support/Util/SDCCerr.c,
2875         * support/Util/SDCCerr.h: verify that struct & union tags are used
2876         as declared.
2877
2878 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2879
2880         * src/SDCCglobl.h: missing from yesterday's commits
2881
2882 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2883
2884         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
2885         sft_attributes, struct_declaration, parameter_declaration,
2886         type_name, start_block, declaration_list),
2887         * src/SDCC.lex (check_type): support redefinition of typedef names
2888
2889 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2890
2891         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
2892         aligned xdata arrays. Erik helped me with the if clause.
2893
2894 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2895
2896         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
2897         warning
2898
2899 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2900
2901         * src/SDCCast.h,
2902         * src/SDCCast.c (newAst_),
2903         * src/SDCCicode.h,
2904         * src/SDCCicode.c (ast2iCode, newiCode),
2905         * src/SDCCglobl.h,
2906         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
2907         expr, statement, expression_statement, selection_statement,
2908         iteration_statement, expr_opt, jump_statement): foundation for tracking
2909         sequence points
2910         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
2911         point code too)
2912
2913 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2914
2915         * support/Util/SDCCerr.c,
2916         * src/SDCCast.h,
2917         * src/SDCCast.c (createCase, createDefault, decorateType),
2918         * src/SDCClabel.c (labelUnreach),
2919         * src/SDCC.y (labeled_statement, jump_statement): More improvements
2920         to error messages.
2921         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
2922         (with thanks to Stas Sergeev)
2923         * device/include/time.h,
2924         * device/lib/time.c (CheckTime): suppress unreachable code warning
2925
2926 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2927
2928         * src/SDCCast.c (createIvalCharPtr),
2929         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
2930         bug #753752)
2931         * support/regression/tests/nullstring.c: tests for these two bugs
2932
2933 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2934
2935         * support/Util/SDCCerr.h,
2936         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
2937         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
2938         about storage class and 'at' used inside struct or union
2939         * src/SDCCBBlock.c (iCodeFromeBBlock),
2940         * src/SDCCcse.c (ifxOptimize),
2941         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
2942         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
2943         printIval, emitStaticSeg, emitOverlay),
2944         * src/SDCClabel.c (deleteIfx),
2945         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
2946         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
2947         gatherAutoInit, processParms),
2948         * support/Util/SDCCerr.h,
2949         * support/Util/SDCCerr.c (werrorfl): Support for better error location
2950         reporting for post-parse errors.
2951
2952 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2953
2954         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
2955         implicit casts via union; they don't work on big endian systems
2956         (possible fix for bug #861138)
2957
2958 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2959
2960         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
2961         * src/mcs51/main.c: fixed the fix for bug #737001
2962
2963 2003-12-15  Borut Razem <borut.razem AT siol.net>
2964
2965         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
2966
2967 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2968
2969         * support/makebin/makebin.c: put output in binary mode
2970
2971 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2972
2973         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
2974         xdata and data memory on startup. Set the environment variable
2975         SDCC_NOGENRAMCLEAR to disable this.
2976         * src/mcs51/peephole.def,
2977         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
2978         (allows non-interrupt and interrupt code to safely compete for a resource
2979         without the non-interrupt code having to disable interrupts)
2980
2981 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2982
2983         * src/SDCCicode.c (geniCodeAdd),
2984         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
2985         with valFromType if type might be a pointer and host is big endian).
2986         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
2987         types, not just integer types.
2988         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
2989         multiply defined with mismatching "at" address.
2990
2991 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2992
2993         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
2994         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
2995         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
2996         with embedded nulls (fixed bug #753752)
2997
2998 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2999
3000         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
3001         Apparently this did not see much testing (endless loop)
3002
3003 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3004
3005         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
3006
3007 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3008
3009         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
3010         gracefully handle NULL memmap pointers
3011
3012 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3013
3014         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
3015         instead of deleting the iCode when an operand is volatile
3016         * src/z80/gen.c (genDummyRead),
3017         * src/mcs51/gen.c (genDummyRead),
3018         * src/ds390/gen.c (genDummyRead),
3019         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
3020         not just IC_RIGHT
3021         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
3022         * src/SDCC.y: fixed bug #850420
3023
3024 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3025
3026         Applied z80 i/o port patch from Peter Townson and fixed some operators
3027         to better handle operands in A register.
3028         * device/include/z180.h
3029         * src/SDCC.y
3030         * src/SDCCglue.c
3031         * src/z80/gen.c
3032         * src/z80/gen.h
3033         * src/z80/main.c
3034         * src/z80/peeph-z80.def
3035         * src/z80/peeph.def
3036         * src/z80/z80.h
3037
3038 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3039
3040         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
3041
3042 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3043
3044         * device/lib/hc08/_mullong.c: Removed extra #endif
3045
3046 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3047
3048         * sim/ucsim/hc08.src/inst.cc,
3049         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
3050         carries from x to h
3051         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
3052         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
3053         * device/include/stdarg.h: fixed varargs for hc08
3054         * device/lib/Makefile.in,
3055         * device/lib/hc08/Makefile,
3056         * device/lib/hc08/_mulint.c,
3057         * device/lib/hc08/_mullong.c: fixed some endian problems
3058
3059 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3060
3061         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
3062         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
3063         * device/lib/_gptrget.c,
3064         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
3065
3066 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3067
3068         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
3069         * src/SDCCast.c (astErrors): fixed bug #846007
3070         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
3071
3072 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3073
3074         * src/SDCCast.c (decorateType): disabled a transformation I added in
3075         revision 1.188 (access to fields of a structure at an absolute address);
3076         it breaks with bitfields, extern declarations, and gcse analysis.
3077         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
3078         could be assigned through a pointer, so don't complain.
3079         * src/SDCCast.c (astErrors),
3080         * src/SDCCast.h,
3081         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
3082
3083 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
3084
3085         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
3086         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
3087         output of __config directives, since gpasm now supports them
3088         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
3089         pre-processor macro, i.e. -DMCU=p18f452
3090         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
3091         and modified to handle 'cast' icode similarly to '=' icode
3092         * src/pic16/device.h (typedef struct PIC_device): added field
3093         'extMIface' to indicate that chip has external memory interface
3094         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
3095         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
3096         18F8720
3097
3098 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3099
3100         * src/SDCC.y (pointer): fixed bug #846006
3101         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
3102         * src/SDCCast.c (decorateType): fixed bug #846009
3103         * src/ds390/peeph.def,
3104         * src/ds390/gen.c (genAnd, genOr),
3105         * src/mcs51/peeph.def,
3106         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
3107
3108 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3109
3110         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
3111         * src/SDCCdflow.c
3112         * src/SDCCcse.c
3113         * src/SDCCcse.h
3114         * src/SDCCBBlock.h
3115         * src/SDCCBBlock.c
3116
3117 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
3118
3119         fixed bug #845089
3120         * src/SDCCbitv.h,
3121         * src/SDCCbitv.c: added function to free a bitvector
3122         * src/SDCClrange.h,
3123         * src/SDCClrange.c: added function to recompute the liveranges
3124         * src/avr/ralloc.c,
3125         * src/ds390/ralloc.c,
3126         * src/hc08/ralloc.c,
3127         * src/mcs51/ralloc.c,
3128         * src/pic/ralloc.c,
3129         * src/pic16/ralloc.c,
3130         * src/xa51/ralloc.c,
3131         * src/z80/ralloc.c: recompute the liveranges after register packing
3132
3133 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
3134
3135         * src/SDCCloop.c (newInduction): fixed bug #845630
3136
3137 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3138
3139         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
3140         inadvertantly left behind from my 2003-11-12 change
3141
3142 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3143
3144         Updated headers I neglected to commit yesterday.
3145         * src/SDCClrange.h,
3146         * src/SDCCicode.h
3147
3148 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3149
3150         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
3151         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
3152         * src/SDCCopt.c (eBBlockFromiCode),
3153         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
3154         the creation of the key hash table from the sequencing so it can be used
3155         earlier (for some GCSE bug fixes still pending)
3156
3157 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3158
3159         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
3160         * support/regression/tests/addsub.c: testing genPlus shortcut
3161
3162 2003-11-15  Borut Razem <borut.razem AT siol.net>
3163
3164         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
3165
3166 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3167
3168         * src/SDCCcse.c (cseBBlock): fixed bug #527779
3169         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
3170         ordering is immaterial.
3171         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
3172
3173 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3174
3175         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
3176         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
3177         (SIGSEV) of bug #840381
3178         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
3179         unlink new file before rename if new and old filenames are the same)
3180
3181 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3182
3183         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
3184         uninitialized variables) for the mcs51. Set environment variable
3185         SDCC_GENRAMCLEAR to test.
3186         xdata initialization slightly shorter
3187
3188 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3189
3190         * src/SDCCsymt.h,
3191         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
3192         #838241 & 780691 (basicly the same bug)
3193         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
3194         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
3195
3196 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
3197
3198         * src/SDCCmain.c (linkEdit): "fix" #834252
3199
3200 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3201
3202         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
3203         * src/SDCCast.h,
3204         * src/SDCC.y: fixed bug #819403
3205
3206 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3207
3208         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
3209         the reentrant attribute.
3210         * src/hc08/gen.c (genPackBits): added missing stack readjustment
3211         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
3212         simulation
3213         * src/SDCCast.c (decorateType): fixed bug with storage class not being
3214         updated during pointer dereference; f.e. ~(((char *)1)*) was being
3215         erroneously reduced to a literal.
3216         * src/hc08/ralloc.c (packRegisters, rematStr),
3217         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
3218         some cases
3219
3220 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3221
3222         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
3223         * doc/sdccman.lyx: changed from 'article' to 'book'
3224         * doc/Makefile: readded test_suite_spec and cdbfileformat
3225
3226 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
3227
3228         * device/include/stdlib.h: include malloc.h to comply with ANSI
3229         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
3230
3231 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3232
3233         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
3234         * doc/clean.mk: also remove *.out files
3235         * doc/sdccman.lyx: some additions, larger top/bottom margins
3236
3237 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3238
3239         * src/SDCC.y: fixed bug #837365
3240         * support/regression/tests/bitopcse.c
3241         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
3242         a symbol (might be valop instead)
3243         * device/lib/Makefile.in: added errno.c to HC08SOURCES
3244         * device/lib/clean.mk: added hc08 to the cleaning list
3245
3246 2003-11-04  Borut Razem <borut.razem AT siol.net>
3247
3248         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
3249           made 2003-11-04
3250         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
3251           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
3252           malloc is declared in standard stdlib.h
3253
3254 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3255
3256         * device/lib/hc08/Makefile: need to clean .rel not .o files
3257         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
3258
3259 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3260
3261         * src/port.h,
3262         * src/hc08/main.c,
3263         * src/mcs51/main.c,
3264         * src/ds390/main.c,
3265         * src/z80/main.c,
3266         * src/avr/main.c,
3267         * src/pic/main.c,
3268         * src/pic16/main.c,
3269         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
3270         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
3271         tests (which uses the port's oclsExpense function)
3272         * src/SDCC.y,
3273         * src/SDCCast.c,
3274         * src/SDCCicode.c,
3275         * src/hc08/gen.c,
3276         * src/ds390/gen.c,
3277         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
3278
3279 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3280
3281         * src/SDCCcse.c (ifxOptimize),
3282         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
3283         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
3284         deleting the IFX iCode.
3285         * src/hc08/ralloc.c: reduced unneeded slocs
3286         * src/hc08/gen.c: fixed bug in asmopToBoolean
3287
3288 2003-11-04  Borut Razem <borut.razem AT siol.net>
3289
3290         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
3291           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
3292           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
3293           transferred to configure
3294
3295 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
3296
3297         Use headers defined in the C[++] standards:
3298         * sim/ucsim/gui.src/serio.src/fileio.cc
3299         * sim/ucsim/gui.src/serio.src/frontend.cc
3300         * sim/ucsim/gui.src/serio.src/main.cc
3301         * sim/ucsim/gui.src/serio.src/posix_signal.cc
3302         * support/Util/NewAlloc.c
3303         * as/hc08/lklibr.c
3304         * as/mcs51/lklibr.c
3305         * as/z80/aslist.c
3306         * as/z80/assym.c
3307
3308 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3309
3310         * Added MSVC projects for hc08 assembler and linker:
3311         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
3312         /as/hc08/link_hc08.dsp
3313
3314 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
3315
3316         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
3317
3318 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
3319
3320         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
3321
3322 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3323
3324         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
3325
3326 2003-10-31  Borut Razem <borut.razem AT siol.net>
3327
3328         * support/cpp2/cpplib.h,
3329           support/cpp2/cpplib.c,
3330           support/cpp2/cpplex.c,
3331           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
3332           to switch _asm block preprocessing on / off. Default is
3333           #pragma preproc_asm +
3334
3335 2003-10-31  Borut Razem <borut.razem AT siol.net>
3336
3337         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
3338           when outputting comment blocks (when executed with -C option) and
3339           _asm (SDCPP specific) blocks
3340
3341 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3342
3343         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
3344
3345 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
3346
3347         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
3348
3349 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
3350
3351         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
3352         * src/SDCCast.c (decorateType): fixed bug #832664
3353
3354 2003-10-31  Borut Razem <borut.razem AT siol.net>
3355
3356         * support\cpp2\cpplex.c: fixed for SDCPP:
3357           comments(when executed with -C option) and _asm blocks
3358           were included even if they where in skipped #if block.
3359           Applied solution from GCC cpp 3.3.2
3360
3361 2003-10-31  Borut Razem <borut.razem AT siol.net>
3362
3363         * src/SDCC.lex: sdcc now understands both formats:
3364           '# <line_number> <file_name>' and
3365           '#line <line_number> <file_name>'
3366         * support/cpp2/cppmain.c: sdcpp now generates the standard
3367           '# <line_number> <file_name>' instead of former
3368           '#line <line_number> <file_name>'
3369
3370 2003-10-30  Borut Razem <borut.razem AT siol.net>
3371
3372         * support/cpp2/cpphash.h,
3373         * support/cpp2/cpplib.h
3374         * support/cpp2/cpplex.c,
3375         * support/cpp2/cppmain.c,
3376         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
3377
3378 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3379
3380         Fixed a number of problems revealed by bug #827883.
3381         * src/SDCCloop.c (loopInvariants): Spill location of the
3382         result operand should be recomputed if extracted from
3383         a loop. Also, don't extract assignments of an iTemp
3384         from a literal.
3385         * src/SDCCast.c (isConformingBody): loop reversal should
3386         not occur if the control variable is involved with a
3387         relational operator.
3388
3389 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
3390
3391         * .version: bumped to 2.3.6 to reflect the big improvements
3392         made by Erik and Klaus. Thanks!
3393
3394 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
3395
3396         Replaced the livrange code.
3397         * src/SDCClrange.c: added new LR code
3398         * src/SDCCloop.c,
3399         * src/SDCCBBlock.h: removed remainig parts from old LR code
3400         * src/ds390/ralloc.c,
3401         * src/ds390/gen.c: minor fixes to make it work with new code
3402
3403 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3404
3405         * as/hc08/asm.h,
3406         * as/hc08/lkrloc.c,
3407         * src/hc08/gen.c,
3408         * src/hc08/ralloc.c: Fix various warnings related to the hc08
3409         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
3410         (tweaked fix for bug #818696)
3411
3412 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3413
3414         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
3415
3416 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3417
3418         * src/SDCCmain.c,
3419         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
3420         * src/mcs51/gen.c (gencjneshort),
3421         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
3422         more efficient (per Scott Bronson's suggestion)
3423
3424 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3425
3426         Extended the semantics of the critical keyword to include
3427         individual statements. See RFE #827755 and #799831
3428         * src/SDCC.y
3429         * src/SDCCicode.c
3430         * src/SDCCopt.c
3431         * src/SDCCast.c
3432         * support/Util/SDCCerr.c
3433         * support/Util/SDCCerr.h
3434         * src/mcs51/gen.c
3435         * src/ds390/gen.c
3436         * src/hc08/gen.c
3437
3438 2003-10-19  Borut Razem <borut.razem AT siol.net>
3439
3440         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
3441
3442 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3443
3444         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
3445         Fixed bug #818696
3446         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
3447         and predecrement operand is displayed
3448
3449 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
3450
3451         * src/SDCCval.c (valMinus): fixed bug #826041
3452
3453 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3454
3455         Some hc08 related updates that I missed earlier
3456         * sim/ucsim/stypes.h
3457         * support/regression/ports/hc08/spec.mk
3458
3459 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3460
3461         New target "hc08" for the Motorola 68hc08 family of micros
3462
3463         * configure
3464         * configure.in
3465         * Makefile
3466         * src/hc08/*
3467         * src/SDCCmain.c
3468         * src/port.h
3469         * sim/ucsim/hc08.src/*
3470         * sim/ucsim/configure.in
3471         * src/ucsim/configure
3472         * sim/ucsim/packages_in.mk
3473         * as/hc08/*
3474         * as/Makefile
3475         * device/include/mc68hc908qy.h
3476         * device/lib/hc08/*
3477         * device/lib/Makefile.in
3478         * support/regression/ports/hc08/*
3479         * support/regression/Makefile
3480
3481 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3482
3483         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
3484         regression test
3485         * src/ds390/gen.c (genCast): fixed bug #821957
3486
3487 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
3488
3489         * device/lib/logf.c: "fixed" overlay bug
3490         * support/regression/ports/host/spec.mk: added m library
3491         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
3492         * support/regression/tests/float_trans: added (for Eric)
3493
3494 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
3495
3496         * src/mcs51/gen.c (genCpl): fixed bug
3497         http://sf.net/mailarchive/message.php?msg_id=6263915
3498
3499 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
3500
3501         * src/SDCCast.c (decorateType): added extended constant folding
3502         * src/SDCCsymt.c (computeType): cleanup
3503         * src/SDCCval.c (valShift): minor optimization
3504         * support/regression/tests/ast_constant_folding.c: added
3505
3506 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3507
3508         * src/SDCCmain.c: removed some unintended changes
3509
3510 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3511
3512         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
3513         * src/z80/gen.c: fixed part of bug #817589
3514         * src/SDCCsymt.c (checkFunction): fixed bug #817895
3515
3516 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
3517
3518         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
3519         * src/SDCCcflow.c
3520         * src/SDCCcse.c
3521         * src/SDCCdflow.c
3522         * src/SDCClabel.c
3523         * src/SDCClrange.c
3524         * src/SDCCmem.c
3525         * src/SDCCopt.c
3526         * src/SDCCpeeph.c
3527         * src/SDCCset.c
3528         * src/avr/ralloc.c
3529         * src/ds390/ralloc.c
3530         * src/izt/ralloc.c
3531         * src/mcs51/ralloc.c
3532         * src/pic/ralloc.c
3533         * src/pic16/ralloc.c
3534         * src/xa51/ralloc.c
3535         * src/z80/ralloc.c
3536         * src/z80/gen.c: removed unused label "release:"
3537
3538 2003-10-06  Borut Razem <borut.razem AT siol.net>
3539
3540         * src/SDCC.lex: removed definition of unused variables
3541           save_optimize and save_options
3542
3543 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
3544
3545         * clean.mk: removed '=' in "-maxdepth=1"
3546         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
3547         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
3548
3549 2003-10-06  Borut Razem <borut.razem AT siol.net>
3550
3551         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
3552           my_unput() replaced by unput()
3553
3554 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
3555
3556         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
3557         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
3558         type-punned pointer will break strict-aliasing rules"
3559         Old LR behaviour is again default; Klaus' LR can be choosen by
3560         defining the environment variable LRKLAUS
3561         * src/SDCCBBlock.h
3562         * src/SDCCloop.c
3563         * src/SDCClrange.c
3564         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
3565         * clean.mk: fixed removal of files in bin/CVS/
3566         * device/lib/clean.mk: fixed removal of directories small and large
3567         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
3568         * src/SDCCicode.c,
3569         * src/SDCCval.c: removed superflous test for pedantic
3570
3571 2003-10-05  Borut Razem <borut.razem AT siol.net>
3572
3573         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
3574           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
3575           message "unmatched #pragma SAVE and #pragma RESTORE"
3576
3577 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3578
3579         * doc/sdccman.lyx: various additions and updates (interrupts, inline
3580           assembly, critical functions, atomic, nojtbound)
3581
3582 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
3583
3584         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
3585         * src/SDCCBBlock.h
3586         * src/SDCCloop.c
3587         * src/SDCCloop.h
3588         * src/SDCClrange.c
3589
3590 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3591
3592         * src/z80/gen.h,
3593         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
3594         * src/mcs51/gen.h
3595         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
3596         * src/ds390/gen.h
3597         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
3598         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
3599         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
3600
3601 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3602
3603         * src/z80/gen.c (genRet): fixed bug #524753
3604         * src/z80/gen.c (genCast): fixed internal error on cast from
3605         pointer to long
3606         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
3607         fix for bug #477835 to the z80
3608         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
3609         for tracking iCodes in the peephole optimizer for z80
3610
3611 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3612
3613         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
3614         the other part of bug #814548
3615         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
3616
3617 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
3618
3619         * src/SDCCcse.c: fixed part of bug #814548
3620
3621 2003-09-28  Borut Razem <borut.razem AT siol.net>
3622
3623         * src/asm.c: rewrite of printILine() to use temporary file instead
3624           a pipe
3625         * src/xa51/main.c: commented out declaration of int rewinds
3626
3627 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3628
3629         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
3630
3631 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3632
3633         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
3634         * src/asm.c (printILine): Fixed bug #811015
3635
3636 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3637
3638         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
3639         freeing.
3640
3641 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3642
3643         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
3644         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
3645         to correctly handle general case of AOP_PAIRPTR
3646         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
3647
3648 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3649
3650         * src/mcs51/ralloc.c (fillGaps),
3651         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
3652         register positioning bug)
3653
3654 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
3655
3656         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
3657
3658 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3659
3660         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
3661         genCodePointerGet, genGenPointerGet, genFarPointerSet,
3662         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
3663         (ralloc doesn't intentionally do this now, but perhaps later)
3664         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
3665         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
3666         register positioning bugs (Fixed bug #762602 and #795325)
3667         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
3668         (Fixed bug #808779)
3669         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
3670         lines that --i-code-in-asm generates
3671
3672 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3673
3674         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
3675         trying to fclose a FILE* that was already closed.
3676
3677 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3678
3679         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
3680         of const struct should be treated as if const themselves)
3681
3682 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
3683
3684         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
3685
3686 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3687
3688         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
3689         Unix (/n) and DOS (/r/n) line terminations.
3690
3691 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3692
3693         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
3694         bug #613775
3695
3696 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3697
3698         * src/mcs51/gen.c (genFunction, genEndFunction),
3699         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
3700         and restore of EA so that stack offsets to parameters are
3701         correct when using both critical and reentrant/stack-auto.
3702         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
3703         size (can be triggered in error if sloc is shared between
3704         different sized objects)
3705         * device/include/float.h: fixed macros to explicitly use
3706         unsigned long where needed
3707
3708 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
3709
3710         Feature req. 799831: added code to allow nesting of critical functions
3711         * src/mcs51/gen.c (genFunction, genEndFunction)
3712         * src/ds390/gen.c (genFunction, genEndFunction)
3713
3714 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3715
3716         * src/SDCCsymt.c (sclsFromPtr),
3717         * src/SDCCsymt.h,
3718         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
3719         support for standard C idiom of memory mapped variables; for
3720         example, *((xdata int*)0x1234) = 1 is now internally equivalent
3721         to xdata int at 0x1234 tempvar = 1.
3722         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
3723         provided by Akiya ISHIDA
3724
3725 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
3726
3727         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
3728         * src/SDCCval.c (constVal): added reduction from int to char
3729         * src/SDCCval.c (valMult, valDiv): fixed sign handling
3730         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
3731         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
3732         to ignore the sign
3733         * support/regression/tests/shifts.c: fixed
3734
3735 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3736
3737         * src/z80/gen.c (genXor): Fixed bug #805445
3738
3739 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3740
3741         Fixed bug #621531 (const & volatile confusion in the type chain).
3742         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
3743         refer to the const or volatile state of the pointer itself.
3744
3745         * src/SDCCast.c
3746         * src/SDCCglue.c
3747         * src/SDCCicode.c
3748         * src/SDCCsymt.c
3749         * src/SDCCval.c
3750         * src/SDCC.y
3751         * src/SDCCsymt.h
3752         * src/pic/gen.c
3753         * src/pic/ralloc.c
3754         * src/pic16/gen.c
3755         * src/pic16/ralloc.c
3756         * support/regression/tests/const.c
3757
3758 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3759
3760         When checking for duplicated modules, use absolute paths
3761         instead of relative paths.  Files changed:
3762
3763         * as/mcs51/lklib.c
3764         * link/z80/lklib.c
3765
3766 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3767
3768         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
3769
3770 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3771
3772         * device/include/string.h: added size_t typedef, changed
3773         prototypes to use size_t, eliminated separate reentrant and
3774         non-reentrant declarations, added _memmove declaration
3775         * device/lib/_memcpy.c: changed to use size_t instead of int,
3776         changed /4 to >>2 to avoid division library call
3777         * device/lib/_memcmp.c,
3778         * device/lib/_memset.c,
3779         * device/lib/_strncat.c,
3780         * device/lib/_strncpy.c,
3781         * device/lib/_strncmp.c: changed to use size_t instead of int
3782         * device/lib/_memmove.c: new file (fixed bug #772294)
3783         * device/lib/Makefile.in: added _memmove.c
3784         * device/lib/z80/asm_strings.s: fixed bug #772290
3785         * support/regression/tests/bitfields.c: attempt to fix host assertion
3786         failure on amd64-unknown-linux2.2
3787
3788 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3789
3790         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
3791         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
3792         * as/z80/asmain.c (main): fixed bug #801766
3793
3794 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
3795
3796         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
3797         compilers
3798
3799 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3800
3801         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
3802         reported in bug #800609
3803
3804 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
3805
3806         * Top header beautifications in src/pic16 directory:
3807           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
3808           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
3809           pcoderegs.h, ralloc.c, ralloc.h
3810         * main.c: added top header and GPL license notice
3811         * pcode.c: fixed the if-conditional warning
3812
3813 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
3814
3815         * device/lib/_mullong.c: replaced int by short for gcc
3816
3817 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3818
3819         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
3820         and JUMPTABLE iCodes properly now (worked by accident before)
3821         * src/mcs51/gen.c (leftRightUseAcc),
3822         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
3823         iCode properly now. Use getSize instead of nRegs since a & b
3824         aren't part of the nRegs tally.
3825
3826 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
3827
3828         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
3829         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
3830           before instructions that use the _STATUS register
3831
3832 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
3833
3834         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
3835         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
3836         fetching of the pointer
3837         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
3838         copied from genNearPointerSet()
3839         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
3840         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
3841         If they pop r0/r1 they must be called in the opposite order than aopOp().
3842         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
3843         (resp. --stack-auto), prepared for --xstack
3844
3845 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3846
3847         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
3848
3849 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
3850
3851         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
3852         these ports have their own __sdcc_external_start()
3853
3854 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
3855
3856         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
3857         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
3858         type for bits was changed. It resulted in bit variables becoming
3859         global, which is not permitted in PIC 14 assembly output.
3860
3861 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3862
3863         * doc/sdccman.lyx: various additions and updates. Rearranged sections
3864
3865 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3866
3867         Z80 and MCS51 linkers complaint if a public symbol is defined
3868         in more than one library module:
3869
3870         * as/mcs51/lklib.c
3871         * link/z80/lklib.c
3872         * as/mcs51/Makefile.in
3873
3874 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3875
3876         A few small changes that speed up the peephole optimizer.
3877
3878         * src/SDCCpeeph.c
3879
3880 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3881
3882         Try to make the peephole optimizer smarter by maintaining
3883         an association between the assembly source code and the
3884         iCodes that originated them. Put this information to use
3885         with a new peephole rule condition "notVolatile" so that
3886         the rules can be aggressive yet still safe.
3887
3888         * src/SDCCpeeph.c
3889         * src/SDCCpeeph.h
3890         * src/mcs51/gen.c
3891         * src/mcs51/peeph.def
3892
3893 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3894
3895         Fixed bug #741761
3896
3897         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
3898         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
3899         if the left or right operand symbols have the accuse flag set.
3900
3901 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3902
3903         Changed the type of the result of the ! (NOT) operator to char;
3904         previously it returned the same type as the source. This allows
3905         us to eliminate all the genFloatNot functions (all of its target
3906         implementations were very buggy) since !float can use the same
3907         code as !long now.
3908
3909         * src/SDCCicode.c (ast2iCode): ! returns char
3910         * src/mcs51/gen.c (genNot, genNotFloat),
3911         * src/ds390/gen.c (genNot, genNotFloat),
3912         * src/z80/gen.c (genNot, genNotFloat),
3913         * src/pic/gen.c (genNot, genNotFloat),
3914         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
3915
3916 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
3917
3918         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
3919         1. Interrupt would not compile properly. Ensure PCLATH register is saved
3920            during interrupts. Ensure WSAVE is located at a shared bank address.
3921         2. Fixed page selection in some places
3922         3. Fixed BTFSS/C to where necessary use registers directly and not simply
3923            the registers name strings.
3924         4. Fixed "signed / unsigned compare" compiler warnings.
3925         5. The PIC port manages its own allocation of the general purpose
3926            registers, but makes no attempt to reuse them. As a result when
3927            compiling it soon runs out of general purpose registers. Some
3928            additional code was added to the files pcode.c and device.c to walk
3929            through the function call tree and rename the registers so that they
3930            get reused.
3931
3932         * src/pic/device.c
3933         * src/pic/gen.c
3934         * src/pic/glue.c
3935         * src/pic/pcode.c
3936         * src/pic/pcode.h
3937         * src/pic/ralloc.c
3938         * src/pic/ralloc.h
3939         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
3940         genPlus() & genMinus() when the result is the same as left or right
3941
3942 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3943
3944         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
3945
3946 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3947
3948         Made bitfield a distinct type from bit so that bitfields
3949         convert as per ANSI C and bits retain their traditional
3950         boolean style behaviour. Implemented bitfield support in
3951         the z80 port.
3952
3953         * src/SDCCsymt.h,
3954         * src/SDCCsymt.c,
3955         * src/SDCCast.c,
3956         * src/cdbFile.c,
3957         * src/mcs51/gen.c,
3958         * src/ds390/gen.c: bit v bitfield split
3959         * src/z80/gen.c: New support for bitfields
3960         * support/regression/tests/bitfields.c: reenabled z80,
3961         added more tests
3962
3963 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3964
3965         Rules 246.x, 247.x relate to bitfields, the others speed up
3966         access to xdata mapped I/O devices.
3967
3968         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
3969
3970 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3971
3972         Cleaned up genPackBits and genUnpackBits and added two helper
3973         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
3974         for literal assignments in genPackBits (thanks to Frieder for
3975         reminding me).
3976
3977         * src/mcs51/gen.c
3978         * src/ds390/gen.c
3979
3980 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3981
3982         Fixed bug #748310 (pointer to function type mishandled when the
3983         function name is omitted). Also fixed a SIGSEGV when a function
3984         attribute (reentrant, etc) is used on a non-function or on a
3985         function but misplaced before the parameter list.
3986
3987         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
3988         bug #748310
3989         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
3990         * support/Util/SDCCerr.h,
3991         * support/Util/SDCCerr.c: Added func attr misuse error msg
3992
3993 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
3994
3995         Fixed bug #787649 by anonymous
3996         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
3997         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
3998
3999 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4000
4001         Fixed numerous bitfield problems.
4002
4003         * src/SDCC.y: More bitfield related error checking
4004         * src/SDCCsymt.h,
4005         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
4006         * support/Util/SDCCerr.h,
4007         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
4008         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
4009         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
4010         * support/regression/tests/bitfields.c: tests added
4011
4012 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4013
4014         Made the constant following the "interrupt" keyword optional. If
4015         omitted, the function will not automatically be given an entry
4016         in the interrupt vector table (similar to #pragma NOIV, but
4017         less syntacticly kludgy). The interrupt number is also now
4018         range checked. Also fixed a bug in the high order bit example
4019         in the manual.
4020
4021         * src/SDCC.y
4022         * src/SDCCmem.c
4023         * src/SDCCglue.c
4024         * src/SDCCsymt.h
4025         * support/Util/SDCCerr.c
4026         * support/Util/SDCCerr.h
4027         * doc/sdccman.lyx
4028
4029 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
4030
4031         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
4032         * src/SDCCicode.c (operandOperation): rewritten some ops
4033         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
4034         * src/SDCCsymt.c (computeType): literals are handled the same way as any
4035         other type
4036         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
4037         be re-activated by defining REDUCE_LITERALS)
4038         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
4039         unsigned, but are signed by default
4040         * src/SDCCval.c (constVal): rearranged
4041         * src/SDCCval.c (valMod): preliminary fix
4042         * src/SDCCval.c (valCastLiteral): use TYPE_* types
4043         * support/regression/literalop.c: added, work in progress
4044
4045 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4046
4047         Generate warnings for useless declarations like "char data;"
4048         that don't do what new users expect.
4049
4050         * src/SDCC.y
4051         * support/Util/SDCCerr.h
4052         * support/Util/SDCCerr.c
4053
4054 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
4055
4056         * src/SDCCval.c (valMult): fix overflow detection of negative int
4057
4058 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4059
4060         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
4061
4062         Changes to support big endian targets:
4063
4064         * src/ports.h
4065         * src/SDCCglue.c
4066         * src/avr/main.c
4067         * src/ds390/main.c
4068         * src/izt/i186.c
4069         * src/mcs51/main.c
4070         * src/pic/main.c
4071         * src/pic16/main.c
4072         * src/xa51/main.c
4073         * src/z80/main.c
4074
4075 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
4076
4077         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
4078         * device/lib/time.c: fixed warning "integer overflow in expression"
4079
4080 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
4081
4082         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
4083         * src/SDCCval.c (constVal): changed default to signed; hex and octal
4084         constants are unsigned; added recognition of "u" flag for unsigned
4085         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
4086         * src/SDCCval.c (valDiv, valMod): fixed signdness
4087         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
4088         signedness of modulo, left and right shift
4089         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
4090         * support/Util/SDCCerr.h: added warning W_INT_OVL
4091         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
4092         * src/SDCCast.c (ast_print): improved output of constants
4093
4094 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4095
4096         Fixed some warnings when building with MSVC:
4097
4098         * as\mcs51\asdata.c
4099         * as\z80\asdata.c
4100         * as\mcs51\asm.h
4101         * as\z80\asm.h
4102         * link\z80\aslink.h
4103         * link\z80\lkdata.c
4104         * link\z80\lkeval.c
4105         * link\z80\lkgb.c
4106         * link\z80\lkihx.c
4107         * link\z80\lks19.c
4108         * link\z80\lksym.c
4109         * support\cpp2\cpplib.c
4110         * src\ds390\gen.c
4111         * src\mcs51\gen.c
4112
4113 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
4114
4115         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
4116
4117 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4118
4119         * support\librarian\clean.mk: Do not remove Makefile.
4120         * support\librarian\Makefile: added.
4121
4122 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4123
4124         Added librarian to MSVC build:
4125         * all.dsp
4126         * sdcc.dsw
4127         * support\librarian\librarian.dsp
4128
4129         'configure' not needed for librarian, removed:
4130         * support\librarian\configure
4131         * support\librarian\configure.in
4132         * support\librarian\config_in.h
4133         * support\librarian\Makefile.in
4134
4135         Hopefully these ones built the librarian and the rest of sdcc properly:
4136         * Makefile
4137         * Makefile.common.in
4138
4139         Messed up 'configure', so revert to previous version:
4140         * configure
4141         * configure.in
4142
4143 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
4144
4145         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
4146         there, while the mantissa of a double is "only" 53 bits wide.
4147
4148 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4149
4150         Adding sdcclib to the build.  MSVC project coming soon.
4151         Files added/changed:
4152
4153         * support\librarian\clean.mk
4154         * support\librarian\configure
4155         * support\librarian\configure.in
4156         * support\librarian\config_in.h
4157         * support\librarian\Makefile.bcc
4158         * support\librarian\Makefile.in
4159         * support\librarian\sdcclib.c
4160         * Makefile.bcc
4161         * Makefile
4162         * Makefile.common.in
4163         * configure
4164         * configure.in
4165
4166 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4167
4168         Linker now complaints if linked modules have conflicting options, for
4169         example, one compiled using --model-large and another one compiled with
4170         --model-small.  The following files were modified:
4171
4172         * as\mcs51\asdata.c
4173         * as\mcs51\aslink.h
4174         * as\mcs51\asm.h
4175         * as\mcs51\asmain.c
4176         * as\mcs51\asout.c
4177         * as\mcs51\i51pst.c
4178         * as\mcs51\lkdata.c
4179         * as\mcs51\lklibr.c
4180         * as\mcs51\lkmain.c
4181         * as\z80\asdata.c
4182         * as\z80\asm.h
4183         * as\z80\asmain.c
4184         * as\z80\asout.c
4185         * as\z80\z80pst.c
4186         * link\z80\aslink.h
4187         * link\z80\lkdata.c
4188         * link\z80\lklibr.c
4189         * link\z80\lkmain.c
4190         * src\SDCCglue.c
4191
4192 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4193
4194         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
4195         as/mcs51/lklibr.c: Generate a warning when a library is not found.
4196
4197 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
4198
4199         * src/z80/mappings.i: fix _mul[us][int,long] entries
4200
4201 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4202
4203         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
4204
4205 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
4206
4207         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
4208         * support/regression/tests/bitopcse.c: added
4209         fixed warning:
4210         * src/avr/gen.c:
4211         * src/pic/gen.c:
4212         * src/pic16/gen.c:
4213         * src/z80/gen.c:
4214         * src/xa51/gen.c:
4215
4216 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4217
4218         added support for new library format to z80, gbz80 linkers:
4219         *link/z80/aslink.h
4220         *link/z80/lklex.c
4221         *link/z80/lklib.c
4222         *link/z80/lklist.c
4223
4224 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
4225
4226         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
4227         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
4228
4229 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
4230
4231         added DUMMY_READ_VOLATILE:
4232         * src/SDCC.y:
4233         * src/avr/gen.c:
4234         * src/xa51/gen.c:
4235         * src/z80/gen.c:
4236         * src/pic/gen.c:
4237         * src/pic16/gen.c:
4238         * src/mcs51/gen.c:
4239         * src/ds390/gen.c:
4240         * src/SDCCcse.c (algebraicOpts): many improvements
4241         * src/SDCCcse.h: removed algebraicOpts()
4242         * src/SDCCicode.c (picDummyRead): added
4243
4244 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4245
4246         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
4247         "Insufficient space in data memory".
4248
4249 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4250
4251         * src/mcs51/gen.c: fixed bug #771358
4252         * src/z80/gen.c: fixed bug #759087
4253
4254 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
4255
4256         * src/pic16/glue.c: minor cleanup by Vangelis
4257
4258 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4259
4260         * device/include/regc515c.h: fixed #758477
4261         * device/lib/_gptrget.c: saving some cycles in generic pointer get
4262         * device/lib/_gptrput.c: saved a few bytes
4263         * my tab spacing is 8, yours too?)
4264         * device/lib/_ser.c: process RX bytes earlier than TX bytes
4265         * device/lib/serial.c: process RX bytes earlier than TX bytes
4266         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
4267
4268 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4269
4270         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
4271
4272 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4273
4274     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
4275
4276 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
4277
4278         * device/lib/Makefile.in: bad fix, reverted to 1.43
4279
4280 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
4281
4282         * device/lib/Makefile.in: added missing z80 object files
4283
4284 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
4285
4286         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
4287         pic16 progress by Vangelis:
4288         * src/SDCCglobl.h:
4289         * src/SDCCmain.c:
4290         * src/pic/Makefile:
4291         * src/pic:
4292         * pic/Makefile:
4293         * pic16/device.c:
4294         * pic16/device.h:
4295         * pic16/gen.c:
4296         * pic16/gen.h:
4297         * pic16/genarith.c:
4298         * pic16/glue.c:
4299         * pic16/main.c:
4300         * pic16/pcode.c:
4301         * pic16/pcode.h:
4302         * pic16/pcodepeep.c:
4303         * pic16/peeph.def:
4304
4305 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4306
4307     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
4308
4309 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4310
4311     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
4312     added gbz80 build to MSVC project.
4313     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
4314     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
4315     from 8051 stuff and setup so it links using a .lnk file.
4316
4317 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4318
4319     * support/librarian/sdcclib.c: sdcc librarian.
4320     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
4321     with sdcclib.
4322
4323 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4324
4325     * as/mcs51/lkmain.c: properly handle extensions in function afile.
4326
4327 2003-07-02  Borut Razem <borut.razem AT siol.net>
4328
4329         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
4330         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
4331         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
4332         src/xa51/main.c, src/z80/main.c:
4333         virtualization of glue() function: each port has it's own glue function,
4334         which is accessed by do_glue function pointer in PORT.general structure
4335
4336 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
4337
4338         * DS800C400 fun, improved ROM interface and tinibios.
4339
4340 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
4341
4342         * More support for DS80C400. Now includes beginning of interface to ROM.
4343
4344 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
4345
4346         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
4347
4348 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4349
4350         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
4351
4352 2003-06-19  Borut Razem <borut.razem AT siol.net>
4353
4354         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
4355
4356 2003-06-19  Borut Razem <borut.razem AT siol.net>
4357
4358         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
4359         fixed Z80 port - crt0.o: cannot open.
4360
4361 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
4362
4363         * support/Util/MySystem.c (merge_command): revert bad fix
4364
4365 2003-06-18  Borut Razem <borut.razem AT siol.net>
4366
4367         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
4368
4369 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4370
4371         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
4372         option --use-stdout sends errors to stdout instead of stderr.
4373
4374 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
4375
4376         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
4377
4378 2003-06-15  Borut Razem <borut.razem AT siol.net>
4379
4380         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
4381         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
4382         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
4383         fixed width array of pointers replaced with sets;
4384         multiple include and lib paths ared transferred to preprocessor and linker
4385         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
4386         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
4387         fixed width array of pointers
4388         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
4389         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
4390         fixupPath(), getPathDifference()
4391         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
4392         fixed width array of pointers
4393
4394 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
4395
4396         * src/pic16/ralloc.c: fix warnings
4397         * src/pic16/pcode.c: fix warning
4398
4399 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
4400
4401          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
4402         know all the details, but essentially this set of changes enable
4403         the pic16 port to generate movff instructions and generate assembler
4404         directives,
4405         * src/SDCCmain.c:
4406         * src/pic16/gen.c:
4407         * src/pic16/glue.c:
4408         * src/pic16/pcode.c:
4409         * src/pic16/device.c:
4410         * src/pic16/main.c:
4411         * src/pic16/pcode.h:
4412         * src/pic16/pcoderegs.c:
4413         * src/pic16/ralloc.c:
4414         * src/pic16/ralloc.h:
4415
4416 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4417
4418         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
4419         added option --vc, so sdcc errors and warnings are compatible with
4420         Microsoft Visual Studio.
4421
4422 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4423
4424         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
4425           device/lib/libfloat.lib: added atof function.
4426
4427 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
4428
4429         * doc/sdccman.lyx: updated to Lyx 1.3
4430         * doc/cdbfileformat.lyx: updated to Lyx 1.3
4431         * doc/test_suite_spec.lyx: updated to Lyx 1.3
4432         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
4433
4434 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
4435
4436         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
4437
4438 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4439
4440         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
4441           additions to the "related tools/documentation" section
4442
4443 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
4444
4445         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
4446
4447 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
4448
4449         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
4450         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
4451
4452 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
4453
4454         * doc/sdccman.lyx: fix double dash and other minor things
4455         * doc/Makefile: fix double dash
4456
4457 2003-05-28  Karl Bongers(patches from Martin Helmling)
4458         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
4459           condition and ignore commands.
4460
4461 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4462
4463         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
4464           is in parts still quite out of date, I did changes as far as I felt makes sense
4465           for a non-native english speaker.
4466           Please feel free to add to the manual or to correct my changes.
4467         * doc/Makefile: undid touching the date of intermediate tex files.
4468
4469 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4470
4471         * doc/sdccman.lyx: Manual has an index now
4472
4473 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
4474
4475         Finalize muluint/mulsint and mululong/mulslong merging:
4476         * device/lib/_mulint.c
4477         * device/lib/_mullong.c
4478         * device/lib/gbz80/mul.s
4479         * device/lib/gbz80/stubs.s
4480         * device/lib/z80/mul.s
4481         * device/lib/z80/stubs.s
4482         * src/SDCCsymt.c (initCSupport)
4483
4484 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4485
4486         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
4487         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
4488           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
4489           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
4490           instead of /Zm500.
4491
4492 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4493
4494         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
4495           the regression tests I'm not brave enough to enable 245.b, 245.c
4496         * doc/sdccman.lyx: added latex preamble for hyperref package.
4497           Using pdflatex this will give you a hyperlinked pdf file with
4498           bookmarks. (prepend '%' before /usepackage if this breaks something)
4499
4500 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4501
4502          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
4503
4504 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
4505
4506         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
4507
4508 2003-05-21    <johan AT balder>
4509
4510         * src/SDCCglue.c (printIval): fixed bug #739934
4511
4512 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
4513
4514         Applied patch from bug 737905 (renamed yylineo to mylineno):
4515         * src/altlex.c
4516         * src/SDCCast.c
4517         * src/SDCglobl.h
4518         * src/SDCC.lex
4519         * src/SDCCsymt.c
4520         * src/SDCCval.c
4521         * src/pic16/pcode.c: Cleaned warnings
4522         * src/pic16/pcodeflow.c: Cleaned warnings
4523         * src/pic16/pcoderegs.c: Cleaned warnings
4524
4525 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
4526
4527         * src/pic16/pcode.c: Cleaned warnings
4528         * src/pic16/pcodepeep.c: Cleaned warnings
4529         * src/pic16/ralloc.c: Cleaned warnings
4530
4531 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
4532
4533         * doc/sdccman.lyx: fixed bug 739745
4534         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
4535
4536 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
4537
4538         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
4539         it can be defined with CFLAGS when running configure
4540         * src/SDCCmain.c: fixed compiling + linking with object files
4541
4542 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
4543
4544         * configure.in: configure for pic16 port,
4545             added --disable-pic16-port
4546         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
4547         * src/SDCCmain.c: linkOptions is changed to set *,
4548             added if/endif conditional macros to remove options help
4549             messages from optionsTable when a port is not configured, added
4550             support for the PIc16 port in the ports table, when executing
4551             the compiler with no port specified on command line, a default
4552             port is selected with the new macro DEFAULT_PORT which is
4553             defined in port.h, in setDefaultOptions() linkOptions is removed
4554             from initialization assignment, since now it is a set,
4555             parseCmdLine uses setParseWithComma for linkOptions, in
4556             linkEdit() linkOptions are accessed with new function indexSet()
4557             which returns the i'th item of a set variable. See SDCCset.c, in
4558             linkEdit() when calling buildCmdLine(), added linkOptions as
4559             last argument. Now users can pass arguments to gplink via the
4560             -Wl option, main() uses pic16glue() to glue up pic16 programs
4561         * src/SDCCpeeph.c: various changes to support pic16
4562         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
4563             return the i'th item of the set
4564         * src/SDCCset.h: added function prototype for indexSet()
4565         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
4566         * src/clean.mk: added pic16 in CLEANALLPORTS variable
4567         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
4568             added macro DEFAULT_PORT
4569         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
4570         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
4571             generated
4572         * src/pic16/glue.c: commented out some error producing lines
4573         * src/pic16/main.c: __config directives are commented out to stop
4574             gpasm complaining and test the linkage with gplink, _linkCmd and
4575             _asmCmd changed to be more gplink and gpasm friendly
4576         * src/pic16/peeph.def: peep rule 3 is commented out, since it
4577             produced an error when parsed, peep rule 12 is added to utilize
4578             movff, but it is commented out since the pCode does not support
4579             yet a command with 2 address arguments
4580
4581 2003-05-18    <johan AT balder>
4582
4583         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
4584         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
4585 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
4586
4587         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
4588   Added feature to script commands from file.
4589
4590 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
4591
4592         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
4593         * src/SDCCutil.c: include ctype.h for win32
4594
4595 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
4596
4597         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
4598
4599 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
4600
4601         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
4602   Fixed so you can set breakpoints prior to run, run does not stop
4603   on entry now.  Add tbreak.  Other enhancements and fixes for use
4604   with ddd.
4605
4606 2003-05-12  Borut Razem <borut.razem AT siol.net>
4607
4608         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
4609
4610 2003-05-11  Borut Razem <borut.razem AT siol.net>
4611
4612         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
4613         the path of bin directory, so that PATH is the only env. variable, which has to be set
4614         in case of standard installation.
4615         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
4616         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
4617         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
4618
4619 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
4620
4621         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
4622         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
4623         temp files are in the port dir; clean the gen/test directory when
4624         generating new test.c
4625         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
4626         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
4627         * support/regression/tests/zeropad.c: added
4628
4629 2003-05-09    <johan AT balder>
4630
4631         * src/SDCCglue.c: fixed bug #597940
4632
4633 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
4634
4635         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
4636   cache sfr, optimize next,step, fix off by one sourceline,
4637   support ddd list function.
4638         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
4639
4640 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
4641
4642         * support/regression/HTMLgen.py: added compare_s2f()
4643         * support/regression/Makefile: redo 1.27
4644         * support/regression/generate-cases.py: redo 1.5
4645
4646 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
4647
4648         * support/regression/tests/float.c: workaround 33 bit hex constant
4649         * support/regression/tests/simplefloat.c: fix division for host
4650
4651 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
4652
4653         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
4654         that tame's the PIC's over-aggressive optimizer.
4655
4656 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4657
4658          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
4659          support for MSVC.
4660
4661 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
4662
4663         Initial support for DS80C400. "Hello world" runs on TINIm400
4664         (with polled I/O).
4665
4666 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
4667
4668          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
4669          * Some notes on ddd usage added in debugger/README
4670          Martin Helmling adding more features and fixes for ddd GUI debugger.
4671          Code added for nexti, stepi, up, down, and other adjustments.
4672
4673 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
4674
4675         * src/pic/pCodepeep.c non-wildcard asmops are now handled
4676         * src/pic/peeph.def Added two rules to optimize carry manipulation
4677         * src/pic/* removed debug printfs
4678
4679 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
4680
4681         * debugger/mcs51/cmd.c: added header newalloc.h
4682
4683 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
4684
4685         * as/Makefile: new EXEEXT
4686         * as/z80/Makefile: remove trailing slash of BUILDIR
4687         * as/z80/clean.mk: new EXEEXT
4688         * Makefile.common.in: add to CFLAGS (and others), don't replace it
4689         * support/cpp2/Makefile.in: new EXEEXT
4690         * src/pic/glue.c (pic14emitRegularMap): fixed warning
4691
4692 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
4693
4694         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
4695         EXEEXT was introduced to fix all related problems with targets
4696         "clean", "install" and "uninstall"; a couple of further flaws
4697         especially with "clean" have been fixed too
4698         * as/mcs51/Makefile.in
4699         * as/mcs51/clean.mk
4700         * as/z80/Makefile
4701         * Makefile
4702         * clean.mk
4703         * debugger/mcs51/Makefile.in
4704         * debugger/mcs51/clean.mk
4705         * link/z80/Makefile
4706         * link/z80/Makefile.in
4707         * link/z80/clean.mk
4708         * link/Makefile
4709         * packihx/Makefile.in
4710         * packihx/clean.mk
4711         * sim/ucsim/Makefile
4712         * sim/ucsim/clean.mk
4713         * sim/ucsim/avr.src/Makefile.in
4714         * sim/ucsim/avr.src/clean.mk
4715         * sim/ucsim/s51.src/Makefile.in
4716         * sim/ucsim/s51.src/clean.mk
4717         * sim/ucsim/xa.src/Makefile.in
4718         * sim/ucsim/xa.src/clean.mk
4719         * sim/ucsim/z80.src/Makefile.in
4720         * sim/ucsim/z80.src/clean.mk
4721         * sim/ucsim/main_in.mk
4722         * sim/ucsim/packages_in.mk
4723         * sim/ucsim/gui.src/Makefile.in
4724         * sim/ucsim/gui.src/serio.src/Makefile.in
4725         * sim/ucsim/gui.src/serio.src/clean.mk
4726         * src/Makefile.in
4727         * src/clean.mk
4728         * support/cpp2/Makefile.in
4729         * support/cpp2/clean.mk
4730         * support/makebin/Makefile
4731         * support/makebin/clean.mk
4732         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
4733         * doc/sdccman.lyx: --program-suffix no longer needed
4734
4735 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
4736
4737          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
4738          Martin Helmling added support for ddd GUI debugger.
4739          Code added to display assembly, set variables, and other commands
4740          to interface to ddd.
4741
4742 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
4743
4744         * as/Makefile: fix target clean
4745         * as/clean.mk: fix target clean
4746         * as/z80/clean.mk: fix target clean
4747
4748 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
4749
4750         * Makefile.common.in: added  AT EXEEXT AT
4751         * configure.in: removed all mingw32 stuff
4752         * configure: rebuilt from configure.in
4753         * doc/sdccman.lyx: updated section "installation"
4754         * support/scripts/sdcc_mingw32: adapted to configure
4755         * support/scripts/sdcc_cygwin_mingw32: added
4756
4757 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
4758
4759         * src/pic Added object file support for the PIC port
4760         * src/pic Applied patch from Craig Franklin (this started the object file support)
4761         * src/regression Updated the PIC regression tests for object files
4762
4763 2003-04-20  Borut Razem <borut.razem AT siol.net>
4764
4765         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
4766           lklex.c: In function `getfid':
4767           lklex.c:203: warning: array subscript has type `char'
4768         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
4769           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
4770         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
4771           stack handling macros
4772
4773 2003-04-19  Borut Razem <borut.razem AT siol.net>
4774
4775         * "handling space characters in file path" task:
4776         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
4777         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
4778         * support/Util/MySystem.h: make it self-sufficient
4779         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
4780           src/z80/main.c, sdcc/as/mcs51/lklex.c:
4781           handling space characters in file path
4782         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
4783           (it will be used by assemblers, which have their own includes, e.g. gpasm)
4784         * support/Util/MySystem.c: handling space characters in executable's path
4785
4786 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
4787
4788         * as/z80/Makefile: fix permanent rebuild of z80
4789         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
4790         * support/regression/tests/bitfields.c: added Johan's bitfields.c
4791
4792 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
4793
4794         * src/SDCCopt.c: add special case optimization to replace modulo by
4795           a power of two with a bitwise AND.
4796
4797 2003-04-18    <johan AT balder>
4798
4799         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
4800
4801 2003-04-17    <johan AT balder>
4802
4803         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
4804         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
4805
4806 2003-04-13  Borut Razem <borut.razem AT siol.net>
4807
4808         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
4809         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
4810           fixed mingw problem in adl_NORMALIZE_PATH
4811
4812 2003-04-12  Borut Razem <borut.razem AT siol.net>
4813
4814         * fixed "#pragma SAVE/RESTORE can not be nested":
4815         * src/SDCC.lex: reworked pragma handling functions
4816         * sdcc/src/SDCCglobl.h: reworked stack handling macros
4817         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
4818
4819 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
4820
4821         * src/SDCCutil.c (pathEquivalent): defined but not used
4822         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
4823         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
4824         * configure: rebuilt from configure.in
4825         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
4826         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
4827         * device/include/Makefile.in: replace sdcc_datadir
4828         * device/lib/Makefile.in: replace sdcc_datadir
4829         * Makefile.common.in: add LDFLAGS from configure
4830         * packihx/Makefile.in: use LDFLAGS
4831         * src/Makefile.in: use LDFLAGS
4832         * support/cpp2/Makefile.in: add LDFLAGS from configure
4833         * support/makebin/Makefile: use LDFLAGS
4834         * .version: bumped version number to 2.3.5
4835
4836 2003-04-12  Borut Razem <borut.razem AT siol.net>
4837
4838         * completed "different paths" task:
4839         * src/SDCCmacro.c: fixed bug in handling quotes
4840         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
4841         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
4842
4843 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
4844
4845         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
4846
4847 2003-04-11 kevin Vigor <kevin AT vigor.nu>
4848
4849         * ds390/gen.c ds390/peeph.def: fix bug 706781
4850
4851 2003-04-11  Borut Razem <borut.razem AT siol.net>
4852
4853         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
4854
4855 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
4856
4857         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
4858         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
4859          set - this bit used to not be set...).
4860         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
4861           bad code in PIC Port
4862         * src/regression/and2.c added to test bug 609268
4863         * src/regression/Makefile added and2.c to regression test
4864
4865
4866 2003-04-08    <johan AT CP255758-A>
4867
4868         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
4869         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
4870         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
4871
4872 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
4873
4874         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
4875         fix bug #487815
4876         * support/cpp2/Makefile.in: fix bug #487815
4877         * configure: rebuilt from configure.in
4878         * Makefile.common.in: docdir changed, new path suffixes
4879         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
4880         * sdcc_vc_in.h: reflect changes from sdccconf.h
4881         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
4882         * src/SDCCutil.h: remove BINDIR hack
4883         * doc/sdccman.lyx: update new path hierarchy
4884
4885 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
4886
4887         * src/SDCCpeeph.c: added okToRemoveSLOC test
4888
4889 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
4890
4891         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
4892
4893 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
4894
4895         * src/SDCCpeeph.c: added labelIsReturnOnly test
4896         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
4897
4898 2003-04-05    <johan AT balder>
4899
4900         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
4901         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
4902         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
4903         * src/SDCCast.c: fixed a warning
4904         * src/SDCCast.h: fixed a warning
4905         * src/SDCCicode.c (operandFromAst): fixed a warning
4906
4907 2003-04-04    <johan AT balder>
4908
4909         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
4910         * src/SDCCast.c (decorateType): fixed bug #715076
4911         * src/SDCC.y: fixed bug #702907
4912
4913 2003-04-03    <johan AT balder>
4914
4915         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
4916         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
4917         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
4918         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
4919         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
4920
4921 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
4922
4923         * _decdptr.c: fix return values
4924         * _gptrget.c: fix return values
4925         * _gptrgetc.c: fix return values
4926         * _gptrput.c: fix return values
4927         * _mulint.c: fix return values
4928         * as/z80/Makefile: fix 'make -j' problem
4929
4930 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
4931
4932         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
4933         * configure.in: big cleanup, updated to autoconf 2.5x
4934         * configure: rebuilt from configure.in
4935         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
4936         * sdcc_vc_in.h: reflect changes from sdccconf.h
4937         * doc/Makefile: fixed a flaw in "make install"
4938
4939 2003-04-02    <johan AT balder>
4940
4941         * src/ds390/gen.c (genCmp): no comments
4942         * src/mcs51/gen.c (genCmp): no comments
4943         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
4944         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
4945
4946 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
4947
4948         * support/regression/generate-cases.py: place generated file in given sub directory
4949         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
4950         * support/regression/Makefile: improvements for 'make -j';
4951         side effect: it's simpler and faster now
4952
4953 2003-03-31  Borut Razem <borut.razem AT siol.net>
4954
4955         * src/z80/main.c: link-{port} and as-{port} defined without path
4956         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
4957
4958 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
4959
4960         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
4961
4962 2003-03-30  Borut Razem <borut.razem AT siol.net>
4963
4964         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
4965           changed type of list parameter to set
4966         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
4967         * src/port.h: changed type of do_assemble() parameter to set
4968         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
4969           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
4970           definition of "cppoutfilename" macro with NULL value in preProcess()
4971         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
4972         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
4973         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
4974           replaced with set *binPathSet
4975         * shash_add() deallocates the item, if allready exsists, before adding the new one
4976         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
4977
4978 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
4979
4980         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
4981           a nested for loop bug in the PIC port
4982         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
4983           for loops
4984
4985 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
4986
4987         * support/Util/dbuf.h: remove C++ stuff to make it portable
4988
4989 2003-03-28  Borut Razem <borut.razem AT siol.net>
4990
4991         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
4992           literal strings in stringLiteral()
4993         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
4994         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
4995           to the project
4996
4997 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
4998
4999         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
5000
5001 2003-03-26    <johan AT balder>
5002
5003         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
5004         * src/ds390/gen.c (saveRegisters): catched symbol abuse
5005         * src/SDCCast.c (decorateType): fixed " -v < 3"
5006
5007 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
5008
5009         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
5010         Added Lenny Story's debug infrastructure changes:
5011         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
5012         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
5013         * src/cdbFile.c: added
5014         * src/SDCCdebug.c: added
5015         * src/SDCCdebug.h: added
5016         * src/SDCCast.c (createFunction)
5017         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
5018         * src/SDCCmain.c (parseCmdLine, main)
5019         * src/SDCCmem.c (redoStackOffsets)
5020         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
5021         * src/SDCCsymt.h
5022         * src/common.h
5023         * src/avr/gen.c (genAVRCode)
5024         * src/ds390/gen.c (gen390Code)
5025         * src/mcs51/gen.c (gen51Code)
5026         * src/pic/gen.c (genpic14Code)
5027         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
5028         * src/xa51/gen.c (genXA51Code)
5029         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
5030
5031 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5032
5033         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
5034         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
5035
5036 2003-03-22    <johan AT balder>
5037
5038         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
5039
5040 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
5041
5042         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
5043         * doc/cdbfileformat.lyx: added, written by Lenny Story
5044         * doc/Makefile: added cdbfileformat.lyx
5045         * doc/clean.mk: added cdbfileformat.lyx
5046
5047 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
5048
5049         * src/mcs51/peeph.def: fix bug #705773
5050
5051 2003-03-20    <johan AT balder>
5052
5053         An sfr/sbit can have an "at #" AND an initializer
5054         * src/SDCCsymt.c (checkSClass):
5055         * src/SDCCmem.c (allocGlobal):
5056         * src/SDCCmem.c (allocLocal):
5057         * src/SDCCast.c (createBlock):
5058
5059 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
5060
5061         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
5062
5063 2003-03-16    <johan AT balder>
5064
5065         Undid the hackup of const and volatile, the problem is much bigger
5066         * src/SDCC.y:1.65
5067         * src/SDCCast.c:1.171
5068         * src/SDCCglue.c:1.138
5069         * src/SDCCicode.c:1.146
5070         * src/SDCCsymt.c:1.150
5071         * src/SDCCval.c:1.65
5072
5073 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
5074
5075         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
5076         * src/ds390/gen.c (genAddrOf): fixed bug #704087
5077
5078 2003-03-13    <johan AT balder>
5079
5080         Hackup const and volatile modifiers in type chains a bit:
5081         * src/SDCC.y:1.63
5082         * src/SDCCast.c:1.169
5083         * src/SDCCglue.c:1.136
5084         * src/SDCCicode.c:1.143
5085         * src/SDCCsymt.c1.146
5086         * src/SDCCsymt.h1.59
5087         * src/SDCCval.c:1.63
5088
5089 2003-03-12    <johan AT balder>
5090
5091         * src/SDCCBBlock.h: more LRH debugging junk
5092         * src/SDCCcflow.h: more LRH debugging junk
5093         * src/SDCCloop.c: more LRH debugging junk
5094         * src/SDCC.y (struct_declaration): fixed bug #697590
5095         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
5096         * src/ds390/gen.c (aopForRemat): fixed bug #700031
5097         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
5098
5099 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
5100         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
5101         test function names must now match exactly).
5102         * src/SDCCcse.c: added special case in findCheaperOp to allow
5103         extending a short integer. Makes less awful code for bug 700121 test case.
5104
5105 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5106
5107         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
5108         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
5109
5110 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
5111
5112         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
5113         actually called (operandsNotEqual() was called for all
5114         operandsNotEqualX tests).
5115
5116 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
5117
5118         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
5119         with shorter literals. Fixes bug 700121.
5120
5121 2003-03-11    <johan AT balder>
5122
5123         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
5124
5125 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
5126
5127         * src/SDCCloop.c (mergeRegions): an evil beast is dead
5128         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
5129
5130 2003-03-10  Borut Razem <borut.razem AT siol.net>
5131
5132         * src/SDCCmain.c: pipe preprocessor's output
5133         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
5134         * sdcc_vc_in.h: define pclose as _pclose for WIN32
5135         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
5136         which closes all pipes in pipeSet set
5137         * src/SDCCset.c: free deleted item in function deleteSetItem()
5138         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
5139         moved from z80 to src subproject
5140         * .version: increased version number to 2.3.4
5141
5142 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
5143
5144         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
5145         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
5146         * support/regression/ports/xa51/spec.mk: fix typo
5147
5148 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
5149
5150         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
5151
5152 2003-03-09  Borut Razem <borut.razem AT siol.net>
5153
5154         * src/SDCCmain.c: pipe preprocessor's output
5155         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
5156         * sdcc_vc_in.h: define pclose as _pclose for WIN32
5157         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
5158         which closes all pipes in pipeSet set
5159         * src/SDCCset.c: free deleted item in function deleteSetItem()
5160         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
5161         moved from z80 to src subproject
5162
5163 2003-03-09  Borut Razem <borut.razem AT siol.net>
5164
5165         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
5166         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
5167         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
5168         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
5169         * src/SDCCglobl.h: unification of WIN32 native definitions
5170
5171 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5172
5173         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
5174
5175 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
5176
5177         * src/configure.in:   check for endianess (even while cross-compiling)
5178         * src/configure:      check for endianess (even while cross-compiling)
5179         * src/configure_in.h: check for endianess (even while cross-compiling)
5180         * src/avr/gen.c:        remove old endianess stuff
5181         * src/mcs51/gen.c:      remove old endianess stuff
5182         * src/ds390/gen.c:      remove old endianess stuff
5183         * src/pic/gen.c:        remove old endianess stuff
5184         * src/pic/genarith.c:   remove old endianess stuff
5185         * src/pic/glue.c:       fix endianess check
5186         * src/pic16/gen.c:      remove old endianess stuff
5187         * src/pic16/genarith.c: remove old endianess stuff
5188         * src/pic16/glue.c:     fix endianess check
5189         * src/xa51/gen.c:       remove old endianess stuff
5190         * src/z80/gen.c:        fix endianess check
5191         * src/SDCCglue.c:       fix endianess check
5192         * src/ds390/peeph.def: fix bug 700036
5193
5194 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
5195
5196         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
5197         * src/configure: find appropriate data-types on host for SDCC's int and long
5198         * src/configure.in: find appropriate data-types on host for SDCC's int and long
5199         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
5200         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
5201
5202 2003-03-07    <johan AT balder>
5203
5204         Just a big NOOP:
5205                 some minor cleanups before the big shot
5206                 OP_DEFS and OP_USES now use Kevin's protection
5207                 new option --nolabelopt
5208
5209         * src/SDCCBBlock.c:
5210         * src/SDCCast.c,:
5211         * src/SDCCcflow.c:
5212         * src/SDCCcse.c:
5213         * src/SDCCicode.c:
5214         * src/SDCCicode.h:
5215         * src/SDCClabel.c:
5216         * src/SDCCloop.c:
5217         * src/SDCCmain.c:
5218         * src/ds390/ralloc.c:
5219         * src/mcs51/ralloc.c:
5220         * src/pic/ralloc.c:
5221         * src/xa51/ralloc.c:
5222         * src/z80/ralloc.c:
5223
5224 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
5225
5226         * src/pic/pcode.c (get_op): fix 64 bit warnings
5227         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
5228         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
5229         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
5230         * support/regression/tests/malloc.c: fix 64 bit warnings
5231
5232 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
5233
5234         * src/mcs51/gen.c (genMinus): fixed bug 696436
5235
5236 2003-03-02  Borut Razem <borut.razem AT siol.net>
5237
5238         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
5239
5240 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
5241
5242         * configure.in: test for mkstemp
5243         * sdccconf_in.h: add HAVE_MKSTEMP
5244
5245 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
5246
5247         * device/include/ctype.h: removed warning while using --stack-auto
5248         * device/include/malloc.h: removed warning while using --stack-auto
5249         * device/include/string.h: removed warning while using --stack-auto
5250
5251 2003-02-23  Borut Razem <borut.razem AT siol.net>
5252
5253         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
5254         because NDEBUG is defined (see man assert)
5255         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
5256
5257 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5258
5259         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
5260         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
5261
5262 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5263
5264         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
5265         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
5266
5267 2003-02-18    <johan AT balder>
5268
5269         * as/mcs51/asmain.c (asmbl): module can start with a digit
5270         * as/z80/asmain.c (asmbl): module can start with a digit
5271
5272 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
5273
5274         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
5275         * src/asm.c: fix pipe() for Mingw32
5276
5277 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
5278
5279         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
5280         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
5281         make -V work again; --c1mode reads now from stdin
5282         * doc/sdccman.lyx: added --c1mode
5283         * support/Util/SDCCerr.c: new messages for c1 mode
5284         * support/Util/SDCCerr.h: new messages for c1 mode
5285         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
5286
5287 2003-02-15    <johan AT balder>
5288
5289         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
5290
5291 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
5292
5293         * doc/sdccman.lyx: Environment variables, -o and other minor things
5294
5295 2003-02-14    <johan AT balder>
5296
5297         * src/xa51/main.c: before anyone really tries to use it :)
5298
5299         * Install doc's in share/sdcc/doc
5300         * removed some obsolete files
5301         * Do a proper make distclean and uninstall
5302         M Makefile.common.in
5303         R sdccbuild.sh
5304         M as/Makefile
5305         M device/include/Makefile.in
5306         M device/lib/Makefile.in
5307         M doc/sdccman.lyx
5308         M link/Makefile
5309         M sim/ucsim/doc/Makefile.in
5310         M src/clean.mk
5311         R src/avr/peeph.rul
5312         R src/xa51/peeph.rul
5313         M support/cpp2/Makefile.in
5314         M support/makebin/Makefile
5315
5316
5317 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
5318
5319         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
5320
5321 2003-02-10  Borut Razem <borut.razem AT siol.net>
5322
5323         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
5324         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
5325         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
5326         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
5327         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
5328         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
5329         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
5330         src/z80/Makefile.bcc: Borland Makefile cleanup
5331         * as/z80/Makefile.bcc: Added Borland Makefile
5332         * support/cpp2/borland.h: Removed
5333
5334 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
5335
5336         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
5337         * src/SDCC.lex: new pragma NOIV
5338         * src/SDCCglobl.h: new pragma NOIV
5339         * src/SDCCmem.c: new pragma NOIV
5340
5341 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
5342
5343         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
5344
5345 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
5346
5347         * src/SDCCmain.c: signal handling is switched off by --debug
5348         * doc/Makefile: small fix for install; use clean.mk again
5349         * doc/clean.mk: clean *.pdf and *.html too
5350
5351 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
5352
5353         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
5354         * device/lib/printfl.c: fix a ds390 bug by making it portable
5355         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
5356         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
5357         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
5358         * debugger/mcs51/cmd.c: converted multi-line string literals
5359         * sim/ucsim/globals.cc: converted multi-line string literals
5360         * src/SDCCmain.c: introduced signal handler to remove temp files
5361         * doc/Makefile: small tweaks, implement clean
5362         * doc: removed generated files
5363
5364 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5365
5366         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
5367         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
5368         Address Record is not correctly generated for DS390."
5369
5370 2003-02-02  Borut Razem <borut.razem AT siol.net>
5371
5372         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
5373         * as/mcs51/asm.h: fixed compilation with Borland C
5374         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
5375         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
5376         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
5377         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
5378         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
5379         src/z80/Makefile.bcc: delete $(LIB) only if exist
5380         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
5381
5382 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
5383
5384         * device/include/malloc.h: introduced NULL
5385         * device/include/string.h: introduced NULL
5386         * device/include/stdlib.h: introduced NULL
5387         * device/lib/_memcpy.c: removed NULL
5388         * device/lib/_strcat.c: removed NULL
5389         * device/lib/_strchr.c: removed NULL
5390         * device/lib/_strcmp.c: removed NULL
5391         * device/lib/_strcpy.c: removed NULL
5392         * device/lib/_strcspn.c: removed NULL
5393         * device/lib/_strlen.c: removed NULL
5394         * device/lib/_strncat.c: removed NULL
5395         * device/lib/_strncmp.c: removed NULL
5396         * device/lib/_strncpy.c: removed NULL
5397         * device/lib/_strpbrk.c: removed NULL
5398         * device/lib/_strrchr.c: removed NULL
5399         * device/lib/_strspn.c: removed NULL
5400         * device/lib/_strstr.c: removed NULL
5401         * device/lib/_strtok.c: removed NULL
5402         * device/lib/malloc.c: removed NULL, include own header
5403
5404 2003-02-02    <johan AT balder>
5405
5406         * 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
5407         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
5408         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
5409         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
5410         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
5411         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
5412
5413 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5414
5415         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
5416         area 'DATA'"
5417
5418 2003-02-01    <johan AT balder>
5419
5420         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
5421
5422 2003-01-31    <johan AT CP255758-A>
5423
5424         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
5425
5426 2003-01-30    <johan AT balder>
5427
5428         * src/SDCCBBlock.c: automatic bug detection
5429         * src/SDCCicode.c: automatic bug detection
5430
5431 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5432
5433         * src/SDCCglobl.h:   now --xram-size 0 works
5434         * src/SDCCmain.c:    now --xram-size 0 works
5435
5436 2003-01-29    <johan AT balder>
5437
5438         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
5439
5440 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5441
5442         * as/mcs51/aslink.h: Added options --xram-size and --code-size
5443         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
5444         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
5445         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
5446         * src/SDCCglobl.h:   Added options --xram-size and --code-size
5447         * src/SDCCmain.c:    Added options --xram-size and --code-size
5448
5449 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
5450
5451         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
5452         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
5453
5454 2003-01-27    <johan AT balder>
5455
5456         * src/SDCC.y: fixed bug #613764
5457
5458 2003-01-26    <johan AT balder>
5459
5460         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
5461         * src/SDCCsymt.h: fixed bug #673374
5462         * src/SDCCglue.c: fixed bug #661910
5463         * src/SDCCast.c: fixed bug #458099 and 673374
5464
5465 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
5466
5467         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
5468         * as/mcs51/strcmpi.h: added
5469         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
5470         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
5471         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
5472         * as/mcs51/assym.c: strcmpi -> as_strcmpi
5473         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
5474         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
5475         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
5476         * as/mcs51/Makefile.aslink: new module strcmpi
5477         * as/mcs51/Makefile.asx8051: new module strcmpi
5478         * as/mcs51/Makefil.bcc: new module strcmpi
5479         * as/mcs51/Makefile.in: new module strcmpi
5480         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
5481
5482 2003-01-26    <johan AT balder>
5483
5484         * src/SDCCglue.c: reverted back to 1.124
5485         * src/SDCCast.c: reverted back to 1.156
5486         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
5487
5488 2003-01-25    <johan AT balder>
5489
5490         * src/SDCCglue.c: A better fix for bug #661910
5491         * src/SDCCast.c: A better fix for bug #661910
5492         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
5493
5494 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
5495
5496         * src/Makefile.in: remove spawn.o
5497         * src/SDCCmain.c: remove spawn.h
5498         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
5499         * src/spawn.c: removed
5500         * src/spawn.h: removed
5501         * support/regression/ports/ds390/spec.mk: link with -r
5502
5503 2003-01-24    <johan AT CP255758-A>
5504
5505         * src/ds390/gen.c (aopOp): fixed bug #667458
5506         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
5507         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
5508         (createIvalCharPtr): an ival doesn't always have a storage class anymore
5509
5510 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
5511
5512         * src/mcs51/peeph.def: better assembler identation by Frieder
5513         * src/mcs51/gen.c: better assembler identation by Frieder
5514
5515 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
5516
5517         * as/z80/string.h: removed for gcc 3.2
5518         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
5519         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
5520
5521 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
5522
5523         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
5524         * src/SDCCpeeph.c (replaceRule): fix bug #663503
5525         * support/regression/Makefile: separate temp files for ports
5526         * support/regression/generate-cases.py: separate temp files for ports
5527         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
5528         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
5529
5530 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
5531
5532         * moved tinitalk to device/examples/ds390
5533
5534 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
5535
5536         * as/mcs51/lkmem.c: rflag is for DS390
5537         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
5538         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
5539                          (linkEdit): move mem- and map-files the same way as ihx-files
5540         * src/z80/main.c (_setDefaultOptions): removed --generic
5541         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
5542         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
5543         * src/pic/glue.c (picglue): --c1mode works again
5544         * src/pic16/glue.c (pic16glue): --c1mode works again
5545         * src/asm.c (printCLine): fix #660034
5546
5547 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
5548
5549         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
5550         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
5551         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
5552         * as/mcs51/lkmem (summary): better fix for sp problem
5553         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
5554         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
5555         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
5556                                               remove --stack-after-data
5557
5558 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
5559
5560         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
5561         * src/SDCCutil.c (join): ugly bug: missing '\0'
5562         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
5563
5564 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
5565
5566         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
5567         * src/port.h: typo
5568         * src/pic/main.c (_asmCmd): gpasm supports -o
5569         * src/z80/main.c: more general macros
5570         * device/lib/Makefile.in: remove intermediate files
5571
5572 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
5573
5574         * .version: Bumped version number to 2.3.3
5575         * src/SDCCBBlock.c: new option -o
5576         * src/SDCCglobl.h: new option -o
5577         * src/SDCCglue.c: new option -o
5578         * src/SDCCmain.c: new option -o
5579         * src/asm.c: new option -o
5580         * src/ds390/main.c: new option -o
5581         * src/pic/glue.c: new option -o
5582         * src/pic/pcode.c: new option -o
5583         * src/pic/ralloc.c: new option -o
5584         * src/pic16/glue.c: new option -o
5585         * src/pic16/pcode.c: new option -o
5586         * src/pic16/ralloc.c: new option -o
5587         * src/z80/main.c: new option -o
5588         * device/lib/Makefile.in: use -o
5589         * support/regression/ports/ds390/spec.mk: use -o
5590         * support/regression/ports/gbz80/spec.mk: use -o
5591         * support/regression/ports/mcs51/spec.mk: use -o
5592         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
5593         * support/regression/ports/z80/spec.mk: use -o
5594         * support/regression/ports/ucz80/spec.mk: use -o
5595         * support/regression/ports/xa51/spec.mk: use -o
5596         * support/regression/fwk/lib/timeout.c: fix usage string
5597
5598 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
5599         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
5600
5601 2003-01-07    <johan AT balder>
5602
5603         * src/SDCCast.c (decorateType): fixed bug #600035
5604
5605 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
5606         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
5607         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
5608         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
5609         * src/pic/pcode.c: outcommented unused variable to remove warnings
5610         * src/pic/ralloc.c: outcommented unused variable to remove warnings
5611
5612 2003-01-06    <karl AT turbobit.com>
5613         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
5614    regression tests.
5615
5616 2003-01-06    <johan AT balder>
5617
5618         * src/SDCCicode.c: fixed array add
5619
5620 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
5621         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
5622         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
5623
5624 2003-01-04    <johan AT balder>
5625
5626         * src/SDCCval.c (getNelements): fixed the initialized array of structures
5627
5628 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5629         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
5630
5631 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
5632         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
5633         * support/regression/tests/bug-524697.c: fit mem usage into 8032
5634
5635 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
5636         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
5637
5638 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
5639         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
5640
5641 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
5642         * src/mcs51/main.c: removed {bindir}{sep} from aslink
5643
5644 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5645
5646     * in \sdcc\as\mcs51\ changed these files in order to create an
5647     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
5648     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
5649     following files to include the previous two files: aslink.dsp,
5650     Makefile.aslink, Makefile.bcc, and Makefile.in.
5651
5652     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
5653     .adb instead of .cdb
5654
5655 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5656
5657         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
5658         value from option --iram-size.
5659
5660 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5661
5662         * \sdcc\as\mcs51\lklist.c: added boundary check before using
5663         dram[] array.
5664
5665 2002-09-18    <wiml AT hhhh.org>
5666
5667         * SDCClrange.h: exposed setFromRange() and setToRange()
5668         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
5669           packRegsForAccUse() (bug 542397)
5670         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
5671           multiple times and emitting the fetch operations more than once
5672           added aopGetUsesAcc() function to allow binary operators to
5673           fetch their operands in the correct order; made genMinus() emit
5674           compact code for X = LITERAL - Y
5675
5676 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5677         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
5678         sprintf() in line 1267.
5679
5680 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5681         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
5682         like ports.
5683
5684 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5685         Changes to aslink (All the changes are marked with 'JCF'):
5686
5687         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
5688         summary().
5689
5690         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
5691         area BSEG.  Also moves, if possible, the DATA area down into the internal
5692         ram so more space is available.
5693
5694         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
5695         sflag.
5696
5697         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
5698         not bytes.  Function summary() which creates a memory usage summary
5699         file with extension .mem.  Reports of overlaping stack and small stack
5700         size.  If the space for the stack is less than 16 bytes aslink trows a
5701         warning.
5702
5703         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
5704         the 8051.  Option 'y' for memory summary output file.
5705
5706         Changes to sdcc (All the changes are marked with 'JCF'):
5707
5708         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
5709
5710         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
5711         overlaying area for it (uses RegBankUsed[4]).
5712
5713         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
5714         bank zero as used by default.  By default aslink locates the stack
5715         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
5716         the creation of the .mem file.  Delegates the allocation of data area
5717         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
5718         the begining of the stack area to aslink.
5719
5720         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
5721         glue() in SDCCglue.c creates an area for it.
5722
5723 2002-09-03  Borut Razem <borut.razem AT siol.net>
5724         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
5725         sdcc/src/pic/glue.c:
5726         introduced atexit() handler for teporay files removal in case of
5727         errors, assertions, ...
5728
5729 2002-08-29  Borut Razem <borut.razem AT siol.net>
5730         * sdcc/support/cpp2/auto-host_vc_in.h:
5731         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
5732         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
5733         Maybe there is a similar problem with BORLANDC? It should be checked!
5734
5735         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
5736         corrected improper use of assert: the assignment to clr variable was done inside the assert.
5737         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
5738         was not executed, and the compiler (cl) launched a warning:
5739         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
5740
5741 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
5742         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
5743
5744 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
5745         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
5746
5747         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
5748           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
5749           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
5750           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
5751           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
5752           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
5753           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
5754         - added Release configuration in VS projects
5755         - review of compiler an linker options
5756         - VC .exe files are generated in bin_vc directory, not to interfere
5757           with binaries generated from other projects (cygwin, mingw, bcc ...)
5758
5759         * sdcc/src/yacc.dsp: added
5760
5761         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
5762         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
5763         and insert the version number definitions from .version
5764
5765         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
5766
5767         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
5768         added - genarate auto-host.h using auto-host_vc_in.h as template
5769
5770         * sdcc/sdcc_vc.h,
5771         removed from CVS, generated automatically
5772
5773 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
5774         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
5775
5776 2002-08-11  Borut Razem <borut.razem AT siol.net>
5777         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
5778
5779 2002-08-10  Borut Razem <borut.razem AT siol.net>
5780         * src/SDCCmain.c (main):
5781         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
5782         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
5783         The consequence was that some temporary files were not removed.
5784
5785         * src/SDCCglue.c:
5786         unification of code in functions tempfilename() and tempfile():
5787         function tempnam() is defined in Visual Studio 6.0 and .NET
5788
5789         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
5790
5791         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
5792           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
5793         - removed compiler command line option /WX: Treats all warnings as errors
5794         - update a list of source files, included into the project
5795
5796         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
5797           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
5798         changed project type to Generic Project so that can be correcly converted to VS.NET project
5799
5800         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
5801
5802         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
5803
5804         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
5805
5806         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
5807         added return 0 statements after assert() to make compiler happy
5808
5809         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
5810         added newline in the def file to keep MSC compiler satisfied
5811
5812         * sdcc/src/z80/gen.c:
5813         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
5814           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
5815         - solved MSC error in function aopDump()
5816
5817         * sdcc_vc.h: define PREFIX as "\\sdcc"
5818
5819 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
5820         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
5821
5822 2002-06-22  Scott Dattalo <scott AT dattalo.com>
5823         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
5824         - Rewrote the register banking algorithm.
5825         - Added pCode live-range analysis to registers (for now, only non-used and
5826         singly-used registers optimized away)
5827
5828         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
5829
5830         * 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.
5831
5832 2002-05-10  Scott Dattalo <scott AT dattalo.com>
5833         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
5834
5835 2002-04-22  Michael Hope  <michaelh AT vroom>
5836
5837         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
5838
5839         * configure.in (DD_COPT): Added include support required for gbdk.
5840
5841         * .version: Bumped version number just to increase it.
5842
5843         * src/SDCCmain.c: Added -nostdinc to the default options.
5844
5845 2002-04-15  Michael Hope  <michaelh AT vroom>
5846
5847         * device/lib/z80/printf.c (sprintf): Added.
5848
5849         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
5850
5851         * src/z80/peeph.def: Added transpose redundent load rule.
5852
5853         * src/z80/main.c: Added force callee saves for jaune.
5854
5855         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
5856
5857         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
5858
5859 2002-03-28  Johan Knol  <johan AT balder>
5860
5861         * src/SDCCval.c: fixed bug #532436
5862
5863 2002-03-14  Scott Dattalo <scott AT dattalo.com>
5864         * /src/port.h:
5865         Added "char *Processor" field to the port structure.
5866
5867         * /src/SDCCmain.c:
5868         Added -p option. Allows port dependent processor to be specified.
5869
5870         * all ports:
5871         Initialized the new field char *Processor field to NULL in all ports
5872
5873         * /src/pic/*:
5874         Compiler generated registers for interrupt context saving
5875         were not getting allocated.
5876
5877 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
5878
5879         * /src/SDCCast.c:
5880         Fixed left shift. Will promote the left side of a left shift
5881         if a) left shifting more than size of operand or b) when assigned
5882         to something size > size of left side
5883
5884 2002-03-14  Scott Dattalo <scott AT dattalo.com>
5885         * src/pic/*
5886         tons of changes. Register allocation has been
5887         rewritten. Added customization for the various PICs. Flow
5888         analysis is restructured. ...
5889
5890         * src/pic/device.h:
5891         Added
5892
5893         * src/pic/device.c:
5894         Added. device.c is a PIC port hack to accomodate variations
5895         in PIC devices.
5896
5897 2002-03-13  Michael Hope  <michaelh AT vroom>
5898
5899         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
5900
5901 2002-03-04  johanknol  <johanknol AT manik>
5902
5903         * /src/SDCCval.c: fixed
5904
5905         const unsigned char arr[][2] = { { 0, 1 } };
5906         t18.c:1: error: Initializer element is not constant
5907
5908 2002-03-04  bela  <bela AT manik>
5909
5910         * /device/include/mcs51reg.h:
5911         ds89c420 register definition update
5912
5913 2002-03-03    <johan AT FRIJA>
5914
5915         * support/Util/SDCCerr.c: did something, but don't no why anymore
5916
5917         * support/regression/tests/bug-524691.c: made it a little less shy
5918
5919         * src/SDCCast.c (decorateType): fixed bug #524697
5920
5921         * src/SDCCast.c: made some lineno improvements
5922
5923         * src/SDCCval.c (getNelements): changed warning to error
5924
5925         * src/SDCCglue.c (printIvalArray): changed warning to error
5926
5927         * src/SDCCicode.c: fixed a warning for mingw
5928
5929         * src/SDCCast.c (decorateType): fixed the << promotion for ops
5930
5931         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
5932
5933 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
5934
5935         * src/ds390/peeph.def:
5936         Added some more peephole rules
5937
5938         * src/ds390/gen.c: Various fixes & enhancements
5939
5940         * src/SDCClrange.c, src/SDCClrange.h:
5941         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
5942
5943         * src/ds390/ralloc.c:
5944         various fixes & enhancements (ds390) specific
5945
5946         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
5947         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
5948         from rallocs.
5949
5950         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
5951
5952 2002-03-02    <johan AT FRIJA>
5953
5954         * src/SDCCast.c (decorateType): fixed bug #524708
5955
5956         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
5957
5958         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
5959
5960 2002-03-01  Michael Hope  <michaelh AT vroom>
5961
5962         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
5963
5964         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
5965
5966 2002-03-01    <johan AT FRIJA>
5967
5968         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
5969
5970         * src/SDCCast.c (decorateType): fixed bug #524209
5971
5972         * src/SDCCval.c (valNot): fixed bug #524195
5973
5974 2002-02-26    <johan AT balder>
5975
5976         * src/xa51/gen.c: fixed a warning
5977
5978         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
5979
5980         * src/SDCCast.c (decorateType): fixed bug #522534
5981
5982 2002-02-23    <johan AT balder>
5983
5984         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
5985
5986 2002-02-22    <johan AT balder>
5987
5988         * src/SDCCast.c: fixed bug #514865
5989
5990         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
5991
5992 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
5993
5994         * sdcc/src/SDCCloop.c:
5995         Previous fix was not good. basic blocks that have "break" or "return" are
5996         not really partof a loop , but live ranges used in these blocks should
5997         be live thru the entire loop, so set partOfLoop but don't add them to
5998         loop region
5999
6000 2002-02-21    <johan AT FRIJA>
6001
6002         * src/SDCCcse.c: fixed bug #514308
6003
6004 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
6005
6006         * src/SDCCloop.c:
6007         Fixed BUG #519583. If a conditional block ended in a return/break
6008         statement inside a loop, it was not being considered part of the loop.
6009
6010         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
6011
6012 2002-02-10  Karl Bongers <karl AT turbobit.com>
6013
6014         * debugger/*:
6015         Fixed up SDCDB debugger somewhat.  Updated debugger/README
6016         with lots of comments and notes.
6017
6018         * device/examples/test2.c:
6019         Fix bug, "red" variable not being initialized(compiler complained).
6020
6021         * device/examples/Makefile, examples/test3.c:
6022         Add Makefile in device/examples folder, compiles test3.c
6023         for use as a multiple module SDCDB test case.
6024
6025         * sim/ucsim/cmd.src/cmdset.cc:
6026         Took out debug printfs in ucsim "next" command.
6027
6028         * sim/ucsim/xa.src:
6029         Karl and Johan start ucsim XA support.  Most dissassembly working,
6030         about 75% emulation done(plenty of work remaining).
6031
6032         * sim/ucsim/z80.src:
6033         Add Z80 support to ucsim, add test-ucz80 regression test,
6034         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
6035         Notice z80 compiler fails on examples/test3.c/crc code.
6036
6037 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
6038
6039         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
6040         Added support for --parms-in-bank1
6041
6042         * src/ds390/peeph.def:
6043         added a few more peephole optimzations
6044
6045         * src/ds390/main.c:
6046         1) added __builtin_inp & __builtin_outp used to read in data of given length
6047            from a memory mapped port
6048         2) added __builtin_memcmp
6049         3) added __builtin_swapw swap bytes of a short
6050
6051         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
6052         1) handle multiple send & receives from register bank1
6053         2) ralloc can now allocate DPTR1 to some liveRanges
6054
6055         * src/SDCCsymt.c, src/SDCCsymt.h:
6056         changes to handle multiple sends & receives
6057
6058         * src/SDCCptropt.h:
6059         added some pointer arithmetic optimization
6060
6061         * src/SDCCptropt.c:
6062         added some pointer arithmetic optimizations but not stable yet so not
6063         called from anywhere (will get this working shortly)
6064
6065         * src/SDCCopt.c: fixed for multiple sends & receives
6066
6067         * src/SDCCmain.c:
6068         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
6069         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
6070            set preprocessor defines (depending on options)
6071
6072         * src/SDCCicode.c, src/SDCCicode.h:
6073         changes made to handle multiple sends & receives
6074
6075         * src/SDCCglobl.h:
6076         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
6077
6078         * src/SDCCcse.c, src/SDCCcse.h:
6079         added function findbackward def (to be used in upcoming optimization)
6080
6081         * src/SDCCcflow.c, src/SDCCcflow.h:
6082         added function returnAtEnd - to determine if a basic block terminates with
6083         a RETURN iCode
6084
6085         * src/SDCCast.c, src/SDCCast.h:
6086         added option parms-in-bank1
6087
6088         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
6089         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
6090         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
6091         adjusted for --parms-in-bank1 option
6092
6093         * device/include/string.h:
6094         donot redefine "reentrant" keyword
6095
6096         * device/include/ds80c390.h: Added some more SFRs
6097
6098 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
6099
6100         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
6101
6102 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
6103
6104         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
6105
6106 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
6107
6108         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
6109
6110 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
6111
6112         * Added --xram-movc option
6113
6114 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
6115
6116         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
6117
6118 2002-01-11  Johan Knol
6119
6120         * Added math lib of Jesus Calvino-Fraga
6121
6122 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
6123
6124         * src/SDCCmain.c (processFile): fix processing of ../../src.c
6125         * support/regression/Makefile: new target test-mcs51-stack-auto
6126         * support/regression/ports/mcs51-stack-auto/spec.mk: added
6127
6128 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
6129
6130         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
6131
6132 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
6133
6134         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
6135
6136 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
6137
6138         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
6139
6140         * src/SDCCglue.h: add definition for printIvalChar()
6141
6142 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
6143
6144         * src/SDCCast.c: fix #498138 by Johan
6145
6146         * src/SDCCglue.c: fix #498138 by Johan
6147
6148 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
6149
6150         * support/regression/Makefile: fix clean
6151
6152         * support/regression/ports/ds390/support.c: fix transmission of last character
6153
6154 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
6155
6156         * /sdcc/src/ds390/gen.c:
6157         a) improved computing address of stack variable
6158         b) took out some #if 0 code
6159         c) improved parmBytes adjustment
6160         d) improved genPlusIncr & genMinusIncr
6161         e) genCmp could generate bad code (when left assigned to DPTR)
6162         f) Fixed bug in hasInc
6163
6164         * /sdcc/src/ds390/ralloc.c:
6165         a) packRegsForSupport could mess up live information (Fixed)
6166         b) packRegsDPTRuse could be incorrect for left & right shift
6167
6168         * /sdcc/src/mcs51/ralloc.c:
6169         packRegsForSupport could mess up the live information (Fixed)
6170
6171         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
6172
6173         * /sdcc/src/SDCCast.c:
6174         can reverse a loop even if function call is present as long
6175         as the loop control variable is local & is not passed as parameter
6176
6177 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
6178
6179         * /sdcc/ChangeLog: *** empty log message ***
6180
6181         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
6182         More builtin function additions for TININative
6183
6184         * /sdcc/src/ds390/ralloc.c:
6185         Had broken the regression testsuite
6186
6187         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
6188
6189         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
6190         Added funcattr hasStackParms will be set for reentrant functions when there
6191         are paramteres on the stack, this helps in minimizing frame pointer generation
6192         typeFromStr can handle function pointers now
6193
6194         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
6195         *** empty log message ***
6196
6197 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
6198
6199         * /src/ds390/gen.c, /src/ds390/main.c:
6200         More builtin function additions for TININative
6201
6202         * /src/ds390/ralloc.c:
6203         Had broken the regression testsuite
6204
6205         * /src/SDCCast.c: Fixed a bug in dumptree
6206
6207         * /src/SDCCsymt.c, /src/SDCCsymt.h:
6208         Added funcattr hasStackParms will be set for reentrant functions when there
6209         are paramteres on the stack, this helps in minimizing frame pointer generation
6210         typeFromStr can handle function pointers now
6211
6212         * /doc/builtins.txt, /doc/TININative.txt:
6213         *** empty log message ***
6214
6215
6216 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
6217
6218         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
6219         ALPHA version for -mTININative
6220
6221         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
6222         updated to reflect changes in the port structure
6223
6224         * /src/port.h:
6225         added function do_assemble (similar to do_link) if non-null this function
6226         will be called to do assembly (-mTININative) requires a multi command
6227         assembly
6228         added function genAssemblerEnd will be called to generate assembler Epilogue
6229
6230         * /src/SDCCsymt.c:
6231         added _JavaNative to debug info printing
6232
6233         * /src/SDCCmain.c: added option --tini-libid
6234         added port->do_assemble function (-mTININative) has a multi command assemble
6235
6236         * /src/SDCCglue.c: Disabled "constExpr" check
6237         added port->genAssemblerEnd function
6238
6239         * /src/SDCCglobl.h: Added option --tini-libid value
6240
6241         * /src/SDCCast.h:
6242         tookout optimizeCompare from the header (has no external references)
6243
6244         * /src/SDCCast.c: made one more function "static"
6245
6246 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
6247
6248         * src/z80/mappings.i: Added z80asm support.
6249
6250         * src/z80/main.c: Added z80asm support on --asm=z80asm
6251
6252         * src/z80/gen.c: Fixed asm portability issues.
6253
6254         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
6255
6256         * src/SDCCglue.c (printExterns): Added global/extern split.
6257
6258 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
6259
6260         * support/regression/Makefile: added test for mcs51 model large
6261
6262         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
6263
6264         * support/regression/ports/gbz80/spec.mk: added -mgbz80
6265
6266 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
6267
6268         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
6269
6270 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
6271
6272         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
6273
6274         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
6275
6276 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
6277
6278         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
6279
6280         * support/regression/tests/simplefloat.c: Port to mcs51.
6281
6282 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
6283         * support/regression/tests/bug-485362.c: Added.
6284
6285         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
6286
6287         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
6288
6289         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
6290
6291         * src/z80/gen.c (aopDump): Added a dump function.
6292
6293 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
6294         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
6295
6296         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
6297
6298         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
6299
6300         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
6301
6302         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
6303
6304         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
6305
6306         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
6307
6308         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
6309
6310         * support/regression/ports/ds390/support.c: Use tinibios.
6311
6312         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
6313
6314 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
6315
6316         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
6317         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
6318
6319         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
6320
6321         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
6322
6323 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
6324
6325         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
6326
6327         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
6328         (packRegsForIYUse): Created and optimised.
6329
6330 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
6331
6332         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
6333 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
6334
6335         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
6336
6337         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
6338
6339         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
6340
6341 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
6342
6343         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
6344
6345         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
6346
6347 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
6348
6349         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
6350
6351         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
6352
6353         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
6354
6355 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
6356
6357         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
6358         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
6359         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
6360
6361         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
6362
6363         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
6364         (genNotFloat): Added.
6365         (genUminusFloat): Added.
6366
6367         * device/lib/z80/Makefile: Added floating pt stubs.
6368
6369         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
6370
6371         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
6372
6373         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
6374
6375 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
6376
6377         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
6378
6379         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
6380
6381         * sdcc/support/regression/Makefile: Add port ds390.
6382
6383         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
6384
6385         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
6386
6387         * sdcc/support/regression/ports/ds390/spec.mk: Added.
6388
6389         * sdcc/support/regression/ports/ds390/support.c: Added.
6390
6391         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
6392
6393         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
6394
6395         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
6396
6397 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
6398
6399         * device/include/malloc.h: Added z80 and gbz80 support.
6400
6401         * device/lib/gbz80/heap.s: Added.
6402
6403         * device/lib/z80/heap.s: Added.
6404
6405         * device/lib/malloc.c: Added z80 and gbz80 support.
6406
6407         * support/regression/tests/malloc.c (testMalloc): Added.
6408
6409         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
6410
6411         * support/regression/tests/bug-478094.c: Added.
6412
6413         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
6414
6415 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
6416
6417         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
6418
6419         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
6420
6421         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
6422
6423         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
6424
6425         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
6426
6427 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
6428
6429         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
6430
6431 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
6432
6433         * support/regression/tests/bug-477927.c: Added.
6434
6435         * src/z80/peeph.def: Added minor rules.
6436
6437         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
6438
6439         * src/z80/peeph.def: Added jump optimisation modification.
6440
6441 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
6442
6443         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
6444
6445 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
6446
6447         * support/regression/tests/funptrs.c: Added.
6448
6449 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
6450
6451         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
6452
6453 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
6454
6455         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
6456
6457         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
6458
6459         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
6460         (movLeft2ResultLong): Created.
6461
6462         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
6463         (joinPushes): Added.  Joins two char pushes into a word push.
6464
6465 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
6466
6467         * support/cpp2/Makefile.in (install): Added creation of dest dir.
6468
6469         * support/makebin/Makefile (install): Added creation of dest dir.
6470
6471 2001-10-24 Karl Bongers <karl AT turbobit.com>
6472
6473         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
6474
6475 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
6476
6477         * src/z80/ralloc.c: Turned off faulty pack for one use.
6478
6479         * src/z80/peeph-gbz80.def: Removed redundent restart options.
6480
6481         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
6482
6483 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
6484
6485         * support/regression/Makefile: Improved clean
6486
6487         * support/regression/ports/gbz80/spec.mk: Added clean
6488
6489         * support/regression/ports/host/spec.mk: Added clean
6490
6491         * support/regression/ports/z80/spec.mk: Added clean
6492
6493         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
6494
6495         * support/regression/ports/mcs51/timeout.c: little improvements
6496
6497 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
6498
6499         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
6500
6501         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
6502
6503         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
6504
6505 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
6506
6507         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
6508
6509         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
6510
6511 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
6512         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
6513
6514         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
6515
6516         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
6517
6518         * src/mcs51/main.c (_linkCmd): Added bin path to command.
6519
6520         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
6521
6522         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
6523
6524         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
6525
6526         * support/regression/tests/longor.c: Added.
6527
6528 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
6529
6530         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
6531
6532         * as/mcs51/aslink.h: define PATH_MAX
6533
6534         * as/mcs51/asm.h: define PATH_MAX
6535
6536         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
6537
6538         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
6539
6540         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
6541
6542         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
6543
6544         * src/SDCCglobl.h: define PATH_MAX
6545
6546         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
6547
6548         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
6549
6550 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
6551
6552         * src/z80/gen.c (gencjneshort): Fixed
6553
6554         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
6555
6556 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
6557
6558         * support/regression/tests/bug-469671.c: Added.
6559
6560         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
6561
6562 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
6563
6564         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
6565
6566         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
6567
6568 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
6569
6570         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
6571
6572         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
6573
6574         * src/device/lib/_mullong.c : removed hint: nooverlay bug
6575
6576         * src/device/lib/_divuint.c : removed hint: nooverlay bug
6577
6578         * src/device/lib/_divulong.c: removed hint: nooverlay bug
6579
6580         * src/device/lib/_moduint.c : removed hint: nooverlay bug
6581
6582         * src/device/lib/_modulong.c: removed hint: nooverlay bug
6583
6584 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
6585
6586         * 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.
6587
6588         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
6589
6590         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
6591
6592 2001-10-07    <johan AT FRIJA>
6593
6594         * device/lib/gets.c (gets): fixed the return value.
6595
6596 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
6597         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
6598
6599         * 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.
6600
6601         * 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.
6602
6603         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
6604
6605         * src/pic/gen.c: Removed Safe_strdup.
6606
6607         * configure.in: Added option to enable libgc support.
6608
6609         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
6610         (bitVectUnion): Optimised.
6611         (bitVectIntersect): Optimised.
6612         (bitVectBitsInCommon): Optimised.
6613         (bitVectCplAnd): Optimised.
6614
6615         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
6616
6617 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
6618
6619         * src/SDCCmain.c: distinguish between assembler debug and plain options
6620
6621         * src/avr/main.c:   remove standard assembler options
6622
6623         * src/ds390/main.c: remove standard assembler options
6624
6625         * src/mcs51/main.c: remove standard assembler options
6626
6627         * src/port.h: removed "PENDING" comment
6628
6629 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
6630
6631         * src/device/lib/_mulint.c  : new, with assember functions
6632
6633         * src/device/lib/_mullong.c : new, with assember functions
6634
6635         * src/device/lib/_divuint.c : with assember functions
6636
6637         * src/device/lib/_divsint.c : with assember functions
6638
6639         * src/device/lib/_divulong.c: with assember functions
6640
6641         * src/device/lib/_divslong.c: with assember functions
6642
6643         * src/device/lib/_moduint.c : with assember functions
6644
6645         * src/device/lib/_modsint.c : with assember functions
6646
6647         * src/device/lib/_modulong.c: with assember functions
6648
6649         * src/device/lib/_modslong.c: with assember functions
6650
6651         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
6652
6653         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
6654
6655         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
6656                                       replaced _mululong.c and _mulslong.c by _mullong.c
6657
6658 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
6659
6660         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
6661
6662 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
6663
6664         * src/SDCCglue.c: test, if win32api is available for MINGW
6665
6666 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
6667
6668         * src/SDCCsymt.c: no more _modifier in printTypeChain()
6669         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
6670         * support/regression/ports/gbz80/spec.mk: removed GENERIC
6671         * support/regression/ports/host/spec.mk: removed GENERIC
6672         * support/regression/ports/mcs51/spec.mk: removed GENERIC
6673         * support/regression/ports/z80/spec.mk: removed GENERIC
6674
6675 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
6676
6677         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
6678
6679         * support/regression/tests/bug-467035.c: Created.
6680
6681 2001-10-01    <johan AT FRIJA>
6682
6683         * src/SDCC.y: fixed bug #466586 part 1
6684
6685 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
6686
6687         * SDCCicode.c: z80 has no generic pointers
6688         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
6689
6690 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
6691
6692         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
6693
6694 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
6695
6696         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
6697
6698         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
6699
6700 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
6701
6702         * configure.in: Fixed up so that ucsim is only configured once.
6703
6704         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
6705
6706         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
6707         (getPathDifference): As above.
6708
6709         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
6710
6711         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
6712
6713 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
6714         * .version: Updated to 2.3.1
6715
6716         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
6717         Added copyright header.
6718
6719         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
6720         (assemble): Added support for macro based assembler commands.
6721         (linkEdit): Added support for macro based linker commands.
6722         (preProcess): Changed the pre-processor to use macros.
6723         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
6724         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
6725
6726         * device/lib/z80/crt0.s: Added module name for debugging.
6727
6728 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
6729
6730         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
6731
6732         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
6733
6734         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
6735
6736         * src/Makefile.in: Added SDCCmacro and SDCCutil
6737
6738 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
6739
6740         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
6741
6742 2001-09-16    <johan AT FRIJA>
6743
6744         * 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.
6745
6746 2001-09-15    <johan AT FRIJA>
6747
6748         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
6749         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
6750
6751 2001-09-11    <johan AT FRIJA>
6752
6753         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
6754
6755 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
6756
6757         * support/regression/tests/bug-460444.c: Added test case.
6758
6759         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
6760         (genCast): Added justification for all of the asserts.
6761
6762 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
6763
6764         * support/regression/support.c: _xdata replaced by xdata
6765
6766         * support/regression/spec.mk: removed _generic
6767
6768 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
6769
6770         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
6771
6772         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
6773         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
6774
6775         * src/z80/peeph.def: Added a rule to optimise shift then compare.
6776
6777         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
6778
6779         * support/regression/tests/bug-460010.c: Added test case.
6780
6781         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
6782
6783 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
6784
6785         * support/regression/Makefile: inter-port-clean adjusted for mcs51
6786
6787         * support/regression/testfwk.c: removed workaround for bug #436344
6788
6789         * support/regression/tests/bp.c: use less memory with mcs51
6790
6791         * support/regression/tests/bug-441448.c: use less memory
6792
6793         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
6794
6795         * support/regression/collate-results.py: typo
6796
6797 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
6798
6799         * support/regression/tests/fetchoverlap.c: Added new test case.
6800
6801         * support/regression/tests/bp.c: Added new test case.
6802
6803         * support/regression/tests/bug-448984.c: Added new test case.
6804
6805         * support/regression/tests/pow2shifts.c: Added new test case.
6806
6807         * src/z80/gen.c: Turned off the noise it normally generates for the release.
6808         (genlshTwo): Fixed right shift for count > 8.
6809
6810         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
6811
6812 2001-09-08    <johan AT FRIJA>
6813
6814         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
6815
6816 2001-09-07    <johan AT FRIJA>
6817
6818         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
6819
6820         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
6821
6822 2001-09-06    <johan AT FRIJA>
6823
6824         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
6825         * bernhard noted me at this: "() equals to (void)" (1.38)
6826
6827 2001-09-05    <johan AT FRIJA>
6828
6829         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
6830
6831 2001-09-04    <johan AT FRIJA>
6832
6833         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
6834
6835
6836 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
6837
6838         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
6839
6840 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
6841
6842         * link/z80/aslink.h: Fixed path for PATH_MAX
6843
6844 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
6845
6846         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
6847
6848         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
6849
6850         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
6851
6852         * 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.
6853
6854 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
6855
6856         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
6857         (genCmp): Fixed up genCmp for the GB with longs.
6858
6859         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
6860
6861         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
6862
6863         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
6864
6865         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
6866
6867 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
6868
6869         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
6870
6871 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
6872
6873         * 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.
6874
6875         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
6876
6877 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
6878
6879         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
6880
6881         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
6882
6883 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
6884
6885   * sim/ucsim/configure:    little improvement of Cygwin-detection
6886   * sim/ucsim/configure.in: little improvement of Cygwin-detection
6887   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
6888   * support/regression/tests/bug-221100.c: small changes for mcs51
6889   * support/regression/tests/bug-221168.c: small changes for mcs51
6890   * support/regression/tests/bug-227710.c: small changes for mcs51
6891   * support/regression/tests/staticinit.c: small changes for mcs51
6892   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
6893   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
6894   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
6895
6896 $Revision$