* src/SDCCsymt.c (initCSupport): change return type of divschar to
[fw/sdcc] / ChangeLog
1 2006-06-18 Raphael Neider <rneider AT web.de>
2
3         * src/SDCCsymt.c (initCSupport): change return type of divschar to
4           int for PIC16
5         * src/pic16/genarith.c (genAddLit): sign-extend via standard routine
6           (pic16_genMinusBits): simplified sign-extension
7           (pic16_genUMult8XLit_8,pic16_genUMult8X8_8): renamed to
8             pic16_genMult8XLit_n resp. pic16_genMult8X8_n, fixed and
9             adjusted to correctly handle mixed-signed operands, disabled
10             now unused multiplciation routines
11         * src/pic16/gen.c (pic16_pushpCodeOp): fixed to handle literals
12           (assignResultValue): added argument denoting the size of the result
13             as returned by the function (fixes upcasts in assigning from
14             function calls: char foo(); int i = foo();)
15           (genCall,genPcall,genGenPointerGet,genReceive): pass size of
16             function result to assignResultValue
17           (genMult): disabled inlined multiplication code
18           (genDiv): augmented to also handle the modulus operator, fixed to
19             handle mixed-signed operands correctly
20           (genMod): simply call genDiv, disabled unused code
21           (genAssign): fixed missing (sign-)extension on result
22         * src/pic16/main.c (_hasNativeMulFor): accept literals [-128..256) as
23             valid char operands, allow signed operands for native code, added
24             division and modulo operator handling
25         * device/lib/pic16/libsdcc/char/divschar.c: divschar returns an int
26         
27         As a consequence, onebyte.c (if split into two files) and muldiv.c
28         pass regression tests.
29
30 2006-06-17 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
31
32         * doc/Makefile.in: two runs of makeindex seem needed to get
33         correct page references in the index of sdccman.pdf 
34         * doc/sdccman.lyx: mentioned cmon51, added links, small changes
35
36 2006-06-17 Borut Razem <borut.razem AT siol.net>
37
38         * sdcc/device/lib/Makefile.in: corrected PORTINCDIR path
39
40 2006-06-17 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
41
42         * doc/sdccman.lyx: updated, added (porting source code, debugging),
43         mentioned ec2drv and paulmon
44
45 2006-06-16 Maarten Brock <sourceforge.brock AT dse.nl>
46
47         * as/mcs51/lkarea.c (lnkarea2): clear new xdatamap, bugfix for two
48           consecutive abs areas
49           (find_empty_space, allocate_space): added map to handle codemap or
50            xdatamap,
51           (lnksect2): renamed rloc to locIndex, fixed bug 960060 by handling
52            absolute idata and xdata
53         * as/mcs51/lkmem.c (summary2): updated legend
54
55 2006-06-16 Raphael Neider <rneider AT web.de>
56
57         * src/pic16/gen.c (shiftR2Left2Result): fixed bug #1507127
58
59 2006-06-13 Maarten Brock <sourceforge.brock AT dse.nl>
60
61         * debugger/mcs51/cmd.c (cmdListFunctions): fixed bugs 1181163 and
62           1208515
63         * src/SDCClrange.c (findPrevUse): fixed bug 1294475
64
65 2006-06-13 Vangelis Rokas <vrokas AT users.sourceforge.net>
66
67         * src/port.h (struct PORT): added field gp_tags, to hold the tag
68         value of generic pointers,
69         * src/avr/main.c,
70           src/ds390/main.c,
71           src/hc08/main.c,
72           src/izt/i186.c,
73           src/izt/tlcs900h.c,
74           src/mcs51/main.c,
75           src/pic/main.c,
76           src/pic16/main.c,
77           src/xa51/main.c,
78           src/z80/main.c: PORT structure, added elements for gp_tags field,
79         * src/SDCCsymt.h: replaced hardwired values of GPTYPE_* macros with
80         fields in the PORT structure of each port,
81         * src/SDCCast.c (decorateType): allow processing of generic pointers
82         for PIC16 port (FPTRSIZE equals GPTRSIZE), also set GPTYPE_NEAR for
83         S_FIXED symbols
84
85 2006-06-12 Maarten Brock <sourceforge.brock AT dse.nl>
86
87         * link/z80/lkgb.c,
88         * link/z80/lkgg.c,
89         * src/pic16/gen.c,
90         * src/pic16/main.c,
91         * src/pic16/pcode.c,
92         * src/pic/main.c,
93         * src/pic/pcoderegs.c,
94         * src/SDCCicode.c,
95         * src/SDCCmain.c,
96         * src/SDCCsymt.c: replaced all exit(-1) by exit(EXIT_FAILURE) to fix
97           bug 1504689 on minGW
98
99 2006-06-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
100
101         * device/lib/printf_tiny.c: fixed bug #1465675 (%x format specifier)
102
103 2006-06-12 Bernhard Held <bernhard AT bernhardheld.de>
104
105         * src/SDCCast.c (backPatchLabels): fixed bug #1504636
106
107 2006-06-11 Maarten Brock <sourceforge.brock AT dse.nl>
108
109         * device/lib/printf_large.c (OUTPUT_CHAR, _output_char): added and used
110           for optimization
111
112 2006-06-11 Vangelis Rokas <vrokas AT users.sourceforge.net>
113
114         * src/pic16/gen.c (genCast): fixed bug with assignment of a pointer
115         to a char variable. Fixed bug #1504211
116         * device/include/pic16/adc.h,
117         device/include/lib/pic16/libio/adc/adcopen.c: applied patch #1364387
118         and fixed bug #1364390
119
120 2006-06-10 Borut Razem <borut.razem AT siol.net>
121
122         * CVSROOT: removed the CVS left-over
123
124 2006-06-10 Maarten Brock <sourceforge.brock AT dse.nl>
125
126         * as/hc08/asmain.c (asexit),
127         * as/hc08/lkmain.c (lkexit),
128         * as/mcs51/asmain.c (asexit),
129         * as/mcs51/lkmain.c (lkexit),
130         * src/SDCCglue.c (DEFSETFUNC),
131         * src/SDCCmain.c (linkEdit, assemble),
132         * support/librarian/sdcclib.c (AddRel),
133           replaced unlink() by standard C remove()
134         * src/SDCC.y: replaced removePostIncDecOps() by createRMW()
135         * src/SDCCast.c (replaceAstWithTemporary, createRMW,
136           gatherImplicitVariables): new, added to fix bug 608752,
137           (createFunction): added gatherImplicitVariables()
138         * src/SDCCast.h: added createRMW prototype
139         * src/SDCCsymt.h (struct symbol): added infertype
140         * support/regression/tests/bug608752.c: new, added
141
142 2006-06-10 Raphael Neider <rneider AT web.de>
143
144         * src/pic16/gen.c (pic16_aopOp): use WREG as destination even for
145           multibyte dummy reads (fixes #1503234)
146
147 2006-06-10 Maarten Brock <sourceforge.brock AT dse.nl>
148
149         * device/include/mcs51/compiler.h: new, added header file to enable
150           creating common sfr definition header files for different compilers
151
152 2006-06-05 Raphael Neider <rneider AT web.de>
153
154         * src/pic16/{pcode.h,genarith.c}:
155           introduced pCodeOp combining any two pCodeOps (previously only
156           two register operands could be combined), removed pcop2 from
157           pCodepReg, replaced pCodeOpReg2 with pCodeOp2, fixes #1492366
158         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): added case for PO_TWO_OPS
159         * src/pic16/gen.c (pic16_popGet2,pic16_popGet2p,pic16_popCombine2):
160           rewritten to use new PO_TWO_OPS
161         * src/pic16/main.c (_hasNativeMulFor): cover more cases natively,
162         * src/pic16/pcode.c (pic16_newpCodeOpImmd): initialize rIdx field,
163           (pic16_newpCodeOp): catch invalid attempts on PO_TWO_OPS,
164           (pic16_newpCodeOp2): NEW, create combined pCodeOp,
165           (pic16_get_op): embraced return arg to allow #define return(x),
166             added new case for combined opcodes
167           (pic16_get_op2): reduced to use pic16_get_op() on second pCodeOp,
168           (pic16_pCode2str,pic16_getRegFrompCodeOp,
169            pic16_getRegFromInstruction2): fixed/added handling of new pCodeOp
170
171 2006-06-04 Bernhard Held <bernhard AT bernhardheld.de>
172
173         * src/SDCCval.c (checkConstantRange): added
174         * src/SDCCval.h: added checkConstantRange
175         * support/Util/SDCCerr.c,
176         * support/Util/SDCCerr.h: replaced unused W_IF_NEVER_TRUE and
177         W_IF_ALWAYS_TRUE by W_COMP_RANGE and W_LIT_OVERFLOW
178         * src/SDCC.y: moved early 'condition transformations' to SDCCast.c
179         * src/SDCCast.c (decorateType): added checkConstantRange,
180         added 'condition transformations' from SDCC.y so that now W_COMP_RANGE
181         can be emitted with the correct always true/false warning,
182         added optimization for double '!';
183         result of decorateType() must be assigned back to the tree, because
184         decorateType() can change the tree
185         * src/SDCCicode.c (geniCodeLogic),
186         (geniCodeAssign): replaced new checkConstantRange, added warnings,
187         (checkConstantRange): removed, it was only a fragment which never
188         emitted a warning
189         * src/SDCCsymt.c (computeType): fixed promotion for
190         "-1 < (unsigned bit) b"
191         * src/pic/ralloc.c (packRegsForAssign),
192         * src/pic16/ralloc.c (packRegsForAssign),
193         * src/hc08/ralloc.c (packRegsForAssign),
194         * src/z80/ralloc.c (packRegsForAssign): ported fix for bug #930931
195         from mcs51
196         * src/mcs51/ralloc.c (packRegsForAssign): removed outcommented source
197         * support/regression/tests/constantRange.c: added
198         * support/valdiag/tests/constantRange.c: added
199         * support/valdiag/valdiag.py: added -DPORT_HOST=1
200
201 2006-06-02 Borut Razem <borut.razem AT siol.net>
202
203         * support/regression/ports/pic16/support.c: increase stack size
204           to 255 bytes
205         * support/regression/Makefile.in: sort tests by name so that the
206           resutlts can be compared on different machines / platforms
207
208 2006-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
209
210         * device/lib/printf_large.c (output_digit): optimized further, Tnx Frieder
211         * src/ds390/gen.c (emitLabel): new, added,
212           (genDjnz): fixed stack overflow bug,
213           (throughout): cosmetic changes to sync with mcs51/gen.c,
214           replaced emitcode("", "%05d$:", lbl->key + 100) with emitLabel(lbl)
215         * src/mcs51/gen.c (genEndFunction): small optimization,
216           (throughout): cosmetic changes to sync with ds390/gen.c
217
218 2006-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
219
220         * device/lib/printf_large.c (output_digit, calculate_digit): optimized,
221           (_print_format): fixed printing pointers
222         * src/mcs51/gen.c (emitLabel, movb): new, added,
223           (genAssign): small optimization,
224           (genDjnz): fixed stack overflow bug,
225           (throughout): replaced sprintf with SNPRINTF,
226           replaced mcs51_regWithIdx with REG_WITH_INDEX,
227           replaced emitcode("mov", "b,...") with MOVB(...),
228           replaced emitcode("", "%05d$:", lbl->key + 100) with emitLabel(lbl),
229           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
230         * src/mcs51/peeph.def: added rules 140 and 264
231         * src/SDCCmem.c (allocLocal): store register declared locals in DSEG/OSEG
232           so they may get optimized into registers
233
234 2006-05-30 Maarten Brock <sourceforge.brock AT dse.nl>
235
236         * src/SDCCmain.c (optionsTable, parseCmdLine): handle --use-stdout
237           immediately when encountered,
238           (printUsage): always use stderr even on windows
239
240 2006-05-30 Bernhard Held <bernhard AT bernhardheld.de>
241
242         * src/SDCCast.c (isLoopCountable): fixed bug #1478316
243         (processParms): fixed bug #1247551
244         * src/SDCCmain.c (printVersionInfo, printOptions, printUsage,
245         parseCmdLine, main): print '--version' to stdout,
246         print 'help' to stdout if --help is given,
247         print 'help' to stderr and exit with EXIT_FAILURE if no or bad
248         arguments are given; fixed --help
249
250 2006-05-27 Bernhard Held <bernhard AT bernhardheld.de>
251
252         * src/SDCCcse.c (findPointerSet): fixed bug #1493710
253         * support/regression/tests/bug-1493710.c: added
254
255 2006-05-27 Borut Razem <borut.razem AT siol.net>
256
257         * support/regression/fwk/lib/testfwk.c: define array in _printn() as
258           static instead auto
259         * support/regression/ports/pic16/support.c: increase stack size
260           from default 64 bytes to 128 bytes
261         * support/regression/tests/staticinit.c,
262           support/regression/tests/float.c: regression tests fully enabled
263           for pic16 port by putting the initialized data arrays into the code
264           section
265         * support/regression/ports/pic16/spec.mk: don't link default libraries.
266           This was changed by mistake in the previous version.
267
268 2006-05-28 Vangelis Rokas <vrokas AT users.sourceforge.net>
269
270         * src/pic16/gen.c (genFunction, genEndFunction): some
271         beautifications, fixed bug with falsely restoring FSR2 in large
272         stack model, thanks to Beau E. Cox for reporting the bug
273
274 2006-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
275
276         * debugger/mcs51/break.c,
277         * debugger/mcs51/cmd.c (throughout): removed unused variables and labels,
278           use %p to print pointers, made address variables unsigned
279         * debugger/mcs51/cmd.c (infoSymbols): added missing parameter to printf
280         * debugger/mcs51/symtab.c (parseSymbol): must return something
281         * src/mcs51/gen.c (aopForSym): small optimization,
282            moved declarations mcs51_ptrRegReq and mcs51_nRegs to ralloc.h,
283           (freeAsmop): added missing break,
284           (aopPut): removed parameter bvolatile, determine it inside the function,
285           (saveRegisters, unsaveRegisters): small optimization,
286           (genIpush): removed pointless check,
287           (throughout): replaced Safe_calloc, strcpy with Safe_strdup,
288           replaced sprintf with SNPRINTF,
289           replaced strcpy with strncpyz,
290           updated aopPut calls,
291           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
292         * src/mcs51/ralloc.h:  added declarations mcs51_ptrRegReq and mcs51_nRegs
293
294 2006-05-24 Borut Razem <borut.razem AT siol.net>
295
296         * support/regression/tests/bug-221100.c: fixed xdata problem caused by
297           modification of test for the pic16 port, put the array to the code
298           memory for pic16port; thanks to Maarten Brock and Frieder Ferlemann
299
300 2006-05-23 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
301
302         * src/pic/gen.c: MSC 6 does not have <stdint.h>.  Use pstdint.h instead.
303         * support/Util/pstdint.h: added
304
305 2006-05-22 Borut Razem <borut.razem AT siol.net>
306
307         * src/regression/Makefile: removed bool2.c test, added -q linker option
308         * src/regression/add2.c, src/regression/add3.c, src/regression/bool1.c,
309           src/regression/bool3.c, src/regression/nestfor.c, src/regression/ptrfunc.c,
310           src/regression/compare.c, src/regression/or1.c, src/regression/compare2.c,
311           src/regression/while.c, src/regression/compare3.c, src/regression/compare4.c,
312           src/regression/compare5.c, src/regression/sub2.c, src/regression/rotate1.c,
313           src/regression/rotate2.c, src/regression/rotate3.c, src/regression/rotate4.c,
314           src/regression/switch1.c, src/regression/rotate5.c, src/regression/for.c,
315           src/regression/add.c, src/regression/sub.c, src/regression/call1.c:
316           define SUPPORT_BIT_TYPES 0, removed unused bit variables
317
318 2006-05-22 Raphael Neider <rneider AT web.de>
319
320         * src/pic16/gen.c (pic16_storeForReturn): fragile fix for
321           bug #1492360 (problematic due to generic pointers, see code)
322
323 2006-05-22 Borut Razem <borut.razem AT siol.net>
324
325         * support/regression/ports/pic16/specs.mk: removed stack size linker
326           directive
327         * support/regression/tests/array.c,
328           support/regression/tests/bitopcse.c,
329           support/regression/tests/bug-908454.c,
330           support/regression/tests/malloc.c: modified for pic16 regression test
331         * support/regression/tests/bitfields.c:
332           pic16 - excluded bitfileds of size > 8
333         * support/regression/tests/bp.c: pic16 - reduced data size
334         * support/regression/tests/bug-221100.c: pic16 - reduced data size
335         * support/regression/tests/bug-460010.c:
336           pic16 - used the absolute address the fits in memory
337         * support/regression/tests/bug-716242.c:
338           bug [ 1443651 ] pic 16: redefining symbol that cannot be redefined.
339         * support/regression/tests/float.c:
340           pic16 - excluded - data size too big
341         * support/regression/tests/onebyte.c:
342           pic16 - bug [ 1444425 ] onebyte.c regression tes fails on pic16
343         * support/regression/tests/shifts.c:
344           pic16 - function names probably have to differ in first X characters
345           (gpasm limitation?)
346         * support/regression/tests/staticinit.c:
347           pic16 - excluded some tests due error: no target memory available for
348           section ".idata"
349
350 2006-05-22 Borut Razem <borut.razem AT siol.net>
351
352         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
353           second try. Thanks Stas Sergeev once more.
354
355 2006-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
356
357         * src/hc08/gen.c (transferAopAop): aop forced to stack was not restored,
358           (genLeftShift, genRightShift): fixed bug 1491627
359         * src/hc08/peeph.def (rules 7, 8.x): added
360         * support/regression/tests/shifts.c (ShiftLeftByParam,
361           ShiftRightByParam, testShiftByParam): added to test variable shifting
362
363 2006-05-20 Raphael Neider <rneider AT web.de>
364
365         * src/pic/gen.c (bitpatternFromVal): fixed for 64-bit machines
366         * src/pic16/ralloc.c (newReg): use correct name in hashtable,
367           (allocReg): add only new registers to dynAllocRegs,
368           (pic16_assignRegisters): do not reset dynrIdx, fixes bugs
369             #1489055, #1445850, and probably #1483693
370
371 2006-05-19 Vangelis Rokas <vrokas AT users.sourceforge.net>
372
373         * src/pic16/glue.c (pic16_emitConfigRegs, pic16_emitIDRegs): fixed
374         bug in for-loop that didn't emit the last of CONFIG and ID registers
375
376 2006-05-18 Maarten Brock <sourceforge.brock AT dse.nl>
377
378         * src/mcs51/gen.c (genCodePointerGet): inc dptr instead of loading acc
379           with offset
380         * src/mcs51/peeph.def (186.x): updated and reenabled to fix bugs
381           1489016, 1434401 and 1490124
382         * src/ds390/peeph.def (186.x, 227.x): updated and reenabled to fix bugs
383           1489016, 1434401 and 1490124
384
385 2006-05-17 Borut Razem <borut.razem AT siol.net>
386
387         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
388           thanks Stas Sergeev
389
390 2006-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
391
392         * device/include/mcs51/P89c51RD2.h,
393         * device/include/mcs51/P89LPC901.h,
394         * device/include/mcs51/P89LPC922.h,
395         * device/include/mcs51/P89LPC932.h: added, thanks Omar Espinosa
396
397 2006-05-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
398
399         * device/lib/pic16/libsdcc/stack/{stack.S, Makefile.in}: add workaround
400         to fix missing stack pragma in compiled binary object file,
401
402 2006-05-14 Bernhard Held <bernhard AT bernhardheld.de>
403
404         * support/packihx/configure.in,
405         * support/packihx/configure: removed warning, autoconf >= 2.5x can
406         determine sizeof basic types even while cross compiling
407
408 2006-05-13 Bernhard Held <bernhard AT bernhardheld.de>
409
410         * src/avr/gen.c (aopop),
411         * src/ds390/gen.c (aopOp),
412         * src/hc08/gen.c (aopOp),
413         * src/mcs51/gen.c (aopop),
414         * src/pic16/gen.c (pic16_aopOp),
415         * src/pic/gen.c (aopOp),
416         * src/z80/gen.c (aopop): fix for bug #1479882; use new, exclusive asmop
417         if size of operand is smaller than spill location
418
419 2006-05-12 Borut Razem <borut.razem AT siol.net>
420
421         * *.dsw, *.dsp: changed property svn:eol-style to CRLF since they
422           have to have CR/LF line endings even if they are checked out on *nix
423           or on WIN32 in cygwin binmode
424
425 2006-05-12 Maarten Brock <sourceforge.brock AT dse.nl>
426
427         * doc/sdccman.lyx: documented numeric ranges, WEBDOC #1442369
428         * device/include/ds80c390.h: added sfr16 definitions
429         * src/ds390/gen.c,
430         * src/ds390/gen.h,
431         * src/ds390/main.c,
432         * src/ds390/ralloc.c,
433         * src/ds390/ralloc.h: changes all over the place to sync with mcs51
434           fixing several bugs and adding sfr16/sfr32, reentrant bit params,
435           bit returning functions
436         * support/regression/tests/sfr16.c: enabled test on ds390
437
438 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
439
440         * src/hc08/gen.c (asmopToBool, genIfx): fix for bug #1429722
441         * src/hc08/gen.c (storeRegToAop): fix for bug #1439894
442
443 2006-05-11 Maarten Brock <sourceforge.brock AT dse.nl>
444
445         * sim/ucsim/sim.src/memcl.h: added get_decoder() to cl_address_space
446         * sim/ucsim/sim.src/mem.cc: implemented cl_address_space::get_decoder,
447           (cl_address_space constructor): removed expensive initialization,
448           (cl_address_space::get_cell): extended for late initialization,
449           (cl_address_space::*): use late initialization,
450           (cl_address_decoder::activate): removed expensive initialization,
451           This reduced regression test running time by 25%
452
453 2006-05-11 Bernhard Held <bernhard AT bernhardheld.de>
454
455         * packihx/,
456         * configure.in,
457         * configure,
458         * sdcc.dsw,
459         * Makefile.bcc,
460         * Makefile.in,
461         * support/packihx/Makefile.in,
462         * support/packihx/clean.mk,
463         * support/packihx/Makefile.bcc,
464         * support/packihx/PackIhx.dsp: moved packihx to support/packihx
465
466 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
467
468         * src/SDCCval.c (valNot): fix for regression test failure
469           of not.c on big endian hosts
470
471 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
472
473         * device/inlcude/mcs51/msc1210.h: new, added, thanks Philippe Latu
474
475 2006-05-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
476
477         * device/lib/mcs51/Makefile.in: changed string comparison operator
478           to = for POSIX compliance; == is bash extension
479
480 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
481
482         * device/lib/hc08/_mulint.c: applied patch 1485428, thanks
483           kosmonaut_pirx
484
485 2006-05-09 Vangelis Rokas <vrokas AT users.sourceforge.net>
486
487         * src/pic16/gen.c (pic16_freeAsmop): release any temp registers
488         allocated by aopForSym thus fixing bug #1478657 about failed testfwk.c
489         * src/pic16/main.c (_pic16_keywords): added 'sfr16' keyword,
490         * src/pic16/ralloc.c (pic16_allocWithIdx): also a fix for bug exposed by
491         bug report #1478657,
492
493 2006-05-05 Borut Razem <borut.razem AT siol.net>
494
495         * doc/Makefile.in: remove of WARNINGS and labels.pl immediately after
496           making the html
497
498 2006-05-02 Borut Razem <borut.razem AT siol.net>
499
500         * doc/Makefile.in: removed *.ind dependency since there is no rule to
501           create *.ind, which made make to fail if invoked with -j 2
502
503 2006-05-01 Maarten Brock <sourceforge.brock AT dse.nl>
504
505         * src/SDCCglue.c (emitRegularMap): partial fix for bug 1477149, thanks
506           Hubert Sack for patch 1479782
507
508 2006-05-01 Vangelis Rokas <vrokas AT users.sourceforge.net>
509
510         * src/pic16/glue.c (pic16_printIvalStruct): fixed bug #1445929
511
512 2006-05-01 Raphael Neider <rneider AT web.de>
513
514         * src/pic/device.c (sanitise_processor_name): only remove p(ic) prefix,
515           (create_pic): store only prefix-free device name,
516           (init_pic): check for device names with "16" prefix,
517           (list_valid_pics),
518         * src/pic/device.h (struct PIC_device),
519         * src/pic/main.c (_pic14_genAssemblerPreamble): adapted to single
520             stored device name,
521         * device/include/pic/pic12f{635,675,629,683}.h,
522         * device/lib/pic/libdev/pic12f{635,675,629,683}.c: NEW device libraries
523         * device/lib/pic/libdev/Makefile.in: allow pic12* devices,
524         * device/include/pic/pic16f505.h,
525         * device/lib/pic/libdev/pic16f505.c: removed
526         * device/include/pic/pic14devices.txt: added support for pic12f
527             devices, removed unsupported non 16-bit devices
528             [above changes provided by patch from Zik Saleeba]
529         * src/pic/*, src/pic16/*, device/include/pic16/*,
530           device/lib/pic/**, device/lib/pic16/**: obfuscated email address
531
532 2006-05-01 Borut Razem <borut.razem AT siol.net>
533
534         * configure.in, configure, doc/Makefile.in:
535           sync with nightly build makefile - latex, dvipdf and dvips
536           not needed any more
537
538 2006-04-30 Bernhard Held <bernhard AT bernhardheld.de>
539
540         * support/scripts/sdcc.nsi: removed all Readmes and Makefiles
541         in the library source
542
543 2006-04-30 Maarten Brock <sourceforge.brock AT dse.nl>
544
545         * support/regression/ports/hc08/spec.mk: fixed bug 1478892
546
547 2006-04-28 Raphael Neider <rneider AT web.de>
548
549         * src/pic16/pcode.c (pic16_newpCodeOpLit12),
550         * src/pic16/gen.c (pic16_popGetLit12): NEW, create 12 bit literal,
551           (pic16_loadFSR0): handle 12 bit literals correctly, fixes #1440527
552         * src/pic16/pcode.h: added prototype for pic16_newpCodeOpLit12()
553
554 2006-04-28 Bernhard Held <bernhard AT bernhardheld.de>
555
556         * device/lib/pic/libdev/Makefile.in,
557         * device/lib/hc08/Makefile.in,
558         * device/lib/gbz80/Makefile.in,
559         * device/lib/z80/Makefile.in,
560         * device/lib/ds390/Makefile.in,
561         * device/lib/ds400/Makefile.in: added srcdir to include search path,
562         thanks to Borut for the bug report
563         * configure.in,
564         * configure: always create doc/Makefile independent from --enable-doc
565         * Makefile.in: always install from directory doc independent from
566         --enable-doc
567         * device/lib/pic/Makefile.in: added libdev again, it was erroneously
568         removed
569         * device/lib/pic/libdev/Makefile.in: fixed VPATH build
570         * doc/Makefile.in: install *.txt if present
571         * device/include/Makefile.in (install): added installation of pic/*.inc
572         and pic/*.txt files again, they were erroneously removed
573
574 2006-04-28 Raphael Neider <rneider AT web.de>
575
576         * src/pic/{gen.c,main.h,pcode.c},
577         * src/pic16/{gen.c,pcode.c}: quietened compiler warnings
578             concerning signedness with casts
579
580 2006-04-28 Raphael Neider <rneider AT web.de>
581
582         * src/pic/gen.c (genFunction): set global pic14_hasInterrupt on
583             definition of an interrupt handler,
584         * src/pic/glue.c (pic14_emitInterruptHandler): moved output of
585             interrupt handler stuff from picglue() to separate routine,
586           (picglue): enabled definition of intr handlers in files w/o main()
587
588 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
589
590         * support/librarian/sdcclib.c: moved include <limits.h> up to enable
591           compilation with MSVC 2005 Express Edition (VC8)
592
593 2006-04-26 Bernhard Held <bernhard AT bernhardheld.de>
594
595         * device/lib/Makefile: fixed build of gbz80 lib
596
597 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
598
599         * support/regression/tests/bug-460010.c,
600         * support/regression/tests/bug-524691.c,
601         * support/regression/tests/bug-716242.c: removed conditional defines
602           that are already in testfwk.h
603
604 2006-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
605
606         * src/ds390/gen.c (AccAXRrl1, AccAXLrl1): changed to real rotate by 1,
607           (AccAXRsh1): added, shift right by 1,
608           (AccAXLsh, AccAXRsh, AccAXRshS): updated for AccAXRrl1, AccAXRsh1 and
609            AccAXLrl1
610         * support/regression/tests/rotate.c: use <stdint.h> and enabled ds390
611
612 2006-04-25 Bernhard Held <bernhard AT bernhardheld.de>
613
614         * src/SDCCast.c (decorateType): partial fix for RFE 1475769,
615         remove cast to same type
616         * src/SDCCast.c (decorateType): fix for RFE 1475742,
617         optimize 'ifx (op == 0)' resp. 'ifx (op != 0)'
618         * as/z80/Makefile,
619         * link/z80/Makefile: removed, they have moved to
620         Makefile.in files
621         * configure,
622         * configure.in: replaced duplicate message about ucsim by missing sdcpp
623         * install-sh: fix bug #1204398 by setting umask 0022
624         * device/lib/Makefile: separate build of z80 and gbz80 lib
625
626 2006-04-24 Bernhard Held <bernhard AT bernhardheld.de>
627
628         Enabled VPATH feature: changed nearly all Makefiles (149 files).
629         See sdccman.lyx '2.4.10 VPATH feature' about how to use it.
630
631         One basic decision: e.g. src/clean.mk includes further files. In order
632         to make this work there are two solutions:
633         - rename another dozen clean.mk to clean_in.mk, add srcdir to them and
634           run configure on them. This way they can use
635           'include $(srcdir)/port-clean.mk'
636         - always include clean.mk by the Makefile at the same level. To avoid
637           that `make clean` tries to include and build Makefile.dep the
638           MAKECMDGOALS are examined (see e.g. src/Makefile.in). This has been
639           implemented, because now even `make uninstall` doesn't create
640           Makefile.in. clean.mk could be eliminated by pasting it in
641           Makefile.in.
642
643         * debugger/mcs51/Makefile.in: build own objects from library sources
644         (SLIB, SDCC) in current directory
645
646         * configure, configure.in: renamed --disable-device-lib-build in
647         --disable-device-lib; added --enable-doc, the required tools are
648         searched by configure; added result message; the toolchain for the
649         belonging ports are now only built, if the port is enabled.
650
651         * support/regression/*: all output is written in directory gen, because
652         the fwk and ports directories don't livet in the build tree using vpath
653
654         * doc/sdccman.lyx: renamed --disable-device-lib-build to
655         --disable-device-lib, added --enable-doc, added section VPATH
656
657         * sim/ucsim/configure.in,
658         * sim/ucsim/configure.in: hc08 couldn't be disabled, now hc08 and
659         z80 are enabled by default
660
661 2006-04-24 Raphael Neider <rneider AT web.de>
662
663         * src/pic/device.c (pic14_assignConfigWordValue): remember assignments
664             to config word, "pic14_"-prefixed some extern functions
665           (pic14_emitConfigWord): emit __config directive(s) if assignment to
666             config word has been found
667         * src/pic/device.h: added prototypes
668         * src/pic/pcode.c: added "pic14_"-prefix where needed
669         * src/pic/ralloc.c (IS_CONFIG_ADDRESS,pic14_assignRegisters): cosmetic
670             fixup
671         * src/pic/glue.c (pic14_constructAbsMap): handle assignments to config
672             words,
673           (pic14emitRegularMap): ignore config words,
674           (pic14createInterruptVect): moved generating __config directives away
675           (picglue): have __config directives emitted
676
677 2006-04-24 Borut Razem <borut.razem AT siol.net>
678
679         * doc/Makefile: sync with nightly build makefile
680
681 2006-04-24 Raphael Neider <rneider AT web.de>
682
683         * src/pic/pcoderegs.c (OptimizeRegUsage): do not optimize
684             registers that have not been assigned proper liveranges,
685             fixes #1469504 and #1474602,
686           (pCodeRegOptimizeRegUsage): fixed typo in comment
687
688 2006-04-24 Borut Razem <borut.razem AT siol.net>
689
690         * device/examples/main8051.c: deleted - it was removed from CVS
691           24.mar.2000 and after that modified 18.feb.2001, so it reappered
692           after the transition to Subversion
693         * src/SDCCalloc.h: deleted - it was removed  from CVS
694           3.feb.2001 and after that modified 18.feb.2001, so it reappered
695           after the transition to Subversion
696         * sim/ucsim/cpu.gif, sim/ucsim/interrupt.gif, sim/ucsim/new.gif,
697           sim/ucsim/serial1.gif, sim/ucsim/serial2.gif,
698           sim/ucsim/term_cpuopt.gif, sim/ucsim/timers.gif, sim/ucsim/wins.gif,
699           sim/ucsim/post.jpg, sim/ucsim/UCsim.jpg: corrected
700
701 2006-04-22 Maarten Brock <sourceforge.brock AT dse.nl>
702
703         * as/asx8051.dsp: added mcs51/strcmpi.h
704         * as/hc08/as_hc08.dsp: added asm.h, m6808.h, strcmpi.h
705         * as/hc08/aslink.h: updated lnksect prototype
706         * as/hc08/asm.h,
707         * as/mcs51/asm.h: added a_addr to struct area and s_org to struct sym
708         * as/hc08/asmain.c,
709         * as/mcs51/asmain.c (asmbl): init dot.s_org for S_ORG,
710           (newdot): handle A_ABS
711         * as/hc08/asout.c,
712         * as/mcs51/asout.c (outarea): output address
713         * as/hc08/lkaomf51.c,
714         * as/mcs51/lkaomf51.c: disabled unused array UsageType
715         * as/hc08/m08pst.c,
716         * as/mcs51/i51pst.c,
717         * as/z80/z80pst.c: "ABS" is not A_OVR
718         * as/hc08/lkarea.c (newarea): read a_addr,
719           (lnkarea): added codemap array, sort absolute areas to the front,
720            combine all GSINITx/GSFINAL,
721           (find_empty_space, allocate_space): new functions,
722           (lnksect): return next address, handle absolute sections
723         * as/mcs51/lkarea.c (newarea): read a_addr,
724           lnksect2 prototype changed,
725           (lnkarea2): define codemap unsigned, combine all GSINITx/GSFINAL,
726           (find_empty_space, allocate_space): new, factored out of lnksect2,
727           (lnksect2): return next address, handle absolute sections
728         * as/hc08/lkhead.c,
729         * as/mcs51/lkhead.c (newhead): head is absolute but not overlay
730         * as/hc08/lklibr.c (addfile, fndsym),
731         * as/mcs51/lklibr.c (addfile, buildlibraryindex, fndsym): prevent
732           index out of range and detect both '\' and '/'
733         * device/include/mcs51/c8051f200.h: added _XPAGE, removed bad comment
734         * device/include/stdbool.h: removed SDCC_ds390 from check to pass
735           regression tests (ds390 cannot return bool yet)
736         * doc/sdccman.lyx: changed version number, document changed --no-peep,
737           document critical interrupts on z80, document changed SDCC define
738         * src/asm.c (_asxxxx_mapping): fixed .org directive,
739           (_a390_mapping): added .org directive
740         * src/hc08/gen.c (transferAopAop): made bytemask log to fix warning,
741           (genMultOneByte): fixed warnings
742         * src/hc08/hc08.dsp: lowered warning level to 2 to suppress pedantic
743           ones
744         * src/pic16/device.c: removed newReg prototype, removed BYTE_IN_LONG
745         * src/pic16/gen.c (pic16_popGetLabel): made parameter key signed,
746           (pic16_genLeftShiftLiteral, genRightShiftLiteral): fixed warnings
747         * src/pic16/gen.h: changed prototype for pic16_popGetLabel
748         * src/pic16/main.c: removed newReg prototype
749         * src/pic16/pcode.c,
750         * src/pic16/pcode.h (pic16_emitDB): changed parameter c to int to fix
751           warnings
752         * src/pic16/pic16.dsp: lowered warning level to 2 to suppress pedantic
753           ones
754         * src/pic16/ralloc.c
755         * src/pic16/ralloc.h (newReg): changed type to int and size to unsigned
756           to fix warnings
757         * src/pic/pcode.c (allocInternalRegister): changed parameter optype
758           from short to PIC_OPTYPE
759         * src/pic/pic.dsp: lowered warning level to 2 to suppress pedantic ones
760         * src/pic/ralloc.c (newReg, allocInternalRegister): changed parameter
761           optype from short to PIC_OPTYPE
762         * src/port.h: made int_size unsigned to fix warnings
763         * src/SDCC.y: fixed warning on MSVC
764         * src/SDCCicode.c (getArraySizePtr): return unsigned int
765         * src/SDCCopt.c (convertToFcall): fixed warnings
766         * src/SDCCsymt.h: removed double prototype for genSymName
767         * src/xa51/ralloc.c (allocReg): made size unsigned int, type int and
768           offset int to fix warnings
769
770 2006-04-22 Borut Razem <borut.razem AT siol.net>
771
772         * doc/sdccman.lyx, */Makefile, */Makefile.in:
773           references to CVS replaced with Subversion
774
775 2006-04-21 Borut Razem <borut.razem AT siol.net>
776
777         * doc/sdccman.lyx, */Makefile, */Makefile.in:
778           references to CVS replaced with Subversion
779
780 2006-04-19 Borut Razem <borut.razem AT siol.net>
781
782         * src/version.awk: adapted for svn
783         * /asxxxx/asxhtml/*.gif: set property svn:mime-type to image/gif
784           sim/ucsim/doc/*.gif: set property svn:mime-type to image/gif
785           sim/ucsim/doc/*.jpg: set property svn:mime-type to image/jpeg
786           /binutils-avr/etc/*.vi, *.jin: removed all properties
787           support/scripts/sdcc.ico: set property svn:mime-type to image/x-icon
788
789 2006-04-19 Borut Razem <borut.razem AT siol.net>
790
791         * CVS to Subversion migration completed
792
793 2006-04-18 Borut Razem <borut.razem AT siol.net>
794
795         * support/scripts/sdcc.nsi: removed unexisting ${DEV_ROOT}\lib\pic\*.o,
796           ${DEV_ROOT}\lib\src\pic\libdev\*.S, ${DEV_ROOT}\lib\src\pic\libdev\*.inc
797
798 2006-04-17 Borut Razem <borut.razem AT siol.net>
799
800         * device/include/Makefile.in: added pic/*.inc to the installation
801
802 2006-04-15 Bernhard Held <bernhard AT bernhardheld.de>
803
804         * support/regression/collate-results.py: fixed output in case of
805         a valdiag error
806         * support/regression/generate-cases.py: fixed splitting of pathnames
807         with dots
808         * as/hc08/lklibr.c (addfile),
809         * as/mcs51/lklibr.c (addfile): fixed off-by-one bug
810
811 2006-04-11 Raphael Neider <rneider AT web.de>
812
813         * src/pic16/gen.c (getFreePtr, pic16_popRegFromString),
814         * src/pic16/ralloc.c (pic16_allocregWithName): removed debug output
815         * src/pic16/pcode.c (assignValnums): fixed #1460578
816
817 2006-04-11 Raphael Neider <rneider AT web.de>
818
819         * device/lib/pic/libdev/*.c,
820         * device/include/pic/*.h: replaced sfr and data with __sfr and __data,
821           fixes #1468739, enables compilation in --std-c99 mode
822         * support/scripts/inc2h.pl: emit __sfr/__data instead of sfr/data
823
824 2006-04-11 Raphael Neider <rneider AT web.de>
825
826         * src/pic/device.c (find_device): removed debug output
827           (list_valid_pics): enabled verbose listing of supported devices
828         * device/include/stdbool.h: define bool as char for pic14/16 as well
829
830 2006-04-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
831
832         * src/SDCC.y: allow using brackets here: "__interrupt (1) __using (1)"
833
834 2006-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
835
836         * .version: bumped version to 2.5.6
837         * src/pic/ralloc.c (newReg): MSVC doesn't support __builtin_return_address
838
839 2006-04-06 Raphael Neider <rneider AT web.de>
840
841         * .version: bumped version to 2.5.6 (pic14 ABI changed)
842         * src/SDCCmain.c: add -DSDCC_PROCESSOR=<id> for pic14 port
843         * src/pic/glue.c (emitSymbolToFile,pic14_constructAbsMap,
844           pic14emitRegularMap,pic14emitMaps): moved output for absolute symbols to
845             pic14_constructAbsMap
846           (pic14printPublics): declare absolute global symbols as global
847           (pic14createInterruptVect),
848         * src/pic/ralloc.c (IS_CONFIG_ADDRESS): support second config word,
849           (newReg): assume new registers unused, use correct name in
850             hashtable (reg->name instead of name), more debugLog output
851         * src/pic/device.h (PIC_device): added fields for verbose output
852         * src/pic/device.c: moved device definition to pic14devices.txt,
853             added routines for runtime parsing of pic14devices.txt,
854             added support for second config word
855         * src/pic/main.c (_process_pragma): removed #pragma maxram,
856           (_pic14_keywords): no longer accept "bit" and "sbit" keywords
857           (_pic14_initPaths): add search paths with "pic" suffix (not "pic14")
858           (_pic14_parseOptions): moved pCodeInitRegisters here
859           (_pic14_do_link): add "pic$(ARCH).lib" to linker arguments
860         * src/pic/pcode.c (AnalyzeBanking): bail out on unset processor,
861           (pCodeInitRegisters): rewrapped comments, perpared new approach to
862             handling the pseudo stack
863         * device/lib/Makefile.in: ignore failures in objects-pic16,
864         * device/lib/pic/{configure,configure.in,Makefile}: added libdev/
865         * device/lib/pic/NEWS: document new dependency on picXXX.lib
866         * device/lib/pic/Makefile.subdir,
867         * device/lib/pic16/Makefile.subdir: improved clean rules
868         * device/lib/pic/libdev/: NEW, pic14 device libraries
869         * device/lib/pic/libsdcc/_gptr{get,put}{1,2,3,4}.S: use _X not X
870         * device/lib/pic/libsdcc/macros.inc: use _X not X, declare default SFRs
871         * device/include/Makefile.in: create subdir and install pic14 headers
872         * device/include/pic/p16f_common.inc: removed unused declarations
873         * device/include/pic/pic16*.h: added header files for 100+ 14 bit
874             PICs from inc2h.pl v1.6,
875             replaced BIT_AT macros with struct declarations
876         * device/include/pic/pic14devices.txt: definition of supported devices,
877             all above improvements contributed by Zik Saleeba, thanks
878         * support/scripts/inc2h.pl: removed BIT_AT, replaced with structs
879         * support/scripts/sdcc.nsi: also install pic14 device libraries and
880             headers
881
882 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
883
884         * device/include/mcs51/c8051f410.h: added interrupt numbers,
885         * device/include/mcs51/c8051f200.h: old SiLabs mcu completes the list,
886           thanks to Charles Olds
887
888 2006-04-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
889
890         * debugger/mcs51/cmd.c (infoRegisters): show return address on stack
891
892 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
893
894         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug 1464657
895         * src/mcs51/gen.c (genJumpTab): fixed bug in medium model
896         * support/regression/bug1464657.c: added, new test
897
898 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
899
900         * src/SDCCmain.c (preProcess): implemented RFE 1449908, define SDCC as the
901           version number
902
903 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
904
905         * src/SDCCpeeph.c (initPeepHole): implemented RFE 1460196, when both
906           --no-peep and --peep-file <file> are used don't use default rules but
907           do use the <file>
908
909 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
910
911         * src/mcs51/gen.c (genCall): fixed bug 1457608
912
913 2006-03-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
914
915         * doc/sdccman.lyx: reverted to version 1.129 of december as my latest
916         changes seem to cause (trigger?) problems with the build system.
917
918 2006-03-29 Maarten Brock <sourceforge.brock AT dse.nl>
919
920         * src/SDCCpeeph.c (operandsLiteral): new, added,
921           (callFuncByName): inserted operandsLiteral
922         * src/mcs51/peeph.def: reenabled 132.e, added extra check to 132.x
923
924 2006-03-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
925
926         * doc/sdccman.lyx: added paragraph "Use of SDCC in Education"
927         * src/mcs51/peeph.def: disabled rule 132.e fixing bug #1453093
928
929 2006-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
930
931         * src/z80/gen.c (genFunction, genEndFunction): fixed bug 1160666,
932           implemented patch 1120823 Thanks to Willy De la Court (normal
933           interrupts need an interrupt number now if they are made critical),
934           and enabled nesting of critical functions though not for gbz80
935           (genCritical, genEndCritical): added functions
936           (genZ80Code): added cases for CRITICAL and ENDCRITICAL
937         * src/z80/mappings.i: added "ei" to all mappings
938
939 2006-03-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
940
941         * sim/ucsim/cmd.src/newcmdcl.h: applied patch fixing GCC 4.1 build
942         submitted by the Debian SDCC maintainer Aurelien Jarno:
943         "Credits goes to Martin Michlmayr, who rebuilt the whole Debian
944         archive with gcc 4.1 on mips and wrote the patch"
945
946 2006-03-16 Raphael Neider <rneider AT web.de>
947
948         * src/pic16/genarith.c (genAddLit): simplified and fixed case where
949           the left operand is shorter than the result (c* = lit-c* + int),
950           fixes bug #1450796
951         * src/pic16/gen.c (genRightShift): check IS_SYMOP before accessing
952           OP_SYMBOL
953
954 2006-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
955
956         * src/.version: increased version number to 2.5.5
957         * src/SDCCmain.c (linkEdit): do not test for PIC16 target since, PIC16
958         linking is done manually in pic16 port's _linkEdit,
959         * src/SDCCsymt.c (compStructSize): for target PIC16 and shell variable
960         PIC16_PACKED_BITFIELDS, compact bitfield structures as much as possible,
961         * src/pic16/gen.c (aopForSym): when direct register name is WREG then
962         allocate asmop as AOP_ACC,
963         (aopForRemat): added parameter 'bool result' in function declaration,
964         (pic16_aopGet): return AOP_ACC when accessing WREG,
965         (pic16_popGetTempReg): minor modification,
966         (pic16_popRegFromIdx): first try with 'pic16_regWithIdx' then with
967         'pic16_allocWithIdx',
968         (genPcall): removed ftype, usage of OP_SYM_TYPE asserted error when
969         calling function in absolute addresses,
970         (genAssign): take into account AOP_ACC asmop,
971         * src/pic16/pcode.c (pic16_newpCodeOpReg): minor modifications,
972         * src/pic16/pcoderegs.c: some debug functions and lines added,
973         * src/pic16/ralloc.c (decodeRegType): added but commented out,
974         * (pic16_typeRegWithIdx): search 'pic16_dynInternalRegs' for given
975         register too,
976         * (pic16_findFreeReg, pic16_findFreeRegNext): allocate new register via
977         call to allocReg, not by manually allocating a new one,
978         (pic16_assignRegisters): now before going through the register
979         allocating functions mark all registers as free. This eliminates some
980         side effects resulting from peephole parser done earlier in the backbone
981
982 2006-03-13 Maarten Brock <sourceforge.brock AT dse.nl>
983
984         * src/SDCCicode.c (geniCodeLogic),
985         * src/SDCCast.c (decorateType): applied patch by Bernhard for rfe 1422617
986
987 2006-03-10 Maarten Brock <sourceforge.brock AT dse.nl>
988
989         * src/mcs51/gen.c (sameReg): new, checks if two aop regs are the same,
990           (genSend): bugfix, do not allocate and free twice,
991           (shiftRLong): handle partially overlapping aops
992         * support/regression/tests/bitopcse.c: fixed warning redefined idata
993
994 2006-03-08 Borut Razem <borut.razem AT siol.net>
995
996         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata
997           for pic16
998
999 2006-03-08 Maarten Brock <sourceforge.brock AT dse.nl>
1000
1001         * support/regression/tests/bug1409955.c: new, added
1002         * src/mcs51/gen.h: changed asmop.freed:1 to asmop.allocated for tracking
1003         * src/mcs51/gen.c (newAsmop): set asmop.allocated to 1,
1004           (aopForSym, aopOp): increment asmop.allocated if reused,
1005           (freeAsmop): decrement asmop.allocated and check for zero instead of
1006           using asmop.freed,
1007           (freeForBranchAsmop): use asmop.allocated instead of asmop.freed,
1008           (genNot, genCpl, genUminus, genMinus, genMult, genDiv, genMod, genCmpGt,
1009            genCmpLt, genAndOp, genOrOp, genAnd, genOr, genXor, genRRC, genRLC,
1010            genGetHbit, genGetAbit, genGetByte, genGetWord, genSwap,
1011            genLeftShiftLiteral, genLeftShift, genRightShiftLiteral,
1012            genSignedRightShift, genRightShift, genDataPointerGet,
1013            genPagedPointerGet, genFarPointerGet, genCodePointerGet,
1014            genGenPointerGet, genDataPointerSet, genAssign, genCast): free asmop's
1015             in reverse order from allocation,
1016           (genPlus, genCmpEq): free asmop's in reverse order from allocation and
1017             added swappedLR to keep track
1018         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata,
1019           pdata & code for GCC, z80, gbz80 & hc08
1020         * support/regression/tests/zeropad.c: moved defines to testfwk.h
1021
1022 2006-03-08 Raphael Neider <rneider AT web.de>
1023
1024         * src/pic16/main.c (_hasNativeMulFor): fixed bug #1444425
1025
1026 2006-03-07 Maarten Brock <sourceforge.brock AT dse.nl>
1027
1028         * device/include/mcs51/c8051f410.h: new SiLabs mcu
1029         * src/ds390/peeph.def: disabled 186.d and 227.a as fix for #1434401
1030         * support/regression/tests/array.c: added parenthesis, made arrays unsigned
1031
1032 2006-03-06 Borut Razem <borut.razem AT siol.net>
1033
1034         * support/regression/ports/pic16/spec.mk: link with libm18f.lib,
1035           made the linker quiet
1036
1037 2006-03-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
1038
1039         * src/pic16/gen.c (genPcall): fixed bug #1443644
1040         * src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
1041         which dumps before the function entry point a data byte which represents
1042         the number of the local variables used by the specified function, added
1043         'xinst' for initial support for Extended Instruction Support,
1044         * src/pic16/gen.c (aopForSym, pic16_aopGet): beautifications,
1045         (pic16_testStackOverflow): do not prefix GSTACK_TEST_NAME with
1046         port->fun_prefix anymore (may change later),
1047         (genFunction, genEndFunction): do not store/restore local registers for
1048         _main (this should take care the --main-return command line option in
1049         the future),
1050         (genOr): removed some legacy pic-port instructions,
1051         * src/pic16/genarith.c (genAddLit): re-enabled old code because
1052         performing operations with SFR's causes data to be written more than
1053         once to each SFR. Perhaps SFRs should be handled in special cases...
1054         * src/pic16/glue.c: macros BIG_ENDIAN and BYTE_IN_LONG are moved to
1055         pcode.h
1056         * src/pic16/main.c (_process_pragma): stack bound checking did not take
1057         into account for stack starting position,
1058         (struct OPTIONS pic16_optionsTable): added command line argument
1059         --extended or -y for Extended Instruction Support,
1060         * src/pic16/ralloc.c (pic16_decodeOp): added case for FUNCTION,
1061         (deassignLRs): *** perhaps the most important change, old 'for' code
1062         (commented out for reference), didn't account for some registers which
1063         were left marked 'not free' after a pointer operation. The change
1064         reduces register usage a lot in some cases
1065
1066 2006-03-04 Borut Razem <borut.razem AT siol.net>
1067
1068         * support/regression/ports/hc08/spec.mk: remove *.asm in traget
1069           _clean
1070         * support/regression/tests/bug-524697.c: decreased array size for
1071           mcs51 to fit into the internal RAM
1072         * support/regression/Makefile.in: a little bit more verbose
1073
1074 2006-03-03 Borut Razem <borut.razem AT siol.net>
1075
1076         * support/regression/fwk/lib/testfwk.c,
1077           support/regression/fwk/include/testfwk.h: introduced function
1078           _prints(), nonrecursive _printn(), call _initEmu() from main()
1079         * support/regression/ports/gbz80/support.asm,
1080           support/regression/ports/ucz80/support.asm,
1081           support/regression/ports/z80/support.asm,
1082           support/regression/ports/ds390/support.c,
1083           support/regression/ports/hc08/support.c,
1084           support/regression/ports/host/support.c,
1085           support/regression/ports/mcs51/support.c,
1086           support/regression/ports/xa51/support.c: added empty _initEmu()
1087           function
1088         * support/regression/ports/pic16/gpsim.cmd,
1089           support/regression/ports/pic16/spec.mk,
1090           support/regression/ports/pic16/support.c,
1091           support/regression/Makefile.in: added pic16 regression test
1092
1093 2006-03-01 Raphael Neider <rneider AT web.de>
1094
1095         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
1096           genConstPointerGet): use safe way of generating MOVFF to cover
1097             literals as well as registers, fixes bug #1440527
1098         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
1099             dereference
1100           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
1101             more correctly, fixes bug #1232186
1102           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
1103         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
1104             gplink guess the correct processor in more cases, applied patch
1105             from Till Riedel attached to and fixing bug #1436552
1106
1107 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1108
1109         * support/regression/tests/array.c: added, contains check for #1434401
1110         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
1111
1112 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
1113
1114         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
1115         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
1116         * device/include/mcs51/c8051f326.h,
1117         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
1118         * device/include/mcs51/c8051f000.h,
1119         * device/include/mcs51/c8051f018.h,
1120         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
1121           PCON_IDLE,PCON_STOP and added sfr16 definitions
1122
1123 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
1124
1125         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
1126           genGetWord): fixed bug 1409955
1127
1128 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
1129
1130         * device/include/hc08/mc68hc908gp32.h,
1131         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
1132
1133 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
1134
1135         * src/SDCCast.c (constExprValue): return NULL if not a value
1136         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
1137         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
1138         * support/regression/tests/bitfields.c: enabled signed bitfield for all
1139
1140 2006-02-13 Borut Razem <borut.razem AT siol.net>
1141
1142         * src/regression/ptrarg.c: added, fails due to bug #1430967
1143         * src/regression/Makefile: ptrarg.c added, ...
1144
1145 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
1146
1147         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
1148         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
1149
1150 2006-02-11 Borut Razem <borut.razem AT siol.net>
1151
1152         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
1153           print "Processor: xxx" message to stdout only if --verbose
1154
1155 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1156
1157         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
1158         * support/regression/tests/bug1426356.c: added
1159         * support/regression/tests/bitfields.c: removed 2 tests
1160
1161 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1162
1163         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
1164         * device/include/mcs51/c8051f330.h,
1165         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
1166           PCON_IDLE,PCON_STOP and added sfr16 definitions
1167         * device/lib/_divsint.c,
1168         * device/lib/_divuint.c,
1169         * device/lib/_divulong.c,
1170         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
1171           register bank bug for small stackauto
1172
1173 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1174
1175         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
1176
1177 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
1178
1179         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
1180         * all.dsp: corrected several bin paths
1181         * device/include/mcs51/c8051f120.h,
1182         * device/include/mcs51/c8051f300.h,
1183         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
1184           to PCON_IDLE,PCON_STOP
1185         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
1186         * device/lib/printf_large.c (output_float): fixed bug 1388703
1187         * support/regression/tests/bug1057979.c: added test for bug 1388703
1188
1189 2006-02-08 Raphael Neider <rneider AT web.de>
1190
1191         * src/pic/pcode.c (pciTRIS): fixed typo,
1192           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
1193           (LinkFlow): fixed handling of flows that end in a call,
1194           (ReuseReg): perform safety check earlier
1195         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
1196             to work with flows at the beginning of a pBlock,
1197             fixes #1426557 (Symbol not previously defined),
1198           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
1199             usage information
1200           (RemoveUnusedRegisters): update register usage info
1201         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
1202             created, reuse existing ones instead
1203         * src/pic/gen.c (genPcall): fixed #1424719
1204
1205 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
1206
1207         * link/z80/lkmain.c,
1208         * link/z80/lklex.c,
1209         * link/z80/lkdata.c,
1210         * link/z80/aslink.h: fixed build on current cygwin:
1211         replaced getline() by lk_getline()
1212
1213 2006-02-01 Borut Razem <borut.razem AT siol.net>
1214
1215         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
1216           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
1217           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
1218           src/regression/bool1.c, src/regression/bool2.c,
1219           src/regression/bool3.c, src/regression/call1.c,
1220           src/regression/compare.c, src/regression/compare10.c,
1221           src/regression/compare2.c, src/regression/compare3.c,
1222           src/regression/compare4.c, src/regression/compare5.c,
1223           src/regression/compare6.c, src/regression/compare7.c,
1224           src/regression/compare8.c, src/regression/compare9.c,
1225           src/regression/configword.c, src/regression/for.c,
1226           src/regression/inline.c, src/regression/mult1.c,
1227           src/regression/nestfor.c, src/regression/or1.c,
1228           src/regression/pointer1.c, src/regression/ptrfunc.c,
1229           src/regression/rotate1.c, src/regression/rotate2.c,
1230           src/regression/rotate3.c, src/regression/rotate4.c,
1231           src/regression/rotate5.c, src/regression/rotate6.c,
1232           src/regression/rotate7.c, src/regression/string1.c,
1233           src/regression/struct1.c, src/regression/sub.c,
1234           src/regression/sub2.c, src/regression/switch1.c,
1235           src/regression/while.c, src/regression/xor.c,
1236           src/regression/create_stc, src/regression/simulate,
1237           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
1238           regression tests
1239         * src/regression/gpsim_assert.h: added
1240
1241 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
1242
1243         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
1244         ((void (code *) (void)) 0) ();
1245         * as/hc08/aslex.c,
1246         * as/hc08/aslink.h,
1247         * as/hc08/asm.h,
1248         * as/hc08/asmain.c,
1249         * as/hc08/lkdata.c,
1250         * as/hc08/lklex.c,
1251         * as/hc08/lkmain.c,
1252         * as/mcs51/aslex.c,
1253         * as/mcs51/aslink.h,
1254         * as/mcs51/asm.h,
1255         * as/mcs51/asmain.c,
1256         * as/mcs51/lkdata.c,
1257         * as/mcs51/lklex.c,
1258         * as/mcs51/lkmain.c,
1259         * as/z80/aslex.c,
1260         * as/z80/asm.h,
1261         * as/z80/asmain.c: fixed build on current cygwin:
1262         replaced getline() by as_getline()
1263
1264 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
1265
1266         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
1267         declarator in the symbol chain
1268         * src/SDCCsymt.h,
1269         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
1270         parameter list for function pointers
1271         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
1272         * support/regression/tests/bug-716242.c: added
1273
1274 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
1275
1276         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
1277         offset if possible
1278         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
1279
1280 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
1281
1282         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
1283         inifinitely recurseable, added static
1284         * support/regression/tests/bug-1408066.c: added
1285
1286 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
1287
1288         * src/SDCCicode.h,
1289         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
1290         renamed, added possibility to create "postLoopLbl"-labels
1291         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
1292         newiTempLoopHeaderLabel
1293         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
1294         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
1295         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
1296         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
1297         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
1298         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
1299         (basicInduction): fixed bug #136564, made static,
1300         (loopInduction): changed parameter of basicInduction, made static,
1301         (addPostLoopBlock): added
1302         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
1303         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
1304         findLoopEndSeq
1305         * support/regression/tests/bug-136564.c: added
1306         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
1307         --std-sdcc99 to LIBSDCCFLAGS
1308
1309 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
1310
1311         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
1312         while loop
1313         * support/regression/tests/bug-1406131.c: added
1314
1315 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
1316
1317         * src/SDCCast.c (decorateType): fix promotion of unary minus
1318         * src/SDCCsymt.c (computeType): beautified
1319         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
1320         (valUnaryPM, valComplement): fix sign and promotion,
1321         (valNot): ANSI: result type is int (SDCC: unsigned char)
1322         * support/regression/tests/uminus.c: speedup by removing superflous
1323         test case 'int'
1324         * support/regression/tests/onebyte.c: added promotion and signedness
1325         tests for unary minus
1326         * support/regressions/tests/bug-477927.c: disable warning about
1327         uninitialized variables
1328         * support/regression/tests/not.c: added
1329
1330 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
1331
1332         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
1333         * src/mcs51/gen.c (gen51Code): show final register usage after
1334         fillGaps in asm with --i-code-in-asm
1335         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
1336         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
1337         incUsed, rliveClear, adjustIChain): made static,
1338         (setFromRange): excluded because it's unused,
1339         (findPrevUseSym, markWholeLoop): added,
1340         (findPrevUse): rewritten; fixes bug 895992; now a complete search
1341         through all branches of predecessors enables sdcc to emit the warning
1342         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
1343         (rlivePoint): made static, added parameter emitWarnings which is only
1344         true during the first run out of two,
1345         (findRecursiveSucc, findRecursivePred): removed,
1346         (computeLiveRanges): made static, added parameter emitWarnings,
1347         (dumpIcRlive): added for debugging only
1348         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
1349         removed prototype of setFromRange()
1350         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
1351         in call of computeLiveRanges()
1352         * support/regression/tests/bug-895992.c: added
1353         * support/regression/tests/bug-971834.c: added
1354         * support/valdiag/tests/bug-895992.c: added
1355         * support/valdiag/tests/bug-971834.c: added
1356
1357 2005-12-18 Raphael Neider <rneider AT web.de>
1358
1359         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
1360           (genUnpackBits): improved code for direct operands,
1361           (genPackBits): improved code for literal assignment to bitfields
1362             and for direct destination operands (no FSR indirection),
1363             prevented redundant AND, fixes #1362800,
1364           (AccLsh): added parameter to disable masking of the result
1365         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
1366           skip instructions with side-effects (like incfsz),
1367           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
1368         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
1369         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
1370           fixes #1375263
1371
1372 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
1373
1374         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
1375         volatile variables as spill location
1376
1377 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
1378
1379         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
1380         replacing literals
1381         * support/regression/tests/bug-1376320.c: added
1382
1383 2005-12-08 Raphael Neider <rneider AT web.de>
1384
1385         * src/pic/device.c: renamed is_shared to pic14_is_shared
1386         * src/pic/gen.c (genIfx): re-enabled handling of sbits
1387         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
1388           (is_valid_identifier): added for above workaround
1389
1390 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
1391
1392         * device/lib/Makefile.in: fixed to enable port-specific-objects
1393         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
1394           char, thanks Hubert Sack
1395         * doc/sdccman.lyx: documented --xstack-loc,
1396           elaborated a bit more on interrupts and pitfalls,
1397           removed "setjmp/longjmp unsupported",
1398           documented some unsupported C99 features
1399         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
1400         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
1401           if, thanks Hubert Sack
1402         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
1403         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
1404           make make_library
1405         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
1406           regression tests can report resource usage (rfe 700441)
1407         * support/regression/collate-results.py: report resource usage
1408         * support/regression/ports/ds390/spec.mk,
1409         * support/regression/ports/hc08/spec.mk,
1410         * support/regression/ports/mcs51/spec.mk,
1411         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
1412         * support/regression/ports/ds390/uCsim.cmd,
1413         * support/regression/ports/hc08/uCsim.cmd,
1414         * support/regression/ports/mcs51/uCsim.cmd,
1415         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
1416         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
1417           library, use the default one
1418         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
1419           building the library
1420
1421 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
1422
1423         * config.dsp: added dependency on .version and configure_vc.awk
1424         * device/include/setjmp.h: updated for --stack-auto and --xstack
1425         * device/include/mcs51/at89c51snd1c.h: corrected line endings
1426         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
1427         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
1428         * device/lib/libsdcc.lib: added _setjmp
1429         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
1430           (decorateType): fixed bug 1372851,
1431           (optimizeGetHbit): fixed warning
1432         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
1433           array initialisation
1434         * support/regression/tests/bug1057979.c: added test for bug 1358192
1435         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
1436
1437 2005-12-03 Borut Razem <borut.razem AT siol.net>
1438
1439         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
1440           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
1441
1442 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1443
1444         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
1445         createIval): implement symbol independant "flexible array member",
1446         (createIvalCharPtr): implemented flexible array initialisation with a
1447         string
1448         * src/SDCCsymt.c (copyStruct): removed,
1449         (getSize): fixed misleading comment,
1450         (getAllocSize): removed, the additional allocation size is now in
1451         sym->flexArrayLength,
1452         (checkStructFlexArray): new, syntax checks for flexible array members,
1453         (compStructSize): added syntax checks for "flexible array members"
1454         (copyStruct): removed,
1455         (copyLinkChain): removed inefficient fix for bug 770487
1456         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
1457         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
1458         symbol->flexArrayLength
1459         * src/SDCCerr.c,
1460         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
1461         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
1462         * support/regression/tests/structflexarray.c: added
1463         * support/valdiag/tests/structflexiblearray.c: added
1464
1465 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1466
1467         * src/SDCCast.c (decorateType): fixed bug 1368489
1468         * support/Util/SDCCerr.c,
1469         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
1470
1471 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1472
1473         * device/include/mcs51/at89c51snd1c.h: added file submitted by
1474           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
1475
1476 2005-11-27 Borut Razem <borut.razem AT siol.net>
1477
1478         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
1479           support/cpp2/mkdeps.h: added command line option
1480           -obj-ext=<extension> to SDCPP to define object file externion, used
1481           for generation of make dependencies (-M)
1482         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
1483
1484 2005-11-26 Borut Razem <borut.razem AT siol.net>
1485
1486         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
1487           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
1488           added pic and pic16 libraries
1489
1490 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1491
1492         * device/include/float.h: Corrected typo in prototype of __fsgt
1493
1494 2005-11-25 Borut Razem <borut.razem AT siol.net>
1495
1496         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
1497           added creation of model-mcs51-stack-auto libraries
1498
1499 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
1500
1501         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
1502         and fields-list too
1503         * src/SDCCast.c (createIvalArray): removed obsolete comment
1504
1505 2005-11-24 Borut Razem <borut.razem AT siol.net>
1506
1507         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
1508           added missing device/lib/mcs51/crt*.asm sources
1509
1510 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
1511
1512         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
1513
1514 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
1515
1516         * device/lib/_fs2schar.c,
1517         * device/lib/_fs2sint.c,
1518         * device/lib/_fs2slong.c: optimized inline asm
1519
1520 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1521
1522         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1523           Better handling of floats between -1.0 and 0.0.
1524
1525 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1526
1527         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
1528           (the missing "if"s prohibited removal of redundant labels)
1529
1530 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1531
1532         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1533           Properly convert floats between -1.0 and 0.0 to long, int, and char
1534           types (max integer value of negative floats tends to zero).
1535         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1536           Removed changes made so to work properly with floats between
1537           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
1538           and _fs2char.c
1539
1540 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1541
1542         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
1543         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
1544         (genCast) cosmetic change
1545         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
1546         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
1547         from mcs51
1548         * support/regression/tests/bitfields (testSignedBitfields): added
1549
1550 2005-11-18 Borut Razem <borut.razem AT siol.net>
1551
1552         * sdcc/device/lib/Makefile.in: remove all unnecessary files
1553         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
1554           introduced SILENT option to make building of pic16 libraries less
1555
1556 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1557
1558         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1559           Now they work properly with floats between -1.0 and 0.0
1560         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
1561
1562 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
1563
1564         * src/SDCCicode.c (printOperand): added missing else
1565
1566 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1567
1568         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
1569         reformatted for better readability
1570         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
1571         signed bitfields
1572
1573 2005-11-17 Borut Razem <borut.razem AT siol.net>
1574
1575         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
1576           introduced SILENT option to make building of pic16 libraries less
1577           verbose - used for nightly snapshot build
1578         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
1579           available on Win32 platforms.
1580         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
1581           medium, large, pic and pic16
1582
1583 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1584
1585         * device/lib/printf_large.c: Temporary patch for bug 1358192:
1586           printf("%f"...) sets fraction to zero.
1587
1588 2005-11-16 Raphael Neider <rneider AT web.de>
1589
1590         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
1591           fixes #1357221
1592         * src/pic/gen.c (genIfx): implemented for CARRY bit
1593         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
1594           to generic pointers, fixes #1357332,
1595           (pic16_movLit2f): NEW,
1596           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
1597
1598 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
1599
1600         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
1601
1602 2005-11-11 Raphael Neider <rneider AT web.de>
1603
1604         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
1605         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
1606           compute pointer's type from operand,
1607           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
1608           improved single bit reads, fixes bug #1353379
1609
1610 2005-11-09 Borut Razem <borut.razem AT siol.net>
1611
1612         * support/scripts/sdcc.nsi: added lib/pic to the package
1613
1614 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
1615
1616         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
1617
1618 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
1619
1620         * support/regression/tests/bug1348008.c: added
1621         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
1622         * support/regression/tests/bug1337835.c: updated comment
1623
1624 2005-11-06 Borut Razem <borut.razem AT siol.net>
1625
1626         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1627           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1628           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1629           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1630           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
1631           dynamic construction of cl_error_class and derivates - 2.nd try
1632
1633 2005-11-05 Borut Razem <borut.razem AT siol.net>
1634
1635         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
1636           bug, which caused Bus Errors on sparc solaris
1637
1638 2005-11-04 Borut Razem <borut.razem AT siol.net>
1639
1640         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1641           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1642           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1643           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1644           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
1645           and derivates to resolve the initialization problem on OSX
1646
1647 2005-11-02 Borut Razem <borut.razem AT siol.net>
1648
1649         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1650           corrected typo - #include <winsock2.h>
1651
1652 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
1653
1654         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
1655           (_asxxxx_mapping): added org directive for future enhancements
1656
1657 2005-11-01 Borut Razem <borut.razem AT siol.net>
1658
1659         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1660           enabled sockets on WIN32
1661         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
1662
1663 2005-10-31 Borut Razem <borut.razem AT siol.net>
1664
1665         * support/regression/generate-cases.py: escape backslashes in {testcase}:
1666           WIN32 backslash path delimiters should be escaped when used in C strings
1667         * support/regression/tests/bitfields.c: exclude failing assertions for
1668           __CYGWIN32__ and __MINGW32__ hosts
1669
1670 2005-10-30 Borut Razem <borut.razem AT siol.net>
1671
1672         * src/SDCCutil.c: corrected double comparison typo
1673
1674 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
1675
1676         * device/lib/medium/Makefile: added for new memory model medium
1677         * device/include/asm/mcs51/features.h: updated for medium/pdata
1678         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
1679           added Multiply & Accumulate sbit's and MAC0_PAGE define
1680         * device/include/mcs51/c8051f300.h: added sfr16 definitions
1681         * device/include/mcs51/c8051f310.h: added sfr16 definitions
1682         * device/lib/_mullong.c: update for medium model
1683         * device/lib/incl.mk: added medium model
1684         * doc/sdccman.lyx: documented medium model
1685         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
1686         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
1687         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
1688         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
1689           (allocParms): set SCLS and OCLS to pdata for medium model
1690         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
1691           for pdata,
1692           (powof2): return <0 if not power of 2
1693         * src/avr/gen.c (genBitWise): use updated powof2
1694         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
1695           (shiftR2Left2Result): small optimization in setup, save acc when storing,
1696           (shiftLLeftOrResult): use B if necessary
1697         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
1698         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
1699         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
1700         * support/regression/Makefile.in: added test-mcs51-medium
1701         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
1702
1703 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
1704
1705         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
1706         specifier unsigned
1707         * device/lib/time.c (mktime): fixed bug 1334315
1708
1709 2005-10-28 Raphael Neider <rneider AT web.de>
1710
1711         * device/include/pic/p16f_common.inc: added common declarations
1712         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
1713
1714 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1715
1716         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
1717           (aopPutUsesAcc): added to predict accumulator use,
1718           (assignResultValue): save acc if necessary,
1719           (genMinusDec): store result if indirectly addressed,
1720           (genDivOneByte):  save acc if necessary,
1721           (movLeft2Result): bugfix if left already in acc,
1722           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
1723             attention to accumulator use (esp. pdata),
1724           (genReceive): receive pdata correctly
1725         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
1726         * src/SDCCicode.h: added isOperandInPagedSpace prototype
1727
1728 2005-10-27 Raphael Neider <rneider AT web.de>
1729
1730         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
1731
1732 2005-10-27 Raphael Neider <rneider AT web.de>
1733
1734         * .version: changed version to 2.5.4
1735         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
1736         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
1737           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
1738             arithmetics support routines
1739         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
1740         * device/lib/Makefile.in: also create installdir for pic
1741
1742         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
1743           pic14 port as well
1744         * src/pic/device.c (dump_sfr): rewritten to delegate register
1745           placement to the linker (use `extern sym' rather than sym EQU addr),
1746           (validAddress): fixed to check last specified address
1747         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
1748           (popGetLit): truncate literal value to 8 bit,
1749           (popGet): moved assert to more appropriate place
1750           (popGetExternal): create pCode operand from and mark the according
1751             symbol as being `extern'
1752           (popGetAddr): added sanity check on immediate's offset, provide
1753             GPOINTER tag on demand
1754           (aopPut): fixed for immediates,
1755           (mov2w_op): move operand's address or contents to WREG (depending on
1756             operand type), safer variant of mov2w,
1757           (movwf,call_libraryfunc): NEW, handy abbreviations,
1758           (get_argument_pcop,get_return_val_pcop,pass_argument,
1759           get_returnvalue): interface for accessing function parameters and
1760             return values,
1761           (assignResultValuei,genRet): use new parameter/return value interface
1762           (pic14_getDataSize): back to old version handling generic pointers,
1763           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
1764             provided implementation and/or fixed old one,
1765           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
1766             calls, removed legacy 8051 reference code
1767           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
1768           (loadSignToC): NEW, move the operands sign bit to CARRY,
1769           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
1770             genRightShiftSigned, accepts negative shift counts,
1771           (setup_fsr): load FSR and adjust IRP (indirect memory access),
1772           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
1773             generic pointers, __data pointers and __code pointers,
1774           (genUnpackBits,genPackBits): rewritten to work with generic pointers
1775             and signed bitfields, limit bitfields to 8 bit,
1776           (genDataPointerGet): fixed number of bytes read,
1777           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
1778           (genPointerGet,genPointerSet): fixed handling of __code pointers,
1779             pointers to constant data are no longer assumed to point to __code
1780             space, removed invalid pointer types,
1781           (bitpatternFromVal): retrieve the PICs representation of an integer
1782             or float literal,
1783           (genDataPointerSet): fixed assigning to po_immediate operands,
1784           (genGenPointerSet): implemented as library call,
1785           (genIfx): fixed incorrect condition,
1786           (genAddrOf): limit generic pointers' addresses to 2 bytes,
1787             provide GPOINTER tag according to destination's storage class,
1788           (genCast): added code to handle casting to generic pointers, added
1789             sign-/zero extension of the result
1790           (aop_isLitLike,op_isLitLike): fixed handling of immediates
1791         * src/pic/gen.h: added macros to access IRP bit in STATUS register
1792         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
1793           extend the result
1794         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
1795           address/register resides in the shared banks
1796           (emitSymbolToFile): improved to handle global and `pinned' symbols,
1797             put all variables into separate sections (have the linker arrange
1798             them)
1799           (picglue): put init code and interrupt handlers in separate sections
1800         * src/pic/main.c: added port specific options table, modified to PORT
1801           structure to make GPOINTERs 3 byte, added pic14_options
1802           (_pic14_do_link): private linking routine (update paths to libraries,
1803             add libsdcc.lib by default)
1804         * src/pic/main.h: declare pic14_options
1805         * src/pic/pcode.c: fixed instructions i/o relations,
1806           (RegCond): reverted to correct version,
1807           (newpCodeOpLit): truncate literals to 8 bit,
1808           (genericPrint): added debug output,
1809           (getRegFromInstruction): fixed for various operand types, simplified
1810           (BuildFlow): fixed broken handling of isntructions with labels
1811           (LinkFlow): start at last instruction in flow (skip trailing comments),
1812             pass the flow on to the next instruction after CALL
1813           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
1814           (insertPCodeInstruction): fixed inserting after a skip instruction,
1815           (DoBankSelect): fixed for labeled instructions
1816           (OptimizepBlock): honor --nopeep switch
1817           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
1818         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
1819         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
1820           (pCodeOptime2pCodes): allow disabling this optimization via
1821             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
1822             but is still buggy), started implementation of a dataflow based
1823             pCode optimization (CSE + dead code elimination)
1824           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
1825         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
1826           names are independant of the stack location and therefore portable across
1827           devices
1828
1829 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1830
1831         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
1832           (selectSpil): fixed bug 1337835 by not spilling bit variables
1833         * support/regression/tests/bug1337835.c: added test for this bug
1834         * src/mcs51/peeph.def: restart after rule 3.c,
1835           addded rules 263.x to optimize loading constants
1836
1837 2005-10-26 Raphael Neider <rneider AT web.de>
1838
1839         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
1840         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
1841           (genAssign): emit warning when casting literals to generic pointer
1842             type, also applies when taking the address of a fixed variable,
1843           (genCast): improved casting to generic pointers
1844         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
1845           extern variables, added verbose error message
1846         * device/include/pic16/{string.h,errno.h}: added #pragma library c
1847
1848 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
1849
1850         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
1851         carry must be complemented too
1852         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
1853         could be emitted by genMinus
1854         * src/SDCCval.c (constVal): fixed bug 1305065
1855
1856 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
1857
1858         * src/SDCCast.c (addCast): added promotion for bit variables
1859         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
1860         promotion casts + optimisation
1861         (optimizeGetWord): fix warning 'i' might be used uninitialized
1862         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
1863         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
1864
1865 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
1866
1867         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
1868         all chars are promoted to int; promotion should be handled in SDCCast.c
1869
1870 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1871
1872         * device/lib/_strcmp.c: Fixed bug 1326457
1873
1874 2005-10-11 Raphael Neider <rneider AT web.de>
1875
1876         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
1877         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
1878
1879 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
1880
1881         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
1882         * support/regression/tests/sfr16.c: added test for the sfr32 bug
1883
1884 2005-10-04 Raphael Neider <rneider AT web.de>
1885
1886         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
1887           device/lib/pic16/pics.all: added pic18f1320
1888         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
1889
1890 2005-09-30 Raphael Neider <rneider AT web.de>
1891
1892         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
1893         * src/pic16/devices.inc: NEW, provides device descriptions
1894         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
1895
1896 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
1897
1898         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
1899           GETHBIT
1900
1901 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
1902
1903         * doc/sdccman.lyx: updated Highest Order Bit documentation,
1904           documented Any Order Bit, Higher Order Byte and Higher Order Word
1905         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
1906         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
1907           (optimizeGetAbit): new, to get any bit, not only the high bit,
1908           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
1909           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
1910           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
1911           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
1912             RIGHT_OP: also try GETBYTE, GETWORD optimization,
1913             GETABIT, GETBYTE, GETWORD: decorate them,
1914           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
1915           (ast_print): added GETABIT, GETBYTE, GETWORD
1916         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
1917         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
1918           (geniCodeBinary): new generic binary icode,
1919           (ast2iCode): added GETABIT, GETBYTE, GETWORD
1920         * src/port.h: updated comment for PORT.hasExtBitOp
1921         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
1922           (genGetByte): new, to get a single byte,
1923           (genGetWord): new, to get a word from a long,
1924           (gen51Code): added GETABIT, GETBYTE, GETWORD
1925         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
1926
1927 2005-09-23 Raphael Neider <rneider AT web.de>
1928
1929         * configure.in, configure: have device/lib/pic configured
1930         * device/lib/Makefile.in: added model-pic14
1931         * device/lib/clean.mk: added pic/ to clean rule
1932         * device/lib/pic: added rudimentary pic14 library providing support
1933           functions for multiplication/division/generic pointer access
1934         * src/SDCCopt.c (convilong): mark support functions as extern
1935           for pic14 port as well
1936         * src/pic/gen.c (genMult): added assertions,
1937           (genpic14Code): emit warning on unhandled iCodes
1938         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
1939         * src/pic/pcode.c (pCodeOpCopy),
1940         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
1941           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
1942           SFR_REGISTER}), made safe for future extensions
1943         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
1944           instructions even if preceeded by SKIP instructions (also remove
1945           them); removed unused code
1946         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
1947           prevents leaving parts of the structure uninitialized after copying
1948
1949 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
1950
1951         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
1952           ago by me
1953         * support/regression/tests/addsub.c: added test for the bug
1954
1955 2005-09-21 Raphael Neider <rneider AT web.de>
1956
1957         * device/include/pic16/pic18f1220.h,
1958           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
1959         * device/lib/pic16/Makefile.rules: added missing opening paren
1960         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
1961           are provided in genutils.c,
1962           (genUminusFloat,genUminus,genCmpEq): added asserts on different
1963           operand/result sizes,
1964           (genCmp): assert on NULL pointers first, then check deref'ed values
1965         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
1966           result size
1967
1968 2005-09-18 Raphael Neider <rneider AT web.de>
1969
1970         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
1971           as these are now unused,
1972           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
1973         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
1974           local, avoids uninitialized pointer dereference on r->name
1975         * src/pic16/ralloc.c (newReg): fixed indentation
1976
1977 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
1978
1979         * src/SDCCval.c (constVal): fixed bug 730366
1980         * support/Util/SDCCerr.c,
1981         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
1982
1983 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
1984
1985         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
1986
1987 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
1988
1989         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
1990
1991 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
1992
1993         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
1994           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1995         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
1996           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1997         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
1998         * packihx/packihx.c (hexDigit): made c unsigned char
1999         * as/mcs51/lklibr.c (fndsym),
2000         * link/z80/lkgb.c (gb),
2001         * link/z80/lklibr.c (fndsym),
2002         * link/z80/lkrloc.c (relr),
2003         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
2004         * src/SDCC.lex (checkCurrFile, process_pragma),
2005         * src/SDCCglue.c (spacesToUnderscores),
2006         * src/SDCCmain.c (setParseWithComma, processFile),
2007         * src/asm.c (tvsprintf, printCLine),
2008         * src/avr/gen.c (emitcode, aopPut),
2009         * src/ds390/gen.c (emitcode),
2010         * src/hc08/gen.c (emitcode, emitinline),
2011         * src/mcs51/gen.c (emitcode, genInline),
2012         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
2013           tokenizeLineNode),
2014         * src/pic/ralloc.c (debugLog),
2015         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
2016           tokenizeLineNode),
2017         * src/pic16/ralloc.c (debugLog),
2018         * src/z80/main.c (_process_pragma):
2019            made all ctype.h function calls safe
2020         * src/SDCCopt.c: include math.h for fabs
2021         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
2022           and used them throughout the code to make ctype.h function calls safe
2023         * src/ds390/main.c (asmLineNodeFromLineNode),
2024         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
2025         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
2026            unsigned char*
2027         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
2028           (newpCodeAsmDir): made ctype.h function calls safe
2029         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
2030           pic16_emitcode):  made lbp unsigned char*
2031         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
2032           (pic16_newpCodeAsmDir): made ctype.h function calls safe
2033         * src/xa51/gen.c (emitcode),
2034         * src/z80/gen.c (_emit2): made lbp unsigned char*
2035         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
2036            char*
2037
2038 2005-09-05 Raphael Neider <rneider AT web.de>
2039
2040         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
2041           access bank splitpoint
2042
2043 2005-09-05 Raphael Neider <rneider AT web.de>
2044
2045         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
2046
2047 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
2048
2049         * .version: changed to version 2.5.3
2050         * doc/sdccman.lyx: changed version to 2.5.3,
2051           documented --codeseg and --constseg and pragma codeseg and constseg,
2052           documented bit parameters (reentrant) and bit returning
2053         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
2054            currFunc->recvSize, but is this ok for all ports?
2055           (ast2iCode): result of ~ on unsigned char must be cast to int for
2056            bool to work
2057         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
2058           function pointers in bit space
2059         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
2060           (processFuncArgs): call port.reg_parm() with reentrancy info
2061         * src/port.h,
2062         * src/avr/main.c,
2063         * src/ds390/main.c,
2064         * src/hc08/main.c,
2065         * src/pic/main.c,
2066         * src/pic16/main.c,
2067         * src/xa51/main.c,
2068         * src/z80/main.c: port.reg_parm prototype extended with
2069           "bool reentrant" parameter
2070         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
2071           options.stackAuto for allocating bit register parameters
2072         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
2073           (genSend): set BitBankUsed if it is,
2074           (selectRegBank): factored out of genCall for use in genPcall,
2075           (genCall): removed redundant dtype assignmen, use selectRegBank,
2076           (genPcall): handle returning in Carry properly, save in F0 if needed,
2077           (genReceive): handle bit register parameters
2078         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
2079           (mcs51_assignRegisters): enable bit registers for all reentrant
2080            functions and don't set BitBankUsed unconditionally
2081         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
2082         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
2083         * support/regression/tests/funptrs.c: added tests for BOOL and for return
2084
2085 2005-08-27 Borut Razem <borut.razem AT siol.net>
2086
2087         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
2088         ppc-osx (Darwin) does not support -u option. It seems that it is
2089         supported only on Linux - GNU cp
2090
2091 2005-08-25 Borut Razem <borut.razem AT siol.net>
2092
2093         * sim/ucsim/gui.src/serio.src/Makefile.in,
2094           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
2095           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
2096           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
2097           install and strip, since the strip at /usr/ccs/bin should be used
2098           on solaris
2099
2100 2005-08-24 Borut Razem <borut.razem AT siol.net>
2101
2102         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
2103
2104 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
2105
2106         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
2107         ffffffffu
2108
2109 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
2110
2111         * as/mcs51/aslink.h: completed lkrloc.c prototypes
2112         * as/mcs51/lkmain.c (link_main): fixed warning
2113         * device/include/stdbool.h: ds390 has no advanced bit support yet
2114         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
2115         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
2116         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
2117           and updated their macros
2118         * src/SDCCval.c (constVal): updated comment for renamed b_long
2119
2120 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
2121
2122         * as/mcs51/asdata.c: changed ctype['['] to BINOP
2123         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
2124           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
2125           (oprio): set priority for '['
2126         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
2127            and adb_24_bit
2128         * as/mcs51/asm.h: added defines R_BIT and S_BIT
2129         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
2130         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
2131         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
2132           added overlayable BIT_BANK area
2133         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
2134           (summary2): explain 'T' in legenda
2135         * as/mcs51/lkrloc.c: replaced old K&R style,
2136           (relr): added R_BIT processing,
2137           (errmsg): added "Bit-addressable relocation error",
2138           (adb_bit): added for converting from byte- to bit-addressable space,
2139           (adb_24_bit): added for converting from byte- to bit-addressable space
2140         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
2141            used in reentrant functions now even as return value
2142         * device/lib/_gptrput.c (_gptrput): removed obsolete code
2143         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
2144           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
2145         * src/SDCCglobl.h: added indicator BitBankUsed
2146         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
2147            the bit registers b0-b7
2148         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
2149           (geniCodeCast): fixed bug 1263853,
2150           (geniCodeLogicAndOr): put result in bool or char,
2151           (geniCodeReceive): added parameter func for accessing the return type,
2152           (geniCodeFunctionBody): pass func to geniCodeReceive
2153         * src/SDCCmain.c: added indicator BitBankUsed
2154         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
2155         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
2156           (checkSClass): don't put automatic bool/bit on stack,
2157           (checkFunction): removed check on function cannot return bit
2158         * src/SDCCsymt.h: added newBoolLink prototype
2159         * src/mcs51/gen.c (rb1regs): added bit registers,
2160           (movc): created for assigning to carry,
2161           (pushReg, popReg): created for pushing registers,
2162           (sameRegs): check both AOP_REG and AOP_CRY types,
2163           (aopOp): handle bit registers,
2164           (aopPut): optimization no self-assign,
2165           (saveRegisters): push reg->base (bits) only once for bit registers,
2166            and use pushReg,
2167           (unsaveRegisters): pop reg->base only once and use popReg,
2168           (assignResultValue): added parameter func and return in carry for bits,
2169           (genIpush): optimization no reload in A if not changed,
2170           (genSend): bit parameters in reentrant functions are passed in bit
2171            registers by first assigning to bits in B, then save registers and
2172            copy B to bits,
2173           (genCall): handle returning in Carry properly, save it in F0 if needed,
2174           (genPcall): updated assignResultValue call, this is not safe yet for bit
2175            returning function !!!
2176           (genFunction): don't generate equ's for bit registers and use pushReg,
2177           (genEndFunction): take care of bit returning functions and use popReg,
2178           (genRet): return bit in Carry,
2179           (genIfx): optimize bit registers and other directly addressable bits,
2180           (genReceive): updated assignResultValue call
2181         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
2182           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
2183            registers when using stack-auto
2184         * src/mcs51/ralloc.c (_G): added allBitregs,
2185           (regs8051): added the bit registers,
2186           (createStackSpil): use macro IS_BIT,
2187           (getRegBit): added to allocate a bit register, else spill,
2188           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
2189           (updateRegUsage): factored out to ease stepping while debugging,
2190           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
2191            also allocate bit registers,
2192           (fillGaps): handle bit registers,
2193           (findAllBitregs): added to create bit vector with all bit registers,
2194           (mcs51_allBitregs): returns this bit vector,
2195           (mcs51_assignRegisters): when using stack-auto use bit registers for
2196            passing parameters and creating local variables
2197         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
2198
2199 2005-08-22 Borut Razem <borut.razem AT siol.net>
2200
2201         * device/lib/Makefile.in: replaced find option -or with -o
2202           to make it run on solaris
2203
2204 2005-08-22 Raphael Neider <rneider AT web.de>
2205
2206         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
2207           fixes #1265442 (crash on Solaris)
2208
2209 2005-08-20 Borut Razem <borut.razem AT siol.net>
2210
2211         * configure, configure.in: added tests for libsocket and libnsl libraries,
2212           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
2213           from support/regression/Makefile.in
2214         * support/regression/Makefile.in: added
2215         * device/lib/pic16/Makefile.common.in: force make to use bash shell
2216         * sim/ucsim/libtool: regenerated on sparc-solaris
2217         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
2218           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
2219           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
2220           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
2221           sparc-solaris, which doesn't use GNU ld linker
2222         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
2223         * as/Makefile: find on sparc-solaris does not support -maxdepth option
2224
2225 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
2226
2227         * src/mcs51/peeph.def: updated comments
2228
2229 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2230
2231         * device/lib/_gptrget.c,
2232         * device/lib/_gptrput.c: slightly shorter
2233         * doc/sdccman.lyx: incremented version
2234         * src/mcs51/peeph.def: moved peephole comments to the line of first
2235           change to better keep line correlation, reanimated 186.e
2236         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
2237
2238 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
2239
2240         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
2241           David Saxton with quotes around file name.
2242
2243 2005-08-15 Borut Razem <borut.razem AT siol.net>
2244
2245         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
2246           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
2247           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
2248           make tests run on x86_64 platform
2249
2250 2005-08-13 Raphael Neider <rneider AT web.de>
2251
2252         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
2253           as it might be executed DURING a build (parallel make is wonderful)
2254
2255 2005-08-13 Raphael Neider <rneider AT web.de>
2256
2257         * device/lib/Makefile.in (port-specific-objects-pic16):
2258           revert to cp $(PORT)/bin/*.* $(PORTDIR)
2259         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
2260           dependency
2261         * device/lib/pic16/Makefile.rules: build subdirs before creating
2262           the library, removed builddir rule, create $(builddir) early in
2263           recurse rule, use empty recurse rule for leaf directories
2264         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
2265           mkdir errors (race condition), removed duplicate suffix "hex"
2266           from clean rules
2267         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
2268         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
2269           prevents mkdir -p from aborting on Alpha
2270
2271 2005-08-12 Raphael Neider <rneider AT web.de>
2272
2273         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
2274           db-statements in order to allow for arrays of pointers in code
2275           sections to be placed without interspersed 0-padding, fixes
2276           bug #1256215
2277         * (emitStatistics): fixed division by zero for pic18f1220
2278         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
2279           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
2280         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
2281         * (pic16_pCodeConstString): keep track of already emitted string
2282           literals to prevent "duplicate definitions of symbol _str_NR"
2283         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
2284           debug message
2285         * device/lib/Makefile.in: ignore failing PIC16 library builds
2286         * device/lib/pic16/Makefile: do not build if gputils are missing
2287         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
2288
2289 2005-08-10 Raphael Neider <rneider AT web.de>
2290
2291         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
2292           my last commit)
2293
2294 2005-08-10 Raphael Neider <rneider AT web.de>
2295
2296         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
2297           Rokas' patch to add the new fixed point type "__fixed16x16"
2298         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
2299           functions for __fixed16x16 arithmetics
2300         * device/lib/pic16: reimplemented the build system to support
2301           a separate build directory, better handling of libio (create
2302           the library in a separate subdir for each architecture) and
2303           easier configuration (centralized in Makefile.common)
2304
2305 2005-08-07 Raphael Neider <rneider AT web.de>
2306
2307         * src/pic16/gen.c (genrshTwo): fixed sign extension
2308         * src/pic16/device.c: added pic18f2320, 4220 and 4320
2309         * device/include/pic16/pic18f2220.h: changed some bit definitions,
2310           added T0CONbits
2311         * device/include/pic16/pic18f4220.h: NEW, header for
2312           pic18f4220 and pic18f4320
2313         * device/include/pic16/pic18fregs.h: added new devices,
2314           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
2315         * device/include/pic16/signal.h: resolved name clashes
2316           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
2317           to also allow testing for interrupt enable bits, added
2318           comments on how to use the macros
2319         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
2320         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
2321           register definitions for the devices
2322         * device/lib/pic16/pics.all: added new devices
2323         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
2324           allocated memory
2325         * device/lib/pic16/libc/stdlib/memfree: do not count
2326           the block header as free memory
2327         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
2328           simplified and added missing end-of-blocklist-marker
2329           (reported by Peter Onion, fixes #1252814)
2330         * (_mergeHeapBlock): fixed loop condition
2331         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
2332           len==0, restructured code
2333         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
2334           up a bit, reduced bitfield accesses, prevent endless loops
2335           in case of heap corruption
2336         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
2337           "unreferenced arguments/must return a value" warnings
2338         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
2339           replaced BAUDREG with SPBRG
2340         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
2341           device/lib/pic16/debug/gstack/gstack.c: replaced
2342           _naked, _asm, _endasm with __naked, __asm, __endasm
2343
2344 2005-08-05 Raphael Neider <rneider AT web.de>
2345
2346         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
2347           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
2348
2349 2005-08-05 Borut Razem <borut.razem AT siol.net>
2350
2351         * device/lib/Makefile.in: added missing ';'
2352         * configure: removed ^M characters
2353
2354 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2355
2356         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
2357           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
2358           License
2359
2360 2005-08-04 Borut Razem <borut.razem AT siol.net>
2361
2362         * configure.in: pic16 libraries build 2nd try - enable running
2363           configure in device/lib/pic16
2364         * configure: regenerated from configure.in
2365         * device/lib/Makefile.in: create $(PORT)/bin directory
2366
2367 2005-08-03 Raphael Neider <rneider AT web.de>
2368
2369         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
2370           to get/set values via pointers
2371         * (genUnpackBits,genPackBits): changed detection of
2372           ptr->bitfield vs. sym.bitfield, fixed access via generic
2373           pointers, removed dead (wrong) code for multibyte bitfields
2374         * (genNearPointerGet, genGenPointerGet): removed useless code,
2375           fixed bitfield detection, fixes #1250594
2376         * (genNearPointerSet): removed useless code
2377         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
2378           and introduced macro pic16_emitpcode that conditionally emits
2379           the origin of the following pCode (useful for debugging SDCC)
2380         * src/pic16/pcode.c: changed (and disabled) some debug outputs
2381         * (createDefmap): fixed handling of LFSR for --optimize-df
2382
2383 2005-08-02 Borut Razem <borut.razem AT siol.net>
2384
2385         * device/lib/Makefile.in: pic16 libraries build enabled since
2386           gputils-0.13.2 are now localy installed at sourceforge's compile farm
2387
2388 2005-08-02 Raphael Neider <rneider AT web.de>
2389
2390         * src/pic16/gen.c (genPackBits): removed deprecated warning
2391         * (genGenPointerSet): fixed bitfield detection
2392
2393 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2394
2395         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
2396
2397 2005-07-31 Raphael Neider <rneider AT web.de>
2398
2399         * device/lib/pic16/libdev/pic18f458.c,
2400           device/include/pic16/pic18f458.h: added missing T0CONbits
2401
2402 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
2403
2404         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
2405
2406 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
2407
2408         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
2409
2410 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2411
2412         * device/include/mcs51/at89c51ed2.h: added.
2413
2414 2005-07-23 Raphael Neider <rneider AT web.de>
2415
2416         * src/pic/gen.h: added emitpcode macro for debugging
2417         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
2418           and replace by macro adding debug information on demand
2419         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
2420         * (gencjne): tried to fix; replaced with correct (slower) code
2421         * (gen{Unp,P}ackBits): fixed single bit access
2422         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
2423         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
2424           previous instruction
2425         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
2426           register has to be handled with care (forbidding movement
2427           of assignments/uses, removing assignments completely, ...)
2428         * (pCodeOptime2pCodes): make use of regIsSpecial
2429         * added lots of debugging output (commented out)
2430         * src/pic/rallloc.c (deassignLRs): prevent operand registers
2431           from being reused as result UNLESS it is known to work
2432
2433 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
2434
2435         * support/Util/dbuf.h: include <stddef.h> for size_t
2436         * .version: changed to version 2.5.2
2437
2438 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2439
2440         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
2441
2442 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2443
2444         * src/hc08/gen.c (genMinus): fixed bug #1241835,
2445           (genModOneByte): removed needless psha/pula
2446
2447 2005-07-22 Raphael Neider <rneider AT web.de>
2448
2449         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
2450           have PIC14 handled like PIC16, fixes broken pic14 linker calls
2451         * src/pic/gen.c (resolveIfx): do not "invent" labels
2452         * (genSkipc): changed to positive logic
2453         * (genSkipCond): removed as no longer needed
2454         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
2455           backport from PIC16
2456         * (genLeftShift): check operands are in different registers
2457         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
2458           INCF does not update CARRY...
2459         * src/pic/main.c: fixed _linkCmd
2460         * src/pic/pcode.c (unlinkpCode): added inactive code
2461         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
2462           alive (do not assign result and operand overlapping registers)
2463
2464 2005-07-22 Raphael Neider <rneider AT web.de>
2465
2466         * src/pic/device.c (dump_sfr): replaced register declaration with
2467           call to emitSymbolToFile() to avoid duplicate symbols
2468         * (assignRelocatableRegisters): do not declare external symbols
2469         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
2470           right (take size of type, not etype)
2471         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
2472         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
2473         * (packRegsForAccUse): disabled assignment of WREG as
2474           the result reg to prevent occurence of just fixed #1235003,
2475           fixes #1242954
2476         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
2477           symbols (avoids duplicate symbols in .asm file)
2478         * (pic14emitRegularMap): use emitSymbolToFile()
2479         * src/pic/gen.c (aopOp): fixed spillLocation handling
2480         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
2481         * (genDataPointerSet): removed unneccessary variables/output
2482
2483 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
2484
2485         * as/mcs51/lkarea.c: enlarged codemap for banked memory
2486         * device/lib/mcs51/crtbank.asm: added # to 0x0F
2487
2488 2005-07-21 Raphael Neider <rneider AT web.de>
2489
2490         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
2491           architecture cannot handle them efficiently, fixes bug #1235003
2492         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
2493           check for empty sets before using them (fixes bug #1232190)
2494
2495 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
2496
2497         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
2498           (lnksect2): generate warnings for memory overlap
2499         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
2500           constseg to set the name of these segments so you can instruct the linker
2501           to place them in banks
2502         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
2503         * src/SDCCglobl.h: added MODEL_HUGE to enum,
2504           added code_seg and const_seg to options
2505         * src/SDCCglue.c (emitMaps): use options.const_seg,
2506           (createInterruptVect): put interrupt vectors in segment HOME,
2507           (glue): put HOME before static segment and put the main glue in HOME,
2508           (glue): use options.code_seg
2509         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
2510         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
2511           these segments so you can instruct the linker to place them in banks
2512           (linkEdit): use code_loc for HOME segment which should be the first
2513           segment in code memory now
2514         * src/SDCCmem.c: fixed more stuff like bug 1238386
2515         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
2516           (changePointer): don't change function pointers to code pointers for
2517           banked functions,
2518           (compareType): added exceptional check for banked function pointers
2519         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
2520         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
2521           after static in code memory
2522         * src/mcs51/gen.c: added aopLiteralLong prototype,
2523           (aopForSym): use getSize for functions,
2524           (genCall): generate banked calls over one trampoline __sdcc_banked_call
2525           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
2526           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
2527           the segment,
2528           (genPcall): use call for literal function pointers and generate banked
2529           calls over the one trampoline so there's only one place for the user to
2530           modify according to his/hers hardware,
2531           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
2532           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
2533         * src/mcs51/main.c: added keyword banked,
2534           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
2535         * support/Util/SDCCerr.c,
2536         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
2537           needed for passing the bank and address to the trampoline
2538         * device/lib/mcs51/crtbank.asm: added for bankswitching
2539         * device/lib/mcs51/Makefile: added crtbank
2540
2541 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2542
2543         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
2544           for fields at offset 0 of a struct or union as reported
2545           on 2005-07-07 in the developer mailing list.
2546
2547 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
2548
2549         * src/SDCCmem.c: fixed bug 1238386
2550
2551 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2552
2553         * src/mcs51/peeph.def: added labelrefcounting for peepholes
2554           (patch #1144962), added peephole 300, enabled 259.x
2555         * doc/sdccman.lyx: removed screenshot and provided link instead
2556
2557 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2558
2559         * doc/sdccman.lyx: added section about debugging with ddd
2560         * doc/figures/ddd_example.eps: screenshot of debugging session
2561
2562 2005-07-04 Raphael Neider <rneider AT web.de>
2563
2564         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
2565           like CODE pointers, fixes #1115683
2566         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
2567           call, fixes bugs #1232211, #1228110,
2568           fixed wrong casts to pCodeFlow from pCodeInstructions
2569
2570 2005-07-04 Raphael Neider <rneider AT web.de>
2571
2572         * src/pic/gen.c (popGet): changed assert to allow for
2573           bit operands
2574         * (popGetAddr): changed signature to provide
2575           an additional index, patched all call sites
2576         * (genCmpEq): handle literal-like operands correctly
2577         * (genAddrOf): added sanity checks on __code/__data pointers
2578         * (genAssign): added handling of symbols from __code section
2579         * (gencjne): do not generate code for comparisons whose result
2580           is neither stored nor used, fixes bug #1171114
2581         * (AccLsh, AccRsh): operate on operand instead of WREG
2582         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
2583           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
2584           by known count
2585         * rewrote complete shift-by-literal logic, commented unused
2586           functions out
2587         * (genConstPointerGet): get multiple bytes (if result size > 1),
2588           fixed handling of non-immediate addresses
2589         * (genPointerGet): handle CODE pointers like CONST pointers
2590         * (genpic14Code): insert C-SRC lines as Cource-pCodes
2591         * ({aop,op}_isLitLike): NEW, single place to decide whether an
2592           operand is to be treated as a literal or not
2593         * (mov2w,genPcall,genCmpEq),
2594           src/pic/genarith.c: use aop_isLitLike() to decide between
2595           literal/register contents
2596         * (addSign): added missing offset
2597         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
2598           only emit comment in debug-mode,
2599           use {aop,op}_isLitLike throughout the file
2600         * src/pic/glue.c: fix initializers for pointers (work in progress)
2601         * src/pic/pcode.c (get_op): honor index on _const symbols
2602         * ({reset,dump}pCodeStatistics): NEW, estimate code size
2603         * (dumppBlock): added pCode size estimation
2604         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
2605           check for IS_SYMOP before OP_SYMBOL'ing
2606         * fixed indentation, compacted switch-statements
2607         * (allocReg): find free register and allocate it instead of
2608           allocating new registers all the time
2609         * (deassignLRs): prevent POINTER_GET's from being assigned the same
2610           registers as its operands (necessary only for multibyte GETs)
2611
2612 2005-07-01 Raphael Neider <rneider AT web.de>
2613
2614         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
2615           debugging .asm-output macros FENTRY + FEXIT
2616         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
2617           way... I wonder...
2618         * (emitpComment): NEW, printf to pCode
2619         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
2620           offset handling
2621         * (popGetAddr): NEW, variant of popGet to access an immediates
2622           high(er) bytes instead of the n'th byte of memory they reference,
2623           replaced popGet with popGetAddr where neccessary
2624         * (genDataPointerGet): reactivated and fixed implementation
2625         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
2626           accesses
2627         * (genDataPointerSet): fixed multibyte assignments
2628         * (genpic14Code): fixed --i-code-in-asm handling
2629         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
2630         * (genPlus): fixed index-out-of-bounds error
2631         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
2632         * src/pic/ralloc.c: added debugging output macro FENTRY2
2633         * (spillThis): fixed indentation, enbraced for-body for clarity
2634         * (rematStr): commented out as now unused
2635         * (regTypeNum): commented out special spill case (overwrites
2636           arbitrary values)
2637         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
2638
2639 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
2640
2641         * doc/sdccman.lyx: documented sfr16/sfr32,
2642           added example for using storage class with function pointers
2643         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
2644
2645 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
2646
2647         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
2648         * device/lib/_itoa.c,
2649         * device/lib/_ltoa.c: optimized codesize
2650         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
2651           but don't know how to suppress the double warning.
2652         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
2653         * support/Util/SDCCerr.c,
2654         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
2655
2656 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
2657
2658         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
2659           fixed old K&R prototypes
2660         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
2661         * device/lib/_gptrget.c,
2662         * device/lib/_gptrgetc.c,
2663         * device/lib/_gptrput.c: changed versions for new memory indicator values,
2664           also new versions for small generic pointers and banked generic pointers
2665         * src/port.h: added const_name
2666         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
2667         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
2668         * src/SDCCcse.c (findPrevIc): check all associative operators
2669         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
2670         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
2671         * src/SDCCmem.c: updated comments,
2672           set far-space to 0 for pdata, results in optimized code
2673         * src/SDCCmem.h: added macro CONST_NAME
2674         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
2675           moving the info into the highest bits, see also gptrget/gptrput
2676         * src/src.dsp: added sdcc.ico to project files
2677         * src/avr/gen.c (genCast): fixed bug 0x%d
2678         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
2679         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
2680           relation between ptr_type and DCL_TYPE,
2681           (genCast): fixed bug 0x%d
2682         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
2683           (CODE)" for const_name
2684         * src/hc08/gen.c (genCast): fixed bug 0x%d
2685         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
2686           (hc08_port): added "CONST (CODE)" for const_name
2687         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
2688           (aopForRemat, adjustArithmeticResult): disconnected direct relation
2689           between ptr_type and DCL_TYPE,
2690           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
2691           operand* and took AOP() inside function so sfr-ness can be checked,
2692           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
2693           new prototype,
2694           (genFunction, genEndFunction): optimized stack setup,
2695           (genMinus): optimized for literals with ending zeroes (in bytes),
2696           (genCast): fixed bug 0x%d
2697         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
2698           (mcs51_port): added "CONST (CODE)" for const_name
2699         * src/mcs51/peeph.def: made rule 226 more generic
2700         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
2701         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
2702         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
2703         * src/z80/main.c (z80_port): added NULL for const_name,
2704           (gbz80_port): added NULL for const_name
2705         * support/regression/tests/bug663539.c,
2706         * support/regression/tests/sfr16.c: new tests
2707
2708 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2709
2710         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
2711
2712 2005-06-24 Raphael Neider <rneider AT web.de>
2713
2714         * device/lib/pic16/libdev/pic18f[68][567]20.c:
2715           corrected typos...
2716         * device/include/pic16/signal.h: added USBIF
2717           and SIG_USB
2718
2719 2005-06-24 Raphael Neider <rneider AT web.de>
2720
2721         * device/lib/pic16/libdev/pic18f2455.c,
2722           device/include/pic16/pic18f2455.h: NEW
2723         * device/include/pic16/pic18fregs.h,
2724           device/lib/pic16/pics.all,
2725           src/pic16/device.c: added 18f2455
2726         * device/lib/pic16/libdev/pic18f[68][567]20.c,
2727           device/include/pic16/{pic18f[68][567].h,usart.h}:
2728           replaced MULTIPLE_USARTS define with more relaible
2729           compatibility sfrs (for USART access)
2730
2731 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
2732
2733         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
2734           and the output asm file line is printed on two lines.
2735
2736 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2737
2738         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
2739           BGT, BLE, BHI, and BLS instructions
2740         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
2741           genCmpEq): removed
2742         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
2743           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
2744           fixes bug #1216342
2745         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
2746
2747 2005-06-15 Raphael Neider <rneider AT web.de>
2748
2749         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
2750         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
2751         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
2752           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
2753           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
2754
2755 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2756
2757         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
2758           Marcel Telka in bug #1215704
2759
2760 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
2761
2762         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
2763           located in shared memory bank.
2764
2765 2005-05-31 Raphael Neider <rneider AT web.de>
2766
2767         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
2768           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
2769           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
2770
2771 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
2772
2773         * device/lib/_strncpy.c: fixed the fix
2774
2775 2005-05-26 Raphael Neider <rneider AT web.de>
2776
2777         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
2778           initializers with \0, bug #1208187
2779         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
2780           intializers with \0, bug #1208187
2781
2782 2005-05-26 Raphael Neider <rneider AT web.de>
2783
2784         * src/pic16/glue.c (pic16_printIvalChar): fixed string
2785           initializers with \0, bug #1208187
2786         * src/pic16/main.c (_process_pragma): added sanity checks
2787           for stack position and size, emit warnings when appropriate
2788
2789 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
2790
2791         * device/lib/_strncpy.c: fixed not filling with \0
2792
2793 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2794
2795         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
2796           createFunction),
2797         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
2798           compound_statement),
2799         * src/SDCCsymt.h,
2800         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
2801
2802 2005-05-24 Raphael Neider <rneider AT web.de>
2803
2804         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
2805
2806 2005-05-24 Raphael Neider <rneider AT web.de>
2807
2808         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
2809           TRISE definitions, closes bug #1162453
2810
2811 2005-05-22 Raphael Neider <rneider AT web.de>
2812
2813         * src/pic16/main.c (_process_pragma): check for missing
2814           arguments to pragmas code and udata
2815         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
2816           consistency fixes to match other headers (thanks to Jim Paris)
2817         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
2818
2819 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
2820
2821         * src/SDCCicode.c (isOperandEqual): fixed missing ;
2822
2823 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
2824
2825         * support/regression/tests/bug1198642.c: new test
2826         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
2827         * src/SDCCcse.c (findPrevIc): added comment, please have a look
2828         * support/scripts/resource.h,
2829         * support/scripts/resource.rc,
2830         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
2831         * support/scripts/sdcc.ico: added 32x32 icon
2832
2833 2005-05-18 Raphael Neider <rneider AT web.de>
2834
2835         * device/lib/pic16/libdev/pic18f*.c,
2836         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
2837           keywords to "__sfr" and "__at (X)"
2838         * device/include/pic16/pic18fregs.h: added pic18f4520
2839         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
2840           #1203088 (MPLAB compatibility)
2841
2842 2005-05-17 Raphael Neider <rneider AT web.de>
2843
2844         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
2845         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
2846         * device/lib/pic16/pics.all: added new devices
2847         * src/pic16/device.c: added support for pic18f4520
2848
2849 2005-05-16 Raphael Neider <rneider AT web.de>
2850         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
2851         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
2852         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
2853           convenience function for bit access
2854
2855 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
2856
2857         * device/lib/printf_large.c: fixed bug 1193299
2858         * support/regression/tests/bug1057979.c: added test %3.3s
2859
2860 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2861
2862         * device/include/mcs51/8051.h,
2863         * device/include/mcs51/8052.h: made parseable with lint
2864         * device/include/mcs51/lint.h: added include file for (sp)lint
2865         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
2866         * doc/cdbfileformat.lyx,
2867         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
2868
2869 2005-05-14 Raphael Neider <rneider AT web.de>
2870
2871         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
2872         * device/lib/pic16/libc/stdlib/itoa.c (new)
2873         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
2874         * device/lib/pic16/libio/Makefile: exclude subdir according to
2875           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
2876         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
2877         * src/pic16/gen.c (genFunction): prevent annoying warning
2878         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
2879           nameclashes on BeOS
2880         * support/cpp2/cppmain.c (cpp_output_string): new
2881         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
2882           fixes bug 1116802
2883
2884 2005-05-13 Borut Razem <borut.razem AT siol.net>
2885
2886         * src/SDCCmain.c (linkEdit): fixed bug 1195202
2887
2888 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2889
2890         * .version: changed to version 2.5.1; back to bleeding edge development
2891
2892 2005-05-11 Borut Razem <borut.razem AT siol.net>
2893
2894         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
2895           generate PDF version 1.3 documents
2896
2897 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2898
2899         * .version: changed to version 2.5.0
2900
2901 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2902
2903         * doc/sdccman.lyx: updated weblinks, index and smaller updates
2904
2905 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2906
2907         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
2908         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
2909         well as many smaller updates.
2910         * .version: changed to version 2.5.0-pre1
2911
2912 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2913
2914         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
2915
2916 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
2917
2918         * support/regression/tests/bug1185672.c: added
2919         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
2920           bug 1185672
2921         * src/mcs51/gen.c (genCall): added comments, made it look safer
2922         * src/mcs51/gen.c (genEndFunction): simplified
2923
2924 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
2925
2926         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
2927
2928 2005-04-14 Borut Razem <borut.razem AT siol.net>
2929
2930         * fixed bug 1045046 - SIGSEGV with really simple code?:
2931           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
2932           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
2933
2934 2005-04-14 Borut Razem <borut.razem AT siol.net>
2935
2936         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
2937           src/pic16/device.h: temporarily disabled experimental #inline pragma
2938           for 2.5.0 release
2939
2940 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
2941
2942         * device/include/z80/stdio.h,
2943         * device/include/z80/string.h: removed these highly incomplete files so
2944           SDCC can use the default ones in device/include/
2945
2946 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2947
2948         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
2949         gcc warning.
2950         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
2951         fix sdcpp warnings.
2952
2953 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2954
2955         * device/include/malloc.h: removed redundant __reentrant prototypes
2956         * device/lib/_mullong.c: added working xstack variant in asm (C version
2957           doesn't pass regression tests)
2958         * device/lib/bpx.c: used __data and made bpx char for mcs51
2959         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
2960           (createFunction): fixed bug with xstackPtr
2961         * src/SDCCcse.c: corrected comments
2962         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
2963           (killDeadCode, eBBlockFromiCode): removed unused code
2964         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
2965           corrected comments
2966         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
2967           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
2968           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
2969           (genModOneByte): fixed warning in MSVC
2970         * src/mcs51/main.c (): added comments
2971         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
2972
2973 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2974
2975         * src/SDCCmain.c (linkEdit): oops, changed one line too many
2976
2977 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
2978
2979         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
2980
2981 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
2982
2983         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
2984         characters arrays of larger size than the declared one.
2985
2986 2005-04-10 Borut Razem <borut.razem AT siol.net>
2987
2988         * src/pic/gen.c (genInline),
2989           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
2990           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
2991           (findNextInstruction), (findPrevInstruction),
2992           (findInstructionUsingLabel),
2993           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
2994         * src/pic/pcode.c (findLabel): added missing '\n'
2995         * src/src.dsp: added SDCCdwarf2.c to the project
2996
2997 2005-04-09 Borut Razem <borut.razem AT siol.net>
2998
2999         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
3000
3001 2005-04-08 Raphael Neider <rneider AT web.de>
3002
3003         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
3004           into the chain after a given one) and mergeDefmapSymbols (combine
3005           defmap entries for each symbol per pcode)
3006         * (createDefmap): have defmap entries merged in the end
3007         * (defmapReplaceSymRef): split defmap entries covering two accesses to
3008           a symbol before replacing one access type's symbol, merge symbols in
3009           the end (replacement symbol might already have an entry)
3010         * (assignValnums): keep reference to written WREG intact
3011
3012 2005-04-08 Raphael Neider <rneider AT web.de>
3013
3014         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
3015           Alpha)
3016
3017 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
3018
3019         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
3020         bytes
3021
3022 2005-04-07 Raphael Neider <rneider AT web.de>
3023
3024         * device/include/pic16/usart.h: added compatibility defines for
3025           devices with more than one USART
3026         * device/include/pic16/pic18f[68][567]20.h: activated above defines
3027
3028 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
3029
3030         * device/lib/Makefile.in: updated for port specific include
3031
3032 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
3033
3034         * support/regression/ports/mcs51/spec.mk: added mcs51 include
3035
3036 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
3037
3038         * device/include/8051.h,
3039         * device/include/8052.h,
3040         * device/include/at89S8252.h,
3041         * device/include/at89c55.h,
3042         * device/include/at89x051.h,
3043         * device/include/at89x51.h,
3044         * device/include/at89x52.h,
3045         * device/include/mcs51reg.h,
3046         * device/include/reg51.h,
3047         * device/include/reg764.h,
3048         * device/include/regc515c.h,
3049         * device/include/sab80515.h: (re)moved these 12 files
3050         * device/include/mcs51/8051.h,
3051         * device/include/mcs51/8052.h,
3052         * device/include/mcs51/at89S8252.h,
3053         * device/include/mcs51/at89c55.h,
3054         * device/include/mcs51/at89x051.h,
3055         * device/include/mcs51/at89x51.h,
3056         * device/include/mcs51/at89x52.h,
3057         * device/include/mcs51/mcs51reg.h,
3058         * device/include/mcs51/reg51.h,
3059         * device/include/mcs51/reg764.h,
3060         * device/include/mcs51/regc515c.h,
3061         * device/include/mcs51/sab80515.h: and added them here
3062
3063 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
3064
3065         * device/include/stdarg.h: changed SDCC specific keywords to double
3066           underlined form.
3067         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
3068           mcs51 and ds390.
3069         * device/include/hc08/mc68hc908gp32.h,
3070         * device/include/hc08/mc68hc908jb8.h,
3071         * device/include/hc08/mc68hc908jkjl.h,
3072         * device/include/hc08/mc68hc908qy.h: fixed comments
3073         * device/include/mcs51/README: updated
3074         * device/include/mcs51/c8051f120.h: added PINRSF
3075         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
3076         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
3077           amidst code. Also inline is not supported.
3078
3079 2005-04-06 Raphael Neider <rneider AT web.de>
3080
3081         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
3082         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
3083           callers stack/frame pointers
3084
3085 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
3086
3087         * device/include/pic16/usart.h: added, missing in previous commit,
3088         * device/include/pic16/adc.h: fixed typo,
3089         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
3090         commit,
3091         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
3092         <p18fxxx.inc>
3093         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
3094         uninitialized because a bug appears with gplink
3095         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
3096         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
3097         complains for unrecognised option
3098
3099 2005-04-05 Raphael Neider <rneider AT web.de>
3100
3101         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
3102           structs as well (using memcpy)
3103         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
3104           on ISRs (GOTO has no label)
3105         * src/pic16/device.h: added OF_OPTIMIZE_DF
3106         * src/pic16/main.c: added compiler switch --optimize-df to enable the
3107           new data flow analysis/optimization
3108         * src/pic16/pcode.c: added (prototypes for and implementation of)
3109           dataflow analysis functions, fixed pCodeInstructions' inCond and
3110           outCond values, made RCALL a branch instruction
3111         * (pic16_unlinkpCode): keep C line if possible
3112         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
3113           C line moved if possible
3114         * (pic16_getRegFrompCodeOp): NEW, improved version of...
3115         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
3116           to use new pic16_getRegFrompCodeOp (works for more SFRs)
3117         * (pic16_BuildFlow): fixed skip instructions with label (did not start
3118           new flow)
3119         * (pic16_getJumptabpCode): NEW, needed in...
3120         * (LinkFlow): fixed handling of jumptables, calls and conditional
3121           branches
3122         * (pic16_InsertCommentAfter): NEW
3123         * (pic16_pCodeReplace): made verbose and flow preserving
3124         * (AnalyzeFlow): added call to data flow analysis
3125         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
3126         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
3127         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
3128
3129 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3130
3131         * src/SDCCast.c (decorateType): fixed bug #1105626
3132
3133 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
3134
3135         * device/include/asm/pic16/features.h,
3136         * pic18f*.h headers,
3137         * device/include/pic16/adc.h,
3138         * device/include/pic16/delay.h,
3139         * device/include/pic16/i2c.h,
3140         * device/include/pic16/malloc.h,
3141         * device/include/pic16/stdio.h,
3142         * device/include/pic16/stdlib.h,
3143         * device/include/pic16/string.h,
3144         * device/lib/pic16/libc/stdio/printf_tiny.c,
3145         * device/lib/pic16/libc/stdio/printf_small.c,
3146         * device/lib/pic16/libc/stdio/strmgpsim.c,
3147         * device/lib/pic16/libc/stdio/strmmssp.c,
3148         * device/lib/pic16/libc/stdio/strmusart.c,
3149         * device/lib/pic16/libc/stdio/vfprintf.c,
3150         * device/lib/pic16/libc/stdlib/ltoa.c,
3151         * device/lib/pic16/libc/stdlib/putchar.c,
3152         * device/lib/pic16/libc/stdlib/x_ftoa.c,
3153         * device/lib/pic16/libc/stdlib/memchrpgm.c,
3154         * device/lib/pic16/libc/stdlib/memchrram.c,
3155         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
3156         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
3157         * device/lib/pic16/libio/adc/adcbusy.c,
3158         * device/lib/pic16/libio/adc/adcread.c,
3159         * device/lib/pic16/libio/adc/adcsetch.c,
3160         * device/lib/pic16/libio/usart/ubaud.c,
3161         * device/lib/pic16/libio/usart/ubusy.c,
3162         * device/lib/pic16/libio/usart/udrdy.c,
3163         * device/lib/pic16/libio/usart/uopen.c,
3164         * device/lib/pic16/libio/usart/uputc.c,
3165         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
3166         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
3167         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
3168         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
3169         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
3170         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
3171         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
3172         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
3173         specific keywords to double underlined form,
3174         * device/lib/pic16/libc/Makefile.rules,
3175         * device/lib/pic16/libsdcc/Makefile.rules,
3176         * device/lib/pic16/libm/Makefile,
3177         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
3178         to compile with C standard set in Makefile.common
3179         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
3180         rand.c and crc.c in compilation process,
3181         * device/lib/pic16/libsdcc/int/divuint.c,
3182         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
3183         `c' from signed to unsigned,
3184         * device/lib/pic16/startup/crt0.c,
3185         * device/lib/pic16/startup/crt0i.c,
3186         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
3187         keywords to double underlined form, bug fixes in _do_cinit function
3188         which prevented the correct initialization of the .idata segment,
3189         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
3190         core to enter a infinite loop
3191         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
3192
3193 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3194
3195         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
3196
3197 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3198
3199         * device/include/Makefile.in: add support for hc08 subdirectory
3200         * device/include/hc08/: new subdirectory
3201         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
3202         Lucas Loizaga, thanks!
3203         * device/include/hc08/mc68hc908qy.h,
3204         * device/include/hc08/mc68hc908gp32.h,
3205         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
3206         their own directory. Changed internal macro names to use the compiler
3207         reserved namespace. Changed SDCC specific keywords to double
3208         underlined form.
3209         * device/include/math.h,
3210         * device/include/malloc.h,
3211         * device/include/stdarg.h,
3212         * device/include/stdbool.h
3213         * device/include/string.h,
3214         * device/include/tinibios.h,
3215         * device/include/ds400rom.h,
3216         * device/include/8051.h,
3217         * device/include/8052.h,
3218         * device/include/80c51xa.h,
3219         * device/include/at89c55.h,
3220         * device/include/at89S8252.h,
3221         * device/include/at89x51.h,
3222         * device/include/at89x52.h,
3223         * device/include/ds80c390.h,
3224         * device/include/reg764.h,
3225         * device/include/regc515c.h,
3226         * device/include/sab80515.h,
3227         * device/include/mcs51/c8051f000.h,
3228         * device/include/mcs51/c8051f018.h,
3229         * device/include/mcs51/c8051f020.h,
3230         * device/include/mcs51/c8051f040.h,
3231         * device/include/mcs51/c8051f060.h,
3232         * device/include/mcs51/c8051f120.h,
3233         * device/include/mcs51/c8051f300.h,
3234         * device/include/mcs51/c8051f310.h,
3235         * device/include/mcs51/c8051f320.h,
3236         * device/include/mcs51/c8051f330.h,
3237         * device/include/mcs51/c8051f350.h,
3238         * device/include/z180.h: Changed SDCC specific keywords to double
3239         underlined form.
3240
3241 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
3242
3243         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
3244         18F4455,
3245         * (pic16_assignConfigWordValue): disable testing of configuration
3246         register value with config mask,
3247         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
3248         function with port->fun_prefix,
3249         * (genFunction): when generating a naked interrupt function never
3250         create an absolute segment placed in interrupt vector address, place
3251         the actual interrupt function at IVA instead, when an interrupt
3252         function is generated with unspecified interrupt then do not create
3253         the absolute section,
3254         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
3255         code for generating a call to generic pointer get/put function with
3256         a call to function pic16_callGenericPointer(),
3257         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
3258         the call to the generic pointer get/put functions with prefixing the
3259         function name with port->fun_prefix,
3260         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
3261         * src/pic16/main.c (_process_pragma): prefix function with
3262         port->fun_prefix,
3263         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
3264         calling assembler, old 18Fxxxx macro is deprecated,
3265         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
3266         PC_ASMDIR in while condition,
3267         * (findInstruction): add PC_ASMDIR in while condition,
3268         * (buildCallTree): prefix main with port->fun_prefix,
3269         * (pic16_pCode2str): fixed bug that didn't emit the memory access
3270         identifier for variable with banked access in instructions BTFSS,
3271         BTFSC, BCF, BSF, BTG
3272         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
3273         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
3274         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
3275         perform optimization when enviroment variable NO_REG_OPT is set,
3276         * (insideLRBlock): NEW, return 1 if register is inside an
3277         INF_LOCALREGS block,
3278         * (RemoveRegFromLRBlock): remove a register that is completely
3279         eliminated by register optimization, but it is still left in local
3280         register store/restore in/from stack block,
3281         * (Remove2pcodes): after removing register, check to see if it
3282         should be removed from local register store/restore in/from stack
3283         block,
3284         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
3285         DUMMY_READ_VOLATILE,
3286
3287         * device/include/pic16/adc.h: minor prototype modifications and
3288         update,
3289         * device/include/pic16/malloc.h: added GPL notice various
3290         modifications,
3291         * device/include/pic16/stdint.h: NEW, standard header for ints
3292         * device/include/pic16/delay.h: NEW, header for delay functions,
3293         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
3294         delay1mtcy,
3295         * device/include/pic16/signal.h: NEW, header providing helper macros
3296         for implementing signal handlers,
3297         * device/include/pic16/stdio.h: added prototypes for functions,
3298         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
3299         prototypes for stdin and stdout, added macro PUTCHAR to
3300         automatically implement putchar function prototype,
3301         * device/include/pic16/usart.h: modified and updated USART library,
3302         * device/lib/pic16/libio/adc/,
3303         * device/lib/pic16/libio/i2c: some modifications to improve library
3304         performance,
3305         * device/lib/pic16/libc/stdio/: modifications for the new printf*
3306         family of functions,
3307         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
3308         family of functions and other sources,
3309         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
3310         of the PIC18Fxx[28] devices,
3311         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
3312         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
3313         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
3314         _do_cinit function, because the previous failed when local variables
3315         where not placed in the same memory bank,
3316         * device/lib/pic16/libsdcc/char/: various modifications to improve
3317         library performance,
3318         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
3319         information on the new functions of the c library and more...
3320
3321 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3322
3323         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
3324
3325 2005-03-26 Raphael Neider <rneider AT web.de>
3326
3327         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
3328           if condition == CARRY)
3329         * (genCmp): adapted to new genSkipc semantics
3330         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
3331           on rIfx (genCmp was broken)
3332
3333 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3334
3335         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
3336         * src/z80/main.c (_keywords[]),
3337         * src/SDCCglobal.h (struct options),
3338         * src/SDCC.y,
3339         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
3340         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
3341         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
3342         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
3343         always available in leading double underscore form. The C99 support is
3344         mostly missing, but it's a start.
3345         * support/regression/tests/bug-227710.c: fixed nonconforming use of
3346         reserved identifier "__data".
3347
3348 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
3349
3350         * src/mcs51/peeph.def: fixed bug 1170013
3351
3352 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
3353
3354         * device/include/mcs51reg.h: fixed bug 842007
3355
3356 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3357
3358         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
3359         last time.
3360
3361 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3362
3363         * src/port.h (struct PORT),
3364         * src/avr/ralloc.c (avr_assignRegisters),
3365         * src/avr/main.c,
3366         * src/ds390/ralloc.c (ds390_assignRegisters),
3367         * src/ds390/main.c,
3368         * src/hc08/ralloc.c (hc08_assignRegisters),
3369         * src/hc08/main.c,
3370         * src/mcs51/ralloc.c (mcs51_assignRegisters),
3371         * src/mcs51/main.c,
3372         * src/pic/ralloc.c (pic14_assignRegisters),
3373         * src/pic/main.c,
3374         * src/pic16/ralloc.c (pic16_assignRegisters),
3375         * src/pic16/main.c,
3376         * src/xa51/ralloc.c (xa51_assignRegisters),
3377         * src/xa51/main.c,
3378         * src/z80/ralloc.c (z80_assignRegisters),
3379         * src/z80/ralloc.h,
3380         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
3381         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
3382         * src/SDCCcse.h,
3383         * src/SDCCdflow.c (computeDataFlow),
3384         * src/SDCCdflow.h,
3385         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
3386         * src/SDCCloop.h,
3387         * src/SDCCcflow.c (*),
3388         * src/SDCCcflow.h,
3389         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
3390         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
3391         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
3392         immedDom() returning wrong block; probably fixes bug #1160833)
3393
3394 2005-03-20 Borut Razem <borut.razem AT siol.net>
3395
3396         * support/scripts/inc2h.pl: WIN32 port
3397
3398 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
3399
3400         * device/lib/makefile.in: added abs.c and labs.c
3401
3402 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
3403
3404         * device/include/stdint.h: added
3405         * device/lib/abs.c: added
3406         * device/lib/labs.c: added
3407         * device/include/stdlib.h: added abs() and labs() prototypes
3408         * device/lib/libsdcc.lib: added abs and labs
3409         * device/include/float.h,
3410         * device/lib/_fsmul.c,
3411         * device/lib/printf_fast.c,
3412         * device/lib/printf_tiny.c: updated comments
3413
3414 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3415
3416         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
3417         bug #1164313
3418
3419 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3420
3421         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
3422         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
3423
3424 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
3425
3426         * device/lib/printf_large.c: removed inline assembly for portability and
3427           readability. Use printf_fast if speed or size are more important.
3428         * src/pic16/gen.c: removed conditions around use of DEBUGpc
3429         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
3430
3431 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
3432
3433         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
3434         prevent compiler warning
3435
3436 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
3437
3438         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
3439         moved to level 0 and declared as static. Also they are explicit
3440         placed in access bank. This was necessery because some times they
3441         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
3442         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
3443         optimizations. Currently only compare to unsigned char is implemented,
3444         * src/pic16/gen.c: added fReturnIdx array,
3445         * (struct resolvedIfx) is moved to gen.h and made public,
3446         * (struct _G): added sregsAlloc and sregsAllocSet fields,
3447         * (aopForSym): added an optimization to directly store in stack of
3448         the operand of a SEND iCode,
3449         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
3450         but as registers instead (AOP_REG) using the fReturnIdx array,
3451         * (pic16_freeAsmop): remove the freed register from the
3452         _G.sregsAlloc field,
3453         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
3454         a compare of 'WREG',
3455         * (pic16_popGetTempRegCond): changed function prototype, now
3456         function takes also a bitVector argument v which holds the current
3457         set of registers that are allocated for stack access by aopForSym,
3458         registers allocated in aopForSym for accessing stack symbols are not
3459         any more part of the functions usedRegs field,
3460         * (genCall): some times aopOp is called for a stack variable to be
3461         send, aopForSym might perform the push, if this is true make sure
3462         that genCall doesn't push the variable twice by testing _G.resDirect,
3463         * (genFunction): changed testing for unspecified interrupt number
3464         from 256 to INTNO_UNSPEC,
3465         * modified selection scheme of frame pointer generation. Previously
3466         if function did use local registers a frame pointer was generated,
3467         now a frame pointer is generated only if function has arguments
3468         (that need PLUSW2 register access), or has stack arguments, or the
3469         compiler is not instructed to omit the frame pointer,
3470         * (genEndFunction): before restoring local registers that were saved
3471         in the function preamble, also restore the registers that *might*
3472         have been allocated for stack access,
3473         * (genRet): removed some old comments,
3474         * (genCmp, the active (RN's) version): added a call to the
3475         pic16_genCmp_special function to perform the compare with a more
3476         robust and optimized way,
3477         * (genInline): a feature has been added in inline code generation,
3478         which allows a wildcard variable substitution when writing inline
3479         assembly. Code is incomplete and experimental therefore undocumented,
3480         * (genCast): changed order of aopOp for result and right to allow
3481         aopForSym to directly load the result if possible,
3482         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
3483         perform an optimized compare on some selected special occasions,
3484         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
3485         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
3486         generate an IVT any more,
3487         * src/pic16/main.c (pic16_optionsTable): added command line option
3488         --optimize-cmp,
3489         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
3490         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
3491         macros,
3492         * src/pic16/NOTES: Raphael Neider added in list of active developers
3493         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
3494         jumptable_end to prevent bug #,
3495         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
3496         inCond and outCond fields,
3497         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
3498         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
3499         turn off register spilling,
3500         * (packRegsForOneUse): synced with other ports' versions although it
3501         is not used currently,
3502         * (pic16_packRegisters): added an optimization while reading
3503         structure bitfields, some registers may be saved (malloc code is
3504         decreased by 80 bytes)
3505
3506 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
3507
3508         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
3509         left is a bitfield, if yes, then don't optimize assignment. Perhaps
3510         this can be optimized more?
3511
3512 2005-03-10 Raphael Neider <rneider AT web.de>
3513
3514         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
3515           genNearPointerGet): (hopefully) fixed access to bitfields via
3516           pointers (p->bitN = x; and x = p->bitN; failed)
3517
3518 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
3519
3520         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
3521
3522 2005-03-09 Raphael Neider <rneider AT web.de>
3523
3524         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
3525
3526 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
3527
3528         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
3529         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
3530           (regTypeNum): set REG_BIT type if necessary
3531         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
3532         * support/regression/tests/critical.c: check bug 1144613
3533
3534 2005-03-02 Raphael Neider <rneider AT web.de>
3535
3536         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
3537
3538 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3539
3540         * src/avr/ralloc.c (serialRegAssign),
3541         * src/ds390/ralloc.c (serialRegAssign),
3542         * src/hc08/ralloc.c (serialRegAssign),
3543         * src/mcs51/ralloc.c (serialRegAssign),
3544         * src/pic/ralloc.c (serialRegAssign),
3545         * src/pic16/ralloc.c (serialRegAssign),
3546         * src/xa51/ralloc.c (serialRegAssign),
3547         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
3548
3549 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
3550
3551         * src/SDCCast.c (decorateType): fixed bug 1124787
3552
3553 2005-02-20 Hubert Sack <sack AT digiplan.de>
3554         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3555
3556         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
3557         patch #1121755
3558
3559 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3560
3561         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
3562         to keep the correct label reference count when adding/removing references
3563         to labels. A peephole file using this is appended to patch #1144962.
3564
3565 2005-02-14 Raphael Neider <rneider AT web.de>
3566
3567         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
3568         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
3569         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
3570           retrievals of result operand's value on assignment
3571
3572 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
3573
3574         * device/include/pic16/string.h: modified prototype for memccpy()
3575         to memccpy(void *, void *, char, size_t)
3576         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
3577         check whether to omit frame pointer or not,
3578         * (genInline): convert all occurences of "\n" to LF in inline
3579         assembler blocks, this helps formatting the inline text,
3580         * (pic16_loadFSR0): modified prototype,
3581         * (genNearPointerGet, genNearPointerSet): reorganization of code,
3582         removed some 8051 legacy code,
3583         * (genPackBits): enabled handling bitfields exceeding one byte in size,
3584         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
3585         before allocating temporary registers in functions,
3586
3587 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
3588
3589         * support/regression/tests/bitvars.c: corrected the "fix"
3590
3591 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
3592
3593         * support/regression/tests/bitvars.c,
3594         * support/regression/tests/bitwise.c,
3595         * support/regression/tests/rotate.c: "fixed" problems on Alpha
3596
3597 2005-02-10 Raphael Neider <rneider AT web.de>
3598
3599         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
3600           different size for Alpha
3601         * src/pic16/gen.c (genCmpEq) : improved compare with 0
3602
3603 2005-02-09 Raphael Neider <rneider AT web.de>
3604
3605         * src/SDCC.lex(doPragma) : save and restore warning options as well
3606           (also added new stack plus clone- and copyAndFreeSDCCERRG())
3607         * have #pragma less_pedantic set the errorlevel to WARNING
3608           (fixes #1117001)
3609         * (cloneOptimize) : fixed wrong malloc's size
3610         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
3611           facilitate correct handling of #pragma (save|restore)
3612
3613 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
3614
3615         * src/mcs51/gen.c: removed non-standard C nameless struct/union
3616
3617 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
3618
3619         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
3620
3621 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
3622
3623         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
3624
3625 2005-02-02 Raphael Neider <rneider AT web.de>
3626
3627         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
3628         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
3629         * (pic16_storeForReturn): fixed to allow returning function pointers
3630         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
3631         * device/include/pic16/{stddef.h,stdbool.h}: added
3632
3633 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
3634
3635         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
3636
3637 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
3638
3639         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
3640         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
3641          appeared to be required
3642
3643 2005-01-31 Borut Razem <borut.razem AT siol.net>
3644
3645         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
3646           include/mcs51 and include/z80 directories to the package
3647
3648 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3649
3650         * src/hc08/gen.c (genFunction): fixed bug #1112752
3651
3652 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3653
3654         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
3655
3656 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3657
3658         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
3659
3660 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
3661
3662         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
3663
3664 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
3665
3666         * device/include/c8051fxxx.h: removed these 6 files
3667         * device/include/mcs51/c8051fxxx.h: added these 11 new files
3668
3669 2005-01-26 Raphael Neider <rneider AT web.de>
3670
3671         * src/pic16/gen.c (genAssign): fixed assignment from longs
3672           in codespace (were cut to three bytes)
3673         * (genDummyRead): implemented (except for CODESPACE...),
3674           fixed bug #1108575
3675         * src/pic16/glue.c (emitStatistics): beautified
3676         * device/lib/pic16/libm/Makefile: added include path
3677
3678 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3679
3680         * src/z80/gen.c (aopPut): fixed bug #1103902
3681
3682 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3683
3684         * device/lib/expf.c: fixed bug #1095792
3685
3686 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
3687
3688         * device/lib/pic16/libm: added Math library sources
3689
3690 2005-01-24 Raphael Neider <rneider AT web.de>
3691
3692         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
3693           to enable upcast to pCodeOpReg2 (there is no type tag to
3694           differenciate the two and pic16_popGet2p cast into PCOR2)
3695         * src/pic16/main.c (_process_pragma): fixed another malloc bug
3696           (sizeof(sectNames) changed to sizeof(sectName))
3697           Both patches fix segfaults under MinGW.
3698
3699 2005-01-23 Raphael Neider <rneider AT web.de>
3700
3701         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
3702           Safe_[mc]?alloc()'ed variables
3703         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
3704           of (byte sized) temporaries (assign them to WREG for now)
3705         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
3706           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
3707           this might fix SIGSEGVs on MinGW...
3708         * src/SDCCopt.c (killDeadCode): restored original behaviour
3709           (volatile operands might get thrown away though)
3710
3711 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
3712
3713         * src/pic16/gen.c: fixed bug #1106975,
3714         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
3715         pointer update, INTCON is saved, global interrupts are disabled and
3716         restored after updateing TOS.
3717         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
3718         * added function attribute 'shadowregs' to take advantage of shadow
3719         registers,
3720         * added function attribute 'wparam' as an alternative to the wparam
3721         pragma,
3722         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
3723         user declares a non-ISR function as 'shadowregs',
3724         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
3725
3726 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
3727
3728         * .version: bumped version number to 2.4.8
3729         * device/lib/pic16/pics.all: list of PIC18F devices supported by
3730         pic16 port,
3731         * device/lib/pic16/libio/i2c/: I2C module support library,
3732         * device/include/pic16/i2c.h: I2C support library header,
3733         * device/lib/pic16/libc/stdio/: standard IO support sources,
3734         * (printf_small.c): printf_small() source, supports float print,
3735         * (printf_tiny.c): printf_tiny() source, does not support floats,
3736         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
3737         enable global optimizations for entire library source, other
3738         Makefiles in the source tree are also modified to reflect this,
3739         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
3740         function,
3741         * doc/sdccman.lyx: updated to reflect new changes,
3742         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
3743         sym->onStack if-case,
3744         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
3745         sbit, idata, _idata, xdata, _xdata,
3746         * added pragma library, to link an external library, (see doc),
3747         * removed command line options, --pomit-config-words, --pomit-ivt,
3748         --pleave-reset-vector,
3749         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
3750         when calling assembler to reflect memory model used, also define
3751         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
3752         reflect stack model used,
3753         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
3754         on stack return NULL,
3755
3756 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3757
3758         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
3759           of the operands is volatile. Fixes #1020220
3760
3761 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3762
3763         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
3764         * (OptimizeRegUsage): make sure that there is really no other flow where
3765           the first pCode is used
3766
3767 2005-01-22 Raphael Neider <rneider AT web.de>
3768
3769         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
3770           to fix #1106967 (pCode->seq are not set up correctly)
3771
3772 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3773
3774         * src/SDCCglue.c (glue): make sure code area is declared before the
3775         static initialization area.
3776
3777 2005-01-21 Raphael Neider <rneider AT web.de>
3778
3779         * device/lib/Makefile.in: fixed test for pic16 install dir
3780         * device/lib/pic16/*/Makefile*: modified compile flags to enable
3781           optimizations
3782         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
3783           added --optimize-goto compiler switch and pragma wparam documentation
3784         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
3785         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
3786           and PRODH closing bug #1071770 (peephole optimizer)
3787
3788 2005-01-19 Raphael Neider <rneider AT web.de>
3789
3790         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
3791           cmdLine buffers (used when calling sdcpp...) are large enough
3792           (MAX_PATH=256 truncates arguments leading to system halts when
3793           used in MinGW...)
3794         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
3795         * (genUminus): rewritten to for efficiency
3796         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
3797           used uninitialized in some cases)
3798         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
3799           copy the third byte from the int -- now assumes 0x80 (data memory)
3800         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
3801           operands (genAddLit expects the iCode's operands to swapped as
3802           well), fixed leftover bytes (crashed for short left operands)
3803         * (pic16_genMinusDec): performance improvements, removed false
3804           PIC14 emitSKPNCs
3805         * (pic16_genMinus): fixed to cope with differently sized operands
3806         * src/pic16/glue.c (pic16_glue): added new banksel optimization
3807           for --obanksel > 1
3808         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
3809         * src/pic16/graph.[ch]: implementation of directed graphs, used by
3810           new banksel optimization
3811         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
3812           analysis for temporary registers (segfaults...)
3813         * src/pic16/peeph.def: added rule
3814
3815 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
3816
3817         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
3818         which converts a float number to its ASCII representation
3819         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
3820         functions to convert the fractional and integer part of a float to ASCII,
3821         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
3822         realloc.c): added _MALLOC_SPEC to explicit place variables in data
3823         ram
3824         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
3825         _STATMEM macros,
3826         * device/include/pic16/adc.h: added GPL info,
3827         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
3828         a pCodeOp as tested operand,
3829         * (genNearPointerGet): optimized bit testing, does not use
3830         intermediate register for bit value, test directly instead with
3831         BTFSS, BTFSC, works only for single bits,
3832         * (genpic16Code): dump the name of the iCode in the asm,
3833         * src/pic16/ralloc.c (decodeOp): removed static declaration and
3834         renamed to pic16_decodeOp,
3835         * (serialRegAssign): do not allocate a temporary register for iCode
3836         sequences that test a single bit for 1/0
3837
3838 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
3839
3840         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
3841         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
3842         access stack and frame pointers. They are initially assigned to
3843         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
3844         accessing SFRs. Updated all occurences of modification of stack or
3845         frame pointer in gen.c and pcode.c,
3846         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
3847         assigning of a literal value to pointers,
3848         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
3849         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
3850         selected
3851
3852 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
3853
3854         * doc/sdccman.lyx: update documentation about stack pragma, added
3855         some info for stack memory models
3856
3857 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3858
3859         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
3860
3861 2005-01-08 Raphael Neider <rneider AT web.de>
3862
3863         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
3864           udata sections to fix bug #1097823
3865
3866 2005-01-05 Raphael Neider <rneider AT web.de>
3867
3868         * src/pic16/gen.c (genGenericShift): added handling of differently
3869           sized left operand and result
3870
3871 2005-01-04 Raphael Neider <rneider AT web.de>
3872
3873         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
3874         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
3875           to hold the condition bit)
3876         * added new version of genCmp (old code available via #define)
3877         * added new version of genShiftLeft/genShiftRight in a generic
3878           way, now supports shifting by negative values
3879         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
3880           shiftCount (expected by genGenericShift)
3881         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
3882         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
3883           dump
3884         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
3885           is an invalid literal too...)
3886
3887 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
3888
3889         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
3890         from Raphael Neider,
3891         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
3892         for 8-bit literals. This fixes some literal operands which are sign
3893         extended to 16-bits ints when instruction needs only 8-bits.
3894
3895 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
3896
3897         * device/lib/logf.c: added mcs51 assembly version
3898         * device/lib/expf.c: added mcs51 assembly version
3899         * device/lib/_logexpf.c: new shared asm code for expf and logf
3900         * device/include/math.h: add defines for assembly math library
3901         * device/lib/Makefile.in: build new _logexpf.c
3902         * device/lib/libfloat.lib: use new _logexpf.c
3903
3904 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3905
3906         * src/pic/device.c
3907         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
3908           device types which have less than 0x7f registers.
3909
3910 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3911
3912         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
3913
3914 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3915
3916         * device/lib/printf_fast.c: only build on supported arch.
3917         * device/lib/printf_tiny.c: only build on supported arch.
3918         * device/lib/printf_fast_f.c: only build if asm float lib
3919         * device/lib/_fsget1arg.c: only build if asm float lib
3920         * device/lib/_fsget2args.c: only build if asm float lib
3921         * device/lib/_fsnormalize.c: only build if asm float lib
3922         * device/lib/_fsreturnval.c: only build if asm float lib
3923         * device/lib/_fsrshift.c: only build if asm float lib
3924         * device/lib/_fsswapargs.c: only build if asm float lib
3925         * device/include/stdio.h: don't provide print_fast,
3926           print_fast_f, print_tiny prototypes if --xstack used
3927
3928 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
3929
3930         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
3931         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
3932           to the SOURCES
3933
3934 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3935
3936         * device/lib/printf_fast_f.c: same as printf_fast, but
3937           with floating point enabled
3938         * device/lib/printf_fast.c: minor tweaks
3939         * device/include/stdio.h: add printf_fast_f
3940
3941 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3942
3943         * src/SDCCmain.c: make --float-reent default for mcs51
3944         * device/lib/_fsadd.c: added mcs51 assembly version
3945         * device/lib/_fssub.c: added mcs51 assembly version
3946         * device/lib/_fsmul.c: added mcs51 assembly version
3947         * device/lib/_fsdiv.c: added mcs51 assembly version
3948         * device/lib/_fseq.c: added mcs51 assembly version
3949         * device/lib/_fsneq.c: added mcs51 assembly version
3950         * device/lib/_fsgt.c: added mcs51 assembly version
3951         * device/lib/_fslt.c: added mcs51 assembly version
3952         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
3953         * device/lib/Makefile.in: add _fscmp to build
3954         * device/lib/libfloat.lib: add _fscmp to build
3955
3956 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3957
3958         * device/lib/_fs2slong.c: added mcs51 assembly version
3959         * device/lib/_fs2sint.c: added mcs51 assembly version
3960         * device/lib/_fs2schar.c: added mcs51 assembly version
3961         * device/lib/_fs2ulong.c: added mcs51 assembly version
3962         * device/lib/_fs2uint.c: added mcs51 assembly version
3963         * device/lib/_fs2uchar.c: added mcs51 assembly version
3964         * device/lib/_slong2fs.c: added mcs51 assembly version
3965         * device/lib/_sint2fs.c: added mcs51 assembly version
3966         * device/lib/_schar2fs.c: added mcs51 assembly version
3967         * device/lib/_ulong2fs.c: added mcs51 assembly version
3968         * device/lib/_uint2fs.c: added mcs51 assembly version
3969         * device/lib/_uchar2fs.c: added mcs51 assembly version
3970         * device/include/float.h: added #define to select asm vs c
3971
3972 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
3973
3974         * device/lib/printf_fast.c: improvements to float output
3975         * device/include/float.h: add defines for assembly float library
3976         * device/lib/_fsget1arg.c: receive 1 float arg
3977         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
3978         * device/lib/_fsnormalize.c: normalize a float
3979         * device/lib/_fsreturnval.c: return float, various helper routines
3980         * device/lib/_fsrshift.c: right shift a float's mantissa
3981         * device/lib/_fsswapargs.c: swap 2 floats
3982         * device/lib/Makefile.in: build these 6 new files for mcs51
3983         * device/lib/libfloat.lib: add these 6 files to the library
3984
3985 2004-12-26 Borut Razem <borut.razem AT siol.net>
3986
3987         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
3988           built by gcc 3.4.2
3989
3990 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
3991
3992         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
3993           and fully reentrant and register bank neutral.
3994         * device/lib/printf_fast.c: added float (not enabled by default),
3995           added compact/slower integer (also not enabled by default),
3996           improved size/speed of fast integer code, other minor changes
3997         * device/include/stdio.h, device/lib/Makefile.in,
3998           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
3999
4000 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
4001
4002         * src/pic16/pcode.c: declaring variables other than at the start of a
4003           block is not supported in C by VC6.
4004
4005 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
4006
4007         * applied a previous patch from Raphael Neider that wasn't included
4008         in the previous commits, which fixes infinite loops within jumptable
4009         improvements,
4010         * made some fixes that previous patches introduced
4011
4012 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
4013
4014         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
4015         that fixes an issue with AOP_PCODE asmop's offset,
4016         * (pic16_popCopyReg): update instance field too,
4017         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
4018         function of pic port,
4019         * (genCmp, genAnd, genAssign),
4020         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
4021
4022 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
4023
4024         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
4025         variables initial values to idata section,
4026         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
4027         variables in some functions. This utilizes parmBytes field of iCode
4028         structure to hold the offset of the variable in stack. (might be
4029         able to use the stack field too?)
4030         * applied patch from Raphael Neider # ### , # ###
4031         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
4032         variable initial values in idata section,
4033         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
4034         for static variables with initial value
4035         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
4036         applied fix in while loop from Raphael Neider.
4037
4038 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
4039
4040         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
4041         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
4042         * src/ds390/ralloc.c (serialRegAssign): spill bits
4043         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
4044         * support/Util/SDCCerr.c,
4045         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
4046         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
4047         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
4048
4049 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
4050
4051         * device/include/sdcc-lib.h: inserted LGPL, added includes
4052           asm/ds390/features.h and asm/mcs51/features.h
4053         * device/include/asm/default/features.h,
4054         * device/include/asm/gbz80/features.h,
4055         * device/include/asm/z80/features.h: added empty _AUTOMEM
4056           and _STATMEM
4057         * device/include/asm/ds390/features.h,
4058         * device/include/asm/mcs51/features.h: added files with defines for
4059           _AUTOMEM and _STATMEM indicating automatic and static storage class
4060         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
4061         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
4062         * src/SDCCicode.c (geniCodeCast),
4063         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
4064         * src/SDCCloop.c (loopInduction): removed unused variable lr
4065         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
4066           to convertToFcall to include char modulo (RFE 1065037), added check
4067           if left operand is unsigned and use abs of literal value
4068         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
4069           as it doesn't work after conversion from peephole.def to peephole.rul
4070         * src/mcs51/gen.c (toBoolean): added check for size,
4071           (genModOneByte): optimized code for signed char modulo a literal
4072           power of 2 (thanks to Hubert Sack),
4073           (genRRC): removed unnecessary "clr c",
4074           (genRLC): replaced "add a,acc" with cheaper "rlc a"
4075         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
4076           jump optimization,
4077           swapped rules 256.c and 256.d,
4078           extended 256.d by using new multiple checks (thanks Erik),
4079           added rules 256.e and 256.f,
4080           updated rule 261.a and 261.b to new generated code
4081         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
4082
4083 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4084
4085         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
4086           induction related bugs, including first part of bug #1074377
4087
4088 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
4089
4090         * applied patch from bug-report #1076292,
4091         * applied patches for genAnd and Goto-optimizations for Raphael
4092         Neider,
4093         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
4094         dump a less iCode information,
4095         * src/pic16/device.h (pic16_options_t): added field debgen,
4096         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
4097         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
4098         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
4099         puclic,
4100         * (various functions): added macros FENTRY and FENTRY2 to functions,
4101         to emit function prologue,
4102         * (various functions): fixed indentation,
4103         * (genNearPointerGet): fixed loading of FSR0,
4104         * (genPackBits): applied patch from Raphael Neider to fix updating
4105         of FSR0 and touching only the modified bits,
4106         * src/pic16/genarith.c (various functions): added macros FENTRY to
4107         emit function prologue in comments,
4108         * src/pic16/pcode.h: added functions debugf2, debugf3,
4109         * src/pic16/ralloc.c: partial fix for packForPush caused
4110         segmentation fault,
4111
4112 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4113
4114         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
4115           <stsp AT users.sourceforge.net> with reversed byte order
4116         * support/regression/tests/rotate.c: added (ds390 skips some tests)
4117
4118 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4119
4120         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
4121           bug #1074377
4122         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
4123         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
4124
4125 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
4126
4127         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
4128
4129 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4130
4131         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
4132           conditions,
4133           (setFromConditionArgs): friendly operand parser for peephole rules,
4134           (operandBaseName, operandsNotRelated): new peephole condition
4135           "operandsNotRelated" -- similar to "operandsNotSame", but takes
4136           architecture specific register naming into account, handles n-way
4137           comparisons, and supports quoted literals
4138         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
4139
4140 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4141
4142         * src/mcs51/peeph.def: fixed bug #1076940
4143
4144 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
4145
4146         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
4147
4148 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4149
4150         Adding support for replacing ljmps with sjmps in jumptables
4151         generated for switch statements. For now you need to set the
4152         environment variable SDCC_SJMP_JUMPTABLE to enable this.
4153         Now 4 algorithms for mcs51 jumptable generation are used:
4154         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
4155         addresses loaded pc-relative for up to 112 cases and stack-pushing
4156         target addresses loaded with offset from dptr for up to 256 cases.
4157
4158         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
4159         * src/mcs51/main.c: adapted constants for switch table generation
4160         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
4161
4162 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
4163
4164         * device/lib/printf_large.c (_print_format): fixed bug 1073386
4165         * support/regression/tests/bug1057979.c: added test for bug 1073386
4166
4167 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
4168
4169         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
4170         compilers
4171
4172 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
4173
4174         * src/pic16/device.h,
4175         * src/pic16/genarith.c,
4176         * src/pic16/glue.c,
4177         * src/pic16/main.c,
4178         * src/pic16/pcode.c: applied patches #1068154 and #1070213
4179
4180 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
4181
4182         Large cummulative patch for pic16 port.
4183         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
4184         to call when a stack overflow occurs,
4185         * (malloc.h): added CVS Id tag,
4186         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
4187         variable,
4188         * added libc directory. The current version of LibC contains string
4189         functions, ctype functions and macros and some functions of the
4190         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
4191         be extensively tested in the future. Standard disclaimer here.
4192         Library is not automatically build yet. But one can build it by
4193         invoking 'make' inside the libc directory.
4194         * added ADC library under libio. Preliminary version yet.
4195
4196         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
4197         * src/pic16/gen.c (aopForRemat): asmop size is filled by
4198         aopForRemat() now and not by pic16_aopOp(),
4199         * (pic16_popGetTempReg): removed warning messgae when allocating
4200         temporary registers, its a buggy feature and will be removed,
4201         * (pic16_popGet): set register instance field in AOP_CRY,
4202         * (pic16_outBitC): fixed for results in size greater than 1,
4203         * (genUminusFloat): fixed for pic16, ported code from mcs51,
4204         * (pic16_storeForReturn): optimized return of 0,
4205         * (genCmp): experimental code for new genCmp which uses PIC18's
4206         special compare&skip instructions. Initial tests fail some times
4207         with variables grater than 1 byte in size, so new code is disabled,
4208         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
4209         a single bit,
4210         * (genCast): began a fix to optimize the casting of a bit to another
4211         bit, now assigning a bitfield to another bitfield will fail, sorry,
4212         * src/pic16/main.c: disabled the use of lr-support feature,
4213         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
4214         * added some function prototypes, added function _debugf prototype,
4215         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
4216         bits with offset (case PO_GPR_BIT),
4217         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
4218         command line,
4219         * (isBankInstruction): modified to return 0 for no banking instruction,
4220         and 1 for banking instruction,
4221         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
4222         caused stop processing pCodes after a inline assembly block,
4223         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
4224         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
4225         registers when it shouldn't,
4226         * src/pic16/ralloc.c (allocReg): add preliminary support for
4227         supporting a limited set of temporary registers,
4228
4229 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4230
4231         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
4232           genDataPointerSet): ensure assignments always copy in MSB to LSB
4233           order,
4234           (loadRegFromAop): recognize CLRH optimization,
4235           (genFunction): optimize RECEIVE iCodes in reentrant functions
4236
4237 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4238
4239         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
4240           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
4241           selected.
4242         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
4243         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
4244           contiguous with data
4245
4246 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4247
4248         * device/lib/_gptrget.c (_gptrget),
4249         * device/lib/_gptrgetc.c (_gptrgetc),
4250         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
4251           instead of sjmp to ret
4252         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
4253           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
4254
4255 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
4256
4257         * .version: bumped version to 2.4.7
4258         * device/lib/_gptrget.c (_gptrget): is now _naked
4259         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
4260         * device/lib/_gptrput.c (_gptrput): is now _naked
4261         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
4262           (createFunction): fixed xstack
4263         * src/SDCCglue.c (emitMaps): set allocation required for bit area
4264         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
4265           or bit either,
4266           (geniCodeCritical): store original interrupt state in an iTemp bit
4267           var unless stack-auto
4268         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
4269         * src/SDCCmain.c (setIncludePath): added include/target to search path
4270         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
4271         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
4272           prototype,
4273           (processFuncArgs): put bit vars in bit area
4274         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
4275           unsaveRBank): fixed xstack,
4276           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
4277           (genFunction, genEndFunction): fixed xstack,
4278           (genAssign): optimization don't walk backwards through mem
4279         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
4280         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
4281         * support/regression/Makefile: also make library (for stack-auto) when
4282           making "all" and added "test-mcs51-xstack-auto"
4283         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
4284         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
4285         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
4286         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
4287         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
4288           make-library by MAKE_LIBRARY
4289         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
4290           regression tests for xstack
4291         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
4292         * support/regression/tests/critical.c: test for critical on mcs51
4293
4294 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4295
4296         * support/regression/ports/ucz80/spec.mk: use include and lib files from
4297           built version of sdcc instead of installed version
4298
4299 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
4300
4301         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
4302         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
4303           vprintf.c now
4304         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
4305         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
4306           WARNING: remove device/lib/build/z80/printf.o by hand when
4307           updating from previous build!
4308         * device/lib/z80/printf.c: updated comment
4309         * support/regression/tests/bug1057979.c: test all ports now
4310         * support/regression/tests/bug1065458.c: file added
4311
4312 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4313
4314         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
4315           *_start and *_end symbols for static functions
4316
4317 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
4318
4319         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
4320           and search crt0.o in all library paths,
4321           (setIncludePath): proper handling of --nostdinc,
4322           (setLibPath): proper handling of --nostdlib
4323         * support/regression/Makefile,
4324         * support/regression/ports/ds390/spec.mk,
4325         * support/regression/ports/gbz80/spec.mk,
4326         * support/regression/ports/hc08/spec.mk,
4327         * support/regression/ports/mcs51/spec.mk,
4328         * support/regression/ports/mcs51-large/spec.mk,
4329         * support/regression/ports/mcs51-stack-auto/spec.mk,
4330         * support/regression/ports/z80/spec.mk: use include and lib files from
4331           built version of sdcc instead of installed version
4332         * doc/sdccman.lyx: fixed typo in --nostdinc
4333
4334 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
4335
4336         * src/pic/pcode.c,
4337         * src/pic/device.c,
4338         * src/pic/ralloc.c,
4339         * src/pic/gen.c : added support to generate code for struct bit fields.
4340
4341 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
4342
4343         * as/xa51/xa_version.h,
4344         * device/include/errno.h,
4345         * device/include/regc515c.h,
4346         * device/lib/_itoa.c,
4347         * device/lib/_ltoa.c,
4348         * device/lib/ser_ir_cts_rts.c,
4349         * sim/ucsim/xa.src/glob.cc,
4350         * sim/ucsim/xa.src/inst_gen.cc,
4351         * sim/ucsim/xa.src/xa_bit.cc,
4352         * sim/ucsim/xa.src/xa_sfr.cc,
4353         * sim/ucsim/z80.src/inst_dd.cc,
4354         * sim/ucsim/z80.src/inst_fdcb.cc,
4355         * support/scripts/keil2sdcc.pl,
4356         * src/pic16/pic16.dsp,
4357         * src/pic16/pic16a.dsp: corrected cvs line endings
4358         * device/lib/printf_large.c: fixed bug 1057979
4359         * src/pic16/gen.c: fixed non-C standard code
4360         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
4361         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
4362         * support/regression/ports/mcs51/support.c: reload T1 asap
4363         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
4364           pdata use and clear idata startup behaviour
4365         * support/regression/tests/bug1057979.c: added
4366
4367 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
4368
4369         * device/examples/ds390/ow390/ad26.h,
4370         * device/examples/ds390/ow390/cnt1d.h,
4371         * device/examples/ds390/ow390/crcutil.c,
4372         * device/examples/ds390/ow390/ownet.h,
4373         * device/examples/ds390/ow390/owsesu.c,
4374         * device/examples/ds390/ow390/swt12.h,
4375         * device/examples/ds390/ow390/swtoper.c,
4376         * device/examples/ds390/ow390/temp10.h,
4377         * device/examples/ds390/ow390/thermodl.c,
4378         * device/examples/ds390/tinitalk/tinitalk.dsp,
4379         * device/examples/ds390/tinitalk/tinitalk.dsw,
4380         * device/examples/mcs51/clock/hw.h,
4381         * device/examples/mcs51/simple2/go.bat,
4382         * device/examples/serialcomm/windows/serial.h,
4383         * device/examples/xa51/dummy.c,
4384         * device/examples/xa51/hello.c,
4385         * device/include/80c51xa.h,
4386         * device/include/at89x051.h: corrected cvs line endings
4387
4388 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
4389
4390         * src/pic16/main.c (options): added command line --gstack, to trace
4391         stack over/under flows,
4392         * added pragma 'wparam' to allow passing first byte of function
4393         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
4394         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
4395         call to __gstack_test function and sets up the symbol as extern,
4396         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
4397         * popaop): added call to pic16_testStackOverflow,
4398         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
4399         wparamList list,
4400         * (genCall, genPcall): now all parameters are passed via stack
4401         except in functions that are pass to wparam pragma in which WREG is
4402         used too,
4403         * (genPcall): REENTRANT flag is checked to see if variable prototype
4404         contains reentrant keyword, don't call a non-reentrant function, via
4405         a reentrant function pointer or vice versa, functions are never
4406         passed via WREG,
4407         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
4408         D.Winkler,
4409         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
4410         SIGSEGV when accessing a NULL register stucture,
4411         * (pic16_printGPointerType): modified to handle UPPER modifier for
4412         function initializers, changed prototype of function to simpler one,
4413         * (pic16_printIvalFuncPtr): check to see if function is already
4414         added in externs list,
4415         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
4416         optimized a move from W to SFR with a move to the same register
4417         later after a CALL,
4418         * device/lib/pic16/debug: NEW directory, contains debug features
4419         which are enabled when linking with libdebug.lib, currently command
4420         line option --gstack enables stack pointer tracing for over/under
4421         flow, corresponding sources are in debug/gstack
4422
4423 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
4424
4425         * doc/sdccman.lyx: updated SDCC version,
4426         * (PIC16 port): update list of command line options,
4427         * src/pic16/device.h (structure pic16_options_t): added field gstack
4428         to enable stack overflow tracing on push/pops,
4429         * src/pic16/device.c (statistics structure): added statistics
4430         structure,
4431         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
4432         pic16_dump_int_registers): increase statistics counters for each
4433         * variable which is encountered
4434         * (pic16_dump_usection): emit each .udata variable to its own udata
4435         section,
4436         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
4437         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
4438         parameters via stack, otherwise use old scheme,
4439         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
4440         assembler output file,
4441         * src/pic16/main.c: added command line options --gstack to enable
4442         push/pop tracing for stack overflow,
4443         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
4444         instructions): added size of each instruction,
4445         * (pic16_countInstruction): estimate size of instructions in
4446         the_pFile list, inline assembly blocks are not counted,
4447         * (pic16_FixRegisterBanking): trace previous register usage, when
4448         banksel optimizations is greater than 0, don't emit a redudant
4449         banksel directive,
4450
4451 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
4452
4453         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
4454         * src/pic16/ralloc.c : applied same fix for pic16.
4455         * src/pic/gen.c : tidied it up a little.
4456
4457 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4458
4459         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
4460         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
4461
4462 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4463
4464         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
4465
4466 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4467
4468         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
4469         non-reentrant function __modsint in the interrupt function (thus
4470         corrupting math operations during serial I/O)
4471         * device/lib/ser_ir.c: as above, changed buffersize
4472         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
4473         256.c,d for zeroing
4474         * doc/Makefile: added option -t for rsync
4475
4476 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4477
4478         * src/SDCCast.h (struct ast),
4479         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
4480
4481 2004-10-20 Borut Razem <borut.razem AT siol.net>
4482
4483         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
4484         package
4485
4486 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
4487
4488         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
4489         makefile targets,
4490         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
4491         support functions to replace long sequences of MOVFF's from access
4492         bank registers to stack and vice versa,
4493         * src/pic16/device.h: added new field opt_flags, where optimization
4494         flags can be set to enable certain features,
4495         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
4496         * pBlock, (genFunction, genEndFunction): surroung loop for
4497         saving/loading used registers in stack with PC_INFO pCodes,
4498         INF_LREGS. Code in between can then be optimized by pCode optimizer
4499         to support function calls,
4500         * (genDataPointerSet): fixed bug which loaded float fields in
4501         structures with corrupt data,
4502         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
4503         in a standard way debug info on stderr. Feature used for developing
4504         and debugging only,
4505         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
4506         obsolete chunks of code,
4507         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
4508         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
4509         * pic16/src/pcode.c (pic16_newpCodeInfo,
4510         * (pic16_newpCodeOpLocalRegs),
4511         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
4512         feature,
4513         * (pic16_pCodeConstString): printing of the initial value of a
4514         symbol as a comment is inhibited since parsing was already done by
4515         copyStr and output is corrupt,
4516         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
4517
4518 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4519
4520         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
4521
4522 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
4523
4524         * as/mcs51/lkarea.c: removed old K&R style,
4525           (lnksect): changed check on boundary error,
4526           (lnksect2): changed check on boundary error,
4527           (lnksect2): extend XSTK to end of page if size = 1
4528         * as/mcs51/lkmain.c: removed old K&R style,
4529           (Areas51): create l_IRAM symbol
4530         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
4531         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
4532           model-mcs51-stack-auto, added model-mcs51-xstack-auto
4533         * device/lib/_mullong.c: added version to be compiled with xstack
4534         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
4535         * device/lib/mcs51/crtxclear.asm: clear pdata as well
4536         * device/lib/mcs51/crtxstack.asm: fixed comment
4537         * src/SDCCglue.c: maxInterrupts defaults to 0,
4538           (emitMaps): added pdata,
4539           (createInterruptVect): (re)moved default,
4540           (glue): added pdata,
4541           (glue): moved __start__xstack to XSTK with default size 1
4542         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
4543           and options.float_rent when options.stackAuto is set,
4544           (linkEdit): only write XDATA_NAME if provided on command line
4545         * src/SDCCmem.h,
4546         * src/SDCCmem.c: added pdata
4547         * src/port.h: added pdata_name to PORT
4548         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
4549           (saveRegisters, unsaveRegisters): removed usage of B,
4550           (genMinus): fixed accumulator clash,
4551           (genJumpTab): added comment, this needs another look
4552         * src/mcs51/gen.c: added check for "B in use" paranoia,
4553           added pushB() and popB()
4554         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
4555           chance
4556         * src/avr/main.c,
4557         * src/ds390/main.c,
4558         * src/hc08/main.c,
4559         * src/mcs51/main.c,
4560         * src/pic/main.c,
4561         * src/pic16/main.c,
4562         * src/xa51/main.c,
4563         * src/z80/main.c: (reset_regparms) made void parameter explicit and
4564           added PSEG (PAG,XDATA) or NULL to port specifier
4565         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
4566         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
4567           (_mcs51_genInitStartup): removed __start__xstack equ,
4568           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
4569         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
4570         * src/z80/gen.c (_rleAppend): fixed warnings
4571         * support/regression/tests/zeropad.c: added pdata test
4572         * .version: bumped to 2.4.6
4573
4574 2004-10-17 Borut Razem <borut.razem AT siol.net>
4575
4576         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
4577         as a part of nightly build
4578
4579 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
4580
4581         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
4582         WREG holds the first byte function parameters,
4583         * (aopForSym): take special case for symbols which are in FARSPACE
4584         but in CODESPACE too,
4585         * (assignResultValue): modified to take into account _G.useWreg,
4586         * (genCall): don't use wreg for parameter passing when function is
4587         declared as reentrant, too, added optimization INCF to stack
4588         pointer when stack parameter count is 1,
4589         * (genFunction, genEndFunction): refurnished and fixed to not using
4590         wreg for passing parameters when function has varargs or is
4591         reentrant, fixed bug with symbol name compare for generating
4592         functions in absolute address,
4593         * (pic16_storeForReturn): refurnished,
4594         * (genCmp): began writing a new version of the function, not ready
4595         yet, therefore it is disabled,
4596         * (genAssign): do not read code memory when assigning a function to
4597         a pointer function,
4598         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
4599         array of characters, not pointer,
4600         * (pic16initialComments): in debug mode emit an .ident directive for
4601         the assembler,
4602         * (_process_pragma): emit a new warning type (internal to pic16)
4603         when setting stack to default length, emit a similar warning when
4604         placing a function at absolute address and address is not word aligned
4605         * (_pic16_parseOptions): added 'return TRUE' statement,
4606         * (_pic16_linkEdit): if compiling a source, then add the source's
4607         file object, first in the list of objects to link,
4608
4609 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
4610
4611         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
4612         * src/pic/main.c : removed VC warning.
4613         * src/pic/gen.c : changed comment.
4614
4615 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
4616
4617         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
4618         reference to a deprecated symbol _GPTRREG was causing failure to
4619         link. Thanks G. M. Gallant for the info.
4620
4621 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
4622
4623         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
4624         comments for Bugs item #954788.
4625
4626 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
4627
4628         * src/pic16/device.c (pic16_dump_gsection,
4629         * pic16_groupRegistersInSection): handle symbols declared to be in
4630         access bank differently,
4631         * src/pic16/gen.c (struct _G): added field resDirect,
4632         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
4633         send values read from stack directly to result and don't allocate
4634         temporary values,
4635         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
4636         same registers,
4637         * (pic16_sameRegsOfs): NEW,
4638         * (freeAsmop): if _G.resDirect is set then do not mark registers as
4639         free because they were not allocated from temporary pool,
4640         * pic16_popRegFromString): workaround to fix a problem with
4641         allocating variables twice or never,
4642         * (genGenPointerGet): using PRODL instead of FSR0H,
4643         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
4644         instead of FSR0H,
4645         * (genAssign): take advantage of the _G.resDirect flag,
4646         * (genCast): around line 11844, use mov2f instead of directly
4647         MOVFF'ing between operands to account for literal values,
4648         * src/pic16/genutils.c: some new debug functions for gpsim have been
4649         added,
4650         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
4651         float with integer part only,
4652         * src/pic16/main.c (_process_pragma): handle pragma udata access to
4653         place variables in access bank
4654         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
4655         updated sources to reflect recent changes in gen.c
4656
4657 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
4658
4659         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
4660         sources that searched for headers in installation path, now the
4661         device/include/pic16 is used,
4662         * src/pic16/glue.c (pic16glue),
4663         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
4664         .line directives if not in debug mode, this suppresses assembler's
4665         warnings for ignored directives
4666
4667 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
4668
4669         * src/port.h: made reset_regparms prototype void parameter explicit.
4670         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
4671         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
4672         * doc/sdccman.lyx: documented warning disabling and how to use
4673           printf_large to make it print floats.
4674         * device/include/stdbool.h: NEW
4675         * device/lib/_atof.c,
4676         * device/lib/_divuint.c,
4677         * device/lib/_divulong.c,
4678         * device/lib/expf.c,
4679         * device/lib/printf_large.c,
4680         * device/lib/sincosf.c,
4681         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
4682         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
4683           a completely reentrant lib.
4684
4685 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
4686
4687         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
4688         * device/include/pic16/stdio.h: fixed bug with colon
4689
4690 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
4691
4692         * device/include/pic16/stdio.h,
4693         * device/include/pic16/stdlib.h,
4694         * device/include/pic16/math.h: NEW
4695         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
4696         declared as _naked to reduce overhead
4697         * device/lib/Makefile.in (target port-specific-objects-pic16):
4698         changed * to *.* so to ignore the CVS directory,
4699         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
4700         stacked variables back in stack,
4701         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
4702         corruption
4703
4704 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
4705
4706         * .version: bumped version number to 2.4.5
4707         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
4708         * support/Util/SDCCerr.c (messages structure): added entry for
4709         W_POSSBUG2
4710
4711         Large cumulative patch for pic16 port and libraries.
4712         * device/include/pic16/sdcc-lib.h,
4713         * device/include/pic16/stdarg.h,
4714         * device/include/asm/pic16/features.h,
4715         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
4716         * device/include/pic16/float.h: changes reentrant keyword with
4717         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
4718         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
4719         updated target build-libraries to include objects from gptr,
4720         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
4721         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
4722         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
4723         all function headings,
4724         * src/SDCCmain.c: added global parameter userIncDirsSet,
4725         * (parseCmdLine): when option -I is encountered add directory to
4726         userIncDirsSet too,
4727         * src/version.awk: added space between control and long,
4728         * src/pic16/NOTES: added some notes for the port,
4729         * src/pic16/gen.c: added prototype for mov2fp function,
4730         * (fReturnpic16[]): properly named return value registers,
4731         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
4732         * (aopForSym): added code to handle symbols with onStack flag set,
4733         symbols onStack are allocated PTRSIZE bytes,
4734         * (aopFreeAsmop): handles special case where asmops are stack objects,
4735         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
4736         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
4737         added argument lock to trace flaws in allocating temporary registers
4738         when developing port,
4739         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
4740         * (pic16_popRegFromString): reenabled allocating a direct register
4741         from string,
4742         * (assignResultValue): various beautifications,
4743         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
4744         referenced function argument,
4745         * (genIpush): reenabled to allow stacked arguments, handles only
4746         ic->parmPush iCodes,
4747         * (genCall, genPcall): major changes to allow for variable argument
4748         functions, fixed a bug with falsely restoring stack pointer after
4749         returning from call,
4750         * (genFunction): pending code for critical function,
4751         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
4752         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
4753         * (genNearPointerGet): fixed bug with indirect reading, was always
4754         reading from INDF0
4755         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
4756         pointers,
4757         * (genAddrOf): rewrote code to take address of a stacked function parameter
4758         * (genCast): fixed casting to generic pointer type,
4759         * src/pic16/gen.h: added AOP_STA,
4760         * (struct asmop): added field stk,
4761         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
4762         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
4763         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
4764         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
4765         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
4766         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
4767         generic pointers,
4768         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
4769         and library paths,
4770         * (pic16_port structure): generic pointer size is set to 3,
4771         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
4772         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
4773         compiler warning,
4774         * src/pic16/ralloc.c (allocReg): prevent allocating register when
4775         operand is an iTemp,
4776
4777 2004-09-24 Martin Helmling <mh AT octo-soft.de>
4778
4779         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
4780         * debugger/mcs51/simi.c: addapt new syntax of s51
4781
4782 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
4783
4784         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
4785         * src/pic16/pcode.c: commented out some calls to free() in order to
4786         fix bug #989576,
4787
4788 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4789
4790         * src/SDCCicode.h,
4791         * src/SDCCicode.c (isiCodeInFunctionCall),
4792         * src/avr/ralloc.c (selectSpil),
4793         * src/pic/ralloc.c (selectSpil),
4794         * src/pic16/ralloc.c (selectSpil),
4795         * src/ds390/ralloc.c (selectSpil),
4796         * src/hc08/ralloc.c (selectSpil),
4797         * src/xa51/ralloc.c (selectSpil),
4798         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
4799         stack in the middle of a function call sequence (fixes bug #1020268)
4800         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
4801         costs associated with the minimum switch case.
4802
4803 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4804
4805         * src/SDCC.lex: fixed bug #1030549
4806
4807 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4808
4809         * src/SDCCcse.h (struct cseDef),
4810         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
4811         over a function call if the CSE is derived from a symbol whose
4812         address has been taken (fixes bug #1029883)
4813         * support/regression/tests/bug-1029883: a new regression test for
4814         this bug
4815
4816 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4817
4818         * src/hc08/gen.c (emitinline): fixed bug #1029778
4819         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
4820         to a cast object is no longer a syntax error ("fixes" bug #1030006,
4821         and starts toward RFE #905167)
4822
4823 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
4824
4825         * src/pic16/gen.c (mov2f): New function to move an operand to
4826         another without considering if it is a literal or a register,
4827         * (pic16_sameRegs): don't check if they are both AOP_REG,
4828         * (AccRsh): removed andmask=0 lines,
4829         * (genLeftShift): duplicated to be improved in future versions,
4830         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
4831         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
4832         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
4833         * (pic16initMnemonics): added initialization for POC_INFSNZW,
4834         * (insertBankSwitch): fixed inserting banksel directives algorithm
4835         for instructions that follow a skip instruction, this fixes a report
4836         for broken subtraction code generation,
4837         * src/pic16/ralloc.c (deassignLRs): do not free register if current
4838         iCode is a left op, just in case result and right share the same
4839         registers
4840
4841 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4842
4843         * src/hc08/main.c,
4844         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
4845         preservation of HX
4846         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
4847         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
4848         on 2004-09-12; it was buggy
4849
4850 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
4851
4852         * src/SDCCsymt.h: removed RESULT_CHECK
4853         * src/SDCCast.c,
4854         * src/SDCCglue.c,
4855         * src/SDCCval.c,
4856         * src/pic/glue.c,
4857         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
4858
4859 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
4860
4861         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
4862         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
4863         configuration values no more rejected by compiler, they are assigned
4864         to configuration registers with a warning message instead,
4865         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
4866         the for-loop so last conf register is emitted too,
4867         * (_pic16_initPaths): link library libsdcc.lib by default,
4868         * (_hasNativeMulFor): modified test for multiplication according to
4869         Raphael Neider's remarks. Integer multiplication is also done with
4870         support functions,
4871         * device/include/pic16/pic18fregs.h: corrected type error in while
4872         testing and including 18f6720 header file
4873
4874 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
4875
4876         * src/pic16/device.h (pic16_options): removed field use_crt,
4877         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
4878         until an optimization to handle single bits is added,
4879         * (pic16_loadFSR0): moved before genUnpackBits,
4880         * (genAnd): some white lines removed,
4881         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
4882         leave_reset flags in pic16_options when using crt modules,
4883
4884 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
4885
4886         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
4887           for bugs 898889 & 979599. Also used some safer print instructions.
4888
4889 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
4890
4891         * src/pic16/device.h (pic16_options_t): added field use_crt,
4892         crt_name, no_crt,
4893         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
4894         catch a probable future bug,
4895         * src/pic16/gen.c: aopIdx function commented out,
4896         * (genAssign): commented out old code which used aopIdx,
4897         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
4898         code, added if conditionals to take into account the --use-crt
4899         command line options,
4900         * src/pic16/main.c (pic16_optionsTable): added new command line
4901         options, --use-crt= and --no-crt,
4902         * (_pic16_linkEdit): now the proper crt object is added in the
4903         linker command line except than when --no-crt is specified,
4904         * src/pic16/pcode.c,
4905         * src/pic16/pcode.h: added some structures and functions for a new
4906         optimization scheme to compansate for instruction overhead between
4907         same iCodes, this scheme is currently under development and is not
4908         working in any way,
4909         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
4910         to && operator,
4911         * device/lib/pic16/startup/crt0i.c,
4912         * device/lib/pic16/startup/crt0iz.c: added global char variable
4913         __uflags to force the generation of an idata section
4914
4915 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
4916
4917         * doc/Makefile,
4918         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
4919         * doc/sdccman.lyx: updated sdcc version to 2.4.4
4920
4921 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4922
4923         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
4924         Frieder) and clarified the default code optimization mode
4925
4926 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4927
4928         * src/SDCC.lex (doPragma, process_pragma),
4929         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
4930         "opt_code_size", and "opt_code_balanced"
4931         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
4932         regrouped options by category, added support for category headers
4933         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
4934         and "--opt-code-size"
4935         * doc/sdccman.lyx: documented these new options and pragmas
4936         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
4937         preference into account
4938
4939 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4940
4941         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
4942           geniCodePreDec): Fixed bug 904237 by generating a warning
4943         * src/SDCCerr.h,
4944         * src/SDCCerr.c: added warning W_SIZEOF_VOID
4945
4946 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
4947
4948         * src/pic/device.c : When no max ram set validate full memory range.
4949         * src/pic/pcode.c,
4950         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
4951
4952 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4953
4954         * device/lib/_gptrget.c,
4955         * device/lib/_gptrput.c: updated comment
4956         * device/lib/calloc.c,
4957         * device/lib/free.c,
4958         * device/lib/malloc.c,
4959         * device/lib/realloc.c: added LGPL, made them reentrant-safe
4960         * src/SDCCcse.c (cseBBlock),
4961         * src/SDCCicode.c (printOperand, geniCodeArray),
4962         * src/SDCCicode.h (struct operand): fixed bug 868103
4963         * support/regression/tests/bug-868103.c: added
4964         * src/SDCCast.c (searchLitOp),
4965         * src/SDCCcse.h (struct cseDef),
4966         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
4967         * src/SDCCicode.h (struct operand),
4968         * src/SDCCsymt.h (struct sym_link),
4969         * src/avr/gen.c (hasInc),
4970         * src/ds390/gen.c (hasInc),
4971         * src/hc08/gen.c (genPlusIncr, hasInc),
4972         * src/mcs51/gen.c (hasInc),
4973         * src/pic16/glue.c (pic16_printIvalChar),
4974         * src/pic16/ralloc.c (regWithIdx),
4975         * src/xa51/gen.c (hasInc) : removed warnings
4976         * src/SDCCast.c (createBlock): added comment ???
4977         * src/hc08/ralloc.c: updated comments
4978
4979 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4980
4981         * doc/sdccman.lyx: updated section on switch statements, added
4982         section about semaphore locking
4983         * doc/Makefile: added option -info for latex2html
4984         * device/lib/_gptrget.c,
4985         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
4986
4987 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4988
4989         * src/pic/device.h,
4990         * src/pic/device.c,
4991         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
4992          maxram is less than 0x100.
4993
4994 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4995
4996         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
4997
4998 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4999
5000         * src/port.h,
5001         * src/mcs51/main.c,
5002         * src/ds390/main.c,
5003         * src/z80/main.c,
5004         * src/hc08/main.c,
5005         * src/pic/main.c,
5006         * src/pic16/main.c,
5007         * src/avr/main.c,
5008         * src/xa51/main.c
5009         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
5010         a jump table is the best form for a switch statement, including
5011         automatic insertion of missing cases to make the case range
5012         continuous. Developed in collaboration with Frieder Ferlemann.
5013
5014 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5015
5016         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
5017         accumulator result if it needs sign extension
5018
5019 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
5020
5021         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
5022
5023 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
5024
5025         * device/lib/gbz80/printf.c,
5026         * device/lib/z80/printf.c: removed define for NULL
5027
5028 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
5029
5030         * as/xa51/xa_link.c,
5031         * device/examples/ds390/ow390/ad26.c,
5032         * device/examples/ds390/ow390/cnt1d.c,
5033         * device/examples/ds390/ow390/counter.c,
5034         * device/examples/ds390/ow390/ds2480.h,
5035         * device/examples/ds390/ow390/ds2480ut.c,
5036         * device/examples/ds390/ow390/findtype.c,
5037         * device/examples/ds390/ow390/gethumd.c,
5038         * device/examples/ds390/ow390/owllu.c,
5039         * device/examples/ds390/ow390/ownetu.c,
5040         * device/examples/ds390/ow390/swt12.c,
5041         * device/examples/ds390/ow390/swtloop.c,
5042         * device/examples/ds390/ow390/temp.c,
5043         * device/examples/ds390/ow390/temp10.c,
5044         * device/examples/ds390/ow390/thermo21.c,
5045         * device/examples/ds390/ow390/tinilnk.c,
5046         * device/examples/ds390/ow390/tstfind.c,
5047         * device/examples/serialcomm/windows/serial.cpp,
5048         * device/examples/serialcomm/windows/test_serialcomm.cpp,
5049         * device/include/reg51.h: fixed line endings for cvs
5050
5051 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5052
5053         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
5054         packRegsForAccUse, packRegisters): new accumulator register
5055         packing algorithm
5056         * support/regression/ports/hc08/support.c (_putchar): suppress
5057         warning of unused variable
5058         * src/SDCCicode.c: added SWAP entry to codeTable
5059
5060 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
5061
5062         * device/lib/sprintf.c: forgot to add this file before previous commit
5063
5064 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
5065
5066         * src/pic16/gen.c (genPackBits): added operand right in function
5067         parameters, load result directly if p_type is POINTER (that is
5068         called by genNearPointerSet)
5069         * (genUnPackBits): added operand left in function parameters,
5070         * (genNearPointerGet, genNearPointerSet): prevent the loading of
5071         FSR0 if accessing bitfields,
5072
5073 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
5074
5075         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
5076           _print_format; updated printf, sprintf, vsprintf
5077         * device/include/asm/default/features.h: corrected comment/define
5078         * device/lib/Makefile.in: added sprintf.c
5079         * device/lib/libsdcc.lib: added sprintf module
5080         * device/lib/printf_large.c,
5081         * device/lib/vprintf.c,
5082         * device/lib/sprintf.c: totally refactored printf_large and vprintf
5083           into these 3 files
5084         * support/regression/Makefile: changed ALL_PORTS into a usefull default
5085         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
5086         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
5087           hc08 test
5088         * support/regression/tests/zeropad.c: define idata as data for hc08
5089
5090 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5091
5092         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
5093         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
5094         labels are referenced at least once (even if a reference is not found)
5095         * src/hc08/gen.c (emitcode): set isComment flag for comments
5096         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
5097         loads), rules 6a..6b (optimize jumps to return)
5098
5099 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5100
5101         * device/lib/acosf.c (acosf),
5102         * device/lib/asinf.c (asinf),
5103         * device/lib/atanf.c (atanf),
5104         * device/lib/ceilf.c (ceilf),
5105         * device/lib/cosf.c (cosf),
5106         * device/lib/coshf.c (coshf),
5107         * device/lib/cotf.c (cotf),
5108         * device/lib/fabsf.c (fabsf),
5109         * device/lib/floorf.c (floorf),
5110         * device/lib/log10f.c (log10f),
5111         * device/lib/logf.c (logf),
5112         * device/lib/sinf.c (sinf),
5113         * device/lib/sinhf.c (sinhf),
5114         * device/lib/sqrtf.c (sqrtf),
5115         * device/lib/tanf.c (tanf),
5116         * device/lib/tanhf.c (tanhf),
5117         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
5118         replaced all instances of "reentrant" in the library functions
5119         defined in math.h with this macro.
5120         * support/regression/tests/float_trans.c: reenabled test for hc08
5121
5122 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
5123
5124         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
5125         erroneously deleted
5126
5127 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5128
5129         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
5130         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
5131         multi-byte volatile operands are used
5132         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
5133         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
5134         initialization to area GSINIT0 so that it would always precede
5135         any static initializers in GSINIT
5136         * support/regression/tests/zeropad.c: fixed idata define for hc08
5137         * support/regression/tests/bug-927659.c,
5138         * support/regression/tests/float_trans.c: disabled tests for hc08
5139         pending missing library routines
5140         * .version: increased version number to 2.4.4 - hc08 port now passes
5141         regression tests
5142
5143
5144 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
5145
5146         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
5147         * Makefile.common.in,
5148         * as/Makefile,
5149         * as/hc08/Makefile.in,
5150         * as/mcs51/Makefile.in,
5151         * as/z80/Makefile.in,
5152         * debugger/mcs51/Makefile.in,
5153         * device/include/Makefile.in,
5154         * device/lib/Makefile.in,
5155         * doc/Makefile,
5156         * link/Makefile,
5157         * link/z80/Makefile.in,
5158         * packihx/Makefile.in,
5159         * sim/ucsim/main_in.mk,
5160         * sim/ucsim/avr.src/Makefile.in,
5161         * sim/ucsim/doc/Makefile.in,
5162         * sim/ucsim/gui.src/serio.src/Makefile.in,
5163         * sim/ucsim/hc08.src/Makefile.in,
5164         * sim/ucsim/s51.src/Makefile.in,
5165         * sim/ucsim/xa.src/Makefile.in,
5166         * sim/ucsim/z80.src/Makefile.in,
5167         * src/Makefile.in,
5168         * support/cpp2/Makefile.in,
5169         * support/librarian/Makefile,
5170         * support/makebin/Makefile: added DESTDIR to the install path proposed
5171         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
5172         * doc/sdccman.lyx: added DESTDIR documentation
5173
5174 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
5175
5176         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
5177         instruction for interrupt handlers, use fast returns when returning
5178         from high priority interrupts
5179
5180 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5181
5182         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
5183         code generation
5184         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
5185         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
5186         bugs, ported much of Bernhard's code from mcs51
5187         * src/mcs51/gen.c (genSend),
5188         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
5189         than one when calling a reentrant function
5190         * device/lib/_mullong.c: defined an alternate struct layout for big
5191         endian ports (hc08)
5192
5193 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5194
5195         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
5196         test
5197
5198 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5199
5200         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
5201         are sane and complete before asking the port its prefered parameter
5202         passing method (fixes bug #1017633)
5203         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
5204         and _ret3
5205
5206 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5207
5208         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
5209         problem in bitfields >= 8 bits.
5210
5211 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5212
5213         * src/SDCCsymt.c: undid changes that were not meant to be committed
5214
5215 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5216
5217         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
5218
5219 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5220
5221         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
5222           copied and wrong bit got inverted
5223
5224 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5225
5226         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
5227         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
5228         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
5229         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
5230         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
5231         assignments to bitfields at known addresses
5232         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
5233         reads from bitfields at known addresses
5234         * src/hc08/ralloc.c (packRegisters),
5235         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
5236         genhc08Code): optimize pointer get values used as conditionals
5237         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
5238         and branch
5239
5240 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5241
5242         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
5243         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
5244         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
5245         as conditionals
5246
5247 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5248
5249         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
5250
5251 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5252
5253         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
5254         related problems
5255
5256 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
5257
5258         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
5259
5260 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5261
5262         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
5263         mcs51 port
5264
5265 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
5266
5267         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
5268
5269 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5270
5271         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
5272         cases use more compact code.
5273
5274 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
5275
5276         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
5277
5278 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5279
5280         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
5281
5282 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5283
5284         * src/SDCCsymt.h,
5285         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
5286         parameter of changePointer() from symbol* to sym_link*
5287         * src/SDCCast.c (decorateType): call changePointer() for CAST op
5288         * src/SDCCsymt.c (compareType): void* type is castable to other
5289         pointers, but not necesarily an exact match.
5290         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
5291         is no longer blindly treated as an exact match.
5292         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
5293
5294 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
5295
5296         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
5297
5298 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
5299
5300         * src/pic/gen.c,
5301         * src/pic/pcode.c,
5302         * src/pic/ralloc.h,
5303         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
5304
5305 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
5306
5307         * src/pic/device.c,
5308         * src/pic/device.h,
5309         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
5310
5311 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5312
5313         * src/mcs51/gen.c (emitcode): fixed bug #992819
5314
5315 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
5316
5317         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
5318           there's no need to make it worse
5319
5320 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5321
5322         * src/mcs51/ralloc.c (deassignLR),
5323         * src/ds390/ralloc.c (deassignLR),
5324         * src/hc08/ralloc.c (deassignLR),
5325         * src/z80/ralloc.c (deassignLR),
5326         * src/pic/ralloc.c (deassignLR),
5327         * src/pic16/ralloc.c (deassignLR),
5328         * src/avr/ralloc.c (deassignLR),
5329         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
5330         rlivePoint): fixed another part of bug #971834
5331
5332 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5333
5334         * src/z80/main.c: enabled "critical" keyword
5335         * src/z80/mappings.i,
5336         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
5337         functions (fixes bug #979646)
5338         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
5339
5340 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5341
5342         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
5343           such as c:\mydir.
5344
5345 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
5346
5347         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
5348           doesn't disable too much optimizations
5349
5350 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5351
5352         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
5353
5354 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
5355
5356         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
5357
5358 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5359
5360         * src/pic/gen.c tidied up tabs
5361         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
5362         * src/pic/main.c tidied up tabs
5363         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
5364         * src/pic/pcoderegs.c tidied up tabs
5365         * src/pic/ralloc.c tidied up tabs
5366
5367 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
5368
5369         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
5370         to S_FIXED for pic16 port and when symbol is not in level 0,
5371         allocate for S_REGISTER storage class and pic16 port, too,
5372         * src/pic16/device.h: prototype for checkSym,
5373         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
5374         * (pic16_assignConfigWordValue): test the value and the mask to
5375         validate that the value is suitable for the configuration word,
5376         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
5377         collect extern declared symbols, don't emit symbol twice, check
5378         first if symbol is in publics set first,
5379         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
5380         * added command line '--fstack' which enables an experimental
5381         feature for stack access, too buggy to be used yet...
5382         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
5383         * (pic16_allocDirReg): when register has storage class S_REGISTER
5384         allocate in pic16_dynAccessRegs,
5385         * device/include/pic16/pic18f????.h: modified configuration word
5386         naming convention, words started as CONFIG0H but should be CONFIG1H
5387
5388 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
5389
5390         * device/include/mcs51reg.h: fixed bug 970993
5391
5392 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
5393
5394         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
5395         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
5396         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
5397         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
5398         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
5399         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
5400           error/warning numbers,
5401           added function setWarningDisabled()
5402         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
5403         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
5404           _memcmp.c _memmove.c calloc.c realloc.c free.c
5405         * support/regression/tests/malloc.c: added tests for new functionality
5406         * support/regression/tests/zeropad.c: added tests for truncated initializers
5407           and initialized char arrays starting with '\x0'
5408         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
5409
5410 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
5411
5412         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
5413
5414 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5415
5416         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
5417         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
5418         peephole 177.e. Thanks to anonymous
5419
5420 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
5421
5422         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
5423         function isn't used in the source but referenced as a
5424         variable initializer then declare it as extern in .asm file
5425
5426 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
5427
5428         * .version: increased version number to 2.4.3
5429
5430         Adding version extension according to ChangeLog CVS revision
5431         * src/Makefile.in (target all): added dependency 'version.h'
5432         * (rule version.h): added rule to create version.h from ChangeLog,
5433         * (rule dep): added dependency version.h,
5434         * src/version.awk: AWK script to create version.h
5435         * src/SDCCdwarf2.c (dwWriteModule),
5436         * src/SDCCglue.c (initialComments),
5437         * src/SDCCmain.c (printVersionInfo): modified to write after
5438         version string the version extension number,
5439         * src/SDCCutil.c: included "version.h"
5440         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
5441         number,
5442         * src/SDCCutil.h: added prototype for getBuildNumber
5443
5444         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
5445         includeDirsSet, too,
5446         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
5447         const char [] is found in function prototype...
5448
5449         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
5450         moving to WREG with source is already in WREG,
5451         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
5452         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
5453         * (aopForSym): stack'ed symbols are partially supported, added
5454         if-clause to support symbols in FARSPACE,
5455         * (sameRegs): added test for AOP_ACC to see if registers are same,
5456         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
5457         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
5458         * (pic16_popRegFromString): will not allocate a new register if it
5459         doesn't find one by name, bug may have introduced...
5460         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
5461         * (genIpush): revived to use pic16 port's stack,
5462         * (genAddrOf): added incomplete case for stack'ed operand,
5463         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
5464         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
5465         can handle multibyte operands,
5466         * src/pic16/glue.c (pic16_printIval*): some debug info added,
5467         * (pic16initialComments): added message for MPLAB compatibility
5468         mode enabled,
5469         * src/pic16/main.h: prototype for pic16_mplab_comp,
5470         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
5471         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
5472         * (_pic16_linkEdit): NEW, handles link stage, transferred here
5473         because of increased complexity of procedure,
5474         * (_process_pragma): stack pragma changed to format 'stack pos len',
5475         emit symbol '_stack_end' to conform with gplink,
5476         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
5477         to search for register,
5478         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
5479         PO_GPR_REGISTER,
5480         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
5481         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
5482         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5483         case for PO_GPR_REGISTER,
5484         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
5485         dies, the new era is ahead !...
5486         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
5487         pic16_dynInternalRegs,
5488         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
5489         * (pic16_allocDirReg): minor optimizations and bug fixes,
5490         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
5491
5492         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
5493         load stack and frame pointer with address of 'stack_end' symbol
5494
5495 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
5496
5497         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
5498         without source code but only variable initializers
5499
5500 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
5501
5502         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
5503         external are not declared as extern to reduce overhead while linking
5504
5505 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
5506
5507         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
5508
5509 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
5510
5511         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
5512           Yee Keat for the patch
5513         * src/SDCCast.c (decorateType): fixed bug #979599
5514         * src/ds390/gen.h: removed local fReturnSizeDS390
5515         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
5516         * src/ds390/gen.c (genAnd, genOr, genXor),
5517         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
5518
5519 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
5520
5521         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
5522         add relFilesSet to $3, manipulate $2 to handle linking of object
5523         files without source files in command line,
5524         * device/include/pic16 (all headers): added ID location macros,
5525         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
5526         entries for ID location bytes,
5527         * (pic16_assignIdByteValue): NEW,
5528         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
5529         added field dumpcalltree to pic16_options_t,
5530         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
5531         is used instead of pic16_Gstack_base_addr, check if (ifx) before
5532         emitting rFalseIfx label after check_carry label,
5533         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
5534         pic16_emitDIRegs), NEW
5535         * (pic16glue): dump .calltree file when option --calltree found,
5536         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
5537         * (_pic16_genAssemblerPreamble): emit ID locations after
5538         configuration registers,
5539         * (pic16_linkCmd): modifications of the link command,
5540         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
5541         * (pic16_pCodeInitRegisters): don't init stack registers,
5542         * (pic16_findPrevInstruction): fixed bug,
5543         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
5544         bug with immediate registers,
5545         * (buildCallTree): traces stack push and pop,
5546         * (pct2): dump also stack usage for each function,
5547         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
5548         * (pic16_allocDirReg): various modifications,
5549         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
5550         fixed to 1,
5551
5552 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
5553
5554         * src/pic16/pcode.c: removed buggy double colon
5555
5556 2004-07-01 Borut Razem <borut.razem AT siol.net>
5557
5558         * support/scripts/sdcc.nsi: added include/pic16 to setup
5559
5560 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
5561
5562         * device/lib/Makefile.in: fixed bug in target objects-pic16,
5563         * device/lib/pic16/Makefile: prefixed with dash (-) command under
5564         target 'clean',
5565         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
5566         specific command line arguments. Also added sample lkr script
5567         for placing a variable at a specific memory bank.
5568         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
5569         at a specific memory bank,
5570         * (pic16_dump_isection): fixed bug which caused string literals to
5571         be omitted when dumping idata section,
5572         * (pic16_groupRegistersInSection): added code to handle registers
5573         in specific memory banks,
5574         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
5575         public, all references are renamed too,
5576         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
5577         AOP_DPTR2,
5578         * (pic16_storeForReturn): added case to handle when dest is WREG,
5579         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
5580         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
5581         pic16_rel_udata, check to see if that register is marked as being
5582         a member of a specific memory bank,
5583         * (pic16_printIvalCharPtr): added code to add string literals either
5584         to code or the idata sections,
5585         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
5586         also accept the 'udata' pragma,
5587         * src/pic16/main.h: new structure types sectName and sectSym
5588         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
5589         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
5590         * (pic16_findPrevInstruction): fixed, it returned nothing,
5591         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
5592         instruction combinations,
5593         * (pic16_FixRegisterBanking): heavily reorganised,
5594         * (pic16_AnalyzeBanking): if generating banksel directives is
5595         disabled, then don't call FixRegisterBanking at all,
5596         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
5597         completely removed,
5598         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
5599
5600 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
5601
5602         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
5603         Phuah Yee Keat <yk.phuah AT nestac.com>
5604
5605 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5606
5607         * src/pic16/glue.c (pic16createInterruptVect): function now emits
5608         correctly the IVT even if it is relocated to some other location
5609
5610 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5611
5612         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
5613         * device/include/pic16/pic18f2220.h: NEW,
5614         * device/lib/pic16/libdev/pic18f2220.c: NEW,
5615         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
5616         * src/pic16/device.c (struct Pics16): added info for 18f2220,
5617         * src/pic16/device.h (struct pic16_options): added ivt_loc and
5618         nodefaultlibs, ivt_loc is the location of the interrupt vector
5619         table, and nodefaultlibs signs that default libraries should not be
5620         linked in link stage,
5621         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
5622         according to --ivt-loc argument,
5623         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
5624         when pragma stack is found,
5625
5626 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5627
5628         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
5629         256 (range check), 257 (do while), 258.a-f (bit banging
5630         f.e. on 3-wire SPI bus)
5631
5632 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5633
5634         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
5635         variables used exclusively within a loop
5636
5637 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
5638
5639         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
5640
5641 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5642
5643         * src/SDCClrange.c (computeClash): fixed bug #971834
5644
5645 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5646
5647         * src/mcs51/gen.c (genCmp): fixed bug #975903
5648         * src/hc08/gen.c (operandsEqu),
5649         * src/ds390/gen.c (operandsEqu),
5650         * src/z80/gen.c (operandsEqu),
5651         * src/pic/gen.c (operandsEqu),
5652         * src/pic16/gen.c (operandsEqu),
5653         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
5654         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
5655
5656 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5657
5658         * src/SDCCcse.c (cseBBlock): fixed bug #966963
5659
5660 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
5661
5662         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
5663         default case in switch statement,
5664         * glue.c (pic16_initPointer): expr is initialised via decoarteType
5665         to eliminate problem with initialisation of pointers, but problem
5666         still exists,
5667         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
5668         * (emitStaticSegment): removed various lines emitting debug info,
5669         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
5670         added processor registers for utilizing EEPROM,
5671         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
5672         configurable and set 8
5673
5674 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
5675
5676         * .version: increased version number to 2.4.2,
5677
5678         Cumulative patch for pic16 port
5679         * src/pic16/device.c: changed scheme to dump initial values for
5680         variables in idata segment, all print_idata* functions were removed,
5681         now the pic16_printIval* will be called,
5682         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
5683         * _pic16_printPointerType, pic16_printPointerType,
5684         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
5685         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
5686         NEW, similar to the respective functions in SDCCglue.c,
5687         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
5688         way, emitting hex bytes,
5689         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
5690
5691 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5692
5693         * src/avr/ralloc.c (serialRegAssign),
5694         * src/xa51/ralloc.c (serialRegAssign),
5695         * src/pic/ralloc.c (serialRegAssign),
5696         * src/pic16/ralloc.c (serialRegAssign),
5697         * src/hc08/ralloc.c (serialRegAssign),
5698         * src/z80/ralloc.c (serialRegAssign),
5699         * src/ds390/ralloc.c (serialRegAssign),
5700         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
5701
5702 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5703
5704         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
5705         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
5706
5707 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
5708
5709         Cumulative patch for pic16 port:
5710         * src/pic16/device.h (typedef PIC16_device) modified fields for
5711         defining microcontrollers,
5712         * src/pic16/device.c: added new info for all devices in Pics16 array,
5713         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
5714         to be optimised out by the pCode optimiser,
5715         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
5716         specially, bug reported by G.M. Gallant,
5717         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
5718         as force'd so that cannot be optimised out by pCode optimiser,
5719         * src/pic16/pcode.c,
5720         * src/pic16/pcodepeeph.c,
5721         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
5722         they are disabled by default, but can be enabled explicit with
5723         command argument --denable-peeps, for testing,
5724         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
5725         --pomit-ivt in COMPILE_FLAGS
5726
5727 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5728
5729         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
5730           compilation on MSVC
5731
5732 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5733
5734         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
5735
5736 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5737
5738         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
5739         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
5740
5741 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
5742
5743         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
5744         would only assign 0x300001 register.
5745
5746 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
5747
5748         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
5749         in COMPILE_FLAGS. Thanks to G. Gallant for report.
5750
5751 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5752
5753         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
5754         for ds80c400
5755         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
5756         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
5757         added peephole 254 (left shift), 255 (jump table)
5758
5759 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
5760
5761         * device/lib/Makefile.in: removed comment line with model-pic16,
5762         * (target port-specific-objects-pic16): the libraries and objects
5763         are copied to the build directory form the device/lib/pic16/bin
5764         directory
5765
5766         Cumulative patch concerning pic16 port:
5767         * library directory has been re-organized,
5768         * added support for PIC18F1220,
5769         * added headers and library sources for chips 18f1220,18f6520,
5770         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
5771
5772         * configuration registers setting has changed, now each supported
5773         device has a complete description of the registers it uses,
5774         * all initialisations are moved to idata sections, these section
5775         can be absolute or relocatable,
5776         * fixed initialisation of codespace variables,
5777         * fixed warning about PCLATU and gpsim,
5778         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
5779         * (genAssign): use table reads when assigning from variables in codespace,
5780         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
5781         char/int variables placed in codespace,
5782         * (pic16_emitConfigRegs): NEW, emits a list with configuration
5783         registers set in .asm file, no need for --pomit-config-words anymore,
5784         * (pic16glue): some 8051 legacy segments are commented out
5785         (to be removed completely),
5786         * added support for alternative assembler and linker with --asm=
5787         and --link= command line arguments,
5788         * peepholes are disabled automatically in the port, no need to
5789         specify on command line,
5790         * port supports natively char/int/long multiplication, but converts
5791         all divisions to support functions,
5792         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
5793         to the file set in variable $2,
5794         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
5795         strings in ASCII format and not in hex,
5796         * ralloc.c (serialRegAssign): added a triplet of conditional calls
5797         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
5798         allocate proper register if iCodes aren't temporary,
5799
5800 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
5801
5802         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
5803
5804 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
5805
5806         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
5807         is commented out
5808
5809 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5810
5811         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
5812         computed address is reused
5813         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
5814         multi-byte bitfields
5815
5816 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5817
5818         * src/z80/gen.c: (genArrayInit): must check for pointers too
5819
5820 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5821
5822         * support/regression/tests/zeropad.c: never meant to commit the
5823           nestedstruct test: removed, added check for GCC version
5824
5825 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
5826
5827         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
5828         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
5829         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
5830           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
5831           bugs 928906 and 954082 half-empty initializers
5832         * src/SDCCsymt.h,
5833         * src/SDCCsymt.c (getAllocSize): added for above fix
5834         * src/z80/gen.c (genArrayInit): fixed bug 741044
5835         * support/regression/tests/zeropad.c: added tests
5836
5837 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
5838
5839         * src/pic16/device.c (pic16_dump_section): corrected bug which
5840         caused some symbols of the libraries to be misplaced
5841
5842 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5843
5844         * src/pic16/glue.c,
5845         * src/pic16/ralloc.h,
5846         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
5847         to fix conflict with pic port
5848
5849 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5850
5851         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
5852         externs configuration variables,
5853         * src/pic16/ralloc.h,
5854         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
5855         prototype in header, commented out some debug messages
5856
5857 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
5858
5859         * src/pic16/glue.c,
5860         * src/pic16/main.c,
5861         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
5862         for gpasm COFF object generation. Thanks to D. Hawkins for
5863         his patch info
5864
5865 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5866
5867         * src/ds390/main.c,
5868         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
5869         Brock for spotting this)
5870         * src/ds390/gen.c (genEndFunction),
5871         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
5872         interrupt handler and critical. Disable push/pop optimizations when
5873         peephole optimizations disabled.
5874
5875 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5876
5877         Updated pic16 library sources and headers.
5878         * device/lib/pic16/pic18f*/ ,
5879         * device/include/pic16/*.h: modified to handle structured SFR
5880         definitions
5881
5882 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5883
5884         * src/port.h (PORT structure): added hook initPaths, now each
5885         port can declare its own default search paths,
5886         which can been seen with the --print-search-dirs option,
5887         see pic16 port for example,
5888         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
5889         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
5890         * (doPrintSearchDirs): NEW, replaces in a central manner the
5891         printing of search dirs which was split in set*Paths functions,
5892         * (main): added call to port->initPaths and doPrintSearchDirs,
5893         * src/avr/main.c,
5894         * src/ds390/main.c,
5895         * src/hc08/main.c,
5896         * src/izt/i186.c,
5897         * src/izt/tlcs900h.c,
5898         * src/mcs51/main.c,
5899         * src/pic/main.c,
5900         * src/pic16/main.c: modified port structures to reflect addition of
5901         initPaths hook,
5902
5903         * src/pic16/device.c (regCompare): registers are finally sorted by name,
5904         * (pic16_dump_section): for registers in same address reserve memory once,
5905         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
5906         to no_banksel,
5907         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
5908         result is greater in size than right or left,
5909         * (pic16_genUMult8X8_8): there are some cases where the result can
5910         be 16 bits size, so handle these,
5911         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
5912         * (pic16_outBitC): modified to emit pcodes,
5913         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
5914         or not,
5915         * (genDivOneByte): implemented algorithm to divide 8-bits,
5916         * (genCmp): uncommented goto, but issues still exist,
5917         * (genAnd): fixed a bug with variables >8bits,
5918         * (genPackBits): optimization added that uses BCF/BSF to change a
5919         single bit,
5920         * (genAssign): fixed bug when assigning floating point literals,
5921         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
5922         __sdcc_gsinit_startup label,
5923         * src/pic16/main.c (_pic16_init): removed search directory
5924         initialisations,
5925         * (_pic16_initPaths): NEW, used to initialise search directories,
5926         * (_hasNativeMulFor): support functions for all except char/int
5927         multiplication, and char division,
5928         * (PIC16_port struct): modified entry for native mul support,
5929         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
5930         no_banksel option,
5931         * (buildCallTree): call to register_usage is ifdef'ed out,
5932
5933 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5934
5935         * device/include/string.h: applied Stas Sergeev's patch to make this
5936         header file compatible with the preprocessor -Wundef option
5937         * src/SDCCmain.c (main): abort compilation if preprocessor reports
5938         failure (fixes bug #941458)
5939
5940 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5941
5942         * src/SDCCopt.c (killDeadCode): fixed bug #907733
5943         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
5944         that the variable, not the function, should be static
5945         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
5946         to be consistent with non-literal case
5947
5948 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5949
5950         * src/SDCCast.c (isConformingBody): fixed bug #949967
5951         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
5952         convilong): fixed bug #952086
5953
5954 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5955
5956         * src/SDCCmem.c (allocVariables): fixed bug #955321
5957
5958 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5959
5960         * src/hc08/main.c (_hc08_genAssemblerEnd),
5961         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
5962         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
5963         completely eliminated the use of a temporary file
5964         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
5965         when more than one file linked
5966         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
5967
5968 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5969
5970         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
5971         which fixes bug #543481
5972         * support/regression/tests/bug-751703.c: fixed comments left from a
5973         cut and paste error
5974         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
5975         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
5976         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
5977         scopes
5978         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
5979         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
5980         are now changed to underscores in moduleName
5981
5982 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5983
5984         * as/mcs51/lkmem.c: better fix for bug #954173
5985
5986 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
5987         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5988
5989         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
5990         * device/include/c8051f000.h,
5991         * device/include/c8051f120.h,
5992         * device/include/c8051f300.h,
5993         * device/include/c8051f310.h,
5994         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
5995         PWM16) and detab'ed
5996
5997 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5998
5999         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
6000         and mailing lists, doc'ed --no-peep-comments, removed reference
6001         to knoppix (newest version has no LyX/LaTeX), other minor changes
6002         * src/SDCCglue.c (glue): save 2 bytes stack space with
6003         option --main-return. The ljmp could probably be avoided too
6004
6005 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6006
6007         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
6008
6009 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6010
6011         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
6012         * src/SDCCopt.c (isLocalWithoutDef),
6013         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
6014         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
6015         (credit to Maarten Brock for patch #949363, on which this is based)
6016         * support/regression/tests/bug-751703.c: some test cases of extern used
6017         within inner scopes.
6018
6019 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6020
6021         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
6022         SPEC_STRUCT
6023         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
6024         struct definitions
6025         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
6026         dwWriteLabel): fix to create valid debugger symbols even when
6027         the module name has non-alphanumeric symbols in it
6028         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
6029         when a variable's allocation has been optimized away
6030
6031
6032 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6033
6034         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
6035         * src/hc08/main.c,
6036         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
6037         * src/mcs51/main.c,
6038         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
6039         * src/ds390/main.c,
6040         * src/z80/gen.c (z80_emitDebuggerSymbol),
6041         * src/z80/main.c,
6042         * src/pic/gen.c (pic14_emitDebuggerSymbol),
6043         * src/pic/main.c,
6044         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
6045         * src/pic16/main.c,
6046         * src/avr/gen.c (avr_emitDebuggerSymbol),
6047         * src/avr/main.c,
6048         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
6049         * src/xa51/main.c,
6050         * src/SDCCdebug.c (emitDebuggerSymbol),
6051         * src/SDCCdebug.h,
6052         * src/port.h: added a debugger struct to the port struct. Added a
6053         callback for defining debugger symbols
6054
6055         * src/SDCCast.c (createLabel),
6056         * src/SDCC.y (labeled_statement): mark all compiler generated labels
6057         with isitmp = 1
6058         * src/SDCCicode.h,
6059         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
6060         iCode back to the ast for the function
6061
6062         * src/hc08/ralloc.c (hc08_assignRegisters),
6063         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
6064         unneeded fields from the regs struct.
6065         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
6066         pushReg() & pullReg() functions instead of emitcode()
6067
6068         * src/hc08/gen.c (genLabel, genhc08Code),
6069         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
6070
6071         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
6072         debugger hooks
6073
6074         * src/hc08/gen.c (genEndFunction, genhc08Code),
6075         * src/hc08/gen.h,
6076         * src/mcs51/gen.c (genEndFunction, gen51Code),
6077         * src/mcs51/gen.h,
6078         * src/ds390/gen.c (genEndFunction, gen390Code),
6079         * src/ds390/gen.h,
6080         * src/z80/gen.c (genEndFunction, genZ80Code),
6081         * src/z80/gen.h,
6082         * src/z80/z80.h,
6083         * src/pic/gen.c (genEndFunction, genpic14Code),
6084         * src/pic/gen.h,
6085         * src/pic16/gen.c (genEndFunction, genpic16Code),
6086         * src/pic16/gen.h,
6087         * src/avr/gen.c (genEndFunction, genAVRCode),
6088         * src/avr/gen.h,
6089         * src/xa51/gen.c (genEndFunction, genXA51Code),
6090         * src/xa51/gen.h,
6091         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
6092         specific code to cdbFile.c and out of the backend code generators
6093
6094         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
6095         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
6096         starting address is now 0
6097
6098         * as/hc08/asm.h,
6099         * as/hc08/m08pst.c,
6100         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
6101         assembler directive for DWARF support
6102         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
6103
6104         * src/src.dsp,
6105         * src/Makefile.in,
6106         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
6107
6108 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6109
6110         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
6111         and inappropriate peephole optimization in jump tables
6112
6113 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6114
6115         * as/hc08/m08pst.c,
6116         * src/SDCCglue.c: sdccopt works for the hc08 port now
6117
6118 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
6119
6120         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
6121
6122 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6123
6124         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
6125
6126 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6127
6128         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
6129         rules
6130         * src/SDCCmain.c,
6131         * src/SDCCglobl.h,
6132         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
6133         comments from the peephole optimizer replacement rules
6134         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
6135         symbols
6136         * src/SDCCcse.c (updateSpillLocation),
6137         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
6138         equivalents
6139         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
6140         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
6141         objects far pointers
6142
6143 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6144
6145         * src/SDCCsymt.h: a missing part of my last change
6146         * src/pic/ralloc.c (regTypeNum),
6147         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
6148
6149 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6150
6151         * src/SDCCicode.h,
6152         * src/SDCCicode.c (aggrToPtrDclType),
6153         * src/SDCCptropt.h,
6154         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
6155         ptrPseudoSymConvert),
6156         * src/pic/ralloc.c (regTypeNum),
6157         * src/pic16/ralloc.c (regTypeNum),
6158         * src/hc08/ralloc.c (regTypeNum),
6159         * src/ds390/ralloc.c (regTypeNum),
6160         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
6161         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
6162
6163 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6164
6165         * link/z80/lkmain.c (afile),
6166         * as/hc08/lkmain.c (afile),
6167         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
6168         prevent a pointer problem when a filename has no directory and
6169         no extension specified.
6170
6171 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6172
6173         * link/z80/lkmain.c (afile): allow periods in directory names
6174         * link/z80/lkmain.c (afile),
6175         * as/mcs51/lkmain.c (afile),
6176         * as/hc08/lkmain.c (afile): allow linker script file to have an
6177         extension other than ".lnk"
6178         * link/z80/lklex.c (getfid),
6179         * link/z80/lkmain.c (parse),
6180         * as/mcs51/lklex.c (getfid),
6181         * as/mcs51/lkmain.c (parse),
6182         * as/hc08/lklex.c (getfid),
6183         * as/hc08/lkmain.c (parse): Support comments in the linker script
6184         file on lines by themselves and after filenames
6185
6186 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6187
6188         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
6189
6190 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6191
6192         * src/z80/peeph-z80.def: removed some peephole rules that don't
6193         work with multibyte arithmetic (fixed bug #937126)
6194         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
6195         to registers and not global variables
6196         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
6197         geniCodePreInc, geniCodePostDec, geniCodePreDec,
6198         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
6199         checking for assignments not internally generated (fixed bug #931895)
6200         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
6201         structure member (fixed bug #930072)
6202
6203 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6204
6205         * src/SDCCmain.c (linkEdit),
6206         * src/hc08/main.c (_hc08_parseOptions),
6207         * as/hc08/Makefile.in,
6208         * as/hc08/aslink.h,
6209         * as/hc08/asm.h,
6210         * as/hc08/m08pst.c,
6211         * as/hc08/lkrloc.c (relr, rele),
6212         * as/hc08/lkarea.c (lnkarea)
6213         * as/hc08/lkmain.c (afile, parse),
6214         * as/hc08/lkelf.c: support for ELF output
6215         * as/hc08/lks19.c (s19),
6216         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
6217
6218 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6219
6220         * as/mcs51/lkihx.c: Fixed bug #899105.
6221
6222 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6223
6224         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
6225         .dsp files from Unix to DOS.
6226
6227 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6228
6229         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
6230         function pointers; we have been compliant for several months now.
6231         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
6232         change that was accidently commented out
6233         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
6234         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
6235         bug #922319
6236
6237 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6238
6239         * src/hc08/gen.c: output of all of the internal debugging information
6240         is now controlled by the D() macro; it is disabled by default
6241
6242 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6243
6244         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
6245         harder to keep the same registers during a CAST iCode
6246         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
6247         long via int can be done in a single cast, if the signedness is
6248         correct.
6249         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
6250         putchar() in tinibios.c in ds390's library
6251
6252 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
6253
6254         * src/SDCCast.c (decorateType): fixed bug #898889,
6255         cast result of a literal complement too
6256         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
6257         fixed check for bitfields
6258
6259 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
6260
6261         * src/SDCCicode.c (geniCodeLogic): made it static,
6262         (geniCodeLogicAndOr): added in order to fix bug #905492,
6263         (ast2iCode): fixed bug #905492
6264         * support/regression/tests/bug-905492.c: added
6265         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
6266         (processParms): fixed bug #927659: don't copy parms, this will clear
6267         decorated flag
6268         * support/regression/tests/bug-927659.c: added
6269
6270 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
6271
6272         * src/SDCCast.c (addCast): don't cast float to char
6273         * device/lib/libsdcc.lib: added _memmove
6274
6275 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
6276
6277         * device/lib/large/Makefile: fixed parallel execution by
6278         replacing `make` by `$(MAKE)`
6279
6280 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6281
6282         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
6283         offsets (fixes bug #923936)
6284
6285 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
6286
6287         * device/lib/small/Makefile: fixed parallel execution by
6288         replacing `make` by `$(MAKE)`
6289
6290 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6291
6292         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
6293
6294 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
6295
6296         * src/pic/gen.c (genCpl): multi-byte complements were not working.
6297         * src/regression/Makefile: Regression test was not running.
6298
6299 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6300
6301         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
6302         complement if possible
6303         * src/SDCCval.c (valComplement),
6304         * src/SDCCicode.c (operandOperation): fixed complement of literal
6305         * support/regression/tests/onebyte.c (testComplement): added
6306
6307 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
6308
6309         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
6310         return an optimized tree; actually replace actParm with the new tree
6311         * src/SDCCast.h: added some parantheses to remove side effects
6312         * support/regression/tests/bug-920866.c
6313
6314 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
6315         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
6316         Bit operands were not being handled properly in the pic14 port.
6317         (now src/regression/add.c passes again).
6318
6319 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6320
6321         * src/SDCC.y (labeled_statement): case and default no longer require
6322         a following statement (RFE #893037)
6323
6324 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6325
6326         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
6327         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
6328         disabled (fixes bug #916294)
6329         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
6330         "mov a,acc"; patch provided by Lenny Story
6331         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
6332
6333 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6334
6335         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
6336         functions
6337         * src/ds390/gen.c (genFunction, genEndFunction),
6338         * src/ds390/ralloc.c (ds390_assignRegisters),
6339         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
6340         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
6341         pushed if there are parameters passed on the stack. Also, a cleaner
6342         way to decide if r0/r1 should be pushed/popped. (Together they fix
6343         bug #918693)
6344
6345 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6346
6347         * doc/sdccman.lyx,
6348         * device/lib/mcs51/crtpagesfr.asm,
6349         * device/lib/mcs51/crtxinit.asm,
6350         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
6351         to avoid confusion with Si Lab's SFRPAGE register.
6352
6353 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6354
6355         * src/SDCCglue.c (emitMaps): allow public sfr variables
6356         * src/SDCCglue.c (initialComments): include compiler build date
6357         with compiler version and put the timestamp of the generated
6358         assembly file on a serperate line to be less confusing.
6359         * src/port.h: added genInitStartup hook
6360         * src/avr/main.c,
6361         * src/ds390/main.c,
6362         * src/hc08/main.c,
6363         * src/pic/main.c,
6364         * src/pic16/main.c,
6365         * src/xa51/main.c,
6366         * src/z80/main.c: genInitStartup initialize as NULL (default to
6367         historical behaviour)
6368         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
6369         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
6370         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
6371         library instead of hard coding it into the compiler.
6372         * support/regression/ports/mcs51-stack-auto/spec.mk,
6373         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
6374         * device/lib/mcs51/Makefile,
6375         * device/lib/small/Makefile,
6376         * device/lib/large/Makefile,
6377         * device/lib/mcs51/crtpagesfr.asm,
6378         * device/lib/mcs51/crtstart.asm,
6379         * device/lib/mcs51/crtxclear.asm,
6380         * device/lib/mcs51/crtxinit.asm,
6381         * device/lib/mcs51/crtclear.asm,
6382         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
6383         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
6384         and into user configurable files.
6385         * device/lib/clean.mk: clean mcs51 directory too
6386         * support/regression/tests/longlit.c: added static to T1 declaration
6387         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
6388         accesses in the initialization code
6389
6390 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6391
6392         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
6393         OSCTRIMVAL as noted in bug #916008
6394
6395 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6396
6397         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
6398         in loops with multiple exits (reported as incorrect registers
6399         used by Martin Helmling in Sdcc-user list)
6400
6401 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6402
6403         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
6404         made ds390 register extensions look less like error messages
6405
6406 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6407
6408         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
6409         reported by Adam Wozniak in Sdcc-user list
6410
6411 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
6412
6413         * src/SDCCast.c (decorateType): fixed with bug and promotion in
6414         arithmetic optimizations, added debug output
6415
6416 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
6417
6418         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
6419         * sdcc.spec: updated and split sdcc into 3 rpms
6420         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
6421         needed for literals of LEFT_OP and '+'
6422         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
6423         introduced RESULT_TYPE_NOPROM
6424         (geniCodeMultiply): fixed logic for decision if mul is optimized to
6425         left shift
6426         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
6427         limited promotion to int only for '*'
6428         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
6429
6430 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
6431
6432         * src/pic16/gen.c (genSkip),
6433         (genc16bit2lit), (gencjneshort): commented out
6434         (is_LitOp): new helper function, checks operand type
6435         (genCmpEq): rewritten
6436
6437 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
6438
6439         * support/regression/tests/bug-908454.c: added
6440
6441 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
6442
6443         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
6444         * src/SDCCicode.c (usualBinaryConversions): op needs int type
6445         (geniCodeCast): cosmetic, don't preserve bit storage class
6446         (geniCodeLeftShift): added promotion
6447         (geniCodeLogic): fixed regression
6448         * src/SDCCsymt.c (computeTypeOr): accept bits too
6449         (compareType): 2nd part of fix for bug #908454, needed for bitfields
6450
6451 2004-03-07  Borut Razem <borut.razem AT siol.net>
6452
6453         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
6454
6455 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
6456
6457         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
6458         version of pic16_genPackRegisters which does not check if ic is a
6459         CAST operator,
6460         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
6461         function cause string1.c regression test fails
6462
6463 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
6464
6465         * sim/ucsim/configure.in,
6466         * sim/ucsim/configure,
6467         * sim/ucsim/doc/Makefile.in: use docdir
6468         * src/SDCC.y: fixed sbit atrributes
6469         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
6470         * src/SDCCast.c (decorateType): |^& need special promotion handling
6471         * src/SDCCast.h,
6472         * src/SDCCsymt.h: moved definition of RESULT_TYPE
6473         * src/SDCCsymt.h (computeType),
6474         * src/SDCCicode.c: computeType() needs op
6475         * src/SDCCsymt.c (checkTypeSanity),
6476         * doc/sddman.lyx: "plain" bitfields are unsigned
6477         * src/SDCCsymt.c (computeTypeOr): added
6478         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
6479         |^& ops
6480         * src/SDCCval.c (val*): computeType() needs op
6481         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
6482         * support/regression/tests/onebyte.c: added tests for |^&
6483
6484 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
6485
6486         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
6487         for writing icode into asm output.
6488
6489 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
6490
6491         * src/pic16/device.c: added some debug lines enabled
6492         with macro DEBUG_CHECK,
6493         * src/pic16/genarith.c: more debug in genPlus,
6494         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
6495         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
6496         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
6497         * (aopForSym): onStack symbols are re-placed in data memspace,
6498         and onStack flag is cleared,
6499         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
6500         copy temporary pcodeop,
6501         * (genPcall): added warning for not updating PCLATU,
6502         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
6503         always true for pic16 port,
6504         * (genMultOneWord): NEW, supports integer multiplication,
6505         * (genMult): modified to call genMultOneWord,
6506         * (ifxForOp): added warning when return NULL,
6507         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
6508         flag is set before call to operandFromSymbol for implicit
6509         added structures,
6510         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
6511         options.intlong_rent are set by default,
6512         * (_hasNativeMulFor): modified to allow port generation of integer
6513         multiplication,
6514         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
6515         set regtype to REG_SFR for all registers, restricting seting the
6516         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
6517
6518 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6519
6520         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
6521         more than 500 times in the regression tests
6522
6523 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6524
6525         * support/Util/SDCCerr.h,
6526         * support/Util/SDCCerr.c,
6527         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6528         enumerator_list),
6529         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
6530         for symbol conflicts.
6531         * support/valdiags/tests/enum.c,
6532         * support/valdiags/tests/tentdecl.c,
6533         * support/valdiags/tests/struct.c: expect possible error messages
6534         referring to original symbol definitions.
6535         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
6536         * src/SDCCsymt.h,
6537         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
6538
6539 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
6540
6541         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
6542
6543 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
6544
6545         * src/pic16/ralloc.c (newReg): fixed bug #908929
6546
6547 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6548
6549         * src/ds390/gen.c: added missing #include "main.h"
6550
6551 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
6552
6553         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
6554         checking if symbol is already in set,
6555         * src/pic16/device.h: prototype for checkAddSym,
6556         * src/pic16/gen.c: (_G): added entry interruptvector,
6557         * (assignResultValue): removed some commented out lines,
6558         * (genFunction): check for ISR via sym->type, absolute section for
6559         interrupt code is created via a new pBlock, the goto instruction is
6560         placed now correctly at the interrupt vector position, changed all
6561         references from ivec to _G.interruptvector,
6562         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
6563         is the interrupt is a high priority one, same for return from ISR,
6564         * src/pic16/glue.c: changed all calls of addSetHead for publics and
6565         externs to calls of checkAddSym,
6566         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
6567         pic16_pcode_verbose flag is set,
6568         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
6569         * src/pic16/pcoderegs.c: message about how many registers are saved
6570         will only be emitted if pic16_pcode_verbose flag is set,
6571
6572 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6573
6574         * src/ds390/ralloc.h,
6575         * src/ds390/ralloc.c (ds390_regWithIdx),
6576         * src/ds390/gen.c (emitcode),
6577         * src/ds390/main.h,
6578         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
6579         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6580         ds390operandCompare, getRegsRead, getRegsWritten,
6581         initializeAsmLineNode): customized instruction size calculation for
6582         ds390, started basis for some register optimizations
6583         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
6584         corresponding assembly output
6585         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
6586         missing push/pop of r0/r1. Optimized push/pops
6587
6588 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6589
6590         * src/mcs51/main.c (instructionSize): fixed ACALL size
6591         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
6592
6593 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
6594
6595         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
6596         the sorting of rlist with NULL elements
6597         * (print_idataType, print_idata): NEW to create idata sections
6598         * src/pic16/device.h: idataSymSet new variable
6599         * src/pic16/gen.c (genFunction): fixed some bugs in string
6600         comparing, improved the absolute section creation for ISRs,
6601         added FSR0L/FSR0H in registers that are saved in an ISR,
6602         * (genInline): fixed the processing of inline snippets,
6603         now they undergo no process by the peephole optimizer
6604         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
6605         are placed in idataSymSet,
6606         * (pic16emitStaticSeg): extern symbols are added in externs,
6607         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
6608         switching when aboslute variables are placed in access bank memory
6609         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
6610         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
6611         commented out with #if,
6612         * (pic16_packRegisters): reintroduce the check for CAST because some
6613         symbols are not correctly handled,
6614         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
6615         pCodeInstruction instead of pCode,
6616         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
6617         pCodeAsmDir definition,
6618         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
6619         directive, then the argument directive is emitted without the leading
6620         tab, hack for inline labels which must be in the first column,
6621         * (compareLabel,pic16_findNextInstruction),
6622         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
6623         * (insertBankSwitch): modified for the new pCodeAsmDir,
6624
6625 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6626         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
6627
6628         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
6629         instance,
6630         * (pushSide): commented out with #if,
6631         * (assignResultValue): fixed some typos in saving
6632         registers,
6633         * (genPcall): FIXED and sync'ed with genCall,
6634         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
6635         * (genNearPointerGet): fixed to handle some more cases,
6636         implementation scheme via table reads,
6637         * (genConstPointerGet): modified to access code memory correct,
6638         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
6639         and improved to handle some cases
6640         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
6641         instead of "RETLW" for init data
6642         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
6643         not IN_DIRSPACE, work around to reduce bank switching when aboslute
6644         variables are placed in access bank memory (<0x80 and >=0xf80),
6645         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
6646         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
6647         TBLWT_POSTDEC,TBLWT_PREINC
6648         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
6649         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
6650         directives
6651         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
6652         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
6653         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
6654         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
6655
6656 2004-02-29  Borut Razem <borut.razem AT siol.net>
6657
6658         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
6659         support/Util/findme.h, support/Util/system.h: enhance binary relative
6660         search for lib and include by using findProgramPath()
6661
6662 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6663
6664         * src/SDCCpeeph.h,
6665         * src/SDCCpeeph.c (pcDistance),
6666         * src/port.h,
6667         * src/mcs51/ralloc.h,
6668         * src/mcs51/ralloc.c (mcs51_regWithIdx),
6669         * src/mcs51/main.h,
6670         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
6671         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6672         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
6673         size calculation port specific, started basis for some register
6674         optimizations
6675         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
6676         missing push/pop of r0/r1. Optimized push/pops
6677         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
6678         * device/lib/_modsint.c (_modsint),
6679         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
6680         and stack version so regression tests pass
6681
6682 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
6683
6684         * src/Makefile.in (dep): include SLIBOBJS in dependency check
6685         * src/SDCCast.c (decorateType): catch another small optimization
6686         with '?' operator
6687         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
6688         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
6689         modified to finally use computeType() all over SDCC,
6690         see Feature Request #877103
6691         * src/SDCCval.h: cosmetic
6692         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
6693         valCompare(); regression tested in muldiv.c
6694         * support/regression/tests/muldiv.c (testMod): mod sign follows
6695         dividend only
6696
6697 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
6698
6699         * src/SDCCast.c (decorateType): fixed bug #902362
6700         * doc/INSTALL.txt: fixed install instructions for win32
6701
6702 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
6703
6704         * device/include/Makefile.in (install): fixed by replacing spaces
6705         by tabs
6706         * doc/README.txt,
6707         * doc/INSTALL.txt: updated for release
6708         * doc/sdccman.lyx: added warning for --xstack being buggy
6709
6710 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
6711
6712         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
6713         to eliminate build warnings.
6714         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
6715
6716 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
6717            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6718
6719         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
6720         removed -penable-stack, added comment for stack pragma, added
6721         warning for not initializing the stack/frame registers, removed
6722         comment at interrupts section
6723
6724         Stack is made permanent, there is no ability to disable stack usage.
6725         * src/pic16/device.h,
6726         * src/pic16/device.c: removed all references to USE_STACK macro,
6727         * src/pic16/device.c (pic16_dump_section): when no elements in
6728         rlist, free rlist before return,
6729         * (pic16_dump_int_registers): NEW, internal registers are a new set
6730         of general purpose registers reused by each function,
6731         * (checkAddReg): returns 1 if registers is added to set,
6732         * (pic16_groupRegistersInSection): when a registers is of type
6733         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
6734         * src/pic16/device.h: memRange and Assigned Memory are deleted,
6735         SRCASECMP macro is moved here from device.c
6736         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
6737         PO_PCLATU, PO_PRODL, PO_PRODH,
6738         * (pic16_pCodeOpType, genMinus,
6739         changed compares to "a" register, with AOP_ACC,
6740         * (pic16_genPlus): fixed some bugs and indented properly,
6741         * (pic16_addSign): changed size to size+offset in the MOVWF
6742         instruction,
6743         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
6744         multiply 8-bit operand by literal, result is 8-bit,
6745         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
6746         multiply 2 8-bit operand, result is 8-bit,
6747         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
6748         genUMult8X*_16,
6749         * src/pic16/gen.c: changed accUse to contain WREG only,
6750         * (pic16_emitcomment): renamed to pic16_emitpcomment,
6751         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
6752         true, do not use immediate addressing any more unless sym is a
6753         pointer in codespace,
6754         * (aopForRemat): do not use immediate addressing when symbol not in
6755         codespace and when symbol's address is requested,
6756         * (aopOp): for-loop in if(sym->accUse) is modified for the new
6757         accUse size (= 1),
6758         * (aopGet): added case for AOP_ACC and don't return "accumulator
6759         bug" but WREG instead,
6760         * (popGetTempReg): pushes contents of temporary register in stack,
6761         * (popReleaseTempReg): pops contents of temporary register from
6762         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
6763         * (pic16_popGet): separated case AOP_ACC to return register WREG
6764         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
6765         or PO_IMMEDIATE and initializes their instance/offset appropriately,
6766         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
6767         the use of immediate pointers to certain cases only.
6768
6769         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
6770         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
6771         * (assignResultValue, genCall, genRet): modified to use the new
6772         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
6773         genPcall is still broken,
6774         * (genFunction): added code to create 'A' type pBlocks when
6775         interrupt functions are generated, code not extensively tested yet,
6776         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
6777         * (genEndFunction): modified so ISRs pop stored registers from stack,
6778         * (genMultOneByte): cleanup,
6779         * (AccRsh): added flag andmask, to and result with appropriate mask,
6780         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
6781         * (genDataPointerGet): fixed and reenabled its use,
6782         * (genNearDataPointerGet): bugs fixed,
6783         * (genDataPointerSet): bugs fixed,
6784         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
6785         pic16_DumpSymbol, pic16_DumpOp,
6786         * src/pic16/genutils.h: function prototypes for the above functions,
6787         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
6788         pointers,
6789         * (pic16emitRegularMap): many many many improvements, but needs a
6790         major cleanup,
6791         * src/pic16/main.c: enable_stack in pic16_options is removed,
6792         * (_pic16_parseOptions): removed command line options -penable-stack,
6793         * (_process_pragma): emit stack symbol only when stack pragma is
6794         processed,
6795         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
6796         redirected to FSR0L/FSR0H pair,
6797         * (pic16_get_op, pic16_get_op2): modifications and improvements,
6798         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
6799         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
6800         for immediates,
6801         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
6802         * (dumpPicOptype): NEW,
6803         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
6804         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
6805         with movff instruction,
6806         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
6807         added pic16_int_regs, some packRegsFor* functions are commented out,
6808         because produce errors,
6809         * src/pic16/NOTES: minor modifications
6810
6811 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6812
6813         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
6814         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
6815         --pack-iram.
6816         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
6817         * as/mcs51/lkaomf51.c: fixed bug #895763
6818
6819 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
6820
6821         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
6822
6823 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6824
6825         * doc/sdccman.lyx: added details about the HC08 storage classes and
6826         interrupts, fixed the register usage info for z80 & gbz80
6827
6828 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
6829
6830         * doc/sdccman.lyx: added more pic16 port documentation
6831         * device/include/pic16/: added header pic18fregs.h
6832
6833 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
6834
6835         * doc/sdccman.lyx: added Vangelis' contribution
6836
6837 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6838
6839         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
6840         extend to the next CALL or PCALL, not just to the next CALL.
6841
6842 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
6843
6844         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
6845
6846 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6847
6848         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
6849         bug #895752 and a better fix for bug #716790
6850
6851 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6852
6853         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
6854
6855 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6856
6857         * doc/sdccman.lyx: minor changes, minor changed
6858
6859 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
6860
6861         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
6862         which can't handle SDCC_NEWONEBYTEOPS,
6863         (geniCodeMultiply): removed conversion from mult to shift for pic14
6864         and pic16
6865
6866 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6867
6868         * src/hc08/gen.h,
6869         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
6870         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
6871         thus fixing bug #895406
6872
6873 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
6874
6875         * device/lib/_modsint.c,
6876         * device/lib/_modslong.c: sign follows divisor only
6877         * src/hc08/gen.c (genMultOneByte): if result size is 1,
6878         signs or signedness can be ignored
6879         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
6880         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
6881         added optimization for IFX,
6882         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
6883         arguments;
6884         reenabled optimization for IFX, which was removed on 2004-01-11
6885         * src/SDCCast.h: added return type IFX
6886         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
6887         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
6888         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
6889         SDCC_OLDONEBYTEOPS selects the old behaviour
6890         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
6891         changed again and commented promotion rule
6892         * src/SDCCval.c (valDiv): promotion no longer necessary
6893         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
6894         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
6895         rewritten
6896         * support/regression/tests/onebyte.c: added
6897
6898 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
6899
6900         * gen.c (genInline): reverted to old code for assemnling inline
6901         code because of bug reported James Chadd
6902
6903 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
6904
6905         * ralloc.h: missing declarations from previous patch,
6906         seems that patch for ralloc.h was never applied, fixed
6907
6908 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6909            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6910
6911         * pcode.c,
6912         * pcode.h,
6913         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
6914         indirect addressing. Marked FSR0 as deprecated
6915         * gen.c (pointerCode): commented out, not needed now
6916         (pic16_popGet2p): new MOVFF helper function
6917         (genGenPointerGet),
6918         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
6919         (shiftRLong): removed duplicate debugging info
6920
6921 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6922
6923         * src/ds390/gen.c (genNearPointerGet),
6924         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
6925         optimization with bits, but not bitfields.
6926         * src/ds390/ralloc.c (packRegisters),
6927         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
6928
6929 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
6930
6931         * src/SDCCcse.c (algebraicOpts): copy operands before modification
6932
6933 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6934
6935         * src/SDCCsymt.h,
6936         * src/SDCCicode.c (operandFromSymbol),
6937         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
6938         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
6939         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
6940         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
6941         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
6942         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
6943         bug #892038
6944         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
6945         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
6946         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
6947         * src/SDCCsymt.c (newSymbol),
6948         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6949         enumerator_list),
6950         * src/SDCCval.h,
6951         * src/SDCCval.c (newiList): fixed bug #885705
6952
6953 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6954
6955         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
6956         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
6957
6958 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6959
6960         * device/include/c8051f120.h,
6961         * device/include/c8051f300.h,
6962         * device/include/c8051f310.h: added/updated header files for Silicon
6963         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6964         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
6965         in new section Submitting patches
6966
6967 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6968
6969         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
6970         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6971         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6972         genGenPointerSet),
6973         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
6974         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6975         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6976         genGenPointerSet),
6977         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
6978         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6979         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6980         genGenPointerSet),
6981         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
6982         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6983         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6984         genGenPointerSet): fixed bug #892400
6985         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
6986         to eliminate build warnings.
6987         * src/SDCCast.c (processParms),
6988         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
6989         fixed bug 751859
6990         * support/valdiag/valdiag.py: added GCC to the list of defines active
6991         when compiling with gcc
6992
6993 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6994
6995         * support/Util/SDCCerr.h,
6996         * support/Util/SDCCerr.c,
6997         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
6998         with an incomplete type (fixed bug #883734)
6999         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
7000
7001 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7002
7003         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
7004
7005 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7006
7007         * src/SDCCast.c (decorateType),
7008         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
7009         function pointer implementation
7010         * support/regression/tests/funptrs.c: added tests to verify both forms
7011         of function pointers work correctly. Added tests to verify parameters
7012         are passed in the correct order.
7013
7014 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
7015
7016         * device.c (regCompare): registers are sorted by ascending
7017         address and increasing size,
7018         * main.c (_pic16_finaliseOptions): removed the declaration
7019         of compiler macro MCU. Now a macro of the format pic18fxxxx
7020         will be defined from the command line
7021
7022 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
7023             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
7024
7025         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
7026         PCOP_RLCF was overwritten!
7027         * gen.c (genSkip): commented out calls to pic16_emitcode,
7028         * (genCmpEQ): fixed "long" compares, only high word did get compared,
7029         * (genlshTwo),
7030         * (genRRC): added debugging info,
7031         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
7032         overwritten while shifting,
7033         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
7034         overwritten while shifting,
7035         * (AccLsh),
7036         * (AccRsh),
7037         * (shiftLLeftOrResult),
7038         * (shiftRLeftOrResult),
7039         * (shiftRLong),
7040         * (shiftLLong): Implemented with pic16_emitpcode
7041         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
7042         * (genLeftShift): Fixed bug, operand for shift by variable always
7043         was "and"ed with 0x0f,
7044         * (genLeftShiftLiteral),
7045         * (genrshTwo),
7046         * (genRightShiftLiteral): added debugging info,
7047         * (genrshFour): added comment,
7048         * (genRightShift): determined signedness from operand "left"
7049         instead of "result"
7050
7051 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7052
7053         * src/SDCCicode.c (geniCodeParms),
7054         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
7055         function pointers, fixed function pointer bugs #861242 and #861896
7056
7057 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7058
7059         * device/include/c8051f000.h,
7060         * device/include/c8051f120.h,
7061         * device/include/c8051f300.h: added header files for Silicon
7062         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
7063
7064 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
7065
7066         * src/SDCCast.c (processParams): added new type flow and restructured
7067         (gatherAutoInit): added new type flow
7068         (addCast): cosmetic changes
7069         (getLeftResultType): added new type flow for array indices, patch
7070         provided by Stas, see FR #877103
7071         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
7072         array index patch by Stas
7073         * src/SDCCast.h: added prototype getResultTypeFromType()
7074         * src/SDCCval.h,
7075         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
7076         * src/pic/glue.c (pic14emitStaticSeg),
7077         * src/pic16/glue.c (pic16emitStaticSeg),
7078         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
7079         for initialization of symbols
7080         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
7081         * support/Util/SDCCerr.h:
7082         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
7083         * .version: bumped version number to 2.3.8
7084         * device/include/Makefile.in (install),
7085         * doc/Makefile (install): changed to 'rm `find ...`' construct to
7086         avoid warnings
7087
7088 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
7089
7090         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
7091         Slade Rich fixed an optimization bug
7092         * src/pic/pcodepeep.c,
7093         * src/pic/pcoderegs.c
7094         * doc/Makefile (install): added test for directory
7095
7096 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7097
7098         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
7099         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
7100         * src/pic/ralloc.c (getRegPtr, getRegGpr),
7101         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
7102         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
7103         * as/mcs51/asexpr.c (term),
7104         * as/hc08/asexpr.c (term): fixed bug #887146
7105
7106 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7107
7108         * src/z80/gen.c (genMult): handle single byte result product
7109         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
7110         DUMMY_READ_VOLATILE (fixed bug #886367)
7111
7112 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
7113
7114         * support/regression/tests/libmullong.c: fixed logic, on little endian
7115         hosts we ended without a mullong_wrapper()
7116
7117 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7118
7119         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
7120         virus/worm forged address usage.
7121
7122 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
7123
7124         Fixed promotion, it should be done on AST level:
7125         * src/SDCCast.c (addCast): added promotion to int
7126         (decorateType): updated call to upCast()
7127         * src/SDCCicode.c (geniCodeLeftShift): removed call to
7128         usualUnaryConversions()
7129
7130 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
7131
7132         * support/regression/tests/literalop.c (mulWrapper): Added a
7133         wrapper to remove integer overflow warnings.
7134
7135         * support/regression/tests/float_trans.c: Made work on host.
7136
7137         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
7138         location of sz80.
7139
7140         * support/regression/generate-cases.py (main): Changed from inline
7141         to a main method.
7142
7143         * doc/Makefile (install): Changed to depth first to get rid of
7144         missing directory install warning.
7145
7146         * as/Makefile (install-doc): Made work on Mac.
7147
7148 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
7149
7150         * src/SDCCast.c: added an additional type flow in decorateType() of
7151         opposite direction, see feature request #860006; it's enabled at runtime
7152         by setting the environment variable SDCC_NEWTYPEFLOW
7153         * src/SDCCast.h: changed prototype of decorateType()
7154         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
7155         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
7156         'char' to 'int' can be omitted, if both operands are 'unsigned char';
7157         see feature request #877103
7158         * src/SDCCval.c: updated call of decorateType()
7159         (valBitwise): fixed bug #882876
7160         (valMinus): added promotion
7161         (valLogicAndOr): result is unsigned
7162         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
7163         * src/SDCCsymt.c (computeType),
7164         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
7165         must not cause an unsigned operation
7166         * src/pic/glue (pic14emitRegularMap),
7167         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
7168
7169 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
7170
7171         * src/pic/pcode.c (PCodeID): commented out left over debug code
7172
7173 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
7174
7175         * support/valdiag/tests/overflow.c: added shift tests
7176         * src/pic/device.c,
7177         * src/pic/gen.c,
7178         * src/pic/gen.h,
7179         * src/pic/glue.c,
7180         * src/pic/main.c,
7181         * src/pic/pcode.c,
7182         * src/pic/pcode.h,
7183         * src/pic/pcodepeep.c,
7184         * src/pic/pcoderegs.c,
7185         * src/pic/ralloc.c,
7186         * src/pic/ralloc.h: applied patch from Slade Rich;
7187         added support for multiple code pages and multiple RAM banks on the
7188         PIC 14 port. The ASM files now no longer simply assume all the
7189         code / RAM are in the same page / bank. This means the linker can
7190         safely allocate code/RAM of separate ASM files to different pages/banks.
7191         * doc/sdccman.lyx: added Slade's tips
7192         * src/mcs51/peeph.def: fixed bug #880768
7193
7194 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7195
7196         * src/hc08/ralloc.c (rematStr): fixed bug #879282
7197         * src/SDCCast.c (decorateType): fixed bug #880197
7198
7199 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
7200
7201         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
7202         getopt.h.
7203
7204         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
7205         strtof is not part of C89 and isn't included with Mac OS X.
7206
7207 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7208
7209         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
7210         shiftL2Left2Result): fixed bug #879326
7211         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
7212         (genMultOneByte): fixed bug in signed vs unsigned multiplication
7213         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
7214         address fetch for clr instruction
7215         * device/lib/hc08/_mulint.c: created optimized assembly version
7216         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
7217
7218 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
7219
7220         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
7221         proposed in FR #877103
7222
7223 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
7224
7225         * src/SDCCval.c (cheapestVal): added missing checks
7226         * src/SDCCicode.c (usualBinaryConversions): fixed condition
7227         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
7228
7229 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
7230
7231         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
7232         equal operands
7233
7234 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
7235
7236         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
7237         loaded with the linker search paths (-L arguments) and the libraries
7238         to be linked with the current source (-l arguments). Changes
7239         currently will affect only the pic16 port.
7240         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
7241         include path the port specific paths and port specific libraries,
7242         * gplink command now contains the $3 argument,
7243         * src/pic16/device.h,
7244         * src/pic16/device.c,: structure PIC_device is made public and
7245         renamed to PIC16_device, the same for variable Pics which is renamed
7246         to Pics16. Updated all references to them.
7247         * src/pic16/glue.c (pic16glue): corrected bug with code
7248         initialization which bypassed the variable initializations block.
7249
7250         * device/lib/pic16/Makefile.rules: removed --penable-stack from
7251         COMPILE_FLAGS and added the --nostdinc option
7252
7253 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7254
7255         * device/include/mc68hc908jb8.h: Register defs for another member
7256         of the hc08 family. Contributed by Bjorn Bringert - thanks!
7257
7258 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
7259
7260         Documenting changes from previous commits.
7261         * configure.in (version 1.56),
7262         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
7263         when generating output files to configure the pic16 library,
7264         but now I've commented it out, since gputils aren't installed in the
7265         SF compile farm, so library won't compile
7266
7267         * device/lib/Makefile.in (version 1.56): initially I've added in
7268         target 'all' the prerequestive 'model-pic16' so it compiled the
7269         pic16 library, but now I've commented it out for the same reasons
7270         above,
7271         * added targets 'model-pic16' and 'objects-pic16' to compile the
7272         library
7273         * added target 'port-specific-objects-pic16' to handle the
7274         generated libraries and copy them into the build/ directory
7275         * added target 'clean-intermediate-pic16' to clean intermediate
7276         files into pic16 directory
7277         * in target 'installdirs' added line to create directory pic16 in
7278         the installation path
7279
7280         * device/include/Makefile.in (version 1.11): in target 'install'
7281         added lines to copy all header files to installation path,
7282         * in target 'installdirs' added line create directory for pic16
7283         headers in the installation path
7284
7285 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
7286
7287         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
7288          a function call
7289
7290 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
7291
7292         * configure,
7293         * device/lib/configure.in,
7294         * device/lib/configure: fixed for autoconf 2.57
7295
7296 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7297
7298         * src/z80/main.c (_parseOptions): fixed the portmode= command line
7299         option so that it actually works. Made it specific to the z80, since
7300         the gbz80 doesn't have these kinds of I/O ports.
7301
7302 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7303
7304         * device/include/z180.h,
7305         * device/lib/_memcpy.c,
7306         * device/lib/_memmove.c,
7307         * device/lib/_mulint.c,
7308         * device/lib/ser_ir.c,
7309         * device/lib/ser_ir_cts_rts.c,
7310         * device/lib/_strcmp.c,
7311         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
7312         * src/z80/main.c (_process_pragma): add support for pragmas bank and
7313         portmode; added deprecation warning for bank= and protmode= forms.
7314         Also, guard against buffer overflow.
7315         * src/z80/gen.c (aopGet): generate better code for sfr banked read
7316
7317 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7318
7319         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
7320         changed interrupt vector table generation to only emit declared vectors.
7321         * device/include/Makefile.in: added missing backslash
7322         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
7323
7324 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7325
7326         Mainly changes to support compilation of the device libraries
7327         * src/pic16/device.c: stack is allocated via symbol and not
7328         via literal number. The symbol is placed in the corresponding
7329         position of the data ram
7330         * (pic16_dump_section): relocatable and absolute uninitialized
7331         data are now emitted in sorted order to reduce section naming,
7332         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
7333         weren't marked as being in the access bank,
7334
7335 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7336
7337         Added portion of GNU PIC Library under the directory
7338         device/include/pic16 and device/lib/pic16. These files
7339         contain the declarations of SFRs for the PIC18Fxx2 devices.
7340         The directory is initialized via configure from toplevel.
7341
7342 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
7343
7344         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
7345         the spilllocations to be compared correctly
7346
7347 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7348
7349         * src/SDCCast.c (decorateType): fixed bug introduced today
7350
7351 2004-01-12  Borut Razem <borut.razem AT siol.net>
7352
7353         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
7354         doc/sdccman.lyx: upper case pragmas are deprecated
7355
7356 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7357
7358         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
7359         in simpler and even better code
7360
7361 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
7362
7363         * src/SDCCicode.c (operandOperation): fixed bug #874819
7364         * src/SDCCast.c (decorateType): fixed
7365         char foo (unsigned long ul) { return ul > 0; }
7366
7367 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7368
7369         * doc/sdccman.lyx: Moved and added some sections, small changes
7370         all over. Telling LaTeX to be less strict with word spacing
7371         to better keep the right margin. Changed some notes about
7372         maintainance of the ports in section 3.2.1 - is it OK like this?
7373
7374 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
7375
7376         SDCC source changes:
7377         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
7378         convilong): modified to inform the pic16 port that builtin functions
7379         are external
7380
7381         PIC16 PORT specific changes:
7382         * src/pic16/device.c pic16_dump_equates() added,
7383         processor registers declared internally by the port are emitted in
7384         the translation as equates,
7385         * src/pic16/gen.c: inline code is passed unprocessed to the
7386         translation,
7387         * (pic16_popGetLit2): fnuction modified to take second operand as
7388         pCodeOp pointer and not as literal,
7389         * (popRegFromIdx): prefixed with pic16_,
7390         * (pic16_popCombine2): modified to receive already allocated pCode
7391         operands,
7392         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
7393         * (genFunction): initializes local stack frame and pushes on stack
7394         all the registers used by this function,
7395         * (genEndFunction): restores all registers from stack and restores
7396         stack frame,
7397         * src/pic16/glue.c (pic16emitRegularMap): various changes and
7398         improvements,
7399         * (pic16glue): changed the program startup sequence,
7400         * added new dbName code 'A' for functions placed in absolute section
7401         * src/pic16/main.c: added function attribute _naked,
7402         * added pragma 'code' to place a fnuction at an absolute address,
7403         * added command line arguments --debug-ralloc and --pcode-verbose,
7404         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
7405         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
7406         * (pic16_newpCodeOpLit2): modified to take the second operand as
7407         pCodeOp pointer,
7408         * (pic16_printpBlock): modified to emit each function in a separate
7409         section,
7410         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
7411         UPPER for immediate operands,
7412         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
7413         instruction,
7414         * src/pic16/peeph.def: all peepholes with movff are commented out,
7415         because there is a problem in the pcode peep optimizer,
7416         * src/pic16/ralloc.c: the register allocator can now reuse local
7417         function symbols for another function. This saves register usage.
7418         * src/pic16/ralloc.h: added flag isLocal in structure regs,
7419
7420         Added file src/pic16/NOTES with information about program writing on
7421         the current port version.
7422
7423 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7424
7425         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
7426         and peephole 252 (array access)
7427
7428 2004-01-09  Borut Razem <borut.razem AT siol.net>
7429
7430         * src/SDCCmain.c : fixed #872250: -l command line defined library
7431           files are scanned before standard library files
7432
7433 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7434
7435         * src/SDCCast.c (decorateType): fixed bug #874046
7436
7437 2004-01-09  Borut Razem <borut.razem AT siol.net>
7438
7439         * support/scripts/sdcc.nsi: remove previous installation
7440
7441 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7442
7443         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
7444         bytes for last interrupt vector (mcs51)
7445         * sdcc.spec: fixed typo
7446
7447 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7448
7449         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
7450         gen51Code): more efficient parameter receive for --model-large
7451         ("bug" #845294)
7452
7453 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7454
7455         * src/ds390/main.c,
7456         * src/z80/main.c: added missed needLinkerScript flags (more than
7457         one port structure defined in these file)
7458         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
7459         bug #795325
7460
7461 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
7462
7463         * src/SDCCmain.c: removed various references to DEFAULT_PORT
7464         * src/port.h: added flag needLinkerScript in port->linker
7465         structure to inform whether to create a .lnk file or not,
7466         * src/avr/main.c,
7467         * src/ds390/main.c,
7468         * src/hc08/main.c,
7469         * src/mcs51/main.c,
7470         * src/pic/main.c,
7471         * src/pic16/main.c,
7472         * src/xa51/main.c,
7473         * src/z80/main.c: changed appropriately to configure
7474         needLinkerScript flag
7475         * src/pic/gen.c,
7476         * src/pic16/gen.c (genAddrOf): fixed bug #863624
7477         * src/pic/glue.c: added variable udata_section_name to
7478         override default uninitialized data segment definition for
7479         devices only with SHAREBANK memory (reported from Erik Epetrich)
7480         * (pic14emitOverlay): modified to emit a commented overlay segment
7481         directive when no overlay data exist
7482         * (picglue): modified to emit uninitialized data segment
7483         according to udata_section_name
7484         * src/pic/main.c (_pic14_parseOptions): added command line
7485         options --udata-section-name=[name] to override default
7486         udata definition name
7487         * modified _linkCmd and _asmCmd to include compiler passed
7488         arguments via -W option
7489         * src/pic16/main.c: added $l in _asmCmd, changed extension for
7490         object file from '.rel' to '.o' in port->linker structure,
7491         changed size of fptr from 2 to 3 in port structure
7492
7493 2004-01-07  Borut Razem <borut.razem AT siol.net>
7494
7495         * support/scripts/sdcc.nsi: update PATH
7496         * support/scripts/sdcc.ico: craeted
7497
7498 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
7499
7500         * device/include/Makefile.in: fix install
7501         * doc/Makefile: fix install
7502
7503 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7504
7505         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
7506         in bug #860505
7507         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
7508         how the function variable allocation summary is displayed; also
7509         include information about variables allocated to the overlay
7510         segment
7511
7512 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7513
7514         * as/mcs51/lkmain.c: Help about -Y option
7515         * as/mcs51/lkarea.c: Fixed gcc warnings
7516
7517 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7518
7519         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
7520         fixed warning
7521         * support/valdiag/tests/overflow.c: added
7522         * src/SDCCast.c (decorateType),
7523         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
7524         LEFT_OP (left shift)
7525
7526 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7527
7528         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
7529         (default behaviour).
7530
7531 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7532
7533         A python script to validate compiler diagnostic messages. It can be
7534         used to verify that sdcc complains about bad c source code and
7535         gives a good location of the error.
7536         * support/valdiag/Makefile,
7537         * support/valdiag/valdiag.py,
7538         * support/valdiag/tests/*
7539
7540 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7541
7542         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
7543         * src/SDCCsymt.c (newEnumType),
7544         * src/SDCCsymt.h
7545         * support/Util/SDCCerr.c,
7546         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
7547         enum related bugs.
7548         * support/regression/tests/enum.c: added test for enum values that
7549         require at least 2 bytes of storage.
7550
7551 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7552
7553         * src/common.h: added ifndef/define/endif macros
7554         around the header file.
7555         Bug reported from Jesus Calvino-Fraga
7556
7557 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7558
7559         * sdcc.spec: updated
7560         * device/include/Makefile.in: don't install CVS directories
7561         * device/lib/Makefile.in: added removal of CVS directories after install
7562         * doc/Makefile: fixed install, added local_icons
7563         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
7564         * src/mcs51/gen.c (genRightShift): fixed bug #870788
7565         * src/ds390/gen.c (genRightShift): fixed bug #870788
7566         * src/SDCCast.c (decorateType): fixed bug #870781
7567
7568 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7569
7570         PIC16 port related changes:
7571         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
7572         added variable stackPos,
7573
7574         * gen.c: genCall, assignResultValue: added support for
7575         pushing/retrieving function parameters to/from stack,
7576         genFunction,genEndFunction: setup stack frame for the
7577         generated function,
7578         genAddrOf: will be changed according to bug 863624
7579
7580         * added files genutils.c and genutils.h which contain gen*
7581         debugged and optimised functions extracted from gen.c
7582
7583         * glue.c: added variable 'externs' which holds extern symbols,
7584         pic16emitRegularMap: is modified to properly handle relocatable
7585          symbols under the new scheme,
7586         pic16createInterruptVect: is modified
7587         pic16printPublics: is modified to emit 'global' assembler directives,
7588         added pic16_printExterns to print extern symbols,
7589         pic16glue: initializes stack/frame pointer in the beginning of
7590         the assembly output. Temporary hack, will be corrected later,
7591         because gplink yet does not support stack and SDCC does not
7592         yet support a type of crt0.o object to create the final binary.
7593
7594         * Removed many lines that contain 8051 legacy code.
7595         * The code is finally placed under a 'code' directive.
7596         * Added port specific options.
7597
7598         * _process_pragma: simplified since now we do not need *special*
7599         include file to define SFR registers. But a separate header
7600         will be needed. This will be developed later.
7601         * _pic16_parseOptions: added, parses port specific options:
7602         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
7603         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
7604         --preplace-udata-with=
7605
7606         * _pic16_setDefaultOptions: modified to initialize section names,
7607         but hack is temporarly out of order since it needs improvement.
7608         * _pic16_genAssemblerPreamble: configuration words are emitted by
7609         their address instead of their name. This part is incomplete and
7610         supports only the 18Fxx2 devices. Other devices will emit an error
7611         during assembly since they do not contain the same set of config
7612         registers
7613         * _pic16_genIVT: is modified,
7614
7615         * pcode.c: added definitions for some hardware registers that are needed
7616         for stack support
7617         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
7618         All PCI entries are updated. Now LFSR is supported.
7619         * Removed pic16_pciTRIS is mentioned by mdubuc in source
7620         * added pic16_newpCodeOpLit2 to support instructions with
7621         two literal arguments
7622         * pic16_pCode2str: corrected code that emits assembler instructions
7623         with two literal operands and those that have an access bit modifier
7624         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
7625         this fixes a bug which caused some labels to be lost, when an
7626         assembler directive was added, i.e. banksel,
7627         * pic16_FixRegisterBanking: improved logic that causes the insertion
7628         of bank switching,
7629         * InlineFunction: functions that are called once, are not any more
7630         inlined. This can be a port option in the future,
7631
7632         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
7633
7634         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
7635         hold the corresponding uninitialized symbols,
7636         * pic16_allocProcessorRegister: registers have explicit marked the
7637         accessBank field,
7638         * pic16_allocInternalRegister: registers are explicit marked as
7639         not used,
7640         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
7641         processing list, so bit registers were lost,
7642         *
7643
7644         * ralloc.h: added field 'accessBank' and original symbol operand
7645         in register definition,
7646         * removed the field isMapped from register definition,
7647
7648         ** Several functions have been removed from various sources:
7649         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
7650         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
7651         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
7652         pic16_assignRelocatableRegisters
7653
7654         ** others have been introduced:
7655         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
7656         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
7657
7658 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
7659
7660         * support/scripts/inc2h.pl: changed definition of BIT_AT
7661         to emit 'sbit at' instead of 'bit at'. This was a request.
7662
7663         PIC16 port related preliminary changes:
7664         * gen.c: prefixed function popRegFromString with
7665         pic16_ and all references to it corrected
7666         * pcode.c: all pic16_pc_* hardware registers prefixed
7667         with underscore (_),
7668         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
7669         * ralloc.c: newReg(): when register is REG_SFR then
7670         set address to rIdx,
7671         pic16_allocProcessorRegister(): marks register wasUsed=0
7672         pic16_writeUsedRegs(): added a call to assign processor
7673         registers via pic16_assignFixedRegisters
7674
7675 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7676
7677         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
7678         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
7679         variables in unused register banks.  Also the SSEG is placed
7680         wherever there is enough space for it, and IDATA can be anywhere
7681         in internal RAM.  For now compile using -Wl-Y[stack_size].
7682         The mem file is different for this option as well, since it
7683         makes no sense of talking about DSEG lenght.
7684
7685 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
7686
7687         * src/SDCClrange.c: fixed bug 869095 that caused segfault
7688         in certain cases, e.g. when ROM assignment, patch provided
7689         from Albert den Haan.
7690
7691 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
7692
7693         Many signedness and type propagation fixes:
7694         * src/SDCCicode.c: made geniCodeCast() static
7695         replaced SPEC_ by IS_ (cosmetic)
7696         (operandOperation): fixed div and mod operation
7697         (usualBinaryConversions): added support for promotion of char
7698         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
7699         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
7700         (geniCodeAdd): an array index will stay unsigned, even if promoted
7701         from char to int
7702         (geniCodeArray): ditto
7703         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
7704         * src/SDCCsymt.c (computeType): added more support for char;
7705         promotion of char is selectable by promoteCharToInt, fixed signedness
7706         for all cases
7707         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7708         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7709         * src/SDCCval (val*): replaced signedness calculation by
7710         computeType()
7711         rearranged if-branches (cosmetic)
7712         (valShift): added warning W_SHIFT_CHANGED
7713         (valCompare): fixed problem with different types
7714         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
7715         * support/regression/tests/literalop.c: added many cases
7716         * support/regression/tests/ast_constant_folding.c: changed finally to
7717         'unsigned int'
7718         * .version: new year, new version: 2.3.7
7719         * src/SDCCmain.c (main): applied patch #866468
7720         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
7721         provided by Scott Bronson
7722         * doc/sdccman.lyx: updated documentation for sdcdb
7723         updated and added chapter tips
7724
7725 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7726
7727         * src/SDCCsymt.h: missing from yesterday's commits
7728
7729 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7730
7731         * src/SDCC.y (struct_or_union_specifier),
7732         * support/Util/SDCCerr.c,
7733         * support/Util/SDCCerr.h: verify that struct & union tags are used
7734         as declared.
7735
7736 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7737
7738         * src/SDCCglobl.h: missing from yesterday's commits
7739
7740 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7741
7742         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
7743         sft_attributes, struct_declaration, parameter_declaration,
7744         type_name, start_block, declaration_list),
7745         * src/SDCC.lex (check_type): support redefinition of typedef names
7746
7747 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7748
7749         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
7750         aligned xdata arrays. Erik helped me with the if clause.
7751
7752 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7753
7754         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
7755         warning
7756
7757 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7758
7759         * src/SDCCast.h,
7760         * src/SDCCast.c (newAst_),
7761         * src/SDCCicode.h,
7762         * src/SDCCicode.c (ast2iCode, newiCode),
7763         * src/SDCCglobl.h,
7764         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
7765         expr, statement, expression_statement, selection_statement,
7766         iteration_statement, expr_opt, jump_statement): foundation for tracking
7767         sequence points
7768         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
7769         point code too)
7770
7771 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7772
7773         * support/Util/SDCCerr.c,
7774         * src/SDCCast.h,
7775         * src/SDCCast.c (createCase, createDefault, decorateType),
7776         * src/SDCClabel.c (labelUnreach),
7777         * src/SDCC.y (labeled_statement, jump_statement): More improvements
7778         to error messages.
7779         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
7780         (with thanks to Stas Sergeev)
7781         * device/include/time.h,
7782         * device/lib/time.c (CheckTime): suppress unreachable code warning
7783
7784 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7785
7786         * src/SDCCast.c (createIvalCharPtr),
7787         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
7788         bug #753752)
7789         * support/regression/tests/nullstring.c: tests for these two bugs
7790
7791 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7792
7793         * support/Util/SDCCerr.h,
7794         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
7795         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
7796         about storage class and 'at' used inside struct or union
7797         * src/SDCCBBlock.c (iCodeFromeBBlock),
7798         * src/SDCCcse.c (ifxOptimize),
7799         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
7800         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
7801         printIval, emitStaticSeg, emitOverlay),
7802         * src/SDCClabel.c (deleteIfx),
7803         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
7804         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
7805         gatherAutoInit, processParms),
7806         * support/Util/SDCCerr.h,
7807         * support/Util/SDCCerr.c (werrorfl): Support for better error location
7808         reporting for post-parse errors.
7809
7810 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7811
7812         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
7813         implicit casts via union; they don't work on big endian systems
7814         (possible fix for bug #861138)
7815
7816 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7817
7818         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
7819         * src/mcs51/main.c: fixed the fix for bug #737001
7820
7821 2003-12-15  Borut Razem <borut.razem AT siol.net>
7822
7823         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
7824
7825 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7826
7827         * support/makebin/makebin.c: put output in binary mode
7828
7829 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7830
7831         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
7832         xdata and data memory on startup. Set the environment variable
7833         SDCC_NOGENRAMCLEAR to disable this.
7834         * src/mcs51/peephole.def,
7835         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
7836         (allows non-interrupt and interrupt code to safely compete for a resource
7837         without the non-interrupt code having to disable interrupts)
7838
7839 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7840
7841         * src/SDCCicode.c (geniCodeAdd),
7842         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
7843         with valFromType if type might be a pointer and host is big endian).
7844         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
7845         types, not just integer types.
7846         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
7847         multiply defined with mismatching "at" address.
7848
7849 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7850
7851         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
7852         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
7853         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
7854         with embedded nulls (fixed bug #753752)
7855
7856 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7857
7858         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
7859         Apparently this did not see much testing (endless loop)
7860
7861 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7862
7863         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
7864
7865 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7866
7867         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
7868         gracefully handle NULL memmap pointers
7869
7870 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7871
7872         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
7873         instead of deleting the iCode when an operand is volatile
7874         * src/z80/gen.c (genDummyRead),
7875         * src/mcs51/gen.c (genDummyRead),
7876         * src/ds390/gen.c (genDummyRead),
7877         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
7878         not just IC_RIGHT
7879         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
7880         * src/SDCC.y: fixed bug #850420
7881
7882 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7883
7884         Applied z80 i/o port patch from Peter Townson and fixed some operators
7885         to better handle operands in A register.
7886         * device/include/z180.h
7887         * src/SDCC.y
7888         * src/SDCCglue.c
7889         * src/z80/gen.c
7890         * src/z80/gen.h
7891         * src/z80/main.c
7892         * src/z80/peeph-z80.def
7893         * src/z80/peeph.def
7894         * src/z80/z80.h
7895
7896 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7897
7898         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
7899
7900 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7901
7902         * device/lib/hc08/_mullong.c: Removed extra #endif
7903
7904 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7905
7906         * sim/ucsim/hc08.src/inst.cc,
7907         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
7908         carries from x to h
7909         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
7910         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
7911         * device/include/stdarg.h: fixed varargs for hc08
7912         * device/lib/Makefile.in,
7913         * device/lib/hc08/Makefile,
7914         * device/lib/hc08/_mulint.c,
7915         * device/lib/hc08/_mullong.c: fixed some endian problems
7916
7917 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7918
7919         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
7920         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
7921         * device/lib/_gptrget.c,
7922         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
7923
7924 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7925
7926         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
7927         * src/SDCCast.c (astErrors): fixed bug #846007
7928         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
7929
7930 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7931
7932         * src/SDCCast.c (decorateType): disabled a transformation I added in
7933         revision 1.188 (access to fields of a structure at an absolute address);
7934         it breaks with bitfields, extern declarations, and gcse analysis.
7935         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
7936         could be assigned through a pointer, so don't complain.
7937         * src/SDCCast.c (astErrors),
7938         * src/SDCCast.h,
7939         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
7940
7941 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
7942
7943         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
7944         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
7945         output of __config directives, since gpasm now supports them
7946         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
7947         pre-processor macro, i.e. -DMCU=p18f452
7948         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
7949         and modified to handle 'cast' icode similarly to '=' icode
7950         * src/pic16/device.h (typedef struct PIC_device): added field
7951         'extMIface' to indicate that chip has external memory interface
7952         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
7953         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
7954         18F8720
7955
7956 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7957
7958         * src/SDCC.y (pointer): fixed bug #846006
7959         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
7960         * src/SDCCast.c (decorateType): fixed bug #846009
7961         * src/ds390/peeph.def,
7962         * src/ds390/gen.c (genAnd, genOr),
7963         * src/mcs51/peeph.def,
7964         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
7965
7966 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7967
7968         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
7969         * src/SDCCdflow.c
7970         * src/SDCCcse.c
7971         * src/SDCCcse.h
7972         * src/SDCCBBlock.h
7973         * src/SDCCBBlock.c
7974
7975 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
7976
7977         fixed bug #845089
7978         * src/SDCCbitv.h,
7979         * src/SDCCbitv.c: added function to free a bitvector
7980         * src/SDCClrange.h,
7981         * src/SDCClrange.c: added function to recompute the liveranges
7982         * src/avr/ralloc.c,
7983         * src/ds390/ralloc.c,
7984         * src/hc08/ralloc.c,
7985         * src/mcs51/ralloc.c,
7986         * src/pic/ralloc.c,
7987         * src/pic16/ralloc.c,
7988         * src/xa51/ralloc.c,
7989         * src/z80/ralloc.c: recompute the liveranges after register packing
7990
7991 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
7992
7993         * src/SDCCloop.c (newInduction): fixed bug #845630
7994
7995 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7996
7997         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
7998         inadvertantly left behind from my 2003-11-12 change
7999
8000 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8001
8002         Updated headers I neglected to commit yesterday.
8003         * src/SDCClrange.h,
8004         * src/SDCCicode.h
8005
8006 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8007
8008         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
8009         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
8010         * src/SDCCopt.c (eBBlockFromiCode),
8011         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
8012         the creation of the key hash table from the sequencing so it can be used
8013         earlier (for some GCSE bug fixes still pending)
8014
8015 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8016
8017         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
8018         * support/regression/tests/addsub.c: testing genPlus shortcut
8019
8020 2003-11-15  Borut Razem <borut.razem AT siol.net>
8021
8022         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
8023
8024 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8025
8026         * src/SDCCcse.c (cseBBlock): fixed bug #527779
8027         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
8028         ordering is immaterial.
8029         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
8030
8031 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8032
8033         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
8034         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
8035         (SIGSEV) of bug #840381
8036         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
8037         unlink new file before rename if new and old filenames are the same)
8038
8039 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8040
8041         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
8042         uninitialized variables) for the mcs51. Set environment variable
8043         SDCC_GENRAMCLEAR to test.
8044         xdata initialization slightly shorter
8045
8046 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8047
8048         * src/SDCCsymt.h,
8049         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
8050         #838241 & 780691 (basicly the same bug)
8051         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
8052         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
8053
8054 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
8055
8056         * src/SDCCmain.c (linkEdit): "fix" #834252
8057
8058 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8059
8060         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
8061         * src/SDCCast.h,
8062         * src/SDCC.y: fixed bug #819403
8063
8064 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8065
8066         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
8067         the reentrant attribute.
8068         * src/hc08/gen.c (genPackBits): added missing stack readjustment
8069         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
8070         simulation
8071         * src/SDCCast.c (decorateType): fixed bug with storage class not being
8072         updated during pointer dereference; f.e. ~(((char *)1)*) was being
8073         erroneously reduced to a literal.
8074         * src/hc08/ralloc.c (packRegisters, rematStr),
8075         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
8076         some cases
8077
8078 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8079
8080         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
8081         * doc/sdccman.lyx: changed from 'article' to 'book'
8082         * doc/Makefile: readded test_suite_spec and cdbfileformat
8083
8084 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
8085
8086         * device/include/stdlib.h: include malloc.h to comply with ANSI
8087         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
8088
8089 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8090
8091         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
8092         * doc/clean.mk: also remove *.out files
8093         * doc/sdccman.lyx: some additions, larger top/bottom margins
8094
8095 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8096
8097         * src/SDCC.y: fixed bug #837365
8098         * support/regression/tests/bitopcse.c
8099         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
8100         a symbol (might be valop instead)
8101         * device/lib/Makefile.in: added errno.c to HC08SOURCES
8102         * device/lib/clean.mk: added hc08 to the cleaning list
8103
8104 2003-11-04  Borut Razem <borut.razem AT siol.net>
8105
8106         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
8107           made 2003-11-04
8108         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
8109           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
8110           malloc is declared in standard stdlib.h
8111
8112 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8113
8114         * device/lib/hc08/Makefile: need to clean .rel not .o files
8115         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
8116
8117 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8118
8119         * src/port.h,
8120         * src/hc08/main.c,
8121         * src/mcs51/main.c,
8122         * src/ds390/main.c,
8123         * src/z80/main.c,
8124         * src/avr/main.c,
8125         * src/pic/main.c,
8126         * src/pic16/main.c,
8127         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
8128         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
8129         tests (which uses the port's oclsExpense function)
8130         * src/SDCC.y,
8131         * src/SDCCast.c,
8132         * src/SDCCicode.c,
8133         * src/hc08/gen.c,
8134         * src/ds390/gen.c,
8135         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
8136
8137 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8138
8139         * src/SDCCcse.c (ifxOptimize),
8140         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
8141         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
8142         deleting the IFX iCode.
8143         * src/hc08/ralloc.c: reduced unneeded slocs
8144         * src/hc08/gen.c: fixed bug in asmopToBoolean
8145
8146 2003-11-04  Borut Razem <borut.razem AT siol.net>
8147
8148         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
8149           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
8150           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
8151           transferred to configure
8152
8153 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
8154
8155         Use headers defined in the C[++] standards:
8156         * sim/ucsim/gui.src/serio.src/fileio.cc
8157         * sim/ucsim/gui.src/serio.src/frontend.cc
8158         * sim/ucsim/gui.src/serio.src/main.cc
8159         * sim/ucsim/gui.src/serio.src/posix_signal.cc
8160         * support/Util/NewAlloc.c
8161         * as/hc08/lklibr.c
8162         * as/mcs51/lklibr.c
8163         * as/z80/aslist.c
8164         * as/z80/assym.c
8165
8166 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8167
8168         * Added MSVC projects for hc08 assembler and linker:
8169         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
8170         /as/hc08/link_hc08.dsp
8171
8172 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
8173
8174         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
8175
8176 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
8177
8178         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
8179
8180 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8181
8182         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
8183
8184 2003-10-31  Borut Razem <borut.razem AT siol.net>
8185
8186         * support/cpp2/cpplib.h,
8187           support/cpp2/cpplib.c,
8188           support/cpp2/cpplex.c,
8189           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
8190           to switch _asm block preprocessing on / off. Default is
8191           #pragma preproc_asm +
8192
8193 2003-10-31  Borut Razem <borut.razem AT siol.net>
8194
8195         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
8196           when outputting comment blocks (when executed with -C option) and
8197           _asm (SDCPP specific) blocks
8198
8199 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8200
8201         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
8202
8203 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
8204
8205         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
8206
8207 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
8208
8209         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
8210         * src/SDCCast.c (decorateType): fixed bug #832664
8211
8212 2003-10-31  Borut Razem <borut.razem AT siol.net>
8213
8214         * support\cpp2\cpplex.c: fixed for SDCPP:
8215           comments(when executed with -C option) and _asm blocks
8216           were included even if they where in skipped #if block.
8217           Applied solution from GCC cpp 3.3.2
8218
8219 2003-10-31  Borut Razem <borut.razem AT siol.net>
8220
8221         * src/SDCC.lex: sdcc now understands both formats:
8222           '# <line_number> <file_name>' and
8223           '#line <line_number> <file_name>'
8224         * support/cpp2/cppmain.c: sdcpp now generates the standard
8225           '# <line_number> <file_name>' instead of former
8226           '#line <line_number> <file_name>'
8227
8228 2003-10-30  Borut Razem <borut.razem AT siol.net>
8229
8230         * support/cpp2/cpphash.h,
8231         * support/cpp2/cpplib.h
8232         * support/cpp2/cpplex.c,
8233         * support/cpp2/cppmain.c,
8234         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
8235
8236 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8237
8238         Fixed a number of problems revealed by bug #827883.
8239         * src/SDCCloop.c (loopInvariants): Spill location of the
8240         result operand should be recomputed if extracted from
8241         a loop. Also, don't extract assignments of an iTemp
8242         from a literal.
8243         * src/SDCCast.c (isConformingBody): loop reversal should
8244         not occur if the control variable is involved with a
8245         relational operator.
8246
8247 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
8248
8249         * .version: bumped to 2.3.6 to reflect the big improvements
8250         made by Erik and Klaus. Thanks!
8251
8252 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
8253
8254         Replaced the livrange code.
8255         * src/SDCClrange.c: added new LR code
8256         * src/SDCCloop.c,
8257         * src/SDCCBBlock.h: removed remainig parts from old LR code
8258         * src/ds390/ralloc.c,
8259         * src/ds390/gen.c: minor fixes to make it work with new code
8260
8261 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8262
8263         * as/hc08/asm.h,
8264         * as/hc08/lkrloc.c,
8265         * src/hc08/gen.c,
8266         * src/hc08/ralloc.c: Fix various warnings related to the hc08
8267         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
8268         (tweaked fix for bug #818696)
8269
8270 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8271
8272         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
8273
8274 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8275
8276         * src/SDCCmain.c,
8277         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
8278         * src/mcs51/gen.c (gencjneshort),
8279         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
8280         more efficient (per Scott Bronson's suggestion)
8281
8282 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8283
8284         Extended the semantics of the critical keyword to include
8285         individual statements. See RFE #827755 and #799831
8286         * src/SDCC.y
8287         * src/SDCCicode.c
8288         * src/SDCCopt.c
8289         * src/SDCCast.c
8290         * support/Util/SDCCerr.c
8291         * support/Util/SDCCerr.h
8292         * src/mcs51/gen.c
8293         * src/ds390/gen.c
8294         * src/hc08/gen.c
8295
8296 2003-10-19  Borut Razem <borut.razem AT siol.net>
8297
8298         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
8299
8300 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8301
8302         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
8303         Fixed bug #818696
8304         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
8305         and predecrement operand is displayed
8306
8307 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8308
8309         * src/SDCCval.c (valMinus): fixed bug #826041
8310
8311 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8312
8313         Some hc08 related updates that I missed earlier
8314         * sim/ucsim/stypes.h
8315         * support/regression/ports/hc08/spec.mk
8316
8317 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8318
8319         New target "hc08" for the Motorola 68hc08 family of micros
8320
8321         * configure
8322         * configure.in
8323         * Makefile
8324         * src/hc08/*
8325         * src/SDCCmain.c
8326         * src/port.h
8327         * sim/ucsim/hc08.src/*
8328         * sim/ucsim/configure.in
8329         * src/ucsim/configure
8330         * sim/ucsim/packages_in.mk
8331         * as/hc08/*
8332         * as/Makefile
8333         * device/include/mc68hc908qy.h
8334         * device/lib/hc08/*
8335         * device/lib/Makefile.in
8336         * support/regression/ports/hc08/*
8337         * support/regression/Makefile
8338
8339 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8340
8341         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
8342         regression test
8343         * src/ds390/gen.c (genCast): fixed bug #821957
8344
8345 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8346
8347         * device/lib/logf.c: "fixed" overlay bug
8348         * support/regression/ports/host/spec.mk: added m library
8349         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
8350         * support/regression/tests/float_trans: added (for Eric)
8351
8352 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
8353
8354         * src/mcs51/gen.c (genCpl): fixed bug
8355         http://sf.net/mailarchive/message.php?msg_id=6263915
8356
8357 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
8358
8359         * src/SDCCast.c (decorateType): added extended constant folding
8360         * src/SDCCsymt.c (computeType): cleanup
8361         * src/SDCCval.c (valShift): minor optimization
8362         * support/regression/tests/ast_constant_folding.c: added
8363
8364 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8365
8366         * src/SDCCmain.c: removed some unintended changes
8367
8368 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8369
8370         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
8371         * src/z80/gen.c: fixed part of bug #817589
8372         * src/SDCCsymt.c (checkFunction): fixed bug #817895
8373
8374 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
8375
8376         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
8377         * src/SDCCcflow.c
8378         * src/SDCCcse.c
8379         * src/SDCCdflow.c
8380         * src/SDCClabel.c
8381         * src/SDCClrange.c
8382         * src/SDCCmem.c
8383         * src/SDCCopt.c
8384         * src/SDCCpeeph.c
8385         * src/SDCCset.c
8386         * src/avr/ralloc.c
8387         * src/ds390/ralloc.c
8388         * src/izt/ralloc.c
8389         * src/mcs51/ralloc.c
8390         * src/pic/ralloc.c
8391         * src/pic16/ralloc.c
8392         * src/xa51/ralloc.c
8393         * src/z80/ralloc.c
8394         * src/z80/gen.c: removed unused label "release:"
8395
8396 2003-10-06  Borut Razem <borut.razem AT siol.net>
8397
8398         * src/SDCC.lex: removed definition of unused variables
8399           save_optimize and save_options
8400
8401 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
8402
8403         * clean.mk: removed '=' in "-maxdepth=1"
8404         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
8405         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
8406
8407 2003-10-06  Borut Razem <borut.razem AT siol.net>
8408
8409         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
8410           my_unput() replaced by unput()
8411
8412 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
8413
8414         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
8415         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
8416         type-punned pointer will break strict-aliasing rules"
8417         Old LR behaviour is again default; Klaus' LR can be choosen by
8418         defining the environment variable LRKLAUS
8419         * src/SDCCBBlock.h
8420         * src/SDCCloop.c
8421         * src/SDCClrange.c
8422         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
8423         * clean.mk: fixed removal of files in bin/CVS/
8424         * device/lib/clean.mk: fixed removal of directories small and large
8425         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
8426         * src/SDCCicode.c,
8427         * src/SDCCval.c: removed superflous test for pedantic
8428
8429 2003-10-05  Borut Razem <borut.razem AT siol.net>
8430
8431         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
8432           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
8433           message "unmatched #pragma SAVE and #pragma RESTORE"
8434
8435 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8436
8437         * doc/sdccman.lyx: various additions and updates (interrupts, inline
8438           assembly, critical functions, atomic, nojtbound)
8439
8440 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
8441
8442         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
8443         * src/SDCCBBlock.h
8444         * src/SDCCloop.c
8445         * src/SDCCloop.h
8446         * src/SDCClrange.c
8447
8448 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8449
8450         * src/z80/gen.h,
8451         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8452         * src/mcs51/gen.h
8453         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8454         * src/ds390/gen.h
8455         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8456         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
8457         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
8458
8459 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8460
8461         * src/z80/gen.c (genRet): fixed bug #524753
8462         * src/z80/gen.c (genCast): fixed internal error on cast from
8463         pointer to long
8464         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
8465         fix for bug #477835 to the z80
8466         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
8467         for tracking iCodes in the peephole optimizer for z80
8468
8469 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8470
8471         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
8472         the other part of bug #814548
8473         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
8474
8475 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
8476
8477         * src/SDCCcse.c: fixed part of bug #814548
8478
8479 2003-09-28  Borut Razem <borut.razem AT siol.net>
8480
8481         * src/asm.c: rewrite of printILine() to use temporary file instead
8482           a pipe
8483         * src/xa51/main.c: commented out declaration of int rewinds
8484
8485 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8486
8487         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
8488
8489 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8490
8491         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
8492         * src/asm.c (printILine): Fixed bug #811015
8493
8494 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8495
8496         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
8497         freeing.
8498
8499 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8500
8501         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
8502         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
8503         to correctly handle general case of AOP_PAIRPTR
8504         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
8505
8506 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8507
8508         * src/mcs51/ralloc.c (fillGaps),
8509         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
8510         register positioning bug)
8511
8512 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
8513
8514         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
8515
8516 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8517
8518         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
8519         genCodePointerGet, genGenPointerGet, genFarPointerSet,
8520         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
8521         (ralloc doesn't intentionally do this now, but perhaps later)
8522         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
8523         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
8524         register positioning bugs (Fixed bug #762602 and #795325)
8525         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
8526         (Fixed bug #808779)
8527         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
8528         lines that --i-code-in-asm generates
8529
8530 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8531
8532         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
8533         trying to fclose a FILE* that was already closed.
8534
8535 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8536
8537         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
8538         of const struct should be treated as if const themselves)
8539
8540 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
8541
8542         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
8543
8544 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8545
8546         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
8547         Unix (/n) and DOS (/r/n) line terminations.
8548
8549 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8550
8551         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
8552         bug #613775
8553
8554 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8555
8556         * src/mcs51/gen.c (genFunction, genEndFunction),
8557         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
8558         and restore of EA so that stack offsets to parameters are
8559         correct when using both critical and reentrant/stack-auto.
8560         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
8561         size (can be triggered in error if sloc is shared between
8562         different sized objects)
8563         * device/include/float.h: fixed macros to explicitly use
8564         unsigned long where needed
8565
8566 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
8567
8568         Feature req. 799831: added code to allow nesting of critical functions
8569         * src/mcs51/gen.c (genFunction, genEndFunction)
8570         * src/ds390/gen.c (genFunction, genEndFunction)
8571
8572 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8573
8574         * src/SDCCsymt.c (sclsFromPtr),
8575         * src/SDCCsymt.h,
8576         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
8577         support for standard C idiom of memory mapped variables; for
8578         example, *((xdata int*)0x1234) = 1 is now internally equivalent
8579         to xdata int at 0x1234 tempvar = 1.
8580         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
8581         provided by Akiya ISHIDA
8582
8583 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
8584
8585         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
8586         * src/SDCCval.c (constVal): added reduction from int to char
8587         * src/SDCCval.c (valMult, valDiv): fixed sign handling
8588         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
8589         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
8590         to ignore the sign
8591         * support/regression/tests/shifts.c: fixed
8592
8593 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8594
8595         * src/z80/gen.c (genXor): Fixed bug #805445
8596
8597 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8598
8599         Fixed bug #621531 (const & volatile confusion in the type chain).
8600         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
8601         refer to the const or volatile state of the pointer itself.
8602
8603         * src/SDCCast.c
8604         * src/SDCCglue.c
8605         * src/SDCCicode.c
8606         * src/SDCCsymt.c
8607         * src/SDCCval.c
8608         * src/SDCC.y
8609         * src/SDCCsymt.h
8610         * src/pic/gen.c
8611         * src/pic/ralloc.c
8612         * src/pic16/gen.c
8613         * src/pic16/ralloc.c
8614         * support/regression/tests/const.c
8615
8616 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8617
8618         When checking for duplicated modules, use absolute paths
8619         instead of relative paths.  Files changed:
8620
8621         * as/mcs51/lklib.c
8622         * link/z80/lklib.c
8623
8624 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8625
8626         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
8627
8628 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8629
8630         * device/include/string.h: added size_t typedef, changed
8631         prototypes to use size_t, eliminated separate reentrant and
8632         non-reentrant declarations, added _memmove declaration
8633         * device/lib/_memcpy.c: changed to use size_t instead of int,
8634         changed /4 to >>2 to avoid division library call
8635         * device/lib/_memcmp.c,
8636         * device/lib/_memset.c,
8637         * device/lib/_strncat.c,
8638         * device/lib/_strncpy.c,
8639         * device/lib/_strncmp.c: changed to use size_t instead of int
8640         * device/lib/_memmove.c: new file (fixed bug #772294)
8641         * device/lib/Makefile.in: added _memmove.c
8642         * device/lib/z80/asm_strings.s: fixed bug #772290
8643         * support/regression/tests/bitfields.c: attempt to fix host assertion
8644         failure on amd64-unknown-linux2.2
8645
8646 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8647
8648         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
8649         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
8650         * as/z80/asmain.c (main): fixed bug #801766
8651
8652 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
8653
8654         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
8655         compilers
8656
8657 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8658
8659         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
8660         reported in bug #800609
8661
8662 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
8663
8664         * Top header beautifications in src/pic16 directory:
8665           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
8666           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
8667           pcoderegs.h, ralloc.c, ralloc.h
8668         * main.c: added top header and GPL license notice
8669         * pcode.c: fixed the if-conditional warning
8670
8671 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
8672
8673         * device/lib/_mullong.c: replaced int by short for gcc
8674
8675 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8676
8677         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
8678         and JUMPTABLE iCodes properly now (worked by accident before)
8679         * src/mcs51/gen.c (leftRightUseAcc),
8680         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
8681         iCode properly now. Use getSize instead of nRegs since a & b
8682         aren't part of the nRegs tally.
8683
8684 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
8685
8686         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
8687         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
8688           before instructions that use the _STATUS register
8689
8690 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
8691
8692         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
8693         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
8694         fetching of the pointer
8695         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
8696         copied from genNearPointerSet()
8697         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
8698         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
8699         If they pop r0/r1 they must be called in the opposite order than aopOp().
8700         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
8701         (resp. --stack-auto), prepared for --xstack
8702
8703 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8704
8705         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
8706
8707 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8708
8709         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
8710         these ports have their own __sdcc_external_start()
8711
8712 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
8713
8714         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8715         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
8716         type for bits was changed. It resulted in bit variables becoming
8717         global, which is not permitted in PIC 14 assembly output.
8718
8719 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8720
8721         * doc/sdccman.lyx: various additions and updates. Rearranged sections
8722
8723 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8724
8725         Z80 and MCS51 linkers complaint if a public symbol is defined
8726         in more than one library module:
8727
8728         * as/mcs51/lklib.c
8729         * link/z80/lklib.c
8730         * as/mcs51/Makefile.in
8731
8732 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8733
8734         A few small changes that speed up the peephole optimizer.
8735
8736         * src/SDCCpeeph.c
8737
8738 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8739
8740         Try to make the peephole optimizer smarter by maintaining
8741         an association between the assembly source code and the
8742         iCodes that originated them. Put this information to use
8743         with a new peephole rule condition "notVolatile" so that
8744         the rules can be aggressive yet still safe.
8745
8746         * src/SDCCpeeph.c
8747         * src/SDCCpeeph.h
8748         * src/mcs51/gen.c
8749         * src/mcs51/peeph.def
8750
8751 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8752
8753         Fixed bug #741761
8754
8755         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
8756         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
8757         if the left or right operand symbols have the accuse flag set.
8758
8759 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8760
8761         Changed the type of the result of the ! (NOT) operator to char;
8762         previously it returned the same type as the source. This allows
8763         us to eliminate all the genFloatNot functions (all of its target
8764         implementations were very buggy) since !float can use the same
8765         code as !long now.
8766
8767         * src/SDCCicode.c (ast2iCode): ! returns char
8768         * src/mcs51/gen.c (genNot, genNotFloat),
8769         * src/ds390/gen.c (genNot, genNotFloat),
8770         * src/z80/gen.c (genNot, genNotFloat),
8771         * src/pic/gen.c (genNot, genNotFloat),
8772         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
8773
8774 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
8775
8776         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8777         1. Interrupt would not compile properly. Ensure PCLATH register is saved
8778            during interrupts. Ensure WSAVE is located at a shared bank address.
8779         2. Fixed page selection in some places
8780         3. Fixed BTFSS/C to where necessary use registers directly and not simply
8781            the registers name strings.
8782         4. Fixed "signed / unsigned compare" compiler warnings.
8783         5. The PIC port manages its own allocation of the general purpose
8784            registers, but makes no attempt to reuse them. As a result when
8785            compiling it soon runs out of general purpose registers. Some
8786            additional code was added to the files pcode.c and device.c to walk
8787            through the function call tree and rename the registers so that they
8788            get reused.
8789
8790         * src/pic/device.c
8791         * src/pic/gen.c
8792         * src/pic/glue.c
8793         * src/pic/pcode.c
8794         * src/pic/pcode.h
8795         * src/pic/ralloc.c
8796         * src/pic/ralloc.h
8797         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
8798         genPlus() & genMinus() when the result is the same as left or right
8799
8800 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8801
8802         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
8803
8804 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8805
8806         Made bitfield a distinct type from bit so that bitfields
8807         convert as per ANSI C and bits retain their traditional
8808         boolean style behaviour. Implemented bitfield support in
8809         the z80 port.
8810
8811         * src/SDCCsymt.h,
8812         * src/SDCCsymt.c,
8813         * src/SDCCast.c,
8814         * src/cdbFile.c,
8815         * src/mcs51/gen.c,
8816         * src/ds390/gen.c: bit v bitfield split
8817         * src/z80/gen.c: New support for bitfields
8818         * support/regression/tests/bitfields.c: reenabled z80,
8819         added more tests
8820
8821 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8822
8823         Rules 246.x, 247.x relate to bitfields, the others speed up
8824         access to xdata mapped I/O devices.
8825
8826         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
8827
8828 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8829
8830         Cleaned up genPackBits and genUnpackBits and added two helper
8831         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
8832         for literal assignments in genPackBits (thanks to Frieder for
8833         reminding me).
8834
8835         * src/mcs51/gen.c
8836         * src/ds390/gen.c
8837
8838 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8839
8840         Fixed bug #748310 (pointer to function type mishandled when the
8841         function name is omitted). Also fixed a SIGSEGV when a function
8842         attribute (reentrant, etc) is used on a non-function or on a
8843         function but misplaced before the parameter list.
8844
8845         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
8846         bug #748310
8847         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
8848         * support/Util/SDCCerr.h,
8849         * support/Util/SDCCerr.c: Added func attr misuse error msg
8850
8851 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8852
8853         Fixed bug #787649 by anonymous
8854         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
8855         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
8856
8857 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8858
8859         Fixed numerous bitfield problems.
8860
8861         * src/SDCC.y: More bitfield related error checking
8862         * src/SDCCsymt.h,
8863         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
8864         * support/Util/SDCCerr.h,
8865         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
8866         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8867         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8868         * support/regression/tests/bitfields.c: tests added
8869
8870 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8871
8872         Made the constant following the "interrupt" keyword optional. If
8873         omitted, the function will not automatically be given an entry
8874         in the interrupt vector table (similar to #pragma NOIV, but
8875         less syntacticly kludgy). The interrupt number is also now
8876         range checked. Also fixed a bug in the high order bit example
8877         in the manual.
8878
8879         * src/SDCC.y
8880         * src/SDCCmem.c
8881         * src/SDCCglue.c
8882         * src/SDCCsymt.h
8883         * support/Util/SDCCerr.c
8884         * support/Util/SDCCerr.h
8885         * doc/sdccman.lyx
8886
8887 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8888
8889         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
8890         * src/SDCCicode.c (operandOperation): rewritten some ops
8891         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
8892         * src/SDCCsymt.c (computeType): literals are handled the same way as any
8893         other type
8894         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
8895         be re-activated by defining REDUCE_LITERALS)
8896         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
8897         unsigned, but are signed by default
8898         * src/SDCCval.c (constVal): rearranged
8899         * src/SDCCval.c (valMod): preliminary fix
8900         * src/SDCCval.c (valCastLiteral): use TYPE_* types
8901         * support/regression/literalop.c: added, work in progress
8902
8903 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8904
8905         Generate warnings for useless declarations like "char data;"
8906         that don't do what new users expect.
8907
8908         * src/SDCC.y
8909         * support/Util/SDCCerr.h
8910         * support/Util/SDCCerr.c
8911
8912 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
8913
8914         * src/SDCCval.c (valMult): fix overflow detection of negative int
8915
8916 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8917
8918         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
8919
8920         Changes to support big endian targets:
8921
8922         * src/ports.h
8923         * src/SDCCglue.c
8924         * src/avr/main.c
8925         * src/ds390/main.c
8926         * src/izt/i186.c
8927         * src/mcs51/main.c
8928         * src/pic/main.c
8929         * src/pic16/main.c
8930         * src/xa51/main.c
8931         * src/z80/main.c
8932
8933 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
8934
8935         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
8936         * device/lib/time.c: fixed warning "integer overflow in expression"
8937
8938 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
8939
8940         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
8941         * src/SDCCval.c (constVal): changed default to signed; hex and octal
8942         constants are unsigned; added recognition of "u" flag for unsigned
8943         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
8944         * src/SDCCval.c (valDiv, valMod): fixed signdness
8945         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
8946         signedness of modulo, left and right shift
8947         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
8948         * support/Util/SDCCerr.h: added warning W_INT_OVL
8949         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
8950         * src/SDCCast.c (ast_print): improved output of constants
8951
8952 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8953
8954         Fixed some warnings when building with MSVC:
8955
8956         * as\mcs51\asdata.c
8957         * as\z80\asdata.c
8958         * as\mcs51\asm.h
8959         * as\z80\asm.h
8960         * link\z80\aslink.h
8961         * link\z80\lkdata.c
8962         * link\z80\lkeval.c
8963         * link\z80\lkgb.c
8964         * link\z80\lkihx.c
8965         * link\z80\lks19.c
8966         * link\z80\lksym.c
8967         * support\cpp2\cpplib.c
8968         * src\ds390\gen.c
8969         * src\mcs51\gen.c
8970
8971 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
8972
8973         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
8974
8975 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8976
8977         * support\librarian\clean.mk: Do not remove Makefile.
8978         * support\librarian\Makefile: added.
8979
8980 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8981
8982         Added librarian to MSVC build:
8983         * all.dsp
8984         * sdcc.dsw
8985         * support\librarian\librarian.dsp
8986
8987         'configure' not needed for librarian, removed:
8988         * support\librarian\configure
8989         * support\librarian\configure.in
8990         * support\librarian\config_in.h
8991         * support\librarian\Makefile.in
8992
8993         Hopefully these ones built the librarian and the rest of sdcc properly:
8994         * Makefile
8995         * Makefile.common.in
8996
8997         Messed up 'configure', so revert to previous version:
8998         * configure
8999         * configure.in
9000
9001 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
9002
9003         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
9004         there, while the mantissa of a double is "only" 53 bits wide.
9005
9006 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9007
9008         Adding sdcclib to the build.  MSVC project coming soon.
9009         Files added/changed:
9010
9011         * support\librarian\clean.mk
9012         * support\librarian\configure
9013         * support\librarian\configure.in
9014         * support\librarian\config_in.h
9015         * support\librarian\Makefile.bcc
9016         * support\librarian\Makefile.in
9017         * support\librarian\sdcclib.c
9018         * Makefile.bcc
9019         * Makefile
9020         * Makefile.common.in
9021         * configure
9022         * configure.in
9023
9024 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9025
9026         Linker now complaints if linked modules have conflicting options, for
9027         example, one compiled using --model-large and another one compiled with
9028         --model-small.  The following files were modified:
9029
9030         * as\mcs51\asdata.c
9031         * as\mcs51\aslink.h
9032         * as\mcs51\asm.h
9033         * as\mcs51\asmain.c
9034         * as\mcs51\asout.c
9035         * as\mcs51\i51pst.c
9036         * as\mcs51\lkdata.c
9037         * as\mcs51\lklibr.c
9038         * as\mcs51\lkmain.c
9039         * as\z80\asdata.c
9040         * as\z80\asm.h
9041         * as\z80\asmain.c
9042         * as\z80\asout.c
9043         * as\z80\z80pst.c
9044         * link\z80\aslink.h
9045         * link\z80\lkdata.c
9046         * link\z80\lklibr.c
9047         * link\z80\lkmain.c
9048         * src\SDCCglue.c
9049
9050 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9051
9052         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
9053         as/mcs51/lklibr.c: Generate a warning when a library is not found.
9054
9055 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
9056
9057         * src/z80/mappings.i: fix _mul[us][int,long] entries
9058
9059 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9060
9061         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
9062
9063 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
9064
9065         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
9066         * support/regression/tests/bitopcse.c: added
9067         fixed warning:
9068         * src/avr/gen.c:
9069         * src/pic/gen.c:
9070         * src/pic16/gen.c:
9071         * src/z80/gen.c:
9072         * src/xa51/gen.c:
9073
9074 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9075
9076         added support for new library format to z80, gbz80 linkers:
9077         *link/z80/aslink.h
9078         *link/z80/lklex.c
9079         *link/z80/lklib.c
9080         *link/z80/lklist.c
9081
9082 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
9083
9084         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
9085         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
9086
9087 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
9088
9089         added DUMMY_READ_VOLATILE:
9090         * src/SDCC.y:
9091         * src/avr/gen.c:
9092         * src/xa51/gen.c:
9093         * src/z80/gen.c:
9094         * src/pic/gen.c:
9095         * src/pic16/gen.c:
9096         * src/mcs51/gen.c:
9097         * src/ds390/gen.c:
9098         * src/SDCCcse.c (algebraicOpts): many improvements
9099         * src/SDCCcse.h: removed algebraicOpts()
9100         * src/SDCCicode.c (picDummyRead): added
9101
9102 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9103
9104         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
9105         "Insufficient space in data memory".
9106
9107 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9108
9109         * src/mcs51/gen.c: fixed bug #771358
9110         * src/z80/gen.c: fixed bug #759087
9111
9112 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
9113
9114         * src/pic16/glue.c: minor cleanup by Vangelis
9115
9116 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9117
9118         * device/include/regc515c.h: fixed #758477
9119         * device/lib/_gptrget.c: saving some cycles in generic pointer get
9120         * device/lib/_gptrput.c: saved a few bytes
9121         * my tab spacing is 8, yours too?)
9122         * device/lib/_ser.c: process RX bytes earlier than TX bytes
9123         * device/lib/serial.c: process RX bytes earlier than TX bytes
9124         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
9125
9126 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9127
9128         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
9129
9130 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9131
9132     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
9133
9134 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
9135
9136         * device/lib/Makefile.in: bad fix, reverted to 1.43
9137
9138 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
9139
9140         * device/lib/Makefile.in: added missing z80 object files
9141
9142 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
9143
9144         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
9145         pic16 progress by Vangelis:
9146         * src/SDCCglobl.h:
9147         * src/SDCCmain.c:
9148         * src/pic/Makefile:
9149         * src/pic:
9150         * pic/Makefile:
9151         * pic16/device.c:
9152         * pic16/device.h:
9153         * pic16/gen.c:
9154         * pic16/gen.h:
9155         * pic16/genarith.c:
9156         * pic16/glue.c:
9157         * pic16/main.c:
9158         * pic16/pcode.c:
9159         * pic16/pcode.h:
9160         * pic16/pcodepeep.c:
9161         * pic16/peeph.def:
9162
9163 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9164
9165     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
9166
9167 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9168
9169     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
9170     added gbz80 build to MSVC project.
9171     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
9172     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
9173     from 8051 stuff and setup so it links using a .lnk file.
9174
9175 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9176
9177     * support/librarian/sdcclib.c: sdcc librarian.
9178     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
9179     with sdcclib.
9180
9181 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9182
9183     * as/mcs51/lkmain.c: properly handle extensions in function afile.
9184
9185 2003-07-02  Borut Razem <borut.razem AT siol.net>
9186
9187         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
9188         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
9189         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
9190         src/xa51/main.c, src/z80/main.c:
9191         virtualization of glue() function: each port has it's own glue function,
9192         which is accessed by do_glue function pointer in PORT.general structure
9193
9194 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
9195
9196         * DS800C400 fun, improved ROM interface and tinibios.
9197
9198 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
9199
9200         * More support for DS80C400. Now includes beginning of interface to ROM.
9201
9202 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
9203
9204         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
9205
9206 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9207
9208         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
9209
9210 2003-06-19  Borut Razem <borut.razem AT siol.net>
9211
9212         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
9213
9214 2003-06-19  Borut Razem <borut.razem AT siol.net>
9215
9216         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
9217         fixed Z80 port - crt0.o: cannot open.
9218
9219 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
9220
9221         * support/Util/MySystem.c (merge_command): revert bad fix
9222
9223 2003-06-18  Borut Razem <borut.razem AT siol.net>
9224
9225         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
9226
9227 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9228
9229         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
9230         option --use-stdout sends errors to stdout instead of stderr.
9231
9232 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
9233
9234         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
9235
9236 2003-06-15  Borut Razem <borut.razem AT siol.net>
9237
9238         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
9239         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
9240         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
9241         fixed width array of pointers replaced with sets;
9242         multiple include and lib paths ared transferred to preprocessor and linker
9243         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
9244         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
9245         fixed width array of pointers
9246         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
9247         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
9248         fixupPath(), getPathDifference()
9249         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
9250         fixed width array of pointers
9251
9252 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
9253
9254         * src/pic16/ralloc.c: fix warnings
9255         * src/pic16/pcode.c: fix warning
9256
9257 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
9258
9259          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
9260         know all the details, but essentially this set of changes enable
9261         the pic16 port to generate movff instructions and generate assembler
9262         directives,
9263         * src/SDCCmain.c:
9264         * src/pic16/gen.c:
9265         * src/pic16/glue.c:
9266         * src/pic16/pcode.c:
9267         * src/pic16/device.c:
9268         * src/pic16/main.c:
9269         * src/pic16/pcode.h:
9270         * src/pic16/pcoderegs.c:
9271         * src/pic16/ralloc.c:
9272         * src/pic16/ralloc.h:
9273
9274 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9275
9276         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
9277         added option --vc, so sdcc errors and warnings are compatible with
9278         Microsoft Visual Studio.
9279
9280 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9281
9282         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
9283           device/lib/libfloat.lib: added atof function.
9284
9285 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
9286
9287         * doc/sdccman.lyx: updated to Lyx 1.3
9288         * doc/cdbfileformat.lyx: updated to Lyx 1.3
9289         * doc/test_suite_spec.lyx: updated to Lyx 1.3
9290         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
9291
9292 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
9293
9294         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
9295
9296 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9297
9298         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
9299           additions to the "related tools/documentation" section
9300
9301 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
9302
9303         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
9304
9305 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
9306
9307         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
9308         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
9309
9310 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
9311
9312         * doc/sdccman.lyx: fix double dash and other minor things
9313         * doc/Makefile: fix double dash
9314
9315 2003-05-28  Karl Bongers(patches from Martin Helmling)
9316         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
9317           condition and ignore commands.
9318
9319 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9320
9321         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
9322           is in parts still quite out of date, I did changes as far as I felt makes sense
9323           for a non-native english speaker.
9324           Please feel free to add to the manual or to correct my changes.
9325         * doc/Makefile: undid touching the date of intermediate tex files.
9326
9327 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9328
9329         * doc/sdccman.lyx: Manual has an index now
9330
9331 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
9332
9333         Finalize muluint/mulsint and mululong/mulslong merging:
9334         * device/lib/_mulint.c
9335         * device/lib/_mullong.c
9336         * device/lib/gbz80/mul.s
9337         * device/lib/gbz80/stubs.s
9338         * device/lib/z80/mul.s
9339         * device/lib/z80/stubs.s
9340         * src/SDCCsymt.c (initCSupport)
9341
9342 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9343
9344         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
9345         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
9346           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
9347           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
9348           instead of /Zm500.
9349
9350 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9351
9352         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
9353           the regression tests I'm not brave enough to enable 245.b, 245.c
9354         * doc/sdccman.lyx: added latex preamble for hyperref package.
9355           Using pdflatex this will give you a hyperlinked pdf file with
9356           bookmarks. (prepend '%' before /usepackage if this breaks something)
9357
9358 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9359
9360          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
9361
9362 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
9363
9364         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
9365
9366 2003-05-21    <johan AT balder>
9367
9368         * src/SDCCglue.c (printIval): fixed bug #739934
9369
9370 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9371
9372         Applied patch from bug 737905 (renamed yylineo to mylineno):
9373         * src/altlex.c
9374         * src/SDCCast.c
9375         * src/SDCglobl.h
9376         * src/SDCC.lex
9377         * src/SDCCsymt.c
9378         * src/SDCCval.c
9379         * src/pic16/pcode.c: Cleaned warnings
9380         * src/pic16/pcodeflow.c: Cleaned warnings
9381         * src/pic16/pcoderegs.c: Cleaned warnings
9382
9383 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
9384
9385         * src/pic16/pcode.c: Cleaned warnings
9386         * src/pic16/pcodepeep.c: Cleaned warnings
9387         * src/pic16/ralloc.c: Cleaned warnings
9388
9389 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9390
9391         * doc/sdccman.lyx: fixed bug 739745
9392         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
9393
9394 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
9395
9396         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
9397         it can be defined with CFLAGS when running configure
9398         * src/SDCCmain.c: fixed compiling + linking with object files
9399
9400 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
9401
9402         * configure.in: configure for pic16 port,
9403             added --disable-pic16-port
9404         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
9405         * src/SDCCmain.c: linkOptions is changed to set *,
9406             added if/endif conditional macros to remove options help
9407             messages from optionsTable when a port is not configured, added
9408             support for the PIc16 port in the ports table, when executing
9409             the compiler with no port specified on command line, a default
9410             port is selected with the new macro DEFAULT_PORT which is
9411             defined in port.h, in setDefaultOptions() linkOptions is removed
9412             from initialization assignment, since now it is a set,
9413             parseCmdLine uses setParseWithComma for linkOptions, in
9414             linkEdit() linkOptions are accessed with new function indexSet()
9415             which returns the i'th item of a set variable. See SDCCset.c, in
9416             linkEdit() when calling buildCmdLine(), added linkOptions as
9417             last argument. Now users can pass arguments to gplink via the
9418             -Wl option, main() uses pic16glue() to glue up pic16 programs
9419         * src/SDCCpeeph.c: various changes to support pic16
9420         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
9421             return the i'th item of the set
9422         * src/SDCCset.h: added function prototype for indexSet()
9423         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
9424         * src/clean.mk: added pic16 in CLEANALLPORTS variable
9425         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
9426             added macro DEFAULT_PORT
9427         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
9428         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
9429             generated
9430         * src/pic16/glue.c: commented out some error producing lines
9431         * src/pic16/main.c: __config directives are commented out to stop
9432             gpasm complaining and test the linkage with gplink, _linkCmd and
9433             _asmCmd changed to be more gplink and gpasm friendly
9434         * src/pic16/peeph.def: peep rule 3 is commented out, since it
9435             produced an error when parsed, peep rule 12 is added to utilize
9436             movff, but it is commented out since the pCode does not support
9437             yet a command with 2 address arguments
9438
9439 2003-05-18    <johan AT balder>
9440
9441         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9442         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9443 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
9444
9445         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
9446   Added feature to script commands from file.
9447
9448 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
9449
9450         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
9451         * src/SDCCutil.c: include ctype.h for win32
9452
9453 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
9454
9455         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
9456
9457 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
9458
9459         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
9460   Fixed so you can set breakpoints prior to run, run does not stop
9461   on entry now.  Add tbreak.  Other enhancements and fixes for use
9462   with ddd.
9463
9464 2003-05-12  Borut Razem <borut.razem AT siol.net>
9465
9466         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
9467
9468 2003-05-11  Borut Razem <borut.razem AT siol.net>
9469
9470         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
9471         the path of bin directory, so that PATH is the only env. variable, which has to be set
9472         in case of standard installation.
9473         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
9474         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
9475         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
9476
9477 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9478
9479         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
9480         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
9481         temp files are in the port dir; clean the gen/test directory when
9482         generating new test.c
9483         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
9484         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
9485         * support/regression/tests/zeropad.c: added
9486
9487 2003-05-09    <johan AT balder>
9488
9489         * src/SDCCglue.c: fixed bug #597940
9490
9491 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
9492
9493         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9494   cache sfr, optimize next,step, fix off by one sourceline,
9495   support ddd list function.
9496         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
9497
9498 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9499
9500         * support/regression/HTMLgen.py: added compare_s2f()
9501         * support/regression/Makefile: redo 1.27
9502         * support/regression/generate-cases.py: redo 1.5
9503
9504 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
9505
9506         * support/regression/tests/float.c: workaround 33 bit hex constant
9507         * support/regression/tests/simplefloat.c: fix division for host
9508
9509 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
9510
9511         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
9512         that tame's the PIC's over-aggressive optimizer.
9513
9514 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9515
9516          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
9517          support for MSVC.
9518
9519 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
9520
9521         Initial support for DS80C400. "Hello world" runs on TINIm400
9522         (with polled I/O).
9523
9524 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
9525
9526          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9527          * Some notes on ddd usage added in debugger/README
9528          Martin Helmling adding more features and fixes for ddd GUI debugger.
9529          Code added for nexti, stepi, up, down, and other adjustments.
9530
9531 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
9532
9533         * src/pic/pCodepeep.c non-wildcard asmops are now handled
9534         * src/pic/peeph.def Added two rules to optimize carry manipulation
9535         * src/pic/* removed debug printfs
9536
9537 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
9538
9539         * debugger/mcs51/cmd.c: added header newalloc.h
9540
9541 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
9542
9543         * as/Makefile: new EXEEXT
9544         * as/z80/Makefile: remove trailing slash of BUILDIR
9545         * as/z80/clean.mk: new EXEEXT
9546         * Makefile.common.in: add to CFLAGS (and others), don't replace it
9547         * support/cpp2/Makefile.in: new EXEEXT
9548         * src/pic/glue.c (pic14emitRegularMap): fixed warning
9549
9550 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
9551
9552         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
9553         EXEEXT was introduced to fix all related problems with targets
9554         "clean", "install" and "uninstall"; a couple of further flaws
9555         especially with "clean" have been fixed too
9556         * as/mcs51/Makefile.in
9557         * as/mcs51/clean.mk
9558         * as/z80/Makefile
9559         * Makefile
9560         * clean.mk
9561         * debugger/mcs51/Makefile.in
9562         * debugger/mcs51/clean.mk
9563         * link/z80/Makefile
9564         * link/z80/Makefile.in
9565         * link/z80/clean.mk
9566         * link/Makefile
9567         * packihx/Makefile.in
9568         * packihx/clean.mk
9569         * sim/ucsim/Makefile
9570         * sim/ucsim/clean.mk
9571         * sim/ucsim/avr.src/Makefile.in
9572         * sim/ucsim/avr.src/clean.mk
9573         * sim/ucsim/s51.src/Makefile.in
9574         * sim/ucsim/s51.src/clean.mk
9575         * sim/ucsim/xa.src/Makefile.in
9576         * sim/ucsim/xa.src/clean.mk
9577         * sim/ucsim/z80.src/Makefile.in
9578         * sim/ucsim/z80.src/clean.mk
9579         * sim/ucsim/main_in.mk
9580         * sim/ucsim/packages_in.mk
9581         * sim/ucsim/gui.src/Makefile.in
9582         * sim/ucsim/gui.src/serio.src/Makefile.in
9583         * sim/ucsim/gui.src/serio.src/clean.mk
9584         * src/Makefile.in
9585         * src/clean.mk
9586         * support/cpp2/Makefile.in
9587         * support/cpp2/clean.mk
9588         * support/makebin/Makefile
9589         * support/makebin/clean.mk
9590         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
9591         * doc/sdccman.lyx: --program-suffix no longer needed
9592
9593 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
9594
9595          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
9596          Martin Helmling added support for ddd GUI debugger.
9597          Code added to display assembly, set variables, and other commands
9598          to interface to ddd.
9599
9600 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
9601
9602         * as/Makefile: fix target clean
9603         * as/clean.mk: fix target clean
9604         * as/z80/clean.mk: fix target clean
9605
9606 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
9607
9608         * Makefile.common.in: added  AT EXEEXT AT
9609         * configure.in: removed all mingw32 stuff
9610         * configure: rebuilt from configure.in
9611         * doc/sdccman.lyx: updated section "installation"
9612         * support/scripts/sdcc_mingw32: adapted to configure
9613         * support/scripts/sdcc_cygwin_mingw32: added
9614
9615 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
9616
9617         * src/pic Added object file support for the PIC port
9618         * src/pic Applied patch from Craig Franklin (this started the object file support)
9619         * src/regression Updated the PIC regression tests for object files
9620
9621 2003-04-20  Borut Razem <borut.razem AT siol.net>
9622
9623         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
9624           lklex.c: In function `getfid':
9625           lklex.c:203: warning: array subscript has type `char'
9626         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
9627           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
9628         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
9629           stack handling macros
9630
9631 2003-04-19  Borut Razem <borut.razem AT siol.net>
9632
9633         * "handling space characters in file path" task:
9634         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
9635         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
9636         * support/Util/MySystem.h: make it self-sufficient
9637         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
9638           src/z80/main.c, sdcc/as/mcs51/lklex.c:
9639           handling space characters in file path
9640         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
9641           (it will be used by assemblers, which have their own includes, e.g. gpasm)
9642         * support/Util/MySystem.c: handling space characters in executable's path
9643
9644 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
9645
9646         * as/z80/Makefile: fix permanent rebuild of z80
9647         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
9648         * support/regression/tests/bitfields.c: added Johan's bitfields.c
9649
9650 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
9651
9652         * src/SDCCopt.c: add special case optimization to replace modulo by
9653           a power of two with a bitwise AND.
9654
9655 2003-04-18    <johan AT balder>
9656
9657         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
9658
9659 2003-04-17    <johan AT balder>
9660
9661         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
9662         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
9663
9664 2003-04-13  Borut Razem <borut.razem AT siol.net>
9665
9666         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
9667         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
9668           fixed mingw problem in adl_NORMALIZE_PATH
9669
9670 2003-04-12  Borut Razem <borut.razem AT siol.net>
9671
9672         * fixed "#pragma SAVE/RESTORE can not be nested":
9673         * src/SDCC.lex: reworked pragma handling functions
9674         * sdcc/src/SDCCglobl.h: reworked stack handling macros
9675         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
9676
9677 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9678
9679         * src/SDCCutil.c (pathEquivalent): defined but not used
9680         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
9681         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
9682         * configure: rebuilt from configure.in
9683         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9684         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9685         * device/include/Makefile.in: replace sdcc_datadir
9686         * device/lib/Makefile.in: replace sdcc_datadir
9687         * Makefile.common.in: add LDFLAGS from configure
9688         * packihx/Makefile.in: use LDFLAGS
9689         * src/Makefile.in: use LDFLAGS
9690         * support/cpp2/Makefile.in: add LDFLAGS from configure
9691         * support/makebin/Makefile: use LDFLAGS
9692         * .version: bumped version number to 2.3.5
9693
9694 2003-04-12  Borut Razem <borut.razem AT siol.net>
9695
9696         * completed "different paths" task:
9697         * src/SDCCmacro.c: fixed bug in handling quotes
9698         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
9699         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
9700
9701 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9702
9703         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
9704
9705 2003-04-11 kevin Vigor <kevin AT vigor.nu>
9706
9707         * ds390/gen.c ds390/peeph.def: fix bug 706781
9708
9709 2003-04-11  Borut Razem <borut.razem AT siol.net>
9710
9711         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
9712
9713 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
9714
9715         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
9716         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
9717          set - this bit used to not be set...).
9718         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
9719           bad code in PIC Port
9720         * src/regression/and2.c added to test bug 609268
9721         * src/regression/Makefile added and2.c to regression test
9722
9723
9724 2003-04-08    <johan AT CP255758-A>
9725
9726         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
9727         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
9728         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
9729
9730 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
9731
9732         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
9733         fix bug #487815
9734         * support/cpp2/Makefile.in: fix bug #487815
9735         * configure: rebuilt from configure.in
9736         * Makefile.common.in: docdir changed, new path suffixes
9737         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9738         * sdcc_vc_in.h: reflect changes from sdccconf.h
9739         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
9740         * src/SDCCutil.h: remove BINDIR hack
9741         * doc/sdccman.lyx: update new path hierarchy
9742
9743 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9744
9745         * src/SDCCpeeph.c: added okToRemoveSLOC test
9746
9747 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9748
9749         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
9750
9751 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9752
9753         * src/SDCCpeeph.c: added labelIsReturnOnly test
9754         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
9755
9756 2003-04-05    <johan AT balder>
9757
9758         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
9759         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
9760         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
9761         * src/SDCCast.c: fixed a warning
9762         * src/SDCCast.h: fixed a warning
9763         * src/SDCCicode.c (operandFromAst): fixed a warning
9764
9765 2003-04-04    <johan AT balder>
9766
9767         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
9768         * src/SDCCast.c (decorateType): fixed bug #715076
9769         * src/SDCC.y: fixed bug #702907
9770
9771 2003-04-03    <johan AT balder>
9772
9773         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
9774         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
9775         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
9776         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
9777         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
9778
9779 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
9780
9781         * _decdptr.c: fix return values
9782         * _gptrget.c: fix return values
9783         * _gptrgetc.c: fix return values
9784         * _gptrput.c: fix return values
9785         * _mulint.c: fix return values
9786         * as/z80/Makefile: fix 'make -j' problem
9787
9788 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
9789
9790         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
9791         * configure.in: big cleanup, updated to autoconf 2.5x
9792         * configure: rebuilt from configure.in
9793         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9794         * sdcc_vc_in.h: reflect changes from sdccconf.h
9795         * doc/Makefile: fixed a flaw in "make install"
9796
9797 2003-04-02    <johan AT balder>
9798
9799         * src/ds390/gen.c (genCmp): no comments
9800         * src/mcs51/gen.c (genCmp): no comments
9801         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
9802         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
9803
9804 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
9805
9806         * support/regression/generate-cases.py: place generated file in given sub directory
9807         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
9808         * support/regression/Makefile: improvements for 'make -j';
9809         side effect: it's simpler and faster now
9810
9811 2003-03-31  Borut Razem <borut.razem AT siol.net>
9812
9813         * src/z80/main.c: link-{port} and as-{port} defined without path
9814         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
9815
9816 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
9817
9818         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
9819
9820 2003-03-30  Borut Razem <borut.razem AT siol.net>
9821
9822         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
9823           changed type of list parameter to set
9824         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
9825         * src/port.h: changed type of do_assemble() parameter to set
9826         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
9827           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
9828           definition of "cppoutfilename" macro with NULL value in preProcess()
9829         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
9830         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
9831         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
9832           replaced with set *binPathSet
9833         * shash_add() deallocates the item, if allready exsists, before adding the new one
9834         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
9835
9836 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
9837
9838         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
9839           a nested for loop bug in the PIC port
9840         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
9841           for loops
9842
9843 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
9844
9845         * support/Util/dbuf.h: remove C++ stuff to make it portable
9846
9847 2003-03-28  Borut Razem <borut.razem AT siol.net>
9848
9849         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
9850           literal strings in stringLiteral()
9851         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
9852         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
9853           to the project
9854
9855 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
9856
9857         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
9858
9859 2003-03-26    <johan AT balder>
9860
9861         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
9862         * src/ds390/gen.c (saveRegisters): catched symbol abuse
9863         * src/SDCCast.c (decorateType): fixed " -v < 3"
9864
9865 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
9866
9867         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
9868         Added Lenny Story's debug infrastructure changes:
9869         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
9870         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
9871         * src/cdbFile.c: added
9872         * src/SDCCdebug.c: added
9873         * src/SDCCdebug.h: added
9874         * src/SDCCast.c (createFunction)
9875         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
9876         * src/SDCCmain.c (parseCmdLine, main)
9877         * src/SDCCmem.c (redoStackOffsets)
9878         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
9879         * src/SDCCsymt.h
9880         * src/common.h
9881         * src/avr/gen.c (genAVRCode)
9882         * src/ds390/gen.c (gen390Code)
9883         * src/mcs51/gen.c (gen51Code)
9884         * src/pic/gen.c (genpic14Code)
9885         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
9886         * src/xa51/gen.c (genXA51Code)
9887         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
9888
9889 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9890
9891         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
9892         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
9893
9894 2003-03-22    <johan AT balder>
9895
9896         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
9897
9898 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
9899
9900         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
9901         * doc/cdbfileformat.lyx: added, written by Lenny Story
9902         * doc/Makefile: added cdbfileformat.lyx
9903         * doc/clean.mk: added cdbfileformat.lyx
9904
9905 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
9906
9907         * src/mcs51/peeph.def: fix bug #705773
9908
9909 2003-03-20    <johan AT balder>
9910
9911         An sfr/sbit can have an "at #" AND an initializer
9912         * src/SDCCsymt.c (checkSClass):
9913         * src/SDCCmem.c (allocGlobal):
9914         * src/SDCCmem.c (allocLocal):
9915         * src/SDCCast.c (createBlock):
9916
9917 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
9918
9919         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
9920
9921 2003-03-16    <johan AT balder>
9922
9923         Undid the hackup of const and volatile, the problem is much bigger
9924         * src/SDCC.y:1.65
9925         * src/SDCCast.c:1.171
9926         * src/SDCCglue.c:1.138
9927         * src/SDCCicode.c:1.146
9928         * src/SDCCsymt.c:1.150
9929         * src/SDCCval.c:1.65
9930
9931 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
9932
9933         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
9934         * src/ds390/gen.c (genAddrOf): fixed bug #704087
9935
9936 2003-03-13    <johan AT balder>
9937
9938         Hackup const and volatile modifiers in type chains a bit:
9939         * src/SDCC.y:1.63
9940         * src/SDCCast.c:1.169
9941         * src/SDCCglue.c:1.136
9942         * src/SDCCicode.c:1.143
9943         * src/SDCCsymt.c1.146
9944         * src/SDCCsymt.h1.59
9945         * src/SDCCval.c:1.63
9946
9947 2003-03-12    <johan AT balder>
9948
9949         * src/SDCCBBlock.h: more LRH debugging junk
9950         * src/SDCCcflow.h: more LRH debugging junk
9951         * src/SDCCloop.c: more LRH debugging junk
9952         * src/SDCC.y (struct_declaration): fixed bug #697590
9953         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
9954         * src/ds390/gen.c (aopForRemat): fixed bug #700031
9955         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
9956
9957 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9958         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
9959         test function names must now match exactly).
9960         * src/SDCCcse.c: added special case in findCheaperOp to allow
9961         extending a short integer. Makes less awful code for bug 700121 test case.
9962
9963 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9964
9965         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
9966         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
9967
9968 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9969
9970         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
9971         actually called (operandsNotEqual() was called for all
9972         operandsNotEqualX tests).
9973
9974 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9975
9976         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
9977         with shorter literals. Fixes bug 700121.
9978
9979 2003-03-11    <johan AT balder>
9980
9981         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
9982
9983 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
9984
9985         * src/SDCCloop.c (mergeRegions): an evil beast is dead
9986         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
9987
9988 2003-03-10  Borut Razem <borut.razem AT siol.net>
9989
9990         * src/SDCCmain.c: pipe preprocessor's output
9991         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9992         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9993         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9994         which closes all pipes in pipeSet set
9995         * src/SDCCset.c: free deleted item in function deleteSetItem()
9996         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9997         moved from z80 to src subproject
9998         * .version: increased version number to 2.3.4
9999
10000 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
10001
10002         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
10003         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
10004         * support/regression/ports/xa51/spec.mk: fix typo
10005
10006 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
10007
10008         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
10009
10010 2003-03-09  Borut Razem <borut.razem AT siol.net>
10011
10012         * src/SDCCmain.c: pipe preprocessor's output
10013         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
10014         * sdcc_vc_in.h: define pclose as _pclose for WIN32
10015         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
10016         which closes all pipes in pipeSet set
10017         * src/SDCCset.c: free deleted item in function deleteSetItem()
10018         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
10019         moved from z80 to src subproject
10020
10021 2003-03-09  Borut Razem <borut.razem AT siol.net>
10022
10023         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
10024         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
10025         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
10026         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
10027         * src/SDCCglobl.h: unification of WIN32 native definitions
10028
10029 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10030
10031         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
10032
10033 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
10034
10035         * src/configure.in:   check for endianess (even while cross-compiling)
10036         * src/configure:      check for endianess (even while cross-compiling)
10037         * src/configure_in.h: check for endianess (even while cross-compiling)
10038         * src/avr/gen.c:        remove old endianess stuff
10039         * src/mcs51/gen.c:      remove old endianess stuff
10040         * src/ds390/gen.c:      remove old endianess stuff
10041         * src/pic/gen.c:        remove old endianess stuff
10042         * src/pic/genarith.c:   remove old endianess stuff
10043         * src/pic/glue.c:       fix endianess check
10044         * src/pic16/gen.c:      remove old endianess stuff
10045         * src/pic16/genarith.c: remove old endianess stuff
10046         * src/pic16/glue.c:     fix endianess check
10047         * src/xa51/gen.c:       remove old endianess stuff
10048         * src/z80/gen.c:        fix endianess check
10049         * src/SDCCglue.c:       fix endianess check
10050         * src/ds390/peeph.def: fix bug 700036
10051
10052 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
10053
10054         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
10055         * src/configure: find appropriate data-types on host for SDCC's int and long
10056         * src/configure.in: find appropriate data-types on host for SDCC's int and long
10057         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
10058         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
10059
10060 2003-03-07    <johan AT balder>
10061
10062         Just a big NOOP:
10063                 some minor cleanups before the big shot
10064                 OP_DEFS and OP_USES now use Kevin's protection
10065                 new option --nolabelopt
10066
10067         * src/SDCCBBlock.c:
10068         * src/SDCCast.c,:
10069         * src/SDCCcflow.c:
10070         * src/SDCCcse.c:
10071         * src/SDCCicode.c:
10072         * src/SDCCicode.h:
10073         * src/SDCClabel.c:
10074         * src/SDCCloop.c:
10075         * src/SDCCmain.c:
10076         * src/ds390/ralloc.c:
10077         * src/mcs51/ralloc.c:
10078         * src/pic/ralloc.c:
10079         * src/xa51/ralloc.c:
10080         * src/z80/ralloc.c:
10081
10082 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
10083
10084         * src/pic/pcode.c (get_op): fix 64 bit warnings
10085         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
10086         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
10087         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
10088         * support/regression/tests/malloc.c: fix 64 bit warnings
10089
10090 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
10091
10092         * src/mcs51/gen.c (genMinus): fixed bug 696436
10093
10094 2003-03-02  Borut Razem <borut.razem AT siol.net>
10095
10096         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
10097
10098 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
10099
10100         * configure.in: test for mkstemp
10101         * sdccconf_in.h: add HAVE_MKSTEMP
10102
10103 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
10104
10105         * device/include/ctype.h: removed warning while using --stack-auto
10106         * device/include/malloc.h: removed warning while using --stack-auto
10107         * device/include/string.h: removed warning while using --stack-auto
10108
10109 2003-02-23  Borut Razem <borut.razem AT siol.net>
10110
10111         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
10112         because NDEBUG is defined (see man assert)
10113         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
10114
10115 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10116
10117         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
10118         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
10119
10120 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10121
10122         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
10123         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
10124
10125 2003-02-18    <johan AT balder>
10126
10127         * as/mcs51/asmain.c (asmbl): module can start with a digit
10128         * as/z80/asmain.c (asmbl): module can start with a digit
10129
10130 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
10131
10132         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
10133         * src/asm.c: fix pipe() for Mingw32
10134
10135 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
10136
10137         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
10138         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
10139         make -V work again; --c1mode reads now from stdin
10140         * doc/sdccman.lyx: added --c1mode
10141         * support/Util/SDCCerr.c: new messages for c1 mode
10142         * support/Util/SDCCerr.h: new messages for c1 mode
10143         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
10144
10145 2003-02-15    <johan AT balder>
10146
10147         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
10148
10149 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
10150
10151         * doc/sdccman.lyx: Environment variables, -o and other minor things
10152
10153 2003-02-14    <johan AT balder>
10154
10155         * src/xa51/main.c: before anyone really tries to use it :)
10156
10157         * Install doc's in share/sdcc/doc
10158         * removed some obsolete files
10159         * Do a proper make distclean and uninstall
10160         M Makefile.common.in
10161         R sdccbuild.sh
10162         M as/Makefile
10163         M device/include/Makefile.in
10164         M device/lib/Makefile.in
10165         M doc/sdccman.lyx
10166         M link/Makefile
10167         M sim/ucsim/doc/Makefile.in
10168         M src/clean.mk
10169         R src/avr/peeph.rul
10170         R src/xa51/peeph.rul
10171         M support/cpp2/Makefile.in
10172         M support/makebin/Makefile
10173
10174
10175 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
10176
10177         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
10178
10179 2003-02-10  Borut Razem <borut.razem AT siol.net>
10180
10181         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
10182         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
10183         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
10184         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
10185         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
10186         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
10187         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
10188         src/z80/Makefile.bcc: Borland Makefile cleanup
10189         * as/z80/Makefile.bcc: Added Borland Makefile
10190         * support/cpp2/borland.h: Removed
10191
10192 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
10193
10194         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
10195         * src/SDCC.lex: new pragma NOIV
10196         * src/SDCCglobl.h: new pragma NOIV
10197         * src/SDCCmem.c: new pragma NOIV
10198
10199 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
10200
10201         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
10202
10203 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
10204
10205         * src/SDCCmain.c: signal handling is switched off by --debug
10206         * doc/Makefile: small fix for install; use clean.mk again
10207         * doc/clean.mk: clean *.pdf and *.html too
10208
10209 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
10210
10211         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
10212         * device/lib/printfl.c: fix a ds390 bug by making it portable
10213         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
10214         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
10215         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
10216         * debugger/mcs51/cmd.c: converted multi-line string literals
10217         * sim/ucsim/globals.cc: converted multi-line string literals
10218         * src/SDCCmain.c: introduced signal handler to remove temp files
10219         * doc/Makefile: small tweaks, implement clean
10220         * doc: removed generated files
10221
10222 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10223
10224         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
10225         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
10226         Address Record is not correctly generated for DS390."
10227
10228 2003-02-02  Borut Razem <borut.razem AT siol.net>
10229
10230         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
10231         * as/mcs51/asm.h: fixed compilation with Borland C
10232         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
10233         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
10234         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
10235         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
10236         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
10237         src/z80/Makefile.bcc: delete $(LIB) only if exist
10238         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
10239
10240 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
10241
10242         * device/include/malloc.h: introduced NULL
10243         * device/include/string.h: introduced NULL
10244         * device/include/stdlib.h: introduced NULL
10245         * device/lib/_memcpy.c: removed NULL
10246         * device/lib/_strcat.c: removed NULL
10247         * device/lib/_strchr.c: removed NULL
10248         * device/lib/_strcmp.c: removed NULL
10249         * device/lib/_strcpy.c: removed NULL
10250         * device/lib/_strcspn.c: removed NULL
10251         * device/lib/_strlen.c: removed NULL
10252         * device/lib/_strncat.c: removed NULL
10253         * device/lib/_strncmp.c: removed NULL
10254         * device/lib/_strncpy.c: removed NULL
10255         * device/lib/_strpbrk.c: removed NULL
10256         * device/lib/_strrchr.c: removed NULL
10257         * device/lib/_strspn.c: removed NULL
10258         * device/lib/_strstr.c: removed NULL
10259         * device/lib/_strtok.c: removed NULL
10260         * device/lib/malloc.c: removed NULL, include own header
10261
10262 2003-02-02    <johan AT balder>
10263
10264         * 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
10265         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
10266         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
10267         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
10268         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
10269         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
10270
10271 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10272
10273         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
10274         area 'DATA'"
10275
10276 2003-02-01    <johan AT balder>
10277
10278         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
10279
10280 2003-01-31    <johan AT CP255758-A>
10281
10282         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
10283
10284 2003-01-30    <johan AT balder>
10285
10286         * src/SDCCBBlock.c: automatic bug detection
10287         * src/SDCCicode.c: automatic bug detection
10288
10289 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10290
10291         * src/SDCCglobl.h:   now --xram-size 0 works
10292         * src/SDCCmain.c:    now --xram-size 0 works
10293
10294 2003-01-29    <johan AT balder>
10295
10296         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
10297
10298 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10299
10300         * as/mcs51/aslink.h: Added options --xram-size and --code-size
10301         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
10302         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
10303         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
10304         * src/SDCCglobl.h:   Added options --xram-size and --code-size
10305         * src/SDCCmain.c:    Added options --xram-size and --code-size
10306
10307 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
10308
10309         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
10310         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
10311
10312 2003-01-27    <johan AT balder>
10313
10314         * src/SDCC.y: fixed bug #613764
10315
10316 2003-01-26    <johan AT balder>
10317
10318         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
10319         * src/SDCCsymt.h: fixed bug #673374
10320         * src/SDCCglue.c: fixed bug #661910
10321         * src/SDCCast.c: fixed bug #458099 and 673374
10322
10323 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
10324
10325         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
10326         * as/mcs51/strcmpi.h: added
10327         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
10328         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
10329         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
10330         * as/mcs51/assym.c: strcmpi -> as_strcmpi
10331         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
10332         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
10333         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
10334         * as/mcs51/Makefile.aslink: new module strcmpi
10335         * as/mcs51/Makefile.asx8051: new module strcmpi
10336         * as/mcs51/Makefil.bcc: new module strcmpi
10337         * as/mcs51/Makefile.in: new module strcmpi
10338         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
10339
10340 2003-01-26    <johan AT balder>
10341
10342         * src/SDCCglue.c: reverted back to 1.124
10343         * src/SDCCast.c: reverted back to 1.156
10344         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
10345
10346 2003-01-25    <johan AT balder>
10347
10348         * src/SDCCglue.c: A better fix for bug #661910
10349         * src/SDCCast.c: A better fix for bug #661910
10350         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
10351
10352 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10353
10354         * src/Makefile.in: remove spawn.o
10355         * src/SDCCmain.c: remove spawn.h
10356         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
10357         * src/spawn.c: removed
10358         * src/spawn.h: removed
10359         * support/regression/ports/ds390/spec.mk: link with -r
10360
10361 2003-01-24    <johan AT CP255758-A>
10362
10363         * src/ds390/gen.c (aopOp): fixed bug #667458
10364         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
10365         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
10366         (createIvalCharPtr): an ival doesn't always have a storage class anymore
10367
10368 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10369
10370         * src/mcs51/peeph.def: better assembler identation by Frieder
10371         * src/mcs51/gen.c: better assembler identation by Frieder
10372
10373 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
10374
10375         * as/z80/string.h: removed for gcc 3.2
10376         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
10377         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
10378
10379 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10380
10381         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
10382         * src/SDCCpeeph.c (replaceRule): fix bug #663503
10383         * support/regression/Makefile: separate temp files for ports
10384         * support/regression/generate-cases.py: separate temp files for ports
10385         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10386         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10387
10388 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10389
10390         * moved tinitalk to device/examples/ds390
10391
10392 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
10393
10394         * as/mcs51/lkmem.c: rflag is for DS390
10395         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
10396         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
10397                          (linkEdit): move mem- and map-files the same way as ihx-files
10398         * src/z80/main.c (_setDefaultOptions): removed --generic
10399         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
10400         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
10401         * src/pic/glue.c (picglue): --c1mode works again
10402         * src/pic16/glue.c (pic16glue): --c1mode works again
10403         * src/asm.c (printCLine): fix #660034
10404
10405 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
10406
10407         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
10408         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
10409         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
10410         * as/mcs51/lkmem (summary): better fix for sp problem
10411         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
10412         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
10413         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
10414                                               remove --stack-after-data
10415
10416 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
10417
10418         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
10419         * src/SDCCutil.c (join): ugly bug: missing '\0'
10420         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
10421
10422 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10423
10424         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
10425         * src/port.h: typo
10426         * src/pic/main.c (_asmCmd): gpasm supports -o
10427         * src/z80/main.c: more general macros
10428         * device/lib/Makefile.in: remove intermediate files
10429
10430 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10431
10432         * .version: Bumped version number to 2.3.3
10433         * src/SDCCBBlock.c: new option -o
10434         * src/SDCCglobl.h: new option -o
10435         * src/SDCCglue.c: new option -o
10436         * src/SDCCmain.c: new option -o
10437         * src/asm.c: new option -o
10438         * src/ds390/main.c: new option -o
10439         * src/pic/glue.c: new option -o
10440         * src/pic/pcode.c: new option -o
10441         * src/pic/ralloc.c: new option -o
10442         * src/pic16/glue.c: new option -o
10443         * src/pic16/pcode.c: new option -o
10444         * src/pic16/ralloc.c: new option -o
10445         * src/z80/main.c: new option -o
10446         * device/lib/Makefile.in: use -o
10447         * support/regression/ports/ds390/spec.mk: use -o
10448         * support/regression/ports/gbz80/spec.mk: use -o
10449         * support/regression/ports/mcs51/spec.mk: use -o
10450         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
10451         * support/regression/ports/z80/spec.mk: use -o
10452         * support/regression/ports/ucz80/spec.mk: use -o
10453         * support/regression/ports/xa51/spec.mk: use -o
10454         * support/regression/fwk/lib/timeout.c: fix usage string
10455
10456 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
10457         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
10458
10459 2003-01-07    <johan AT balder>
10460
10461         * src/SDCCast.c (decorateType): fixed bug #600035
10462
10463 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
10464         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
10465         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
10466         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
10467         * src/pic/pcode.c: outcommented unused variable to remove warnings
10468         * src/pic/ralloc.c: outcommented unused variable to remove warnings
10469
10470 2003-01-06    <karl AT turbobit.com>
10471         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
10472    regression tests.
10473
10474 2003-01-06    <johan AT balder>
10475
10476         * src/SDCCicode.c: fixed array add
10477
10478 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
10479         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
10480         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
10481
10482 2003-01-04    <johan AT balder>
10483
10484         * src/SDCCval.c (getNelements): fixed the initialized array of structures
10485
10486 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10487         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
10488
10489 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10490         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
10491         * support/regression/tests/bug-524697.c: fit mem usage into 8032
10492
10493 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10494         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
10495
10496 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
10497         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
10498
10499 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
10500         * src/mcs51/main.c: removed {bindir}{sep} from aslink
10501
10502 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10503
10504     * in \sdcc\as\mcs51\ changed these files in order to create an
10505     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
10506     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
10507     following files to include the previous two files: aslink.dsp,
10508     Makefile.aslink, Makefile.bcc, and Makefile.in.
10509
10510     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
10511     .adb instead of .cdb
10512
10513 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10514
10515         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
10516         value from option --iram-size.
10517
10518 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10519
10520         * \sdcc\as\mcs51\lklist.c: added boundary check before using
10521         dram[] array.
10522
10523 2002-09-18    <wiml AT hhhh.org>
10524
10525         * SDCClrange.h: exposed setFromRange() and setToRange()
10526         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
10527           packRegsForAccUse() (bug 542397)
10528         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
10529           multiple times and emitting the fetch operations more than once
10530           added aopGetUsesAcc() function to allow binary operators to
10531           fetch their operands in the correct order; made genMinus() emit
10532           compact code for X = LITERAL - Y
10533
10534 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10535         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
10536         sprintf() in line 1267.
10537
10538 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10539         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
10540         like ports.
10541
10542 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10543         Changes to aslink (All the changes are marked with 'JCF'):
10544
10545         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
10546         summary().
10547
10548         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
10549         area BSEG.  Also moves, if possible, the DATA area down into the internal
10550         ram so more space is available.
10551
10552         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
10553         sflag.
10554
10555         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
10556         not bytes.  Function summary() which creates a memory usage summary
10557         file with extension .mem.  Reports of overlaping stack and small stack
10558         size.  If the space for the stack is less than 16 bytes aslink trows a
10559         warning.
10560
10561         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
10562         the 8051.  Option 'y' for memory summary output file.
10563
10564         Changes to sdcc (All the changes are marked with 'JCF'):
10565
10566         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
10567
10568         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
10569         overlaying area for it (uses RegBankUsed[4]).
10570
10571         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
10572         bank zero as used by default.  By default aslink locates the stack
10573         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
10574         the creation of the .mem file.  Delegates the allocation of data area
10575         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
10576         the begining of the stack area to aslink.
10577
10578         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
10579         glue() in SDCCglue.c creates an area for it.
10580
10581 2002-09-03  Borut Razem <borut.razem AT siol.net>
10582         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
10583         sdcc/src/pic/glue.c:
10584         introduced atexit() handler for teporay files removal in case of
10585         errors, assertions, ...
10586
10587 2002-08-29  Borut Razem <borut.razem AT siol.net>
10588         * sdcc/support/cpp2/auto-host_vc_in.h:
10589         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
10590         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
10591         Maybe there is a similar problem with BORLANDC? It should be checked!
10592
10593         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
10594         corrected improper use of assert: the assignment to clr variable was done inside the assert.
10595         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
10596         was not executed, and the compiler (cl) launched a warning:
10597         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
10598
10599 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
10600         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
10601
10602 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
10603         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
10604
10605         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10606           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
10607           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
10608           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10609           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
10610           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
10611           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
10612         - added Release configuration in VS projects
10613         - review of compiler an linker options
10614         - VC .exe files are generated in bin_vc directory, not to interfere
10615           with binaries generated from other projects (cygwin, mingw, bcc ...)
10616
10617         * sdcc/src/yacc.dsp: added
10618
10619         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
10620         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
10621         and insert the version number definitions from .version
10622
10623         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
10624
10625         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
10626         added - genarate auto-host.h using auto-host_vc_in.h as template
10627
10628         * sdcc/sdcc_vc.h,
10629         removed from CVS, generated automatically
10630
10631 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
10632         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
10633
10634 2002-08-11  Borut Razem <borut.razem AT siol.net>
10635         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
10636
10637 2002-08-10  Borut Razem <borut.razem AT siol.net>
10638         * src/SDCCmain.c (main):
10639         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
10640         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
10641         The consequence was that some temporary files were not removed.
10642
10643         * src/SDCCglue.c:
10644         unification of code in functions tempfilename() and tempfile():
10645         function tempnam() is defined in Visual Studio 6.0 and .NET
10646
10647         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
10648
10649         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10650           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
10651         - removed compiler command line option /WX: Treats all warnings as errors
10652         - update a list of source files, included into the project
10653
10654         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10655           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
10656         changed project type to Generic Project so that can be correcly converted to VS.NET project
10657
10658         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
10659
10660         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
10661
10662         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
10663
10664         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
10665         added return 0 statements after assert() to make compiler happy
10666
10667         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
10668         added newline in the def file to keep MSC compiler satisfied
10669
10670         * sdcc/src/z80/gen.c:
10671         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
10672           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
10673         - solved MSC error in function aopDump()
10674
10675         * sdcc_vc.h: define PREFIX as "\\sdcc"
10676
10677 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
10678         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
10679
10680 2002-06-22  Scott Dattalo <scott AT dattalo.com>
10681         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
10682         - Rewrote the register banking algorithm.
10683         - Added pCode live-range analysis to registers (for now, only non-used and
10684         singly-used registers optimized away)
10685
10686         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
10687
10688         * 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.
10689
10690 2002-05-10  Scott Dattalo <scott AT dattalo.com>
10691         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
10692
10693 2002-04-22  Michael Hope  <michaelh AT vroom>
10694
10695         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
10696
10697         * configure.in (DD_COPT): Added include support required for gbdk.
10698
10699         * .version: Bumped version number just to increase it.
10700
10701         * src/SDCCmain.c: Added -nostdinc to the default options.
10702
10703 2002-04-15  Michael Hope  <michaelh AT vroom>
10704
10705         * device/lib/z80/printf.c (sprintf): Added.
10706
10707         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
10708
10709         * src/z80/peeph.def: Added transpose redundent load rule.
10710
10711         * src/z80/main.c: Added force callee saves for jaune.
10712
10713         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
10714
10715         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
10716
10717 2002-03-28  Johan Knol  <johan AT balder>
10718
10719         * src/SDCCval.c: fixed bug #532436
10720
10721 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10722         * /src/port.h:
10723         Added "char *Processor" field to the port structure.
10724
10725         * /src/SDCCmain.c:
10726         Added -p option. Allows port dependent processor to be specified.
10727
10728         * all ports:
10729         Initialized the new field char *Processor field to NULL in all ports
10730
10731         * /src/pic/*:
10732         Compiler generated registers for interrupt context saving
10733         were not getting allocated.
10734
10735 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
10736
10737         * /src/SDCCast.c:
10738         Fixed left shift. Will promote the left side of a left shift
10739         if a) left shifting more than size of operand or b) when assigned
10740         to something size > size of left side
10741
10742 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10743         * src/pic/*
10744         tons of changes. Register allocation has been
10745         rewritten. Added customization for the various PICs. Flow
10746         analysis is restructured. ...
10747
10748         * src/pic/device.h:
10749         Added
10750
10751         * src/pic/device.c:
10752         Added. device.c is a PIC port hack to accomodate variations
10753         in PIC devices.
10754
10755 2002-03-13  Michael Hope  <michaelh AT vroom>
10756
10757         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
10758
10759 2002-03-04  johanknol  <johanknol AT manik>
10760
10761         * /src/SDCCval.c: fixed
10762
10763         const unsigned char arr[][2] = { { 0, 1 } };
10764         t18.c:1: error: Initializer element is not constant
10765
10766 2002-03-04  bela  <bela AT manik>
10767
10768         * /device/include/mcs51reg.h:
10769         ds89c420 register definition update
10770
10771 2002-03-03    <johan AT FRIJA>
10772
10773         * support/Util/SDCCerr.c: did something, but don't no why anymore
10774
10775         * support/regression/tests/bug-524691.c: made it a little less shy
10776
10777         * src/SDCCast.c (decorateType): fixed bug #524697
10778
10779         * src/SDCCast.c: made some lineno improvements
10780
10781         * src/SDCCval.c (getNelements): changed warning to error
10782
10783         * src/SDCCglue.c (printIvalArray): changed warning to error
10784
10785         * src/SDCCicode.c: fixed a warning for mingw
10786
10787         * src/SDCCast.c (decorateType): fixed the << promotion for ops
10788
10789         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
10790
10791 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
10792
10793         * src/ds390/peeph.def:
10794         Added some more peephole rules
10795
10796         * src/ds390/gen.c: Various fixes & enhancements
10797
10798         * src/SDCClrange.c, src/SDCClrange.h:
10799         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
10800
10801         * src/ds390/ralloc.c:
10802         various fixes & enhancements (ds390) specific
10803
10804         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
10805         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
10806         from rallocs.
10807
10808         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
10809
10810 2002-03-02    <johan AT FRIJA>
10811
10812         * src/SDCCast.c (decorateType): fixed bug #524708
10813
10814         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
10815
10816         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
10817
10818 2002-03-01  Michael Hope  <michaelh AT vroom>
10819
10820         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
10821
10822         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
10823
10824 2002-03-01    <johan AT FRIJA>
10825
10826         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
10827
10828         * src/SDCCast.c (decorateType): fixed bug #524209
10829
10830         * src/SDCCval.c (valNot): fixed bug #524195
10831
10832 2002-02-26    <johan AT balder>
10833
10834         * src/xa51/gen.c: fixed a warning
10835
10836         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
10837
10838         * src/SDCCast.c (decorateType): fixed bug #522534
10839
10840 2002-02-23    <johan AT balder>
10841
10842         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
10843
10844 2002-02-22    <johan AT balder>
10845
10846         * src/SDCCast.c: fixed bug #514865
10847
10848         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
10849
10850 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
10851
10852         * sdcc/src/SDCCloop.c:
10853         Previous fix was not good. basic blocks that have "break" or "return" are
10854         not really partof a loop , but live ranges used in these blocks should
10855         be live thru the entire loop, so set partOfLoop but don't add them to
10856         loop region
10857
10858 2002-02-21    <johan AT FRIJA>
10859
10860         * src/SDCCcse.c: fixed bug #514308
10861
10862 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
10863
10864         * src/SDCCloop.c:
10865         Fixed BUG #519583. If a conditional block ended in a return/break
10866         statement inside a loop, it was not being considered part of the loop.
10867
10868         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
10869
10870 2002-02-10  Karl Bongers <karl AT turbobit.com>
10871
10872         * debugger/*:
10873         Fixed up SDCDB debugger somewhat.  Updated debugger/README
10874         with lots of comments and notes.
10875
10876         * device/examples/test2.c:
10877         Fix bug, "red" variable not being initialized(compiler complained).
10878
10879         * device/examples/Makefile, examples/test3.c:
10880         Add Makefile in device/examples folder, compiles test3.c
10881         for use as a multiple module SDCDB test case.
10882
10883         * sim/ucsim/cmd.src/cmdset.cc:
10884         Took out debug printfs in ucsim "next" command.
10885
10886         * sim/ucsim/xa.src:
10887         Karl and Johan start ucsim XA support.  Most dissassembly working,
10888         about 75% emulation done(plenty of work remaining).
10889
10890         * sim/ucsim/z80.src:
10891         Add Z80 support to ucsim, add test-ucz80 regression test,
10892         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
10893         Notice z80 compiler fails on examples/test3.c/crc code.
10894
10895 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
10896
10897         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
10898         Added support for --parms-in-bank1
10899
10900         * src/ds390/peeph.def:
10901         added a few more peephole optimzations
10902
10903         * src/ds390/main.c:
10904         1) added __builtin_inp & __builtin_outp used to read in data of given length
10905            from a memory mapped port
10906         2) added __builtin_memcmp
10907         3) added __builtin_swapw swap bytes of a short
10908
10909         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
10910         1) handle multiple send & receives from register bank1
10911         2) ralloc can now allocate DPTR1 to some liveRanges
10912
10913         * src/SDCCsymt.c, src/SDCCsymt.h:
10914         changes to handle multiple sends & receives
10915
10916         * src/SDCCptropt.h:
10917         added some pointer arithmetic optimization
10918
10919         * src/SDCCptropt.c:
10920         added some pointer arithmetic optimizations but not stable yet so not
10921         called from anywhere (will get this working shortly)
10922
10923         * src/SDCCopt.c: fixed for multiple sends & receives
10924
10925         * src/SDCCmain.c:
10926         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
10927         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
10928            set preprocessor defines (depending on options)
10929
10930         * src/SDCCicode.c, src/SDCCicode.h:
10931         changes made to handle multiple sends & receives
10932
10933         * src/SDCCglobl.h:
10934         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
10935
10936         * src/SDCCcse.c, src/SDCCcse.h:
10937         added function findbackward def (to be used in upcoming optimization)
10938
10939         * src/SDCCcflow.c, src/SDCCcflow.h:
10940         added function returnAtEnd - to determine if a basic block terminates with
10941         a RETURN iCode
10942
10943         * src/SDCCast.c, src/SDCCast.h:
10944         added option parms-in-bank1
10945
10946         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
10947         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
10948         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
10949         adjusted for --parms-in-bank1 option
10950
10951         * device/include/string.h:
10952         donot redefine "reentrant" keyword
10953
10954         * device/include/ds80c390.h: Added some more SFRs
10955
10956 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
10957
10958         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
10959
10960 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
10961
10962         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
10963
10964 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
10965
10966         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
10967
10968 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
10969
10970         * Added --xram-movc option
10971
10972 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
10973
10974         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
10975
10976 2002-01-11  Johan Knol
10977
10978         * Added math lib of Jesus Calvino-Fraga
10979
10980 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
10981
10982         * src/SDCCmain.c (processFile): fix processing of ../../src.c
10983         * support/regression/Makefile: new target test-mcs51-stack-auto
10984         * support/regression/ports/mcs51-stack-auto/spec.mk: added
10985
10986 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10987
10988         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
10989
10990 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10991
10992         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
10993
10994 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
10995
10996         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
10997
10998         * src/SDCCglue.h: add definition for printIvalChar()
10999
11000 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
11001
11002         * src/SDCCast.c: fix #498138 by Johan
11003
11004         * src/SDCCglue.c: fix #498138 by Johan
11005
11006 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
11007
11008         * support/regression/Makefile: fix clean
11009
11010         * support/regression/ports/ds390/support.c: fix transmission of last character
11011
11012 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
11013
11014         * /sdcc/src/ds390/gen.c:
11015         a) improved computing address of stack variable
11016         b) took out some #if 0 code
11017         c) improved parmBytes adjustment
11018         d) improved genPlusIncr & genMinusIncr
11019         e) genCmp could generate bad code (when left assigned to DPTR)
11020         f) Fixed bug in hasInc
11021
11022         * /sdcc/src/ds390/ralloc.c:
11023         a) packRegsForSupport could mess up live information (Fixed)
11024         b) packRegsDPTRuse could be incorrect for left & right shift
11025
11026         * /sdcc/src/mcs51/ralloc.c:
11027         packRegsForSupport could mess up the live information (Fixed)
11028
11029         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
11030
11031         * /sdcc/src/SDCCast.c:
11032         can reverse a loop even if function call is present as long
11033         as the loop control variable is local & is not passed as parameter
11034
11035 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
11036
11037         * /sdcc/ChangeLog: *** empty log message ***
11038
11039         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
11040         More builtin function additions for TININative
11041
11042         * /sdcc/src/ds390/ralloc.c:
11043         Had broken the regression testsuite
11044
11045         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
11046
11047         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
11048         Added funcattr hasStackParms will be set for reentrant functions when there
11049         are paramteres on the stack, this helps in minimizing frame pointer generation
11050         typeFromStr can handle function pointers now
11051
11052         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
11053         *** empty log message ***
11054
11055 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
11056
11057         * /src/ds390/gen.c, /src/ds390/main.c:
11058         More builtin function additions for TININative
11059
11060         * /src/ds390/ralloc.c:
11061         Had broken the regression testsuite
11062
11063         * /src/SDCCast.c: Fixed a bug in dumptree
11064
11065         * /src/SDCCsymt.c, /src/SDCCsymt.h:
11066         Added funcattr hasStackParms will be set for reentrant functions when there
11067         are paramteres on the stack, this helps in minimizing frame pointer generation
11068         typeFromStr can handle function pointers now
11069
11070         * /doc/builtins.txt, /doc/TININative.txt:
11071         *** empty log message ***
11072
11073
11074 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
11075
11076         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
11077         ALPHA version for -mTININative
11078
11079         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
11080         updated to reflect changes in the port structure
11081
11082         * /src/port.h:
11083         added function do_assemble (similar to do_link) if non-null this function
11084         will be called to do assembly (-mTININative) requires a multi command
11085         assembly
11086         added function genAssemblerEnd will be called to generate assembler Epilogue
11087
11088         * /src/SDCCsymt.c:
11089         added _JavaNative to debug info printing
11090
11091         * /src/SDCCmain.c: added option --tini-libid
11092         added port->do_assemble function (-mTININative) has a multi command assemble
11093
11094         * /src/SDCCglue.c: Disabled "constExpr" check
11095         added port->genAssemblerEnd function
11096
11097         * /src/SDCCglobl.h: Added option --tini-libid value
11098
11099         * /src/SDCCast.h:
11100         tookout optimizeCompare from the header (has no external references)
11101
11102         * /src/SDCCast.c: made one more function "static"
11103
11104 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
11105
11106         * src/z80/mappings.i: Added z80asm support.
11107
11108         * src/z80/main.c: Added z80asm support on --asm=z80asm
11109
11110         * src/z80/gen.c: Fixed asm portability issues.
11111
11112         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
11113
11114         * src/SDCCglue.c (printExterns): Added global/extern split.
11115
11116 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
11117
11118         * support/regression/Makefile: added test for mcs51 model large
11119
11120         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
11121
11122         * support/regression/ports/gbz80/spec.mk: added -mgbz80
11123
11124 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
11125
11126         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
11127
11128 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
11129
11130         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
11131
11132         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
11133
11134 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
11135
11136         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
11137
11138         * support/regression/tests/simplefloat.c: Port to mcs51.
11139
11140 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
11141         * support/regression/tests/bug-485362.c: Added.
11142
11143         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
11144
11145         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
11146
11147         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
11148
11149         * src/z80/gen.c (aopDump): Added a dump function.
11150
11151 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
11152         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
11153
11154         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
11155
11156         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
11157
11158         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
11159
11160         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
11161
11162         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
11163
11164         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
11165
11166         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
11167
11168         * support/regression/ports/ds390/support.c: Use tinibios.
11169
11170         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
11171
11172 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
11173
11174         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
11175         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
11176
11177         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
11178
11179         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
11180
11181 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
11182
11183         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
11184
11185         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
11186         (packRegsForIYUse): Created and optimised.
11187
11188 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
11189
11190         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
11191 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
11192
11193         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
11194
11195         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
11196
11197         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
11198
11199 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11200
11201         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
11202
11203         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
11204
11205 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11206
11207         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
11208
11209         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
11210
11211         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
11212
11213 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
11214
11215         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
11216         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
11217         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
11218
11219         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
11220
11221         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
11222         (genNotFloat): Added.
11223         (genUminusFloat): Added.
11224
11225         * device/lib/z80/Makefile: Added floating pt stubs.
11226
11227         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
11228
11229         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
11230
11231         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
11232
11233 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11234
11235         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
11236
11237         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
11238
11239         * sdcc/support/regression/Makefile: Add port ds390.
11240
11241         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
11242
11243         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
11244
11245         * sdcc/support/regression/ports/ds390/spec.mk: Added.
11246
11247         * sdcc/support/regression/ports/ds390/support.c: Added.
11248
11249         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
11250
11251         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
11252
11253         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
11254
11255 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11256
11257         * device/include/malloc.h: Added z80 and gbz80 support.
11258
11259         * device/lib/gbz80/heap.s: Added.
11260
11261         * device/lib/z80/heap.s: Added.
11262
11263         * device/lib/malloc.c: Added z80 and gbz80 support.
11264
11265         * support/regression/tests/malloc.c (testMalloc): Added.
11266
11267         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
11268
11269         * support/regression/tests/bug-478094.c: Added.
11270
11271         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
11272
11273 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
11274
11275         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
11276
11277         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
11278
11279         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
11280
11281         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
11282
11283         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
11284
11285 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11286
11287         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
11288
11289 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
11290
11291         * support/regression/tests/bug-477927.c: Added.
11292
11293         * src/z80/peeph.def: Added minor rules.
11294
11295         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
11296
11297         * src/z80/peeph.def: Added jump optimisation modification.
11298
11299 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
11300
11301         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
11302
11303 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
11304
11305         * support/regression/tests/funptrs.c: Added.
11306
11307 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
11308
11309         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
11310
11311 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
11312
11313         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
11314
11315         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
11316
11317         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
11318         (movLeft2ResultLong): Created.
11319
11320         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
11321         (joinPushes): Added.  Joins two char pushes into a word push.
11322
11323 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
11324
11325         * support/cpp2/Makefile.in (install): Added creation of dest dir.
11326
11327         * support/makebin/Makefile (install): Added creation of dest dir.
11328
11329 2001-10-24 Karl Bongers <karl AT turbobit.com>
11330
11331         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
11332
11333 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
11334
11335         * src/z80/ralloc.c: Turned off faulty pack for one use.
11336
11337         * src/z80/peeph-gbz80.def: Removed redundent restart options.
11338
11339         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
11340
11341 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
11342
11343         * support/regression/Makefile: Improved clean
11344
11345         * support/regression/ports/gbz80/spec.mk: Added clean
11346
11347         * support/regression/ports/host/spec.mk: Added clean
11348
11349         * support/regression/ports/z80/spec.mk: Added clean
11350
11351         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
11352
11353         * support/regression/ports/mcs51/timeout.c: little improvements
11354
11355 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
11356
11357         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
11358
11359         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
11360
11361         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
11362
11363 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
11364
11365         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
11366
11367         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
11368
11369 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
11370         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
11371
11372         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
11373
11374         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
11375
11376         * src/mcs51/main.c (_linkCmd): Added bin path to command.
11377
11378         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
11379
11380         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
11381
11382         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
11383
11384         * support/regression/tests/longor.c: Added.
11385
11386 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
11387
11388         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
11389
11390         * as/mcs51/aslink.h: define PATH_MAX
11391
11392         * as/mcs51/asm.h: define PATH_MAX
11393
11394         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
11395
11396         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
11397
11398         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
11399
11400         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
11401
11402         * src/SDCCglobl.h: define PATH_MAX
11403
11404         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
11405
11406         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
11407
11408 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
11409
11410         * src/z80/gen.c (gencjneshort): Fixed
11411
11412         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
11413
11414 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
11415
11416         * support/regression/tests/bug-469671.c: Added.
11417
11418         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
11419
11420 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
11421
11422         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
11423
11424         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
11425
11426 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
11427
11428         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
11429
11430         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
11431
11432         * src/device/lib/_mullong.c : removed hint: nooverlay bug
11433
11434         * src/device/lib/_divuint.c : removed hint: nooverlay bug
11435
11436         * src/device/lib/_divulong.c: removed hint: nooverlay bug
11437
11438         * src/device/lib/_moduint.c : removed hint: nooverlay bug
11439
11440         * src/device/lib/_modulong.c: removed hint: nooverlay bug
11441
11442 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
11443
11444         * 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.
11445
11446         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
11447
11448         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
11449
11450 2001-10-07    <johan AT FRIJA>
11451
11452         * device/lib/gets.c (gets): fixed the return value.
11453
11454 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
11455         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
11456
11457         * 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.
11458
11459         * 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.
11460
11461         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
11462
11463         * src/pic/gen.c: Removed Safe_strdup.
11464
11465         * configure.in: Added option to enable libgc support.
11466
11467         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
11468         (bitVectUnion): Optimised.
11469         (bitVectIntersect): Optimised.
11470         (bitVectBitsInCommon): Optimised.
11471         (bitVectCplAnd): Optimised.
11472
11473         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
11474
11475 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11476
11477         * src/SDCCmain.c: distinguish between assembler debug and plain options
11478
11479         * src/avr/main.c:   remove standard assembler options
11480
11481         * src/ds390/main.c: remove standard assembler options
11482
11483         * src/mcs51/main.c: remove standard assembler options
11484
11485         * src/port.h: removed "PENDING" comment
11486
11487 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11488
11489         * src/device/lib/_mulint.c  : new, with assember functions
11490
11491         * src/device/lib/_mullong.c : new, with assember functions
11492
11493         * src/device/lib/_divuint.c : with assember functions
11494
11495         * src/device/lib/_divsint.c : with assember functions
11496
11497         * src/device/lib/_divulong.c: with assember functions
11498
11499         * src/device/lib/_divslong.c: with assember functions
11500
11501         * src/device/lib/_moduint.c : with assember functions
11502
11503         * src/device/lib/_modsint.c : with assember functions
11504
11505         * src/device/lib/_modulong.c: with assember functions
11506
11507         * src/device/lib/_modslong.c: with assember functions
11508
11509         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
11510
11511         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
11512
11513         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
11514                                       replaced _mululong.c and _mulslong.c by _mullong.c
11515
11516 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11517
11518         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
11519
11520 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11521
11522         * src/SDCCglue.c: test, if win32api is available for MINGW
11523
11524 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11525
11526         * src/SDCCsymt.c: no more _modifier in printTypeChain()
11527         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
11528         * support/regression/ports/gbz80/spec.mk: removed GENERIC
11529         * support/regression/ports/host/spec.mk: removed GENERIC
11530         * support/regression/ports/mcs51/spec.mk: removed GENERIC
11531         * support/regression/ports/z80/spec.mk: removed GENERIC
11532
11533 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
11534
11535         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
11536
11537         * support/regression/tests/bug-467035.c: Created.
11538
11539 2001-10-01    <johan AT FRIJA>
11540
11541         * src/SDCC.y: fixed bug #466586 part 1
11542
11543 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
11544
11545         * SDCCicode.c: z80 has no generic pointers
11546         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
11547
11548 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
11549
11550         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
11551
11552 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
11553
11554         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
11555
11556         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
11557
11558 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
11559
11560         * configure.in: Fixed up so that ucsim is only configured once.
11561
11562         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
11563
11564         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
11565         (getPathDifference): As above.
11566
11567         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
11568
11569         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
11570
11571 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
11572         * .version: Updated to 2.3.1
11573
11574         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
11575         Added copyright header.
11576
11577         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
11578         (assemble): Added support for macro based assembler commands.
11579         (linkEdit): Added support for macro based linker commands.
11580         (preProcess): Changed the pre-processor to use macros.
11581         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
11582         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
11583
11584         * device/lib/z80/crt0.s: Added module name for debugging.
11585
11586 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
11587
11588         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11589
11590         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
11591
11592         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
11593
11594         * src/Makefile.in: Added SDCCmacro and SDCCutil
11595
11596 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
11597
11598         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11599
11600 2001-09-16    <johan AT FRIJA>
11601
11602         * 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.
11603
11604 2001-09-15    <johan AT FRIJA>
11605
11606         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
11607         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
11608
11609 2001-09-11    <johan AT FRIJA>
11610
11611         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
11612
11613 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
11614
11615         * support/regression/tests/bug-460444.c: Added test case.
11616
11617         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
11618         (genCast): Added justification for all of the asserts.
11619
11620 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
11621
11622         * support/regression/support.c: _xdata replaced by xdata
11623
11624         * support/regression/spec.mk: removed _generic
11625
11626 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
11627
11628         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
11629
11630         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
11631         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
11632
11633         * src/z80/peeph.def: Added a rule to optimise shift then compare.
11634
11635         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
11636
11637         * support/regression/tests/bug-460010.c: Added test case.
11638
11639         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
11640
11641 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
11642
11643         * support/regression/Makefile: inter-port-clean adjusted for mcs51
11644
11645         * support/regression/testfwk.c: removed workaround for bug #436344
11646
11647         * support/regression/tests/bp.c: use less memory with mcs51
11648
11649         * support/regression/tests/bug-441448.c: use less memory
11650
11651         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
11652
11653         * support/regression/collate-results.py: typo
11654
11655 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
11656
11657         * support/regression/tests/fetchoverlap.c: Added new test case.
11658
11659         * support/regression/tests/bp.c: Added new test case.
11660
11661         * support/regression/tests/bug-448984.c: Added new test case.
11662
11663         * support/regression/tests/pow2shifts.c: Added new test case.
11664
11665         * src/z80/gen.c: Turned off the noise it normally generates for the release.
11666         (genlshTwo): Fixed right shift for count > 8.
11667
11668         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
11669
11670 2001-09-08    <johan AT FRIJA>
11671
11672         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
11673
11674 2001-09-07    <johan AT FRIJA>
11675
11676         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
11677
11678         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
11679
11680 2001-09-06    <johan AT FRIJA>
11681
11682         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
11683         * bernhard noted me at this: "() equals to (void)" (1.38)
11684
11685 2001-09-05    <johan AT FRIJA>
11686
11687         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
11688
11689 2001-09-04    <johan AT FRIJA>
11690
11691         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
11692
11693
11694 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
11695
11696         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
11697
11698 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
11699
11700         * link/z80/aslink.h: Fixed path for PATH_MAX
11701
11702 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
11703
11704         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
11705
11706         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
11707
11708         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
11709
11710         * 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.
11711
11712 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
11713
11714         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
11715         (genCmp): Fixed up genCmp for the GB with longs.
11716
11717         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
11718
11719         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
11720
11721         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
11722
11723         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
11724
11725 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
11726
11727         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
11728
11729 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
11730
11731         * 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.
11732
11733         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
11734
11735 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
11736
11737         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
11738
11739         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
11740
11741 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
11742
11743   * sim/ucsim/configure:    little improvement of Cygwin-detection
11744   * sim/ucsim/configure.in: little improvement of Cygwin-detection
11745   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
11746   * support/regression/tests/bug-221100.c: small changes for mcs51
11747   * support/regression/tests/bug-221168.c: small changes for mcs51
11748   * support/regression/tests/bug-227710.c: small changes for mcs51
11749   * support/regression/tests/staticinit.c: small changes for mcs51
11750   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
11751   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11752   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11753
11754 $Revision$