* src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr, createIval): imple...
[fw/sdcc] / ChangeLog
1 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
2
3         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
4         createIval): implement symbol independant "flexible array member",
5         (createIvalCharPtr): implemented flexible array initialisation with a
6         string
7         * src/SDCCsymt.c (copyStruct): removed,
8         (getSize): fixed misleading comment,
9         (getAllocSize): removed, the additional allocation size is now in
10         sym->flexArrayLength,
11         (checkStructFlexArray): new, syntax checks for flexible array members,
12         (compStructSize): added syntax checks for "flexible array members"
13         (copyStruct): removed,
14         (copyLinkChain): removed inefficient fix for bug 770487
15         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
16         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
17         symbol->flexArrayLength
18         * src/SDCCerr.c,
19         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
20         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
21         * support/regression/tests/structflexarray.c: added
22         * support/valdiag/tests/structflexiblearray.c: added
23
24 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
25
26         * src/SDCCast.c (decorateType): fixed bug 1368489
27         * support/Util/SDCCerr.c,
28         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
29
30 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
31
32         * device/include/mcs51/at89c51snd1c.h: added file submitted by 
33           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
34
35 2005-11-27 Borut Razem <borut.razem AT siol.net>
36
37         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
38           support/cpp2/mkdeps.h: added command line option
39           -obj-ext=<extension> to SDCPP to define object file externion, used
40           for generation of make dependencies (-M)
41         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
42
43 2005-11-26 Borut Razem <borut.razem AT siol.net>
44
45         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
46           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
47           added pic and pic16 libraries
48
49 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
50
51         * device/include/float.h: Corrected typo in prototype of __fsgt
52
53 2005-11-25 Borut Razem <borut.razem AT siol.net>
54
55         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
56           added creation of model-mcs51-stack-auto libraries
57
58 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
59
60         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
61         and fields-list too
62         * src/SDCCast.c (createIvalArray): removed obsolete comment
63
64 2005-11-24 Borut Razem <borut.razem AT siol.net>
65
66         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
67           added missing device/lib/mcs51/crt*.asm sources
68
69 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
70
71         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
72
73 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
74
75         * device/lib/_fs2schar.c,
76         * device/lib/_fs2sint.c,
77         * device/lib/_fs2slong.c: optimized inline asm
78
79 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
80
81         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
82           Better handling of floats between -1.0 and 0.0.
83
84 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
85
86         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
87           (the missing "if"s prohibited removal of redundant labels)
88
89 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
90
91         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
92           Properly convert floats between -1.0 and 0.0 to long, int, and char
93           types (max integer value of negative floats tends to zero).
94         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
95           Removed changes made so to work properly with floats between
96           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
97           and _fs2char.c
98
99 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
100
101         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
102         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
103         (genCast) cosmetic change
104         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
105         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
106         from mcs51
107         * support/regression/tests/bitfields (testSignedBitfields): added
108
109 2005-11-18 Borut Razem <borut.razem AT siol.net>
110
111         * sdcc/device/lib/Makefile.in: remove all unnecessary files
112         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
113           introduced SILENT option to make building of pic16 libraries less
114
115 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
116
117         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
118           Now they work properly with floats between -1.0 and 0.0
119         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
120
121 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
122
123         * src/SDCCicode.c (printOperand): added missing else
124
125 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
126
127         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
128         reformatted for better readability
129         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
130         signed bitfields
131
132 2005-11-17 Borut Razem <borut.razem AT siol.net>
133
134         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
135           introduced SILENT option to make building of pic16 libraries less
136           verbose - used for nightly snapshot build
137         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
138           available on Win32 platforms.
139         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
140           medium, large, pic and pic16
141
142 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
143
144         * device/lib/printf_large.c: Temporary patch for bug 1358192:
145           printf("%f"...) sets fraction to zero.
146
147 2005-11-16 Raphael Neider <rneider AT web.de>
148
149         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
150           fixes #1357221
151         * src/pic/gen.c (genIfx): implemented for CARRY bit
152         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
153           to generic pointers, fixes #1357332,
154           (pic16_movLit2f): NEW,
155           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
156
157 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
158
159         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
160
161 2005-11-11 Raphael Neider <rneider AT web.de>
162
163         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
164         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
165           compute pointer's type from operand,
166           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
167           improved single bit reads, fixes bug #1353379
168
169 2005-11-09 Borut Razem <borut.razem AT siol.net>
170
171         * support/scripts/sdcc.nsi: added lib/pic to the package
172
173 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
174
175         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
176
177 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
178
179         * support/regression/tests/bug1348008.c: added
180         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
181         * support/regression/tests/bug1337835.c: updated comment
182
183 2005-11-06 Borut Razem <borut.razem AT siol.net>
184
185         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
186           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
187           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
188           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
189           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
190           dynamic construction of cl_error_class and derivates - 2.nd try
191
192 2005-11-05 Borut Razem <borut.razem AT siol.net>
193
194         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
195           bug, which caused Bus Errors on sparc solaris
196
197 2005-11-04 Borut Razem <borut.razem AT siol.net>
198
199         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
200           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
201           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
202           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
203           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
204           and derivates to resolve the initialization problem on OSX
205
206 2005-11-02 Borut Razem <borut.razem AT siol.net>
207
208         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
209           corrected typo - #include <winsock2.h>
210
211 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
212
213         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
214           (_asxxxx_mapping): added org directive for future enhancements
215
216 2005-11-01 Borut Razem <borut.razem AT siol.net>
217
218         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
219           enabled sockets on WIN32
220         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
221
222 2005-10-31 Borut Razem <borut.razem AT siol.net>
223
224         * support/regression/generate-cases.py: escape backslashes in {testcase}:
225           WIN32 backslash path delimiters should be escaped when used in C strings
226         * support/regression/tests/bitfields.c: exclude failing assertions for
227           __CYGWIN32__ and __MINGW32__ hosts
228
229 2005-10-30 Borut Razem <borut.razem AT siol.net>
230
231         * src/SDCCutil.c: corrected double comparison typo
232
233 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
234
235         * device/lib/medium/Makefile: added for new memory model medium
236         * device/include/asm/mcs51/features.h: updated for medium/pdata
237         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
238           added Multiply & Accumulate sbit's and MAC0_PAGE define
239         * device/include/mcs51/c8051f300.h: added sfr16 definitions
240         * device/include/mcs51/c8051f310.h: added sfr16 definitions
241         * device/lib/_mullong.c: update for medium model
242         * device/lib/incl.mk: added medium model
243         * doc/sdccman.lyx: documented medium model
244         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
245         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
246         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
247         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
248           (allocParms): set SCLS and OCLS to pdata for medium model
249         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
250           for pdata,
251           (powof2): return <0 if not power of 2
252         * src/avr/gen.c (genBitWise): use updated powof2
253         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
254           (shiftR2Left2Result): small optimization in setup, save acc when storing,
255           (shiftLLeftOrResult): use B if necessary
256         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
257         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
258         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
259         * support/regression/Makefile.in: added test-mcs51-medium
260         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
261
262 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
263
264         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
265         specifier unsigned
266         * device/lib/time.c (mktime): fixed bug 1334315
267
268 2005-10-28 Raphael Neider <rneider AT web.de>
269
270         * device/include/pic/p16f_common.inc: added common declarations
271         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
272
273 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
274
275         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
276           (aopPutUsesAcc): added to predict accumulator use,
277           (assignResultValue): save acc if necessary,
278           (genMinusDec): store result if indirectly addressed,
279           (genDivOneByte):  save acc if necessary,
280           (movLeft2Result): bugfix if left already in acc,
281           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
282             attention to accumulator use (esp. pdata),
283           (genReceive): receive pdata correctly
284         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
285         * src/SDCCicode.h: added isOperandInPagedSpace prototype
286
287 2005-10-27 Raphael Neider <rneider AT web.de>
288
289         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
290
291 2005-10-27 Raphael Neider <rneider AT web.de>
292
293         * .version: changed version to 2.5.4
294         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
295         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
296           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
297             arithmetics support routines
298         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
299         * device/lib/Makefile.in: also create installdir for pic
300
301         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
302           pic14 port as well
303         * src/pic/device.c (dump_sfr): rewritten to delegate register
304           placement to the linker (use `extern sym' rather than sym EQU addr),
305           (validAddress): fixed to check last specified address
306         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
307           (popGetLit): truncate literal value to 8 bit,
308           (popGet): moved assert to more appropriate place
309           (popGetExternal): create pCode operand from and mark the according
310             symbol as being `extern'
311           (popGetAddr): added sanity check on immediate's offset, provide
312             GPOINTER tag on demand
313           (aopPut): fixed for immediates,
314           (mov2w_op): move operand's address or contents to WREG (depending on
315             operand type), safer variant of mov2w,
316           (movwf,call_libraryfunc): NEW, handy abbreviations,
317           (get_argument_pcop,get_return_val_pcop,pass_argument,
318           get_returnvalue): interface for accessing function parameters and
319             return values,
320           (assignResultValuei,genRet): use new parameter/return value interface
321           (pic14_getDataSize): back to old version handling generic pointers,
322           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
323             provided implementation and/or fixed old one,
324           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
325             calls, removed legacy 8051 reference code
326           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
327           (loadSignToC): NEW, move the operands sign bit to CARRY,
328           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
329             genRightShiftSigned, accepts negative shift counts,
330           (setup_fsr): load FSR and adjust IRP (indirect memory access),
331           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
332             generic pointers, __data pointers and __code pointers,
333           (genUnpackBits,genPackBits): rewritten to work with generic pointers
334             and signed bitfields, limit bitfields to 8 bit,
335           (genDataPointerGet): fixed number of bytes read,
336           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
337           (genPointerGet,genPointerSet): fixed handling of __code pointers,
338             pointers to constant data are no longer assumed to point to __code
339             space, removed invalid pointer types,
340           (bitpatternFromVal): retrieve the PICs representation of an integer
341             or float literal,
342           (genDataPointerSet): fixed assigning to po_immediate operands,
343           (genGenPointerSet): implemented as library call,
344           (genIfx): fixed incorrect condition,
345           (genAddrOf): limit generic pointers' addresses to 2 bytes,
346             provide GPOINTER tag according to destination's storage class,
347           (genCast): added code to handle casting to generic pointers, added
348             sign-/zero extension of the result
349           (aop_isLitLike,op_isLitLike): fixed handling of immediates
350         * src/pic/gen.h: added macros to access IRP bit in STATUS register
351         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
352           extend the result
353         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
354           address/register resides in the shared banks
355           (emitSymbolToFile): improved to handle global and `pinned' symbols,
356             put all variables into separate sections (have the linker arrange
357             them)
358           (picglue): put init code and interrupt handlers in separate sections
359         * src/pic/main.c: added port specific options table, modified to PORT
360           structure to make GPOINTERs 3 byte, added pic14_options
361           (_pic14_do_link): private linking routine (update paths to libraries,
362             add libsdcc.lib by default)
363         * src/pic/main.h: declare pic14_options
364         * src/pic/pcode.c: fixed instructions i/o relations,
365           (RegCond): reverted to correct version,
366           (newpCodeOpLit): truncate literals to 8 bit,
367           (genericPrint): added debug output,
368           (getRegFromInstruction): fixed for various operand types, simplified
369           (BuildFlow): fixed broken handling of isntructions with labels
370           (LinkFlow): start at last instruction in flow (skip trailing comments),
371             pass the flow on to the next instruction after CALL
372           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
373           (insertPCodeInstruction): fixed inserting after a skip instruction,
374           (DoBankSelect): fixed for labeled instructions
375           (OptimizepBlock): honor --nopeep switch
376           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
377         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
378         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
379           (pCodeOptime2pCodes): allow disabling this optimization via
380             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
381             but is still buggy), started implementation of a dataflow based
382             pCode optimization (CSE + dead code elimination)
383           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
384         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
385           names are independant of the stack location and therefore portable across
386           devices
387
388 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
389
390         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
391           (selectSpil): fixed bug 1337835 by not spilling bit variables
392         * support/regression/tests/bug1337835.c: added test for this bug
393         * src/mcs51/peeph.def: restart after rule 3.c,
394           addded rules 263.x to optimize loading constants
395
396 2005-10-26 Raphael Neider <rneider AT web.de>
397
398         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
399         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
400           (genAssign): emit warning when casting literals to generic pointer
401             type, also applies when taking the address of a fixed variable,
402           (genCast): improved casting to generic pointers
403         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
404           extern variables, added verbose error message
405         * device/include/pic16/{string.h,errno.h}: added #pragma library c
406
407 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
408
409         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
410         carry must be complemented too
411         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
412         could be emitted by genMinus
413         * src/SDCCval.c (constVal): fixed bug 1305065
414
415 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
416
417         * src/SDCCast.c (addCast): added promotion for bit variables
418         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
419         promotion casts + optimisation
420         (optimizeGetWord): fix warning 'i' might be used uninitialized
421         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
422         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
423
424 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
425
426         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
427         all chars are promoted to int; promotion should be handled in SDCCast.c
428
429 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
430
431         * device/lib/_strcmp.c: Fixed bug 1326457
432
433 2005-10-11 Raphael Neider <rneider AT web.de>
434
435         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
436         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
437
438 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
439
440         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
441         * support/regression/tests/sfr16.c: added test for the sfr32 bug
442
443 2005-10-04 Raphael Neider <rneider AT web.de>
444
445         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
446           device/lib/pic16/pics.all: added pic18f1320
447         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
448
449 2005-09-30 Raphael Neider <rneider AT web.de>
450
451         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
452         * src/pic16/devices.inc: NEW, provides device descriptions
453         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
454
455 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
456
457         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
458           GETHBIT
459
460 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
461
462         * doc/sdccman.lyx: updated Highest Order Bit documentation,
463           documented Any Order Bit, Higher Order Byte and Higher Order Word
464         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
465         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
466           (optimizeGetAbit): new, to get any bit, not only the high bit,
467           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
468           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
469           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
470           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
471             RIGHT_OP: also try GETBYTE, GETWORD optimization,
472             GETABIT, GETBYTE, GETWORD: decorate them,
473           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
474           (ast_print): added GETABIT, GETBYTE, GETWORD
475         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
476         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
477           (geniCodeBinary): new generic binary icode,
478           (ast2iCode): added GETABIT, GETBYTE, GETWORD
479         * src/port.h: updated comment for PORT.hasExtBitOp
480         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
481           (genGetByte): new, to get a single byte,
482           (genGetWord): new, to get a word from a long,
483           (gen51Code): added GETABIT, GETBYTE, GETWORD
484         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
485
486 2005-09-23 Raphael Neider <rneider AT web.de>
487
488         * configure.in, configure: have device/lib/pic configured
489         * device/lib/Makefile.in: added model-pic14
490         * device/lib/clean.mk: added pic/ to clean rule
491         * device/lib/pic: added rudimentary pic14 library providing support
492           functions for multiplication/division/generic pointer access
493         * src/SDCCopt.c (convilong): mark support functions as extern
494           for pic14 port as well
495         * src/pic/gen.c (genMult): added assertions,
496           (genpic14Code): emit warning on unhandled iCodes
497         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
498         * src/pic/pcode.c (pCodeOpCopy),
499         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
500           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
501           SFR_REGISTER}), made safe for future extensions
502         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
503           instructions even if preceeded by SKIP instructions (also remove
504           them); removed unused code
505         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
506           prevents leaving parts of the structure uninitialized after copying
507
508 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
509
510         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
511           ago by me
512         * support/regression/tests/addsub.c: added test for the bug
513
514 2005-09-21 Raphael Neider <rneider AT web.de>
515
516         * device/include/pic16/pic18f1220.h,
517           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
518         * device/lib/pic16/Makefile.rules: added missing opening paren
519         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
520           are provided in genutils.c,
521           (genUminusFloat,genUminus,genCmpEq): added asserts on different
522           operand/result sizes,
523           (genCmp): assert on NULL pointers first, then check deref'ed values
524         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
525           result size
526
527 2005-09-18 Raphael Neider <rneider AT web.de>
528
529         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
530           as these are now unused,
531           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
532         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
533           local, avoids uninitialized pointer dereference on r->name
534         * src/pic16/ralloc.c (newReg): fixed indentation
535
536 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
537
538         * src/SDCCval.c (constVal): fixed bug 730366
539         * support/Util/SDCCerr.c,
540         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
541
542 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
543
544         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
545
546 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
547
548         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
549
550 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
551
552         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
553           (hex2dec): made hex_digit unsigned char, removed ascii dependance
554         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
555           (hex2dec): made hex_digit unsigned char, removed ascii dependance
556         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
557         * packihx/packihx.c (hexDigit): made c unsigned char
558         * as/mcs51/lklibr.c (fndsym),
559         * link/z80/lkgb.c (gb),
560         * link/z80/lklibr.c (fndsym),
561         * link/z80/lkrloc.c (relr),
562         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
563         * src/SDCC.lex (checkCurrFile, process_pragma),
564         * src/SDCCglue.c (spacesToUnderscores),
565         * src/SDCCmain.c (setParseWithComma, processFile),
566         * src/asm.c (tvsprintf, printCLine),
567         * src/avr/gen.c (emitcode, aopPut),
568         * src/ds390/gen.c (emitcode),
569         * src/hc08/gen.c (emitcode, emitinline),
570         * src/mcs51/gen.c (emitcode, genInline),
571         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
572           tokenizeLineNode),
573         * src/pic/ralloc.c (debugLog),
574         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
575           tokenizeLineNode),
576         * src/pic16/ralloc.c (debugLog),
577         * src/z80/main.c (_process_pragma):
578            made all ctype.h function calls safe
579         * src/SDCCopt.c: include math.h for fabs
580         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
581           and used them throughout the code to make ctype.h function calls safe
582         * src/ds390/main.c (asmLineNodeFromLineNode),
583         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
584         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
585            unsigned char*
586         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
587           (newpCodeAsmDir): made ctype.h function calls safe
588         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
589           pic16_emitcode):  made lbp unsigned char*
590         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
591           (pic16_newpCodeAsmDir): made ctype.h function calls safe
592         * src/xa51/gen.c (emitcode),
593         * src/z80/gen.c (_emit2): made lbp unsigned char*
594         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
595            char*
596
597 2005-09-05 Raphael Neider <rneider AT web.de>
598
599         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
600           access bank splitpoint
601
602 2005-09-05 Raphael Neider <rneider AT web.de>
603
604         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
605
606 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
607
608         * .version: changed to version 2.5.3
609         * doc/sdccman.lyx: changed version to 2.5.3,
610           documented --codeseg and --constseg and pragma codeseg and constseg,
611           documented bit parameters (reentrant) and bit returning
612         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
613            currFunc->recvSize, but is this ok for all ports?
614           (ast2iCode): result of ~ on unsigned char must be cast to int for
615            bool to work
616         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
617           function pointers in bit space
618         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
619           (processFuncArgs): call port.reg_parm() with reentrancy info
620         * src/port.h,
621         * src/avr/main.c,
622         * src/ds390/main.c,
623         * src/hc08/main.c,
624         * src/pic/main.c,
625         * src/pic16/main.c,
626         * src/xa51/main.c,
627         * src/z80/main.c: port.reg_parm prototype extended with
628           "bool reentrant" parameter
629         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
630           options.stackAuto for allocating bit register parameters
631         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
632           (genSend): set BitBankUsed if it is,
633           (selectRegBank): factored out of genCall for use in genPcall,
634           (genCall): removed redundant dtype assignmen, use selectRegBank,
635           (genPcall): handle returning in Carry properly, save in F0 if needed,
636           (genReceive): handle bit register parameters
637         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
638           (mcs51_assignRegisters): enable bit registers for all reentrant
639            functions and don't set BitBankUsed unconditionally
640         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
641         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
642         * support/regression/tests/funptrs.c: added tests for BOOL and for return
643
644 2005-08-27 Borut Razem <borut.razem AT siol.net>
645
646         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
647         ppc-osx (Darwin) does not support -u option. It seems that it is
648         supported only on Linux - GNU cp
649
650 2005-08-25 Borut Razem <borut.razem AT siol.net>
651
652         * sim/ucsim/gui.src/serio.src/Makefile.in,
653           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
654           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
655           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
656           install and strip, since the strip at /usr/ccs/bin should be used
657           on solaris
658
659 2005-08-24 Borut Razem <borut.razem AT siol.net>
660
661         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
662
663 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
664
665         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
666         ffffffffu
667
668 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
669
670         * as/mcs51/aslink.h: completed lkrloc.c prototypes
671         * as/mcs51/lkmain.c (link_main): fixed warning
672         * device/include/stdbool.h: ds390 has no advanced bit support yet
673         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
674         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
675         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
676           and updated their macros
677         * src/SDCCval.c (constVal): updated comment for renamed b_long
678
679 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
680
681         * as/mcs51/asdata.c: changed ctype['['] to BINOP
682         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
683           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
684           (oprio): set priority for '['
685         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
686            and adb_24_bit
687         * as/mcs51/asm.h: added defines R_BIT and S_BIT
688         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
689         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
690         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
691           added overlayable BIT_BANK area
692         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
693           (summary2): explain 'T' in legenda
694         * as/mcs51/lkrloc.c: replaced old K&R style,
695           (relr): added R_BIT processing,
696           (errmsg): added "Bit-addressable relocation error",
697           (adb_bit): added for converting from byte- to bit-addressable space,
698           (adb_24_bit): added for converting from byte- to bit-addressable space
699         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
700            used in reentrant functions now even as return value
701         * device/lib/_gptrput.c (_gptrput): removed obsolete code
702         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
703           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
704         * src/SDCCglobl.h: added indicator BitBankUsed
705         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
706            the bit registers b0-b7
707         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
708           (geniCodeCast): fixed bug 1263853,
709           (geniCodeLogicAndOr): put result in bool or char,
710           (geniCodeReceive): added parameter func for accessing the return type,
711           (geniCodeFunctionBody): pass func to geniCodeReceive
712         * src/SDCCmain.c: added indicator BitBankUsed
713         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
714         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
715           (checkSClass): don't put automatic bool/bit on stack,
716           (checkFunction): removed check on function cannot return bit
717         * src/SDCCsymt.h: added newBoolLink prototype
718         * src/mcs51/gen.c (rb1regs): added bit registers,
719           (movc): created for assigning to carry,
720           (pushReg, popReg): created for pushing registers,
721           (sameRegs): check both AOP_REG and AOP_CRY types,
722           (aopOp): handle bit registers,
723           (aopPut): optimization no self-assign,
724           (saveRegisters): push reg->base (bits) only once for bit registers,
725            and use pushReg,
726           (unsaveRegisters): pop reg->base only once and use popReg,
727           (assignResultValue): added parameter func and return in carry for bits,
728           (genIpush): optimization no reload in A if not changed,
729           (genSend): bit parameters in reentrant functions are passed in bit
730            registers by first assigning to bits in B, then save registers and
731            copy B to bits,
732           (genCall): handle returning in Carry properly, save it in F0 if needed,
733           (genPcall): updated assignResultValue call, this is not safe yet for bit
734            returning function !!!
735           (genFunction): don't generate equ's for bit registers and use pushReg,
736           (genEndFunction): take care of bit returning functions and use popReg,
737           (genRet): return bit in Carry,
738           (genIfx): optimize bit registers and other directly addressable bits,
739           (genReceive): updated assignResultValue call
740         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
741           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
742            registers when using stack-auto
743         * src/mcs51/ralloc.c (_G): added allBitregs,
744           (regs8051): added the bit registers,
745           (createStackSpil): use macro IS_BIT,
746           (getRegBit): added to allocate a bit register, else spill,
747           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
748           (updateRegUsage): factored out to ease stepping while debugging,
749           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
750            also allocate bit registers,
751           (fillGaps): handle bit registers,
752           (findAllBitregs): added to create bit vector with all bit registers,
753           (mcs51_allBitregs): returns this bit vector,
754           (mcs51_assignRegisters): when using stack-auto use bit registers for
755            passing parameters and creating local variables
756         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
757
758 2005-08-22 Borut Razem <borut.razem AT siol.net>
759
760         * device/lib/Makefile.in: replaced find option -or with -o
761           to make it run on solaris
762
763 2005-08-22 Raphael Neider <rneider AT web.de>
764
765         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
766           fixes #1265442 (crash on Solaris)
767
768 2005-08-20 Borut Razem <borut.razem AT siol.net>
769
770         * configure, configure.in: added tests for libsocket and libnsl libraries,
771           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
772           from support/regression/Makefile.in
773         * support/regression/Makefile.in: added
774         * device/lib/pic16/Makefile.common.in: force make to use bash shell
775         * sim/ucsim/libtool: regenerated on sparc-solaris
776         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
777           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
778           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
779           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
780           sparc-solaris, which doesn't use GNU ld linker
781         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
782         * as/Makefile: find on sparc-solaris does not support -maxdepth option
783
784 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
785
786         * src/mcs51/peeph.def: updated comments
787
788 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
789
790         * device/lib/_gptrget.c,
791         * device/lib/_gptrput.c: slightly shorter
792         * doc/sdccman.lyx: incremented version
793         * src/mcs51/peeph.def: moved peephole comments to the line of first
794           change to better keep line correlation, reanimated 186.e
795         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
796
797 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
798
799         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
800           David Saxton with quotes around file name.
801
802 2005-08-15 Borut Razem <borut.razem AT siol.net>
803
804         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
805           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
806           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
807           make tests run on x86_64 platform
808
809 2005-08-13 Raphael Neider <rneider AT web.de>
810
811         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
812           as it might be executed DURING a build (parallel make is wonderful)
813
814 2005-08-13 Raphael Neider <rneider AT web.de>
815
816         * device/lib/Makefile.in (port-specific-objects-pic16):
817           revert to cp $(PORT)/bin/*.* $(PORTDIR)
818         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
819           dependency
820         * device/lib/pic16/Makefile.rules: build subdirs before creating
821           the library, removed builddir rule, create $(builddir) early in
822           recurse rule, use empty recurse rule for leaf directories
823         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
824           mkdir errors (race condition), removed duplicate suffix "hex"
825           from clean rules
826         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
827         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
828           prevents mkdir -p from aborting on Alpha
829
830 2005-08-12 Raphael Neider <rneider AT web.de>
831
832         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
833           db-statements in order to allow for arrays of pointers in code
834           sections to be placed without interspersed 0-padding, fixes
835           bug #1256215
836         * (emitStatistics): fixed division by zero for pic18f1220
837         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
838           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
839         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
840         * (pic16_pCodeConstString): keep track of already emitted string
841           literals to prevent "duplicate definitions of symbol _str_NR"
842         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
843           debug message
844         * device/lib/Makefile.in: ignore failing PIC16 library builds
845         * device/lib/pic16/Makefile: do not build if gputils are missing
846         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
847
848 2005-08-10 Raphael Neider <rneider AT web.de>
849
850         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
851           my last commit)
852
853 2005-08-10 Raphael Neider <rneider AT web.de>
854
855         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
856           Rokas' patch to add the new fixed point type "__fixed16x16"
857         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
858           functions for __fixed16x16 arithmetics
859         * device/lib/pic16: reimplemented the build system to support
860           a separate build directory, better handling of libio (create
861           the library in a separate subdir for each architecture) and
862           easier configuration (centralized in Makefile.common)
863
864 2005-08-07 Raphael Neider <rneider AT web.de>
865
866         * src/pic16/gen.c (genrshTwo): fixed sign extension
867         * src/pic16/device.c: added pic18f2320, 4220 and 4320
868         * device/include/pic16/pic18f2220.h: changed some bit definitions,
869           added T0CONbits
870         * device/include/pic16/pic18f4220.h: NEW, header for
871           pic18f4220 and pic18f4320
872         * device/include/pic16/pic18fregs.h: added new devices,
873           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
874         * device/include/pic16/signal.h: resolved name clashes
875           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
876           to also allow testing for interrupt enable bits, added
877           comments on how to use the macros
878         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
879         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
880           register definitions for the devices
881         * device/lib/pic16/pics.all: added new devices
882         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
883           allocated memory
884         * device/lib/pic16/libc/stdlib/memfree: do not count
885           the block header as free memory
886         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
887           simplified and added missing end-of-blocklist-marker
888           (reported by Peter Onion, fixes #1252814)
889         * (_mergeHeapBlock): fixed loop condition
890         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
891           len==0, restructured code
892         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
893           up a bit, reduced bitfield accesses, prevent endless loops
894           in case of heap corruption
895         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
896           "unreferenced arguments/must return a value" warnings
897         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
898           replaced BAUDREG with SPBRG
899         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
900           device/lib/pic16/debug/gstack/gstack.c: replaced
901           _naked, _asm, _endasm with __naked, __asm, __endasm
902
903 2005-08-05 Raphael Neider <rneider AT web.de>
904
905         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
906           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
907
908 2005-08-05 Borut Razem <borut.razem AT siol.net>
909
910         * device/lib/Makefile.in: added missing ';'
911         * configure: removed ^M characters
912
913 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
914
915         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
916           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
917           License
918
919 2005-08-04 Borut Razem <borut.razem AT siol.net>
920
921         * configure.in: pic16 libraries build 2nd try - enable running
922           configure in device/lib/pic16
923         * configure: regenerated from configure.in
924         * device/lib/Makefile.in: create $(PORT)/bin directory
925
926 2005-08-03 Raphael Neider <rneider AT web.de>
927
928         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
929           to get/set values via pointers
930         * (genUnpackBits,genPackBits): changed detection of
931           ptr->bitfield vs. sym.bitfield, fixed access via generic
932           pointers, removed dead (wrong) code for multibyte bitfields
933         * (genNearPointerGet, genGenPointerGet): removed useless code,
934           fixed bitfield detection, fixes #1250594
935         * (genNearPointerSet): removed useless code
936         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
937           and introduced macro pic16_emitpcode that conditionally emits
938           the origin of the following pCode (useful for debugging SDCC)
939         * src/pic16/pcode.c: changed (and disabled) some debug outputs
940         * (createDefmap): fixed handling of LFSR for --optimize-df
941
942 2005-08-02 Borut Razem <borut.razem AT siol.net>
943
944         * device/lib/Makefile.in: pic16 libraries build enabled since
945           gputils-0.13.2 are now localy installed at sourceforge's compile farm
946
947 2005-08-02 Raphael Neider <rneider AT web.de>
948
949         * src/pic16/gen.c (genPackBits): removed deprecated warning
950         * (genGenPointerSet): fixed bitfield detection
951
952 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
953
954         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
955
956 2005-07-31 Raphael Neider <rneider AT web.de>
957
958         * device/lib/pic16/libdev/pic18f458.c,
959           device/include/pic16/pic18f458.h: added missing T0CONbits
960
961 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
962
963         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
964
965 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
966
967         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
968
969 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
970
971         * device/include/mcs51/at89c51ed2.h: added.
972
973 2005-07-23 Raphael Neider <rneider AT web.de>
974
975         * src/pic/gen.h: added emitpcode macro for debugging
976         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
977           and replace by macro adding debug information on demand
978         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
979         * (gencjne): tried to fix; replaced with correct (slower) code
980         * (gen{Unp,P}ackBits): fixed single bit access
981         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
982         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
983           previous instruction
984         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
985           register has to be handled with care (forbidding movement
986           of assignments/uses, removing assignments completely, ...)
987         * (pCodeOptime2pCodes): make use of regIsSpecial
988         * added lots of debugging output (commented out)
989         * src/pic/rallloc.c (deassignLRs): prevent operand registers
990           from being reused as result UNLESS it is known to work
991
992 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
993
994         * support/Util/dbuf.h: include <stddef.h> for size_t
995         * .version: changed to version 2.5.2
996
997 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
998
999         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
1000
1001 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1002
1003         * src/hc08/gen.c (genMinus): fixed bug #1241835,
1004           (genModOneByte): removed needless psha/pula
1005
1006 2005-07-22 Raphael Neider <rneider AT web.de>
1007
1008         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
1009           have PIC14 handled like PIC16, fixes broken pic14 linker calls
1010         * src/pic/gen.c (resolveIfx): do not "invent" labels
1011         * (genSkipc): changed to positive logic
1012         * (genSkipCond): removed as no longer needed
1013         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
1014           backport from PIC16
1015         * (genLeftShift): check operands are in different registers
1016         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
1017           INCF does not update CARRY...
1018         * src/pic/main.c: fixed _linkCmd
1019         * src/pic/pcode.c (unlinkpCode): added inactive code
1020         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
1021           alive (do not assign result and operand overlapping registers)
1022
1023 2005-07-22 Raphael Neider <rneider AT web.de>
1024
1025         * src/pic/device.c (dump_sfr): replaced register declaration with
1026           call to emitSymbolToFile() to avoid duplicate symbols
1027         * (assignRelocatableRegisters): do not declare external symbols
1028         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
1029           right (take size of type, not etype)
1030         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
1031         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
1032         * (packRegsForAccUse): disabled assignment of WREG as
1033           the result reg to prevent occurence of just fixed #1235003,
1034           fixes #1242954
1035         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
1036           symbols (avoids duplicate symbols in .asm file)
1037         * (pic14emitRegularMap): use emitSymbolToFile()
1038         * src/pic/gen.c (aopOp): fixed spillLocation handling
1039         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
1040         * (genDataPointerSet): removed unneccessary variables/output
1041
1042 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
1043
1044         * as/mcs51/lkarea.c: enlarged codemap for banked memory
1045         * device/lib/mcs51/crtbank.asm: added # to 0x0F
1046
1047 2005-07-21 Raphael Neider <rneider AT web.de>
1048
1049         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
1050           architecture cannot handle them efficiently, fixes bug #1235003
1051         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
1052           check for empty sets before using them (fixes bug #1232190)
1053
1054 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
1055
1056         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
1057           (lnksect2): generate warnings for memory overlap
1058         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
1059           constseg to set the name of these segments so you can instruct the linker
1060           to place them in banks
1061         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
1062         * src/SDCCglobl.h: added MODEL_HUGE to enum,
1063           added code_seg and const_seg to options
1064         * src/SDCCglue.c (emitMaps): use options.const_seg,
1065           (createInterruptVect): put interrupt vectors in segment HOME,
1066           (glue): put HOME before static segment and put the main glue in HOME,
1067           (glue): use options.code_seg
1068         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
1069         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
1070           these segments so you can instruct the linker to place them in banks
1071           (linkEdit): use code_loc for HOME segment which should be the first
1072           segment in code memory now
1073         * src/SDCCmem.c: fixed more stuff like bug 1238386
1074         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
1075           (changePointer): don't change function pointers to code pointers for
1076           banked functions,
1077           (compareType): added exceptional check for banked function pointers
1078         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
1079         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
1080           after static in code memory
1081         * src/mcs51/gen.c: added aopLiteralLong prototype,
1082           (aopForSym): use getSize for functions,
1083           (genCall): generate banked calls over one trampoline __sdcc_banked_call
1084           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
1085           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
1086           the segment,
1087           (genPcall): use call for literal function pointers and generate banked
1088           calls over the one trampoline so there's only one place for the user to
1089           modify according to his/hers hardware,
1090           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
1091           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
1092         * src/mcs51/main.c: added keyword banked,
1093           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
1094         * support/Util/SDCCerr.c,
1095         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
1096           needed for passing the bank and address to the trampoline
1097         * device/lib/mcs51/crtbank.asm: added for bankswitching
1098         * device/lib/mcs51/Makefile: added crtbank
1099
1100 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1101
1102         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
1103           for fields at offset 0 of a struct or union as reported
1104           on 2005-07-07 in the developer mailing list.
1105
1106 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
1107
1108         * src/SDCCmem.c: fixed bug 1238386
1109
1110 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1111
1112         * src/mcs51/peeph.def: added labelrefcounting for peepholes
1113           (patch #1144962), added peephole 300, enabled 259.x
1114         * doc/sdccman.lyx: removed screenshot and provided link instead
1115
1116 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1117
1118         * doc/sdccman.lyx: added section about debugging with ddd
1119         * doc/figures/ddd_example.eps: screenshot of debugging session
1120
1121 2005-07-04 Raphael Neider <rneider AT web.de>
1122
1123         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
1124           like CODE pointers, fixes #1115683
1125         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
1126           call, fixes bugs #1232211, #1228110,
1127           fixed wrong casts to pCodeFlow from pCodeInstructions
1128
1129 2005-07-04 Raphael Neider <rneider AT web.de>
1130
1131         * src/pic/gen.c (popGet): changed assert to allow for
1132           bit operands
1133         * (popGetAddr): changed signature to provide
1134           an additional index, patched all call sites
1135         * (genCmpEq): handle literal-like operands correctly
1136         * (genAddrOf): added sanity checks on __code/__data pointers
1137         * (genAssign): added handling of symbols from __code section
1138         * (gencjne): do not generate code for comparisons whose result
1139           is neither stored nor used, fixes bug #1171114
1140         * (AccLsh, AccRsh): operate on operand instead of WREG
1141         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
1142           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
1143           by known count
1144         * rewrote complete shift-by-literal logic, commented unused
1145           functions out
1146         * (genConstPointerGet): get multiple bytes (if result size > 1),
1147           fixed handling of non-immediate addresses
1148         * (genPointerGet): handle CODE pointers like CONST pointers
1149         * (genpic14Code): insert C-SRC lines as Cource-pCodes
1150         * ({aop,op}_isLitLike): NEW, single place to decide whether an
1151           operand is to be treated as a literal or not
1152         * (mov2w,genPcall,genCmpEq),
1153           src/pic/genarith.c: use aop_isLitLike() to decide between
1154           literal/register contents
1155         * (addSign): added missing offset
1156         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
1157           only emit comment in debug-mode,
1158           use {aop,op}_isLitLike throughout the file
1159         * src/pic/glue.c: fix initializers for pointers (work in progress)
1160         * src/pic/pcode.c (get_op): honor index on _const symbols
1161         * ({reset,dump}pCodeStatistics): NEW, estimate code size
1162         * (dumppBlock): added pCode size estimation
1163         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
1164           check for IS_SYMOP before OP_SYMBOL'ing
1165         * fixed indentation, compacted switch-statements
1166         * (allocReg): find free register and allocate it instead of
1167           allocating new registers all the time
1168         * (deassignLRs): prevent POINTER_GET's from being assigned the same
1169           registers as its operands (necessary only for multibyte GETs)
1170
1171 2005-07-01 Raphael Neider <rneider AT web.de>
1172
1173         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
1174           debugging .asm-output macros FENTRY + FEXIT
1175         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
1176           way... I wonder...
1177         * (emitpComment): NEW, printf to pCode
1178         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
1179           offset handling
1180         * (popGetAddr): NEW, variant of popGet to access an immediates
1181           high(er) bytes instead of the n'th byte of memory they reference,
1182           replaced popGet with popGetAddr where neccessary
1183         * (genDataPointerGet): reactivated and fixed implementation
1184         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
1185           accesses
1186         * (genDataPointerSet): fixed multibyte assignments
1187         * (genpic14Code): fixed --i-code-in-asm handling
1188         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
1189         * (genPlus): fixed index-out-of-bounds error
1190         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
1191         * src/pic/ralloc.c: added debugging output macro FENTRY2
1192         * (spillThis): fixed indentation, enbraced for-body for clarity
1193         * (rematStr): commented out as now unused
1194         * (regTypeNum): commented out special spill case (overwrites
1195           arbitrary values)
1196         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
1197
1198 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
1199
1200         * doc/sdccman.lyx: documented sfr16/sfr32,
1201           added example for using storage class with function pointers
1202         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
1203
1204 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
1205
1206         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
1207         * device/lib/_itoa.c,
1208         * device/lib/_ltoa.c: optimized codesize
1209         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
1210           but don't know how to suppress the double warning.
1211         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
1212         * support/Util/SDCCerr.c,
1213         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
1214
1215 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
1216
1217         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
1218           fixed old K&R prototypes
1219         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
1220         * device/lib/_gptrget.c,
1221         * device/lib/_gptrgetc.c,
1222         * device/lib/_gptrput.c: changed versions for new memory indicator values,
1223           also new versions for small generic pointers and banked generic pointers
1224         * src/port.h: added const_name
1225         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
1226         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
1227         * src/SDCCcse.c (findPrevIc): check all associative operators
1228         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
1229         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
1230         * src/SDCCmem.c: updated comments,
1231           set far-space to 0 for pdata, results in optimized code
1232         * src/SDCCmem.h: added macro CONST_NAME
1233         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
1234           moving the info into the highest bits, see also gptrget/gptrput
1235         * src/src.dsp: added sdcc.ico to project files
1236         * src/avr/gen.c (genCast): fixed bug 0x%d
1237         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
1238         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
1239           relation between ptr_type and DCL_TYPE,
1240           (genCast): fixed bug 0x%d
1241         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
1242           (CODE)" for const_name
1243         * src/hc08/gen.c (genCast): fixed bug 0x%d
1244         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
1245           (hc08_port): added "CONST (CODE)" for const_name
1246         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
1247           (aopForRemat, adjustArithmeticResult): disconnected direct relation
1248           between ptr_type and DCL_TYPE,
1249           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
1250           operand* and took AOP() inside function so sfr-ness can be checked,
1251           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
1252           new prototype,
1253           (genFunction, genEndFunction): optimized stack setup,
1254           (genMinus): optimized for literals with ending zeroes (in bytes),
1255           (genCast): fixed bug 0x%d
1256         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
1257           (mcs51_port): added "CONST (CODE)" for const_name
1258         * src/mcs51/peeph.def: made rule 226 more generic
1259         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
1260         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
1261         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
1262         * src/z80/main.c (z80_port): added NULL for const_name,
1263           (gbz80_port): added NULL for const_name
1264         * support/regression/tests/bug663539.c,
1265         * support/regression/tests/sfr16.c: new tests
1266
1267 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1268
1269         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
1270
1271 2005-06-24 Raphael Neider <rneider AT web.de>
1272
1273         * device/lib/pic16/libdev/pic18f[68][567]20.c:
1274           corrected typos...
1275         * device/include/pic16/signal.h: added USBIF
1276           and SIG_USB
1277
1278 2005-06-24 Raphael Neider <rneider AT web.de>
1279
1280         * device/lib/pic16/libdev/pic18f2455.c,
1281           device/include/pic16/pic18f2455.h: NEW
1282         * device/include/pic16/pic18fregs.h,
1283           device/lib/pic16/pics.all,
1284           src/pic16/device.c: added 18f2455
1285         * device/lib/pic16/libdev/pic18f[68][567]20.c,
1286           device/include/pic16/{pic18f[68][567].h,usart.h}:
1287           replaced MULTIPLE_USARTS define with more relaible
1288           compatibility sfrs (for USART access)
1289
1290 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
1291
1292         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
1293           and the output asm file line is printed on two lines.
1294
1295 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1296
1297         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
1298           BGT, BLE, BHI, and BLS instructions
1299         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
1300           genCmpEq): removed
1301         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
1302           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
1303           fixes bug #1216342
1304         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
1305
1306 2005-06-15 Raphael Neider <rneider AT web.de>
1307
1308         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
1309         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
1310         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
1311           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
1312           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
1313
1314 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1315
1316         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
1317           Marcel Telka in bug #1215704
1318
1319 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
1320
1321         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
1322           located in shared memory bank.
1323
1324 2005-05-31 Raphael Neider <rneider AT web.de>
1325
1326         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
1327           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
1328           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
1329
1330 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
1331
1332         * device/lib/_strncpy.c: fixed the fix
1333
1334 2005-05-26 Raphael Neider <rneider AT web.de>
1335
1336         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
1337           initializers with \0, bug #1208187
1338         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
1339           intializers with \0, bug #1208187
1340
1341 2005-05-26 Raphael Neider <rneider AT web.de>
1342
1343         * src/pic16/glue.c (pic16_printIvalChar): fixed string
1344           initializers with \0, bug #1208187
1345         * src/pic16/main.c (_process_pragma): added sanity checks
1346           for stack position and size, emit warnings when appropriate
1347
1348 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
1349
1350         * device/lib/_strncpy.c: fixed not filling with \0
1351
1352 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1353
1354         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
1355           createFunction),
1356         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
1357           compound_statement),
1358         * src/SDCCsymt.h,
1359         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
1360
1361 2005-05-24 Raphael Neider <rneider AT web.de>
1362
1363         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
1364
1365 2005-05-24 Raphael Neider <rneider AT web.de>
1366
1367         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
1368           TRISE definitions, closes bug #1162453
1369
1370 2005-05-22 Raphael Neider <rneider AT web.de>
1371
1372         * src/pic16/main.c (_process_pragma): check for missing
1373           arguments to pragmas code and udata
1374         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
1375           consistency fixes to match other headers (thanks to Jim Paris)
1376         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
1377
1378 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
1379
1380         * src/SDCCicode.c (isOperandEqual): fixed missing ;
1381
1382 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
1383
1384         * support/regression/tests/bug1198642.c: new test
1385         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
1386         * src/SDCCcse.c (findPrevIc): added comment, please have a look
1387         * support/scripts/resource.h,
1388         * support/scripts/resource.rc,
1389         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
1390         * support/scripts/sdcc.ico: added 32x32 icon
1391
1392 2005-05-18 Raphael Neider <rneider AT web.de>
1393
1394         * device/lib/pic16/libdev/pic18f*.c,
1395         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
1396           keywords to "__sfr" and "__at (X)"
1397         * device/include/pic16/pic18fregs.h: added pic18f4520
1398         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
1399           #1203088 (MPLAB compatibility)
1400
1401 2005-05-17 Raphael Neider <rneider AT web.de>
1402
1403         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
1404         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
1405         * device/lib/pic16/pics.all: added new devices
1406         * src/pic16/device.c: added support for pic18f4520
1407
1408 2005-05-16 Raphael Neider <rneider AT web.de>
1409         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
1410         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
1411         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
1412           convenience function for bit access
1413
1414 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
1415
1416         * device/lib/printf_large.c: fixed bug 1193299
1417         * support/regression/tests/bug1057979.c: added test %3.3s
1418
1419 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1420
1421         * device/include/mcs51/8051.h,
1422         * device/include/mcs51/8052.h: made parseable with lint
1423         * device/include/mcs51/lint.h: added include file for (sp)lint
1424         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
1425         * doc/cdbfileformat.lyx,
1426         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
1427
1428 2005-05-14 Raphael Neider <rneider AT web.de>
1429
1430         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
1431         * device/lib/pic16/libc/stdlib/itoa.c (new)
1432         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
1433         * device/lib/pic16/libio/Makefile: exclude subdir according to
1434           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
1435         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
1436         * src/pic16/gen.c (genFunction): prevent annoying warning
1437         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
1438           nameclashes on BeOS
1439         * support/cpp2/cppmain.c (cpp_output_string): new
1440         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
1441           fixes bug 1116802
1442
1443 2005-05-13 Borut Razem <borut.razem AT siol.net>
1444
1445         * src/SDCCmain.c (linkEdit): fixed bug 1195202
1446
1447 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1448
1449         * .version: changed to version 2.5.1; back to bleeding edge development
1450
1451 2005-05-11 Borut Razem <borut.razem AT siol.net>
1452
1453         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
1454           generate PDF version 1.3 documents
1455
1456 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1457
1458         * .version: changed to version 2.5.0
1459
1460 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1461
1462         * doc/sdccman.lyx: updated weblinks, index and smaller updates
1463
1464 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1465
1466         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
1467         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
1468         well as many smaller updates.
1469         * .version: changed to version 2.5.0-pre1
1470
1471 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1472
1473         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
1474
1475 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
1476
1477         * support/regression/tests/bug1185672.c: added
1478         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
1479           bug 1185672
1480         * src/mcs51/gen.c (genCall): added comments, made it look safer
1481         * src/mcs51/gen.c (genEndFunction): simplified
1482
1483 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
1484
1485         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
1486
1487 2005-04-14 Borut Razem <borut.razem AT siol.net>
1488
1489         * fixed bug 1045046 - SIGSEGV with really simple code?:
1490           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
1491           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
1492
1493 2005-04-14 Borut Razem <borut.razem AT siol.net>
1494
1495         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
1496           src/pic16/device.h: temporarily disabled experimental #inline pragma
1497           for 2.5.0 release
1498
1499 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
1500
1501         * device/include/z80/stdio.h,
1502         * device/include/z80/string.h: removed these highly incomplete files so
1503           SDCC can use the default ones in device/include/
1504
1505 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1506
1507         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
1508         gcc warning.
1509         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
1510         fix sdcpp warnings.
1511
1512 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1513
1514         * device/include/malloc.h: removed redundant __reentrant prototypes
1515         * device/lib/_mullong.c: added working xstack variant in asm (C version
1516           doesn't pass regression tests)
1517         * device/lib/bpx.c: used __data and made bpx char for mcs51
1518         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
1519           (createFunction): fixed bug with xstackPtr
1520         * src/SDCCcse.c: corrected comments
1521         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
1522           (killDeadCode, eBBlockFromiCode): removed unused code
1523         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
1524           corrected comments
1525         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
1526           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
1527           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
1528           (genModOneByte): fixed warning in MSVC
1529         * src/mcs51/main.c (): added comments
1530         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
1531
1532 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1533
1534         * src/SDCCmain.c (linkEdit): oops, changed one line too many
1535
1536 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
1537
1538         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
1539
1540 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
1541
1542         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
1543         characters arrays of larger size than the declared one.
1544
1545 2005-04-10 Borut Razem <borut.razem AT siol.net>
1546
1547         * src/pic/gen.c (genInline),
1548           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
1549           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
1550           (findNextInstruction), (findPrevInstruction),
1551           (findInstructionUsingLabel),
1552           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
1553         * src/pic/pcode.c (findLabel): added missing '\n'
1554         * src/src.dsp: added SDCCdwarf2.c to the project
1555
1556 2005-04-09 Borut Razem <borut.razem AT siol.net>
1557
1558         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
1559
1560 2005-04-08 Raphael Neider <rneider AT web.de>
1561
1562         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
1563           into the chain after a given one) and mergeDefmapSymbols (combine
1564           defmap entries for each symbol per pcode)
1565         * (createDefmap): have defmap entries merged in the end
1566         * (defmapReplaceSymRef): split defmap entries covering two accesses to
1567           a symbol before replacing one access type's symbol, merge symbols in
1568           the end (replacement symbol might already have an entry)
1569         * (assignValnums): keep reference to written WREG intact
1570
1571 2005-04-08 Raphael Neider <rneider AT web.de>
1572
1573         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
1574           Alpha)
1575
1576 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
1577
1578         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
1579         bytes
1580
1581 2005-04-07 Raphael Neider <rneider AT web.de>
1582
1583         * device/include/pic16/usart.h: added compatibility defines for
1584           devices with more than one USART
1585         * device/include/pic16/pic18f[68][567]20.h: activated above defines
1586
1587 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1588
1589         * device/lib/Makefile.in: updated for port specific include
1590
1591 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1592
1593         * support/regression/ports/mcs51/spec.mk: added mcs51 include
1594
1595 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1596
1597         * device/include/8051.h,
1598         * device/include/8052.h,
1599         * device/include/at89S8252.h,
1600         * device/include/at89c55.h,
1601         * device/include/at89x051.h,
1602         * device/include/at89x51.h,
1603         * device/include/at89x52.h,
1604         * device/include/mcs51reg.h,
1605         * device/include/reg51.h,
1606         * device/include/reg764.h,
1607         * device/include/regc515c.h,
1608         * device/include/sab80515.h: (re)moved these 12 files
1609         * device/include/mcs51/8051.h,
1610         * device/include/mcs51/8052.h,
1611         * device/include/mcs51/at89S8252.h,
1612         * device/include/mcs51/at89c55.h,
1613         * device/include/mcs51/at89x051.h,
1614         * device/include/mcs51/at89x51.h,
1615         * device/include/mcs51/at89x52.h,
1616         * device/include/mcs51/mcs51reg.h,
1617         * device/include/mcs51/reg51.h,
1618         * device/include/mcs51/reg764.h,
1619         * device/include/mcs51/regc515c.h,
1620         * device/include/mcs51/sab80515.h: and added them here
1621
1622 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
1623
1624         * device/include/stdarg.h: changed SDCC specific keywords to double
1625           underlined form.
1626         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
1627           mcs51 and ds390.
1628         * device/include/hc08/mc68hc908gp32.h,
1629         * device/include/hc08/mc68hc908jb8.h,
1630         * device/include/hc08/mc68hc908jkjl.h,
1631         * device/include/hc08/mc68hc908qy.h: fixed comments
1632         * device/include/mcs51/README: updated
1633         * device/include/mcs51/c8051f120.h: added PINRSF
1634         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
1635         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
1636           amidst code. Also inline is not supported.
1637
1638 2005-04-06 Raphael Neider <rneider AT web.de>
1639
1640         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
1641         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
1642           callers stack/frame pointers
1643
1644 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
1645
1646         * device/include/pic16/usart.h: added, missing in previous commit,
1647         * device/include/pic16/adc.h: fixed typo,
1648         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
1649         commit,
1650         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
1651         <p18fxxx.inc>
1652         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
1653         uninitialized because a bug appears with gplink
1654         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
1655         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
1656         complains for unrecognised option
1657
1658 2005-04-05 Raphael Neider <rneider AT web.de>
1659
1660         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
1661           structs as well (using memcpy)
1662         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
1663           on ISRs (GOTO has no label)
1664         * src/pic16/device.h: added OF_OPTIMIZE_DF
1665         * src/pic16/main.c: added compiler switch --optimize-df to enable the
1666           new data flow analysis/optimization
1667         * src/pic16/pcode.c: added (prototypes for and implementation of)
1668           dataflow analysis functions, fixed pCodeInstructions' inCond and
1669           outCond values, made RCALL a branch instruction
1670         * (pic16_unlinkpCode): keep C line if possible
1671         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
1672           C line moved if possible
1673         * (pic16_getRegFrompCodeOp): NEW, improved version of...
1674         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
1675           to use new pic16_getRegFrompCodeOp (works for more SFRs)
1676         * (pic16_BuildFlow): fixed skip instructions with label (did not start
1677           new flow)
1678         * (pic16_getJumptabpCode): NEW, needed in...
1679         * (LinkFlow): fixed handling of jumptables, calls and conditional
1680           branches
1681         * (pic16_InsertCommentAfter): NEW
1682         * (pic16_pCodeReplace): made verbose and flow preserving
1683         * (AnalyzeFlow): added call to data flow analysis
1684         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
1685         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
1686         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
1687
1688 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1689
1690         * src/SDCCast.c (decorateType): fixed bug #1105626
1691
1692 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
1693
1694         * device/include/asm/pic16/features.h,
1695         * pic18f*.h headers,
1696         * device/include/pic16/adc.h,
1697         * device/include/pic16/delay.h,
1698         * device/include/pic16/i2c.h,
1699         * device/include/pic16/malloc.h,
1700         * device/include/pic16/stdio.h,
1701         * device/include/pic16/stdlib.h,
1702         * device/include/pic16/string.h,
1703         * device/lib/pic16/libc/stdio/printf_tiny.c,
1704         * device/lib/pic16/libc/stdio/printf_small.c,
1705         * device/lib/pic16/libc/stdio/strmgpsim.c,
1706         * device/lib/pic16/libc/stdio/strmmssp.c,
1707         * device/lib/pic16/libc/stdio/strmusart.c,
1708         * device/lib/pic16/libc/stdio/vfprintf.c,
1709         * device/lib/pic16/libc/stdlib/ltoa.c,
1710         * device/lib/pic16/libc/stdlib/putchar.c,
1711         * device/lib/pic16/libc/stdlib/x_ftoa.c,
1712         * device/lib/pic16/libc/stdlib/memchrpgm.c,
1713         * device/lib/pic16/libc/stdlib/memchrram.c,
1714         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
1715         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
1716         * device/lib/pic16/libio/adc/adcbusy.c,
1717         * device/lib/pic16/libio/adc/adcread.c,
1718         * device/lib/pic16/libio/adc/adcsetch.c,
1719         * device/lib/pic16/libio/usart/ubaud.c,
1720         * device/lib/pic16/libio/usart/ubusy.c,
1721         * device/lib/pic16/libio/usart/udrdy.c,
1722         * device/lib/pic16/libio/usart/uopen.c,
1723         * device/lib/pic16/libio/usart/uputc.c,
1724         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
1725         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
1726         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
1727         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
1728         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
1729         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
1730         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
1731         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
1732         specific keywords to double underlined form,
1733         * device/lib/pic16/libc/Makefile.rules,
1734         * device/lib/pic16/libsdcc/Makefile.rules,
1735         * device/lib/pic16/libm/Makefile,
1736         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
1737         to compile with C standard set in Makefile.common
1738         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
1739         rand.c and crc.c in compilation process,
1740         * device/lib/pic16/libsdcc/int/divuint.c,
1741         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
1742         `c' from signed to unsigned,
1743         * device/lib/pic16/startup/crt0.c,
1744         * device/lib/pic16/startup/crt0i.c,
1745         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
1746         keywords to double underlined form, bug fixes in _do_cinit function
1747         which prevented the correct initialization of the .idata segment,
1748         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
1749         core to enter a infinite loop
1750         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
1751
1752 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1753
1754         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
1755
1756 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1757
1758         * device/include/Makefile.in: add support for hc08 subdirectory
1759         * device/include/hc08/: new subdirectory
1760         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
1761         Lucas Loizaga, thanks!
1762         * device/include/hc08/mc68hc908qy.h,
1763         * device/include/hc08/mc68hc908gp32.h,
1764         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
1765         their own directory. Changed internal macro names to use the compiler
1766         reserved namespace. Changed SDCC specific keywords to double
1767         underlined form.
1768         * device/include/math.h,
1769         * device/include/malloc.h,
1770         * device/include/stdarg.h,
1771         * device/include/stdbool.h
1772         * device/include/string.h,
1773         * device/include/tinibios.h,
1774         * device/include/ds400rom.h,
1775         * device/include/8051.h,
1776         * device/include/8052.h,
1777         * device/include/80c51xa.h,
1778         * device/include/at89c55.h,
1779         * device/include/at89S8252.h,
1780         * device/include/at89x51.h,
1781         * device/include/at89x52.h,
1782         * device/include/ds80c390.h,
1783         * device/include/reg764.h,
1784         * device/include/regc515c.h,
1785         * device/include/sab80515.h,
1786         * device/include/mcs51/c8051f000.h,
1787         * device/include/mcs51/c8051f018.h,
1788         * device/include/mcs51/c8051f020.h,
1789         * device/include/mcs51/c8051f040.h,
1790         * device/include/mcs51/c8051f060.h,
1791         * device/include/mcs51/c8051f120.h,
1792         * device/include/mcs51/c8051f300.h,
1793         * device/include/mcs51/c8051f310.h,
1794         * device/include/mcs51/c8051f320.h,
1795         * device/include/mcs51/c8051f330.h,
1796         * device/include/mcs51/c8051f350.h,
1797         * device/include/z180.h: Changed SDCC specific keywords to double
1798         underlined form.
1799
1800 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
1801
1802         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
1803         18F4455,
1804         * (pic16_assignConfigWordValue): disable testing of configuration
1805         register value with config mask,
1806         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
1807         function with port->fun_prefix,
1808         * (genFunction): when generating a naked interrupt function never
1809         create an absolute segment placed in interrupt vector address, place
1810         the actual interrupt function at IVA instead, when an interrupt
1811         function is generated with unspecified interrupt then do not create
1812         the absolute section,
1813         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
1814         code for generating a call to generic pointer get/put function with
1815         a call to function pic16_callGenericPointer(),
1816         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
1817         the call to the generic pointer get/put functions with prefixing the
1818         function name with port->fun_prefix,
1819         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
1820         * src/pic16/main.c (_process_pragma): prefix function with
1821         port->fun_prefix,
1822         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
1823         calling assembler, old 18Fxxxx macro is deprecated,
1824         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
1825         PC_ASMDIR in while condition,
1826         * (findInstruction): add PC_ASMDIR in while condition,
1827         * (buildCallTree): prefix main with port->fun_prefix,
1828         * (pic16_pCode2str): fixed bug that didn't emit the memory access
1829         identifier for variable with banked access in instructions BTFSS,
1830         BTFSC, BCF, BSF, BTG
1831         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
1832         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
1833         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
1834         perform optimization when enviroment variable NO_REG_OPT is set,
1835         * (insideLRBlock): NEW, return 1 if register is inside an
1836         INF_LOCALREGS block,
1837         * (RemoveRegFromLRBlock): remove a register that is completely
1838         eliminated by register optimization, but it is still left in local
1839         register store/restore in/from stack block,
1840         * (Remove2pcodes): after removing register, check to see if it
1841         should be removed from local register store/restore in/from stack
1842         block,
1843         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
1844         DUMMY_READ_VOLATILE,
1845
1846         * device/include/pic16/adc.h: minor prototype modifications and
1847         update,
1848         * device/include/pic16/malloc.h: added GPL notice various
1849         modifications,
1850         * device/include/pic16/stdint.h: NEW, standard header for ints
1851         * device/include/pic16/delay.h: NEW, header for delay functions,
1852         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
1853         delay1mtcy,
1854         * device/include/pic16/signal.h: NEW, header providing helper macros
1855         for implementing signal handlers,
1856         * device/include/pic16/stdio.h: added prototypes for functions,
1857         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
1858         prototypes for stdin and stdout, added macro PUTCHAR to
1859         automatically implement putchar function prototype,
1860         * device/include/pic16/usart.h: modified and updated USART library,
1861         * device/lib/pic16/libio/adc/,
1862         * device/lib/pic16/libio/i2c: some modifications to improve library
1863         performance,
1864         * device/lib/pic16/libc/stdio/: modifications for the new printf*
1865         family of functions,
1866         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
1867         family of functions and other sources,
1868         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
1869         of the PIC18Fxx[28] devices,
1870         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
1871         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
1872         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
1873         _do_cinit function, because the previous failed when local variables
1874         where not placed in the same memory bank,
1875         * device/lib/pic16/libsdcc/char/: various modifications to improve
1876         library performance,
1877         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
1878         information on the new functions of the c library and more...
1879
1880 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1881
1882         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
1883
1884 2005-03-26 Raphael Neider <rneider AT web.de>
1885
1886         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
1887           if condition == CARRY)
1888         * (genCmp): adapted to new genSkipc semantics
1889         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
1890           on rIfx (genCmp was broken)
1891
1892 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1893
1894         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
1895         * src/z80/main.c (_keywords[]),
1896         * src/SDCCglobal.h (struct options),
1897         * src/SDCC.y,
1898         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
1899         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
1900         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
1901         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
1902         always available in leading double underscore form. The C99 support is
1903         mostly missing, but it's a start.
1904         * support/regression/tests/bug-227710.c: fixed nonconforming use of
1905         reserved identifier "__data".
1906
1907 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
1908
1909         * src/mcs51/peeph.def: fixed bug 1170013
1910
1911 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
1912
1913         * device/include/mcs51reg.h: fixed bug 842007
1914
1915 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1916
1917         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
1918         last time.
1919
1920 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1921
1922         * src/port.h (struct PORT),
1923         * src/avr/ralloc.c (avr_assignRegisters),
1924         * src/avr/main.c,
1925         * src/ds390/ralloc.c (ds390_assignRegisters),
1926         * src/ds390/main.c,
1927         * src/hc08/ralloc.c (hc08_assignRegisters),
1928         * src/hc08/main.c,
1929         * src/mcs51/ralloc.c (mcs51_assignRegisters),
1930         * src/mcs51/main.c,
1931         * src/pic/ralloc.c (pic14_assignRegisters),
1932         * src/pic/main.c,
1933         * src/pic16/ralloc.c (pic16_assignRegisters),
1934         * src/pic16/main.c,
1935         * src/xa51/ralloc.c (xa51_assignRegisters),
1936         * src/xa51/main.c,
1937         * src/z80/ralloc.c (z80_assignRegisters),
1938         * src/z80/ralloc.h,
1939         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
1940         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
1941         * src/SDCCcse.h,
1942         * src/SDCCdflow.c (computeDataFlow),
1943         * src/SDCCdflow.h,
1944         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
1945         * src/SDCCloop.h,
1946         * src/SDCCcflow.c (*),
1947         * src/SDCCcflow.h,
1948         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
1949         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
1950         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
1951         immedDom() returning wrong block; probably fixes bug #1160833)
1952
1953 2005-03-20 Borut Razem <borut.razem AT siol.net>
1954
1955         * support/scripts/inc2h.pl: WIN32 port
1956
1957 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
1958
1959         * device/lib/makefile.in: added abs.c and labs.c
1960
1961 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
1962
1963         * device/include/stdint.h: added
1964         * device/lib/abs.c: added
1965         * device/lib/labs.c: added
1966         * device/include/stdlib.h: added abs() and labs() prototypes
1967         * device/lib/libsdcc.lib: added abs and labs
1968         * device/include/float.h,
1969         * device/lib/_fsmul.c,
1970         * device/lib/printf_fast.c,
1971         * device/lib/printf_tiny.c: updated comments
1972
1973 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1974
1975         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
1976         bug #1164313
1977
1978 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1979
1980         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
1981         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
1982
1983 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
1984
1985         * device/lib/printf_large.c: removed inline assembly for portability and
1986           readability. Use printf_fast if speed or size are more important.
1987         * src/pic16/gen.c: removed conditions around use of DEBUGpc
1988         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
1989
1990 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
1991
1992         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
1993         prevent compiler warning
1994
1995 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
1996
1997         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
1998         moved to level 0 and declared as static. Also they are explicit
1999         placed in access bank. This was necessery because some times they
2000         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
2001         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
2002         optimizations. Currently only compare to unsigned char is implemented,
2003         * src/pic16/gen.c: added fReturnIdx array,
2004         * (struct resolvedIfx) is moved to gen.h and made public,
2005         * (struct _G): added sregsAlloc and sregsAllocSet fields,
2006         * (aopForSym): added an optimization to directly store in stack of
2007         the operand of a SEND iCode,
2008         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
2009         but as registers instead (AOP_REG) using the fReturnIdx array,
2010         * (pic16_freeAsmop): remove the freed register from the
2011         _G.sregsAlloc field,
2012         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
2013         a compare of 'WREG',
2014         * (pic16_popGetTempRegCond): changed function prototype, now
2015         function takes also a bitVector argument v which holds the current
2016         set of registers that are allocated for stack access by aopForSym,
2017         registers allocated in aopForSym for accessing stack symbols are not
2018         any more part of the functions usedRegs field,
2019         * (genCall): some times aopOp is called for a stack variable to be
2020         send, aopForSym might perform the push, if this is true make sure
2021         that genCall doesn't push the variable twice by testing _G.resDirect,
2022         * (genFunction): changed testing for unspecified interrupt number
2023         from 256 to INTNO_UNSPEC,
2024         * modified selection scheme of frame pointer generation. Previously
2025         if function did use local registers a frame pointer was generated,
2026         now a frame pointer is generated only if function has arguments
2027         (that need PLUSW2 register access), or has stack arguments, or the
2028         compiler is not instructed to omit the frame pointer,
2029         * (genEndFunction): before restoring local registers that were saved
2030         in the function preamble, also restore the registers that *might*
2031         have been allocated for stack access,
2032         * (genRet): removed some old comments,
2033         * (genCmp, the active (RN's) version): added a call to the
2034         pic16_genCmp_special function to perform the compare with a more
2035         robust and optimized way,
2036         * (genInline): a feature has been added in inline code generation,
2037         which allows a wildcard variable substitution when writing inline
2038         assembly. Code is incomplete and experimental therefore undocumented,
2039         * (genCast): changed order of aopOp for result and right to allow
2040         aopForSym to directly load the result if possible,
2041         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
2042         perform an optimized compare on some selected special occasions,
2043         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
2044         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
2045         generate an IVT any more,
2046         * src/pic16/main.c (pic16_optionsTable): added command line option
2047         --optimize-cmp,
2048         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
2049         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
2050         macros,
2051         * src/pic16/NOTES: Raphael Neider added in list of active developers
2052         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
2053         jumptable_end to prevent bug #,
2054         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
2055         inCond and outCond fields,
2056         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
2057         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
2058         turn off register spilling,
2059         * (packRegsForOneUse): synced with other ports' versions although it
2060         is not used currently,
2061         * (pic16_packRegisters): added an optimization while reading
2062         structure bitfields, some registers may be saved (malloc code is
2063         decreased by 80 bytes)
2064
2065 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
2066
2067         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
2068         left is a bitfield, if yes, then don't optimize assignment. Perhaps
2069         this can be optimized more?
2070
2071 2005-03-10 Raphael Neider <rneider AT web.de>
2072
2073         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
2074           genNearPointerGet): (hopefully) fixed access to bitfields via
2075           pointers (p->bitN = x; and x = p->bitN; failed)
2076
2077 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
2078
2079         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
2080
2081 2005-03-09 Raphael Neider <rneider AT web.de>
2082
2083         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
2084
2085 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
2086
2087         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
2088         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
2089           (regTypeNum): set REG_BIT type if necessary
2090         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
2091         * support/regression/tests/critical.c: check bug 1144613
2092
2093 2005-03-02 Raphael Neider <rneider AT web.de>
2094
2095         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
2096
2097 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2098
2099         * src/avr/ralloc.c (serialRegAssign),
2100         * src/ds390/ralloc.c (serialRegAssign),
2101         * src/hc08/ralloc.c (serialRegAssign),
2102         * src/mcs51/ralloc.c (serialRegAssign),
2103         * src/pic/ralloc.c (serialRegAssign),
2104         * src/pic16/ralloc.c (serialRegAssign),
2105         * src/xa51/ralloc.c (serialRegAssign),
2106         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
2107
2108 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
2109
2110         * src/SDCCast.c (decorateType): fixed bug 1124787
2111
2112 2005-02-20 Hubert Sack <sack AT digiplan.de>
2113         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2114
2115         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
2116         patch #1121755
2117
2118 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2119
2120         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
2121         to keep the correct label reference count when adding/removing references
2122         to labels. A peephole file using this is appended to patch #1144962.
2123
2124 2005-02-14 Raphael Neider <rneider AT web.de>
2125
2126         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
2127         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
2128         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
2129           retrievals of result operand's value on assignment
2130
2131 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
2132
2133         * device/include/pic16/string.h: modified prototype for memccpy()
2134         to memccpy(void *, void *, char, size_t)
2135         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
2136         check whether to omit frame pointer or not,
2137         * (genInline): convert all occurences of "\n" to LF in inline
2138         assembler blocks, this helps formatting the inline text,
2139         * (pic16_loadFSR0): modified prototype,
2140         * (genNearPointerGet, genNearPointerSet): reorganization of code,
2141         removed some 8051 legacy code,
2142         * (genPackBits): enabled handling bitfields exceeding one byte in size,
2143         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
2144         before allocating temporary registers in functions,
2145
2146 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
2147
2148         * support/regression/tests/bitvars.c: corrected the "fix"
2149
2150 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
2151
2152         * support/regression/tests/bitvars.c,
2153         * support/regression/tests/bitwise.c,
2154         * support/regression/tests/rotate.c: "fixed" problems on Alpha
2155
2156 2005-02-10 Raphael Neider <rneider AT web.de>
2157
2158         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
2159           different size for Alpha
2160         * src/pic16/gen.c (genCmpEq) : improved compare with 0
2161
2162 2005-02-09 Raphael Neider <rneider AT web.de>
2163
2164         * src/SDCC.lex(doPragma) : save and restore warning options as well
2165           (also added new stack plus clone- and copyAndFreeSDCCERRG())
2166         * have #pragma less_pedantic set the errorlevel to WARNING
2167           (fixes #1117001)
2168         * (cloneOptimize) : fixed wrong malloc's size
2169         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
2170           facilitate correct handling of #pragma (save|restore)
2171
2172 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
2173
2174         * src/mcs51/gen.c: removed non-standard C nameless struct/union
2175
2176 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
2177
2178         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
2179
2180 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
2181
2182         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
2183
2184 2005-02-02 Raphael Neider <rneider AT web.de>
2185
2186         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
2187         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
2188         * (pic16_storeForReturn): fixed to allow returning function pointers
2189         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
2190         * device/include/pic16/{stddef.h,stdbool.h}: added
2191
2192 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
2193
2194         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
2195
2196 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
2197
2198         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
2199         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
2200          appeared to be required
2201
2202 2005-01-31 Borut Razem <borut.razem AT siol.net>
2203
2204         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
2205           include/mcs51 and include/z80 directories to the package
2206
2207 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2208
2209         * src/hc08/gen.c (genFunction): fixed bug #1112752
2210
2211 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2212
2213         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
2214
2215 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2216
2217         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
2218
2219 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
2220
2221         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
2222
2223 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
2224
2225         * device/include/c8051fxxx.h: removed these 6 files
2226         * device/include/mcs51/c8051fxxx.h: added these 11 new files
2227
2228 2005-01-26 Raphael Neider <rneider AT web.de>
2229
2230         * src/pic16/gen.c (genAssign): fixed assignment from longs
2231           in codespace (were cut to three bytes)
2232         * (genDummyRead): implemented (except for CODESPACE...),
2233           fixed bug #1108575
2234         * src/pic16/glue.c (emitStatistics): beautified
2235         * device/lib/pic16/libm/Makefile: added include path
2236
2237 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2238
2239         * src/z80/gen.c (aopPut): fixed bug #1103902
2240
2241 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2242
2243         * device/lib/expf.c: fixed bug #1095792
2244
2245 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
2246
2247         * device/lib/pic16/libm: added Math library sources
2248
2249 2005-01-24 Raphael Neider <rneider AT web.de>
2250
2251         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
2252           to enable upcast to pCodeOpReg2 (there is no type tag to
2253           differenciate the two and pic16_popGet2p cast into PCOR2)
2254         * src/pic16/main.c (_process_pragma): fixed another malloc bug
2255           (sizeof(sectNames) changed to sizeof(sectName))
2256           Both patches fix segfaults under MinGW.
2257
2258 2005-01-23 Raphael Neider <rneider AT web.de>
2259
2260         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
2261           Safe_[mc]?alloc()'ed variables
2262         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
2263           of (byte sized) temporaries (assign them to WREG for now)
2264         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
2265           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
2266           this might fix SIGSEGVs on MinGW...
2267         * src/SDCCopt.c (killDeadCode): restored original behaviour
2268           (volatile operands might get thrown away though)
2269
2270 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
2271
2272         * src/pic16/gen.c: fixed bug #1106975,
2273         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
2274         pointer update, INTCON is saved, global interrupts are disabled and
2275         restored after updateing TOS.
2276         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
2277         * added function attribute 'shadowregs' to take advantage of shadow
2278         registers,
2279         * added function attribute 'wparam' as an alternative to the wparam
2280         pragma,
2281         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
2282         user declares a non-ISR function as 'shadowregs',
2283         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
2284
2285 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
2286
2287         * .version: bumped version number to 2.4.8
2288         * device/lib/pic16/pics.all: list of PIC18F devices supported by
2289         pic16 port,
2290         * device/lib/pic16/libio/i2c/: I2C module support library,
2291         * device/include/pic16/i2c.h: I2C support library header,
2292         * device/lib/pic16/libc/stdio/: standard IO support sources,
2293         * (printf_small.c): printf_small() source, supports float print,
2294         * (printf_tiny.c): printf_tiny() source, does not support floats,
2295         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
2296         enable global optimizations for entire library source, other
2297         Makefiles in the source tree are also modified to reflect this,
2298         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
2299         function,
2300         * doc/sdccman.lyx: updated to reflect new changes,
2301         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
2302         sym->onStack if-case,
2303         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
2304         sbit, idata, _idata, xdata, _xdata,
2305         * added pragma library, to link an external library, (see doc),
2306         * removed command line options, --pomit-config-words, --pomit-ivt,
2307         --pleave-reset-vector,
2308         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
2309         when calling assembler to reflect memory model used, also define
2310         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
2311         reflect stack model used,
2312         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
2313         on stack return NULL,
2314
2315 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2316
2317         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
2318           of the operands is volatile. Fixes #1020220
2319
2320 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2321
2322         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
2323         * (OptimizeRegUsage): make sure that there is really no other flow where
2324           the first pCode is used
2325
2326 2005-01-22 Raphael Neider <rneider AT web.de>
2327
2328         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
2329           to fix #1106967 (pCode->seq are not set up correctly)
2330
2331 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2332
2333         * src/SDCCglue.c (glue): make sure code area is declared before the
2334         static initialization area.
2335
2336 2005-01-21 Raphael Neider <rneider AT web.de>
2337
2338         * device/lib/Makefile.in: fixed test for pic16 install dir
2339         * device/lib/pic16/*/Makefile*: modified compile flags to enable
2340           optimizations
2341         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
2342           added --optimize-goto compiler switch and pragma wparam documentation
2343         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
2344         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
2345           and PRODH closing bug #1071770 (peephole optimizer)
2346
2347 2005-01-19 Raphael Neider <rneider AT web.de>
2348
2349         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
2350           cmdLine buffers (used when calling sdcpp...) are large enough
2351           (MAX_PATH=256 truncates arguments leading to system halts when
2352           used in MinGW...)
2353         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
2354         * (genUminus): rewritten to for efficiency
2355         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
2356           used uninitialized in some cases)
2357         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
2358           copy the third byte from the int -- now assumes 0x80 (data memory)
2359         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
2360           operands (genAddLit expects the iCode's operands to swapped as
2361           well), fixed leftover bytes (crashed for short left operands)
2362         * (pic16_genMinusDec): performance improvements, removed false
2363           PIC14 emitSKPNCs
2364         * (pic16_genMinus): fixed to cope with differently sized operands
2365         * src/pic16/glue.c (pic16_glue): added new banksel optimization
2366           for --obanksel > 1
2367         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
2368         * src/pic16/graph.[ch]: implementation of directed graphs, used by
2369           new banksel optimization
2370         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
2371           analysis for temporary registers (segfaults...)
2372         * src/pic16/peeph.def: added rule
2373
2374 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
2375
2376         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
2377         which converts a float number to its ASCII representation
2378         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
2379         functions to convert the fractional and integer part of a float to ASCII,
2380         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
2381         realloc.c): added _MALLOC_SPEC to explicit place variables in data
2382         ram
2383         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
2384         _STATMEM macros,
2385         * device/include/pic16/adc.h: added GPL info,
2386         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
2387         a pCodeOp as tested operand,
2388         * (genNearPointerGet): optimized bit testing, does not use
2389         intermediate register for bit value, test directly instead with
2390         BTFSS, BTFSC, works only for single bits,
2391         * (genpic16Code): dump the name of the iCode in the asm,
2392         * src/pic16/ralloc.c (decodeOp): removed static declaration and
2393         renamed to pic16_decodeOp,
2394         * (serialRegAssign): do not allocate a temporary register for iCode
2395         sequences that test a single bit for 1/0
2396
2397 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
2398
2399         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
2400         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
2401         access stack and frame pointers. They are initially assigned to
2402         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
2403         accessing SFRs. Updated all occurences of modification of stack or
2404         frame pointer in gen.c and pcode.c,
2405         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
2406         assigning of a literal value to pointers,
2407         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
2408         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
2409         selected
2410
2411 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
2412
2413         * doc/sdccman.lyx: update documentation about stack pragma, added
2414         some info for stack memory models
2415
2416 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2417
2418         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
2419
2420 2005-01-08 Raphael Neider <rneider AT web.de>
2421
2422         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
2423           udata sections to fix bug #1097823
2424
2425 2005-01-05 Raphael Neider <rneider AT web.de>
2426
2427         * src/pic16/gen.c (genGenericShift): added handling of differently
2428           sized left operand and result
2429
2430 2005-01-04 Raphael Neider <rneider AT web.de>
2431
2432         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
2433         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
2434           to hold the condition bit)
2435         * added new version of genCmp (old code available via #define)
2436         * added new version of genShiftLeft/genShiftRight in a generic
2437           way, now supports shifting by negative values
2438         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
2439           shiftCount (expected by genGenericShift)
2440         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
2441         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
2442           dump
2443         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
2444           is an invalid literal too...)
2445
2446 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
2447
2448         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
2449         from Raphael Neider,
2450         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
2451         for 8-bit literals. This fixes some literal operands which are sign
2452         extended to 16-bits ints when instruction needs only 8-bits.
2453
2454 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
2455
2456         * device/lib/logf.c: added mcs51 assembly version
2457         * device/lib/expf.c: added mcs51 assembly version
2458         * device/lib/_logexpf.c: new shared asm code for expf and logf
2459         * device/include/math.h: add defines for assembly math library
2460         * device/lib/Makefile.in: build new _logexpf.c
2461         * device/lib/libfloat.lib: use new _logexpf.c
2462
2463 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2464
2465         * src/pic/device.c
2466         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
2467           device types which have less than 0x7f registers.
2468
2469 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2470
2471         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
2472
2473 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2474
2475         * device/lib/printf_fast.c: only build on supported arch.
2476         * device/lib/printf_tiny.c: only build on supported arch.
2477         * device/lib/printf_fast_f.c: only build if asm float lib
2478         * device/lib/_fsget1arg.c: only build if asm float lib
2479         * device/lib/_fsget2args.c: only build if asm float lib
2480         * device/lib/_fsnormalize.c: only build if asm float lib
2481         * device/lib/_fsreturnval.c: only build if asm float lib
2482         * device/lib/_fsrshift.c: only build if asm float lib
2483         * device/lib/_fsswapargs.c: only build if asm float lib
2484         * device/include/stdio.h: don't provide print_fast,
2485           print_fast_f, print_tiny prototypes if --xstack used
2486
2487 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
2488
2489         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
2490         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
2491           to the SOURCES
2492
2493 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2494
2495         * device/lib/printf_fast_f.c: same as printf_fast, but
2496           with floating point enabled
2497         * device/lib/printf_fast.c: minor tweaks
2498         * device/include/stdio.h: add printf_fast_f
2499
2500 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2501
2502         * src/SDCCmain.c: make --float-reent default for mcs51
2503         * device/lib/_fsadd.c: added mcs51 assembly version
2504         * device/lib/_fssub.c: added mcs51 assembly version
2505         * device/lib/_fsmul.c: added mcs51 assembly version
2506         * device/lib/_fsdiv.c: added mcs51 assembly version
2507         * device/lib/_fseq.c: added mcs51 assembly version
2508         * device/lib/_fsneq.c: added mcs51 assembly version
2509         * device/lib/_fsgt.c: added mcs51 assembly version
2510         * device/lib/_fslt.c: added mcs51 assembly version
2511         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
2512         * device/lib/Makefile.in: add _fscmp to build
2513         * device/lib/libfloat.lib: add _fscmp to build
2514
2515 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2516
2517         * device/lib/_fs2slong.c: added mcs51 assembly version
2518         * device/lib/_fs2sint.c: added mcs51 assembly version
2519         * device/lib/_fs2schar.c: added mcs51 assembly version
2520         * device/lib/_fs2ulong.c: added mcs51 assembly version
2521         * device/lib/_fs2uint.c: added mcs51 assembly version
2522         * device/lib/_fs2uchar.c: added mcs51 assembly version
2523         * device/lib/_slong2fs.c: added mcs51 assembly version
2524         * device/lib/_sint2fs.c: added mcs51 assembly version
2525         * device/lib/_schar2fs.c: added mcs51 assembly version
2526         * device/lib/_ulong2fs.c: added mcs51 assembly version
2527         * device/lib/_uint2fs.c: added mcs51 assembly version
2528         * device/lib/_uchar2fs.c: added mcs51 assembly version
2529         * device/include/float.h: added #define to select asm vs c
2530
2531 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
2532
2533         * device/lib/printf_fast.c: improvements to float output
2534         * device/include/float.h: add defines for assembly float library
2535         * device/lib/_fsget1arg.c: receive 1 float arg
2536         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
2537         * device/lib/_fsnormalize.c: normalize a float
2538         * device/lib/_fsreturnval.c: return float, various helper routines
2539         * device/lib/_fsrshift.c: right shift a float's mantissa
2540         * device/lib/_fsswapargs.c: swap 2 floats
2541         * device/lib/Makefile.in: build these 6 new files for mcs51
2542         * device/lib/libfloat.lib: add these 6 files to the library
2543
2544 2004-12-26 Borut Razem <borut.razem AT siol.net>
2545
2546         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
2547           built by gcc 3.4.2
2548
2549 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
2550
2551         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
2552           and fully reentrant and register bank neutral.
2553         * device/lib/printf_fast.c: added float (not enabled by default),
2554           added compact/slower integer (also not enabled by default),
2555           improved size/speed of fast integer code, other minor changes
2556         * device/include/stdio.h, device/lib/Makefile.in,
2557           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
2558
2559 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
2560
2561         * src/pic16/pcode.c: declaring variables other than at the start of a
2562           block is not supported in C by VC6.
2563
2564 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
2565
2566         * applied a previous patch from Raphael Neider that wasn't included
2567         in the previous commits, which fixes infinite loops within jumptable
2568         improvements,
2569         * made some fixes that previous patches introduced
2570
2571 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
2572
2573         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
2574         that fixes an issue with AOP_PCODE asmop's offset,
2575         * (pic16_popCopyReg): update instance field too,
2576         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
2577         function of pic port,
2578         * (genCmp, genAnd, genAssign),
2579         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
2580
2581 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
2582
2583         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
2584         variables initial values to idata section,
2585         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
2586         variables in some functions. This utilizes parmBytes field of iCode
2587         structure to hold the offset of the variable in stack. (might be
2588         able to use the stack field too?)
2589         * applied patch from Raphael Neider # ### , # ###
2590         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
2591         variable initial values in idata section,
2592         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
2593         for static variables with initial value
2594         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
2595         applied fix in while loop from Raphael Neider.
2596
2597 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
2598
2599         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
2600         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
2601         * src/ds390/ralloc.c (serialRegAssign): spill bits
2602         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
2603         * support/Util/SDCCerr.c,
2604         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
2605         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
2606         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
2607
2608 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
2609
2610         * device/include/sdcc-lib.h: inserted LGPL, added includes
2611           asm/ds390/features.h and asm/mcs51/features.h
2612         * device/include/asm/default/features.h,
2613         * device/include/asm/gbz80/features.h,
2614         * device/include/asm/z80/features.h: added empty _AUTOMEM
2615           and _STATMEM
2616         * device/include/asm/ds390/features.h,
2617         * device/include/asm/mcs51/features.h: added files with defines for
2618           _AUTOMEM and _STATMEM indicating automatic and static storage class
2619         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
2620         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
2621         * src/SDCCicode.c (geniCodeCast),
2622         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
2623         * src/SDCCloop.c (loopInduction): removed unused variable lr
2624         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
2625           to convertToFcall to include char modulo (RFE 1065037), added check
2626           if left operand is unsigned and use abs of literal value
2627         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
2628           as it doesn't work after conversion from peephole.def to peephole.rul
2629         * src/mcs51/gen.c (toBoolean): added check for size,
2630           (genModOneByte): optimized code for signed char modulo a literal
2631           power of 2 (thanks to Hubert Sack),
2632           (genRRC): removed unnecessary "clr c",
2633           (genRLC): replaced "add a,acc" with cheaper "rlc a"
2634         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
2635           jump optimization,
2636           swapped rules 256.c and 256.d,
2637           extended 256.d by using new multiple checks (thanks Erik),
2638           added rules 256.e and 256.f,
2639           updated rule 261.a and 261.b to new generated code
2640         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
2641
2642 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2643
2644         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
2645           induction related bugs, including first part of bug #1074377
2646
2647 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
2648
2649         * applied patch from bug-report #1076292,
2650         * applied patches for genAnd and Goto-optimizations for Raphael
2651         Neider,
2652         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
2653         dump a less iCode information,
2654         * src/pic16/device.h (pic16_options_t): added field debgen,
2655         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
2656         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
2657         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
2658         puclic,
2659         * (various functions): added macros FENTRY and FENTRY2 to functions,
2660         to emit function prologue,
2661         * (various functions): fixed indentation,
2662         * (genNearPointerGet): fixed loading of FSR0,
2663         * (genPackBits): applied patch from Raphael Neider to fix updating
2664         of FSR0 and touching only the modified bits,
2665         * src/pic16/genarith.c (various functions): added macros FENTRY to
2666         emit function prologue in comments,
2667         * src/pic16/pcode.h: added functions debugf2, debugf3,
2668         * src/pic16/ralloc.c: partial fix for packForPush caused
2669         segmentation fault,
2670
2671 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2672
2673         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
2674           <stsp AT users.sourceforge.net> with reversed byte order
2675         * support/regression/tests/rotate.c: added (ds390 skips some tests)
2676
2677 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2678
2679         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
2680           bug #1074377
2681         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
2682         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
2683
2684 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2685
2686         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
2687
2688 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2689
2690         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
2691           conditions,
2692           (setFromConditionArgs): friendly operand parser for peephole rules,
2693           (operandBaseName, operandsNotRelated): new peephole condition
2694           "operandsNotRelated" -- similar to "operandsNotSame", but takes
2695           architecture specific register naming into account, handles n-way
2696           comparisons, and supports quoted literals
2697         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
2698
2699 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2700
2701         * src/mcs51/peeph.def: fixed bug #1076940
2702
2703 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2704
2705         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
2706
2707 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2708
2709         Adding support for replacing ljmps with sjmps in jumptables
2710         generated for switch statements. For now you need to set the
2711         environment variable SDCC_SJMP_JUMPTABLE to enable this.
2712         Now 4 algorithms for mcs51 jumptable generation are used:
2713         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
2714         addresses loaded pc-relative for up to 112 cases and stack-pushing
2715         target addresses loaded with offset from dptr for up to 256 cases.
2716
2717         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
2718         * src/mcs51/main.c: adapted constants for switch table generation
2719         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
2720
2721 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
2722
2723         * device/lib/printf_large.c (_print_format): fixed bug 1073386
2724         * support/regression/tests/bug1057979.c: added test for bug 1073386
2725
2726 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2727
2728         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
2729         compilers
2730
2731 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2732
2733         * src/pic16/device.h,
2734         * src/pic16/genarith.c,
2735         * src/pic16/glue.c,
2736         * src/pic16/main.c,
2737         * src/pic16/pcode.c: applied patches #1068154 and #1070213
2738
2739 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
2740
2741         Large cummulative patch for pic16 port.
2742         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
2743         to call when a stack overflow occurs,
2744         * (malloc.h): added CVS Id tag,
2745         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
2746         variable,
2747         * added libc directory. The current version of LibC contains string
2748         functions, ctype functions and macros and some functions of the
2749         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
2750         be extensively tested in the future. Standard disclaimer here.
2751         Library is not automatically build yet. But one can build it by
2752         invoking 'make' inside the libc directory.
2753         * added ADC library under libio. Preliminary version yet.
2754
2755         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
2756         * src/pic16/gen.c (aopForRemat): asmop size is filled by
2757         aopForRemat() now and not by pic16_aopOp(),
2758         * (pic16_popGetTempReg): removed warning messgae when allocating
2759         temporary registers, its a buggy feature and will be removed,
2760         * (pic16_popGet): set register instance field in AOP_CRY,
2761         * (pic16_outBitC): fixed for results in size greater than 1,
2762         * (genUminusFloat): fixed for pic16, ported code from mcs51,
2763         * (pic16_storeForReturn): optimized return of 0,
2764         * (genCmp): experimental code for new genCmp which uses PIC18's
2765         special compare&skip instructions. Initial tests fail some times
2766         with variables grater than 1 byte in size, so new code is disabled,
2767         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
2768         a single bit,
2769         * (genCast): began a fix to optimize the casting of a bit to another
2770         bit, now assigning a bitfield to another bitfield will fail, sorry,
2771         * src/pic16/main.c: disabled the use of lr-support feature,
2772         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
2773         * added some function prototypes, added function _debugf prototype,
2774         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
2775         bits with offset (case PO_GPR_BIT),
2776         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
2777         command line,
2778         * (isBankInstruction): modified to return 0 for no banking instruction,
2779         and 1 for banking instruction,
2780         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
2781         caused stop processing pCodes after a inline assembly block,
2782         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
2783         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
2784         registers when it shouldn't,
2785         * src/pic16/ralloc.c (allocReg): add preliminary support for
2786         supporting a limited set of temporary registers,
2787
2788 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2789
2790         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
2791           genDataPointerSet): ensure assignments always copy in MSB to LSB
2792           order,
2793           (loadRegFromAop): recognize CLRH optimization,
2794           (genFunction): optimize RECEIVE iCodes in reentrant functions
2795
2796 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2797
2798         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
2799           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
2800           selected.
2801         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
2802         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
2803           contiguous with data
2804
2805 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2806
2807         * device/lib/_gptrget.c (_gptrget),
2808         * device/lib/_gptrgetc.c (_gptrgetc),
2809         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
2810           instead of sjmp to ret
2811         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
2812           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
2813
2814 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
2815
2816         * .version: bumped version to 2.4.7
2817         * device/lib/_gptrget.c (_gptrget): is now _naked
2818         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
2819         * device/lib/_gptrput.c (_gptrput): is now _naked
2820         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
2821           (createFunction): fixed xstack
2822         * src/SDCCglue.c (emitMaps): set allocation required for bit area
2823         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
2824           or bit either,
2825           (geniCodeCritical): store original interrupt state in an iTemp bit
2826           var unless stack-auto
2827         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
2828         * src/SDCCmain.c (setIncludePath): added include/target to search path
2829         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
2830         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
2831           prototype,
2832           (processFuncArgs): put bit vars in bit area
2833         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
2834           unsaveRBank): fixed xstack,
2835           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
2836           (genFunction, genEndFunction): fixed xstack,
2837           (genAssign): optimization don't walk backwards through mem
2838         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
2839         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
2840         * support/regression/Makefile: also make library (for stack-auto) when
2841           making "all" and added "test-mcs51-xstack-auto"
2842         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
2843         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
2844         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
2845         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
2846         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
2847           make-library by MAKE_LIBRARY
2848         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
2849           regression tests for xstack
2850         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
2851         * support/regression/tests/critical.c: test for critical on mcs51
2852
2853 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2854
2855         * support/regression/ports/ucz80/spec.mk: use include and lib files from
2856           built version of sdcc instead of installed version
2857
2858 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
2859
2860         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
2861         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
2862           vprintf.c now
2863         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
2864         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
2865           WARNING: remove device/lib/build/z80/printf.o by hand when
2866           updating from previous build!
2867         * device/lib/z80/printf.c: updated comment
2868         * support/regression/tests/bug1057979.c: test all ports now
2869         * support/regression/tests/bug1065458.c: file added
2870
2871 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2872
2873         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
2874           *_start and *_end symbols for static functions
2875
2876 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
2877
2878         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
2879           and search crt0.o in all library paths,
2880           (setIncludePath): proper handling of --nostdinc,
2881           (setLibPath): proper handling of --nostdlib
2882         * support/regression/Makefile,
2883         * support/regression/ports/ds390/spec.mk,
2884         * support/regression/ports/gbz80/spec.mk,
2885         * support/regression/ports/hc08/spec.mk,
2886         * support/regression/ports/mcs51/spec.mk,
2887         * support/regression/ports/mcs51-large/spec.mk,
2888         * support/regression/ports/mcs51-stack-auto/spec.mk,
2889         * support/regression/ports/z80/spec.mk: use include and lib files from
2890           built version of sdcc instead of installed version
2891         * doc/sdccman.lyx: fixed typo in --nostdinc
2892
2893 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
2894
2895         * src/pic/pcode.c,
2896         * src/pic/device.c,
2897         * src/pic/ralloc.c,
2898         * src/pic/gen.c : added support to generate code for struct bit fields.
2899
2900 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
2901
2902         * as/xa51/xa_version.h,
2903         * device/include/errno.h,
2904         * device/include/regc515c.h,
2905         * device/lib/_itoa.c,
2906         * device/lib/_ltoa.c,
2907         * device/lib/ser_ir_cts_rts.c,
2908         * sim/ucsim/xa.src/glob.cc,
2909         * sim/ucsim/xa.src/inst_gen.cc,
2910         * sim/ucsim/xa.src/xa_bit.cc,
2911         * sim/ucsim/xa.src/xa_sfr.cc,
2912         * sim/ucsim/z80.src/inst_dd.cc,
2913         * sim/ucsim/z80.src/inst_fdcb.cc,
2914         * support/scripts/keil2sdcc.pl,
2915         * src/pic16/pic16.dsp,
2916         * src/pic16/pic16a.dsp: corrected cvs line endings
2917         * device/lib/printf_large.c: fixed bug 1057979
2918         * src/pic16/gen.c: fixed non-C standard code
2919         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
2920         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
2921         * support/regression/ports/mcs51/support.c: reload T1 asap
2922         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
2923           pdata use and clear idata startup behaviour
2924         * support/regression/tests/bug1057979.c: added
2925
2926 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
2927
2928         * device/examples/ds390/ow390/ad26.h,
2929         * device/examples/ds390/ow390/cnt1d.h,
2930         * device/examples/ds390/ow390/crcutil.c,
2931         * device/examples/ds390/ow390/ownet.h,
2932         * device/examples/ds390/ow390/owsesu.c,
2933         * device/examples/ds390/ow390/swt12.h,
2934         * device/examples/ds390/ow390/swtoper.c,
2935         * device/examples/ds390/ow390/temp10.h,
2936         * device/examples/ds390/ow390/thermodl.c,
2937         * device/examples/ds390/tinitalk/tinitalk.dsp,
2938         * device/examples/ds390/tinitalk/tinitalk.dsw,
2939         * device/examples/mcs51/clock/hw.h,
2940         * device/examples/mcs51/simple2/go.bat,
2941         * device/examples/serialcomm/windows/serial.h,
2942         * device/examples/xa51/dummy.c,
2943         * device/examples/xa51/hello.c,
2944         * device/include/80c51xa.h,
2945         * device/include/at89x051.h: corrected cvs line endings
2946
2947 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
2948
2949         * src/pic16/main.c (options): added command line --gstack, to trace
2950         stack over/under flows,
2951         * added pragma 'wparam' to allow passing first byte of function
2952         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
2953         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
2954         call to __gstack_test function and sets up the symbol as extern,
2955         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
2956         * popaop): added call to pic16_testStackOverflow,
2957         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
2958         wparamList list,
2959         * (genCall, genPcall): now all parameters are passed via stack
2960         except in functions that are pass to wparam pragma in which WREG is
2961         used too,
2962         * (genPcall): REENTRANT flag is checked to see if variable prototype
2963         contains reentrant keyword, don't call a non-reentrant function, via
2964         a reentrant function pointer or vice versa, functions are never
2965         passed via WREG,
2966         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
2967         D.Winkler,
2968         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
2969         SIGSEGV when accessing a NULL register stucture,
2970         * (pic16_printGPointerType): modified to handle UPPER modifier for
2971         function initializers, changed prototype of function to simpler one,
2972         * (pic16_printIvalFuncPtr): check to see if function is already
2973         added in externs list,
2974         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
2975         optimized a move from W to SFR with a move to the same register
2976         later after a CALL,
2977         * device/lib/pic16/debug: NEW directory, contains debug features
2978         which are enabled when linking with libdebug.lib, currently command
2979         line option --gstack enables stack pointer tracing for over/under
2980         flow, corresponding sources are in debug/gstack
2981
2982 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
2983
2984         * doc/sdccman.lyx: updated SDCC version,
2985         * (PIC16 port): update list of command line options,
2986         * src/pic16/device.h (structure pic16_options_t): added field gstack
2987         to enable stack overflow tracing on push/pops,
2988         * src/pic16/device.c (statistics structure): added statistics
2989         structure,
2990         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
2991         pic16_dump_int_registers): increase statistics counters for each
2992         * variable which is encountered
2993         * (pic16_dump_usection): emit each .udata variable to its own udata
2994         section,
2995         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
2996         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
2997         parameters via stack, otherwise use old scheme,
2998         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
2999         assembler output file,
3000         * src/pic16/main.c: added command line options --gstack to enable
3001         push/pop tracing for stack overflow,
3002         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
3003         instructions): added size of each instruction,
3004         * (pic16_countInstruction): estimate size of instructions in
3005         the_pFile list, inline assembly blocks are not counted,
3006         * (pic16_FixRegisterBanking): trace previous register usage, when
3007         banksel optimizations is greater than 0, don't emit a redudant
3008         banksel directive,
3009
3010 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
3011
3012         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
3013         * src/pic16/ralloc.c : applied same fix for pic16.
3014         * src/pic/gen.c : tidied it up a little.
3015
3016 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3017
3018         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
3019         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
3020
3021 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3022
3023         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
3024
3025 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3026
3027         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
3028         non-reentrant function __modsint in the interrupt function (thus
3029         corrupting math operations during serial I/O)
3030         * device/lib/ser_ir.c: as above, changed buffersize
3031         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
3032         256.c,d for zeroing
3033         * doc/Makefile: added option -t for rsync
3034
3035 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3036
3037         * src/SDCCast.h (struct ast),
3038         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
3039
3040 2004-10-20 Borut Razem <borut.razem AT siol.net>
3041
3042         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
3043         package
3044
3045 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
3046
3047         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
3048         makefile targets,
3049         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
3050         support functions to replace long sequences of MOVFF's from access
3051         bank registers to stack and vice versa,
3052         * src/pic16/device.h: added new field opt_flags, where optimization
3053         flags can be set to enable certain features,
3054         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
3055         * pBlock, (genFunction, genEndFunction): surroung loop for
3056         saving/loading used registers in stack with PC_INFO pCodes,
3057         INF_LREGS. Code in between can then be optimized by pCode optimizer
3058         to support function calls,
3059         * (genDataPointerSet): fixed bug which loaded float fields in
3060         structures with corrupt data,
3061         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
3062         in a standard way debug info on stderr. Feature used for developing
3063         and debugging only,
3064         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
3065         obsolete chunks of code,
3066         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
3067         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
3068         * pic16/src/pcode.c (pic16_newpCodeInfo,
3069         * (pic16_newpCodeOpLocalRegs),
3070         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
3071         feature,
3072         * (pic16_pCodeConstString): printing of the initial value of a
3073         symbol as a comment is inhibited since parsing was already done by
3074         copyStr and output is corrupt,
3075         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
3076
3077 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3078
3079         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
3080
3081 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
3082
3083         * as/mcs51/lkarea.c: removed old K&R style,
3084           (lnksect): changed check on boundary error,
3085           (lnksect2): changed check on boundary error,
3086           (lnksect2): extend XSTK to end of page if size = 1
3087         * as/mcs51/lkmain.c: removed old K&R style,
3088           (Areas51): create l_IRAM symbol
3089         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
3090         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
3091           model-mcs51-stack-auto, added model-mcs51-xstack-auto
3092         * device/lib/_mullong.c: added version to be compiled with xstack
3093         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
3094         * device/lib/mcs51/crtxclear.asm: clear pdata as well
3095         * device/lib/mcs51/crtxstack.asm: fixed comment
3096         * src/SDCCglue.c: maxInterrupts defaults to 0,
3097           (emitMaps): added pdata,
3098           (createInterruptVect): (re)moved default,
3099           (glue): added pdata,
3100           (glue): moved __start__xstack to XSTK with default size 1
3101         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
3102           and options.float_rent when options.stackAuto is set,
3103           (linkEdit): only write XDATA_NAME if provided on command line
3104         * src/SDCCmem.h,
3105         * src/SDCCmem.c: added pdata
3106         * src/port.h: added pdata_name to PORT
3107         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
3108           (saveRegisters, unsaveRegisters): removed usage of B,
3109           (genMinus): fixed accumulator clash,
3110           (genJumpTab): added comment, this needs another look
3111         * src/mcs51/gen.c: added check for "B in use" paranoia,
3112           added pushB() and popB()
3113         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
3114           chance
3115         * src/avr/main.c,
3116         * src/ds390/main.c,
3117         * src/hc08/main.c,
3118         * src/mcs51/main.c,
3119         * src/pic/main.c,
3120         * src/pic16/main.c,
3121         * src/xa51/main.c,
3122         * src/z80/main.c: (reset_regparms) made void parameter explicit and
3123           added PSEG (PAG,XDATA) or NULL to port specifier
3124         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
3125         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
3126           (_mcs51_genInitStartup): removed __start__xstack equ,
3127           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
3128         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
3129         * src/z80/gen.c (_rleAppend): fixed warnings
3130         * support/regression/tests/zeropad.c: added pdata test
3131         * .version: bumped to 2.4.6
3132
3133 2004-10-17 Borut Razem <borut.razem AT siol.net>
3134
3135         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
3136         as a part of nightly build
3137
3138 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
3139
3140         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
3141         WREG holds the first byte function parameters,
3142         * (aopForSym): take special case for symbols which are in FARSPACE
3143         but in CODESPACE too,
3144         * (assignResultValue): modified to take into account _G.useWreg,
3145         * (genCall): don't use wreg for parameter passing when function is
3146         declared as reentrant, too, added optimization INCF to stack
3147         pointer when stack parameter count is 1,
3148         * (genFunction, genEndFunction): refurnished and fixed to not using
3149         wreg for passing parameters when function has varargs or is
3150         reentrant, fixed bug with symbol name compare for generating
3151         functions in absolute address,
3152         * (pic16_storeForReturn): refurnished,
3153         * (genCmp): began writing a new version of the function, not ready
3154         yet, therefore it is disabled,
3155         * (genAssign): do not read code memory when assigning a function to
3156         a pointer function,
3157         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
3158         array of characters, not pointer,
3159         * (pic16initialComments): in debug mode emit an .ident directive for
3160         the assembler,
3161         * (_process_pragma): emit a new warning type (internal to pic16)
3162         when setting stack to default length, emit a similar warning when
3163         placing a function at absolute address and address is not word aligned
3164         * (_pic16_parseOptions): added 'return TRUE' statement,
3165         * (_pic16_linkEdit): if compiling a source, then add the source's
3166         file object, first in the list of objects to link,
3167
3168 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
3169
3170         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
3171         * src/pic/main.c : removed VC warning.
3172         * src/pic/gen.c : changed comment.
3173
3174 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
3175
3176         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
3177         reference to a deprecated symbol _GPTRREG was causing failure to
3178         link. Thanks G. M. Gallant for the info.
3179
3180 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
3181
3182         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
3183         comments for Bugs item #954788.
3184
3185 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
3186
3187         * src/pic16/device.c (pic16_dump_gsection,
3188         * pic16_groupRegistersInSection): handle symbols declared to be in
3189         access bank differently,
3190         * src/pic16/gen.c (struct _G): added field resDirect,
3191         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
3192         send values read from stack directly to result and don't allocate
3193         temporary values,
3194         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
3195         same registers,
3196         * (pic16_sameRegsOfs): NEW,
3197         * (freeAsmop): if _G.resDirect is set then do not mark registers as
3198         free because they were not allocated from temporary pool,
3199         * pic16_popRegFromString): workaround to fix a problem with
3200         allocating variables twice or never,
3201         * (genGenPointerGet): using PRODL instead of FSR0H,
3202         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
3203         instead of FSR0H,
3204         * (genAssign): take advantage of the _G.resDirect flag,
3205         * (genCast): around line 11844, use mov2f instead of directly
3206         MOVFF'ing between operands to account for literal values,
3207         * src/pic16/genutils.c: some new debug functions for gpsim have been
3208         added,
3209         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
3210         float with integer part only,
3211         * src/pic16/main.c (_process_pragma): handle pragma udata access to
3212         place variables in access bank
3213         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
3214         updated sources to reflect recent changes in gen.c
3215
3216 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
3217
3218         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
3219         sources that searched for headers in installation path, now the
3220         device/include/pic16 is used,
3221         * src/pic16/glue.c (pic16glue),
3222         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
3223         .line directives if not in debug mode, this suppresses assembler's
3224         warnings for ignored directives
3225
3226 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
3227
3228         * src/port.h: made reset_regparms prototype void parameter explicit.
3229         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
3230         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
3231         * doc/sdccman.lyx: documented warning disabling and how to use
3232           printf_large to make it print floats.
3233         * device/include/stdbool.h: NEW
3234         * device/lib/_atof.c,
3235         * device/lib/_divuint.c,
3236         * device/lib/_divulong.c,
3237         * device/lib/expf.c,
3238         * device/lib/printf_large.c,
3239         * device/lib/sincosf.c,
3240         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
3241         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
3242           a completely reentrant lib.
3243
3244 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
3245
3246         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
3247         * device/include/pic16/stdio.h: fixed bug with colon
3248
3249 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
3250
3251         * device/include/pic16/stdio.h,
3252         * device/include/pic16/stdlib.h,
3253         * device/include/pic16/math.h: NEW
3254         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
3255         declared as _naked to reduce overhead
3256         * device/lib/Makefile.in (target port-specific-objects-pic16):
3257         changed * to *.* so to ignore the CVS directory,
3258         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
3259         stacked variables back in stack,
3260         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
3261         corruption
3262
3263 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
3264
3265         * .version: bumped version number to 2.4.5
3266         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
3267         * support/Util/SDCCerr.c (messages structure): added entry for
3268         W_POSSBUG2
3269
3270         Large cumulative patch for pic16 port and libraries.
3271         * device/include/pic16/sdcc-lib.h,
3272         * device/include/pic16/stdarg.h,
3273         * device/include/asm/pic16/features.h,
3274         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
3275         * device/include/pic16/float.h: changes reentrant keyword with
3276         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
3277         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
3278         updated target build-libraries to include objects from gptr,
3279         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
3280         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
3281         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
3282         all function headings,
3283         * src/SDCCmain.c: added global parameter userIncDirsSet,
3284         * (parseCmdLine): when option -I is encountered add directory to
3285         userIncDirsSet too,
3286         * src/version.awk: added space between control and long,
3287         * src/pic16/NOTES: added some notes for the port,
3288         * src/pic16/gen.c: added prototype for mov2fp function,
3289         * (fReturnpic16[]): properly named return value registers,
3290         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
3291         * (aopForSym): added code to handle symbols with onStack flag set,
3292         symbols onStack are allocated PTRSIZE bytes,
3293         * (aopFreeAsmop): handles special case where asmops are stack objects,
3294         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
3295         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
3296         added argument lock to trace flaws in allocating temporary registers
3297         when developing port,
3298         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
3299         * (pic16_popRegFromString): reenabled allocating a direct register
3300         from string,
3301         * (assignResultValue): various beautifications,
3302         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
3303         referenced function argument,
3304         * (genIpush): reenabled to allow stacked arguments, handles only
3305         ic->parmPush iCodes,
3306         * (genCall, genPcall): major changes to allow for variable argument
3307         functions, fixed a bug with falsely restoring stack pointer after
3308         returning from call,
3309         * (genFunction): pending code for critical function,
3310         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
3311         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
3312         * (genNearPointerGet): fixed bug with indirect reading, was always
3313         reading from INDF0
3314         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
3315         pointers,
3316         * (genAddrOf): rewrote code to take address of a stacked function parameter
3317         * (genCast): fixed casting to generic pointer type,
3318         * src/pic16/gen.h: added AOP_STA,
3319         * (struct asmop): added field stk,
3320         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
3321         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
3322         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
3323         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
3324         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
3325         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
3326         generic pointers,
3327         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
3328         and library paths,
3329         * (pic16_port structure): generic pointer size is set to 3,
3330         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
3331         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
3332         compiler warning,
3333         * src/pic16/ralloc.c (allocReg): prevent allocating register when
3334         operand is an iTemp,
3335
3336 2004-09-24 Martin Helmling <mh AT octo-soft.de>
3337
3338         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
3339         * debugger/mcs51/simi.c: addapt new syntax of s51
3340
3341 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
3342
3343         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
3344         * src/pic16/pcode.c: commented out some calls to free() in order to
3345         fix bug #989576,
3346
3347 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3348
3349         * src/SDCCicode.h,
3350         * src/SDCCicode.c (isiCodeInFunctionCall),
3351         * src/avr/ralloc.c (selectSpil),
3352         * src/pic/ralloc.c (selectSpil),
3353         * src/pic16/ralloc.c (selectSpil),
3354         * src/ds390/ralloc.c (selectSpil),
3355         * src/hc08/ralloc.c (selectSpil),
3356         * src/xa51/ralloc.c (selectSpil),
3357         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
3358         stack in the middle of a function call sequence (fixes bug #1020268)
3359         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
3360         costs associated with the minimum switch case.
3361
3362 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3363
3364         * src/SDCC.lex: fixed bug #1030549
3365
3366 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3367
3368         * src/SDCCcse.h (struct cseDef),
3369         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
3370         over a function call if the CSE is derived from a symbol whose
3371         address has been taken (fixes bug #1029883)
3372         * support/regression/tests/bug-1029883: a new regression test for
3373         this bug
3374
3375 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3376
3377         * src/hc08/gen.c (emitinline): fixed bug #1029778
3378         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
3379         to a cast object is no longer a syntax error ("fixes" bug #1030006,
3380         and starts toward RFE #905167)
3381
3382 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
3383
3384         * src/pic16/gen.c (mov2f): New function to move an operand to
3385         another without considering if it is a literal or a register,
3386         * (pic16_sameRegs): don't check if they are both AOP_REG,
3387         * (AccRsh): removed andmask=0 lines,
3388         * (genLeftShift): duplicated to be improved in future versions,
3389         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
3390         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
3391         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
3392         * (pic16initMnemonics): added initialization for POC_INFSNZW,
3393         * (insertBankSwitch): fixed inserting banksel directives algorithm
3394         for instructions that follow a skip instruction, this fixes a report
3395         for broken subtraction code generation,
3396         * src/pic16/ralloc.c (deassignLRs): do not free register if current
3397         iCode is a left op, just in case result and right share the same
3398         registers
3399
3400 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3401
3402         * src/hc08/main.c,
3403         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
3404         preservation of HX
3405         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
3406         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
3407         on 2004-09-12; it was buggy
3408
3409 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
3410
3411         * src/SDCCsymt.h: removed RESULT_CHECK
3412         * src/SDCCast.c,
3413         * src/SDCCglue.c,
3414         * src/SDCCval.c,
3415         * src/pic/glue.c,
3416         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
3417
3418 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
3419
3420         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
3421         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
3422         configuration values no more rejected by compiler, they are assigned
3423         to configuration registers with a warning message instead,
3424         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
3425         the for-loop so last conf register is emitted too,
3426         * (_pic16_initPaths): link library libsdcc.lib by default,
3427         * (_hasNativeMulFor): modified test for multiplication according to
3428         Raphael Neider's remarks. Integer multiplication is also done with
3429         support functions,
3430         * device/include/pic16/pic18fregs.h: corrected type error in while
3431         testing and including 18f6720 header file
3432
3433 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
3434
3435         * src/pic16/device.h (pic16_options): removed field use_crt,
3436         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
3437         until an optimization to handle single bits is added,
3438         * (pic16_loadFSR0): moved before genUnpackBits,
3439         * (genAnd): some white lines removed,
3440         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
3441         leave_reset flags in pic16_options when using crt modules,
3442
3443 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
3444
3445         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
3446           for bugs 898889 & 979599. Also used some safer print instructions.
3447
3448 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
3449
3450         * src/pic16/device.h (pic16_options_t): added field use_crt,
3451         crt_name, no_crt,
3452         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
3453         catch a probable future bug,
3454         * src/pic16/gen.c: aopIdx function commented out,
3455         * (genAssign): commented out old code which used aopIdx,
3456         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
3457         code, added if conditionals to take into account the --use-crt
3458         command line options,
3459         * src/pic16/main.c (pic16_optionsTable): added new command line
3460         options, --use-crt= and --no-crt,
3461         * (_pic16_linkEdit): now the proper crt object is added in the
3462         linker command line except than when --no-crt is specified,
3463         * src/pic16/pcode.c,
3464         * src/pic16/pcode.h: added some structures and functions for a new
3465         optimization scheme to compansate for instruction overhead between
3466         same iCodes, this scheme is currently under development and is not
3467         working in any way,
3468         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
3469         to && operator,
3470         * device/lib/pic16/startup/crt0i.c,
3471         * device/lib/pic16/startup/crt0iz.c: added global char variable
3472         __uflags to force the generation of an idata section
3473
3474 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
3475
3476         * doc/Makefile,
3477         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
3478         * doc/sdccman.lyx: updated sdcc version to 2.4.4
3479
3480 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3481
3482         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
3483         Frieder) and clarified the default code optimization mode
3484
3485 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3486
3487         * src/SDCC.lex (doPragma, process_pragma),
3488         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
3489         "opt_code_size", and "opt_code_balanced"
3490         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
3491         regrouped options by category, added support for category headers
3492         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
3493         and "--opt-code-size"
3494         * doc/sdccman.lyx: documented these new options and pragmas
3495         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
3496         preference into account
3497
3498 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3499
3500         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
3501           geniCodePreDec): Fixed bug 904237 by generating a warning
3502         * src/SDCCerr.h,
3503         * src/SDCCerr.c: added warning W_SIZEOF_VOID
3504
3505 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
3506
3507         * src/pic/device.c : When no max ram set validate full memory range.
3508         * src/pic/pcode.c,
3509         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
3510
3511 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3512
3513         * device/lib/_gptrget.c,
3514         * device/lib/_gptrput.c: updated comment
3515         * device/lib/calloc.c,
3516         * device/lib/free.c,
3517         * device/lib/malloc.c,
3518         * device/lib/realloc.c: added LGPL, made them reentrant-safe
3519         * src/SDCCcse.c (cseBBlock),
3520         * src/SDCCicode.c (printOperand, geniCodeArray),
3521         * src/SDCCicode.h (struct operand): fixed bug 868103
3522         * support/regression/tests/bug-868103.c: added
3523         * src/SDCCast.c (searchLitOp),
3524         * src/SDCCcse.h (struct cseDef),
3525         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
3526         * src/SDCCicode.h (struct operand),
3527         * src/SDCCsymt.h (struct sym_link),
3528         * src/avr/gen.c (hasInc),
3529         * src/ds390/gen.c (hasInc),
3530         * src/hc08/gen.c (genPlusIncr, hasInc),
3531         * src/mcs51/gen.c (hasInc),
3532         * src/pic16/glue.c (pic16_printIvalChar),
3533         * src/pic16/ralloc.c (regWithIdx),
3534         * src/xa51/gen.c (hasInc) : removed warnings
3535         * src/SDCCast.c (createBlock): added comment ???
3536         * src/hc08/ralloc.c: updated comments
3537
3538 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3539
3540         * doc/sdccman.lyx: updated section on switch statements, added
3541         section about semaphore locking
3542         * doc/Makefile: added option -info for latex2html
3543         * device/lib/_gptrget.c,
3544         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
3545
3546 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3547
3548         * src/pic/device.h,
3549         * src/pic/device.c,
3550         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
3551          maxram is less than 0x100.
3552
3553 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3554
3555         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
3556
3557 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3558
3559         * src/port.h,
3560         * src/mcs51/main.c,
3561         * src/ds390/main.c,
3562         * src/z80/main.c,
3563         * src/hc08/main.c,
3564         * src/pic/main.c,
3565         * src/pic16/main.c,
3566         * src/avr/main.c,
3567         * src/xa51/main.c
3568         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
3569         a jump table is the best form for a switch statement, including
3570         automatic insertion of missing cases to make the case range
3571         continuous. Developed in collaboration with Frieder Ferlemann.
3572
3573 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3574
3575         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
3576         accumulator result if it needs sign extension
3577
3578 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3579
3580         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
3581
3582 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3583
3584         * device/lib/gbz80/printf.c,
3585         * device/lib/z80/printf.c: removed define for NULL
3586
3587 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3588
3589         * as/xa51/xa_link.c,
3590         * device/examples/ds390/ow390/ad26.c,
3591         * device/examples/ds390/ow390/cnt1d.c,
3592         * device/examples/ds390/ow390/counter.c,
3593         * device/examples/ds390/ow390/ds2480.h,
3594         * device/examples/ds390/ow390/ds2480ut.c,
3595         * device/examples/ds390/ow390/findtype.c,
3596         * device/examples/ds390/ow390/gethumd.c,
3597         * device/examples/ds390/ow390/owllu.c,
3598         * device/examples/ds390/ow390/ownetu.c,
3599         * device/examples/ds390/ow390/swt12.c,
3600         * device/examples/ds390/ow390/swtloop.c,
3601         * device/examples/ds390/ow390/temp.c,
3602         * device/examples/ds390/ow390/temp10.c,
3603         * device/examples/ds390/ow390/thermo21.c,
3604         * device/examples/ds390/ow390/tinilnk.c,
3605         * device/examples/ds390/ow390/tstfind.c,
3606         * device/examples/serialcomm/windows/serial.cpp,
3607         * device/examples/serialcomm/windows/test_serialcomm.cpp,
3608         * device/include/reg51.h: fixed line endings for cvs
3609
3610 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3611
3612         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
3613         packRegsForAccUse, packRegisters): new accumulator register
3614         packing algorithm
3615         * support/regression/ports/hc08/support.c (_putchar): suppress
3616         warning of unused variable
3617         * src/SDCCicode.c: added SWAP entry to codeTable
3618
3619 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
3620
3621         * device/lib/sprintf.c: forgot to add this file before previous commit
3622
3623 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
3624
3625         * src/pic16/gen.c (genPackBits): added operand right in function
3626         parameters, load result directly if p_type is POINTER (that is
3627         called by genNearPointerSet)
3628         * (genUnPackBits): added operand left in function parameters,
3629         * (genNearPointerGet, genNearPointerSet): prevent the loading of
3630         FSR0 if accessing bitfields,
3631
3632 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
3633
3634         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
3635           _print_format; updated printf, sprintf, vsprintf
3636         * device/include/asm/default/features.h: corrected comment/define
3637         * device/lib/Makefile.in: added sprintf.c
3638         * device/lib/libsdcc.lib: added sprintf module
3639         * device/lib/printf_large.c,
3640         * device/lib/vprintf.c,
3641         * device/lib/sprintf.c: totally refactored printf_large and vprintf
3642           into these 3 files
3643         * support/regression/Makefile: changed ALL_PORTS into a usefull default
3644         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
3645         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
3646           hc08 test
3647         * support/regression/tests/zeropad.c: define idata as data for hc08
3648
3649 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3650
3651         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
3652         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
3653         labels are referenced at least once (even if a reference is not found)
3654         * src/hc08/gen.c (emitcode): set isComment flag for comments
3655         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
3656         loads), rules 6a..6b (optimize jumps to return)
3657
3658 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3659
3660         * device/lib/acosf.c (acosf),
3661         * device/lib/asinf.c (asinf),
3662         * device/lib/atanf.c (atanf),
3663         * device/lib/ceilf.c (ceilf),
3664         * device/lib/cosf.c (cosf),
3665         * device/lib/coshf.c (coshf),
3666         * device/lib/cotf.c (cotf),
3667         * device/lib/fabsf.c (fabsf),
3668         * device/lib/floorf.c (floorf),
3669         * device/lib/log10f.c (log10f),
3670         * device/lib/logf.c (logf),
3671         * device/lib/sinf.c (sinf),
3672         * device/lib/sinhf.c (sinhf),
3673         * device/lib/sqrtf.c (sqrtf),
3674         * device/lib/tanf.c (tanf),
3675         * device/lib/tanhf.c (tanhf),
3676         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
3677         replaced all instances of "reentrant" in the library functions
3678         defined in math.h with this macro.
3679         * support/regression/tests/float_trans.c: reenabled test for hc08
3680
3681 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
3682
3683         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
3684         erroneously deleted
3685
3686 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3687
3688         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
3689         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
3690         multi-byte volatile operands are used
3691         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
3692         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
3693         initialization to area GSINIT0 so that it would always precede
3694         any static initializers in GSINIT
3695         * support/regression/tests/zeropad.c: fixed idata define for hc08
3696         * support/regression/tests/bug-927659.c,
3697         * support/regression/tests/float_trans.c: disabled tests for hc08
3698         pending missing library routines
3699         * .version: increased version number to 2.4.4 - hc08 port now passes
3700         regression tests
3701
3702
3703 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
3704
3705         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
3706         * Makefile.common.in,
3707         * as/Makefile,
3708         * as/hc08/Makefile.in,
3709         * as/mcs51/Makefile.in,
3710         * as/z80/Makefile.in,
3711         * debugger/mcs51/Makefile.in,
3712         * device/include/Makefile.in,
3713         * device/lib/Makefile.in,
3714         * doc/Makefile,
3715         * link/Makefile,
3716         * link/z80/Makefile.in,
3717         * packihx/Makefile.in,
3718         * sim/ucsim/main_in.mk,
3719         * sim/ucsim/avr.src/Makefile.in,
3720         * sim/ucsim/doc/Makefile.in,
3721         * sim/ucsim/gui.src/serio.src/Makefile.in,
3722         * sim/ucsim/hc08.src/Makefile.in,
3723         * sim/ucsim/s51.src/Makefile.in,
3724         * sim/ucsim/xa.src/Makefile.in,
3725         * sim/ucsim/z80.src/Makefile.in,
3726         * src/Makefile.in,
3727         * support/cpp2/Makefile.in,
3728         * support/librarian/Makefile,
3729         * support/makebin/Makefile: added DESTDIR to the install path proposed
3730         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
3731         * doc/sdccman.lyx: added DESTDIR documentation
3732
3733 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
3734
3735         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
3736         instruction for interrupt handlers, use fast returns when returning
3737         from high priority interrupts
3738
3739 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3740
3741         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
3742         code generation
3743         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
3744         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
3745         bugs, ported much of Bernhard's code from mcs51
3746         * src/mcs51/gen.c (genSend),
3747         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
3748         than one when calling a reentrant function
3749         * device/lib/_mullong.c: defined an alternate struct layout for big
3750         endian ports (hc08)
3751
3752 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3753
3754         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
3755         test
3756
3757 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3758
3759         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
3760         are sane and complete before asking the port its prefered parameter
3761         passing method (fixes bug #1017633)
3762         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
3763         and _ret3
3764
3765 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3766
3767         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
3768         problem in bitfields >= 8 bits.
3769
3770 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3771
3772         * src/SDCCsymt.c: undid changes that were not meant to be committed
3773
3774 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3775
3776         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
3777
3778 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3779
3780         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
3781           copied and wrong bit got inverted
3782
3783 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3784
3785         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
3786         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
3787         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
3788         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
3789         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
3790         assignments to bitfields at known addresses
3791         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
3792         reads from bitfields at known addresses
3793         * src/hc08/ralloc.c (packRegisters),
3794         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
3795         genhc08Code): optimize pointer get values used as conditionals
3796         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
3797         and branch
3798
3799 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3800
3801         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
3802         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
3803         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
3804         as conditionals
3805
3806 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3807
3808         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
3809
3810 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3811
3812         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
3813         related problems
3814
3815 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
3816
3817         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
3818
3819 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3820
3821         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
3822         mcs51 port
3823
3824 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
3825
3826         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
3827
3828 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3829
3830         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
3831         cases use more compact code.
3832
3833 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
3834
3835         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
3836
3837 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3838
3839         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
3840
3841 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3842
3843         * src/SDCCsymt.h,
3844         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
3845         parameter of changePointer() from symbol* to sym_link*
3846         * src/SDCCast.c (decorateType): call changePointer() for CAST op
3847         * src/SDCCsymt.c (compareType): void* type is castable to other
3848         pointers, but not necesarily an exact match.
3849         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
3850         is no longer blindly treated as an exact match.
3851         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
3852
3853 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
3854
3855         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
3856
3857 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
3858
3859         * src/pic/gen.c,
3860         * src/pic/pcode.c,
3861         * src/pic/ralloc.h,
3862         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
3863
3864 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
3865
3866         * src/pic/device.c,
3867         * src/pic/device.h,
3868         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
3869
3870 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3871
3872         * src/mcs51/gen.c (emitcode): fixed bug #992819
3873
3874 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
3875
3876         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
3877           there's no need to make it worse
3878
3879 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3880
3881         * src/mcs51/ralloc.c (deassignLR),
3882         * src/ds390/ralloc.c (deassignLR),
3883         * src/hc08/ralloc.c (deassignLR),
3884         * src/z80/ralloc.c (deassignLR),
3885         * src/pic/ralloc.c (deassignLR),
3886         * src/pic16/ralloc.c (deassignLR),
3887         * src/avr/ralloc.c (deassignLR),
3888         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
3889         rlivePoint): fixed another part of bug #971834
3890
3891 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3892
3893         * src/z80/main.c: enabled "critical" keyword
3894         * src/z80/mappings.i,
3895         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
3896         functions (fixes bug #979646)
3897         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
3898
3899 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3900
3901         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
3902           such as c:\mydir.
3903
3904 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
3905
3906         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
3907           doesn't disable too much optimizations
3908
3909 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3910
3911         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
3912
3913 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
3914
3915         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
3916
3917 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3918
3919         * src/pic/gen.c tidied up tabs
3920         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
3921         * src/pic/main.c tidied up tabs
3922         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
3923         * src/pic/pcoderegs.c tidied up tabs
3924         * src/pic/ralloc.c tidied up tabs
3925
3926 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
3927
3928         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
3929         to S_FIXED for pic16 port and when symbol is not in level 0,
3930         allocate for S_REGISTER storage class and pic16 port, too,
3931         * src/pic16/device.h: prototype for checkSym,
3932         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
3933         * (pic16_assignConfigWordValue): test the value and the mask to
3934         validate that the value is suitable for the configuration word,
3935         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
3936         collect extern declared symbols, don't emit symbol twice, check
3937         first if symbol is in publics set first,
3938         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
3939         * added command line '--fstack' which enables an experimental
3940         feature for stack access, too buggy to be used yet...
3941         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
3942         * (pic16_allocDirReg): when register has storage class S_REGISTER
3943         allocate in pic16_dynAccessRegs,
3944         * device/include/pic16/pic18f????.h: modified configuration word
3945         naming convention, words started as CONFIG0H but should be CONFIG1H
3946
3947 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
3948
3949         * device/include/mcs51reg.h: fixed bug 970993
3950
3951 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
3952
3953         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
3954         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
3955         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
3956         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
3957         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
3958         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
3959           error/warning numbers,
3960           added function setWarningDisabled()
3961         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
3962         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
3963           _memcmp.c _memmove.c calloc.c realloc.c free.c
3964         * support/regression/tests/malloc.c: added tests for new functionality
3965         * support/regression/tests/zeropad.c: added tests for truncated initializers
3966           and initialized char arrays starting with '\x0'
3967         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
3968
3969 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
3970
3971         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
3972
3973 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3974
3975         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
3976         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
3977         peephole 177.e. Thanks to anonymous
3978
3979 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
3980
3981         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
3982         function isn't used in the source but referenced as a
3983         variable initializer then declare it as extern in .asm file
3984
3985 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
3986
3987         * .version: increased version number to 2.4.3
3988
3989         Adding version extension according to ChangeLog CVS revision
3990         * src/Makefile.in (target all): added dependency 'version.h'
3991         * (rule version.h): added rule to create version.h from ChangeLog,
3992         * (rule dep): added dependency version.h,
3993         * src/version.awk: AWK script to create version.h
3994         * src/SDCCdwarf2.c (dwWriteModule),
3995         * src/SDCCglue.c (initialComments),
3996         * src/SDCCmain.c (printVersionInfo): modified to write after
3997         version string the version extension number,
3998         * src/SDCCutil.c: included "version.h"
3999         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
4000         number,
4001         * src/SDCCutil.h: added prototype for getBuildNumber
4002
4003         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
4004         includeDirsSet, too,
4005         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
4006         const char [] is found in function prototype...
4007
4008         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
4009         moving to WREG with source is already in WREG,
4010         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
4011         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
4012         * (aopForSym): stack'ed symbols are partially supported, added
4013         if-clause to support symbols in FARSPACE,
4014         * (sameRegs): added test for AOP_ACC to see if registers are same,
4015         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
4016         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
4017         * (pic16_popRegFromString): will not allocate a new register if it
4018         doesn't find one by name, bug may have introduced...
4019         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
4020         * (genIpush): revived to use pic16 port's stack,
4021         * (genAddrOf): added incomplete case for stack'ed operand,
4022         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
4023         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
4024         can handle multibyte operands,
4025         * src/pic16/glue.c (pic16_printIval*): some debug info added,
4026         * (pic16initialComments): added message for MPLAB compatibility
4027         mode enabled,
4028         * src/pic16/main.h: prototype for pic16_mplab_comp,
4029         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
4030         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
4031         * (_pic16_linkEdit): NEW, handles link stage, transferred here
4032         because of increased complexity of procedure,
4033         * (_process_pragma): stack pragma changed to format 'stack pos len',
4034         emit symbol '_stack_end' to conform with gplink,
4035         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
4036         to search for register,
4037         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
4038         PO_GPR_REGISTER,
4039         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
4040         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
4041         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4042         case for PO_GPR_REGISTER,
4043         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
4044         dies, the new era is ahead !...
4045         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
4046         pic16_dynInternalRegs,
4047         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
4048         * (pic16_allocDirReg): minor optimizations and bug fixes,
4049         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
4050
4051         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
4052         load stack and frame pointer with address of 'stack_end' symbol
4053
4054 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
4055
4056         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
4057         without source code but only variable initializers
4058
4059 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
4060
4061         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
4062         external are not declared as extern to reduce overhead while linking
4063
4064 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
4065
4066         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
4067
4068 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
4069
4070         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
4071           Yee Keat for the patch
4072         * src/SDCCast.c (decorateType): fixed bug #979599
4073         * src/ds390/gen.h: removed local fReturnSizeDS390
4074         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
4075         * src/ds390/gen.c (genAnd, genOr, genXor),
4076         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
4077
4078 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
4079
4080         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
4081         add relFilesSet to $3, manipulate $2 to handle linking of object
4082         files without source files in command line,
4083         * device/include/pic16 (all headers): added ID location macros,
4084         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
4085         entries for ID location bytes,
4086         * (pic16_assignIdByteValue): NEW,
4087         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
4088         added field dumpcalltree to pic16_options_t,
4089         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
4090         is used instead of pic16_Gstack_base_addr, check if (ifx) before
4091         emitting rFalseIfx label after check_carry label,
4092         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
4093         pic16_emitDIRegs), NEW
4094         * (pic16glue): dump .calltree file when option --calltree found,
4095         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
4096         * (_pic16_genAssemblerPreamble): emit ID locations after
4097         configuration registers,
4098         * (pic16_linkCmd): modifications of the link command,
4099         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
4100         * (pic16_pCodeInitRegisters): don't init stack registers,
4101         * (pic16_findPrevInstruction): fixed bug,
4102         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
4103         bug with immediate registers,
4104         * (buildCallTree): traces stack push and pop,
4105         * (pct2): dump also stack usage for each function,
4106         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
4107         * (pic16_allocDirReg): various modifications,
4108         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
4109         fixed to 1,
4110
4111 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
4112
4113         * src/pic16/pcode.c: removed buggy double colon
4114
4115 2004-07-01 Borut Razem <borut.razem AT siol.net>
4116
4117         * support/scripts/sdcc.nsi: added include/pic16 to setup
4118
4119 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
4120
4121         * device/lib/Makefile.in: fixed bug in target objects-pic16,
4122         * device/lib/pic16/Makefile: prefixed with dash (-) command under
4123         target 'clean',
4124         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
4125         specific command line arguments. Also added sample lkr script
4126         for placing a variable at a specific memory bank.
4127         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
4128         at a specific memory bank,
4129         * (pic16_dump_isection): fixed bug which caused string literals to
4130         be omitted when dumping idata section,
4131         * (pic16_groupRegistersInSection): added code to handle registers
4132         in specific memory banks,
4133         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
4134         public, all references are renamed too,
4135         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
4136         AOP_DPTR2,
4137         * (pic16_storeForReturn): added case to handle when dest is WREG,
4138         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
4139         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
4140         pic16_rel_udata, check to see if that register is marked as being
4141         a member of a specific memory bank,
4142         * (pic16_printIvalCharPtr): added code to add string literals either
4143         to code or the idata sections,
4144         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
4145         also accept the 'udata' pragma,
4146         * src/pic16/main.h: new structure types sectName and sectSym
4147         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
4148         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
4149         * (pic16_findPrevInstruction): fixed, it returned nothing,
4150         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
4151         instruction combinations,
4152         * (pic16_FixRegisterBanking): heavily reorganised,
4153         * (pic16_AnalyzeBanking): if generating banksel directives is
4154         disabled, then don't call FixRegisterBanking at all,
4155         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
4156         completely removed,
4157         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
4158
4159 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
4160
4161         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
4162         Phuah Yee Keat <yk.phuah AT nestac.com>
4163
4164 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4165
4166         * src/pic16/glue.c (pic16createInterruptVect): function now emits
4167         correctly the IVT even if it is relocated to some other location
4168
4169 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4170
4171         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
4172         * device/include/pic16/pic18f2220.h: NEW,
4173         * device/lib/pic16/libdev/pic18f2220.c: NEW,
4174         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
4175         * src/pic16/device.c (struct Pics16): added info for 18f2220,
4176         * src/pic16/device.h (struct pic16_options): added ivt_loc and
4177         nodefaultlibs, ivt_loc is the location of the interrupt vector
4178         table, and nodefaultlibs signs that default libraries should not be
4179         linked in link stage,
4180         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
4181         according to --ivt-loc argument,
4182         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
4183         when pragma stack is found,
4184
4185 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4186
4187         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
4188         256 (range check), 257 (do while), 258.a-f (bit banging
4189         f.e. on 3-wire SPI bus)
4190
4191 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4192
4193         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
4194         variables used exclusively within a loop
4195
4196 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
4197
4198         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
4199
4200 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4201
4202         * src/SDCClrange.c (computeClash): fixed bug #971834
4203
4204 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4205
4206         * src/mcs51/gen.c (genCmp): fixed bug #975903
4207         * src/hc08/gen.c (operandsEqu),
4208         * src/ds390/gen.c (operandsEqu),
4209         * src/z80/gen.c (operandsEqu),
4210         * src/pic/gen.c (operandsEqu),
4211         * src/pic16/gen.c (operandsEqu),
4212         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
4213         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
4214
4215 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4216
4217         * src/SDCCcse.c (cseBBlock): fixed bug #966963
4218
4219 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
4220
4221         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
4222         default case in switch statement,
4223         * glue.c (pic16_initPointer): expr is initialised via decoarteType
4224         to eliminate problem with initialisation of pointers, but problem
4225         still exists,
4226         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
4227         * (emitStaticSegment): removed various lines emitting debug info,
4228         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
4229         added processor registers for utilizing EEPROM,
4230         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
4231         configurable and set 8
4232
4233 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
4234
4235         * .version: increased version number to 2.4.2,
4236
4237         Cumulative patch for pic16 port
4238         * src/pic16/device.c: changed scheme to dump initial values for
4239         variables in idata segment, all print_idata* functions were removed,
4240         now the pic16_printIval* will be called,
4241         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
4242         * _pic16_printPointerType, pic16_printPointerType,
4243         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
4244         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
4245         NEW, similar to the respective functions in SDCCglue.c,
4246         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
4247         way, emitting hex bytes,
4248         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
4249
4250 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4251
4252         * src/avr/ralloc.c (serialRegAssign),
4253         * src/xa51/ralloc.c (serialRegAssign),
4254         * src/pic/ralloc.c (serialRegAssign),
4255         * src/pic16/ralloc.c (serialRegAssign),
4256         * src/hc08/ralloc.c (serialRegAssign),
4257         * src/z80/ralloc.c (serialRegAssign),
4258         * src/ds390/ralloc.c (serialRegAssign),
4259         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
4260
4261 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4262
4263         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
4264         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
4265
4266 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
4267
4268         Cumulative patch for pic16 port:
4269         * src/pic16/device.h (typedef PIC16_device) modified fields for
4270         defining microcontrollers,
4271         * src/pic16/device.c: added new info for all devices in Pics16 array,
4272         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
4273         to be optimised out by the pCode optimiser,
4274         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
4275         specially, bug reported by G.M. Gallant,
4276         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
4277         as force'd so that cannot be optimised out by pCode optimiser,
4278         * src/pic16/pcode.c,
4279         * src/pic16/pcodepeeph.c,
4280         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
4281         they are disabled by default, but can be enabled explicit with
4282         command argument --denable-peeps, for testing,
4283         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
4284         --pomit-ivt in COMPILE_FLAGS
4285
4286 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4287
4288         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
4289           compilation on MSVC
4290
4291 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4292
4293         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
4294
4295 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4296
4297         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
4298         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
4299
4300 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
4301
4302         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
4303         would only assign 0x300001 register.
4304
4305 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
4306
4307         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
4308         in COMPILE_FLAGS. Thanks to G. Gallant for report.
4309
4310 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4311
4312         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
4313         for ds80c400
4314         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
4315         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
4316         added peephole 254 (left shift), 255 (jump table)
4317
4318 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
4319
4320         * device/lib/Makefile.in: removed comment line with model-pic16,
4321         * (target port-specific-objects-pic16): the libraries and objects
4322         are copied to the build directory form the device/lib/pic16/bin
4323         directory
4324
4325         Cumulative patch concerning pic16 port:
4326         * library directory has been re-organized,
4327         * added support for PIC18F1220,
4328         * added headers and library sources for chips 18f1220,18f6520,
4329         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
4330
4331         * configuration registers setting has changed, now each supported
4332         device has a complete description of the registers it uses,
4333         * all initialisations are moved to idata sections, these section
4334         can be absolute or relocatable,
4335         * fixed initialisation of codespace variables,
4336         * fixed warning about PCLATU and gpsim,
4337         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
4338         * (genAssign): use table reads when assigning from variables in codespace,
4339         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
4340         char/int variables placed in codespace,
4341         * (pic16_emitConfigRegs): NEW, emits a list with configuration
4342         registers set in .asm file, no need for --pomit-config-words anymore,
4343         * (pic16glue): some 8051 legacy segments are commented out
4344         (to be removed completely),
4345         * added support for alternative assembler and linker with --asm=
4346         and --link= command line arguments,
4347         * peepholes are disabled automatically in the port, no need to
4348         specify on command line,
4349         * port supports natively char/int/long multiplication, but converts
4350         all divisions to support functions,
4351         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
4352         to the file set in variable $2,
4353         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
4354         strings in ASCII format and not in hex,
4355         * ralloc.c (serialRegAssign): added a triplet of conditional calls
4356         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
4357         allocate proper register if iCodes aren't temporary,
4358
4359 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
4360
4361         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
4362
4363 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
4364
4365         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
4366         is commented out
4367
4368 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4369
4370         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
4371         computed address is reused
4372         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
4373         multi-byte bitfields
4374
4375 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4376
4377         * src/z80/gen.c: (genArrayInit): must check for pointers too
4378
4379 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4380
4381         * support/regression/tests/zeropad.c: never meant to commit the
4382           nestedstruct test: removed, added check for GCC version
4383
4384 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
4385
4386         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
4387         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
4388         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
4389           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
4390           bugs 928906 and 954082 half-empty initializers
4391         * src/SDCCsymt.h,
4392         * src/SDCCsymt.c (getAllocSize): added for above fix
4393         * src/z80/gen.c (genArrayInit): fixed bug 741044
4394         * support/regression/tests/zeropad.c: added tests
4395
4396 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
4397
4398         * src/pic16/device.c (pic16_dump_section): corrected bug which
4399         caused some symbols of the libraries to be misplaced
4400
4401 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4402
4403         * src/pic16/glue.c,
4404         * src/pic16/ralloc.h,
4405         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
4406         to fix conflict with pic port
4407
4408 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4409
4410         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
4411         externs configuration variables,
4412         * src/pic16/ralloc.h,
4413         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
4414         prototype in header, commented out some debug messages
4415
4416 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
4417
4418         * src/pic16/glue.c,
4419         * src/pic16/main.c,
4420         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
4421         for gpasm COFF object generation. Thanks to D. Hawkins for
4422         his patch info
4423
4424 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4425
4426         * src/ds390/main.c,
4427         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
4428         Brock for spotting this)
4429         * src/ds390/gen.c (genEndFunction),
4430         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
4431         interrupt handler and critical. Disable push/pop optimizations when
4432         peephole optimizations disabled.
4433
4434 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4435
4436         Updated pic16 library sources and headers.
4437         * device/lib/pic16/pic18f*/ ,
4438         * device/include/pic16/*.h: modified to handle structured SFR
4439         definitions
4440
4441 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4442
4443         * src/port.h (PORT structure): added hook initPaths, now each
4444         port can declare its own default search paths,
4445         which can been seen with the --print-search-dirs option,
4446         see pic16 port for example,
4447         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
4448         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
4449         * (doPrintSearchDirs): NEW, replaces in a central manner the
4450         printing of search dirs which was split in set*Paths functions,
4451         * (main): added call to port->initPaths and doPrintSearchDirs,
4452         * src/avr/main.c,
4453         * src/ds390/main.c,
4454         * src/hc08/main.c,
4455         * src/izt/i186.c,
4456         * src/izt/tlcs900h.c,
4457         * src/mcs51/main.c,
4458         * src/pic/main.c,
4459         * src/pic16/main.c: modified port structures to reflect addition of
4460         initPaths hook,
4461
4462         * src/pic16/device.c (regCompare): registers are finally sorted by name,
4463         * (pic16_dump_section): for registers in same address reserve memory once,
4464         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
4465         to no_banksel,
4466         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
4467         result is greater in size than right or left,
4468         * (pic16_genUMult8X8_8): there are some cases where the result can
4469         be 16 bits size, so handle these,
4470         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
4471         * (pic16_outBitC): modified to emit pcodes,
4472         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
4473         or not,
4474         * (genDivOneByte): implemented algorithm to divide 8-bits,
4475         * (genCmp): uncommented goto, but issues still exist,
4476         * (genAnd): fixed a bug with variables >8bits,
4477         * (genPackBits): optimization added that uses BCF/BSF to change a
4478         single bit,
4479         * (genAssign): fixed bug when assigning floating point literals,
4480         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
4481         __sdcc_gsinit_startup label,
4482         * src/pic16/main.c (_pic16_init): removed search directory
4483         initialisations,
4484         * (_pic16_initPaths): NEW, used to initialise search directories,
4485         * (_hasNativeMulFor): support functions for all except char/int
4486         multiplication, and char division,
4487         * (PIC16_port struct): modified entry for native mul support,
4488         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
4489         no_banksel option,
4490         * (buildCallTree): call to register_usage is ifdef'ed out,
4491
4492 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4493
4494         * device/include/string.h: applied Stas Sergeev's patch to make this
4495         header file compatible with the preprocessor -Wundef option
4496         * src/SDCCmain.c (main): abort compilation if preprocessor reports
4497         failure (fixes bug #941458)
4498
4499 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4500
4501         * src/SDCCopt.c (killDeadCode): fixed bug #907733
4502         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
4503         that the variable, not the function, should be static
4504         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
4505         to be consistent with non-literal case
4506
4507 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4508
4509         * src/SDCCast.c (isConformingBody): fixed bug #949967
4510         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
4511         convilong): fixed bug #952086
4512
4513 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4514
4515         * src/SDCCmem.c (allocVariables): fixed bug #955321
4516
4517 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4518
4519         * src/hc08/main.c (_hc08_genAssemblerEnd),
4520         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
4521         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
4522         completely eliminated the use of a temporary file
4523         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
4524         when more than one file linked
4525         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
4526
4527 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4528
4529         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
4530         which fixes bug #543481
4531         * support/regression/tests/bug-751703.c: fixed comments left from a
4532         cut and paste error
4533         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
4534         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
4535         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
4536         scopes
4537         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
4538         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
4539         are now changed to underscores in moduleName
4540
4541 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4542
4543         * as/mcs51/lkmem.c: better fix for bug #954173
4544
4545 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
4546         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4547
4548         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
4549         * device/include/c8051f000.h,
4550         * device/include/c8051f120.h,
4551         * device/include/c8051f300.h,
4552         * device/include/c8051f310.h,
4553         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
4554         PWM16) and detab'ed
4555
4556 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4557
4558         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
4559         and mailing lists, doc'ed --no-peep-comments, removed reference
4560         to knoppix (newest version has no LyX/LaTeX), other minor changes
4561         * src/SDCCglue.c (glue): save 2 bytes stack space with
4562         option --main-return. The ljmp could probably be avoided too
4563
4564 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4565
4566         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
4567
4568 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4569
4570         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
4571         * src/SDCCopt.c (isLocalWithoutDef),
4572         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
4573         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
4574         (credit to Maarten Brock for patch #949363, on which this is based)
4575         * support/regression/tests/bug-751703.c: some test cases of extern used
4576         within inner scopes.
4577
4578 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4579
4580         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
4581         SPEC_STRUCT
4582         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
4583         struct definitions
4584         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
4585         dwWriteLabel): fix to create valid debugger symbols even when
4586         the module name has non-alphanumeric symbols in it
4587         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
4588         when a variable's allocation has been optimized away
4589
4590
4591 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4592
4593         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
4594         * src/hc08/main.c,
4595         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
4596         * src/mcs51/main.c,
4597         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
4598         * src/ds390/main.c,
4599         * src/z80/gen.c (z80_emitDebuggerSymbol),
4600         * src/z80/main.c,
4601         * src/pic/gen.c (pic14_emitDebuggerSymbol),
4602         * src/pic/main.c,
4603         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
4604         * src/pic16/main.c,
4605         * src/avr/gen.c (avr_emitDebuggerSymbol),
4606         * src/avr/main.c,
4607         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
4608         * src/xa51/main.c,
4609         * src/SDCCdebug.c (emitDebuggerSymbol),
4610         * src/SDCCdebug.h,
4611         * src/port.h: added a debugger struct to the port struct. Added a
4612         callback for defining debugger symbols
4613
4614         * src/SDCCast.c (createLabel),
4615         * src/SDCC.y (labeled_statement): mark all compiler generated labels
4616         with isitmp = 1
4617         * src/SDCCicode.h,
4618         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
4619         iCode back to the ast for the function
4620
4621         * src/hc08/ralloc.c (hc08_assignRegisters),
4622         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
4623         unneeded fields from the regs struct.
4624         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
4625         pushReg() & pullReg() functions instead of emitcode()
4626
4627         * src/hc08/gen.c (genLabel, genhc08Code),
4628         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
4629
4630         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
4631         debugger hooks
4632
4633         * src/hc08/gen.c (genEndFunction, genhc08Code),
4634         * src/hc08/gen.h,
4635         * src/mcs51/gen.c (genEndFunction, gen51Code),
4636         * src/mcs51/gen.h,
4637         * src/ds390/gen.c (genEndFunction, gen390Code),
4638         * src/ds390/gen.h,
4639         * src/z80/gen.c (genEndFunction, genZ80Code),
4640         * src/z80/gen.h,
4641         * src/z80/z80.h,
4642         * src/pic/gen.c (genEndFunction, genpic14Code),
4643         * src/pic/gen.h,
4644         * src/pic16/gen.c (genEndFunction, genpic16Code),
4645         * src/pic16/gen.h,
4646         * src/avr/gen.c (genEndFunction, genAVRCode),
4647         * src/avr/gen.h,
4648         * src/xa51/gen.c (genEndFunction, genXA51Code),
4649         * src/xa51/gen.h,
4650         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
4651         specific code to cdbFile.c and out of the backend code generators
4652
4653         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
4654         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
4655         starting address is now 0
4656
4657         * as/hc08/asm.h,
4658         * as/hc08/m08pst.c,
4659         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
4660         assembler directive for DWARF support
4661         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
4662
4663         * src/src.dsp,
4664         * src/Makefile.in,
4665         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
4666
4667 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4668
4669         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
4670         and inappropriate peephole optimization in jump tables
4671
4672 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4673
4674         * as/hc08/m08pst.c,
4675         * src/SDCCglue.c: sdccopt works for the hc08 port now
4676
4677 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
4678
4679         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
4680
4681 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4682
4683         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
4684
4685 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4686
4687         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
4688         rules
4689         * src/SDCCmain.c,
4690         * src/SDCCglobl.h,
4691         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
4692         comments from the peephole optimizer replacement rules
4693         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
4694         symbols
4695         * src/SDCCcse.c (updateSpillLocation),
4696         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
4697         equivalents
4698         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
4699         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
4700         objects far pointers
4701
4702 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4703
4704         * src/SDCCsymt.h: a missing part of my last change
4705         * src/pic/ralloc.c (regTypeNum),
4706         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
4707
4708 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4709
4710         * src/SDCCicode.h,
4711         * src/SDCCicode.c (aggrToPtrDclType),
4712         * src/SDCCptropt.h,
4713         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
4714         ptrPseudoSymConvert),
4715         * src/pic/ralloc.c (regTypeNum),
4716         * src/pic16/ralloc.c (regTypeNum),
4717         * src/hc08/ralloc.c (regTypeNum),
4718         * src/ds390/ralloc.c (regTypeNum),
4719         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
4720         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
4721
4722 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4723
4724         * link/z80/lkmain.c (afile),
4725         * as/hc08/lkmain.c (afile),
4726         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
4727         prevent a pointer problem when a filename has no directory and
4728         no extension specified.
4729
4730 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4731
4732         * link/z80/lkmain.c (afile): allow periods in directory names
4733         * link/z80/lkmain.c (afile),
4734         * as/mcs51/lkmain.c (afile),
4735         * as/hc08/lkmain.c (afile): allow linker script file to have an
4736         extension other than ".lnk"
4737         * link/z80/lklex.c (getfid),
4738         * link/z80/lkmain.c (parse),
4739         * as/mcs51/lklex.c (getfid),
4740         * as/mcs51/lkmain.c (parse),
4741         * as/hc08/lklex.c (getfid),
4742         * as/hc08/lkmain.c (parse): Support comments in the linker script
4743         file on lines by themselves and after filenames
4744
4745 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4746
4747         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
4748
4749 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4750
4751         * src/z80/peeph-z80.def: removed some peephole rules that don't
4752         work with multibyte arithmetic (fixed bug #937126)
4753         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
4754         to registers and not global variables
4755         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
4756         geniCodePreInc, geniCodePostDec, geniCodePreDec,
4757         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
4758         checking for assignments not internally generated (fixed bug #931895)
4759         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
4760         structure member (fixed bug #930072)
4761
4762 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4763
4764         * src/SDCCmain.c (linkEdit),
4765         * src/hc08/main.c (_hc08_parseOptions),
4766         * as/hc08/Makefile.in,
4767         * as/hc08/aslink.h,
4768         * as/hc08/asm.h,
4769         * as/hc08/m08pst.c,
4770         * as/hc08/lkrloc.c (relr, rele),
4771         * as/hc08/lkarea.c (lnkarea)
4772         * as/hc08/lkmain.c (afile, parse),
4773         * as/hc08/lkelf.c: support for ELF output
4774         * as/hc08/lks19.c (s19),
4775         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
4776
4777 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4778
4779         * as/mcs51/lkihx.c: Fixed bug #899105.
4780
4781 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4782
4783         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
4784         .dsp files from Unix to DOS.
4785
4786 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4787
4788         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
4789         function pointers; we have been compliant for several months now.
4790         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
4791         change that was accidently commented out
4792         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
4793         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
4794         bug #922319
4795
4796 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4797
4798         * src/hc08/gen.c: output of all of the internal debugging information
4799         is now controlled by the D() macro; it is disabled by default
4800
4801 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4802
4803         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
4804         harder to keep the same registers during a CAST iCode
4805         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
4806         long via int can be done in a single cast, if the signedness is
4807         correct.
4808         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
4809         putchar() in tinibios.c in ds390's library
4810
4811 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
4812
4813         * src/SDCCast.c (decorateType): fixed bug #898889,
4814         cast result of a literal complement too
4815         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
4816         fixed check for bitfields
4817
4818 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
4819
4820         * src/SDCCicode.c (geniCodeLogic): made it static,
4821         (geniCodeLogicAndOr): added in order to fix bug #905492,
4822         (ast2iCode): fixed bug #905492
4823         * support/regression/tests/bug-905492.c: added
4824         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
4825         (processParms): fixed bug #927659: don't copy parms, this will clear
4826         decorated flag
4827         * support/regression/tests/bug-927659.c: added
4828
4829 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
4830
4831         * src/SDCCast.c (addCast): don't cast float to char
4832         * device/lib/libsdcc.lib: added _memmove
4833
4834 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
4835
4836         * device/lib/large/Makefile: fixed parallel execution by
4837         replacing `make` by `$(MAKE)`
4838
4839 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4840
4841         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
4842         offsets (fixes bug #923936)
4843
4844 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
4845
4846         * device/lib/small/Makefile: fixed parallel execution by
4847         replacing `make` by `$(MAKE)`
4848
4849 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4850
4851         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
4852
4853 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
4854
4855         * src/pic/gen.c (genCpl): multi-byte complements were not working.
4856         * src/regression/Makefile: Regression test was not running.
4857
4858 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4859
4860         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
4861         complement if possible
4862         * src/SDCCval.c (valComplement),
4863         * src/SDCCicode.c (operandOperation): fixed complement of literal
4864         * support/regression/tests/onebyte.c (testComplement): added
4865
4866 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
4867
4868         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
4869         return an optimized tree; actually replace actParm with the new tree
4870         * src/SDCCast.h: added some parantheses to remove side effects
4871         * support/regression/tests/bug-920866.c
4872
4873 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
4874         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
4875         Bit operands were not being handled properly in the pic14 port.
4876         (now src/regression/add.c passes again).
4877
4878 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4879
4880         * src/SDCC.y (labeled_statement): case and default no longer require
4881         a following statement (RFE #893037)
4882
4883 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4884
4885         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
4886         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
4887         disabled (fixes bug #916294)
4888         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
4889         "mov a,acc"; patch provided by Lenny Story
4890         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
4891
4892 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4893
4894         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
4895         functions
4896         * src/ds390/gen.c (genFunction, genEndFunction),
4897         * src/ds390/ralloc.c (ds390_assignRegisters),
4898         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
4899         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
4900         pushed if there are parameters passed on the stack. Also, a cleaner
4901         way to decide if r0/r1 should be pushed/popped. (Together they fix
4902         bug #918693)
4903
4904 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4905
4906         * doc/sdccman.lyx,
4907         * device/lib/mcs51/crtpagesfr.asm,
4908         * device/lib/mcs51/crtxinit.asm,
4909         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
4910         to avoid confusion with Si Lab's SFRPAGE register.
4911
4912 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4913
4914         * src/SDCCglue.c (emitMaps): allow public sfr variables
4915         * src/SDCCglue.c (initialComments): include compiler build date
4916         with compiler version and put the timestamp of the generated
4917         assembly file on a serperate line to be less confusing.
4918         * src/port.h: added genInitStartup hook
4919         * src/avr/main.c,
4920         * src/ds390/main.c,
4921         * src/hc08/main.c,
4922         * src/pic/main.c,
4923         * src/pic16/main.c,
4924         * src/xa51/main.c,
4925         * src/z80/main.c: genInitStartup initialize as NULL (default to
4926         historical behaviour)
4927         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
4928         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
4929         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
4930         library instead of hard coding it into the compiler.
4931         * support/regression/ports/mcs51-stack-auto/spec.mk,
4932         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
4933         * device/lib/mcs51/Makefile,
4934         * device/lib/small/Makefile,
4935         * device/lib/large/Makefile,
4936         * device/lib/mcs51/crtpagesfr.asm,
4937         * device/lib/mcs51/crtstart.asm,
4938         * device/lib/mcs51/crtxclear.asm,
4939         * device/lib/mcs51/crtxinit.asm,
4940         * device/lib/mcs51/crtclear.asm,
4941         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
4942         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
4943         and into user configurable files.
4944         * device/lib/clean.mk: clean mcs51 directory too
4945         * support/regression/tests/longlit.c: added static to T1 declaration
4946         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
4947         accesses in the initialization code
4948
4949 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4950
4951         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
4952         OSCTRIMVAL as noted in bug #916008
4953
4954 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4955
4956         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
4957         in loops with multiple exits (reported as incorrect registers
4958         used by Martin Helmling in Sdcc-user list)
4959
4960 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4961
4962         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
4963         made ds390 register extensions look less like error messages
4964
4965 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4966
4967         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
4968         reported by Adam Wozniak in Sdcc-user list
4969
4970 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
4971
4972         * src/SDCCast.c (decorateType): fixed with bug and promotion in
4973         arithmetic optimizations, added debug output
4974
4975 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
4976
4977         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
4978         * sdcc.spec: updated and split sdcc into 3 rpms
4979         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
4980         needed for literals of LEFT_OP and '+'
4981         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
4982         introduced RESULT_TYPE_NOPROM
4983         (geniCodeMultiply): fixed logic for decision if mul is optimized to
4984         left shift
4985         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
4986         limited promotion to int only for '*'
4987         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
4988
4989 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
4990
4991         * src/pic16/gen.c (genSkip),
4992         (genc16bit2lit), (gencjneshort): commented out
4993         (is_LitOp): new helper function, checks operand type
4994         (genCmpEq): rewritten
4995
4996 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
4997
4998         * support/regression/tests/bug-908454.c: added
4999
5000 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
5001
5002         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
5003         * src/SDCCicode.c (usualBinaryConversions): op needs int type
5004         (geniCodeCast): cosmetic, don't preserve bit storage class
5005         (geniCodeLeftShift): added promotion
5006         (geniCodeLogic): fixed regression
5007         * src/SDCCsymt.c (computeTypeOr): accept bits too
5008         (compareType): 2nd part of fix for bug #908454, needed for bitfields
5009
5010 2004-03-07  Borut Razem <borut.razem AT siol.net>
5011
5012         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
5013
5014 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
5015
5016         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
5017         version of pic16_genPackRegisters which does not check if ic is a
5018         CAST operator,
5019         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
5020         function cause string1.c regression test fails
5021
5022 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
5023
5024         * sim/ucsim/configure.in,
5025         * sim/ucsim/configure,
5026         * sim/ucsim/doc/Makefile.in: use docdir
5027         * src/SDCC.y: fixed sbit atrributes
5028         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
5029         * src/SDCCast.c (decorateType): |^& need special promotion handling
5030         * src/SDCCast.h,
5031         * src/SDCCsymt.h: moved definition of RESULT_TYPE
5032         * src/SDCCsymt.h (computeType),
5033         * src/SDCCicode.c: computeType() needs op
5034         * src/SDCCsymt.c (checkTypeSanity),
5035         * doc/sddman.lyx: "plain" bitfields are unsigned
5036         * src/SDCCsymt.c (computeTypeOr): added
5037         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
5038         |^& ops
5039         * src/SDCCval.c (val*): computeType() needs op
5040         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
5041         * support/regression/tests/onebyte.c: added tests for |^&
5042
5043 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
5044
5045         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
5046         for writing icode into asm output.
5047
5048 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
5049
5050         * src/pic16/device.c: added some debug lines enabled
5051         with macro DEBUG_CHECK,
5052         * src/pic16/genarith.c: more debug in genPlus,
5053         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
5054         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
5055         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
5056         * (aopForSym): onStack symbols are re-placed in data memspace,
5057         and onStack flag is cleared,
5058         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
5059         copy temporary pcodeop,
5060         * (genPcall): added warning for not updating PCLATU,
5061         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
5062         always true for pic16 port,
5063         * (genMultOneWord): NEW, supports integer multiplication,
5064         * (genMult): modified to call genMultOneWord,
5065         * (ifxForOp): added warning when return NULL,
5066         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
5067         flag is set before call to operandFromSymbol for implicit
5068         added structures,
5069         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
5070         options.intlong_rent are set by default,
5071         * (_hasNativeMulFor): modified to allow port generation of integer
5072         multiplication,
5073         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
5074         set regtype to REG_SFR for all registers, restricting seting the
5075         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
5076
5077 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5078
5079         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
5080         more than 500 times in the regression tests
5081
5082 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5083
5084         * support/Util/SDCCerr.h,
5085         * support/Util/SDCCerr.c,
5086         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5087         enumerator_list),
5088         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
5089         for symbol conflicts.
5090         * support/valdiags/tests/enum.c,
5091         * support/valdiags/tests/tentdecl.c,
5092         * support/valdiags/tests/struct.c: expect possible error messages
5093         referring to original symbol definitions.
5094         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
5095         * src/SDCCsymt.h,
5096         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
5097
5098 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
5099
5100         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
5101
5102 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
5103
5104         * src/pic16/ralloc.c (newReg): fixed bug #908929
5105
5106 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5107
5108         * src/ds390/gen.c: added missing #include "main.h"
5109
5110 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
5111
5112         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
5113         checking if symbol is already in set,
5114         * src/pic16/device.h: prototype for checkAddSym,
5115         * src/pic16/gen.c: (_G): added entry interruptvector,
5116         * (assignResultValue): removed some commented out lines,
5117         * (genFunction): check for ISR via sym->type, absolute section for
5118         interrupt code is created via a new pBlock, the goto instruction is
5119         placed now correctly at the interrupt vector position, changed all
5120         references from ivec to _G.interruptvector,
5121         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
5122         is the interrupt is a high priority one, same for return from ISR,
5123         * src/pic16/glue.c: changed all calls of addSetHead for publics and
5124         externs to calls of checkAddSym,
5125         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
5126         pic16_pcode_verbose flag is set,
5127         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
5128         * src/pic16/pcoderegs.c: message about how many registers are saved
5129         will only be emitted if pic16_pcode_verbose flag is set,
5130
5131 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5132
5133         * src/ds390/ralloc.h,
5134         * src/ds390/ralloc.c (ds390_regWithIdx),
5135         * src/ds390/gen.c (emitcode),
5136         * src/ds390/main.h,
5137         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
5138         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5139         ds390operandCompare, getRegsRead, getRegsWritten,
5140         initializeAsmLineNode): customized instruction size calculation for
5141         ds390, started basis for some register optimizations
5142         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
5143         corresponding assembly output
5144         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
5145         missing push/pop of r0/r1. Optimized push/pops
5146
5147 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5148
5149         * src/mcs51/main.c (instructionSize): fixed ACALL size
5150         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
5151
5152 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
5153
5154         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
5155         the sorting of rlist with NULL elements
5156         * (print_idataType, print_idata): NEW to create idata sections
5157         * src/pic16/device.h: idataSymSet new variable
5158         * src/pic16/gen.c (genFunction): fixed some bugs in string
5159         comparing, improved the absolute section creation for ISRs,
5160         added FSR0L/FSR0H in registers that are saved in an ISR,
5161         * (genInline): fixed the processing of inline snippets,
5162         now they undergo no process by the peephole optimizer
5163         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
5164         are placed in idataSymSet,
5165         * (pic16emitStaticSeg): extern symbols are added in externs,
5166         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
5167         switching when aboslute variables are placed in access bank memory
5168         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
5169         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
5170         commented out with #if,
5171         * (pic16_packRegisters): reintroduce the check for CAST because some
5172         symbols are not correctly handled,
5173         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
5174         pCodeInstruction instead of pCode,
5175         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
5176         pCodeAsmDir definition,
5177         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
5178         directive, then the argument directive is emitted without the leading
5179         tab, hack for inline labels which must be in the first column,
5180         * (compareLabel,pic16_findNextInstruction),
5181         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
5182         * (insertBankSwitch): modified for the new pCodeAsmDir,
5183
5184 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5185         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
5186
5187         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
5188         instance,
5189         * (pushSide): commented out with #if,
5190         * (assignResultValue): fixed some typos in saving
5191         registers,
5192         * (genPcall): FIXED and sync'ed with genCall,
5193         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
5194         * (genNearPointerGet): fixed to handle some more cases,
5195         implementation scheme via table reads,
5196         * (genConstPointerGet): modified to access code memory correct,
5197         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
5198         and improved to handle some cases
5199         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
5200         instead of "RETLW" for init data
5201         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
5202         not IN_DIRSPACE, work around to reduce bank switching when aboslute
5203         variables are placed in access bank memory (<0x80 and >=0xf80),
5204         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
5205         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
5206         TBLWT_POSTDEC,TBLWT_PREINC
5207         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
5208         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
5209         directives
5210         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
5211         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
5212         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
5213         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
5214
5215 2004-02-29  Borut Razem <borut.razem AT siol.net>
5216
5217         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
5218         support/Util/findme.h, support/Util/system.h: enhance binary relative
5219         search for lib and include by using findProgramPath()
5220
5221 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5222
5223         * src/SDCCpeeph.h,
5224         * src/SDCCpeeph.c (pcDistance),
5225         * src/port.h,
5226         * src/mcs51/ralloc.h,
5227         * src/mcs51/ralloc.c (mcs51_regWithIdx),
5228         * src/mcs51/main.h,
5229         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
5230         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5231         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
5232         size calculation port specific, started basis for some register
5233         optimizations
5234         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
5235         missing push/pop of r0/r1. Optimized push/pops
5236         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
5237         * device/lib/_modsint.c (_modsint),
5238         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
5239         and stack version so regression tests pass
5240
5241 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
5242
5243         * src/Makefile.in (dep): include SLIBOBJS in dependency check
5244         * src/SDCCast.c (decorateType): catch another small optimization
5245         with '?' operator
5246         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
5247         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
5248         modified to finally use computeType() all over SDCC,
5249         see Feature Request #877103
5250         * src/SDCCval.h: cosmetic
5251         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
5252         valCompare(); regression tested in muldiv.c
5253         * support/regression/tests/muldiv.c (testMod): mod sign follows
5254         dividend only
5255
5256 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
5257
5258         * src/SDCCast.c (decorateType): fixed bug #902362
5259         * doc/INSTALL.txt: fixed install instructions for win32
5260
5261 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
5262
5263         * device/include/Makefile.in (install): fixed by replacing spaces
5264         by tabs
5265         * doc/README.txt,
5266         * doc/INSTALL.txt: updated for release
5267         * doc/sdccman.lyx: added warning for --xstack being buggy
5268
5269 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
5270
5271         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
5272         to eliminate build warnings.
5273         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
5274
5275 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
5276            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5277
5278         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
5279         removed -penable-stack, added comment for stack pragma, added
5280         warning for not initializing the stack/frame registers, removed
5281         comment at interrupts section
5282
5283         Stack is made permanent, there is no ability to disable stack usage.
5284         * src/pic16/device.h,
5285         * src/pic16/device.c: removed all references to USE_STACK macro,
5286         * src/pic16/device.c (pic16_dump_section): when no elements in
5287         rlist, free rlist before return,
5288         * (pic16_dump_int_registers): NEW, internal registers are a new set
5289         of general purpose registers reused by each function,
5290         * (checkAddReg): returns 1 if registers is added to set,
5291         * (pic16_groupRegistersInSection): when a registers is of type
5292         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
5293         * src/pic16/device.h: memRange and Assigned Memory are deleted,
5294         SRCASECMP macro is moved here from device.c
5295         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
5296         PO_PCLATU, PO_PRODL, PO_PRODH,
5297         * (pic16_pCodeOpType, genMinus,
5298         changed compares to "a" register, with AOP_ACC,
5299         * (pic16_genPlus): fixed some bugs and indented properly,
5300         * (pic16_addSign): changed size to size+offset in the MOVWF
5301         instruction,
5302         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
5303         multiply 8-bit operand by literal, result is 8-bit,
5304         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
5305         multiply 2 8-bit operand, result is 8-bit,
5306         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
5307         genUMult8X*_16,
5308         * src/pic16/gen.c: changed accUse to contain WREG only,
5309         * (pic16_emitcomment): renamed to pic16_emitpcomment,
5310         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
5311         true, do not use immediate addressing any more unless sym is a
5312         pointer in codespace,
5313         * (aopForRemat): do not use immediate addressing when symbol not in
5314         codespace and when symbol's address is requested,
5315         * (aopOp): for-loop in if(sym->accUse) is modified for the new
5316         accUse size (= 1),
5317         * (aopGet): added case for AOP_ACC and don't return "accumulator
5318         bug" but WREG instead,
5319         * (popGetTempReg): pushes contents of temporary register in stack,
5320         * (popReleaseTempReg): pops contents of temporary register from
5321         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
5322         * (pic16_popGet): separated case AOP_ACC to return register WREG
5323         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
5324         or PO_IMMEDIATE and initializes their instance/offset appropriately,
5325         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
5326         the use of immediate pointers to certain cases only.
5327
5328         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
5329         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
5330         * (assignResultValue, genCall, genRet): modified to use the new
5331         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
5332         genPcall is still broken,
5333         * (genFunction): added code to create 'A' type pBlocks when
5334         interrupt functions are generated, code not extensively tested yet,
5335         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
5336         * (genEndFunction): modified so ISRs pop stored registers from stack,
5337         * (genMultOneByte): cleanup,
5338         * (AccRsh): added flag andmask, to and result with appropriate mask,
5339         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
5340         * (genDataPointerGet): fixed and reenabled its use,
5341         * (genNearDataPointerGet): bugs fixed,
5342         * (genDataPointerSet): bugs fixed,
5343         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
5344         pic16_DumpSymbol, pic16_DumpOp,
5345         * src/pic16/genutils.h: function prototypes for the above functions,
5346         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
5347         pointers,
5348         * (pic16emitRegularMap): many many many improvements, but needs a
5349         major cleanup,
5350         * src/pic16/main.c: enable_stack in pic16_options is removed,
5351         * (_pic16_parseOptions): removed command line options -penable-stack,
5352         * (_process_pragma): emit stack symbol only when stack pragma is
5353         processed,
5354         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
5355         redirected to FSR0L/FSR0H pair,
5356         * (pic16_get_op, pic16_get_op2): modifications and improvements,
5357         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5358         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
5359         for immediates,
5360         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
5361         * (dumpPicOptype): NEW,
5362         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
5363         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
5364         with movff instruction,
5365         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
5366         added pic16_int_regs, some packRegsFor* functions are commented out,
5367         because produce errors,
5368         * src/pic16/NOTES: minor modifications
5369
5370 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5371
5372         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
5373         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
5374         --pack-iram.
5375         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
5376         * as/mcs51/lkaomf51.c: fixed bug #895763
5377
5378 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
5379
5380         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
5381
5382 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5383
5384         * doc/sdccman.lyx: added details about the HC08 storage classes and
5385         interrupts, fixed the register usage info for z80 & gbz80
5386
5387 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
5388
5389         * doc/sdccman.lyx: added more pic16 port documentation
5390         * device/include/pic16/: added header pic18fregs.h
5391
5392 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
5393
5394         * doc/sdccman.lyx: added Vangelis' contribution
5395
5396 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5397
5398         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
5399         extend to the next CALL or PCALL, not just to the next CALL.
5400
5401 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
5402
5403         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
5404
5405 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5406
5407         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
5408         bug #895752 and a better fix for bug #716790
5409
5410 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5411
5412         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
5413
5414 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5415
5416         * doc/sdccman.lyx: minor changes, minor changed
5417
5418 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
5419
5420         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
5421         which can't handle SDCC_NEWONEBYTEOPS,
5422         (geniCodeMultiply): removed conversion from mult to shift for pic14
5423         and pic16
5424
5425 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5426
5427         * src/hc08/gen.h,
5428         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
5429         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
5430         thus fixing bug #895406
5431
5432 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
5433
5434         * device/lib/_modsint.c,
5435         * device/lib/_modslong.c: sign follows divisor only
5436         * src/hc08/gen.c (genMultOneByte): if result size is 1,
5437         signs or signedness can be ignored
5438         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
5439         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
5440         added optimization for IFX,
5441         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
5442         arguments;
5443         reenabled optimization for IFX, which was removed on 2004-01-11
5444         * src/SDCCast.h: added return type IFX
5445         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
5446         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
5447         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
5448         SDCC_OLDONEBYTEOPS selects the old behaviour
5449         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
5450         changed again and commented promotion rule
5451         * src/SDCCval.c (valDiv): promotion no longer necessary
5452         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
5453         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
5454         rewritten
5455         * support/regression/tests/onebyte.c: added
5456
5457 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
5458
5459         * gen.c (genInline): reverted to old code for assemnling inline
5460         code because of bug reported James Chadd
5461
5462 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
5463
5464         * ralloc.h: missing declarations from previous patch,
5465         seems that patch for ralloc.h was never applied, fixed
5466
5467 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5468            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5469
5470         * pcode.c,
5471         * pcode.h,
5472         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
5473         indirect addressing. Marked FSR0 as deprecated
5474         * gen.c (pointerCode): commented out, not needed now
5475         (pic16_popGet2p): new MOVFF helper function
5476         (genGenPointerGet),
5477         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
5478         (shiftRLong): removed duplicate debugging info
5479
5480 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5481
5482         * src/ds390/gen.c (genNearPointerGet),
5483         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
5484         optimization with bits, but not bitfields.
5485         * src/ds390/ralloc.c (packRegisters),
5486         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
5487
5488 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
5489
5490         * src/SDCCcse.c (algebraicOpts): copy operands before modification
5491
5492 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5493
5494         * src/SDCCsymt.h,
5495         * src/SDCCicode.c (operandFromSymbol),
5496         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
5497         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
5498         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
5499         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
5500         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
5501         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
5502         bug #892038
5503         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
5504         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
5505         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
5506         * src/SDCCsymt.c (newSymbol),
5507         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5508         enumerator_list),
5509         * src/SDCCval.h,
5510         * src/SDCCval.c (newiList): fixed bug #885705
5511
5512 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5513
5514         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
5515         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
5516
5517 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5518
5519         * device/include/c8051f120.h,
5520         * device/include/c8051f300.h,
5521         * device/include/c8051f310.h: added/updated header files for Silicon
5522         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5523         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
5524         in new section Submitting patches
5525
5526 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5527
5528         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
5529         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5530         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5531         genGenPointerSet),
5532         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
5533         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5534         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5535         genGenPointerSet),
5536         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
5537         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5538         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5539         genGenPointerSet),
5540         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
5541         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5542         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5543         genGenPointerSet): fixed bug #892400
5544         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
5545         to eliminate build warnings.
5546         * src/SDCCast.c (processParms),
5547         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
5548         fixed bug 751859
5549         * support/valdiag/valdiag.py: added GCC to the list of defines active
5550         when compiling with gcc
5551
5552 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5553
5554         * support/Util/SDCCerr.h,
5555         * support/Util/SDCCerr.c,
5556         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
5557         with an incomplete type (fixed bug #883734)
5558         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
5559
5560 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5561
5562         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
5563
5564 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5565
5566         * src/SDCCast.c (decorateType),
5567         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
5568         function pointer implementation
5569         * support/regression/tests/funptrs.c: added tests to verify both forms
5570         of function pointers work correctly. Added tests to verify parameters
5571         are passed in the correct order.
5572
5573 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
5574
5575         * device.c (regCompare): registers are sorted by ascending
5576         address and increasing size,
5577         * main.c (_pic16_finaliseOptions): removed the declaration
5578         of compiler macro MCU. Now a macro of the format pic18fxxxx
5579         will be defined from the command line
5580
5581 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5582             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5583
5584         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
5585         PCOP_RLCF was overwritten!
5586         * gen.c (genSkip): commented out calls to pic16_emitcode,
5587         * (genCmpEQ): fixed "long" compares, only high word did get compared,
5588         * (genlshTwo),
5589         * (genRRC): added debugging info,
5590         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
5591         overwritten while shifting,
5592         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
5593         overwritten while shifting,
5594         * (AccLsh),
5595         * (AccRsh),
5596         * (shiftLLeftOrResult),
5597         * (shiftRLeftOrResult),
5598         * (shiftRLong),
5599         * (shiftLLong): Implemented with pic16_emitpcode
5600         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
5601         * (genLeftShift): Fixed bug, operand for shift by variable always
5602         was "and"ed with 0x0f,
5603         * (genLeftShiftLiteral),
5604         * (genrshTwo),
5605         * (genRightShiftLiteral): added debugging info,
5606         * (genrshFour): added comment,
5607         * (genRightShift): determined signedness from operand "left"
5608         instead of "result"
5609
5610 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5611
5612         * src/SDCCicode.c (geniCodeParms),
5613         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
5614         function pointers, fixed function pointer bugs #861242 and #861896
5615
5616 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5617
5618         * device/include/c8051f000.h,
5619         * device/include/c8051f120.h,
5620         * device/include/c8051f300.h: added header files for Silicon
5621         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5622
5623 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
5624
5625         * src/SDCCast.c (processParams): added new type flow and restructured
5626         (gatherAutoInit): added new type flow
5627         (addCast): cosmetic changes
5628         (getLeftResultType): added new type flow for array indices, patch
5629         provided by Stas, see FR #877103
5630         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
5631         array index patch by Stas
5632         * src/SDCCast.h: added prototype getResultTypeFromType()
5633         * src/SDCCval.h,
5634         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
5635         * src/pic/glue.c (pic14emitStaticSeg),
5636         * src/pic16/glue.c (pic16emitStaticSeg),
5637         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
5638         for initialization of symbols
5639         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
5640         * support/Util/SDCCerr.h:
5641         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
5642         * .version: bumped version number to 2.3.8
5643         * device/include/Makefile.in (install),
5644         * doc/Makefile (install): changed to 'rm `find ...`' construct to
5645         avoid warnings
5646
5647 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
5648
5649         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
5650         Slade Rich fixed an optimization bug
5651         * src/pic/pcodepeep.c,
5652         * src/pic/pcoderegs.c
5653         * doc/Makefile (install): added test for directory
5654
5655 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5656
5657         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
5658         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
5659         * src/pic/ralloc.c (getRegPtr, getRegGpr),
5660         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
5661         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
5662         * as/mcs51/asexpr.c (term),
5663         * as/hc08/asexpr.c (term): fixed bug #887146
5664
5665 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5666
5667         * src/z80/gen.c (genMult): handle single byte result product
5668         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
5669         DUMMY_READ_VOLATILE (fixed bug #886367)
5670
5671 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5672
5673         * support/regression/tests/libmullong.c: fixed logic, on little endian
5674         hosts we ended without a mullong_wrapper()
5675
5676 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5677
5678         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
5679         virus/worm forged address usage.
5680
5681 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5682
5683         Fixed promotion, it should be done on AST level:
5684         * src/SDCCast.c (addCast): added promotion to int
5685         (decorateType): updated call to upCast()
5686         * src/SDCCicode.c (geniCodeLeftShift): removed call to
5687         usualUnaryConversions()
5688
5689 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
5690
5691         * support/regression/tests/literalop.c (mulWrapper): Added a
5692         wrapper to remove integer overflow warnings.
5693
5694         * support/regression/tests/float_trans.c: Made work on host.
5695
5696         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
5697         location of sz80.
5698
5699         * support/regression/generate-cases.py (main): Changed from inline
5700         to a main method.
5701
5702         * doc/Makefile (install): Changed to depth first to get rid of
5703         missing directory install warning.
5704
5705         * as/Makefile (install-doc): Made work on Mac.
5706
5707 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
5708
5709         * src/SDCCast.c: added an additional type flow in decorateType() of
5710         opposite direction, see feature request #860006; it's enabled at runtime
5711         by setting the environment variable SDCC_NEWTYPEFLOW
5712         * src/SDCCast.h: changed prototype of decorateType()
5713         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
5714         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
5715         'char' to 'int' can be omitted, if both operands are 'unsigned char';
5716         see feature request #877103
5717         * src/SDCCval.c: updated call of decorateType()
5718         (valBitwise): fixed bug #882876
5719         (valMinus): added promotion
5720         (valLogicAndOr): result is unsigned
5721         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
5722         * src/SDCCsymt.c (computeType),
5723         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
5724         must not cause an unsigned operation
5725         * src/pic/glue (pic14emitRegularMap),
5726         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
5727
5728 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
5729
5730         * src/pic/pcode.c (PCodeID): commented out left over debug code
5731
5732 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
5733
5734         * support/valdiag/tests/overflow.c: added shift tests
5735         * src/pic/device.c,
5736         * src/pic/gen.c,
5737         * src/pic/gen.h,
5738         * src/pic/glue.c,
5739         * src/pic/main.c,
5740         * src/pic/pcode.c,
5741         * src/pic/pcode.h,
5742         * src/pic/pcodepeep.c,
5743         * src/pic/pcoderegs.c,
5744         * src/pic/ralloc.c,
5745         * src/pic/ralloc.h: applied patch from Slade Rich;
5746         added support for multiple code pages and multiple RAM banks on the
5747         PIC 14 port. The ASM files now no longer simply assume all the
5748         code / RAM are in the same page / bank. This means the linker can
5749         safely allocate code/RAM of separate ASM files to different pages/banks.
5750         * doc/sdccman.lyx: added Slade's tips
5751         * src/mcs51/peeph.def: fixed bug #880768
5752
5753 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5754
5755         * src/hc08/ralloc.c (rematStr): fixed bug #879282
5756         * src/SDCCast.c (decorateType): fixed bug #880197
5757
5758 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
5759
5760         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
5761         getopt.h.
5762
5763         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
5764         strtof is not part of C89 and isn't included with Mac OS X.
5765
5766 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5767
5768         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
5769         shiftL2Left2Result): fixed bug #879326
5770         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
5771         (genMultOneByte): fixed bug in signed vs unsigned multiplication
5772         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
5773         address fetch for clr instruction
5774         * device/lib/hc08/_mulint.c: created optimized assembly version
5775         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
5776
5777 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
5778
5779         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
5780         proposed in FR #877103
5781
5782 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
5783
5784         * src/SDCCval.c (cheapestVal): added missing checks
5785         * src/SDCCicode.c (usualBinaryConversions): fixed condition
5786         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
5787
5788 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
5789
5790         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
5791         equal operands
5792
5793 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
5794
5795         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
5796         loaded with the linker search paths (-L arguments) and the libraries
5797         to be linked with the current source (-l arguments). Changes
5798         currently will affect only the pic16 port.
5799         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
5800         include path the port specific paths and port specific libraries,
5801         * gplink command now contains the $3 argument,
5802         * src/pic16/device.h,
5803         * src/pic16/device.c,: structure PIC_device is made public and
5804         renamed to PIC16_device, the same for variable Pics which is renamed
5805         to Pics16. Updated all references to them.
5806         * src/pic16/glue.c (pic16glue): corrected bug with code
5807         initialization which bypassed the variable initializations block.
5808
5809         * device/lib/pic16/Makefile.rules: removed --penable-stack from
5810         COMPILE_FLAGS and added the --nostdinc option
5811
5812 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5813
5814         * device/include/mc68hc908jb8.h: Register defs for another member
5815         of the hc08 family. Contributed by Bjorn Bringert - thanks!
5816
5817 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
5818
5819         Documenting changes from previous commits.
5820         * configure.in (version 1.56),
5821         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
5822         when generating output files to configure the pic16 library,
5823         but now I've commented it out, since gputils aren't installed in the
5824         SF compile farm, so library won't compile
5825
5826         * device/lib/Makefile.in (version 1.56): initially I've added in
5827         target 'all' the prerequestive 'model-pic16' so it compiled the
5828         pic16 library, but now I've commented it out for the same reasons
5829         above,
5830         * added targets 'model-pic16' and 'objects-pic16' to compile the
5831         library
5832         * added target 'port-specific-objects-pic16' to handle the
5833         generated libraries and copy them into the build/ directory
5834         * added target 'clean-intermediate-pic16' to clean intermediate
5835         files into pic16 directory
5836         * in target 'installdirs' added line to create directory pic16 in
5837         the installation path
5838
5839         * device/include/Makefile.in (version 1.11): in target 'install'
5840         added lines to copy all header files to installation path,
5841         * in target 'installdirs' added line create directory for pic16
5842         headers in the installation path
5843
5844 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
5845
5846         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
5847          a function call
5848
5849 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
5850
5851         * configure,
5852         * device/lib/configure.in,
5853         * device/lib/configure: fixed for autoconf 2.57
5854
5855 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5856
5857         * src/z80/main.c (_parseOptions): fixed the portmode= command line
5858         option so that it actually works. Made it specific to the z80, since
5859         the gbz80 doesn't have these kinds of I/O ports.
5860
5861 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5862
5863         * device/include/z180.h,
5864         * device/lib/_memcpy.c,
5865         * device/lib/_memmove.c,
5866         * device/lib/_mulint.c,
5867         * device/lib/ser_ir.c,
5868         * device/lib/ser_ir_cts_rts.c,
5869         * device/lib/_strcmp.c,
5870         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
5871         * src/z80/main.c (_process_pragma): add support for pragmas bank and
5872         portmode; added deprecation warning for bank= and protmode= forms.
5873         Also, guard against buffer overflow.
5874         * src/z80/gen.c (aopGet): generate better code for sfr banked read
5875
5876 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5877
5878         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
5879         changed interrupt vector table generation to only emit declared vectors.
5880         * device/include/Makefile.in: added missing backslash
5881         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
5882
5883 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5884
5885         Mainly changes to support compilation of the device libraries
5886         * src/pic16/device.c: stack is allocated via symbol and not
5887         via literal number. The symbol is placed in the corresponding
5888         position of the data ram
5889         * (pic16_dump_section): relocatable and absolute uninitialized
5890         data are now emitted in sorted order to reduce section naming,
5891         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
5892         weren't marked as being in the access bank,
5893
5894 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5895
5896         Added portion of GNU PIC Library under the directory
5897         device/include/pic16 and device/lib/pic16. These files
5898         contain the declarations of SFRs for the PIC18Fxx2 devices.
5899         The directory is initialized via configure from toplevel.
5900
5901 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
5902
5903         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
5904         the spilllocations to be compared correctly
5905
5906 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5907
5908         * src/SDCCast.c (decorateType): fixed bug introduced today
5909
5910 2004-01-12  Borut Razem <borut.razem AT siol.net>
5911
5912         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
5913         doc/sdccman.lyx: upper case pragmas are deprecated
5914
5915 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5916
5917         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
5918         in simpler and even better code
5919
5920 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
5921
5922         * src/SDCCicode.c (operandOperation): fixed bug #874819
5923         * src/SDCCast.c (decorateType): fixed
5924         char foo (unsigned long ul) { return ul > 0; }
5925
5926 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5927
5928         * doc/sdccman.lyx: Moved and added some sections, small changes
5929         all over. Telling LaTeX to be less strict with word spacing
5930         to better keep the right margin. Changed some notes about
5931         maintainance of the ports in section 3.2.1 - is it OK like this?
5932
5933 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
5934
5935         SDCC source changes:
5936         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
5937         convilong): modified to inform the pic16 port that builtin functions
5938         are external
5939
5940         PIC16 PORT specific changes:
5941         * src/pic16/device.c pic16_dump_equates() added,
5942         processor registers declared internally by the port are emitted in
5943         the translation as equates,
5944         * src/pic16/gen.c: inline code is passed unprocessed to the
5945         translation,
5946         * (pic16_popGetLit2): fnuction modified to take second operand as
5947         pCodeOp pointer and not as literal,
5948         * (popRegFromIdx): prefixed with pic16_,
5949         * (pic16_popCombine2): modified to receive already allocated pCode
5950         operands,
5951         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
5952         * (genFunction): initializes local stack frame and pushes on stack
5953         all the registers used by this function,
5954         * (genEndFunction): restores all registers from stack and restores
5955         stack frame,
5956         * src/pic16/glue.c (pic16emitRegularMap): various changes and
5957         improvements,
5958         * (pic16glue): changed the program startup sequence,
5959         * added new dbName code 'A' for functions placed in absolute section
5960         * src/pic16/main.c: added function attribute _naked,
5961         * added pragma 'code' to place a fnuction at an absolute address,
5962         * added command line arguments --debug-ralloc and --pcode-verbose,
5963         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
5964         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
5965         * (pic16_newpCodeOpLit2): modified to take the second operand as
5966         pCodeOp pointer,
5967         * (pic16_printpBlock): modified to emit each function in a separate
5968         section,
5969         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
5970         UPPER for immediate operands,
5971         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
5972         instruction,
5973         * src/pic16/peeph.def: all peepholes with movff are commented out,
5974         because there is a problem in the pcode peep optimizer,
5975         * src/pic16/ralloc.c: the register allocator can now reuse local
5976         function symbols for another function. This saves register usage.
5977         * src/pic16/ralloc.h: added flag isLocal in structure regs,
5978
5979         Added file src/pic16/NOTES with information about program writing on
5980         the current port version.
5981
5982 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5983
5984         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
5985         and peephole 252 (array access)
5986
5987 2004-01-09  Borut Razem <borut.razem AT siol.net>
5988
5989         * src/SDCCmain.c : fixed #872250: -l command line defined library
5990           files are scanned before standard library files
5991
5992 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5993
5994         * src/SDCCast.c (decorateType): fixed bug #874046
5995
5996 2004-01-09  Borut Razem <borut.razem AT siol.net>
5997
5998         * support/scripts/sdcc.nsi: remove previous installation
5999
6000 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6001
6002         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
6003         bytes for last interrupt vector (mcs51)
6004         * sdcc.spec: fixed typo
6005
6006 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6007
6008         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
6009         gen51Code): more efficient parameter receive for --model-large
6010         ("bug" #845294)
6011
6012 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6013
6014         * src/ds390/main.c,
6015         * src/z80/main.c: added missed needLinkerScript flags (more than
6016         one port structure defined in these file)
6017         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
6018         bug #795325
6019
6020 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
6021
6022         * src/SDCCmain.c: removed various references to DEFAULT_PORT
6023         * src/port.h: added flag needLinkerScript in port->linker
6024         structure to inform whether to create a .lnk file or not,
6025         * src/avr/main.c,
6026         * src/ds390/main.c,
6027         * src/hc08/main.c,
6028         * src/mcs51/main.c,
6029         * src/pic/main.c,
6030         * src/pic16/main.c,
6031         * src/xa51/main.c,
6032         * src/z80/main.c: changed appropriately to configure
6033         needLinkerScript flag
6034         * src/pic/gen.c,
6035         * src/pic16/gen.c (genAddrOf): fixed bug #863624
6036         * src/pic/glue.c: added variable udata_section_name to
6037         override default uninitialized data segment definition for
6038         devices only with SHAREBANK memory (reported from Erik Epetrich)
6039         * (pic14emitOverlay): modified to emit a commented overlay segment
6040         directive when no overlay data exist
6041         * (picglue): modified to emit uninitialized data segment
6042         according to udata_section_name
6043         * src/pic/main.c (_pic14_parseOptions): added command line
6044         options --udata-section-name=[name] to override default
6045         udata definition name
6046         * modified _linkCmd and _asmCmd to include compiler passed
6047         arguments via -W option
6048         * src/pic16/main.c: added $l in _asmCmd, changed extension for
6049         object file from '.rel' to '.o' in port->linker structure,
6050         changed size of fptr from 2 to 3 in port structure
6051
6052 2004-01-07  Borut Razem <borut.razem AT siol.net>
6053
6054         * support/scripts/sdcc.nsi: update PATH
6055         * support/scripts/sdcc.ico: craeted
6056
6057 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
6058
6059         * device/include/Makefile.in: fix install
6060         * doc/Makefile: fix install
6061
6062 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6063
6064         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
6065         in bug #860505
6066         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
6067         how the function variable allocation summary is displayed; also
6068         include information about variables allocated to the overlay
6069         segment
6070
6071 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6072
6073         * as/mcs51/lkmain.c: Help about -Y option
6074         * as/mcs51/lkarea.c: Fixed gcc warnings
6075
6076 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6077
6078         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
6079         fixed warning
6080         * support/valdiag/tests/overflow.c: added
6081         * src/SDCCast.c (decorateType),
6082         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
6083         LEFT_OP (left shift)
6084
6085 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6086
6087         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
6088         (default behaviour).
6089
6090 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6091
6092         A python script to validate compiler diagnostic messages. It can be
6093         used to verify that sdcc complains about bad c source code and
6094         gives a good location of the error.
6095         * support/valdiag/Makefile,
6096         * support/valdiag/valdiag.py,
6097         * support/valdiag/tests/*
6098
6099 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6100
6101         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
6102         * src/SDCCsymt.c (newEnumType),
6103         * src/SDCCsymt.h
6104         * support/Util/SDCCerr.c,
6105         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
6106         enum related bugs.
6107         * support/regression/tests/enum.c: added test for enum values that
6108         require at least 2 bytes of storage.
6109
6110 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6111
6112         * src/common.h: added ifndef/define/endif macros
6113         around the header file.
6114         Bug reported from Jesus Calvino-Fraga
6115
6116 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6117
6118         * sdcc.spec: updated
6119         * device/include/Makefile.in: don't install CVS directories
6120         * device/lib/Makefile.in: added removal of CVS directories after install
6121         * doc/Makefile: fixed install, added local_icons
6122         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
6123         * src/mcs51/gen.c (genRightShift): fixed bug #870788
6124         * src/ds390/gen.c (genRightShift): fixed bug #870788
6125         * src/SDCCast.c (decorateType): fixed bug #870781
6126
6127 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6128
6129         PIC16 port related changes:
6130         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
6131         added variable stackPos,
6132
6133         * gen.c: genCall, assignResultValue: added support for
6134         pushing/retrieving function parameters to/from stack,
6135         genFunction,genEndFunction: setup stack frame for the
6136         generated function,
6137         genAddrOf: will be changed according to bug 863624
6138
6139         * added files genutils.c and genutils.h which contain gen*
6140         debugged and optimised functions extracted from gen.c
6141
6142         * glue.c: added variable 'externs' which holds extern symbols,
6143         pic16emitRegularMap: is modified to properly handle relocatable
6144          symbols under the new scheme,
6145         pic16createInterruptVect: is modified
6146         pic16printPublics: is modified to emit 'global' assembler directives,
6147         added pic16_printExterns to print extern symbols,
6148         pic16glue: initializes stack/frame pointer in the beginning of
6149         the assembly output. Temporary hack, will be corrected later,
6150         because gplink yet does not support stack and SDCC does not
6151         yet support a type of crt0.o object to create the final binary.
6152
6153         * Removed many lines that contain 8051 legacy code.
6154         * The code is finally placed under a 'code' directive.
6155         * Added port specific options.
6156
6157         * _process_pragma: simplified since now we do not need *special*
6158         include file to define SFR registers. But a separate header
6159         will be needed. This will be developed later.
6160         * _pic16_parseOptions: added, parses port specific options:
6161         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
6162         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
6163         --preplace-udata-with=
6164
6165         * _pic16_setDefaultOptions: modified to initialize section names,
6166         but hack is temporarly out of order since it needs improvement.
6167         * _pic16_genAssemblerPreamble: configuration words are emitted by
6168         their address instead of their name. This part is incomplete and
6169         supports only the 18Fxx2 devices. Other devices will emit an error
6170         during assembly since they do not contain the same set of config
6171         registers
6172         * _pic16_genIVT: is modified,
6173
6174         * pcode.c: added definitions for some hardware registers that are needed
6175         for stack support
6176         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
6177         All PCI entries are updated. Now LFSR is supported.
6178         * Removed pic16_pciTRIS is mentioned by mdubuc in source
6179         * added pic16_newpCodeOpLit2 to support instructions with
6180         two literal arguments
6181         * pic16_pCode2str: corrected code that emits assembler instructions
6182         with two literal operands and those that have an access bit modifier
6183         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
6184         this fixes a bug which caused some labels to be lost, when an
6185         assembler directive was added, i.e. banksel,
6186         * pic16_FixRegisterBanking: improved logic that causes the insertion
6187         of bank switching,
6188         * InlineFunction: functions that are called once, are not any more
6189         inlined. This can be a port option in the future,
6190
6191         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
6192
6193         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
6194         hold the corresponding uninitialized symbols,
6195         * pic16_allocProcessorRegister: registers have explicit marked the
6196         accessBank field,
6197         * pic16_allocInternalRegister: registers are explicit marked as
6198         not used,
6199         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
6200         processing list, so bit registers were lost,
6201         *
6202
6203         * ralloc.h: added field 'accessBank' and original symbol operand
6204         in register definition,
6205         * removed the field isMapped from register definition,
6206
6207         ** Several functions have been removed from various sources:
6208         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
6209         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
6210         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
6211         pic16_assignRelocatableRegisters
6212
6213         ** others have been introduced:
6214         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
6215         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
6216
6217 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
6218
6219         * support/scripts/inc2h.pl: changed definition of BIT_AT
6220         to emit 'sbit at' instead of 'bit at'. This was a request.
6221
6222         PIC16 port related preliminary changes:
6223         * gen.c: prefixed function popRegFromString with
6224         pic16_ and all references to it corrected
6225         * pcode.c: all pic16_pc_* hardware registers prefixed
6226         with underscore (_),
6227         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
6228         * ralloc.c: newReg(): when register is REG_SFR then
6229         set address to rIdx,
6230         pic16_allocProcessorRegister(): marks register wasUsed=0
6231         pic16_writeUsedRegs(): added a call to assign processor
6232         registers via pic16_assignFixedRegisters
6233
6234 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6235
6236         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
6237         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
6238         variables in unused register banks.  Also the SSEG is placed
6239         wherever there is enough space for it, and IDATA can be anywhere
6240         in internal RAM.  For now compile using -Wl-Y[stack_size].
6241         The mem file is different for this option as well, since it
6242         makes no sense of talking about DSEG lenght.
6243
6244 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
6245
6246         * src/SDCClrange.c: fixed bug 869095 that caused segfault
6247         in certain cases, e.g. when ROM assignment, patch provided
6248         from Albert den Haan.
6249
6250 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
6251
6252         Many signedness and type propagation fixes:
6253         * src/SDCCicode.c: made geniCodeCast() static
6254         replaced SPEC_ by IS_ (cosmetic)
6255         (operandOperation): fixed div and mod operation
6256         (usualBinaryConversions): added support for promotion of char
6257         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
6258         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
6259         (geniCodeAdd): an array index will stay unsigned, even if promoted
6260         from char to int
6261         (geniCodeArray): ditto
6262         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
6263         * src/SDCCsymt.c (computeType): added more support for char;
6264         promotion of char is selectable by promoteCharToInt, fixed signedness
6265         for all cases
6266         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6267         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6268         * src/SDCCval (val*): replaced signedness calculation by
6269         computeType()
6270         rearranged if-branches (cosmetic)
6271         (valShift): added warning W_SHIFT_CHANGED
6272         (valCompare): fixed problem with different types
6273         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
6274         * support/regression/tests/literalop.c: added many cases
6275         * support/regression/tests/ast_constant_folding.c: changed finally to
6276         'unsigned int'
6277         * .version: new year, new version: 2.3.7
6278         * src/SDCCmain.c (main): applied patch #866468
6279         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
6280         provided by Scott Bronson
6281         * doc/sdccman.lyx: updated documentation for sdcdb
6282         updated and added chapter tips
6283
6284 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6285
6286         * src/SDCCsymt.h: missing from yesterday's commits
6287
6288 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6289
6290         * src/SDCC.y (struct_or_union_specifier),
6291         * support/Util/SDCCerr.c,
6292         * support/Util/SDCCerr.h: verify that struct & union tags are used
6293         as declared.
6294
6295 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6296
6297         * src/SDCCglobl.h: missing from yesterday's commits
6298
6299 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6300
6301         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
6302         sft_attributes, struct_declaration, parameter_declaration,
6303         type_name, start_block, declaration_list),
6304         * src/SDCC.lex (check_type): support redefinition of typedef names
6305
6306 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6307
6308         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
6309         aligned xdata arrays. Erik helped me with the if clause.
6310
6311 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6312
6313         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
6314         warning
6315
6316 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6317
6318         * src/SDCCast.h,
6319         * src/SDCCast.c (newAst_),
6320         * src/SDCCicode.h,
6321         * src/SDCCicode.c (ast2iCode, newiCode),
6322         * src/SDCCglobl.h,
6323         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
6324         expr, statement, expression_statement, selection_statement,
6325         iteration_statement, expr_opt, jump_statement): foundation for tracking
6326         sequence points
6327         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
6328         point code too)
6329
6330 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6331
6332         * support/Util/SDCCerr.c,
6333         * src/SDCCast.h,
6334         * src/SDCCast.c (createCase, createDefault, decorateType),
6335         * src/SDCClabel.c (labelUnreach),
6336         * src/SDCC.y (labeled_statement, jump_statement): More improvements
6337         to error messages.
6338         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
6339         (with thanks to Stas Sergeev)
6340         * device/include/time.h,
6341         * device/lib/time.c (CheckTime): suppress unreachable code warning
6342
6343 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6344
6345         * src/SDCCast.c (createIvalCharPtr),
6346         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
6347         bug #753752)
6348         * support/regression/tests/nullstring.c: tests for these two bugs
6349
6350 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6351
6352         * support/Util/SDCCerr.h,
6353         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
6354         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
6355         about storage class and 'at' used inside struct or union
6356         * src/SDCCBBlock.c (iCodeFromeBBlock),
6357         * src/SDCCcse.c (ifxOptimize),
6358         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
6359         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
6360         printIval, emitStaticSeg, emitOverlay),
6361         * src/SDCClabel.c (deleteIfx),
6362         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
6363         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
6364         gatherAutoInit, processParms),
6365         * support/Util/SDCCerr.h,
6366         * support/Util/SDCCerr.c (werrorfl): Support for better error location
6367         reporting for post-parse errors.
6368
6369 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6370
6371         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
6372         implicit casts via union; they don't work on big endian systems
6373         (possible fix for bug #861138)
6374
6375 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6376
6377         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
6378         * src/mcs51/main.c: fixed the fix for bug #737001
6379
6380 2003-12-15  Borut Razem <borut.razem AT siol.net>
6381
6382         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
6383
6384 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6385
6386         * support/makebin/makebin.c: put output in binary mode
6387
6388 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6389
6390         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
6391         xdata and data memory on startup. Set the environment variable
6392         SDCC_NOGENRAMCLEAR to disable this.
6393         * src/mcs51/peephole.def,
6394         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
6395         (allows non-interrupt and interrupt code to safely compete for a resource
6396         without the non-interrupt code having to disable interrupts)
6397
6398 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6399
6400         * src/SDCCicode.c (geniCodeAdd),
6401         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
6402         with valFromType if type might be a pointer and host is big endian).
6403         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
6404         types, not just integer types.
6405         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
6406         multiply defined with mismatching "at" address.
6407
6408 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6409
6410         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
6411         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
6412         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
6413         with embedded nulls (fixed bug #753752)
6414
6415 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6416
6417         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
6418         Apparently this did not see much testing (endless loop)
6419
6420 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6421
6422         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
6423
6424 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6425
6426         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
6427         gracefully handle NULL memmap pointers
6428
6429 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6430
6431         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
6432         instead of deleting the iCode when an operand is volatile
6433         * src/z80/gen.c (genDummyRead),
6434         * src/mcs51/gen.c (genDummyRead),
6435         * src/ds390/gen.c (genDummyRead),
6436         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
6437         not just IC_RIGHT
6438         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
6439         * src/SDCC.y: fixed bug #850420
6440
6441 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6442
6443         Applied z80 i/o port patch from Peter Townson and fixed some operators
6444         to better handle operands in A register.
6445         * device/include/z180.h
6446         * src/SDCC.y
6447         * src/SDCCglue.c
6448         * src/z80/gen.c
6449         * src/z80/gen.h
6450         * src/z80/main.c
6451         * src/z80/peeph-z80.def
6452         * src/z80/peeph.def
6453         * src/z80/z80.h
6454
6455 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6456
6457         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
6458
6459 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6460
6461         * device/lib/hc08/_mullong.c: Removed extra #endif
6462
6463 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6464
6465         * sim/ucsim/hc08.src/inst.cc,
6466         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
6467         carries from x to h
6468         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
6469         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
6470         * device/include/stdarg.h: fixed varargs for hc08
6471         * device/lib/Makefile.in,
6472         * device/lib/hc08/Makefile,
6473         * device/lib/hc08/_mulint.c,
6474         * device/lib/hc08/_mullong.c: fixed some endian problems
6475
6476 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6477
6478         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
6479         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
6480         * device/lib/_gptrget.c,
6481         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
6482
6483 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6484
6485         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
6486         * src/SDCCast.c (astErrors): fixed bug #846007
6487         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
6488
6489 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6490
6491         * src/SDCCast.c (decorateType): disabled a transformation I added in
6492         revision 1.188 (access to fields of a structure at an absolute address);
6493         it breaks with bitfields, extern declarations, and gcse analysis.
6494         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
6495         could be assigned through a pointer, so don't complain.
6496         * src/SDCCast.c (astErrors),
6497         * src/SDCCast.h,
6498         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
6499
6500 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
6501
6502         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
6503         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
6504         output of __config directives, since gpasm now supports them
6505         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
6506         pre-processor macro, i.e. -DMCU=p18f452
6507         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
6508         and modified to handle 'cast' icode similarly to '=' icode
6509         * src/pic16/device.h (typedef struct PIC_device): added field
6510         'extMIface' to indicate that chip has external memory interface
6511         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
6512         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
6513         18F8720
6514
6515 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6516
6517         * src/SDCC.y (pointer): fixed bug #846006
6518         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
6519         * src/SDCCast.c (decorateType): fixed bug #846009
6520         * src/ds390/peeph.def,
6521         * src/ds390/gen.c (genAnd, genOr),
6522         * src/mcs51/peeph.def,
6523         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
6524
6525 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6526
6527         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
6528         * src/SDCCdflow.c
6529         * src/SDCCcse.c
6530         * src/SDCCcse.h
6531         * src/SDCCBBlock.h
6532         * src/SDCCBBlock.c
6533
6534 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
6535
6536         fixed bug #845089
6537         * src/SDCCbitv.h,
6538         * src/SDCCbitv.c: added function to free a bitvector
6539         * src/SDCClrange.h,
6540         * src/SDCClrange.c: added function to recompute the liveranges
6541         * src/avr/ralloc.c,
6542         * src/ds390/ralloc.c,
6543         * src/hc08/ralloc.c,
6544         * src/mcs51/ralloc.c,
6545         * src/pic/ralloc.c,
6546         * src/pic16/ralloc.c,
6547         * src/xa51/ralloc.c,
6548         * src/z80/ralloc.c: recompute the liveranges after register packing
6549
6550 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
6551
6552         * src/SDCCloop.c (newInduction): fixed bug #845630
6553
6554 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6555
6556         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
6557         inadvertantly left behind from my 2003-11-12 change
6558
6559 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6560
6561         Updated headers I neglected to commit yesterday.
6562         * src/SDCClrange.h,
6563         * src/SDCCicode.h
6564
6565 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6566
6567         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
6568         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
6569         * src/SDCCopt.c (eBBlockFromiCode),
6570         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
6571         the creation of the key hash table from the sequencing so it can be used
6572         earlier (for some GCSE bug fixes still pending)
6573
6574 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6575
6576         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
6577         * support/regression/tests/addsub.c: testing genPlus shortcut
6578
6579 2003-11-15  Borut Razem <borut.razem AT siol.net>
6580
6581         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
6582
6583 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6584
6585         * src/SDCCcse.c (cseBBlock): fixed bug #527779
6586         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
6587         ordering is immaterial.
6588         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
6589
6590 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6591
6592         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
6593         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
6594         (SIGSEV) of bug #840381
6595         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
6596         unlink new file before rename if new and old filenames are the same)
6597
6598 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6599
6600         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
6601         uninitialized variables) for the mcs51. Set environment variable
6602         SDCC_GENRAMCLEAR to test.
6603         xdata initialization slightly shorter
6604
6605 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6606
6607         * src/SDCCsymt.h,
6608         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
6609         #838241 & 780691 (basicly the same bug)
6610         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
6611         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
6612
6613 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
6614
6615         * src/SDCCmain.c (linkEdit): "fix" #834252
6616
6617 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6618
6619         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
6620         * src/SDCCast.h,
6621         * src/SDCC.y: fixed bug #819403
6622
6623 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6624
6625         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
6626         the reentrant attribute.
6627         * src/hc08/gen.c (genPackBits): added missing stack readjustment
6628         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
6629         simulation
6630         * src/SDCCast.c (decorateType): fixed bug with storage class not being
6631         updated during pointer dereference; f.e. ~(((char *)1)*) was being
6632         erroneously reduced to a literal.
6633         * src/hc08/ralloc.c (packRegisters, rematStr),
6634         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
6635         some cases
6636
6637 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6638
6639         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
6640         * doc/sdccman.lyx: changed from 'article' to 'book'
6641         * doc/Makefile: readded test_suite_spec and cdbfileformat
6642
6643 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
6644
6645         * device/include/stdlib.h: include malloc.h to comply with ANSI
6646         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
6647
6648 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6649
6650         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
6651         * doc/clean.mk: also remove *.out files
6652         * doc/sdccman.lyx: some additions, larger top/bottom margins
6653
6654 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6655
6656         * src/SDCC.y: fixed bug #837365
6657         * support/regression/tests/bitopcse.c
6658         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
6659         a symbol (might be valop instead)
6660         * device/lib/Makefile.in: added errno.c to HC08SOURCES
6661         * device/lib/clean.mk: added hc08 to the cleaning list
6662
6663 2003-11-04  Borut Razem <borut.razem AT siol.net>
6664
6665         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
6666           made 2003-11-04
6667         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6668           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
6669           malloc is declared in standard stdlib.h
6670
6671 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6672
6673         * device/lib/hc08/Makefile: need to clean .rel not .o files
6674         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
6675
6676 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6677
6678         * src/port.h,
6679         * src/hc08/main.c,
6680         * src/mcs51/main.c,
6681         * src/ds390/main.c,
6682         * src/z80/main.c,
6683         * src/avr/main.c,
6684         * src/pic/main.c,
6685         * src/pic16/main.c,
6686         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
6687         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
6688         tests (which uses the port's oclsExpense function)
6689         * src/SDCC.y,
6690         * src/SDCCast.c,
6691         * src/SDCCicode.c,
6692         * src/hc08/gen.c,
6693         * src/ds390/gen.c,
6694         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
6695
6696 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6697
6698         * src/SDCCcse.c (ifxOptimize),
6699         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
6700         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
6701         deleting the IFX iCode.
6702         * src/hc08/ralloc.c: reduced unneeded slocs
6703         * src/hc08/gen.c: fixed bug in asmopToBoolean
6704
6705 2003-11-04  Borut Razem <borut.razem AT siol.net>
6706
6707         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
6708           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6709           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
6710           transferred to configure
6711
6712 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
6713
6714         Use headers defined in the C[++] standards:
6715         * sim/ucsim/gui.src/serio.src/fileio.cc
6716         * sim/ucsim/gui.src/serio.src/frontend.cc
6717         * sim/ucsim/gui.src/serio.src/main.cc
6718         * sim/ucsim/gui.src/serio.src/posix_signal.cc
6719         * support/Util/NewAlloc.c
6720         * as/hc08/lklibr.c
6721         * as/mcs51/lklibr.c
6722         * as/z80/aslist.c
6723         * as/z80/assym.c
6724
6725 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6726
6727         * Added MSVC projects for hc08 assembler and linker:
6728         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
6729         /as/hc08/link_hc08.dsp
6730
6731 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
6732
6733         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
6734
6735 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
6736
6737         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
6738
6739 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6740
6741         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
6742
6743 2003-10-31  Borut Razem <borut.razem AT siol.net>
6744
6745         * support/cpp2/cpplib.h,
6746           support/cpp2/cpplib.c,
6747           support/cpp2/cpplex.c,
6748           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
6749           to switch _asm block preprocessing on / off. Default is
6750           #pragma preproc_asm +
6751
6752 2003-10-31  Borut Razem <borut.razem AT siol.net>
6753
6754         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
6755           when outputting comment blocks (when executed with -C option) and
6756           _asm (SDCPP specific) blocks
6757
6758 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6759
6760         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
6761
6762 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
6763
6764         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
6765
6766 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
6767
6768         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
6769         * src/SDCCast.c (decorateType): fixed bug #832664
6770
6771 2003-10-31  Borut Razem <borut.razem AT siol.net>
6772
6773         * support\cpp2\cpplex.c: fixed for SDCPP:
6774           comments(when executed with -C option) and _asm blocks
6775           were included even if they where in skipped #if block.
6776           Applied solution from GCC cpp 3.3.2
6777
6778 2003-10-31  Borut Razem <borut.razem AT siol.net>
6779
6780         * src/SDCC.lex: sdcc now understands both formats:
6781           '# <line_number> <file_name>' and
6782           '#line <line_number> <file_name>'
6783         * support/cpp2/cppmain.c: sdcpp now generates the standard
6784           '# <line_number> <file_name>' instead of former
6785           '#line <line_number> <file_name>'
6786
6787 2003-10-30  Borut Razem <borut.razem AT siol.net>
6788
6789         * support/cpp2/cpphash.h,
6790         * support/cpp2/cpplib.h
6791         * support/cpp2/cpplex.c,
6792         * support/cpp2/cppmain.c,
6793         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
6794
6795 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6796
6797         Fixed a number of problems revealed by bug #827883.
6798         * src/SDCCloop.c (loopInvariants): Spill location of the
6799         result operand should be recomputed if extracted from
6800         a loop. Also, don't extract assignments of an iTemp
6801         from a literal.
6802         * src/SDCCast.c (isConformingBody): loop reversal should
6803         not occur if the control variable is involved with a
6804         relational operator.
6805
6806 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
6807
6808         * .version: bumped to 2.3.6 to reflect the big improvements
6809         made by Erik and Klaus. Thanks!
6810
6811 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
6812
6813         Replaced the livrange code.
6814         * src/SDCClrange.c: added new LR code
6815         * src/SDCCloop.c,
6816         * src/SDCCBBlock.h: removed remainig parts from old LR code
6817         * src/ds390/ralloc.c,
6818         * src/ds390/gen.c: minor fixes to make it work with new code
6819
6820 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6821
6822         * as/hc08/asm.h,
6823         * as/hc08/lkrloc.c,
6824         * src/hc08/gen.c,
6825         * src/hc08/ralloc.c: Fix various warnings related to the hc08
6826         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
6827         (tweaked fix for bug #818696)
6828
6829 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6830
6831         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
6832
6833 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6834
6835         * src/SDCCmain.c,
6836         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
6837         * src/mcs51/gen.c (gencjneshort),
6838         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
6839         more efficient (per Scott Bronson's suggestion)
6840
6841 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6842
6843         Extended the semantics of the critical keyword to include
6844         individual statements. See RFE #827755 and #799831
6845         * src/SDCC.y
6846         * src/SDCCicode.c
6847         * src/SDCCopt.c
6848         * src/SDCCast.c
6849         * support/Util/SDCCerr.c
6850         * support/Util/SDCCerr.h
6851         * src/mcs51/gen.c
6852         * src/ds390/gen.c
6853         * src/hc08/gen.c
6854
6855 2003-10-19  Borut Razem <borut.razem AT siol.net>
6856
6857         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
6858
6859 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6860
6861         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
6862         Fixed bug #818696
6863         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
6864         and predecrement operand is displayed
6865
6866 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6867
6868         * src/SDCCval.c (valMinus): fixed bug #826041
6869
6870 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6871
6872         Some hc08 related updates that I missed earlier
6873         * sim/ucsim/stypes.h
6874         * support/regression/ports/hc08/spec.mk
6875
6876 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6877
6878         New target "hc08" for the Motorola 68hc08 family of micros
6879
6880         * configure
6881         * configure.in
6882         * Makefile
6883         * src/hc08/*
6884         * src/SDCCmain.c
6885         * src/port.h
6886         * sim/ucsim/hc08.src/*
6887         * sim/ucsim/configure.in
6888         * src/ucsim/configure
6889         * sim/ucsim/packages_in.mk
6890         * as/hc08/*
6891         * as/Makefile
6892         * device/include/mc68hc908qy.h
6893         * device/lib/hc08/*
6894         * device/lib/Makefile.in
6895         * support/regression/ports/hc08/*
6896         * support/regression/Makefile
6897
6898 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6899
6900         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
6901         regression test
6902         * src/ds390/gen.c (genCast): fixed bug #821957
6903
6904 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6905
6906         * device/lib/logf.c: "fixed" overlay bug
6907         * support/regression/ports/host/spec.mk: added m library
6908         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
6909         * support/regression/tests/float_trans: added (for Eric)
6910
6911 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
6912
6913         * src/mcs51/gen.c (genCpl): fixed bug
6914         http://sf.net/mailarchive/message.php?msg_id=6263915
6915
6916 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
6917
6918         * src/SDCCast.c (decorateType): added extended constant folding
6919         * src/SDCCsymt.c (computeType): cleanup
6920         * src/SDCCval.c (valShift): minor optimization
6921         * support/regression/tests/ast_constant_folding.c: added
6922
6923 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6924
6925         * src/SDCCmain.c: removed some unintended changes
6926
6927 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6928
6929         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
6930         * src/z80/gen.c: fixed part of bug #817589
6931         * src/SDCCsymt.c (checkFunction): fixed bug #817895
6932
6933 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
6934
6935         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
6936         * src/SDCCcflow.c
6937         * src/SDCCcse.c
6938         * src/SDCCdflow.c
6939         * src/SDCClabel.c
6940         * src/SDCClrange.c
6941         * src/SDCCmem.c
6942         * src/SDCCopt.c
6943         * src/SDCCpeeph.c
6944         * src/SDCCset.c
6945         * src/avr/ralloc.c
6946         * src/ds390/ralloc.c
6947         * src/izt/ralloc.c
6948         * src/mcs51/ralloc.c
6949         * src/pic/ralloc.c
6950         * src/pic16/ralloc.c
6951         * src/xa51/ralloc.c
6952         * src/z80/ralloc.c
6953         * src/z80/gen.c: removed unused label "release:"
6954
6955 2003-10-06  Borut Razem <borut.razem AT siol.net>
6956
6957         * src/SDCC.lex: removed definition of unused variables
6958           save_optimize and save_options
6959
6960 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
6961
6962         * clean.mk: removed '=' in "-maxdepth=1"
6963         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
6964         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
6965
6966 2003-10-06  Borut Razem <borut.razem AT siol.net>
6967
6968         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
6969           my_unput() replaced by unput()
6970
6971 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
6972
6973         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
6974         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
6975         type-punned pointer will break strict-aliasing rules"
6976         Old LR behaviour is again default; Klaus' LR can be choosen by
6977         defining the environment variable LRKLAUS
6978         * src/SDCCBBlock.h
6979         * src/SDCCloop.c
6980         * src/SDCClrange.c
6981         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
6982         * clean.mk: fixed removal of files in bin/CVS/
6983         * device/lib/clean.mk: fixed removal of directories small and large
6984         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
6985         * src/SDCCicode.c,
6986         * src/SDCCval.c: removed superflous test for pedantic
6987
6988 2003-10-05  Borut Razem <borut.razem AT siol.net>
6989
6990         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
6991           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
6992           message "unmatched #pragma SAVE and #pragma RESTORE"
6993
6994 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6995
6996         * doc/sdccman.lyx: various additions and updates (interrupts, inline
6997           assembly, critical functions, atomic, nojtbound)
6998
6999 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
7000
7001         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
7002         * src/SDCCBBlock.h
7003         * src/SDCCloop.c
7004         * src/SDCCloop.h
7005         * src/SDCClrange.c
7006
7007 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7008
7009         * src/z80/gen.h,
7010         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7011         * src/mcs51/gen.h
7012         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7013         * src/ds390/gen.h
7014         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7015         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
7016         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
7017
7018 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7019
7020         * src/z80/gen.c (genRet): fixed bug #524753
7021         * src/z80/gen.c (genCast): fixed internal error on cast from
7022         pointer to long
7023         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
7024         fix for bug #477835 to the z80
7025         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
7026         for tracking iCodes in the peephole optimizer for z80
7027
7028 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7029
7030         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
7031         the other part of bug #814548
7032         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
7033
7034 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
7035
7036         * src/SDCCcse.c: fixed part of bug #814548
7037
7038 2003-09-28  Borut Razem <borut.razem AT siol.net>
7039
7040         * src/asm.c: rewrite of printILine() to use temporary file instead
7041           a pipe
7042         * src/xa51/main.c: commented out declaration of int rewinds
7043
7044 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7045
7046         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
7047
7048 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7049
7050         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
7051         * src/asm.c (printILine): Fixed bug #811015
7052
7053 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7054
7055         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
7056         freeing.
7057
7058 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7059
7060         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
7061         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
7062         to correctly handle general case of AOP_PAIRPTR
7063         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
7064
7065 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7066
7067         * src/mcs51/ralloc.c (fillGaps),
7068         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
7069         register positioning bug)
7070
7071 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
7072
7073         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
7074
7075 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7076
7077         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
7078         genCodePointerGet, genGenPointerGet, genFarPointerSet,
7079         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
7080         (ralloc doesn't intentionally do this now, but perhaps later)
7081         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
7082         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
7083         register positioning bugs (Fixed bug #762602 and #795325)
7084         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
7085         (Fixed bug #808779)
7086         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
7087         lines that --i-code-in-asm generates
7088
7089 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7090
7091         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
7092         trying to fclose a FILE* that was already closed.
7093
7094 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7095
7096         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
7097         of const struct should be treated as if const themselves)
7098
7099 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
7100
7101         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
7102
7103 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7104
7105         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
7106         Unix (/n) and DOS (/r/n) line terminations.
7107
7108 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7109
7110         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
7111         bug #613775
7112
7113 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7114
7115         * src/mcs51/gen.c (genFunction, genEndFunction),
7116         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
7117         and restore of EA so that stack offsets to parameters are
7118         correct when using both critical and reentrant/stack-auto.
7119         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
7120         size (can be triggered in error if sloc is shared between
7121         different sized objects)
7122         * device/include/float.h: fixed macros to explicitly use
7123         unsigned long where needed
7124
7125 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
7126
7127         Feature req. 799831: added code to allow nesting of critical functions
7128         * src/mcs51/gen.c (genFunction, genEndFunction)
7129         * src/ds390/gen.c (genFunction, genEndFunction)
7130
7131 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7132
7133         * src/SDCCsymt.c (sclsFromPtr),
7134         * src/SDCCsymt.h,
7135         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
7136         support for standard C idiom of memory mapped variables; for
7137         example, *((xdata int*)0x1234) = 1 is now internally equivalent
7138         to xdata int at 0x1234 tempvar = 1.
7139         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
7140         provided by Akiya ISHIDA
7141
7142 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
7143
7144         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
7145         * src/SDCCval.c (constVal): added reduction from int to char
7146         * src/SDCCval.c (valMult, valDiv): fixed sign handling
7147         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
7148         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
7149         to ignore the sign
7150         * support/regression/tests/shifts.c: fixed
7151
7152 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7153
7154         * src/z80/gen.c (genXor): Fixed bug #805445
7155
7156 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7157
7158         Fixed bug #621531 (const & volatile confusion in the type chain).
7159         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
7160         refer to the const or volatile state of the pointer itself.
7161
7162         * src/SDCCast.c
7163         * src/SDCCglue.c
7164         * src/SDCCicode.c
7165         * src/SDCCsymt.c
7166         * src/SDCCval.c
7167         * src/SDCC.y
7168         * src/SDCCsymt.h
7169         * src/pic/gen.c
7170         * src/pic/ralloc.c
7171         * src/pic16/gen.c
7172         * src/pic16/ralloc.c
7173         * support/regression/tests/const.c
7174
7175 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7176
7177         When checking for duplicated modules, use absolute paths
7178         instead of relative paths.  Files changed:
7179
7180         * as/mcs51/lklib.c
7181         * link/z80/lklib.c
7182
7183 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7184
7185         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
7186
7187 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7188
7189         * device/include/string.h: added size_t typedef, changed
7190         prototypes to use size_t, eliminated separate reentrant and
7191         non-reentrant declarations, added _memmove declaration
7192         * device/lib/_memcpy.c: changed to use size_t instead of int,
7193         changed /4 to >>2 to avoid division library call
7194         * device/lib/_memcmp.c,
7195         * device/lib/_memset.c,
7196         * device/lib/_strncat.c,
7197         * device/lib/_strncpy.c,
7198         * device/lib/_strncmp.c: changed to use size_t instead of int
7199         * device/lib/_memmove.c: new file (fixed bug #772294)
7200         * device/lib/Makefile.in: added _memmove.c
7201         * device/lib/z80/asm_strings.s: fixed bug #772290
7202         * support/regression/tests/bitfields.c: attempt to fix host assertion
7203         failure on amd64-unknown-linux2.2
7204
7205 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7206
7207         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
7208         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
7209         * as/z80/asmain.c (main): fixed bug #801766
7210
7211 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
7212
7213         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
7214         compilers
7215
7216 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7217
7218         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
7219         reported in bug #800609
7220
7221 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
7222
7223         * Top header beautifications in src/pic16 directory:
7224           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
7225           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
7226           pcoderegs.h, ralloc.c, ralloc.h
7227         * main.c: added top header and GPL license notice
7228         * pcode.c: fixed the if-conditional warning
7229
7230 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
7231
7232         * device/lib/_mullong.c: replaced int by short for gcc
7233
7234 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7235
7236         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
7237         and JUMPTABLE iCodes properly now (worked by accident before)
7238         * src/mcs51/gen.c (leftRightUseAcc),
7239         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
7240         iCode properly now. Use getSize instead of nRegs since a & b
7241         aren't part of the nRegs tally.
7242
7243 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
7244
7245         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
7246         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
7247           before instructions that use the _STATUS register
7248
7249 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
7250
7251         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
7252         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
7253         fetching of the pointer
7254         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
7255         copied from genNearPointerSet()
7256         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
7257         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
7258         If they pop r0/r1 they must be called in the opposite order than aopOp().
7259         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
7260         (resp. --stack-auto), prepared for --xstack
7261
7262 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7263
7264         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
7265
7266 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
7267
7268         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
7269         these ports have their own __sdcc_external_start()
7270
7271 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
7272
7273         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7274         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
7275         type for bits was changed. It resulted in bit variables becoming
7276         global, which is not permitted in PIC 14 assembly output.
7277
7278 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7279
7280         * doc/sdccman.lyx: various additions and updates. Rearranged sections
7281
7282 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7283
7284         Z80 and MCS51 linkers complaint if a public symbol is defined
7285         in more than one library module:
7286
7287         * as/mcs51/lklib.c
7288         * link/z80/lklib.c
7289         * as/mcs51/Makefile.in
7290
7291 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7292
7293         A few small changes that speed up the peephole optimizer.
7294
7295         * src/SDCCpeeph.c
7296
7297 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7298
7299         Try to make the peephole optimizer smarter by maintaining
7300         an association between the assembly source code and the
7301         iCodes that originated them. Put this information to use
7302         with a new peephole rule condition "notVolatile" so that
7303         the rules can be aggressive yet still safe.
7304
7305         * src/SDCCpeeph.c
7306         * src/SDCCpeeph.h
7307         * src/mcs51/gen.c
7308         * src/mcs51/peeph.def
7309
7310 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7311
7312         Fixed bug #741761
7313
7314         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
7315         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
7316         if the left or right operand symbols have the accuse flag set.
7317
7318 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7319
7320         Changed the type of the result of the ! (NOT) operator to char;
7321         previously it returned the same type as the source. This allows
7322         us to eliminate all the genFloatNot functions (all of its target
7323         implementations were very buggy) since !float can use the same
7324         code as !long now.
7325
7326         * src/SDCCicode.c (ast2iCode): ! returns char
7327         * src/mcs51/gen.c (genNot, genNotFloat),
7328         * src/ds390/gen.c (genNot, genNotFloat),
7329         * src/z80/gen.c (genNot, genNotFloat),
7330         * src/pic/gen.c (genNot, genNotFloat),
7331         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
7332
7333 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
7334
7335         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7336         1. Interrupt would not compile properly. Ensure PCLATH register is saved
7337            during interrupts. Ensure WSAVE is located at a shared bank address.
7338         2. Fixed page selection in some places
7339         3. Fixed BTFSS/C to where necessary use registers directly and not simply
7340            the registers name strings.
7341         4. Fixed "signed / unsigned compare" compiler warnings.
7342         5. The PIC port manages its own allocation of the general purpose
7343            registers, but makes no attempt to reuse them. As a result when
7344            compiling it soon runs out of general purpose registers. Some
7345            additional code was added to the files pcode.c and device.c to walk
7346            through the function call tree and rename the registers so that they
7347            get reused.
7348
7349         * src/pic/device.c
7350         * src/pic/gen.c
7351         * src/pic/glue.c
7352         * src/pic/pcode.c
7353         * src/pic/pcode.h
7354         * src/pic/ralloc.c
7355         * src/pic/ralloc.h
7356         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
7357         genPlus() & genMinus() when the result is the same as left or right
7358
7359 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7360
7361         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
7362
7363 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7364
7365         Made bitfield a distinct type from bit so that bitfields
7366         convert as per ANSI C and bits retain their traditional
7367         boolean style behaviour. Implemented bitfield support in
7368         the z80 port.
7369
7370         * src/SDCCsymt.h,
7371         * src/SDCCsymt.c,
7372         * src/SDCCast.c,
7373         * src/cdbFile.c,
7374         * src/mcs51/gen.c,
7375         * src/ds390/gen.c: bit v bitfield split
7376         * src/z80/gen.c: New support for bitfields
7377         * support/regression/tests/bitfields.c: reenabled z80,
7378         added more tests
7379
7380 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7381
7382         Rules 246.x, 247.x relate to bitfields, the others speed up
7383         access to xdata mapped I/O devices.
7384
7385         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
7386
7387 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7388
7389         Cleaned up genPackBits and genUnpackBits and added two helper
7390         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
7391         for literal assignments in genPackBits (thanks to Frieder for
7392         reminding me).
7393
7394         * src/mcs51/gen.c
7395         * src/ds390/gen.c
7396
7397 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7398
7399         Fixed bug #748310 (pointer to function type mishandled when the
7400         function name is omitted). Also fixed a SIGSEGV when a function
7401         attribute (reentrant, etc) is used on a non-function or on a
7402         function but misplaced before the parameter list.
7403
7404         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
7405         bug #748310
7406         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
7407         * support/Util/SDCCerr.h,
7408         * support/Util/SDCCerr.c: Added func attr misuse error msg
7409
7410 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7411
7412         Fixed bug #787649 by anonymous
7413         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
7414         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
7415
7416 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7417
7418         Fixed numerous bitfield problems.
7419
7420         * src/SDCC.y: More bitfield related error checking
7421         * src/SDCCsymt.h,
7422         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
7423         * support/Util/SDCCerr.h,
7424         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
7425         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7426         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7427         * support/regression/tests/bitfields.c: tests added
7428
7429 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7430
7431         Made the constant following the "interrupt" keyword optional. If
7432         omitted, the function will not automatically be given an entry
7433         in the interrupt vector table (similar to #pragma NOIV, but
7434         less syntacticly kludgy). The interrupt number is also now
7435         range checked. Also fixed a bug in the high order bit example
7436         in the manual.
7437
7438         * src/SDCC.y
7439         * src/SDCCmem.c
7440         * src/SDCCglue.c
7441         * src/SDCCsymt.h
7442         * support/Util/SDCCerr.c
7443         * support/Util/SDCCerr.h
7444         * doc/sdccman.lyx
7445
7446 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7447
7448         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
7449         * src/SDCCicode.c (operandOperation): rewritten some ops
7450         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
7451         * src/SDCCsymt.c (computeType): literals are handled the same way as any
7452         other type
7453         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
7454         be re-activated by defining REDUCE_LITERALS)
7455         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
7456         unsigned, but are signed by default
7457         * src/SDCCval.c (constVal): rearranged
7458         * src/SDCCval.c (valMod): preliminary fix
7459         * src/SDCCval.c (valCastLiteral): use TYPE_* types
7460         * support/regression/literalop.c: added, work in progress
7461
7462 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7463
7464         Generate warnings for useless declarations like "char data;"
7465         that don't do what new users expect.
7466
7467         * src/SDCC.y
7468         * support/Util/SDCCerr.h
7469         * support/Util/SDCCerr.c
7470
7471 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
7472
7473         * src/SDCCval.c (valMult): fix overflow detection of negative int
7474
7475 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7476
7477         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
7478
7479         Changes to support big endian targets:
7480
7481         * src/ports.h
7482         * src/SDCCglue.c
7483         * src/avr/main.c
7484         * src/ds390/main.c
7485         * src/izt/i186.c
7486         * src/mcs51/main.c
7487         * src/pic/main.c
7488         * src/pic16/main.c
7489         * src/xa51/main.c
7490         * src/z80/main.c
7491
7492 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
7493
7494         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
7495         * device/lib/time.c: fixed warning "integer overflow in expression"
7496
7497 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
7498
7499         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
7500         * src/SDCCval.c (constVal): changed default to signed; hex and octal
7501         constants are unsigned; added recognition of "u" flag for unsigned
7502         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
7503         * src/SDCCval.c (valDiv, valMod): fixed signdness
7504         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
7505         signedness of modulo, left and right shift
7506         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
7507         * support/Util/SDCCerr.h: added warning W_INT_OVL
7508         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
7509         * src/SDCCast.c (ast_print): improved output of constants
7510
7511 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7512
7513         Fixed some warnings when building with MSVC:
7514
7515         * as\mcs51\asdata.c
7516         * as\z80\asdata.c
7517         * as\mcs51\asm.h
7518         * as\z80\asm.h
7519         * link\z80\aslink.h
7520         * link\z80\lkdata.c
7521         * link\z80\lkeval.c
7522         * link\z80\lkgb.c
7523         * link\z80\lkihx.c
7524         * link\z80\lks19.c
7525         * link\z80\lksym.c
7526         * support\cpp2\cpplib.c
7527         * src\ds390\gen.c
7528         * src\mcs51\gen.c
7529
7530 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
7531
7532         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
7533
7534 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7535
7536         * support\librarian\clean.mk: Do not remove Makefile.
7537         * support\librarian\Makefile: added.
7538
7539 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7540
7541         Added librarian to MSVC build:
7542         * all.dsp
7543         * sdcc.dsw
7544         * support\librarian\librarian.dsp
7545
7546         'configure' not needed for librarian, removed:
7547         * support\librarian\configure
7548         * support\librarian\configure.in
7549         * support\librarian\config_in.h
7550         * support\librarian\Makefile.in
7551
7552         Hopefully these ones built the librarian and the rest of sdcc properly:
7553         * Makefile
7554         * Makefile.common.in
7555
7556         Messed up 'configure', so revert to previous version:
7557         * configure
7558         * configure.in
7559
7560 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
7561
7562         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
7563         there, while the mantissa of a double is "only" 53 bits wide.
7564
7565 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7566
7567         Adding sdcclib to the build.  MSVC project coming soon.
7568         Files added/changed:
7569
7570         * support\librarian\clean.mk
7571         * support\librarian\configure
7572         * support\librarian\configure.in
7573         * support\librarian\config_in.h
7574         * support\librarian\Makefile.bcc
7575         * support\librarian\Makefile.in
7576         * support\librarian\sdcclib.c
7577         * Makefile.bcc
7578         * Makefile
7579         * Makefile.common.in
7580         * configure
7581         * configure.in
7582
7583 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7584
7585         Linker now complaints if linked modules have conflicting options, for
7586         example, one compiled using --model-large and another one compiled with
7587         --model-small.  The following files were modified:
7588
7589         * as\mcs51\asdata.c
7590         * as\mcs51\aslink.h
7591         * as\mcs51\asm.h
7592         * as\mcs51\asmain.c
7593         * as\mcs51\asout.c
7594         * as\mcs51\i51pst.c
7595         * as\mcs51\lkdata.c
7596         * as\mcs51\lklibr.c
7597         * as\mcs51\lkmain.c
7598         * as\z80\asdata.c
7599         * as\z80\asm.h
7600         * as\z80\asmain.c
7601         * as\z80\asout.c
7602         * as\z80\z80pst.c
7603         * link\z80\aslink.h
7604         * link\z80\lkdata.c
7605         * link\z80\lklibr.c
7606         * link\z80\lkmain.c
7607         * src\SDCCglue.c
7608
7609 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7610
7611         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
7612         as/mcs51/lklibr.c: Generate a warning when a library is not found.
7613
7614 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
7615
7616         * src/z80/mappings.i: fix _mul[us][int,long] entries
7617
7618 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7619
7620         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
7621
7622 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7623
7624         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
7625         * support/regression/tests/bitopcse.c: added
7626         fixed warning:
7627         * src/avr/gen.c:
7628         * src/pic/gen.c:
7629         * src/pic16/gen.c:
7630         * src/z80/gen.c:
7631         * src/xa51/gen.c:
7632
7633 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7634
7635         added support for new library format to z80, gbz80 linkers:
7636         *link/z80/aslink.h
7637         *link/z80/lklex.c
7638         *link/z80/lklib.c
7639         *link/z80/lklist.c
7640
7641 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7642
7643         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
7644         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
7645
7646 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
7647
7648         added DUMMY_READ_VOLATILE:
7649         * src/SDCC.y:
7650         * src/avr/gen.c:
7651         * src/xa51/gen.c:
7652         * src/z80/gen.c:
7653         * src/pic/gen.c:
7654         * src/pic16/gen.c:
7655         * src/mcs51/gen.c:
7656         * src/ds390/gen.c:
7657         * src/SDCCcse.c (algebraicOpts): many improvements
7658         * src/SDCCcse.h: removed algebraicOpts()
7659         * src/SDCCicode.c (picDummyRead): added
7660
7661 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7662
7663         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
7664         "Insufficient space in data memory".
7665
7666 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7667
7668         * src/mcs51/gen.c: fixed bug #771358
7669         * src/z80/gen.c: fixed bug #759087
7670
7671 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
7672
7673         * src/pic16/glue.c: minor cleanup by Vangelis
7674
7675 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7676
7677         * device/include/regc515c.h: fixed #758477
7678         * device/lib/_gptrget.c: saving some cycles in generic pointer get
7679         * device/lib/_gptrput.c: saved a few bytes
7680         * my tab spacing is 8, yours too?)
7681         * device/lib/_ser.c: process RX bytes earlier than TX bytes
7682         * device/lib/serial.c: process RX bytes earlier than TX bytes
7683         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
7684
7685 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7686
7687         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
7688
7689 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7690
7691     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
7692
7693 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
7694
7695         * device/lib/Makefile.in: bad fix, reverted to 1.43
7696
7697 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
7698
7699         * device/lib/Makefile.in: added missing z80 object files
7700
7701 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
7702
7703         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
7704         pic16 progress by Vangelis:
7705         * src/SDCCglobl.h:
7706         * src/SDCCmain.c:
7707         * src/pic/Makefile:
7708         * src/pic:
7709         * pic/Makefile:
7710         * pic16/device.c:
7711         * pic16/device.h:
7712         * pic16/gen.c:
7713         * pic16/gen.h:
7714         * pic16/genarith.c:
7715         * pic16/glue.c:
7716         * pic16/main.c:
7717         * pic16/pcode.c:
7718         * pic16/pcode.h:
7719         * pic16/pcodepeep.c:
7720         * pic16/peeph.def:
7721
7722 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7723
7724     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
7725
7726 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7727
7728     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
7729     added gbz80 build to MSVC project.
7730     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
7731     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
7732     from 8051 stuff and setup so it links using a .lnk file.
7733
7734 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7735
7736     * support/librarian/sdcclib.c: sdcc librarian.
7737     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
7738     with sdcclib.
7739
7740 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7741
7742     * as/mcs51/lkmain.c: properly handle extensions in function afile.
7743
7744 2003-07-02  Borut Razem <borut.razem AT siol.net>
7745
7746         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
7747         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
7748         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
7749         src/xa51/main.c, src/z80/main.c:
7750         virtualization of glue() function: each port has it's own glue function,
7751         which is accessed by do_glue function pointer in PORT.general structure
7752
7753 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
7754
7755         * DS800C400 fun, improved ROM interface and tinibios.
7756
7757 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
7758
7759         * More support for DS80C400. Now includes beginning of interface to ROM.
7760
7761 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
7762
7763         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
7764
7765 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7766
7767         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
7768
7769 2003-06-19  Borut Razem <borut.razem AT siol.net>
7770
7771         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
7772
7773 2003-06-19  Borut Razem <borut.razem AT siol.net>
7774
7775         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
7776         fixed Z80 port - crt0.o: cannot open.
7777
7778 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
7779
7780         * support/Util/MySystem.c (merge_command): revert bad fix
7781
7782 2003-06-18  Borut Razem <borut.razem AT siol.net>
7783
7784         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
7785
7786 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7787
7788         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7789         option --use-stdout sends errors to stdout instead of stderr.
7790
7791 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
7792
7793         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
7794
7795 2003-06-15  Borut Razem <borut.razem AT siol.net>
7796
7797         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
7798         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
7799         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
7800         fixed width array of pointers replaced with sets;
7801         multiple include and lib paths ared transferred to preprocessor and linker
7802         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
7803         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
7804         fixed width array of pointers
7805         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
7806         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
7807         fixupPath(), getPathDifference()
7808         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
7809         fixed width array of pointers
7810
7811 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
7812
7813         * src/pic16/ralloc.c: fix warnings
7814         * src/pic16/pcode.c: fix warning
7815
7816 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
7817
7818          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
7819         know all the details, but essentially this set of changes enable
7820         the pic16 port to generate movff instructions and generate assembler
7821         directives,
7822         * src/SDCCmain.c:
7823         * src/pic16/gen.c:
7824         * src/pic16/glue.c:
7825         * src/pic16/pcode.c:
7826         * src/pic16/device.c:
7827         * src/pic16/main.c:
7828         * src/pic16/pcode.h:
7829         * src/pic16/pcoderegs.c:
7830         * src/pic16/ralloc.c:
7831         * src/pic16/ralloc.h:
7832
7833 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7834
7835         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7836         added option --vc, so sdcc errors and warnings are compatible with
7837         Microsoft Visual Studio.
7838
7839 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7840
7841         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
7842           device/lib/libfloat.lib: added atof function.
7843
7844 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
7845
7846         * doc/sdccman.lyx: updated to Lyx 1.3
7847         * doc/cdbfileformat.lyx: updated to Lyx 1.3
7848         * doc/test_suite_spec.lyx: updated to Lyx 1.3
7849         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
7850
7851 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
7852
7853         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
7854
7855 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7856
7857         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
7858           additions to the "related tools/documentation" section
7859
7860 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
7861
7862         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
7863
7864 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
7865
7866         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
7867         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
7868
7869 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
7870
7871         * doc/sdccman.lyx: fix double dash and other minor things
7872         * doc/Makefile: fix double dash
7873
7874 2003-05-28  Karl Bongers(patches from Martin Helmling)
7875         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
7876           condition and ignore commands.
7877
7878 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7879
7880         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
7881           is in parts still quite out of date, I did changes as far as I felt makes sense
7882           for a non-native english speaker.
7883           Please feel free to add to the manual or to correct my changes.
7884         * doc/Makefile: undid touching the date of intermediate tex files.
7885
7886 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7887
7888         * doc/sdccman.lyx: Manual has an index now
7889
7890 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
7891
7892         Finalize muluint/mulsint and mululong/mulslong merging:
7893         * device/lib/_mulint.c
7894         * device/lib/_mullong.c
7895         * device/lib/gbz80/mul.s
7896         * device/lib/gbz80/stubs.s
7897         * device/lib/z80/mul.s
7898         * device/lib/z80/stubs.s
7899         * src/SDCCsymt.c (initCSupport)
7900
7901 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7902
7903         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
7904         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
7905           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
7906           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
7907           instead of /Zm500.
7908
7909 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7910
7911         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
7912           the regression tests I'm not brave enough to enable 245.b, 245.c
7913         * doc/sdccman.lyx: added latex preamble for hyperref package.
7914           Using pdflatex this will give you a hyperlinked pdf file with
7915           bookmarks. (prepend '%' before /usepackage if this breaks something)
7916
7917 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7918
7919          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
7920
7921 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
7922
7923         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
7924
7925 2003-05-21    <johan AT balder>
7926
7927         * src/SDCCglue.c (printIval): fixed bug #739934
7928
7929 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7930
7931         Applied patch from bug 737905 (renamed yylineo to mylineno):
7932         * src/altlex.c
7933         * src/SDCCast.c
7934         * src/SDCglobl.h
7935         * src/SDCC.lex
7936         * src/SDCCsymt.c
7937         * src/SDCCval.c
7938         * src/pic16/pcode.c: Cleaned warnings
7939         * src/pic16/pcodeflow.c: Cleaned warnings
7940         * src/pic16/pcoderegs.c: Cleaned warnings
7941
7942 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
7943
7944         * src/pic16/pcode.c: Cleaned warnings
7945         * src/pic16/pcodepeep.c: Cleaned warnings
7946         * src/pic16/ralloc.c: Cleaned warnings
7947
7948 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7949
7950         * doc/sdccman.lyx: fixed bug 739745
7951         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
7952
7953 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
7954
7955         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
7956         it can be defined with CFLAGS when running configure
7957         * src/SDCCmain.c: fixed compiling + linking with object files
7958
7959 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
7960
7961         * configure.in: configure for pic16 port,
7962             added --disable-pic16-port
7963         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
7964         * src/SDCCmain.c: linkOptions is changed to set *,
7965             added if/endif conditional macros to remove options help
7966             messages from optionsTable when a port is not configured, added
7967             support for the PIc16 port in the ports table, when executing
7968             the compiler with no port specified on command line, a default
7969             port is selected with the new macro DEFAULT_PORT which is
7970             defined in port.h, in setDefaultOptions() linkOptions is removed
7971             from initialization assignment, since now it is a set,
7972             parseCmdLine uses setParseWithComma for linkOptions, in
7973             linkEdit() linkOptions are accessed with new function indexSet()
7974             which returns the i'th item of a set variable. See SDCCset.c, in
7975             linkEdit() when calling buildCmdLine(), added linkOptions as
7976             last argument. Now users can pass arguments to gplink via the
7977             -Wl option, main() uses pic16glue() to glue up pic16 programs
7978         * src/SDCCpeeph.c: various changes to support pic16
7979         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
7980             return the i'th item of the set
7981         * src/SDCCset.h: added function prototype for indexSet()
7982         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
7983         * src/clean.mk: added pic16 in CLEANALLPORTS variable
7984         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
7985             added macro DEFAULT_PORT
7986         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
7987         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
7988             generated
7989         * src/pic16/glue.c: commented out some error producing lines
7990         * src/pic16/main.c: __config directives are commented out to stop
7991             gpasm complaining and test the linkage with gplink, _linkCmd and
7992             _asmCmd changed to be more gplink and gpasm friendly
7993         * src/pic16/peeph.def: peep rule 3 is commented out, since it
7994             produced an error when parsed, peep rule 12 is added to utilize
7995             movff, but it is commented out since the pCode does not support
7996             yet a command with 2 address arguments
7997
7998 2003-05-18    <johan AT balder>
7999
8000         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8001         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8002 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
8003
8004         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
8005   Added feature to script commands from file.
8006
8007 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
8008
8009         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
8010         * src/SDCCutil.c: include ctype.h for win32
8011
8012 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
8013
8014         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
8015
8016 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
8017
8018         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
8019   Fixed so you can set breakpoints prior to run, run does not stop
8020   on entry now.  Add tbreak.  Other enhancements and fixes for use
8021   with ddd.
8022
8023 2003-05-12  Borut Razem <borut.razem AT siol.net>
8024
8025         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
8026
8027 2003-05-11  Borut Razem <borut.razem AT siol.net>
8028
8029         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
8030         the path of bin directory, so that PATH is the only env. variable, which has to be set
8031         in case of standard installation.
8032         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
8033         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
8034         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
8035
8036 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8037
8038         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
8039         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
8040         temp files are in the port dir; clean the gen/test directory when
8041         generating new test.c
8042         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
8043         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
8044         * support/regression/tests/zeropad.c: added
8045
8046 2003-05-09    <johan AT balder>
8047
8048         * src/SDCCglue.c: fixed bug #597940
8049
8050 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
8051
8052         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8053   cache sfr, optimize next,step, fix off by one sourceline,
8054   support ddd list function.
8055         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
8056
8057 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8058
8059         * support/regression/HTMLgen.py: added compare_s2f()
8060         * support/regression/Makefile: redo 1.27
8061         * support/regression/generate-cases.py: redo 1.5
8062
8063 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
8064
8065         * support/regression/tests/float.c: workaround 33 bit hex constant
8066         * support/regression/tests/simplefloat.c: fix division for host
8067
8068 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
8069
8070         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
8071         that tame's the PIC's over-aggressive optimizer.
8072
8073 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8074
8075          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
8076          support for MSVC.
8077
8078 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
8079
8080         Initial support for DS80C400. "Hello world" runs on TINIm400
8081         (with polled I/O).
8082
8083 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
8084
8085          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8086          * Some notes on ddd usage added in debugger/README
8087          Martin Helmling adding more features and fixes for ddd GUI debugger.
8088          Code added for nexti, stepi, up, down, and other adjustments.
8089
8090 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
8091
8092         * src/pic/pCodepeep.c non-wildcard asmops are now handled
8093         * src/pic/peeph.def Added two rules to optimize carry manipulation
8094         * src/pic/* removed debug printfs
8095
8096 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
8097
8098         * debugger/mcs51/cmd.c: added header newalloc.h
8099
8100 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
8101
8102         * as/Makefile: new EXEEXT
8103         * as/z80/Makefile: remove trailing slash of BUILDIR
8104         * as/z80/clean.mk: new EXEEXT
8105         * Makefile.common.in: add to CFLAGS (and others), don't replace it
8106         * support/cpp2/Makefile.in: new EXEEXT
8107         * src/pic/glue.c (pic14emitRegularMap): fixed warning
8108
8109 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
8110
8111         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
8112         EXEEXT was introduced to fix all related problems with targets
8113         "clean", "install" and "uninstall"; a couple of further flaws
8114         especially with "clean" have been fixed too
8115         * as/mcs51/Makefile.in
8116         * as/mcs51/clean.mk
8117         * as/z80/Makefile
8118         * Makefile
8119         * clean.mk
8120         * debugger/mcs51/Makefile.in
8121         * debugger/mcs51/clean.mk
8122         * link/z80/Makefile
8123         * link/z80/Makefile.in
8124         * link/z80/clean.mk
8125         * link/Makefile
8126         * packihx/Makefile.in
8127         * packihx/clean.mk
8128         * sim/ucsim/Makefile
8129         * sim/ucsim/clean.mk
8130         * sim/ucsim/avr.src/Makefile.in
8131         * sim/ucsim/avr.src/clean.mk
8132         * sim/ucsim/s51.src/Makefile.in
8133         * sim/ucsim/s51.src/clean.mk
8134         * sim/ucsim/xa.src/Makefile.in
8135         * sim/ucsim/xa.src/clean.mk
8136         * sim/ucsim/z80.src/Makefile.in
8137         * sim/ucsim/z80.src/clean.mk
8138         * sim/ucsim/main_in.mk
8139         * sim/ucsim/packages_in.mk
8140         * sim/ucsim/gui.src/Makefile.in
8141         * sim/ucsim/gui.src/serio.src/Makefile.in
8142         * sim/ucsim/gui.src/serio.src/clean.mk
8143         * src/Makefile.in
8144         * src/clean.mk
8145         * support/cpp2/Makefile.in
8146         * support/cpp2/clean.mk
8147         * support/makebin/Makefile
8148         * support/makebin/clean.mk
8149         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
8150         * doc/sdccman.lyx: --program-suffix no longer needed
8151
8152 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
8153
8154          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
8155          Martin Helmling added support for ddd GUI debugger.
8156          Code added to display assembly, set variables, and other commands
8157          to interface to ddd.
8158
8159 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
8160
8161         * as/Makefile: fix target clean
8162         * as/clean.mk: fix target clean
8163         * as/z80/clean.mk: fix target clean
8164
8165 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
8166
8167         * Makefile.common.in: added  AT EXEEXT AT
8168         * configure.in: removed all mingw32 stuff
8169         * configure: rebuilt from configure.in
8170         * doc/sdccman.lyx: updated section "installation"
8171         * support/scripts/sdcc_mingw32: adapted to configure
8172         * support/scripts/sdcc_cygwin_mingw32: added
8173
8174 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
8175
8176         * src/pic Added object file support for the PIC port
8177         * src/pic Applied patch from Craig Franklin (this started the object file support)
8178         * src/regression Updated the PIC regression tests for object files
8179
8180 2003-04-20  Borut Razem <borut.razem AT siol.net>
8181
8182         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
8183           lklex.c: In function `getfid':
8184           lklex.c:203: warning: array subscript has type `char'
8185         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
8186           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
8187         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
8188           stack handling macros
8189
8190 2003-04-19  Borut Razem <borut.razem AT siol.net>
8191
8192         * "handling space characters in file path" task:
8193         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
8194         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
8195         * support/Util/MySystem.h: make it self-sufficient
8196         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
8197           src/z80/main.c, sdcc/as/mcs51/lklex.c:
8198           handling space characters in file path
8199         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
8200           (it will be used by assemblers, which have their own includes, e.g. gpasm)
8201         * support/Util/MySystem.c: handling space characters in executable's path
8202
8203 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
8204
8205         * as/z80/Makefile: fix permanent rebuild of z80
8206         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
8207         * support/regression/tests/bitfields.c: added Johan's bitfields.c
8208
8209 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
8210
8211         * src/SDCCopt.c: add special case optimization to replace modulo by
8212           a power of two with a bitwise AND.
8213
8214 2003-04-18    <johan AT balder>
8215
8216         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
8217
8218 2003-04-17    <johan AT balder>
8219
8220         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
8221         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
8222
8223 2003-04-13  Borut Razem <borut.razem AT siol.net>
8224
8225         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
8226         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
8227           fixed mingw problem in adl_NORMALIZE_PATH
8228
8229 2003-04-12  Borut Razem <borut.razem AT siol.net>
8230
8231         * fixed "#pragma SAVE/RESTORE can not be nested":
8232         * src/SDCC.lex: reworked pragma handling functions
8233         * sdcc/src/SDCCglobl.h: reworked stack handling macros
8234         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
8235
8236 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8237
8238         * src/SDCCutil.c (pathEquivalent): defined but not used
8239         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
8240         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
8241         * configure: rebuilt from configure.in
8242         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8243         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8244         * device/include/Makefile.in: replace sdcc_datadir
8245         * device/lib/Makefile.in: replace sdcc_datadir
8246         * Makefile.common.in: add LDFLAGS from configure
8247         * packihx/Makefile.in: use LDFLAGS
8248         * src/Makefile.in: use LDFLAGS
8249         * support/cpp2/Makefile.in: add LDFLAGS from configure
8250         * support/makebin/Makefile: use LDFLAGS
8251         * .version: bumped version number to 2.3.5
8252
8253 2003-04-12  Borut Razem <borut.razem AT siol.net>
8254
8255         * completed "different paths" task:
8256         * src/SDCCmacro.c: fixed bug in handling quotes
8257         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
8258         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
8259
8260 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8261
8262         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
8263
8264 2003-04-11 kevin Vigor <kevin AT vigor.nu>
8265
8266         * ds390/gen.c ds390/peeph.def: fix bug 706781
8267
8268 2003-04-11  Borut Razem <borut.razem AT siol.net>
8269
8270         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
8271
8272 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
8273
8274         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
8275         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
8276          set - this bit used to not be set...).
8277         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
8278           bad code in PIC Port
8279         * src/regression/and2.c added to test bug 609268
8280         * src/regression/Makefile added and2.c to regression test
8281
8282
8283 2003-04-08    <johan AT CP255758-A>
8284
8285         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
8286         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
8287         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
8288
8289 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
8290
8291         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
8292         fix bug #487815
8293         * support/cpp2/Makefile.in: fix bug #487815
8294         * configure: rebuilt from configure.in
8295         * Makefile.common.in: docdir changed, new path suffixes
8296         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8297         * sdcc_vc_in.h: reflect changes from sdccconf.h
8298         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
8299         * src/SDCCutil.h: remove BINDIR hack
8300         * doc/sdccman.lyx: update new path hierarchy
8301
8302 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8303
8304         * src/SDCCpeeph.c: added okToRemoveSLOC test
8305
8306 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8307
8308         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
8309
8310 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8311
8312         * src/SDCCpeeph.c: added labelIsReturnOnly test
8313         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
8314
8315 2003-04-05    <johan AT balder>
8316
8317         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
8318         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
8319         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
8320         * src/SDCCast.c: fixed a warning
8321         * src/SDCCast.h: fixed a warning
8322         * src/SDCCicode.c (operandFromAst): fixed a warning
8323
8324 2003-04-04    <johan AT balder>
8325
8326         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
8327         * src/SDCCast.c (decorateType): fixed bug #715076
8328         * src/SDCC.y: fixed bug #702907
8329
8330 2003-04-03    <johan AT balder>
8331
8332         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
8333         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
8334         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
8335         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
8336         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
8337
8338 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
8339
8340         * _decdptr.c: fix return values
8341         * _gptrget.c: fix return values
8342         * _gptrgetc.c: fix return values
8343         * _gptrput.c: fix return values
8344         * _mulint.c: fix return values
8345         * as/z80/Makefile: fix 'make -j' problem
8346
8347 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
8348
8349         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
8350         * configure.in: big cleanup, updated to autoconf 2.5x
8351         * configure: rebuilt from configure.in
8352         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8353         * sdcc_vc_in.h: reflect changes from sdccconf.h
8354         * doc/Makefile: fixed a flaw in "make install"
8355
8356 2003-04-02    <johan AT balder>
8357
8358         * src/ds390/gen.c (genCmp): no comments
8359         * src/mcs51/gen.c (genCmp): no comments
8360         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
8361         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
8362
8363 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
8364
8365         * support/regression/generate-cases.py: place generated file in given sub directory
8366         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
8367         * support/regression/Makefile: improvements for 'make -j';
8368         side effect: it's simpler and faster now
8369
8370 2003-03-31  Borut Razem <borut.razem AT siol.net>
8371
8372         * src/z80/main.c: link-{port} and as-{port} defined without path
8373         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
8374
8375 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
8376
8377         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
8378
8379 2003-03-30  Borut Razem <borut.razem AT siol.net>
8380
8381         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
8382           changed type of list parameter to set
8383         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
8384         * src/port.h: changed type of do_assemble() parameter to set
8385         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
8386           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
8387           definition of "cppoutfilename" macro with NULL value in preProcess()
8388         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
8389         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
8390         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
8391           replaced with set *binPathSet
8392         * shash_add() deallocates the item, if allready exsists, before adding the new one
8393         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
8394
8395 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
8396
8397         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
8398           a nested for loop bug in the PIC port
8399         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
8400           for loops
8401
8402 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
8403
8404         * support/Util/dbuf.h: remove C++ stuff to make it portable
8405
8406 2003-03-28  Borut Razem <borut.razem AT siol.net>
8407
8408         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
8409           literal strings in stringLiteral()
8410         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
8411         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
8412           to the project
8413
8414 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
8415
8416         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
8417
8418 2003-03-26    <johan AT balder>
8419
8420         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
8421         * src/ds390/gen.c (saveRegisters): catched symbol abuse
8422         * src/SDCCast.c (decorateType): fixed " -v < 3"
8423
8424 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
8425
8426         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
8427         Added Lenny Story's debug infrastructure changes:
8428         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
8429         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
8430         * src/cdbFile.c: added
8431         * src/SDCCdebug.c: added
8432         * src/SDCCdebug.h: added
8433         * src/SDCCast.c (createFunction)
8434         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
8435         * src/SDCCmain.c (parseCmdLine, main)
8436         * src/SDCCmem.c (redoStackOffsets)
8437         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
8438         * src/SDCCsymt.h
8439         * src/common.h
8440         * src/avr/gen.c (genAVRCode)
8441         * src/ds390/gen.c (gen390Code)
8442         * src/mcs51/gen.c (gen51Code)
8443         * src/pic/gen.c (genpic14Code)
8444         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
8445         * src/xa51/gen.c (genXA51Code)
8446         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
8447
8448 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8449
8450         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
8451         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
8452
8453 2003-03-22    <johan AT balder>
8454
8455         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
8456
8457 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
8458
8459         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
8460         * doc/cdbfileformat.lyx: added, written by Lenny Story
8461         * doc/Makefile: added cdbfileformat.lyx
8462         * doc/clean.mk: added cdbfileformat.lyx
8463
8464 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
8465
8466         * src/mcs51/peeph.def: fix bug #705773
8467
8468 2003-03-20    <johan AT balder>
8469
8470         An sfr/sbit can have an "at #" AND an initializer
8471         * src/SDCCsymt.c (checkSClass):
8472         * src/SDCCmem.c (allocGlobal):
8473         * src/SDCCmem.c (allocLocal):
8474         * src/SDCCast.c (createBlock):
8475
8476 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
8477
8478         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
8479
8480 2003-03-16    <johan AT balder>
8481
8482         Undid the hackup of const and volatile, the problem is much bigger
8483         * src/SDCC.y:1.65
8484         * src/SDCCast.c:1.171
8485         * src/SDCCglue.c:1.138
8486         * src/SDCCicode.c:1.146
8487         * src/SDCCsymt.c:1.150
8488         * src/SDCCval.c:1.65
8489
8490 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
8491
8492         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
8493         * src/ds390/gen.c (genAddrOf): fixed bug #704087
8494
8495 2003-03-13    <johan AT balder>
8496
8497         Hackup const and volatile modifiers in type chains a bit:
8498         * src/SDCC.y:1.63
8499         * src/SDCCast.c:1.169
8500         * src/SDCCglue.c:1.136
8501         * src/SDCCicode.c:1.143
8502         * src/SDCCsymt.c1.146
8503         * src/SDCCsymt.h1.59
8504         * src/SDCCval.c:1.63
8505
8506 2003-03-12    <johan AT balder>
8507
8508         * src/SDCCBBlock.h: more LRH debugging junk
8509         * src/SDCCcflow.h: more LRH debugging junk
8510         * src/SDCCloop.c: more LRH debugging junk
8511         * src/SDCC.y (struct_declaration): fixed bug #697590
8512         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
8513         * src/ds390/gen.c (aopForRemat): fixed bug #700031
8514         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
8515
8516 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8517         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
8518         test function names must now match exactly).
8519         * src/SDCCcse.c: added special case in findCheaperOp to allow
8520         extending a short integer. Makes less awful code for bug 700121 test case.
8521
8522 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8523
8524         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
8525         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
8526
8527 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8528
8529         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
8530         actually called (operandsNotEqual() was called for all
8531         operandsNotEqualX tests).
8532
8533 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8534
8535         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
8536         with shorter literals. Fixes bug 700121.
8537
8538 2003-03-11    <johan AT balder>
8539
8540         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
8541
8542 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
8543
8544         * src/SDCCloop.c (mergeRegions): an evil beast is dead
8545         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
8546
8547 2003-03-10  Borut Razem <borut.razem AT siol.net>
8548
8549         * src/SDCCmain.c: pipe preprocessor's output
8550         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8551         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8552         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8553         which closes all pipes in pipeSet set
8554         * src/SDCCset.c: free deleted item in function deleteSetItem()
8555         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8556         moved from z80 to src subproject
8557         * .version: increased version number to 2.3.4
8558
8559 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
8560
8561         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
8562         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
8563         * support/regression/ports/xa51/spec.mk: fix typo
8564
8565 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
8566
8567         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
8568
8569 2003-03-09  Borut Razem <borut.razem AT siol.net>
8570
8571         * src/SDCCmain.c: pipe preprocessor's output
8572         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8573         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8574         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8575         which closes all pipes in pipeSet set
8576         * src/SDCCset.c: free deleted item in function deleteSetItem()
8577         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8578         moved from z80 to src subproject
8579
8580 2003-03-09  Borut Razem <borut.razem AT siol.net>
8581
8582         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
8583         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
8584         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
8585         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
8586         * src/SDCCglobl.h: unification of WIN32 native definitions
8587
8588 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8589
8590         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
8591
8592 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8593
8594         * src/configure.in:   check for endianess (even while cross-compiling)
8595         * src/configure:      check for endianess (even while cross-compiling)
8596         * src/configure_in.h: check for endianess (even while cross-compiling)
8597         * src/avr/gen.c:        remove old endianess stuff
8598         * src/mcs51/gen.c:      remove old endianess stuff
8599         * src/ds390/gen.c:      remove old endianess stuff
8600         * src/pic/gen.c:        remove old endianess stuff
8601         * src/pic/genarith.c:   remove old endianess stuff
8602         * src/pic/glue.c:       fix endianess check
8603         * src/pic16/gen.c:      remove old endianess stuff
8604         * src/pic16/genarith.c: remove old endianess stuff
8605         * src/pic16/glue.c:     fix endianess check
8606         * src/xa51/gen.c:       remove old endianess stuff
8607         * src/z80/gen.c:        fix endianess check
8608         * src/SDCCglue.c:       fix endianess check
8609         * src/ds390/peeph.def: fix bug 700036
8610
8611 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8612
8613         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
8614         * src/configure: find appropriate data-types on host for SDCC's int and long
8615         * src/configure.in: find appropriate data-types on host for SDCC's int and long
8616         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
8617         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
8618
8619 2003-03-07    <johan AT balder>
8620
8621         Just a big NOOP:
8622                 some minor cleanups before the big shot
8623                 OP_DEFS and OP_USES now use Kevin's protection
8624                 new option --nolabelopt
8625
8626         * src/SDCCBBlock.c:
8627         * src/SDCCast.c,:
8628         * src/SDCCcflow.c:
8629         * src/SDCCcse.c:
8630         * src/SDCCicode.c:
8631         * src/SDCCicode.h:
8632         * src/SDCClabel.c:
8633         * src/SDCCloop.c:
8634         * src/SDCCmain.c:
8635         * src/ds390/ralloc.c:
8636         * src/mcs51/ralloc.c:
8637         * src/pic/ralloc.c:
8638         * src/xa51/ralloc.c:
8639         * src/z80/ralloc.c:
8640
8641 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
8642
8643         * src/pic/pcode.c (get_op): fix 64 bit warnings
8644         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
8645         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
8646         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
8647         * support/regression/tests/malloc.c: fix 64 bit warnings
8648
8649 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
8650
8651         * src/mcs51/gen.c (genMinus): fixed bug 696436
8652
8653 2003-03-02  Borut Razem <borut.razem AT siol.net>
8654
8655         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
8656
8657 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
8658
8659         * configure.in: test for mkstemp
8660         * sdccconf_in.h: add HAVE_MKSTEMP
8661
8662 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
8663
8664         * device/include/ctype.h: removed warning while using --stack-auto
8665         * device/include/malloc.h: removed warning while using --stack-auto
8666         * device/include/string.h: removed warning while using --stack-auto
8667
8668 2003-02-23  Borut Razem <borut.razem AT siol.net>
8669
8670         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
8671         because NDEBUG is defined (see man assert)
8672         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
8673
8674 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8675
8676         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
8677         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
8678
8679 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8680
8681         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
8682         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
8683
8684 2003-02-18    <johan AT balder>
8685
8686         * as/mcs51/asmain.c (asmbl): module can start with a digit
8687         * as/z80/asmain.c (asmbl): module can start with a digit
8688
8689 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
8690
8691         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
8692         * src/asm.c: fix pipe() for Mingw32
8693
8694 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
8695
8696         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
8697         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
8698         make -V work again; --c1mode reads now from stdin
8699         * doc/sdccman.lyx: added --c1mode
8700         * support/Util/SDCCerr.c: new messages for c1 mode
8701         * support/Util/SDCCerr.h: new messages for c1 mode
8702         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
8703
8704 2003-02-15    <johan AT balder>
8705
8706         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
8707
8708 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
8709
8710         * doc/sdccman.lyx: Environment variables, -o and other minor things
8711
8712 2003-02-14    <johan AT balder>
8713
8714         * src/xa51/main.c: before anyone really tries to use it :)
8715
8716         * Install doc's in share/sdcc/doc
8717         * removed some obsolete files
8718         * Do a proper make distclean and uninstall
8719         M Makefile.common.in
8720         R sdccbuild.sh
8721         M as/Makefile
8722         M device/include/Makefile.in
8723         M device/lib/Makefile.in
8724         M doc/sdccman.lyx
8725         M link/Makefile
8726         M sim/ucsim/doc/Makefile.in
8727         M src/clean.mk
8728         R src/avr/peeph.rul
8729         R src/xa51/peeph.rul
8730         M support/cpp2/Makefile.in
8731         M support/makebin/Makefile
8732
8733
8734 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
8735
8736         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
8737
8738 2003-02-10  Borut Razem <borut.razem AT siol.net>
8739
8740         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
8741         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
8742         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
8743         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
8744         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
8745         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
8746         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
8747         src/z80/Makefile.bcc: Borland Makefile cleanup
8748         * as/z80/Makefile.bcc: Added Borland Makefile
8749         * support/cpp2/borland.h: Removed
8750
8751 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
8752
8753         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
8754         * src/SDCC.lex: new pragma NOIV
8755         * src/SDCCglobl.h: new pragma NOIV
8756         * src/SDCCmem.c: new pragma NOIV
8757
8758 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8759
8760         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
8761
8762 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8763
8764         * src/SDCCmain.c: signal handling is switched off by --debug
8765         * doc/Makefile: small fix for install; use clean.mk again
8766         * doc/clean.mk: clean *.pdf and *.html too
8767
8768 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
8769
8770         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
8771         * device/lib/printfl.c: fix a ds390 bug by making it portable
8772         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
8773         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
8774         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
8775         * debugger/mcs51/cmd.c: converted multi-line string literals
8776         * sim/ucsim/globals.cc: converted multi-line string literals
8777         * src/SDCCmain.c: introduced signal handler to remove temp files
8778         * doc/Makefile: small tweaks, implement clean
8779         * doc: removed generated files
8780
8781 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8782
8783         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
8784         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
8785         Address Record is not correctly generated for DS390."
8786
8787 2003-02-02  Borut Razem <borut.razem AT siol.net>
8788
8789         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
8790         * as/mcs51/asm.h: fixed compilation with Borland C
8791         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
8792         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
8793         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
8794         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
8795         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
8796         src/z80/Makefile.bcc: delete $(LIB) only if exist
8797         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
8798
8799 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
8800
8801         * device/include/malloc.h: introduced NULL
8802         * device/include/string.h: introduced NULL
8803         * device/include/stdlib.h: introduced NULL
8804         * device/lib/_memcpy.c: removed NULL
8805         * device/lib/_strcat.c: removed NULL
8806         * device/lib/_strchr.c: removed NULL
8807         * device/lib/_strcmp.c: removed NULL
8808         * device/lib/_strcpy.c: removed NULL
8809         * device/lib/_strcspn.c: removed NULL
8810         * device/lib/_strlen.c: removed NULL
8811         * device/lib/_strncat.c: removed NULL
8812         * device/lib/_strncmp.c: removed NULL
8813         * device/lib/_strncpy.c: removed NULL
8814         * device/lib/_strpbrk.c: removed NULL
8815         * device/lib/_strrchr.c: removed NULL
8816         * device/lib/_strspn.c: removed NULL
8817         * device/lib/_strstr.c: removed NULL
8818         * device/lib/_strtok.c: removed NULL
8819         * device/lib/malloc.c: removed NULL, include own header
8820
8821 2003-02-02    <johan AT balder>
8822
8823         * 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
8824         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
8825         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
8826         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
8827         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
8828         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
8829
8830 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8831
8832         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
8833         area 'DATA'"
8834
8835 2003-02-01    <johan AT balder>
8836
8837         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
8838
8839 2003-01-31    <johan AT CP255758-A>
8840
8841         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
8842
8843 2003-01-30    <johan AT balder>
8844
8845         * src/SDCCBBlock.c: automatic bug detection
8846         * src/SDCCicode.c: automatic bug detection
8847
8848 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8849
8850         * src/SDCCglobl.h:   now --xram-size 0 works
8851         * src/SDCCmain.c:    now --xram-size 0 works
8852
8853 2003-01-29    <johan AT balder>
8854
8855         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
8856
8857 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8858
8859         * as/mcs51/aslink.h: Added options --xram-size and --code-size
8860         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
8861         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
8862         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
8863         * src/SDCCglobl.h:   Added options --xram-size and --code-size
8864         * src/SDCCmain.c:    Added options --xram-size and --code-size
8865
8866 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
8867
8868         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
8869         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
8870
8871 2003-01-27    <johan AT balder>
8872
8873         * src/SDCC.y: fixed bug #613764
8874
8875 2003-01-26    <johan AT balder>
8876
8877         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
8878         * src/SDCCsymt.h: fixed bug #673374
8879         * src/SDCCglue.c: fixed bug #661910
8880         * src/SDCCast.c: fixed bug #458099 and 673374
8881
8882 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
8883
8884         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
8885         * as/mcs51/strcmpi.h: added
8886         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
8887         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
8888         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
8889         * as/mcs51/assym.c: strcmpi -> as_strcmpi
8890         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
8891         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
8892         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
8893         * as/mcs51/Makefile.aslink: new module strcmpi
8894         * as/mcs51/Makefile.asx8051: new module strcmpi
8895         * as/mcs51/Makefil.bcc: new module strcmpi
8896         * as/mcs51/Makefile.in: new module strcmpi
8897         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
8898
8899 2003-01-26    <johan AT balder>
8900
8901         * src/SDCCglue.c: reverted back to 1.124
8902         * src/SDCCast.c: reverted back to 1.156
8903         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
8904
8905 2003-01-25    <johan AT balder>
8906
8907         * src/SDCCglue.c: A better fix for bug #661910
8908         * src/SDCCast.c: A better fix for bug #661910
8909         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
8910
8911 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8912
8913         * src/Makefile.in: remove spawn.o
8914         * src/SDCCmain.c: remove spawn.h
8915         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
8916         * src/spawn.c: removed
8917         * src/spawn.h: removed
8918         * support/regression/ports/ds390/spec.mk: link with -r
8919
8920 2003-01-24    <johan AT CP255758-A>
8921
8922         * src/ds390/gen.c (aopOp): fixed bug #667458
8923         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
8924         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
8925         (createIvalCharPtr): an ival doesn't always have a storage class anymore
8926
8927 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8928
8929         * src/mcs51/peeph.def: better assembler identation by Frieder
8930         * src/mcs51/gen.c: better assembler identation by Frieder
8931
8932 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
8933
8934         * as/z80/string.h: removed for gcc 3.2
8935         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
8936         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
8937
8938 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8939
8940         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
8941         * src/SDCCpeeph.c (replaceRule): fix bug #663503
8942         * support/regression/Makefile: separate temp files for ports
8943         * support/regression/generate-cases.py: separate temp files for ports
8944         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8945         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8946
8947 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8948
8949         * moved tinitalk to device/examples/ds390
8950
8951 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
8952
8953         * as/mcs51/lkmem.c: rflag is for DS390
8954         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
8955         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
8956                          (linkEdit): move mem- and map-files the same way as ihx-files
8957         * src/z80/main.c (_setDefaultOptions): removed --generic
8958         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
8959         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
8960         * src/pic/glue.c (picglue): --c1mode works again
8961         * src/pic16/glue.c (pic16glue): --c1mode works again
8962         * src/asm.c (printCLine): fix #660034
8963
8964 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
8965
8966         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
8967         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
8968         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
8969         * as/mcs51/lkmem (summary): better fix for sp problem
8970         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
8971         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
8972         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
8973                                               remove --stack-after-data
8974
8975 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
8976
8977         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
8978         * src/SDCCutil.c (join): ugly bug: missing '\0'
8979         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
8980
8981 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8982
8983         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
8984         * src/port.h: typo
8985         * src/pic/main.c (_asmCmd): gpasm supports -o
8986         * src/z80/main.c: more general macros
8987         * device/lib/Makefile.in: remove intermediate files
8988
8989 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8990
8991         * .version: Bumped version number to 2.3.3
8992         * src/SDCCBBlock.c: new option -o
8993         * src/SDCCglobl.h: new option -o
8994         * src/SDCCglue.c: new option -o
8995         * src/SDCCmain.c: new option -o
8996         * src/asm.c: new option -o
8997         * src/ds390/main.c: new option -o
8998         * src/pic/glue.c: new option -o
8999         * src/pic/pcode.c: new option -o
9000         * src/pic/ralloc.c: new option -o
9001         * src/pic16/glue.c: new option -o
9002         * src/pic16/pcode.c: new option -o
9003         * src/pic16/ralloc.c: new option -o
9004         * src/z80/main.c: new option -o
9005         * device/lib/Makefile.in: use -o
9006         * support/regression/ports/ds390/spec.mk: use -o
9007         * support/regression/ports/gbz80/spec.mk: use -o
9008         * support/regression/ports/mcs51/spec.mk: use -o
9009         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
9010         * support/regression/ports/z80/spec.mk: use -o
9011         * support/regression/ports/ucz80/spec.mk: use -o
9012         * support/regression/ports/xa51/spec.mk: use -o
9013         * support/regression/fwk/lib/timeout.c: fix usage string
9014
9015 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
9016         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
9017
9018 2003-01-07    <johan AT balder>
9019
9020         * src/SDCCast.c (decorateType): fixed bug #600035
9021
9022 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
9023         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
9024         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
9025         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
9026         * src/pic/pcode.c: outcommented unused variable to remove warnings
9027         * src/pic/ralloc.c: outcommented unused variable to remove warnings
9028
9029 2003-01-06    <karl AT turbobit.com>
9030         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
9031    regression tests.
9032
9033 2003-01-06    <johan AT balder>
9034
9035         * src/SDCCicode.c: fixed array add
9036
9037 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
9038         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
9039         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
9040
9041 2003-01-04    <johan AT balder>
9042
9043         * src/SDCCval.c (getNelements): fixed the initialized array of structures
9044
9045 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9046         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
9047
9048 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9049         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
9050         * support/regression/tests/bug-524697.c: fit mem usage into 8032
9051
9052 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9053         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
9054
9055 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
9056         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
9057
9058 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
9059         * src/mcs51/main.c: removed {bindir}{sep} from aslink
9060
9061 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9062
9063     * in \sdcc\as\mcs51\ changed these files in order to create an
9064     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
9065     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
9066     following files to include the previous two files: aslink.dsp,
9067     Makefile.aslink, Makefile.bcc, and Makefile.in.
9068
9069     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
9070     .adb instead of .cdb
9071
9072 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9073
9074         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
9075         value from option --iram-size.
9076
9077 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9078
9079         * \sdcc\as\mcs51\lklist.c: added boundary check before using
9080         dram[] array.
9081
9082 2002-09-18    <wiml AT hhhh.org>
9083
9084         * SDCClrange.h: exposed setFromRange() and setToRange()
9085         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
9086           packRegsForAccUse() (bug 542397)
9087         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
9088           multiple times and emitting the fetch operations more than once
9089           added aopGetUsesAcc() function to allow binary operators to
9090           fetch their operands in the correct order; made genMinus() emit
9091           compact code for X = LITERAL - Y
9092
9093 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9094         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
9095         sprintf() in line 1267.
9096
9097 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9098         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
9099         like ports.
9100
9101 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9102         Changes to aslink (All the changes are marked with 'JCF'):
9103
9104         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
9105         summary().
9106
9107         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
9108         area BSEG.  Also moves, if possible, the DATA area down into the internal
9109         ram so more space is available.
9110
9111         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
9112         sflag.
9113
9114         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
9115         not bytes.  Function summary() which creates a memory usage summary
9116         file with extension .mem.  Reports of overlaping stack and small stack
9117         size.  If the space for the stack is less than 16 bytes aslink trows a
9118         warning.
9119
9120         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
9121         the 8051.  Option 'y' for memory summary output file.
9122
9123         Changes to sdcc (All the changes are marked with 'JCF'):
9124
9125         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
9126
9127         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
9128         overlaying area for it (uses RegBankUsed[4]).
9129
9130         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
9131         bank zero as used by default.  By default aslink locates the stack
9132         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
9133         the creation of the .mem file.  Delegates the allocation of data area
9134         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
9135         the begining of the stack area to aslink.
9136
9137         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
9138         glue() in SDCCglue.c creates an area for it.
9139
9140 2002-09-03  Borut Razem <borut.razem AT siol.net>
9141         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
9142         sdcc/src/pic/glue.c:
9143         introduced atexit() handler for teporay files removal in case of
9144         errors, assertions, ...
9145
9146 2002-08-29  Borut Razem <borut.razem AT siol.net>
9147         * sdcc/support/cpp2/auto-host_vc_in.h:
9148         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
9149         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
9150         Maybe there is a similar problem with BORLANDC? It should be checked!
9151
9152         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
9153         corrected improper use of assert: the assignment to clr variable was done inside the assert.
9154         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
9155         was not executed, and the compiler (cl) launched a warning:
9156         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
9157
9158 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
9159         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
9160
9161 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
9162         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
9163
9164         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9165           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
9166           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
9167           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9168           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
9169           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
9170           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
9171         - added Release configuration in VS projects
9172         - review of compiler an linker options
9173         - VC .exe files are generated in bin_vc directory, not to interfere
9174           with binaries generated from other projects (cygwin, mingw, bcc ...)
9175
9176         * sdcc/src/yacc.dsp: added
9177
9178         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
9179         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
9180         and insert the version number definitions from .version
9181
9182         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
9183
9184         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
9185         added - genarate auto-host.h using auto-host_vc_in.h as template
9186
9187         * sdcc/sdcc_vc.h,
9188         removed from CVS, generated automatically
9189
9190 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
9191         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
9192
9193 2002-08-11  Borut Razem <borut.razem AT siol.net>
9194         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
9195
9196 2002-08-10  Borut Razem <borut.razem AT siol.net>
9197         * src/SDCCmain.c (main):
9198         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
9199         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
9200         The consequence was that some temporary files were not removed.
9201
9202         * src/SDCCglue.c:
9203         unification of code in functions tempfilename() and tempfile():
9204         function tempnam() is defined in Visual Studio 6.0 and .NET
9205
9206         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
9207
9208         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9209           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
9210         - removed compiler command line option /WX: Treats all warnings as errors
9211         - update a list of source files, included into the project
9212
9213         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9214           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
9215         changed project type to Generic Project so that can be correcly converted to VS.NET project
9216
9217         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
9218
9219         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
9220
9221         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
9222
9223         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
9224         added return 0 statements after assert() to make compiler happy
9225
9226         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
9227         added newline in the def file to keep MSC compiler satisfied
9228
9229         * sdcc/src/z80/gen.c:
9230         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
9231           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
9232         - solved MSC error in function aopDump()
9233
9234         * sdcc_vc.h: define PREFIX as "\\sdcc"
9235
9236 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
9237         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
9238
9239 2002-06-22  Scott Dattalo <scott AT dattalo.com>
9240         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
9241         - Rewrote the register banking algorithm.
9242         - Added pCode live-range analysis to registers (for now, only non-used and
9243         singly-used registers optimized away)
9244
9245         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
9246
9247         * 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.
9248
9249 2002-05-10  Scott Dattalo <scott AT dattalo.com>
9250         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
9251
9252 2002-04-22  Michael Hope  <michaelh AT vroom>
9253
9254         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
9255
9256         * configure.in (DD_COPT): Added include support required for gbdk.
9257
9258         * .version: Bumped version number just to increase it.
9259
9260         * src/SDCCmain.c: Added -nostdinc to the default options.
9261
9262 2002-04-15  Michael Hope  <michaelh AT vroom>
9263
9264         * device/lib/z80/printf.c (sprintf): Added.
9265
9266         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
9267
9268         * src/z80/peeph.def: Added transpose redundent load rule.
9269
9270         * src/z80/main.c: Added force callee saves for jaune.
9271
9272         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
9273
9274         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
9275
9276 2002-03-28  Johan Knol  <johan AT balder>
9277
9278         * src/SDCCval.c: fixed bug #532436
9279
9280 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9281         * /src/port.h:
9282         Added "char *Processor" field to the port structure.
9283
9284         * /src/SDCCmain.c:
9285         Added -p option. Allows port dependent processor to be specified.
9286
9287         * all ports:
9288         Initialized the new field char *Processor field to NULL in all ports
9289
9290         * /src/pic/*:
9291         Compiler generated registers for interrupt context saving
9292         were not getting allocated.
9293
9294 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
9295
9296         * /src/SDCCast.c:
9297         Fixed left shift. Will promote the left side of a left shift
9298         if a) left shifting more than size of operand or b) when assigned
9299         to something size > size of left side
9300
9301 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9302         * src/pic/*
9303         tons of changes. Register allocation has been
9304         rewritten. Added customization for the various PICs. Flow
9305         analysis is restructured. ...
9306
9307         * src/pic/device.h:
9308         Added
9309
9310         * src/pic/device.c:
9311         Added. device.c is a PIC port hack to accomodate variations
9312         in PIC devices.
9313
9314 2002-03-13  Michael Hope  <michaelh AT vroom>
9315
9316         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
9317
9318 2002-03-04  johanknol  <johanknol AT manik>
9319
9320         * /src/SDCCval.c: fixed
9321
9322         const unsigned char arr[][2] = { { 0, 1 } };
9323         t18.c:1: error: Initializer element is not constant
9324
9325 2002-03-04  bela  <bela AT manik>
9326
9327         * /device/include/mcs51reg.h:
9328         ds89c420 register definition update
9329
9330 2002-03-03    <johan AT FRIJA>
9331
9332         * support/Util/SDCCerr.c: did something, but don't no why anymore
9333
9334         * support/regression/tests/bug-524691.c: made it a little less shy
9335
9336         * src/SDCCast.c (decorateType): fixed bug #524697
9337
9338         * src/SDCCast.c: made some lineno improvements
9339
9340         * src/SDCCval.c (getNelements): changed warning to error
9341
9342         * src/SDCCglue.c (printIvalArray): changed warning to error
9343
9344         * src/SDCCicode.c: fixed a warning for mingw
9345
9346         * src/SDCCast.c (decorateType): fixed the << promotion for ops
9347
9348         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
9349
9350 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
9351
9352         * src/ds390/peeph.def:
9353         Added some more peephole rules
9354
9355         * src/ds390/gen.c: Various fixes & enhancements
9356
9357         * src/SDCClrange.c, src/SDCClrange.h:
9358         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
9359
9360         * src/ds390/ralloc.c:
9361         various fixes & enhancements (ds390) specific
9362
9363         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
9364         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
9365         from rallocs.
9366
9367         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
9368
9369 2002-03-02    <johan AT FRIJA>
9370
9371         * src/SDCCast.c (decorateType): fixed bug #524708
9372
9373         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
9374
9375         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
9376
9377 2002-03-01  Michael Hope  <michaelh AT vroom>
9378
9379         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
9380
9381         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
9382
9383 2002-03-01    <johan AT FRIJA>
9384
9385         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
9386
9387         * src/SDCCast.c (decorateType): fixed bug #524209
9388
9389         * src/SDCCval.c (valNot): fixed bug #524195
9390
9391 2002-02-26    <johan AT balder>
9392
9393         * src/xa51/gen.c: fixed a warning
9394
9395         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
9396
9397         * src/SDCCast.c (decorateType): fixed bug #522534
9398
9399 2002-02-23    <johan AT balder>
9400
9401         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
9402
9403 2002-02-22    <johan AT balder>
9404
9405         * src/SDCCast.c: fixed bug #514865
9406
9407         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
9408
9409 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
9410
9411         * sdcc/src/SDCCloop.c:
9412         Previous fix was not good. basic blocks that have "break" or "return" are
9413         not really partof a loop , but live ranges used in these blocks should
9414         be live thru the entire loop, so set partOfLoop but don't add them to
9415         loop region
9416
9417 2002-02-21    <johan AT FRIJA>
9418
9419         * src/SDCCcse.c: fixed bug #514308
9420
9421 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
9422
9423         * src/SDCCloop.c:
9424         Fixed BUG #519583. If a conditional block ended in a return/break
9425         statement inside a loop, it was not being considered part of the loop.
9426
9427         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
9428
9429 2002-02-10  Karl Bongers <karl AT turbobit.com>
9430
9431         * debugger/*:
9432         Fixed up SDCDB debugger somewhat.  Updated debugger/README
9433         with lots of comments and notes.
9434
9435         * device/examples/test2.c:
9436         Fix bug, "red" variable not being initialized(compiler complained).
9437
9438         * device/examples/Makefile, examples/test3.c:
9439         Add Makefile in device/examples folder, compiles test3.c
9440         for use as a multiple module SDCDB test case.
9441
9442         * sim/ucsim/cmd.src/cmdset.cc:
9443         Took out debug printfs in ucsim "next" command.
9444
9445         * sim/ucsim/xa.src:
9446         Karl and Johan start ucsim XA support.  Most dissassembly working,
9447         about 75% emulation done(plenty of work remaining).
9448
9449         * sim/ucsim/z80.src:
9450         Add Z80 support to ucsim, add test-ucz80 regression test,
9451         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
9452         Notice z80 compiler fails on examples/test3.c/crc code.
9453
9454 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
9455
9456         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
9457         Added support for --parms-in-bank1
9458
9459         * src/ds390/peeph.def:
9460         added a few more peephole optimzations
9461
9462         * src/ds390/main.c:
9463         1) added __builtin_inp & __builtin_outp used to read in data of given length
9464            from a memory mapped port
9465         2) added __builtin_memcmp
9466         3) added __builtin_swapw swap bytes of a short
9467
9468         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
9469         1) handle multiple send & receives from register bank1
9470         2) ralloc can now allocate DPTR1 to some liveRanges
9471
9472         * src/SDCCsymt.c, src/SDCCsymt.h:
9473         changes to handle multiple sends & receives
9474
9475         * src/SDCCptropt.h:
9476         added some pointer arithmetic optimization
9477
9478         * src/SDCCptropt.c:
9479         added some pointer arithmetic optimizations but not stable yet so not
9480         called from anywhere (will get this working shortly)
9481
9482         * src/SDCCopt.c: fixed for multiple sends & receives
9483
9484         * src/SDCCmain.c:
9485         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
9486         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
9487            set preprocessor defines (depending on options)
9488
9489         * src/SDCCicode.c, src/SDCCicode.h:
9490         changes made to handle multiple sends & receives
9491
9492         * src/SDCCglobl.h:
9493         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
9494
9495         * src/SDCCcse.c, src/SDCCcse.h:
9496         added function findbackward def (to be used in upcoming optimization)
9497
9498         * src/SDCCcflow.c, src/SDCCcflow.h:
9499         added function returnAtEnd - to determine if a basic block terminates with
9500         a RETURN iCode
9501
9502         * src/SDCCast.c, src/SDCCast.h:
9503         added option parms-in-bank1
9504
9505         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
9506         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
9507         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
9508         adjusted for --parms-in-bank1 option
9509
9510         * device/include/string.h:
9511         donot redefine "reentrant" keyword
9512
9513         * device/include/ds80c390.h: Added some more SFRs
9514
9515 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
9516
9517         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
9518
9519 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
9520
9521         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
9522
9523 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
9524
9525         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
9526
9527 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
9528
9529         * Added --xram-movc option
9530
9531 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
9532
9533         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
9534
9535 2002-01-11  Johan Knol
9536
9537         * Added math lib of Jesus Calvino-Fraga
9538
9539 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
9540
9541         * src/SDCCmain.c (processFile): fix processing of ../../src.c
9542         * support/regression/Makefile: new target test-mcs51-stack-auto
9543         * support/regression/ports/mcs51-stack-auto/spec.mk: added
9544
9545 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9546
9547         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
9548
9549 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9550
9551         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
9552
9553 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
9554
9555         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
9556
9557         * src/SDCCglue.h: add definition for printIvalChar()
9558
9559 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9560
9561         * src/SDCCast.c: fix #498138 by Johan
9562
9563         * src/SDCCglue.c: fix #498138 by Johan
9564
9565 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9566
9567         * support/regression/Makefile: fix clean
9568
9569         * support/regression/ports/ds390/support.c: fix transmission of last character
9570
9571 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
9572
9573         * /sdcc/src/ds390/gen.c:
9574         a) improved computing address of stack variable
9575         b) took out some #if 0 code
9576         c) improved parmBytes adjustment
9577         d) improved genPlusIncr & genMinusIncr
9578         e) genCmp could generate bad code (when left assigned to DPTR)
9579         f) Fixed bug in hasInc
9580
9581         * /sdcc/src/ds390/ralloc.c:
9582         a) packRegsForSupport could mess up live information (Fixed)
9583         b) packRegsDPTRuse could be incorrect for left & right shift
9584
9585         * /sdcc/src/mcs51/ralloc.c:
9586         packRegsForSupport could mess up the live information (Fixed)
9587
9588         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
9589
9590         * /sdcc/src/SDCCast.c:
9591         can reverse a loop even if function call is present as long
9592         as the loop control variable is local & is not passed as parameter
9593
9594 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9595
9596         * /sdcc/ChangeLog: *** empty log message ***
9597
9598         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
9599         More builtin function additions for TININative
9600
9601         * /sdcc/src/ds390/ralloc.c:
9602         Had broken the regression testsuite
9603
9604         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
9605
9606         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
9607         Added funcattr hasStackParms will be set for reentrant functions when there
9608         are paramteres on the stack, this helps in minimizing frame pointer generation
9609         typeFromStr can handle function pointers now
9610
9611         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
9612         *** empty log message ***
9613
9614 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9615
9616         * /src/ds390/gen.c, /src/ds390/main.c:
9617         More builtin function additions for TININative
9618
9619         * /src/ds390/ralloc.c:
9620         Had broken the regression testsuite
9621
9622         * /src/SDCCast.c: Fixed a bug in dumptree
9623
9624         * /src/SDCCsymt.c, /src/SDCCsymt.h:
9625         Added funcattr hasStackParms will be set for reentrant functions when there
9626         are paramteres on the stack, this helps in minimizing frame pointer generation
9627         typeFromStr can handle function pointers now
9628
9629         * /doc/builtins.txt, /doc/TININative.txt:
9630         *** empty log message ***
9631
9632
9633 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9634
9635         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
9636         ALPHA version for -mTININative
9637
9638         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
9639         updated to reflect changes in the port structure
9640
9641         * /src/port.h:
9642         added function do_assemble (similar to do_link) if non-null this function
9643         will be called to do assembly (-mTININative) requires a multi command
9644         assembly
9645         added function genAssemblerEnd will be called to generate assembler Epilogue
9646
9647         * /src/SDCCsymt.c:
9648         added _JavaNative to debug info printing
9649
9650         * /src/SDCCmain.c: added option --tini-libid
9651         added port->do_assemble function (-mTININative) has a multi command assemble
9652
9653         * /src/SDCCglue.c: Disabled "constExpr" check
9654         added port->genAssemblerEnd function
9655
9656         * /src/SDCCglobl.h: Added option --tini-libid value
9657
9658         * /src/SDCCast.h:
9659         tookout optimizeCompare from the header (has no external references)
9660
9661         * /src/SDCCast.c: made one more function "static"
9662
9663 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
9664
9665         * src/z80/mappings.i: Added z80asm support.
9666
9667         * src/z80/main.c: Added z80asm support on --asm=z80asm
9668
9669         * src/z80/gen.c: Fixed asm portability issues.
9670
9671         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
9672
9673         * src/SDCCglue.c (printExterns): Added global/extern split.
9674
9675 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
9676
9677         * support/regression/Makefile: added test for mcs51 model large
9678
9679         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
9680
9681         * support/regression/ports/gbz80/spec.mk: added -mgbz80
9682
9683 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
9684
9685         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
9686
9687 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
9688
9689         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
9690
9691         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
9692
9693 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
9694
9695         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
9696
9697         * support/regression/tests/simplefloat.c: Port to mcs51.
9698
9699 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
9700         * support/regression/tests/bug-485362.c: Added.
9701
9702         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
9703
9704         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
9705
9706         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
9707
9708         * src/z80/gen.c (aopDump): Added a dump function.
9709
9710 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
9711         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
9712
9713         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
9714
9715         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
9716
9717         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
9718
9719         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
9720
9721         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
9722
9723         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
9724
9725         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
9726
9727         * support/regression/ports/ds390/support.c: Use tinibios.
9728
9729         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
9730
9731 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
9732
9733         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
9734         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
9735
9736         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
9737
9738         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
9739
9740 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
9741
9742         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
9743
9744         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
9745         (packRegsForIYUse): Created and optimised.
9746
9747 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9748
9749         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
9750 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
9751
9752         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
9753
9754         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
9755
9756         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
9757
9758 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9759
9760         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
9761
9762         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
9763
9764 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9765
9766         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
9767
9768         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
9769
9770         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
9771
9772 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9773
9774         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
9775         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
9776         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
9777
9778         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
9779
9780         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
9781         (genNotFloat): Added.
9782         (genUminusFloat): Added.
9783
9784         * device/lib/z80/Makefile: Added floating pt stubs.
9785
9786         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
9787
9788         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
9789
9790         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
9791
9792 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9793
9794         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
9795
9796         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
9797
9798         * sdcc/support/regression/Makefile: Add port ds390.
9799
9800         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
9801
9802         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
9803
9804         * sdcc/support/regression/ports/ds390/spec.mk: Added.
9805
9806         * sdcc/support/regression/ports/ds390/support.c: Added.
9807
9808         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
9809
9810         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
9811
9812         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
9813
9814 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9815
9816         * device/include/malloc.h: Added z80 and gbz80 support.
9817
9818         * device/lib/gbz80/heap.s: Added.
9819
9820         * device/lib/z80/heap.s: Added.
9821
9822         * device/lib/malloc.c: Added z80 and gbz80 support.
9823
9824         * support/regression/tests/malloc.c (testMalloc): Added.
9825
9826         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
9827
9828         * support/regression/tests/bug-478094.c: Added.
9829
9830         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
9831
9832 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
9833
9834         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
9835
9836         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
9837
9838         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
9839
9840         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
9841
9842         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
9843
9844 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9845
9846         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
9847
9848 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
9849
9850         * support/regression/tests/bug-477927.c: Added.
9851
9852         * src/z80/peeph.def: Added minor rules.
9853
9854         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
9855
9856         * src/z80/peeph.def: Added jump optimisation modification.
9857
9858 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
9859
9860         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
9861
9862 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
9863
9864         * support/regression/tests/funptrs.c: Added.
9865
9866 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
9867
9868         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
9869
9870 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
9871
9872         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
9873
9874         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
9875
9876         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
9877         (movLeft2ResultLong): Created.
9878
9879         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
9880         (joinPushes): Added.  Joins two char pushes into a word push.
9881
9882 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
9883
9884         * support/cpp2/Makefile.in (install): Added creation of dest dir.
9885
9886         * support/makebin/Makefile (install): Added creation of dest dir.
9887
9888 2001-10-24 Karl Bongers <karl AT turbobit.com>
9889
9890         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
9891
9892 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
9893
9894         * src/z80/ralloc.c: Turned off faulty pack for one use.
9895
9896         * src/z80/peeph-gbz80.def: Removed redundent restart options.
9897
9898         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
9899
9900 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
9901
9902         * support/regression/Makefile: Improved clean
9903
9904         * support/regression/ports/gbz80/spec.mk: Added clean
9905
9906         * support/regression/ports/host/spec.mk: Added clean
9907
9908         * support/regression/ports/z80/spec.mk: Added clean
9909
9910         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
9911
9912         * support/regression/ports/mcs51/timeout.c: little improvements
9913
9914 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
9915
9916         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
9917
9918         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
9919
9920         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
9921
9922 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
9923
9924         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
9925
9926         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
9927
9928 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
9929         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
9930
9931         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
9932
9933         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
9934
9935         * src/mcs51/main.c (_linkCmd): Added bin path to command.
9936
9937         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
9938
9939         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
9940
9941         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
9942
9943         * support/regression/tests/longor.c: Added.
9944
9945 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
9946
9947         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
9948
9949         * as/mcs51/aslink.h: define PATH_MAX
9950
9951         * as/mcs51/asm.h: define PATH_MAX
9952
9953         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
9954
9955         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
9956
9957         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
9958
9959         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
9960
9961         * src/SDCCglobl.h: define PATH_MAX
9962
9963         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
9964
9965         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
9966
9967 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
9968
9969         * src/z80/gen.c (gencjneshort): Fixed
9970
9971         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
9972
9973 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
9974
9975         * support/regression/tests/bug-469671.c: Added.
9976
9977         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
9978
9979 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
9980
9981         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
9982
9983         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
9984
9985 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
9986
9987         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
9988
9989         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
9990
9991         * src/device/lib/_mullong.c : removed hint: nooverlay bug
9992
9993         * src/device/lib/_divuint.c : removed hint: nooverlay bug
9994
9995         * src/device/lib/_divulong.c: removed hint: nooverlay bug
9996
9997         * src/device/lib/_moduint.c : removed hint: nooverlay bug
9998
9999         * src/device/lib/_modulong.c: removed hint: nooverlay bug
10000
10001 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
10002
10003         * 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.
10004
10005         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
10006
10007         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
10008
10009 2001-10-07    <johan AT FRIJA>
10010
10011         * device/lib/gets.c (gets): fixed the return value.
10012
10013 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
10014         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
10015
10016         * 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.
10017
10018         * 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.
10019
10020         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
10021
10022         * src/pic/gen.c: Removed Safe_strdup.
10023
10024         * configure.in: Added option to enable libgc support.
10025
10026         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
10027         (bitVectUnion): Optimised.
10028         (bitVectIntersect): Optimised.
10029         (bitVectBitsInCommon): Optimised.
10030         (bitVectCplAnd): Optimised.
10031
10032         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
10033
10034 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10035
10036         * src/SDCCmain.c: distinguish between assembler debug and plain options
10037
10038         * src/avr/main.c:   remove standard assembler options
10039
10040         * src/ds390/main.c: remove standard assembler options
10041
10042         * src/mcs51/main.c: remove standard assembler options
10043
10044         * src/port.h: removed "PENDING" comment
10045
10046 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10047
10048         * src/device/lib/_mulint.c  : new, with assember functions
10049
10050         * src/device/lib/_mullong.c : new, with assember functions
10051
10052         * src/device/lib/_divuint.c : with assember functions
10053
10054         * src/device/lib/_divsint.c : with assember functions
10055
10056         * src/device/lib/_divulong.c: with assember functions
10057
10058         * src/device/lib/_divslong.c: with assember functions
10059
10060         * src/device/lib/_moduint.c : with assember functions
10061
10062         * src/device/lib/_modsint.c : with assember functions
10063
10064         * src/device/lib/_modulong.c: with assember functions
10065
10066         * src/device/lib/_modslong.c: with assember functions
10067
10068         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
10069
10070         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
10071
10072         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
10073                                       replaced _mululong.c and _mulslong.c by _mullong.c
10074
10075 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10076
10077         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
10078
10079 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10080
10081         * src/SDCCglue.c: test, if win32api is available for MINGW
10082
10083 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10084
10085         * src/SDCCsymt.c: no more _modifier in printTypeChain()
10086         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
10087         * support/regression/ports/gbz80/spec.mk: removed GENERIC
10088         * support/regression/ports/host/spec.mk: removed GENERIC
10089         * support/regression/ports/mcs51/spec.mk: removed GENERIC
10090         * support/regression/ports/z80/spec.mk: removed GENERIC
10091
10092 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
10093
10094         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
10095
10096         * support/regression/tests/bug-467035.c: Created.
10097
10098 2001-10-01    <johan AT FRIJA>
10099
10100         * src/SDCC.y: fixed bug #466586 part 1
10101
10102 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
10103
10104         * SDCCicode.c: z80 has no generic pointers
10105         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
10106
10107 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
10108
10109         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
10110
10111 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
10112
10113         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
10114
10115         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
10116
10117 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
10118
10119         * configure.in: Fixed up so that ucsim is only configured once.
10120
10121         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
10122
10123         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
10124         (getPathDifference): As above.
10125
10126         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
10127
10128         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
10129
10130 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
10131         * .version: Updated to 2.3.1
10132
10133         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
10134         Added copyright header.
10135
10136         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
10137         (assemble): Added support for macro based assembler commands.
10138         (linkEdit): Added support for macro based linker commands.
10139         (preProcess): Changed the pre-processor to use macros.
10140         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
10141         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
10142
10143         * device/lib/z80/crt0.s: Added module name for debugging.
10144
10145 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
10146
10147         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10148
10149         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
10150
10151         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
10152
10153         * src/Makefile.in: Added SDCCmacro and SDCCutil
10154
10155 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
10156
10157         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10158
10159 2001-09-16    <johan AT FRIJA>
10160
10161         * 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.
10162
10163 2001-09-15    <johan AT FRIJA>
10164
10165         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
10166         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
10167
10168 2001-09-11    <johan AT FRIJA>
10169
10170         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
10171
10172 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
10173
10174         * support/regression/tests/bug-460444.c: Added test case.
10175
10176         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
10177         (genCast): Added justification for all of the asserts.
10178
10179 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
10180
10181         * support/regression/support.c: _xdata replaced by xdata
10182
10183         * support/regression/spec.mk: removed _generic
10184
10185 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
10186
10187         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
10188
10189         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
10190         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
10191
10192         * src/z80/peeph.def: Added a rule to optimise shift then compare.
10193
10194         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
10195
10196         * support/regression/tests/bug-460010.c: Added test case.
10197
10198         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
10199
10200 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
10201
10202         * support/regression/Makefile: inter-port-clean adjusted for mcs51
10203
10204         * support/regression/testfwk.c: removed workaround for bug #436344
10205
10206         * support/regression/tests/bp.c: use less memory with mcs51
10207
10208         * support/regression/tests/bug-441448.c: use less memory
10209
10210         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
10211
10212         * support/regression/collate-results.py: typo
10213
10214 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
10215
10216         * support/regression/tests/fetchoverlap.c: Added new test case.
10217
10218         * support/regression/tests/bp.c: Added new test case.
10219
10220         * support/regression/tests/bug-448984.c: Added new test case.
10221
10222         * support/regression/tests/pow2shifts.c: Added new test case.
10223
10224         * src/z80/gen.c: Turned off the noise it normally generates for the release.
10225         (genlshTwo): Fixed right shift for count > 8.
10226
10227         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
10228
10229 2001-09-08    <johan AT FRIJA>
10230
10231         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
10232
10233 2001-09-07    <johan AT FRIJA>
10234
10235         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
10236
10237         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
10238
10239 2001-09-06    <johan AT FRIJA>
10240
10241         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
10242         * bernhard noted me at this: "() equals to (void)" (1.38)
10243
10244 2001-09-05    <johan AT FRIJA>
10245
10246         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
10247
10248 2001-09-04    <johan AT FRIJA>
10249
10250         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
10251
10252
10253 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
10254
10255         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
10256
10257 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
10258
10259         * link/z80/aslink.h: Fixed path for PATH_MAX
10260
10261 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
10262
10263         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
10264
10265         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
10266
10267         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
10268
10269         * 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.
10270
10271 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
10272
10273         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
10274         (genCmp): Fixed up genCmp for the GB with longs.
10275
10276         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
10277
10278         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
10279
10280         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
10281
10282         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
10283
10284 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
10285
10286         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
10287
10288 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
10289
10290         * 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.
10291
10292         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
10293
10294 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
10295
10296         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
10297
10298         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
10299
10300 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
10301
10302   * sim/ucsim/configure:    little improvement of Cygwin-detection
10303   * sim/ucsim/configure.in: little improvement of Cygwin-detection
10304   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
10305   * support/regression/tests/bug-221100.c: small changes for mcs51
10306   * support/regression/tests/bug-221168.c: small changes for mcs51
10307   * support/regression/tests/bug-227710.c: small changes for mcs51
10308   * support/regression/tests/staticinit.c: small changes for mcs51
10309   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
10310   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10311   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10312
10313 $Revision$