* sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized varaibles
[fw/sdcc] / ChangeLog
1 2005-11-01 Borut Razem <borut.razem AT siol.net>
2
3         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
4           enabled sockets on WIN32
5         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized varaibles
6
7 2005-10-31 Borut Razem <borut.razem AT siol.net>
8
9         * support/regression/generate-cases.py: escape backslashes in {testcase}:
10           WIN32 backslash path delimiters should be escaped when used in C strings
11         * support/regression/tests/bitfields.c: exclude failing assertions for
12           __CYGWIN32__ and __MINGW32__ hosts
13
14 2005-10-30 Borut Razem <borut.razem AT siol.net>
15
16         * src/SDCCutil.c: corrected double comparison typo
17
18 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
19
20         * device/lib/medium/Makefile: added for new memory model medium
21         * device/include/asm/mcs51/features.h: updated for medium/pdata
22         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
23           added Multiply & Accumulate sbit's and MAC0_PAGE define
24         * device/include/mcs51/c8051f300.h: added sfr16 definitions
25         * device/include/mcs51/c8051f310.h: added sfr16 definitions
26         * device/lib/_mullong.c: update for medium model
27         * device/lib/incl.mk: added medium model
28         * doc/sdccman.lyx: documented medium model
29         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
30         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
31         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
32         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
33           (allocParms): set SCLS and OCLS to pdata for medium model
34         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
35           for pdata,
36           (powof2): return <0 if not power of 2
37         * src/avr/gen.c (genBitWise): use updated powof2
38         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
39           (shiftR2Left2Result): small optimization in setup, save acc when storing,
40           (shiftLLeftOrResult): use B if necessary
41         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
42         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
43         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
44         * support/regression/Makefile.in: added test-mcs51-medium
45         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
46
47 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
48
49         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
50         specifier unsigned
51         * device/lib/time.c (mktime): fixed bug 1334315
52
53 2005-10-28 Raphael Neider <rneider AT web.de>
54
55         * device/include/pic/p16f_common.inc: added common declarations
56         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
57
58 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
59
60         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
61           (aopPutUsesAcc): added to predict accumulator use,
62           (assignResultValue): save acc if necessary,
63           (genMinusDec): store result if indirectly addressed,
64           (genDivOneByte):  save acc if necessary,
65           (movLeft2Result): bugfix if left already in acc,
66           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
67             attention to accumulator use (esp. pdata),
68           (genReceive): receive pdata correctly
69         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
70         * src/SDCCicode.h: added isOperandInPagedSpace prototype
71
72 2005-10-27 Raphael Neider <rneider AT web.de>
73
74         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
75
76 2005-10-27 Raphael Neider <rneider AT web.de>
77
78         * .version: changed version to 2.5.4
79         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
80         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
81           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
82             arithmetics support routines
83         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
84         * device/lib/Makefile.in: also create installdir for pic
85
86         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
87           pic14 port as well
88         * src/pic/device.c (dump_sfr): rewritten to delegate register
89           placement to the linker (use `extern sym' rather than sym EQU addr),
90           (validAddress): fixed to check last specified address
91         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
92           (popGetLit): truncate literal value to 8 bit,
93           (popGet): moved assert to more appropriate place
94           (popGetExternal): create pCode operand from and mark the according
95             symbol as being `extern'
96           (popGetAddr): added sanity check on immediate's offset, provide
97             GPOINTER tag on demand
98           (aopPut): fixed for immediates,
99           (mov2w_op): move operand's address or contents to WREG (depending on
100             operand type), safer variant of mov2w,
101           (movwf,call_libraryfunc): NEW, handy abbreviations,
102           (get_argument_pcop,get_return_val_pcop,pass_argument,
103           get_returnvalue): interface for accessing function parameters and
104             return values,
105           (assignResultValuei,genRet): use new parameter/return value interface
106           (pic14_getDataSize): back to old version handling generic pointers,
107           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
108             provided implementation and/or fixed old one,
109           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
110             calls, removed legacy 8051 reference code
111           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
112           (loadSignToC): NEW, move the operands sign bit to CARRY,
113           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
114             genRightShiftSigned, accepts negative shift counts,
115           (setup_fsr): load FSR and adjust IRP (indirect memory access),
116           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
117             generic pointers, __data pointers and __code pointers,
118           (genUnpackBits,genPackBits): rewritten to work with generic pointers
119             and signed bitfields, limit bitfields to 8 bit,
120           (genDataPointerGet): fixed number of bytes read,
121           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
122           (genPointerGet,genPointerSet): fixed handling of __code pointers,
123             pointers to constant data are no longer assumed to point to __code
124             space, removed invalid pointer types,
125           (bitpatternFromVal): retrieve the PICs representation of an integer
126             or float literal,
127           (genDataPointerSet): fixed assigning to po_immediate operands,
128           (genGenPointerSet): implemented as library call,
129           (genIfx): fixed incorrect condition,
130           (genAddrOf): limit generic pointers' addresses to 2 bytes,
131             provide GPOINTER tag according to destination's storage class,
132           (genCast): added code to handle casting to generic pointers, added
133             sign-/zero extension of the result
134           (aop_isLitLike,op_isLitLike): fixed handling of immediates
135         * src/pic/gen.h: added macros to access IRP bit in STATUS register
136         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
137           extend the result
138         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
139           address/register resides in the shared banks
140           (emitSymbolToFile): improved to handle global and `pinned' symbols,
141             put all variables into separate sections (have the linker arrange
142             them)
143           (picglue): put init code and interrupt handlers in separate sections
144         * src/pic/main.c: added port specific options table, modified to PORT
145           structure to make GPOINTERs 3 byte, added pic14_options
146           (_pic14_do_link): private linking routine (update paths to libraries,
147             add libsdcc.lib by default)
148         * src/pic/main.h: declare pic14_options
149         * src/pic/pcode.c: fixed instructions i/o relations,
150           (RegCond): reverted to correct version,
151           (newpCodeOpLit): truncate literals to 8 bit,
152           (genericPrint): added debug output,
153           (getRegFromInstruction): fixed for various operand types, simplified
154           (BuildFlow): fixed broken handling of isntructions with labels
155           (LinkFlow): start at last instruction in flow (skip trailing comments),
156             pass the flow on to the next instruction after CALL
157           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
158           (insertPCodeInstruction): fixed inserting after a skip instruction,
159           (DoBankSelect): fixed for labeled instructions
160           (OptimizepBlock): honor --nopeep switch
161           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
162         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
163         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
164           (pCodeOptime2pCodes): allow disabling this optimization via
165             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
166             but is still buggy), started implementation of a dataflow based
167             pCode optimization (CSE + dead code elimination)
168           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
169         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
170           names are independant of the stack location and therefore portable across
171           devices
172
173 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
174
175         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
176           (selectSpil): fixed bug 1337835 by not spilling bit variables
177         * support/regression/tests/bug1337835.c: added test for this bug
178         * src/mcs51/peeph.def: restart after rule 3.c,
179           addded rules 263.x to optimize loading constants
180
181 2005-10-26 Raphael Neider <rneider AT web.de>
182
183         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
184         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
185           (genAssign): emit warning when casting literals to generic pointer
186             type, also applies when taking the address of a fixed variable,
187           (genCast): improved casting to generic pointers
188         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
189           extern variables, added verbose error message
190         * device/include/pic16/{string.h,errno.h}: added #pragma library c
191
192 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
193
194         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
195         carry must be complemented too
196         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
197         could be emitted by genMinus
198         * src/SDCCval.c (constVal): fixed bug 1305065
199
200 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
201
202         * src/SDCCast.c (addCast): added promotion for bit variables
203         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
204         promotion casts + optimisation
205         (optimizeGetWord): fix warning 'i' might be used uninitialized
206         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
207         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
208
209 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
210
211         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
212         all chars are promoted to int; promotion should be handled in SDCCast.c
213
214 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
215
216         * device/lib/_strcmp.c: Fixed bug 1326457
217
218 2005-10-11 Raphael Neider <rneider AT web.de>
219
220         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
221         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
222
223 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
224
225         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
226         * support/regression/tests/sfr16.c: added test for the sfr32 bug
227
228 2005-10-04 Raphael Neider <rneider AT web.de>
229
230         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
231           device/lib/pic16/pics.all: added pic18f1320
232         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
233
234 2005-09-30 Raphael Neider <rneider AT web.de>
235
236         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
237         * src/pic16/devices.inc: NEW, provides device descriptions
238         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
239
240 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
241
242         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
243           GETHBIT
244
245 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
246
247         * doc/sdccman.lyx: updated Highest Order Bit documentation,
248           documented Any Order Bit, Higher Order Byte and Higher Order Word
249         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
250         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
251           (optimizeGetAbit): new, to get any bit, not only the high bit,
252           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
253           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
254           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
255           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
256             RIGHT_OP: also try GETBYTE, GETWORD optimization,
257             GETABIT, GETBYTE, GETWORD: decorate them,
258           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
259           (ast_print): added GETABIT, GETBYTE, GETWORD
260         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
261         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
262           (geniCodeBinary): new generic binary icode,
263           (ast2iCode): added GETABIT, GETBYTE, GETWORD
264         * src/port.h: updated comment for PORT.hasExtBitOp
265         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
266           (genGetByte): new, to get a single byte,
267           (genGetWord): new, to get a word from a long,
268           (gen51Code): added GETABIT, GETBYTE, GETWORD
269         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
270
271 2005-09-23 Raphael Neider <rneider AT web.de>
272
273         * configure.in, configure: have device/lib/pic configured
274         * device/lib/Makefile.in: added model-pic14
275         * device/lib/clean.mk: added pic/ to clean rule
276         * device/lib/pic: added rudimentary pic14 library providing support
277           functions for multiplication/division/generic pointer access
278         * src/SDCCopt.c (convilong): mark support functions as extern
279           for pic14 port as well
280         * src/pic/gen.c (genMult): added assertions,
281           (genpic14Code): emit warning on unhandled iCodes
282         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
283         * src/pic/pcode.c (pCodeOpCopy),
284         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
285           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
286           SFR_REGISTER}), made safe for future extensions
287         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
288           instructions even if preceeded by SKIP instructions (also remove
289           them); removed unused code
290         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
291           prevents leaving parts of the structure uninitialized after copying
292
293 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
294
295         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
296           ago by me
297         * support/regression/tests/addsub.c: added test for the bug
298
299 2005-09-21 Raphael Neider <rneider AT web.de>
300
301         * device/include/pic16/pic18f1220.h,
302           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
303         * device/lib/pic16/Makefile.rules: added missing opening paren
304         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
305           are provided in genutils.c,
306           (genUminusFloat,genUminus,genCmpEq): added asserts on different
307           operand/result sizes,
308           (genCmp): assert on NULL pointers first, then check deref'ed values
309         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
310           result size
311
312 2005-09-18 Raphael Neider <rneider AT web.de>
313
314         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
315           as these are now unused,
316           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
317         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
318           local, avoids uninitialized pointer dereference on r->name
319         * src/pic16/ralloc.c (newReg): fixed indentation
320
321 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
322
323         * src/SDCCval.c (constVal): fixed bug 730366
324         * support/Util/SDCCerr.c,
325         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
326
327 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
328
329         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
330
331 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
332
333         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
334
335 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
336
337         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
338           (hex2dec): made hex_digit unsigned char, removed ascii dependance
339         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
340           (hex2dec): made hex_digit unsigned char, removed ascii dependance
341         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
342         * packihx/packihx.c (hexDigit): made c unsigned char
343         * as/mcs51/lklibr.c (fndsym),
344         * link/z80/lkgb.c (gb),
345         * link/z80/lklibr.c (fndsym),
346         * link/z80/lkrloc.c (relr),
347         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
348         * src/SDCC.lex (checkCurrFile, process_pragma),
349         * src/SDCCglue.c (spacesToUnderscores),
350         * src/SDCCmain.c (setParseWithComma, processFile),
351         * src/asm.c (tvsprintf, printCLine),
352         * src/avr/gen.c (emitcode, aopPut),
353         * src/ds390/gen.c (emitcode),
354         * src/hc08/gen.c (emitcode, emitinline),
355         * src/mcs51/gen.c (emitcode, genInline),
356         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
357           tokenizeLineNode),
358         * src/pic/ralloc.c (debugLog),
359         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
360           tokenizeLineNode),
361         * src/pic16/ralloc.c (debugLog),
362         * src/z80/main.c (_process_pragma):
363            made all ctype.h function calls safe
364         * src/SDCCopt.c: include math.h for fabs
365         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
366           and used them throughout the code to make ctype.h function calls safe
367         * src/ds390/main.c (asmLineNodeFromLineNode),
368         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
369         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
370            unsigned char*
371         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
372           (newpCodeAsmDir): made ctype.h function calls safe
373         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
374           pic16_emitcode):  made lbp unsigned char*
375         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
376           (pic16_newpCodeAsmDir): made ctype.h function calls safe
377         * src/xa51/gen.c (emitcode),
378         * src/z80/gen.c (_emit2): made lbp unsigned char*
379         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
380            char*
381
382 2005-09-05 Raphael Neider <rneider AT web.de>
383
384         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
385           access bank splitpoint
386
387 2005-09-05 Raphael Neider <rneider AT web.de>
388
389         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
390
391 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
392
393         * .version: changed to version 2.5.3
394         * doc/sdccman.lyx: changed version to 2.5.3,
395           documented --codeseg and --constseg and pragma codeseg and constseg,
396           documented bit parameters (reentrant) and bit returning
397         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
398            currFunc->recvSize, but is this ok for all ports?
399           (ast2iCode): result of ~ on unsigned char must be cast to int for
400            bool to work
401         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
402           function pointers in bit space
403         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
404           (processFuncArgs): call port.reg_parm() with reentrancy info
405         * src/port.h,
406         * src/avr/main.c,
407         * src/ds390/main.c,
408         * src/hc08/main.c,
409         * src/pic/main.c,
410         * src/pic16/main.c,
411         * src/xa51/main.c,
412         * src/z80/main.c: port.reg_parm prototype extended with
413           "bool reentrant" parameter
414         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
415           options.stackAuto for allocating bit register parameters
416         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
417           (genSend): set BitBankUsed if it is,
418           (selectRegBank): factored out of genCall for use in genPcall,
419           (genCall): removed redundant dtype assignmen, use selectRegBank,
420           (genPcall): handle returning in Carry properly, save in F0 if needed,
421           (genReceive): handle bit register parameters
422         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
423           (mcs51_assignRegisters): enable bit registers for all reentrant
424            functions and don't set BitBankUsed unconditionally
425         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
426         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
427         * support/regression/tests/funptrs.c: added tests for BOOL and for return
428
429 2005-08-27 Borut Razem <borut.razem AT siol.net>
430
431         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
432         ppc-osx (Darwin) does not support -u option. It seems that it is
433         supported only on Linux - GNU cp
434
435 2005-08-25 Borut Razem <borut.razem AT siol.net>
436
437         * sim/ucsim/gui.src/serio.src/Makefile.in,
438           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
439           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
440           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
441           install and strip, since the strip at /usr/ccs/bin should be used
442           on solaris
443
444 2005-08-24 Borut Razem <borut.razem AT siol.net>
445
446         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
447
448 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
449
450         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
451         ffffffffu
452
453 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
454
455         * as/mcs51/aslink.h: completed lkrloc.c prototypes
456         * as/mcs51/lkmain.c (link_main): fixed warning
457         * device/include/stdbool.h: ds390 has no advanced bit support yet
458         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
459         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
460         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
461           and updated their macros
462         * src/SDCCval.c (constVal): updated comment for renamed b_long
463
464 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
465
466         * as/mcs51/asdata.c: changed ctype['['] to BINOP
467         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
468           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
469           (oprio): set priority for '['
470         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
471            and adb_24_bit
472         * as/mcs51/asm.h: added defines R_BIT and S_BIT
473         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
474         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
475         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
476           added overlayable BIT_BANK area
477         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
478           (summary2): explain 'T' in legenda
479         * as/mcs51/lkrloc.c: replaced old K&R style,
480           (relr): added R_BIT processing,
481           (errmsg): added "Bit-addressable relocation error",
482           (adb_bit): added for converting from byte- to bit-addressable space,
483           (adb_24_bit): added for converting from byte- to bit-addressable space
484         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
485            used in reentrant functions now even as return value
486         * device/lib/_gptrput.c (_gptrput): removed obsolete code
487         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
488           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
489         * src/SDCCglobl.h: added indicator BitBankUsed
490         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
491            the bit registers b0-b7
492         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
493           (geniCodeCast): fixed bug 1263853,
494           (geniCodeLogicAndOr): put result in bool or char,
495           (geniCodeReceive): added parameter func for accessing the return type,
496           (geniCodeFunctionBody): pass func to geniCodeReceive
497         * src/SDCCmain.c: added indicator BitBankUsed
498         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
499         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
500           (checkSClass): don't put automatic bool/bit on stack,
501           (checkFunction): removed check on function cannot return bit
502         * src/SDCCsymt.h: added newBoolLink prototype
503         * src/mcs51/gen.c (rb1regs): added bit registers,
504           (movc): created for assigning to carry,
505           (pushReg, popReg): created for pushing registers,
506           (sameRegs): check both AOP_REG and AOP_CRY types,
507           (aopOp): handle bit registers,
508           (aopPut): optimization no self-assign,
509           (saveRegisters): push reg->base (bits) only once for bit registers,
510            and use pushReg,
511           (unsaveRegisters): pop reg->base only once and use popReg,
512           (assignResultValue): added parameter func and return in carry for bits,
513           (genIpush): optimization no reload in A if not changed,
514           (genSend): bit parameters in reentrant functions are passed in bit
515            registers by first assigning to bits in B, then save registers and
516            copy B to bits,
517           (genCall): handle returning in Carry properly, save it in F0 if needed,
518           (genPcall): updated assignResultValue call, this is not safe yet for bit
519            returning function !!!
520           (genFunction): don't generate equ's for bit registers and use pushReg,
521           (genEndFunction): take care of bit returning functions and use popReg,
522           (genRet): return bit in Carry,
523           (genIfx): optimize bit registers and other directly addressable bits,
524           (genReceive): updated assignResultValue call
525         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
526           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
527            registers when using stack-auto
528         * src/mcs51/ralloc.c (_G): added allBitregs,
529           (regs8051): added the bit registers,
530           (createStackSpil): use macro IS_BIT,
531           (getRegBit): added to allocate a bit register, else spill,
532           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
533           (updateRegUsage): factored out to ease stepping while debugging,
534           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
535            also allocate bit registers,
536           (fillGaps): handle bit registers,
537           (findAllBitregs): added to create bit vector with all bit registers,
538           (mcs51_allBitregs): returns this bit vector,
539           (mcs51_assignRegisters): when using stack-auto use bit registers for
540            passing parameters and creating local variables
541         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
542
543 2005-08-22 Borut Razem <borut.razem AT siol.net>
544
545         * device/lib/Makefile.in: replaced find option -or with -o
546           to make it run on solaris
547
548 2005-08-22 Raphael Neider <rneider AT web.de>
549
550         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
551           fixes #1265442 (crash on Solaris)
552
553 2005-08-20 Borut Razem <borut.razem AT siol.net>
554
555         * configure, configure.in: added tests for libsocket and libnsl libraries,
556           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
557           from support/regression/Makefile.in
558         * support/regression/Makefile.in: added
559         * device/lib/pic16/Makefile.common.in: force make to use bash shell
560         * sim/ucsim/libtool: regenerated on sparc-solaris
561         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
562           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
563           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
564           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
565           sparc-solaris, which doesn't use GNU ld linker
566         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
567         * as/Makefile: find on sparc-solaris does not support -maxdepth option
568
569 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
570
571         * src/mcs51/peeph.def: updated comments
572
573 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
574
575         * device/lib/_gptrget.c,
576         * device/lib/_gptrput.c: slightly shorter
577         * doc/sdccman.lyx: incremented version
578         * src/mcs51/peeph.def: moved peephole comments to the line of first
579           change to better keep line correlation, reanimated 186.e
580         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
581
582 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
583
584         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
585           David Saxton with quotes around file name.
586
587 2005-08-15 Borut Razem <borut.razem AT siol.net>
588
589         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
590           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
591           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
592           make tests run on x86_64 platform
593
594 2005-08-13 Raphael Neider <rneider AT web.de>
595
596         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
597           as it might be executed DURING a build (parallel make is wonderful)
598
599 2005-08-13 Raphael Neider <rneider AT web.de>
600
601         * device/lib/Makefile.in (port-specific-objects-pic16):
602           revert to cp $(PORT)/bin/*.* $(PORTDIR)
603         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
604           dependency
605         * device/lib/pic16/Makefile.rules: build subdirs before creating
606           the library, removed builddir rule, create $(builddir) early in
607           recurse rule, use empty recurse rule for leaf directories
608         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
609           mkdir errors (race condition), removed duplicate suffix "hex"
610           from clean rules
611         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
612         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
613           prevents mkdir -p from aborting on Alpha
614
615 2005-08-12 Raphael Neider <rneider AT web.de>
616
617         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
618           db-statements in order to allow for arrays of pointers in code
619           sections to be placed without interspersed 0-padding, fixes
620           bug #1256215
621         * (emitStatistics): fixed division by zero for pic18f1220
622         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
623           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
624         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
625         * (pic16_pCodeConstString): keep track of already emitted string
626           literals to prevent "duplicate definitions of symbol _str_NR"
627         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
628           debug message
629         * device/lib/Makefile.in: ignore failing PIC16 library builds
630         * device/lib/pic16/Makefile: do not build if gputils are missing
631         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
632
633 2005-08-10 Raphael Neider <rneider AT web.de>
634
635         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
636           my last commit)
637
638 2005-08-10 Raphael Neider <rneider AT web.de>
639
640         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
641           Rokas' patch to add the new fixed point type "__fixed16x16"
642         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
643           functions for __fixed16x16 arithmetics
644         * device/lib/pic16: reimplemented the build system to support
645           a separate build directory, better handling of libio (create
646           the library in a separate subdir for each architecture) and
647           easier configuration (centralized in Makefile.common)
648
649 2005-08-07 Raphael Neider <rneider AT web.de>
650
651         * src/pic16/gen.c (genrshTwo): fixed sign extension
652         * src/pic16/device.c: added pic18f2320, 4220 and 4320
653         * device/include/pic16/pic18f2220.h: changed some bit definitions,
654           added T0CONbits
655         * device/include/pic16/pic18f4220.h: NEW, header for
656           pic18f4220 and pic18f4320
657         * device/include/pic16/pic18fregs.h: added new devices,
658           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
659         * device/include/pic16/signal.h: resolved name clashes
660           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
661           to also allow testing for interrupt enable bits, added
662           comments on how to use the macros
663         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
664         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
665           register definitions for the devices
666         * device/lib/pic16/pics.all: added new devices
667         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
668           allocated memory
669         * device/lib/pic16/libc/stdlib/memfree: do not count
670           the block header as free memory
671         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
672           simplified and added missing end-of-blocklist-marker
673           (reported by Peter Onion, fixes #1252814)
674         * (_mergeHeapBlock): fixed loop condition
675         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
676           len==0, restructured code
677         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
678           up a bit, reduced bitfield accesses, prevent endless loops
679           in case of heap corruption
680         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
681           "unreferenced arguments/must return a value" warnings
682         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
683           replaced BAUDREG with SPBRG
684         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
685           device/lib/pic16/debug/gstack/gstack.c: replaced
686           _naked, _asm, _endasm with __naked, __asm, __endasm
687
688 2005-08-05 Raphael Neider <rneider AT web.de>
689
690         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
691           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
692
693 2005-08-05 Borut Razem <borut.razem AT siol.net>
694
695         * device/lib/Makefile.in: added missing ';'
696         * configure: removed ^M characters
697
698 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
699
700         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
701           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
702           License
703
704 2005-08-04 Borut Razem <borut.razem AT siol.net>
705
706         * configure.in: pic16 libraries build 2nd try - enable running
707           configure in device/lib/pic16
708         * configure: regenerated from configure.in
709         * device/lib/Makefile.in: create $(PORT)/bin directory
710
711 2005-08-03 Raphael Neider <rneider AT web.de>
712
713         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
714           to get/set values via pointers
715         * (genUnpackBits,genPackBits): changed detection of
716           ptr->bitfield vs. sym.bitfield, fixed access via generic
717           pointers, removed dead (wrong) code for multibyte bitfields
718         * (genNearPointerGet, genGenPointerGet): removed useless code,
719           fixed bitfield detection, fixes #1250594
720         * (genNearPointerSet): removed useless code
721         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
722           and introduced macro pic16_emitpcode that conditionally emits
723           the origin of the following pCode (useful for debugging SDCC)
724         * src/pic16/pcode.c: changed (and disabled) some debug outputs
725         * (createDefmap): fixed handling of LFSR for --optimize-df
726
727 2005-08-02 Borut Razem <borut.razem AT siol.net>
728
729         * device/lib/Makefile.in: pic16 libraries build enabled since
730           gputils-0.13.2 are now localy installed at sourceforge's compile farm
731
732 2005-08-02 Raphael Neider <rneider AT web.de>
733
734         * src/pic16/gen.c (genPackBits): removed deprecated warning
735         * (genGenPointerSet): fixed bitfield detection
736
737 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
738
739         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
740
741 2005-07-31 Raphael Neider <rneider AT web.de>
742
743         * device/lib/pic16/libdev/pic18f458.c,
744           device/include/pic16/pic18f458.h: added missing T0CONbits
745
746 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
747
748         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
749
750 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
751
752         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
753
754 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
755
756         * device/include/mcs51/at89c51ed2.h: added.
757
758 2005-07-23 Raphael Neider <rneider AT web.de>
759
760         * src/pic/gen.h: added emitpcode macro for debugging
761         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
762           and replace by macro adding debug information on demand
763         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
764         * (gencjne): tried to fix; replaced with correct (slower) code
765         * (gen{Unp,P}ackBits): fixed single bit access
766         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
767         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
768           previous instruction
769         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
770           register has to be handled with care (forbidding movement
771           of assignments/uses, removing assignments completely, ...)
772         * (pCodeOptime2pCodes): make use of regIsSpecial
773         * added lots of debugging output (commented out)
774         * src/pic/rallloc.c (deassignLRs): prevent operand registers
775           from being reused as result UNLESS it is known to work
776
777 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
778
779         * support/Util/dbuf.h: include <stddef.h> for size_t
780         * .version: changed to version 2.5.2
781
782 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
783
784         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
785
786 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
787
788         * src/hc08/gen.c (genMinus): fixed bug #1241835,
789           (genModOneByte): removed needless psha/pula
790
791 2005-07-22 Raphael Neider <rneider AT web.de>
792
793         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
794           have PIC14 handled like PIC16, fixes broken pic14 linker calls
795         * src/pic/gen.c (resolveIfx): do not "invent" labels
796         * (genSkipc): changed to positive logic
797         * (genSkipCond): removed as no longer needed
798         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
799           backport from PIC16
800         * (genLeftShift): check operands are in different registers
801         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
802           INCF does not update CARRY...
803         * src/pic/main.c: fixed _linkCmd
804         * src/pic/pcode.c (unlinkpCode): added inactive code
805         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
806           alive (do not assign result and operand overlapping registers)
807
808 2005-07-22 Raphael Neider <rneider AT web.de>
809
810         * src/pic/device.c (dump_sfr): replaced register declaration with
811           call to emitSymbolToFile() to avoid duplicate symbols
812         * (assignRelocatableRegisters): do not declare external symbols
813         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
814           right (take size of type, not etype)
815         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
816         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
817         * (packRegsForAccUse): disabled assignment of WREG as
818           the result reg to prevent occurence of just fixed #1235003,
819           fixes #1242954
820         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
821           symbols (avoids duplicate symbols in .asm file)
822         * (pic14emitRegularMap): use emitSymbolToFile()
823         * src/pic/gen.c (aopOp): fixed spillLocation handling
824         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
825         * (genDataPointerSet): removed unneccessary variables/output
826
827 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
828
829         * as/mcs51/lkarea.c: enlarged codemap for banked memory
830         * device/lib/mcs51/crtbank.asm: added # to 0x0F
831
832 2005-07-21 Raphael Neider <rneider AT web.de>
833
834         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
835           architecture cannot handle them efficiently, fixes bug #1235003
836         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
837           check for empty sets before using them (fixes bug #1232190)
838
839 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
840
841         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
842           (lnksect2): generate warnings for memory overlap
843         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
844           constseg to set the name of these segments so you can instruct the linker
845           to place them in banks
846         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
847         * src/SDCCglobl.h: added MODEL_HUGE to enum,
848           added code_seg and const_seg to options
849         * src/SDCCglue.c (emitMaps): use options.const_seg,
850           (createInterruptVect): put interrupt vectors in segment HOME,
851           (glue): put HOME before static segment and put the main glue in HOME,
852           (glue): use options.code_seg
853         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
854         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
855           these segments so you can instruct the linker to place them in banks
856           (linkEdit): use code_loc for HOME segment which should be the first
857           segment in code memory now
858         * src/SDCCmem.c: fixed more stuff like bug 1238386
859         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
860           (changePointer): don't change function pointers to code pointers for
861           banked functions,
862           (compareType): added exceptional check for banked function pointers
863         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
864         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
865           after static in code memory
866         * src/mcs51/gen.c: added aopLiteralLong prototype,
867           (aopForSym): use getSize for functions,
868           (genCall): generate banked calls over one trampoline __sdcc_banked_call
869           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
870           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
871           the segment,
872           (genPcall): use call for literal function pointers and generate banked
873           calls over the one trampoline so there's only one place for the user to
874           modify according to his/hers hardware,
875           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
876           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
877         * src/mcs51/main.c: added keyword banked,
878           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
879         * support/Util/SDCCerr.c,
880         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
881           needed for passing the bank and address to the trampoline
882         * device/lib/mcs51/crtbank.asm: added for bankswitching
883         * device/lib/mcs51/Makefile: added crtbank
884
885 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
886
887         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
888           for fields at offset 0 of a struct or union as reported
889           on 2005-07-07 in the developer mailing list.
890
891 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
892
893         * src/SDCCmem.c: fixed bug 1238386
894
895 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
896
897         * src/mcs51/peeph.def: added labelrefcounting for peepholes
898           (patch #1144962), added peephole 300, enabled 259.x
899         * doc/sdccman.lyx: removed screenshot and provided link instead
900
901 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
902
903         * doc/sdccman.lyx: added section about debugging with ddd
904         * doc/figures/ddd_example.eps: screenshot of debugging session
905
906 2005-07-04 Raphael Neider <rneider AT web.de>
907
908         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
909           like CODE pointers, fixes #1115683
910         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
911           call, fixes bugs #1232211, #1228110,
912           fixed wrong casts to pCodeFlow from pCodeInstructions
913
914 2005-07-04 Raphael Neider <rneider AT web.de>
915
916         * src/pic/gen.c (popGet): changed assert to allow for
917           bit operands
918         * (popGetAddr): changed signature to provide
919           an additional index, patched all call sites
920         * (genCmpEq): handle literal-like operands correctly
921         * (genAddrOf): added sanity checks on __code/__data pointers
922         * (genAssign): added handling of symbols from __code section
923         * (gencjne): do not generate code for comparisons whose result
924           is neither stored nor used, fixes bug #1171114
925         * (AccLsh, AccRsh): operate on operand instead of WREG
926         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
927           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
928           by known count
929         * rewrote complete shift-by-literal logic, commented unused
930           functions out
931         * (genConstPointerGet): get multiple bytes (if result size > 1),
932           fixed handling of non-immediate addresses
933         * (genPointerGet): handle CODE pointers like CONST pointers
934         * (genpic14Code): insert C-SRC lines as Cource-pCodes
935         * ({aop,op}_isLitLike): NEW, single place to decide whether an
936           operand is to be treated as a literal or not
937         * (mov2w,genPcall,genCmpEq),
938           src/pic/genarith.c: use aop_isLitLike() to decide between
939           literal/register contents
940         * (addSign): added missing offset
941         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
942           only emit comment in debug-mode,
943           use {aop,op}_isLitLike throughout the file
944         * src/pic/glue.c: fix initializers for pointers (work in progress)
945         * src/pic/pcode.c (get_op): honor index on _const symbols
946         * ({reset,dump}pCodeStatistics): NEW, estimate code size
947         * (dumppBlock): added pCode size estimation
948         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
949           check for IS_SYMOP before OP_SYMBOL'ing
950         * fixed indentation, compacted switch-statements
951         * (allocReg): find free register and allocate it instead of
952           allocating new registers all the time
953         * (deassignLRs): prevent POINTER_GET's from being assigned the same
954           registers as its operands (necessary only for multibyte GETs)
955
956 2005-07-01 Raphael Neider <rneider AT web.de>
957
958         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
959           debugging .asm-output macros FENTRY + FEXIT
960         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
961           way... I wonder...
962         * (emitpComment): NEW, printf to pCode
963         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
964           offset handling
965         * (popGetAddr): NEW, variant of popGet to access an immediates
966           high(er) bytes instead of the n'th byte of memory they reference,
967           replaced popGet with popGetAddr where neccessary
968         * (genDataPointerGet): reactivated and fixed implementation
969         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
970           accesses
971         * (genDataPointerSet): fixed multibyte assignments
972         * (genpic14Code): fixed --i-code-in-asm handling
973         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
974         * (genPlus): fixed index-out-of-bounds error
975         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
976         * src/pic/ralloc.c: added debugging output macro FENTRY2
977         * (spillThis): fixed indentation, enbraced for-body for clarity
978         * (rematStr): commented out as now unused
979         * (regTypeNum): commented out special spill case (overwrites
980           arbitrary values)
981         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
982
983 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
984
985         * doc/sdccman.lyx: documented sfr16/sfr32,
986           added example for using storage class with function pointers
987         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
988
989 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
990
991         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
992         * device/lib/_itoa.c,
993         * device/lib/_ltoa.c: optimized codesize
994         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
995           but don't know how to suppress the double warning.
996         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
997         * support/Util/SDCCerr.c,
998         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
999
1000 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
1001
1002         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
1003           fixed old K&R prototypes
1004         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
1005         * device/lib/_gptrget.c,
1006         * device/lib/_gptrgetc.c,
1007         * device/lib/_gptrput.c: changed versions for new memory indicator values,
1008           also new versions for small generic pointers and banked generic pointers
1009         * src/port.h: added const_name
1010         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
1011         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
1012         * src/SDCCcse.c (findPrevIc): check all associative operators
1013         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
1014         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
1015         * src/SDCCmem.c: updated comments,
1016           set far-space to 0 for pdata, results in optimized code
1017         * src/SDCCmem.h: added macro CONST_NAME
1018         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
1019           moving the info into the highest bits, see also gptrget/gptrput
1020         * src/src.dsp: added sdcc.ico to project files
1021         * src/avr/gen.c (genCast): fixed bug 0x%d
1022         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
1023         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
1024           relation between ptr_type and DCL_TYPE,
1025           (genCast): fixed bug 0x%d
1026         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
1027           (CODE)" for const_name
1028         * src/hc08/gen.c (genCast): fixed bug 0x%d
1029         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
1030           (hc08_port): added "CONST (CODE)" for const_name
1031         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
1032           (aopForRemat, adjustArithmeticResult): disconnected direct relation
1033           between ptr_type and DCL_TYPE,
1034           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
1035           operand* and took AOP() inside function so sfr-ness can be checked,
1036           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
1037           new prototype,
1038           (genFunction, genEndFunction): optimized stack setup,
1039           (genMinus): optimized for literals with ending zeroes (in bytes),
1040           (genCast): fixed bug 0x%d
1041         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
1042           (mcs51_port): added "CONST (CODE)" for const_name
1043         * src/mcs51/peeph.def: made rule 226 more generic
1044         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
1045         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
1046         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
1047         * src/z80/main.c (z80_port): added NULL for const_name,
1048           (gbz80_port): added NULL for const_name
1049         * support/regression/tests/bug663539.c,
1050         * support/regression/tests/sfr16.c: new tests
1051
1052 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1053
1054         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
1055
1056 2005-06-24 Raphael Neider <rneider AT web.de>
1057
1058         * device/lib/pic16/libdev/pic18f[68][567]20.c:
1059           corrected typos...
1060         * device/include/pic16/signal.h: added USBIF
1061           and SIG_USB
1062
1063 2005-06-24 Raphael Neider <rneider AT web.de>
1064
1065         * device/lib/pic16/libdev/pic18f2455.c,
1066           device/include/pic16/pic18f2455.h: NEW
1067         * device/include/pic16/pic18fregs.h,
1068           device/lib/pic16/pics.all,
1069           src/pic16/device.c: added 18f2455
1070         * device/lib/pic16/libdev/pic18f[68][567]20.c,
1071           device/include/pic16/{pic18f[68][567].h,usart.h}:
1072           replaced MULTIPLE_USARTS define with more relaible
1073           compatibility sfrs (for USART access)
1074
1075 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
1076
1077         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
1078           and the output asm file line is printed on two lines.
1079
1080 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1081
1082         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
1083           BGT, BLE, BHI, and BLS instructions
1084         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
1085           genCmpEq): removed
1086         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
1087           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
1088           fixes bug #1216342
1089         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
1090
1091 2005-06-15 Raphael Neider <rneider AT web.de>
1092
1093         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
1094         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
1095         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
1096           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
1097           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
1098
1099 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1100
1101         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
1102           Marcel Telka in bug #1215704
1103
1104 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
1105
1106         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
1107           located in shared memory bank.
1108
1109 2005-05-31 Raphael Neider <rneider AT web.de>
1110
1111         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
1112           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
1113           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
1114
1115 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
1116
1117         * device/lib/_strncpy.c: fixed the fix
1118
1119 2005-05-26 Raphael Neider <rneider AT web.de>
1120
1121         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
1122           initializers with \0, bug #1208187
1123         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
1124           intializers with \0, bug #1208187
1125
1126 2005-05-26 Raphael Neider <rneider AT web.de>
1127
1128         * src/pic16/glue.c (pic16_printIvalChar): fixed string
1129           initializers with \0, bug #1208187
1130         * src/pic16/main.c (_process_pragma): added sanity checks
1131           for stack position and size, emit warnings when appropriate
1132
1133 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
1134
1135         * device/lib/_strncpy.c: fixed not filling with \0
1136
1137 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1138
1139         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
1140           createFunction),
1141         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
1142           compound_statement),
1143         * src/SDCCsymt.h,
1144         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
1145
1146 2005-05-24 Raphael Neider <rneider AT web.de>
1147
1148         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
1149
1150 2005-05-24 Raphael Neider <rneider AT web.de>
1151
1152         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
1153           TRISE definitions, closes bug #1162453
1154
1155 2005-05-22 Raphael Neider <rneider AT web.de>
1156
1157         * src/pic16/main.c (_process_pragma): check for missing
1158           arguments to pragmas code and udata
1159         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
1160           consistency fixes to match other headers (thanks to Jim Paris)
1161         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
1162
1163 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
1164
1165         * src/SDCCicode.c (isOperandEqual): fixed missing ;
1166
1167 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
1168
1169         * support/regression/tests/bug1198642.c: new test
1170         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
1171         * src/SDCCcse.c (findPrevIc): added comment, please have a look
1172         * support/scripts/resource.h,
1173         * support/scripts/resource.rc,
1174         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
1175         * support/scripts/sdcc.ico: added 32x32 icon
1176
1177 2005-05-18 Raphael Neider <rneider AT web.de>
1178
1179         * device/lib/pic16/libdev/pic18f*.c,
1180         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
1181           keywords to "__sfr" and "__at (X)"
1182         * device/include/pic16/pic18fregs.h: added pic18f4520
1183         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
1184           #1203088 (MPLAB compatibility)
1185
1186 2005-05-17 Raphael Neider <rneider AT web.de>
1187
1188         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
1189         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
1190         * device/lib/pic16/pics.all: added new devices
1191         * src/pic16/device.c: added support for pic18f4520
1192
1193 2005-05-16 Raphael Neider <rneider AT web.de>
1194         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
1195         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
1196         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
1197           convenience function for bit access
1198
1199 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
1200
1201         * device/lib/printf_large.c: fixed bug 1193299
1202         * support/regression/tests/bug1057979.c: added test %3.3s
1203
1204 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1205
1206         * device/include/mcs51/8051.h,
1207         * device/include/mcs51/8052.h: made parseable with lint
1208         * device/include/mcs51/lint.h: added include file for (sp)lint
1209         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
1210         * doc/cdbfileformat.lyx,
1211         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
1212
1213 2005-05-14 Raphael Neider <rneider AT web.de>
1214
1215         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
1216         * device/lib/pic16/libc/stdlib/itoa.c (new)
1217         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
1218         * device/lib/pic16/libio/Makefile: exclude subdir according to
1219           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
1220         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
1221         * src/pic16/gen.c (genFunction): prevent annoying warning
1222         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
1223           nameclashes on BeOS
1224         * support/cpp2/cppmain.c (cpp_output_string): new
1225         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
1226           fixes bug 1116802
1227
1228 2005-05-13 Borut Razem <borut.razem AT siol.net>
1229
1230         * src/SDCCmain.c (linkEdit): fixed bug 1195202
1231
1232 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1233
1234         * .version: changed to version 2.5.1; back to bleeding edge development
1235
1236 2005-05-11 Borut Razem <borut.razem AT siol.net>
1237
1238         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
1239           generate PDF version 1.3 documents
1240
1241 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1242
1243         * .version: changed to version 2.5.0
1244
1245 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1246
1247         * doc/sdccman.lyx: updated weblinks, index and smaller updates
1248
1249 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1250
1251         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
1252         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
1253         well as many smaller updates.
1254         * .version: changed to version 2.5.0-pre1
1255
1256 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1257
1258         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
1259
1260 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
1261
1262         * support/regression/tests/bug1185672.c: added
1263         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
1264           bug 1185672
1265         * src/mcs51/gen.c (genCall): added comments, made it look safer
1266         * src/mcs51/gen.c (genEndFunction): simplified
1267
1268 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
1269
1270         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
1271
1272 2005-04-14 Borut Razem <borut.razem AT siol.net>
1273
1274         * fixed bug 1045046 - SIGSEGV with really simple code?:
1275           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
1276           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
1277
1278 2005-04-14 Borut Razem <borut.razem AT siol.net>
1279
1280         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
1281           src/pic16/device.h: temporarily disabled experimental #inline pragma
1282           for 2.5.0 release
1283
1284 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
1285
1286         * device/include/z80/stdio.h,
1287         * device/include/z80/string.h: removed these highly incomplete files so
1288           SDCC can use the default ones in device/include/
1289
1290 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1291
1292         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
1293         gcc warning.
1294         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
1295         fix sdcpp warnings.
1296
1297 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1298
1299         * device/include/malloc.h: removed redundant __reentrant prototypes
1300         * device/lib/_mullong.c: added working xstack variant in asm (C version
1301           doesn't pass regression tests)
1302         * device/lib/bpx.c: used __data and made bpx char for mcs51
1303         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
1304           (createFunction): fixed bug with xstackPtr
1305         * src/SDCCcse.c: corrected comments
1306         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
1307           (killDeadCode, eBBlockFromiCode): removed unused code
1308         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
1309           corrected comments
1310         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
1311           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
1312           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
1313           (genModOneByte): fixed warning in MSVC
1314         * src/mcs51/main.c (): added comments
1315         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
1316
1317 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1318
1319         * src/SDCCmain.c (linkEdit): oops, changed one line too many
1320
1321 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
1322
1323         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
1324
1325 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
1326
1327         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
1328         characters arrays of larger size than the declared one.
1329
1330 2005-04-10 Borut Razem <borut.razem AT siol.net>
1331
1332         * src/pic/gen.c (genInline),
1333           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
1334           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
1335           (findNextInstruction), (findPrevInstruction),
1336           (findInstructionUsingLabel),
1337           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
1338         * src/pic/pcode.c (findLabel): added missing '\n'
1339         * src/src.dsp: added SDCCdwarf2.c to the project
1340
1341 2005-04-09 Borut Razem <borut.razem AT siol.net>
1342
1343         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
1344
1345 2005-04-08 Raphael Neider <rneider AT web.de>
1346
1347         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
1348           into the chain after a given one) and mergeDefmapSymbols (combine
1349           defmap entries for each symbol per pcode)
1350         * (createDefmap): have defmap entries merged in the end
1351         * (defmapReplaceSymRef): split defmap entries covering two accesses to
1352           a symbol before replacing one access type's symbol, merge symbols in
1353           the end (replacement symbol might already have an entry)
1354         * (assignValnums): keep reference to written WREG intact
1355
1356 2005-04-08 Raphael Neider <rneider AT web.de>
1357
1358         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
1359           Alpha)
1360
1361 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
1362
1363         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
1364         bytes
1365
1366 2005-04-07 Raphael Neider <rneider AT web.de>
1367
1368         * device/include/pic16/usart.h: added compatibility defines for
1369           devices with more than one USART
1370         * device/include/pic16/pic18f[68][567]20.h: activated above defines
1371
1372 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1373
1374         * device/lib/Makefile.in: updated for port specific include
1375
1376 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1377
1378         * support/regression/ports/mcs51/spec.mk: added mcs51 include
1379
1380 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1381
1382         * device/include/8051.h,
1383         * device/include/8052.h,
1384         * device/include/at89S8252.h,
1385         * device/include/at89c55.h,
1386         * device/include/at89x051.h,
1387         * device/include/at89x51.h,
1388         * device/include/at89x52.h,
1389         * device/include/mcs51reg.h,
1390         * device/include/reg51.h,
1391         * device/include/reg764.h,
1392         * device/include/regc515c.h,
1393         * device/include/sab80515.h: (re)moved these 12 files
1394         * device/include/mcs51/8051.h,
1395         * device/include/mcs51/8052.h,
1396         * device/include/mcs51/at89S8252.h,
1397         * device/include/mcs51/at89c55.h,
1398         * device/include/mcs51/at89x051.h,
1399         * device/include/mcs51/at89x51.h,
1400         * device/include/mcs51/at89x52.h,
1401         * device/include/mcs51/mcs51reg.h,
1402         * device/include/mcs51/reg51.h,
1403         * device/include/mcs51/reg764.h,
1404         * device/include/mcs51/regc515c.h,
1405         * device/include/mcs51/sab80515.h: and added them here
1406
1407 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
1408
1409         * device/include/stdarg.h: changed SDCC specific keywords to double
1410           underlined form.
1411         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
1412           mcs51 and ds390.
1413         * device/include/hc08/mc68hc908gp32.h,
1414         * device/include/hc08/mc68hc908jb8.h,
1415         * device/include/hc08/mc68hc908jkjl.h,
1416         * device/include/hc08/mc68hc908qy.h: fixed comments
1417         * device/include/mcs51/README: updated
1418         * device/include/mcs51/c8051f120.h: added PINRSF
1419         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
1420         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
1421           amidst code. Also inline is not supported.
1422
1423 2005-04-06 Raphael Neider <rneider AT web.de>
1424
1425         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
1426         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
1427           callers stack/frame pointers
1428
1429 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
1430
1431         * device/include/pic16/usart.h: added, missing in previous commit,
1432         * device/include/pic16/adc.h: fixed typo,
1433         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
1434         commit,
1435         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
1436         <p18fxxx.inc>
1437         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
1438         uninitialized because a bug appears with gplink
1439         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
1440         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
1441         complains for unrecognised option
1442
1443 2005-04-05 Raphael Neider <rneider AT web.de>
1444
1445         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
1446           structs as well (using memcpy)
1447         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
1448           on ISRs (GOTO has no label)
1449         * src/pic16/device.h: added OF_OPTIMIZE_DF
1450         * src/pic16/main.c: added compiler switch --optimize-df to enable the
1451           new data flow analysis/optimization
1452         * src/pic16/pcode.c: added (prototypes for and implementation of)
1453           dataflow analysis functions, fixed pCodeInstructions' inCond and
1454           outCond values, made RCALL a branch instruction
1455         * (pic16_unlinkpCode): keep C line if possible
1456         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
1457           C line moved if possible
1458         * (pic16_getRegFrompCodeOp): NEW, improved version of...
1459         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
1460           to use new pic16_getRegFrompCodeOp (works for more SFRs)
1461         * (pic16_BuildFlow): fixed skip instructions with label (did not start
1462           new flow)
1463         * (pic16_getJumptabpCode): NEW, needed in...
1464         * (LinkFlow): fixed handling of jumptables, calls and conditional
1465           branches
1466         * (pic16_InsertCommentAfter): NEW
1467         * (pic16_pCodeReplace): made verbose and flow preserving
1468         * (AnalyzeFlow): added call to data flow analysis
1469         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
1470         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
1471         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
1472
1473 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1474
1475         * src/SDCCast.c (decorateType): fixed bug #1105626
1476
1477 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
1478
1479         * device/include/asm/pic16/features.h,
1480         * pic18f*.h headers,
1481         * device/include/pic16/adc.h,
1482         * device/include/pic16/delay.h,
1483         * device/include/pic16/i2c.h,
1484         * device/include/pic16/malloc.h,
1485         * device/include/pic16/stdio.h,
1486         * device/include/pic16/stdlib.h,
1487         * device/include/pic16/string.h,
1488         * device/lib/pic16/libc/stdio/printf_tiny.c,
1489         * device/lib/pic16/libc/stdio/printf_small.c,
1490         * device/lib/pic16/libc/stdio/strmgpsim.c,
1491         * device/lib/pic16/libc/stdio/strmmssp.c,
1492         * device/lib/pic16/libc/stdio/strmusart.c,
1493         * device/lib/pic16/libc/stdio/vfprintf.c,
1494         * device/lib/pic16/libc/stdlib/ltoa.c,
1495         * device/lib/pic16/libc/stdlib/putchar.c,
1496         * device/lib/pic16/libc/stdlib/x_ftoa.c,
1497         * device/lib/pic16/libc/stdlib/memchrpgm.c,
1498         * device/lib/pic16/libc/stdlib/memchrram.c,
1499         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
1500         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
1501         * device/lib/pic16/libio/adc/adcbusy.c,
1502         * device/lib/pic16/libio/adc/adcread.c,
1503         * device/lib/pic16/libio/adc/adcsetch.c,
1504         * device/lib/pic16/libio/usart/ubaud.c,
1505         * device/lib/pic16/libio/usart/ubusy.c,
1506         * device/lib/pic16/libio/usart/udrdy.c,
1507         * device/lib/pic16/libio/usart/uopen.c,
1508         * device/lib/pic16/libio/usart/uputc.c,
1509         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
1510         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
1511         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
1512         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
1513         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
1514         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
1515         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
1516         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
1517         specific keywords to double underlined form,
1518         * device/lib/pic16/libc/Makefile.rules,
1519         * device/lib/pic16/libsdcc/Makefile.rules,
1520         * device/lib/pic16/libm/Makefile,
1521         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
1522         to compile with C standard set in Makefile.common
1523         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
1524         rand.c and crc.c in compilation process,
1525         * device/lib/pic16/libsdcc/int/divuint.c,
1526         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
1527         `c' from signed to unsigned,
1528         * device/lib/pic16/startup/crt0.c,
1529         * device/lib/pic16/startup/crt0i.c,
1530         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
1531         keywords to double underlined form, bug fixes in _do_cinit function
1532         which prevented the correct initialization of the .idata segment,
1533         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
1534         core to enter a infinite loop
1535         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
1536
1537 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1538
1539         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
1540
1541 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1542
1543         * device/include/Makefile.in: add support for hc08 subdirectory
1544         * device/include/hc08/: new subdirectory
1545         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
1546         Lucas Loizaga, thanks!
1547         * device/include/hc08/mc68hc908qy.h,
1548         * device/include/hc08/mc68hc908gp32.h,
1549         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
1550         their own directory. Changed internal macro names to use the compiler
1551         reserved namespace. Changed SDCC specific keywords to double
1552         underlined form.
1553         * device/include/math.h,
1554         * device/include/malloc.h,
1555         * device/include/stdarg.h,
1556         * device/include/stdbool.h
1557         * device/include/string.h,
1558         * device/include/tinibios.h,
1559         * device/include/ds400rom.h,
1560         * device/include/8051.h,
1561         * device/include/8052.h,
1562         * device/include/80c51xa.h,
1563         * device/include/at89c55.h,
1564         * device/include/at89S8252.h,
1565         * device/include/at89x51.h,
1566         * device/include/at89x52.h,
1567         * device/include/ds80c390.h,
1568         * device/include/reg764.h,
1569         * device/include/regc515c.h,
1570         * device/include/sab80515.h,
1571         * device/include/mcs51/c8051f000.h,
1572         * device/include/mcs51/c8051f018.h,
1573         * device/include/mcs51/c8051f020.h,
1574         * device/include/mcs51/c8051f040.h,
1575         * device/include/mcs51/c8051f060.h,
1576         * device/include/mcs51/c8051f120.h,
1577         * device/include/mcs51/c8051f300.h,
1578         * device/include/mcs51/c8051f310.h,
1579         * device/include/mcs51/c8051f320.h,
1580         * device/include/mcs51/c8051f330.h,
1581         * device/include/mcs51/c8051f350.h,
1582         * device/include/z180.h: Changed SDCC specific keywords to double
1583         underlined form.
1584
1585 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
1586
1587         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
1588         18F4455,
1589         * (pic16_assignConfigWordValue): disable testing of configuration
1590         register value with config mask,
1591         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
1592         function with port->fun_prefix,
1593         * (genFunction): when generating a naked interrupt function never
1594         create an absolute segment placed in interrupt vector address, place
1595         the actual interrupt function at IVA instead, when an interrupt
1596         function is generated with unspecified interrupt then do not create
1597         the absolute section,
1598         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
1599         code for generating a call to generic pointer get/put function with
1600         a call to function pic16_callGenericPointer(),
1601         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
1602         the call to the generic pointer get/put functions with prefixing the
1603         function name with port->fun_prefix,
1604         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
1605         * src/pic16/main.c (_process_pragma): prefix function with
1606         port->fun_prefix,
1607         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
1608         calling assembler, old 18Fxxxx macro is deprecated,
1609         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
1610         PC_ASMDIR in while condition,
1611         * (findInstruction): add PC_ASMDIR in while condition,
1612         * (buildCallTree): prefix main with port->fun_prefix,
1613         * (pic16_pCode2str): fixed bug that didn't emit the memory access
1614         identifier for variable with banked access in instructions BTFSS,
1615         BTFSC, BCF, BSF, BTG
1616         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
1617         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
1618         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
1619         perform optimization when enviroment variable NO_REG_OPT is set,
1620         * (insideLRBlock): NEW, return 1 if register is inside an
1621         INF_LOCALREGS block,
1622         * (RemoveRegFromLRBlock): remove a register that is completely
1623         eliminated by register optimization, but it is still left in local
1624         register store/restore in/from stack block,
1625         * (Remove2pcodes): after removing register, check to see if it
1626         should be removed from local register store/restore in/from stack
1627         block,
1628         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
1629         DUMMY_READ_VOLATILE,
1630
1631         * device/include/pic16/adc.h: minor prototype modifications and
1632         update,
1633         * device/include/pic16/malloc.h: added GPL notice various
1634         modifications,
1635         * device/include/pic16/stdint.h: NEW, standard header for ints
1636         * device/include/pic16/delay.h: NEW, header for delay functions,
1637         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
1638         delay1mtcy,
1639         * device/include/pic16/signal.h: NEW, header providing helper macros
1640         for implementing signal handlers,
1641         * device/include/pic16/stdio.h: added prototypes for functions,
1642         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
1643         prototypes for stdin and stdout, added macro PUTCHAR to
1644         automatically implement putchar function prototype,
1645         * device/include/pic16/usart.h: modified and updated USART library,
1646         * device/lib/pic16/libio/adc/,
1647         * device/lib/pic16/libio/i2c: some modifications to improve library
1648         performance,
1649         * device/lib/pic16/libc/stdio/: modifications for the new printf*
1650         family of functions,
1651         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
1652         family of functions and other sources,
1653         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
1654         of the PIC18Fxx[28] devices,
1655         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
1656         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
1657         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
1658         _do_cinit function, because the previous failed when local variables
1659         where not placed in the same memory bank,
1660         * device/lib/pic16/libsdcc/char/: various modifications to improve
1661         library performance,
1662         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
1663         information on the new functions of the c library and more...
1664
1665 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1666
1667         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
1668
1669 2005-03-26 Raphael Neider <rneider AT web.de>
1670
1671         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
1672           if condition == CARRY)
1673         * (genCmp): adapted to new genSkipc semantics
1674         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
1675           on rIfx (genCmp was broken)
1676
1677 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1678
1679         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
1680         * src/z80/main.c (_keywords[]),
1681         * src/SDCCglobal.h (struct options),
1682         * src/SDCC.y,
1683         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
1684         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
1685         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
1686         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
1687         always available in leading double underscore form. The C99 support is
1688         mostly missing, but it's a start.
1689         * support/regression/tests/bug-227710.c: fixed nonconforming use of
1690         reserved identifier "__data".
1691
1692 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
1693
1694         * src/mcs51/peeph.def: fixed bug 1170013
1695
1696 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
1697
1698         * device/include/mcs51reg.h: fixed bug 842007
1699
1700 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1701
1702         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
1703         last time.
1704
1705 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1706
1707         * src/port.h (struct PORT),
1708         * src/avr/ralloc.c (avr_assignRegisters),
1709         * src/avr/main.c,
1710         * src/ds390/ralloc.c (ds390_assignRegisters),
1711         * src/ds390/main.c,
1712         * src/hc08/ralloc.c (hc08_assignRegisters),
1713         * src/hc08/main.c,
1714         * src/mcs51/ralloc.c (mcs51_assignRegisters),
1715         * src/mcs51/main.c,
1716         * src/pic/ralloc.c (pic14_assignRegisters),
1717         * src/pic/main.c,
1718         * src/pic16/ralloc.c (pic16_assignRegisters),
1719         * src/pic16/main.c,
1720         * src/xa51/ralloc.c (xa51_assignRegisters),
1721         * src/xa51/main.c,
1722         * src/z80/ralloc.c (z80_assignRegisters),
1723         * src/z80/ralloc.h,
1724         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
1725         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
1726         * src/SDCCcse.h,
1727         * src/SDCCdflow.c (computeDataFlow),
1728         * src/SDCCdflow.h,
1729         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
1730         * src/SDCCloop.h,
1731         * src/SDCCcflow.c (*),
1732         * src/SDCCcflow.h,
1733         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
1734         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
1735         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
1736         immedDom() returning wrong block; probably fixes bug #1160833)
1737
1738 2005-03-20 Borut Razem <borut.razem AT siol.net>
1739
1740         * support/scripts/inc2h.pl: WIN32 port
1741
1742 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
1743
1744         * device/lib/makefile.in: added abs.c and labs.c
1745
1746 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
1747
1748         * device/include/stdint.h: added
1749         * device/lib/abs.c: added
1750         * device/lib/labs.c: added
1751         * device/include/stdlib.h: added abs() and labs() prototypes
1752         * device/lib/libsdcc.lib: added abs and labs
1753         * device/include/float.h,
1754         * device/lib/_fsmul.c,
1755         * device/lib/printf_fast.c,
1756         * device/lib/printf_tiny.c: updated comments
1757
1758 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1759
1760         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
1761         bug #1164313
1762
1763 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1764
1765         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
1766         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
1767
1768 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
1769
1770         * device/lib/printf_large.c: removed inline assembly for portability and
1771           readability. Use printf_fast if speed or size are more important.
1772         * src/pic16/gen.c: removed conditions around use of DEBUGpc
1773         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
1774
1775 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
1776
1777         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
1778         prevent compiler warning
1779
1780 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
1781
1782         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
1783         moved to level 0 and declared as static. Also they are explicit
1784         placed in access bank. This was necessery because some times they
1785         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
1786         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
1787         optimizations. Currently only compare to unsigned char is implemented,
1788         * src/pic16/gen.c: added fReturnIdx array,
1789         * (struct resolvedIfx) is moved to gen.h and made public,
1790         * (struct _G): added sregsAlloc and sregsAllocSet fields,
1791         * (aopForSym): added an optimization to directly store in stack of
1792         the operand of a SEND iCode,
1793         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
1794         but as registers instead (AOP_REG) using the fReturnIdx array,
1795         * (pic16_freeAsmop): remove the freed register from the
1796         _G.sregsAlloc field,
1797         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
1798         a compare of 'WREG',
1799         * (pic16_popGetTempRegCond): changed function prototype, now
1800         function takes also a bitVector argument v which holds the current
1801         set of registers that are allocated for stack access by aopForSym,
1802         registers allocated in aopForSym for accessing stack symbols are not
1803         any more part of the functions usedRegs field,
1804         * (genCall): some times aopOp is called for a stack variable to be
1805         send, aopForSym might perform the push, if this is true make sure
1806         that genCall doesn't push the variable twice by testing _G.resDirect,
1807         * (genFunction): changed testing for unspecified interrupt number
1808         from 256 to INTNO_UNSPEC,
1809         * modified selection scheme of frame pointer generation. Previously
1810         if function did use local registers a frame pointer was generated,
1811         now a frame pointer is generated only if function has arguments
1812         (that need PLUSW2 register access), or has stack arguments, or the
1813         compiler is not instructed to omit the frame pointer,
1814         * (genEndFunction): before restoring local registers that were saved
1815         in the function preamble, also restore the registers that *might*
1816         have been allocated for stack access,
1817         * (genRet): removed some old comments,
1818         * (genCmp, the active (RN's) version): added a call to the
1819         pic16_genCmp_special function to perform the compare with a more
1820         robust and optimized way,
1821         * (genInline): a feature has been added in inline code generation,
1822         which allows a wildcard variable substitution when writing inline
1823         assembly. Code is incomplete and experimental therefore undocumented,
1824         * (genCast): changed order of aopOp for result and right to allow
1825         aopForSym to directly load the result if possible,
1826         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
1827         perform an optimized compare on some selected special occasions,
1828         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
1829         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
1830         generate an IVT any more,
1831         * src/pic16/main.c (pic16_optionsTable): added command line option
1832         --optimize-cmp,
1833         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
1834         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
1835         macros,
1836         * src/pic16/NOTES: Raphael Neider added in list of active developers
1837         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
1838         jumptable_end to prevent bug #,
1839         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
1840         inCond and outCond fields,
1841         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
1842         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
1843         turn off register spilling,
1844         * (packRegsForOneUse): synced with other ports' versions although it
1845         is not used currently,
1846         * (pic16_packRegisters): added an optimization while reading
1847         structure bitfields, some registers may be saved (malloc code is
1848         decreased by 80 bytes)
1849
1850 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
1851
1852         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
1853         left is a bitfield, if yes, then don't optimize assignment. Perhaps
1854         this can be optimized more?
1855
1856 2005-03-10 Raphael Neider <rneider AT web.de>
1857
1858         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
1859           genNearPointerGet): (hopefully) fixed access to bitfields via
1860           pointers (p->bitN = x; and x = p->bitN; failed)
1861
1862 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
1863
1864         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
1865
1866 2005-03-09 Raphael Neider <rneider AT web.de>
1867
1868         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
1869
1870 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
1871
1872         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
1873         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
1874           (regTypeNum): set REG_BIT type if necessary
1875         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
1876         * support/regression/tests/critical.c: check bug 1144613
1877
1878 2005-03-02 Raphael Neider <rneider AT web.de>
1879
1880         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
1881
1882 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1883
1884         * src/avr/ralloc.c (serialRegAssign),
1885         * src/ds390/ralloc.c (serialRegAssign),
1886         * src/hc08/ralloc.c (serialRegAssign),
1887         * src/mcs51/ralloc.c (serialRegAssign),
1888         * src/pic/ralloc.c (serialRegAssign),
1889         * src/pic16/ralloc.c (serialRegAssign),
1890         * src/xa51/ralloc.c (serialRegAssign),
1891         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
1892
1893 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
1894
1895         * src/SDCCast.c (decorateType): fixed bug 1124787
1896
1897 2005-02-20 Hubert Sack <sack AT digiplan.de>
1898         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1899
1900         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
1901         patch #1121755
1902
1903 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1904
1905         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
1906         to keep the correct label reference count when adding/removing references
1907         to labels. A peephole file using this is appended to patch #1144962.
1908
1909 2005-02-14 Raphael Neider <rneider AT web.de>
1910
1911         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
1912         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
1913         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
1914           retrievals of result operand's value on assignment
1915
1916 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
1917
1918         * device/include/pic16/string.h: modified prototype for memccpy()
1919         to memccpy(void *, void *, char, size_t)
1920         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
1921         check whether to omit frame pointer or not,
1922         * (genInline): convert all occurences of "\n" to LF in inline
1923         assembler blocks, this helps formatting the inline text,
1924         * (pic16_loadFSR0): modified prototype,
1925         * (genNearPointerGet, genNearPointerSet): reorganization of code,
1926         removed some 8051 legacy code,
1927         * (genPackBits): enabled handling bitfields exceeding one byte in size,
1928         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
1929         before allocating temporary registers in functions,
1930
1931 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1932
1933         * support/regression/tests/bitvars.c: corrected the "fix"
1934
1935 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1936
1937         * support/regression/tests/bitvars.c,
1938         * support/regression/tests/bitwise.c,
1939         * support/regression/tests/rotate.c: "fixed" problems on Alpha
1940
1941 2005-02-10 Raphael Neider <rneider AT web.de>
1942
1943         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
1944           different size for Alpha
1945         * src/pic16/gen.c (genCmpEq) : improved compare with 0
1946
1947 2005-02-09 Raphael Neider <rneider AT web.de>
1948
1949         * src/SDCC.lex(doPragma) : save and restore warning options as well
1950           (also added new stack plus clone- and copyAndFreeSDCCERRG())
1951         * have #pragma less_pedantic set the errorlevel to WARNING
1952           (fixes #1117001)
1953         * (cloneOptimize) : fixed wrong malloc's size
1954         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
1955           facilitate correct handling of #pragma (save|restore)
1956
1957 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1958
1959         * src/mcs51/gen.c: removed non-standard C nameless struct/union
1960
1961 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
1962
1963         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
1964
1965 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
1966
1967         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
1968
1969 2005-02-02 Raphael Neider <rneider AT web.de>
1970
1971         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
1972         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
1973         * (pic16_storeForReturn): fixed to allow returning function pointers
1974         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
1975         * device/include/pic16/{stddef.h,stdbool.h}: added
1976
1977 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
1978
1979         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
1980
1981 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
1982
1983         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
1984         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
1985          appeared to be required
1986
1987 2005-01-31 Borut Razem <borut.razem AT siol.net>
1988
1989         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
1990           include/mcs51 and include/z80 directories to the package
1991
1992 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1993
1994         * src/hc08/gen.c (genFunction): fixed bug #1112752
1995
1996 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1997
1998         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
1999
2000 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2001
2002         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
2003
2004 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
2005
2006         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
2007
2008 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
2009
2010         * device/include/c8051fxxx.h: removed these 6 files
2011         * device/include/mcs51/c8051fxxx.h: added these 11 new files
2012
2013 2005-01-26 Raphael Neider <rneider AT web.de>
2014
2015         * src/pic16/gen.c (genAssign): fixed assignment from longs
2016           in codespace (were cut to three bytes)
2017         * (genDummyRead): implemented (except for CODESPACE...),
2018           fixed bug #1108575
2019         * src/pic16/glue.c (emitStatistics): beautified
2020         * device/lib/pic16/libm/Makefile: added include path
2021
2022 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2023
2024         * src/z80/gen.c (aopPut): fixed bug #1103902
2025
2026 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2027
2028         * device/lib/expf.c: fixed bug #1095792
2029
2030 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
2031
2032         * device/lib/pic16/libm: added Math library sources
2033
2034 2005-01-24 Raphael Neider <rneider AT web.de>
2035
2036         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
2037           to enable upcast to pCodeOpReg2 (there is no type tag to
2038           differenciate the two and pic16_popGet2p cast into PCOR2)
2039         * src/pic16/main.c (_process_pragma): fixed another malloc bug
2040           (sizeof(sectNames) changed to sizeof(sectName))
2041           Both patches fix segfaults under MinGW.
2042
2043 2005-01-23 Raphael Neider <rneider AT web.de>
2044
2045         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
2046           Safe_[mc]?alloc()'ed variables
2047         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
2048           of (byte sized) temporaries (assign them to WREG for now)
2049         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
2050           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
2051           this might fix SIGSEGVs on MinGW...
2052         * src/SDCCopt.c (killDeadCode): restored original behaviour
2053           (volatile operands might get thrown away though)
2054
2055 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
2056
2057         * src/pic16/gen.c: fixed bug #1106975,
2058         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
2059         pointer update, INTCON is saved, global interrupts are disabled and
2060         restored after updateing TOS.
2061         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
2062         * added function attribute 'shadowregs' to take advantage of shadow
2063         registers,
2064         * added function attribute 'wparam' as an alternative to the wparam
2065         pragma,
2066         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
2067         user declares a non-ISR function as 'shadowregs',
2068         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
2069
2070 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
2071
2072         * .version: bumped version number to 2.4.8
2073         * device/lib/pic16/pics.all: list of PIC18F devices supported by
2074         pic16 port,
2075         * device/lib/pic16/libio/i2c/: I2C module support library,
2076         * device/include/pic16/i2c.h: I2C support library header,
2077         * device/lib/pic16/libc/stdio/: standard IO support sources,
2078         * (printf_small.c): printf_small() source, supports float print,
2079         * (printf_tiny.c): printf_tiny() source, does not support floats,
2080         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
2081         enable global optimizations for entire library source, other
2082         Makefiles in the source tree are also modified to reflect this,
2083         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
2084         function,
2085         * doc/sdccman.lyx: updated to reflect new changes,
2086         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
2087         sym->onStack if-case,
2088         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
2089         sbit, idata, _idata, xdata, _xdata,
2090         * added pragma library, to link an external library, (see doc),
2091         * removed command line options, --pomit-config-words, --pomit-ivt,
2092         --pleave-reset-vector,
2093         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
2094         when calling assembler to reflect memory model used, also define
2095         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
2096         reflect stack model used,
2097         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
2098         on stack return NULL,
2099
2100 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2101
2102         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
2103           of the operands is volatile. Fixes #1020220
2104
2105 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2106
2107         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
2108         * (OptimizeRegUsage): make sure that there is really no other flow where
2109           the first pCode is used
2110
2111 2005-01-22 Raphael Neider <rneider AT web.de>
2112
2113         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
2114           to fix #1106967 (pCode->seq are not set up correctly)
2115
2116 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2117
2118         * src/SDCCglue.c (glue): make sure code area is declared before the
2119         static initialization area.
2120
2121 2005-01-21 Raphael Neider <rneider AT web.de>
2122
2123         * device/lib/Makefile.in: fixed test for pic16 install dir
2124         * device/lib/pic16/*/Makefile*: modified compile flags to enable
2125           optimizations
2126         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
2127           added --optimize-goto compiler switch and pragma wparam documentation
2128         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
2129         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
2130           and PRODH closing bug #1071770 (peephole optimizer)
2131
2132 2005-01-19 Raphael Neider <rneider AT web.de>
2133
2134         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
2135           cmdLine buffers (used when calling sdcpp...) are large enough
2136           (MAX_PATH=256 truncates arguments leading to system halts when
2137           used in MinGW...)
2138         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
2139         * (genUminus): rewritten to for efficiency
2140         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
2141           used uninitialized in some cases)
2142         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
2143           copy the third byte from the int -- now assumes 0x80 (data memory)
2144         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
2145           operands (genAddLit expects the iCode's operands to swapped as
2146           well), fixed leftover bytes (crashed for short left operands)
2147         * (pic16_genMinusDec): performance improvements, removed false
2148           PIC14 emitSKPNCs
2149         * (pic16_genMinus): fixed to cope with differently sized operands
2150         * src/pic16/glue.c (pic16_glue): added new banksel optimization
2151           for --obanksel > 1
2152         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
2153         * src/pic16/graph.[ch]: implementation of directed graphs, used by
2154           new banksel optimization
2155         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
2156           analysis for temporary registers (segfaults...)
2157         * src/pic16/peeph.def: added rule
2158
2159 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
2160
2161         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
2162         which converts a float number to its ASCII representation
2163         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
2164         functions to convert the fractional and integer part of a float to ASCII,
2165         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
2166         realloc.c): added _MALLOC_SPEC to explicit place variables in data
2167         ram
2168         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
2169         _STATMEM macros,
2170         * device/include/pic16/adc.h: added GPL info,
2171         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
2172         a pCodeOp as tested operand,
2173         * (genNearPointerGet): optimized bit testing, does not use
2174         intermediate register for bit value, test directly instead with
2175         BTFSS, BTFSC, works only for single bits,
2176         * (genpic16Code): dump the name of the iCode in the asm,
2177         * src/pic16/ralloc.c (decodeOp): removed static declaration and
2178         renamed to pic16_decodeOp,
2179         * (serialRegAssign): do not allocate a temporary register for iCode
2180         sequences that test a single bit for 1/0
2181
2182 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
2183
2184         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
2185         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
2186         access stack and frame pointers. They are initially assigned to
2187         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
2188         accessing SFRs. Updated all occurences of modification of stack or
2189         frame pointer in gen.c and pcode.c,
2190         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
2191         assigning of a literal value to pointers,
2192         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
2193         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
2194         selected
2195
2196 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
2197
2198         * doc/sdccman.lyx: update documentation about stack pragma, added
2199         some info for stack memory models
2200
2201 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2202
2203         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
2204
2205 2005-01-08 Raphael Neider <rneider AT web.de>
2206
2207         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
2208           udata sections to fix bug #1097823
2209
2210 2005-01-05 Raphael Neider <rneider AT web.de>
2211
2212         * src/pic16/gen.c (genGenericShift): added handling of differently
2213           sized left operand and result
2214
2215 2005-01-04 Raphael Neider <rneider AT web.de>
2216
2217         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
2218         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
2219           to hold the condition bit)
2220         * added new version of genCmp (old code available via #define)
2221         * added new version of genShiftLeft/genShiftRight in a generic
2222           way, now supports shifting by negative values
2223         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
2224           shiftCount (expected by genGenericShift)
2225         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
2226         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
2227           dump
2228         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
2229           is an invalid literal too...)
2230
2231 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
2232
2233         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
2234         from Raphael Neider,
2235         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
2236         for 8-bit literals. This fixes some literal operands which are sign
2237         extended to 16-bits ints when instruction needs only 8-bits.
2238
2239 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
2240
2241         * device/lib/logf.c: added mcs51 assembly version
2242         * device/lib/expf.c: added mcs51 assembly version
2243         * device/lib/_logexpf.c: new shared asm code for expf and logf
2244         * device/include/math.h: add defines for assembly math library
2245         * device/lib/Makefile.in: build new _logexpf.c
2246         * device/lib/libfloat.lib: use new _logexpf.c
2247
2248 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2249
2250         * src/pic/device.c
2251         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
2252           device types which have less than 0x7f registers.
2253
2254 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2255
2256         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
2257
2258 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2259
2260         * device/lib/printf_fast.c: only build on supported arch.
2261         * device/lib/printf_tiny.c: only build on supported arch.
2262         * device/lib/printf_fast_f.c: only build if asm float lib
2263         * device/lib/_fsget1arg.c: only build if asm float lib
2264         * device/lib/_fsget2args.c: only build if asm float lib
2265         * device/lib/_fsnormalize.c: only build if asm float lib
2266         * device/lib/_fsreturnval.c: only build if asm float lib
2267         * device/lib/_fsrshift.c: only build if asm float lib
2268         * device/lib/_fsswapargs.c: only build if asm float lib
2269         * device/include/stdio.h: don't provide print_fast,
2270           print_fast_f, print_tiny prototypes if --xstack used
2271
2272 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
2273
2274         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
2275         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
2276           to the SOURCES
2277
2278 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2279
2280         * device/lib/printf_fast_f.c: same as printf_fast, but
2281           with floating point enabled
2282         * device/lib/printf_fast.c: minor tweaks
2283         * device/include/stdio.h: add printf_fast_f
2284
2285 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2286
2287         * src/SDCCmain.c: make --float-reent default for mcs51
2288         * device/lib/_fsadd.c: added mcs51 assembly version
2289         * device/lib/_fssub.c: added mcs51 assembly version
2290         * device/lib/_fsmul.c: added mcs51 assembly version
2291         * device/lib/_fsdiv.c: added mcs51 assembly version
2292         * device/lib/_fseq.c: added mcs51 assembly version
2293         * device/lib/_fsneq.c: added mcs51 assembly version
2294         * device/lib/_fsgt.c: added mcs51 assembly version
2295         * device/lib/_fslt.c: added mcs51 assembly version
2296         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
2297         * device/lib/Makefile.in: add _fscmp to build
2298         * device/lib/libfloat.lib: add _fscmp to build
2299
2300 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2301
2302         * device/lib/_fs2slong.c: added mcs51 assembly version
2303         * device/lib/_fs2sint.c: added mcs51 assembly version
2304         * device/lib/_fs2schar.c: added mcs51 assembly version
2305         * device/lib/_fs2ulong.c: added mcs51 assembly version
2306         * device/lib/_fs2uint.c: added mcs51 assembly version
2307         * device/lib/_fs2uchar.c: added mcs51 assembly version
2308         * device/lib/_slong2fs.c: added mcs51 assembly version
2309         * device/lib/_sint2fs.c: added mcs51 assembly version
2310         * device/lib/_schar2fs.c: added mcs51 assembly version
2311         * device/lib/_ulong2fs.c: added mcs51 assembly version
2312         * device/lib/_uint2fs.c: added mcs51 assembly version
2313         * device/lib/_uchar2fs.c: added mcs51 assembly version
2314         * device/include/float.h: added #define to select asm vs c
2315
2316 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
2317
2318         * device/lib/printf_fast.c: improvements to float output
2319         * device/include/float.h: add defines for assembly float library
2320         * device/lib/_fsget1arg.c: receive 1 float arg
2321         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
2322         * device/lib/_fsnormalize.c: normalize a float
2323         * device/lib/_fsreturnval.c: return float, various helper routines
2324         * device/lib/_fsrshift.c: right shift a float's mantissa
2325         * device/lib/_fsswapargs.c: swap 2 floats
2326         * device/lib/Makefile.in: build these 6 new files for mcs51
2327         * device/lib/libfloat.lib: add these 6 files to the library
2328
2329 2004-12-26 Borut Razem <borut.razem AT siol.net>
2330
2331         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
2332           built by gcc 3.4.2
2333
2334 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
2335
2336         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
2337           and fully reentrant and register bank neutral.
2338         * device/lib/printf_fast.c: added float (not enabled by default),
2339           added compact/slower integer (also not enabled by default),
2340           improved size/speed of fast integer code, other minor changes
2341         * device/include/stdio.h, device/lib/Makefile.in,
2342           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
2343
2344 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
2345
2346         * src/pic16/pcode.c: declaring variables other than at the start of a
2347           block is not supported in C by VC6.
2348
2349 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
2350
2351         * applied a previous patch from Raphael Neider that wasn't included
2352         in the previous commits, which fixes infinite loops within jumptable
2353         improvements,
2354         * made some fixes that previous patches introduced
2355
2356 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
2357
2358         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
2359         that fixes an issue with AOP_PCODE asmop's offset,
2360         * (pic16_popCopyReg): update instance field too,
2361         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
2362         function of pic port,
2363         * (genCmp, genAnd, genAssign),
2364         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
2365
2366 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
2367
2368         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
2369         variables initial values to idata section,
2370         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
2371         variables in some functions. This utilizes parmBytes field of iCode
2372         structure to hold the offset of the variable in stack. (might be
2373         able to use the stack field too?)
2374         * applied patch from Raphael Neider # ### , # ###
2375         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
2376         variable initial values in idata section,
2377         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
2378         for static variables with initial value
2379         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
2380         applied fix in while loop from Raphael Neider.
2381
2382 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
2383
2384         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
2385         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
2386         * src/ds390/ralloc.c (serialRegAssign): spill bits
2387         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
2388         * support/Util/SDCCerr.c,
2389         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
2390         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
2391         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
2392
2393 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
2394
2395         * device/include/sdcc-lib.h: inserted LGPL, added includes
2396           asm/ds390/features.h and asm/mcs51/features.h
2397         * device/include/asm/default/features.h,
2398         * device/include/asm/gbz80/features.h,
2399         * device/include/asm/z80/features.h: added empty _AUTOMEM
2400           and _STATMEM
2401         * device/include/asm/ds390/features.h,
2402         * device/include/asm/mcs51/features.h: added files with defines for
2403           _AUTOMEM and _STATMEM indicating automatic and static storage class
2404         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
2405         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
2406         * src/SDCCicode.c (geniCodeCast),
2407         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
2408         * src/SDCCloop.c (loopInduction): removed unused variable lr
2409         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
2410           to convertToFcall to include char modulo (RFE 1065037), added check
2411           if left operand is unsigned and use abs of literal value
2412         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
2413           as it doesn't work after conversion from peephole.def to peephole.rul
2414         * src/mcs51/gen.c (toBoolean): added check for size,
2415           (genModOneByte): optimized code for signed char modulo a literal
2416           power of 2 (thanks to Hubert Sack),
2417           (genRRC): removed unnecessary "clr c",
2418           (genRLC): replaced "add a,acc" with cheaper "rlc a"
2419         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
2420           jump optimization,
2421           swapped rules 256.c and 256.d,
2422           extended 256.d by using new multiple checks (thanks Erik),
2423           added rules 256.e and 256.f,
2424           updated rule 261.a and 261.b to new generated code
2425         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
2426
2427 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2428
2429         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
2430           induction related bugs, including first part of bug #1074377
2431
2432 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
2433
2434         * applied patch from bug-report #1076292,
2435         * applied patches for genAnd and Goto-optimizations for Raphael
2436         Neider,
2437         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
2438         dump a less iCode information,
2439         * src/pic16/device.h (pic16_options_t): added field debgen,
2440         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
2441         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
2442         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
2443         puclic,
2444         * (various functions): added macros FENTRY and FENTRY2 to functions,
2445         to emit function prologue,
2446         * (various functions): fixed indentation,
2447         * (genNearPointerGet): fixed loading of FSR0,
2448         * (genPackBits): applied patch from Raphael Neider to fix updating
2449         of FSR0 and touching only the modified bits,
2450         * src/pic16/genarith.c (various functions): added macros FENTRY to
2451         emit function prologue in comments,
2452         * src/pic16/pcode.h: added functions debugf2, debugf3,
2453         * src/pic16/ralloc.c: partial fix for packForPush caused
2454         segmentation fault,
2455
2456 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2457
2458         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
2459           <stsp AT users.sourceforge.net> with reversed byte order
2460         * support/regression/tests/rotate.c: added (ds390 skips some tests)
2461
2462 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2463
2464         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
2465           bug #1074377
2466         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
2467         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
2468
2469 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2470
2471         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
2472
2473 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2474
2475         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
2476           conditions,
2477           (setFromConditionArgs): friendly operand parser for peephole rules,
2478           (operandBaseName, operandsNotRelated): new peephole condition
2479           "operandsNotRelated" -- similar to "operandsNotSame", but takes
2480           architecture specific register naming into account, handles n-way
2481           comparisons, and supports quoted literals
2482         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
2483
2484 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2485
2486         * src/mcs51/peeph.def: fixed bug #1076940
2487
2488 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2489
2490         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
2491
2492 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2493
2494         Adding support for replacing ljmps with sjmps in jumptables
2495         generated for switch statements. For now you need to set the
2496         environment variable SDCC_SJMP_JUMPTABLE to enable this.
2497         Now 4 algorithms for mcs51 jumptable generation are used:
2498         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
2499         addresses loaded pc-relative for up to 112 cases and stack-pushing
2500         target addresses loaded with offset from dptr for up to 256 cases.
2501
2502         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
2503         * src/mcs51/main.c: adapted constants for switch table generation
2504         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
2505
2506 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
2507
2508         * device/lib/printf_large.c (_print_format): fixed bug 1073386
2509         * support/regression/tests/bug1057979.c: added test for bug 1073386
2510
2511 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2512
2513         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
2514         compilers
2515
2516 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2517
2518         * src/pic16/device.h,
2519         * src/pic16/genarith.c,
2520         * src/pic16/glue.c,
2521         * src/pic16/main.c,
2522         * src/pic16/pcode.c: applied patches #1068154 and #1070213
2523
2524 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
2525
2526         Large cummulative patch for pic16 port.
2527         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
2528         to call when a stack overflow occurs,
2529         * (malloc.h): added CVS Id tag,
2530         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
2531         variable,
2532         * added libc directory. The current version of LibC contains string
2533         functions, ctype functions and macros and some functions of the
2534         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
2535         be extensively tested in the future. Standard disclaimer here.
2536         Library is not automatically build yet. But one can build it by
2537         invoking 'make' inside the libc directory.
2538         * added ADC library under libio. Preliminary version yet.
2539
2540         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
2541         * src/pic16/gen.c (aopForRemat): asmop size is filled by
2542         aopForRemat() now and not by pic16_aopOp(),
2543         * (pic16_popGetTempReg): removed warning messgae when allocating
2544         temporary registers, its a buggy feature and will be removed,
2545         * (pic16_popGet): set register instance field in AOP_CRY,
2546         * (pic16_outBitC): fixed for results in size greater than 1,
2547         * (genUminusFloat): fixed for pic16, ported code from mcs51,
2548         * (pic16_storeForReturn): optimized return of 0,
2549         * (genCmp): experimental code for new genCmp which uses PIC18's
2550         special compare&skip instructions. Initial tests fail some times
2551         with variables grater than 1 byte in size, so new code is disabled,
2552         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
2553         a single bit,
2554         * (genCast): began a fix to optimize the casting of a bit to another
2555         bit, now assigning a bitfield to another bitfield will fail, sorry,
2556         * src/pic16/main.c: disabled the use of lr-support feature,
2557         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
2558         * added some function prototypes, added function _debugf prototype,
2559         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
2560         bits with offset (case PO_GPR_BIT),
2561         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
2562         command line,
2563         * (isBankInstruction): modified to return 0 for no banking instruction,
2564         and 1 for banking instruction,
2565         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
2566         caused stop processing pCodes after a inline assembly block,
2567         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
2568         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
2569         registers when it shouldn't,
2570         * src/pic16/ralloc.c (allocReg): add preliminary support for
2571         supporting a limited set of temporary registers,
2572
2573 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2574
2575         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
2576           genDataPointerSet): ensure assignments always copy in MSB to LSB
2577           order,
2578           (loadRegFromAop): recognize CLRH optimization,
2579           (genFunction): optimize RECEIVE iCodes in reentrant functions
2580
2581 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2582
2583         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
2584           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
2585           selected.
2586         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
2587         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
2588           contiguous with data
2589
2590 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2591
2592         * device/lib/_gptrget.c (_gptrget),
2593         * device/lib/_gptrgetc.c (_gptrgetc),
2594         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
2595           instead of sjmp to ret
2596         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
2597           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
2598
2599 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
2600
2601         * .version: bumped version to 2.4.7
2602         * device/lib/_gptrget.c (_gptrget): is now _naked
2603         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
2604         * device/lib/_gptrput.c (_gptrput): is now _naked
2605         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
2606           (createFunction): fixed xstack
2607         * src/SDCCglue.c (emitMaps): set allocation required for bit area
2608         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
2609           or bit either,
2610           (geniCodeCritical): store original interrupt state in an iTemp bit
2611           var unless stack-auto
2612         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
2613         * src/SDCCmain.c (setIncludePath): added include/target to search path
2614         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
2615         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
2616           prototype,
2617           (processFuncArgs): put bit vars in bit area
2618         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
2619           unsaveRBank): fixed xstack,
2620           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
2621           (genFunction, genEndFunction): fixed xstack,
2622           (genAssign): optimization don't walk backwards through mem
2623         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
2624         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
2625         * support/regression/Makefile: also make library (for stack-auto) when
2626           making "all" and added "test-mcs51-xstack-auto"
2627         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
2628         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
2629         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
2630         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
2631         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
2632           make-library by MAKE_LIBRARY
2633         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
2634           regression tests for xstack
2635         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
2636         * support/regression/tests/critical.c: test for critical on mcs51
2637
2638 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2639
2640         * support/regression/ports/ucz80/spec.mk: use include and lib files from
2641           built version of sdcc instead of installed version
2642
2643 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
2644
2645         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
2646         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
2647           vprintf.c now
2648         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
2649         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
2650           WARNING: remove device/lib/build/z80/printf.o by hand when
2651           updating from previous build!
2652         * device/lib/z80/printf.c: updated comment
2653         * support/regression/tests/bug1057979.c: test all ports now
2654         * support/regression/tests/bug1065458.c: file added
2655
2656 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2657
2658         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
2659           *_start and *_end symbols for static functions
2660
2661 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
2662
2663         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
2664           and search crt0.o in all library paths,
2665           (setIncludePath): proper handling of --nostdinc,
2666           (setLibPath): proper handling of --nostdlib
2667         * support/regression/Makefile,
2668         * support/regression/ports/ds390/spec.mk,
2669         * support/regression/ports/gbz80/spec.mk,
2670         * support/regression/ports/hc08/spec.mk,
2671         * support/regression/ports/mcs51/spec.mk,
2672         * support/regression/ports/mcs51-large/spec.mk,
2673         * support/regression/ports/mcs51-stack-auto/spec.mk,
2674         * support/regression/ports/z80/spec.mk: use include and lib files from
2675           built version of sdcc instead of installed version
2676         * doc/sdccman.lyx: fixed typo in --nostdinc
2677
2678 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
2679
2680         * src/pic/pcode.c,
2681         * src/pic/device.c,
2682         * src/pic/ralloc.c,
2683         * src/pic/gen.c : added support to generate code for struct bit fields.
2684
2685 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
2686
2687         * as/xa51/xa_version.h,
2688         * device/include/errno.h,
2689         * device/include/regc515c.h,
2690         * device/lib/_itoa.c,
2691         * device/lib/_ltoa.c,
2692         * device/lib/ser_ir_cts_rts.c,
2693         * sim/ucsim/xa.src/glob.cc,
2694         * sim/ucsim/xa.src/inst_gen.cc,
2695         * sim/ucsim/xa.src/xa_bit.cc,
2696         * sim/ucsim/xa.src/xa_sfr.cc,
2697         * sim/ucsim/z80.src/inst_dd.cc,
2698         * sim/ucsim/z80.src/inst_fdcb.cc,
2699         * support/scripts/keil2sdcc.pl,
2700         * src/pic16/pic16.dsp,
2701         * src/pic16/pic16a.dsp: corrected cvs line endings
2702         * device/lib/printf_large.c: fixed bug 1057979
2703         * src/pic16/gen.c: fixed non-C standard code
2704         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
2705         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
2706         * support/regression/ports/mcs51/support.c: reload T1 asap
2707         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
2708           pdata use and clear idata startup behaviour
2709         * support/regression/tests/bug1057979.c: added
2710
2711 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
2712
2713         * device/examples/ds390/ow390/ad26.h,
2714         * device/examples/ds390/ow390/cnt1d.h,
2715         * device/examples/ds390/ow390/crcutil.c,
2716         * device/examples/ds390/ow390/ownet.h,
2717         * device/examples/ds390/ow390/owsesu.c,
2718         * device/examples/ds390/ow390/swt12.h,
2719         * device/examples/ds390/ow390/swtoper.c,
2720         * device/examples/ds390/ow390/temp10.h,
2721         * device/examples/ds390/ow390/thermodl.c,
2722         * device/examples/ds390/tinitalk/tinitalk.dsp,
2723         * device/examples/ds390/tinitalk/tinitalk.dsw,
2724         * device/examples/mcs51/clock/hw.h,
2725         * device/examples/mcs51/simple2/go.bat,
2726         * device/examples/serialcomm/windows/serial.h,
2727         * device/examples/xa51/dummy.c,
2728         * device/examples/xa51/hello.c,
2729         * device/include/80c51xa.h,
2730         * device/include/at89x051.h: corrected cvs line endings
2731
2732 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
2733
2734         * src/pic16/main.c (options): added command line --gstack, to trace
2735         stack over/under flows,
2736         * added pragma 'wparam' to allow passing first byte of function
2737         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
2738         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
2739         call to __gstack_test function and sets up the symbol as extern,
2740         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
2741         * popaop): added call to pic16_testStackOverflow,
2742         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
2743         wparamList list,
2744         * (genCall, genPcall): now all parameters are passed via stack
2745         except in functions that are pass to wparam pragma in which WREG is
2746         used too,
2747         * (genPcall): REENTRANT flag is checked to see if variable prototype
2748         contains reentrant keyword, don't call a non-reentrant function, via
2749         a reentrant function pointer or vice versa, functions are never
2750         passed via WREG,
2751         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
2752         D.Winkler,
2753         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
2754         SIGSEGV when accessing a NULL register stucture,
2755         * (pic16_printGPointerType): modified to handle UPPER modifier for
2756         function initializers, changed prototype of function to simpler one,
2757         * (pic16_printIvalFuncPtr): check to see if function is already
2758         added in externs list,
2759         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
2760         optimized a move from W to SFR with a move to the same register
2761         later after a CALL,
2762         * device/lib/pic16/debug: NEW directory, contains debug features
2763         which are enabled when linking with libdebug.lib, currently command
2764         line option --gstack enables stack pointer tracing for over/under
2765         flow, corresponding sources are in debug/gstack
2766
2767 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
2768
2769         * doc/sdccman.lyx: updated SDCC version,
2770         * (PIC16 port): update list of command line options,
2771         * src/pic16/device.h (structure pic16_options_t): added field gstack
2772         to enable stack overflow tracing on push/pops,
2773         * src/pic16/device.c (statistics structure): added statistics
2774         structure,
2775         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
2776         pic16_dump_int_registers): increase statistics counters for each
2777         * variable which is encountered
2778         * (pic16_dump_usection): emit each .udata variable to its own udata
2779         section,
2780         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
2781         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
2782         parameters via stack, otherwise use old scheme,
2783         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
2784         assembler output file,
2785         * src/pic16/main.c: added command line options --gstack to enable
2786         push/pop tracing for stack overflow,
2787         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
2788         instructions): added size of each instruction,
2789         * (pic16_countInstruction): estimate size of instructions in
2790         the_pFile list, inline assembly blocks are not counted,
2791         * (pic16_FixRegisterBanking): trace previous register usage, when
2792         banksel optimizations is greater than 0, don't emit a redudant
2793         banksel directive,
2794
2795 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
2796
2797         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
2798         * src/pic16/ralloc.c : applied same fix for pic16.
2799         * src/pic/gen.c : tidied it up a little.
2800
2801 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2802
2803         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
2804         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
2805
2806 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2807
2808         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
2809
2810 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2811
2812         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
2813         non-reentrant function __modsint in the interrupt function (thus
2814         corrupting math operations during serial I/O)
2815         * device/lib/ser_ir.c: as above, changed buffersize
2816         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
2817         256.c,d for zeroing
2818         * doc/Makefile: added option -t for rsync
2819
2820 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2821
2822         * src/SDCCast.h (struct ast),
2823         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
2824
2825 2004-10-20 Borut Razem <borut.razem AT siol.net>
2826
2827         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
2828         package
2829
2830 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
2831
2832         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
2833         makefile targets,
2834         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
2835         support functions to replace long sequences of MOVFF's from access
2836         bank registers to stack and vice versa,
2837         * src/pic16/device.h: added new field opt_flags, where optimization
2838         flags can be set to enable certain features,
2839         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
2840         * pBlock, (genFunction, genEndFunction): surroung loop for
2841         saving/loading used registers in stack with PC_INFO pCodes,
2842         INF_LREGS. Code in between can then be optimized by pCode optimizer
2843         to support function calls,
2844         * (genDataPointerSet): fixed bug which loaded float fields in
2845         structures with corrupt data,
2846         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
2847         in a standard way debug info on stderr. Feature used for developing
2848         and debugging only,
2849         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
2850         obsolete chunks of code,
2851         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
2852         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
2853         * pic16/src/pcode.c (pic16_newpCodeInfo,
2854         * (pic16_newpCodeOpLocalRegs),
2855         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
2856         feature,
2857         * (pic16_pCodeConstString): printing of the initial value of a
2858         symbol as a comment is inhibited since parsing was already done by
2859         copyStr and output is corrupt,
2860         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
2861
2862 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2863
2864         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
2865
2866 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
2867
2868         * as/mcs51/lkarea.c: removed old K&R style,
2869           (lnksect): changed check on boundary error,
2870           (lnksect2): changed check on boundary error,
2871           (lnksect2): extend XSTK to end of page if size = 1
2872         * as/mcs51/lkmain.c: removed old K&R style,
2873           (Areas51): create l_IRAM symbol
2874         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
2875         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
2876           model-mcs51-stack-auto, added model-mcs51-xstack-auto
2877         * device/lib/_mullong.c: added version to be compiled with xstack
2878         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
2879         * device/lib/mcs51/crtxclear.asm: clear pdata as well
2880         * device/lib/mcs51/crtxstack.asm: fixed comment
2881         * src/SDCCglue.c: maxInterrupts defaults to 0,
2882           (emitMaps): added pdata,
2883           (createInterruptVect): (re)moved default,
2884           (glue): added pdata,
2885           (glue): moved __start__xstack to XSTK with default size 1
2886         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
2887           and options.float_rent when options.stackAuto is set,
2888           (linkEdit): only write XDATA_NAME if provided on command line
2889         * src/SDCCmem.h,
2890         * src/SDCCmem.c: added pdata
2891         * src/port.h: added pdata_name to PORT
2892         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
2893           (saveRegisters, unsaveRegisters): removed usage of B,
2894           (genMinus): fixed accumulator clash,
2895           (genJumpTab): added comment, this needs another look
2896         * src/mcs51/gen.c: added check for "B in use" paranoia,
2897           added pushB() and popB()
2898         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
2899           chance
2900         * src/avr/main.c,
2901         * src/ds390/main.c,
2902         * src/hc08/main.c,
2903         * src/mcs51/main.c,
2904         * src/pic/main.c,
2905         * src/pic16/main.c,
2906         * src/xa51/main.c,
2907         * src/z80/main.c: (reset_regparms) made void parameter explicit and
2908           added PSEG (PAG,XDATA) or NULL to port specifier
2909         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
2910         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
2911           (_mcs51_genInitStartup): removed __start__xstack equ,
2912           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
2913         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
2914         * src/z80/gen.c (_rleAppend): fixed warnings
2915         * support/regression/tests/zeropad.c: added pdata test
2916         * .version: bumped to 2.4.6
2917
2918 2004-10-17 Borut Razem <borut.razem AT siol.net>
2919
2920         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
2921         as a part of nightly build
2922
2923 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
2924
2925         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
2926         WREG holds the first byte function parameters,
2927         * (aopForSym): take special case for symbols which are in FARSPACE
2928         but in CODESPACE too,
2929         * (assignResultValue): modified to take into account _G.useWreg,
2930         * (genCall): don't use wreg for parameter passing when function is
2931         declared as reentrant, too, added optimization INCF to stack
2932         pointer when stack parameter count is 1,
2933         * (genFunction, genEndFunction): refurnished and fixed to not using
2934         wreg for passing parameters when function has varargs or is
2935         reentrant, fixed bug with symbol name compare for generating
2936         functions in absolute address,
2937         * (pic16_storeForReturn): refurnished,
2938         * (genCmp): began writing a new version of the function, not ready
2939         yet, therefore it is disabled,
2940         * (genAssign): do not read code memory when assigning a function to
2941         a pointer function,
2942         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
2943         array of characters, not pointer,
2944         * (pic16initialComments): in debug mode emit an .ident directive for
2945         the assembler,
2946         * (_process_pragma): emit a new warning type (internal to pic16)
2947         when setting stack to default length, emit a similar warning when
2948         placing a function at absolute address and address is not word aligned
2949         * (_pic16_parseOptions): added 'return TRUE' statement,
2950         * (_pic16_linkEdit): if compiling a source, then add the source's
2951         file object, first in the list of objects to link,
2952
2953 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
2954
2955         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
2956         * src/pic/main.c : removed VC warning.
2957         * src/pic/gen.c : changed comment.
2958
2959 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
2960
2961         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
2962         reference to a deprecated symbol _GPTRREG was causing failure to
2963         link. Thanks G. M. Gallant for the info.
2964
2965 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
2966
2967         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
2968         comments for Bugs item #954788.
2969
2970 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
2971
2972         * src/pic16/device.c (pic16_dump_gsection,
2973         * pic16_groupRegistersInSection): handle symbols declared to be in
2974         access bank differently,
2975         * src/pic16/gen.c (struct _G): added field resDirect,
2976         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
2977         send values read from stack directly to result and don't allocate
2978         temporary values,
2979         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
2980         same registers,
2981         * (pic16_sameRegsOfs): NEW,
2982         * (freeAsmop): if _G.resDirect is set then do not mark registers as
2983         free because they were not allocated from temporary pool,
2984         * pic16_popRegFromString): workaround to fix a problem with
2985         allocating variables twice or never,
2986         * (genGenPointerGet): using PRODL instead of FSR0H,
2987         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
2988         instead of FSR0H,
2989         * (genAssign): take advantage of the _G.resDirect flag,
2990         * (genCast): around line 11844, use mov2f instead of directly
2991         MOVFF'ing between operands to account for literal values,
2992         * src/pic16/genutils.c: some new debug functions for gpsim have been
2993         added,
2994         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
2995         float with integer part only,
2996         * src/pic16/main.c (_process_pragma): handle pragma udata access to
2997         place variables in access bank
2998         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
2999         updated sources to reflect recent changes in gen.c
3000
3001 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
3002
3003         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
3004         sources that searched for headers in installation path, now the
3005         device/include/pic16 is used,
3006         * src/pic16/glue.c (pic16glue),
3007         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
3008         .line directives if not in debug mode, this suppresses assembler's
3009         warnings for ignored directives
3010
3011 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
3012
3013         * src/port.h: made reset_regparms prototype void parameter explicit.
3014         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
3015         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
3016         * doc/sdccman.lyx: documented warning disabling and how to use
3017           printf_large to make it print floats.
3018         * device/include/stdbool.h: NEW
3019         * device/lib/_atof.c,
3020         * device/lib/_divuint.c,
3021         * device/lib/_divulong.c,
3022         * device/lib/expf.c,
3023         * device/lib/printf_large.c,
3024         * device/lib/sincosf.c,
3025         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
3026         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
3027           a completely reentrant lib.
3028
3029 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
3030
3031         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
3032         * device/include/pic16/stdio.h: fixed bug with colon
3033
3034 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
3035
3036         * device/include/pic16/stdio.h,
3037         * device/include/pic16/stdlib.h,
3038         * device/include/pic16/math.h: NEW
3039         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
3040         declared as _naked to reduce overhead
3041         * device/lib/Makefile.in (target port-specific-objects-pic16):
3042         changed * to *.* so to ignore the CVS directory,
3043         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
3044         stacked variables back in stack,
3045         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
3046         corruption
3047
3048 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
3049
3050         * .version: bumped version number to 2.4.5
3051         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
3052         * support/Util/SDCCerr.c (messages structure): added entry for
3053         W_POSSBUG2
3054
3055         Large cumulative patch for pic16 port and libraries.
3056         * device/include/pic16/sdcc-lib.h,
3057         * device/include/pic16/stdarg.h,
3058         * device/include/asm/pic16/features.h,
3059         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
3060         * device/include/pic16/float.h: changes reentrant keyword with
3061         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
3062         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
3063         updated target build-libraries to include objects from gptr,
3064         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
3065         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
3066         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
3067         all function headings,
3068         * src/SDCCmain.c: added global parameter userIncDirsSet,
3069         * (parseCmdLine): when option -I is encountered add directory to
3070         userIncDirsSet too,
3071         * src/version.awk: added space between control and long,
3072         * src/pic16/NOTES: added some notes for the port,
3073         * src/pic16/gen.c: added prototype for mov2fp function,
3074         * (fReturnpic16[]): properly named return value registers,
3075         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
3076         * (aopForSym): added code to handle symbols with onStack flag set,
3077         symbols onStack are allocated PTRSIZE bytes,
3078         * (aopFreeAsmop): handles special case where asmops are stack objects,
3079         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
3080         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
3081         added argument lock to trace flaws in allocating temporary registers
3082         when developing port,
3083         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
3084         * (pic16_popRegFromString): reenabled allocating a direct register
3085         from string,
3086         * (assignResultValue): various beautifications,
3087         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
3088         referenced function argument,
3089         * (genIpush): reenabled to allow stacked arguments, handles only
3090         ic->parmPush iCodes,
3091         * (genCall, genPcall): major changes to allow for variable argument
3092         functions, fixed a bug with falsely restoring stack pointer after
3093         returning from call,
3094         * (genFunction): pending code for critical function,
3095         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
3096         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
3097         * (genNearPointerGet): fixed bug with indirect reading, was always
3098         reading from INDF0
3099         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
3100         pointers,
3101         * (genAddrOf): rewrote code to take address of a stacked function parameter
3102         * (genCast): fixed casting to generic pointer type,
3103         * src/pic16/gen.h: added AOP_STA,
3104         * (struct asmop): added field stk,
3105         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
3106         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
3107         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
3108         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
3109         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
3110         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
3111         generic pointers,
3112         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
3113         and library paths,
3114         * (pic16_port structure): generic pointer size is set to 3,
3115         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
3116         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
3117         compiler warning,
3118         * src/pic16/ralloc.c (allocReg): prevent allocating register when
3119         operand is an iTemp,
3120
3121 2004-09-24 Martin Helmling <mh AT octo-soft.de>
3122
3123         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
3124         * debugger/mcs51/simi.c: addapt new syntax of s51
3125
3126 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
3127
3128         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
3129         * src/pic16/pcode.c: commented out some calls to free() in order to
3130         fix bug #989576,
3131
3132 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3133
3134         * src/SDCCicode.h,
3135         * src/SDCCicode.c (isiCodeInFunctionCall),
3136         * src/avr/ralloc.c (selectSpil),
3137         * src/pic/ralloc.c (selectSpil),
3138         * src/pic16/ralloc.c (selectSpil),
3139         * src/ds390/ralloc.c (selectSpil),
3140         * src/hc08/ralloc.c (selectSpil),
3141         * src/xa51/ralloc.c (selectSpil),
3142         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
3143         stack in the middle of a function call sequence (fixes bug #1020268)
3144         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
3145         costs associated with the minimum switch case.
3146
3147 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3148
3149         * src/SDCC.lex: fixed bug #1030549
3150
3151 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3152
3153         * src/SDCCcse.h (struct cseDef),
3154         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
3155         over a function call if the CSE is derived from a symbol whose
3156         address has been taken (fixes bug #1029883)
3157         * support/regression/tests/bug-1029883: a new regression test for
3158         this bug
3159
3160 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3161
3162         * src/hc08/gen.c (emitinline): fixed bug #1029778
3163         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
3164         to a cast object is no longer a syntax error ("fixes" bug #1030006,
3165         and starts toward RFE #905167)
3166
3167 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
3168
3169         * src/pic16/gen.c (mov2f): New function to move an operand to
3170         another without considering if it is a literal or a register,
3171         * (pic16_sameRegs): don't check if they are both AOP_REG,
3172         * (AccRsh): removed andmask=0 lines,
3173         * (genLeftShift): duplicated to be improved in future versions,
3174         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
3175         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
3176         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
3177         * (pic16initMnemonics): added initialization for POC_INFSNZW,
3178         * (insertBankSwitch): fixed inserting banksel directives algorithm
3179         for instructions that follow a skip instruction, this fixes a report
3180         for broken subtraction code generation,
3181         * src/pic16/ralloc.c (deassignLRs): do not free register if current
3182         iCode is a left op, just in case result and right share the same
3183         registers
3184
3185 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3186
3187         * src/hc08/main.c,
3188         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
3189         preservation of HX
3190         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
3191         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
3192         on 2004-09-12; it was buggy
3193
3194 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
3195
3196         * src/SDCCsymt.h: removed RESULT_CHECK
3197         * src/SDCCast.c,
3198         * src/SDCCglue.c,
3199         * src/SDCCval.c,
3200         * src/pic/glue.c,
3201         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
3202
3203 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
3204
3205         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
3206         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
3207         configuration values no more rejected by compiler, they are assigned
3208         to configuration registers with a warning message instead,
3209         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
3210         the for-loop so last conf register is emitted too,
3211         * (_pic16_initPaths): link library libsdcc.lib by default,
3212         * (_hasNativeMulFor): modified test for multiplication according to
3213         Raphael Neider's remarks. Integer multiplication is also done with
3214         support functions,
3215         * device/include/pic16/pic18fregs.h: corrected type error in while
3216         testing and including 18f6720 header file
3217
3218 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
3219
3220         * src/pic16/device.h (pic16_options): removed field use_crt,
3221         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
3222         until an optimization to handle single bits is added,
3223         * (pic16_loadFSR0): moved before genUnpackBits,
3224         * (genAnd): some white lines removed,
3225         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
3226         leave_reset flags in pic16_options when using crt modules,
3227
3228 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
3229
3230         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
3231           for bugs 898889 & 979599. Also used some safer print instructions.
3232
3233 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
3234
3235         * src/pic16/device.h (pic16_options_t): added field use_crt,
3236         crt_name, no_crt,
3237         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
3238         catch a probable future bug,
3239         * src/pic16/gen.c: aopIdx function commented out,
3240         * (genAssign): commented out old code which used aopIdx,
3241         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
3242         code, added if conditionals to take into account the --use-crt
3243         command line options,
3244         * src/pic16/main.c (pic16_optionsTable): added new command line
3245         options, --use-crt= and --no-crt,
3246         * (_pic16_linkEdit): now the proper crt object is added in the
3247         linker command line except than when --no-crt is specified,
3248         * src/pic16/pcode.c,
3249         * src/pic16/pcode.h: added some structures and functions for a new
3250         optimization scheme to compansate for instruction overhead between
3251         same iCodes, this scheme is currently under development and is not
3252         working in any way,
3253         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
3254         to && operator,
3255         * device/lib/pic16/startup/crt0i.c,
3256         * device/lib/pic16/startup/crt0iz.c: added global char variable
3257         __uflags to force the generation of an idata section
3258
3259 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
3260
3261         * doc/Makefile,
3262         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
3263         * doc/sdccman.lyx: updated sdcc version to 2.4.4
3264
3265 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3266
3267         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
3268         Frieder) and clarified the default code optimization mode
3269
3270 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3271
3272         * src/SDCC.lex (doPragma, process_pragma),
3273         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
3274         "opt_code_size", and "opt_code_balanced"
3275         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
3276         regrouped options by category, added support for category headers
3277         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
3278         and "--opt-code-size"
3279         * doc/sdccman.lyx: documented these new options and pragmas
3280         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
3281         preference into account
3282
3283 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3284
3285         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
3286           geniCodePreDec): Fixed bug 904237 by generating a warning
3287         * src/SDCCerr.h,
3288         * src/SDCCerr.c: added warning W_SIZEOF_VOID
3289
3290 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
3291
3292         * src/pic/device.c : When no max ram set validate full memory range.
3293         * src/pic/pcode.c,
3294         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
3295
3296 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3297
3298         * device/lib/_gptrget.c,
3299         * device/lib/_gptrput.c: updated comment
3300         * device/lib/calloc.c,
3301         * device/lib/free.c,
3302         * device/lib/malloc.c,
3303         * device/lib/realloc.c: added LGPL, made them reentrant-safe
3304         * src/SDCCcse.c (cseBBlock),
3305         * src/SDCCicode.c (printOperand, geniCodeArray),
3306         * src/SDCCicode.h (struct operand): fixed bug 868103
3307         * support/regression/tests/bug-868103.c: added
3308         * src/SDCCast.c (searchLitOp),
3309         * src/SDCCcse.h (struct cseDef),
3310         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
3311         * src/SDCCicode.h (struct operand),
3312         * src/SDCCsymt.h (struct sym_link),
3313         * src/avr/gen.c (hasInc),
3314         * src/ds390/gen.c (hasInc),
3315         * src/hc08/gen.c (genPlusIncr, hasInc),
3316         * src/mcs51/gen.c (hasInc),
3317         * src/pic16/glue.c (pic16_printIvalChar),
3318         * src/pic16/ralloc.c (regWithIdx),
3319         * src/xa51/gen.c (hasInc) : removed warnings
3320         * src/SDCCast.c (createBlock): added comment ???
3321         * src/hc08/ralloc.c: updated comments
3322
3323 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3324
3325         * doc/sdccman.lyx: updated section on switch statements, added
3326         section about semaphore locking
3327         * doc/Makefile: added option -info for latex2html
3328         * device/lib/_gptrget.c,
3329         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
3330
3331 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3332
3333         * src/pic/device.h,
3334         * src/pic/device.c,
3335         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
3336          maxram is less than 0x100.
3337
3338 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3339
3340         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
3341
3342 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3343
3344         * src/port.h,
3345         * src/mcs51/main.c,
3346         * src/ds390/main.c,
3347         * src/z80/main.c,
3348         * src/hc08/main.c,
3349         * src/pic/main.c,
3350         * src/pic16/main.c,
3351         * src/avr/main.c,
3352         * src/xa51/main.c
3353         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
3354         a jump table is the best form for a switch statement, including
3355         automatic insertion of missing cases to make the case range
3356         continuous. Developed in collaboration with Frieder Ferlemann.
3357
3358 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3359
3360         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
3361         accumulator result if it needs sign extension
3362
3363 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3364
3365         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
3366
3367 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3368
3369         * device/lib/gbz80/printf.c,
3370         * device/lib/z80/printf.c: removed define for NULL
3371
3372 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3373
3374         * as/xa51/xa_link.c,
3375         * device/examples/ds390/ow390/ad26.c,
3376         * device/examples/ds390/ow390/cnt1d.c,
3377         * device/examples/ds390/ow390/counter.c,
3378         * device/examples/ds390/ow390/ds2480.h,
3379         * device/examples/ds390/ow390/ds2480ut.c,
3380         * device/examples/ds390/ow390/findtype.c,
3381         * device/examples/ds390/ow390/gethumd.c,
3382         * device/examples/ds390/ow390/owllu.c,
3383         * device/examples/ds390/ow390/ownetu.c,
3384         * device/examples/ds390/ow390/swt12.c,
3385         * device/examples/ds390/ow390/swtloop.c,
3386         * device/examples/ds390/ow390/temp.c,
3387         * device/examples/ds390/ow390/temp10.c,
3388         * device/examples/ds390/ow390/thermo21.c,
3389         * device/examples/ds390/ow390/tinilnk.c,
3390         * device/examples/ds390/ow390/tstfind.c,
3391         * device/examples/serialcomm/windows/serial.cpp,
3392         * device/examples/serialcomm/windows/test_serialcomm.cpp,
3393         * device/include/reg51.h: fixed line endings for cvs
3394
3395 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3396
3397         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
3398         packRegsForAccUse, packRegisters): new accumulator register
3399         packing algorithm
3400         * support/regression/ports/hc08/support.c (_putchar): suppress
3401         warning of unused variable
3402         * src/SDCCicode.c: added SWAP entry to codeTable
3403
3404 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
3405
3406         * device/lib/sprintf.c: forgot to add this file before previous commit
3407
3408 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
3409
3410         * src/pic16/gen.c (genPackBits): added operand right in function
3411         parameters, load result directly if p_type is POINTER (that is
3412         called by genNearPointerSet)
3413         * (genUnPackBits): added operand left in function parameters,
3414         * (genNearPointerGet, genNearPointerSet): prevent the loading of
3415         FSR0 if accessing bitfields,
3416
3417 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
3418
3419         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
3420           _print_format; updated printf, sprintf, vsprintf
3421         * device/include/asm/default/features.h: corrected comment/define
3422         * device/lib/Makefile.in: added sprintf.c
3423         * device/lib/libsdcc.lib: added sprintf module
3424         * device/lib/printf_large.c,
3425         * device/lib/vprintf.c,
3426         * device/lib/sprintf.c: totally refactored printf_large and vprintf
3427           into these 3 files
3428         * support/regression/Makefile: changed ALL_PORTS into a usefull default
3429         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
3430         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
3431           hc08 test
3432         * support/regression/tests/zeropad.c: define idata as data for hc08
3433
3434 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3435
3436         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
3437         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
3438         labels are referenced at least once (even if a reference is not found)
3439         * src/hc08/gen.c (emitcode): set isComment flag for comments
3440         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
3441         loads), rules 6a..6b (optimize jumps to return)
3442
3443 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3444
3445         * device/lib/acosf.c (acosf),
3446         * device/lib/asinf.c (asinf),
3447         * device/lib/atanf.c (atanf),
3448         * device/lib/ceilf.c (ceilf),
3449         * device/lib/cosf.c (cosf),
3450         * device/lib/coshf.c (coshf),
3451         * device/lib/cotf.c (cotf),
3452         * device/lib/fabsf.c (fabsf),
3453         * device/lib/floorf.c (floorf),
3454         * device/lib/log10f.c (log10f),
3455         * device/lib/logf.c (logf),
3456         * device/lib/sinf.c (sinf),
3457         * device/lib/sinhf.c (sinhf),
3458         * device/lib/sqrtf.c (sqrtf),
3459         * device/lib/tanf.c (tanf),
3460         * device/lib/tanhf.c (tanhf),
3461         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
3462         replaced all instances of "reentrant" in the library functions
3463         defined in math.h with this macro.
3464         * support/regression/tests/float_trans.c: reenabled test for hc08
3465
3466 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
3467
3468         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
3469         erroneously deleted
3470
3471 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3472
3473         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
3474         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
3475         multi-byte volatile operands are used
3476         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
3477         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
3478         initialization to area GSINIT0 so that it would always precede
3479         any static initializers in GSINIT
3480         * support/regression/tests/zeropad.c: fixed idata define for hc08
3481         * support/regression/tests/bug-927659.c,
3482         * support/regression/tests/float_trans.c: disabled tests for hc08
3483         pending missing library routines
3484         * .version: increased version number to 2.4.4 - hc08 port now passes
3485         regression tests
3486
3487
3488 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
3489
3490         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
3491         * Makefile.common.in,
3492         * as/Makefile,
3493         * as/hc08/Makefile.in,
3494         * as/mcs51/Makefile.in,
3495         * as/z80/Makefile.in,
3496         * debugger/mcs51/Makefile.in,
3497         * device/include/Makefile.in,
3498         * device/lib/Makefile.in,
3499         * doc/Makefile,
3500         * link/Makefile,
3501         * link/z80/Makefile.in,
3502         * packihx/Makefile.in,
3503         * sim/ucsim/main_in.mk,
3504         * sim/ucsim/avr.src/Makefile.in,
3505         * sim/ucsim/doc/Makefile.in,
3506         * sim/ucsim/gui.src/serio.src/Makefile.in,
3507         * sim/ucsim/hc08.src/Makefile.in,
3508         * sim/ucsim/s51.src/Makefile.in,
3509         * sim/ucsim/xa.src/Makefile.in,
3510         * sim/ucsim/z80.src/Makefile.in,
3511         * src/Makefile.in,
3512         * support/cpp2/Makefile.in,
3513         * support/librarian/Makefile,
3514         * support/makebin/Makefile: added DESTDIR to the install path proposed
3515         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
3516         * doc/sdccman.lyx: added DESTDIR documentation
3517
3518 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
3519
3520         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
3521         instruction for interrupt handlers, use fast returns when returning
3522         from high priority interrupts
3523
3524 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3525
3526         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
3527         code generation
3528         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
3529         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
3530         bugs, ported much of Bernhard's code from mcs51
3531         * src/mcs51/gen.c (genSend),
3532         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
3533         than one when calling a reentrant function
3534         * device/lib/_mullong.c: defined an alternate struct layout for big
3535         endian ports (hc08)
3536
3537 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3538
3539         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
3540         test
3541
3542 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3543
3544         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
3545         are sane and complete before asking the port its prefered parameter
3546         passing method (fixes bug #1017633)
3547         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
3548         and _ret3
3549
3550 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3551
3552         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
3553         problem in bitfields >= 8 bits.
3554
3555 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3556
3557         * src/SDCCsymt.c: undid changes that were not meant to be committed
3558
3559 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3560
3561         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
3562
3563 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3564
3565         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
3566           copied and wrong bit got inverted
3567
3568 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3569
3570         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
3571         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
3572         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
3573         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
3574         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
3575         assignments to bitfields at known addresses
3576         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
3577         reads from bitfields at known addresses
3578         * src/hc08/ralloc.c (packRegisters),
3579         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
3580         genhc08Code): optimize pointer get values used as conditionals
3581         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
3582         and branch
3583
3584 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3585
3586         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
3587         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
3588         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
3589         as conditionals
3590
3591 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3592
3593         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
3594
3595 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3596
3597         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
3598         related problems
3599
3600 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
3601
3602         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
3603
3604 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3605
3606         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
3607         mcs51 port
3608
3609 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
3610
3611         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
3612
3613 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3614
3615         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
3616         cases use more compact code.
3617
3618 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
3619
3620         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
3621
3622 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3623
3624         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
3625
3626 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3627
3628         * src/SDCCsymt.h,
3629         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
3630         parameter of changePointer() from symbol* to sym_link*
3631         * src/SDCCast.c (decorateType): call changePointer() for CAST op
3632         * src/SDCCsymt.c (compareType): void* type is castable to other
3633         pointers, but not necesarily an exact match.
3634         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
3635         is no longer blindly treated as an exact match.
3636         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
3637
3638 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
3639
3640         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
3641
3642 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
3643
3644         * src/pic/gen.c,
3645         * src/pic/pcode.c,
3646         * src/pic/ralloc.h,
3647         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
3648
3649 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
3650
3651         * src/pic/device.c,
3652         * src/pic/device.h,
3653         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
3654
3655 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3656
3657         * src/mcs51/gen.c (emitcode): fixed bug #992819
3658
3659 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
3660
3661         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
3662           there's no need to make it worse
3663
3664 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3665
3666         * src/mcs51/ralloc.c (deassignLR),
3667         * src/ds390/ralloc.c (deassignLR),
3668         * src/hc08/ralloc.c (deassignLR),
3669         * src/z80/ralloc.c (deassignLR),
3670         * src/pic/ralloc.c (deassignLR),
3671         * src/pic16/ralloc.c (deassignLR),
3672         * src/avr/ralloc.c (deassignLR),
3673         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
3674         rlivePoint): fixed another part of bug #971834
3675
3676 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3677
3678         * src/z80/main.c: enabled "critical" keyword
3679         * src/z80/mappings.i,
3680         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
3681         functions (fixes bug #979646)
3682         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
3683
3684 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3685
3686         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
3687           such as c:\mydir.
3688
3689 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
3690
3691         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
3692           doesn't disable too much optimizations
3693
3694 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3695
3696         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
3697
3698 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
3699
3700         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
3701
3702 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3703
3704         * src/pic/gen.c tidied up tabs
3705         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
3706         * src/pic/main.c tidied up tabs
3707         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
3708         * src/pic/pcoderegs.c tidied up tabs
3709         * src/pic/ralloc.c tidied up tabs
3710
3711 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
3712
3713         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
3714         to S_FIXED for pic16 port and when symbol is not in level 0,
3715         allocate for S_REGISTER storage class and pic16 port, too,
3716         * src/pic16/device.h: prototype for checkSym,
3717         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
3718         * (pic16_assignConfigWordValue): test the value and the mask to
3719         validate that the value is suitable for the configuration word,
3720         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
3721         collect extern declared symbols, don't emit symbol twice, check
3722         first if symbol is in publics set first,
3723         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
3724         * added command line '--fstack' which enables an experimental
3725         feature for stack access, too buggy to be used yet...
3726         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
3727         * (pic16_allocDirReg): when register has storage class S_REGISTER
3728         allocate in pic16_dynAccessRegs,
3729         * device/include/pic16/pic18f????.h: modified configuration word
3730         naming convention, words started as CONFIG0H but should be CONFIG1H
3731
3732 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
3733
3734         * device/include/mcs51reg.h: fixed bug 970993
3735
3736 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
3737
3738         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
3739         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
3740         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
3741         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
3742         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
3743         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
3744           error/warning numbers,
3745           added function setWarningDisabled()
3746         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
3747         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
3748           _memcmp.c _memmove.c calloc.c realloc.c free.c
3749         * support/regression/tests/malloc.c: added tests for new functionality
3750         * support/regression/tests/zeropad.c: added tests for truncated initializers
3751           and initialized char arrays starting with '\x0'
3752         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
3753
3754 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
3755
3756         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
3757
3758 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3759
3760         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
3761         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
3762         peephole 177.e. Thanks to anonymous
3763
3764 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
3765
3766         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
3767         function isn't used in the source but referenced as a
3768         variable initializer then declare it as extern in .asm file
3769
3770 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
3771
3772         * .version: increased version number to 2.4.3
3773
3774         Adding version extension according to ChangeLog CVS revision
3775         * src/Makefile.in (target all): added dependency 'version.h'
3776         * (rule version.h): added rule to create version.h from ChangeLog,
3777         * (rule dep): added dependency version.h,
3778         * src/version.awk: AWK script to create version.h
3779         * src/SDCCdwarf2.c (dwWriteModule),
3780         * src/SDCCglue.c (initialComments),
3781         * src/SDCCmain.c (printVersionInfo): modified to write after
3782         version string the version extension number,
3783         * src/SDCCutil.c: included "version.h"
3784         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
3785         number,
3786         * src/SDCCutil.h: added prototype for getBuildNumber
3787
3788         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
3789         includeDirsSet, too,
3790         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
3791         const char [] is found in function prototype...
3792
3793         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
3794         moving to WREG with source is already in WREG,
3795         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
3796         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
3797         * (aopForSym): stack'ed symbols are partially supported, added
3798         if-clause to support symbols in FARSPACE,
3799         * (sameRegs): added test for AOP_ACC to see if registers are same,
3800         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
3801         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
3802         * (pic16_popRegFromString): will not allocate a new register if it
3803         doesn't find one by name, bug may have introduced...
3804         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
3805         * (genIpush): revived to use pic16 port's stack,
3806         * (genAddrOf): added incomplete case for stack'ed operand,
3807         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
3808         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
3809         can handle multibyte operands,
3810         * src/pic16/glue.c (pic16_printIval*): some debug info added,
3811         * (pic16initialComments): added message for MPLAB compatibility
3812         mode enabled,
3813         * src/pic16/main.h: prototype for pic16_mplab_comp,
3814         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
3815         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
3816         * (_pic16_linkEdit): NEW, handles link stage, transferred here
3817         because of increased complexity of procedure,
3818         * (_process_pragma): stack pragma changed to format 'stack pos len',
3819         emit symbol '_stack_end' to conform with gplink,
3820         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
3821         to search for register,
3822         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
3823         PO_GPR_REGISTER,
3824         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
3825         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
3826         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
3827         case for PO_GPR_REGISTER,
3828         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
3829         dies, the new era is ahead !...
3830         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
3831         pic16_dynInternalRegs,
3832         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
3833         * (pic16_allocDirReg): minor optimizations and bug fixes,
3834         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
3835
3836         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
3837         load stack and frame pointer with address of 'stack_end' symbol
3838
3839 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
3840
3841         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
3842         without source code but only variable initializers
3843
3844 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
3845
3846         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
3847         external are not declared as extern to reduce overhead while linking
3848
3849 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
3850
3851         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
3852
3853 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
3854
3855         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
3856           Yee Keat for the patch
3857         * src/SDCCast.c (decorateType): fixed bug #979599
3858         * src/ds390/gen.h: removed local fReturnSizeDS390
3859         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
3860         * src/ds390/gen.c (genAnd, genOr, genXor),
3861         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
3862
3863 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
3864
3865         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
3866         add relFilesSet to $3, manipulate $2 to handle linking of object
3867         files without source files in command line,
3868         * device/include/pic16 (all headers): added ID location macros,
3869         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
3870         entries for ID location bytes,
3871         * (pic16_assignIdByteValue): NEW,
3872         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
3873         added field dumpcalltree to pic16_options_t,
3874         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
3875         is used instead of pic16_Gstack_base_addr, check if (ifx) before
3876         emitting rFalseIfx label after check_carry label,
3877         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
3878         pic16_emitDIRegs), NEW
3879         * (pic16glue): dump .calltree file when option --calltree found,
3880         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
3881         * (_pic16_genAssemblerPreamble): emit ID locations after
3882         configuration registers,
3883         * (pic16_linkCmd): modifications of the link command,
3884         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
3885         * (pic16_pCodeInitRegisters): don't init stack registers,
3886         * (pic16_findPrevInstruction): fixed bug,
3887         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
3888         bug with immediate registers,
3889         * (buildCallTree): traces stack push and pop,
3890         * (pct2): dump also stack usage for each function,
3891         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
3892         * (pic16_allocDirReg): various modifications,
3893         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
3894         fixed to 1,
3895
3896 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
3897
3898         * src/pic16/pcode.c: removed buggy double colon
3899
3900 2004-07-01 Borut Razem <borut.razem AT siol.net>
3901
3902         * support/scripts/sdcc.nsi: added include/pic16 to setup
3903
3904 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
3905
3906         * device/lib/Makefile.in: fixed bug in target objects-pic16,
3907         * device/lib/pic16/Makefile: prefixed with dash (-) command under
3908         target 'clean',
3909         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
3910         specific command line arguments. Also added sample lkr script
3911         for placing a variable at a specific memory bank.
3912         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
3913         at a specific memory bank,
3914         * (pic16_dump_isection): fixed bug which caused string literals to
3915         be omitted when dumping idata section,
3916         * (pic16_groupRegistersInSection): added code to handle registers
3917         in specific memory banks,
3918         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
3919         public, all references are renamed too,
3920         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
3921         AOP_DPTR2,
3922         * (pic16_storeForReturn): added case to handle when dest is WREG,
3923         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
3924         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
3925         pic16_rel_udata, check to see if that register is marked as being
3926         a member of a specific memory bank,
3927         * (pic16_printIvalCharPtr): added code to add string literals either
3928         to code or the idata sections,
3929         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
3930         also accept the 'udata' pragma,
3931         * src/pic16/main.h: new structure types sectName and sectSym
3932         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
3933         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
3934         * (pic16_findPrevInstruction): fixed, it returned nothing,
3935         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
3936         instruction combinations,
3937         * (pic16_FixRegisterBanking): heavily reorganised,
3938         * (pic16_AnalyzeBanking): if generating banksel directives is
3939         disabled, then don't call FixRegisterBanking at all,
3940         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
3941         completely removed,
3942         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
3943
3944 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
3945
3946         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
3947         Phuah Yee Keat <yk.phuah AT nestac.com>
3948
3949 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3950
3951         * src/pic16/glue.c (pic16createInterruptVect): function now emits
3952         correctly the IVT even if it is relocated to some other location
3953
3954 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3955
3956         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
3957         * device/include/pic16/pic18f2220.h: NEW,
3958         * device/lib/pic16/libdev/pic18f2220.c: NEW,
3959         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
3960         * src/pic16/device.c (struct Pics16): added info for 18f2220,
3961         * src/pic16/device.h (struct pic16_options): added ivt_loc and
3962         nodefaultlibs, ivt_loc is the location of the interrupt vector
3963         table, and nodefaultlibs signs that default libraries should not be
3964         linked in link stage,
3965         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
3966         according to --ivt-loc argument,
3967         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
3968         when pragma stack is found,
3969
3970 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3971
3972         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
3973         256 (range check), 257 (do while), 258.a-f (bit banging
3974         f.e. on 3-wire SPI bus)
3975
3976 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3977
3978         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
3979         variables used exclusively within a loop
3980
3981 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
3982
3983         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
3984
3985 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3986
3987         * src/SDCClrange.c (computeClash): fixed bug #971834
3988
3989 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3990
3991         * src/mcs51/gen.c (genCmp): fixed bug #975903
3992         * src/hc08/gen.c (operandsEqu),
3993         * src/ds390/gen.c (operandsEqu),
3994         * src/z80/gen.c (operandsEqu),
3995         * src/pic/gen.c (operandsEqu),
3996         * src/pic16/gen.c (operandsEqu),
3997         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
3998         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
3999
4000 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4001
4002         * src/SDCCcse.c (cseBBlock): fixed bug #966963
4003
4004 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
4005
4006         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
4007         default case in switch statement,
4008         * glue.c (pic16_initPointer): expr is initialised via decoarteType
4009         to eliminate problem with initialisation of pointers, but problem
4010         still exists,
4011         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
4012         * (emitStaticSegment): removed various lines emitting debug info,
4013         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
4014         added processor registers for utilizing EEPROM,
4015         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
4016         configurable and set 8
4017
4018 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
4019
4020         * .version: increased version number to 2.4.2,
4021
4022         Cumulative patch for pic16 port
4023         * src/pic16/device.c: changed scheme to dump initial values for
4024         variables in idata segment, all print_idata* functions were removed,
4025         now the pic16_printIval* will be called,
4026         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
4027         * _pic16_printPointerType, pic16_printPointerType,
4028         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
4029         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
4030         NEW, similar to the respective functions in SDCCglue.c,
4031         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
4032         way, emitting hex bytes,
4033         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
4034
4035 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4036
4037         * src/avr/ralloc.c (serialRegAssign),
4038         * src/xa51/ralloc.c (serialRegAssign),
4039         * src/pic/ralloc.c (serialRegAssign),
4040         * src/pic16/ralloc.c (serialRegAssign),
4041         * src/hc08/ralloc.c (serialRegAssign),
4042         * src/z80/ralloc.c (serialRegAssign),
4043         * src/ds390/ralloc.c (serialRegAssign),
4044         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
4045
4046 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4047
4048         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
4049         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
4050
4051 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
4052
4053         Cumulative patch for pic16 port:
4054         * src/pic16/device.h (typedef PIC16_device) modified fields for
4055         defining microcontrollers,
4056         * src/pic16/device.c: added new info for all devices in Pics16 array,
4057         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
4058         to be optimised out by the pCode optimiser,
4059         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
4060         specially, bug reported by G.M. Gallant,
4061         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
4062         as force'd so that cannot be optimised out by pCode optimiser,
4063         * src/pic16/pcode.c,
4064         * src/pic16/pcodepeeph.c,
4065         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
4066         they are disabled by default, but can be enabled explicit with
4067         command argument --denable-peeps, for testing,
4068         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
4069         --pomit-ivt in COMPILE_FLAGS
4070
4071 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4072
4073         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
4074           compilation on MSVC
4075
4076 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4077
4078         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
4079
4080 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4081
4082         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
4083         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
4084
4085 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
4086
4087         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
4088         would only assign 0x300001 register.
4089
4090 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
4091
4092         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
4093         in COMPILE_FLAGS. Thanks to G. Gallant for report.
4094
4095 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4096
4097         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
4098         for ds80c400
4099         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
4100         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
4101         added peephole 254 (left shift), 255 (jump table)
4102
4103 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
4104
4105         * device/lib/Makefile.in: removed comment line with model-pic16,
4106         * (target port-specific-objects-pic16): the libraries and objects
4107         are copied to the build directory form the device/lib/pic16/bin
4108         directory
4109
4110         Cumulative patch concerning pic16 port:
4111         * library directory has been re-organized,
4112         * added support for PIC18F1220,
4113         * added headers and library sources for chips 18f1220,18f6520,
4114         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
4115
4116         * configuration registers setting has changed, now each supported
4117         device has a complete description of the registers it uses,
4118         * all initialisations are moved to idata sections, these section
4119         can be absolute or relocatable,
4120         * fixed initialisation of codespace variables,
4121         * fixed warning about PCLATU and gpsim,
4122         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
4123         * (genAssign): use table reads when assigning from variables in codespace,
4124         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
4125         char/int variables placed in codespace,
4126         * (pic16_emitConfigRegs): NEW, emits a list with configuration
4127         registers set in .asm file, no need for --pomit-config-words anymore,
4128         * (pic16glue): some 8051 legacy segments are commented out
4129         (to be removed completely),
4130         * added support for alternative assembler and linker with --asm=
4131         and --link= command line arguments,
4132         * peepholes are disabled automatically in the port, no need to
4133         specify on command line,
4134         * port supports natively char/int/long multiplication, but converts
4135         all divisions to support functions,
4136         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
4137         to the file set in variable $2,
4138         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
4139         strings in ASCII format and not in hex,
4140         * ralloc.c (serialRegAssign): added a triplet of conditional calls
4141         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
4142         allocate proper register if iCodes aren't temporary,
4143
4144 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
4145
4146         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
4147
4148 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
4149
4150         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
4151         is commented out
4152
4153 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4154
4155         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
4156         computed address is reused
4157         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
4158         multi-byte bitfields
4159
4160 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4161
4162         * src/z80/gen.c: (genArrayInit): must check for pointers too
4163
4164 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4165
4166         * support/regression/tests/zeropad.c: never meant to commit the
4167           nestedstruct test: removed, added check for GCC version
4168
4169 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
4170
4171         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
4172         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
4173         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
4174           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
4175           bugs 928906 and 954082 half-empty initializers
4176         * src/SDCCsymt.h,
4177         * src/SDCCsymt.c (getAllocSize): added for above fix
4178         * src/z80/gen.c (genArrayInit): fixed bug 741044
4179         * support/regression/tests/zeropad.c: added tests
4180
4181 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
4182
4183         * src/pic16/device.c (pic16_dump_section): corrected bug which
4184         caused some symbols of the libraries to be misplaced
4185
4186 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4187
4188         * src/pic16/glue.c,
4189         * src/pic16/ralloc.h,
4190         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
4191         to fix conflict with pic port
4192
4193 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4194
4195         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
4196         externs configuration variables,
4197         * src/pic16/ralloc.h,
4198         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
4199         prototype in header, commented out some debug messages
4200
4201 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
4202
4203         * src/pic16/glue.c,
4204         * src/pic16/main.c,
4205         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
4206         for gpasm COFF object generation. Thanks to D. Hawkins for
4207         his patch info
4208
4209 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4210
4211         * src/ds390/main.c,
4212         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
4213         Brock for spotting this)
4214         * src/ds390/gen.c (genEndFunction),
4215         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
4216         interrupt handler and critical. Disable push/pop optimizations when
4217         peephole optimizations disabled.
4218
4219 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4220
4221         Updated pic16 library sources and headers.
4222         * device/lib/pic16/pic18f*/ ,
4223         * device/include/pic16/*.h: modified to handle structured SFR
4224         definitions
4225
4226 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4227
4228         * src/port.h (PORT structure): added hook initPaths, now each
4229         port can declare its own default search paths,
4230         which can been seen with the --print-search-dirs option,
4231         see pic16 port for example,
4232         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
4233         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
4234         * (doPrintSearchDirs): NEW, replaces in a central manner the
4235         printing of search dirs which was split in set*Paths functions,
4236         * (main): added call to port->initPaths and doPrintSearchDirs,
4237         * src/avr/main.c,
4238         * src/ds390/main.c,
4239         * src/hc08/main.c,
4240         * src/izt/i186.c,
4241         * src/izt/tlcs900h.c,
4242         * src/mcs51/main.c,
4243         * src/pic/main.c,
4244         * src/pic16/main.c: modified port structures to reflect addition of
4245         initPaths hook,
4246
4247         * src/pic16/device.c (regCompare): registers are finally sorted by name,
4248         * (pic16_dump_section): for registers in same address reserve memory once,
4249         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
4250         to no_banksel,
4251         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
4252         result is greater in size than right or left,
4253         * (pic16_genUMult8X8_8): there are some cases where the result can
4254         be 16 bits size, so handle these,
4255         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
4256         * (pic16_outBitC): modified to emit pcodes,
4257         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
4258         or not,
4259         * (genDivOneByte): implemented algorithm to divide 8-bits,
4260         * (genCmp): uncommented goto, but issues still exist,
4261         * (genAnd): fixed a bug with variables >8bits,
4262         * (genPackBits): optimization added that uses BCF/BSF to change a
4263         single bit,
4264         * (genAssign): fixed bug when assigning floating point literals,
4265         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
4266         __sdcc_gsinit_startup label,
4267         * src/pic16/main.c (_pic16_init): removed search directory
4268         initialisations,
4269         * (_pic16_initPaths): NEW, used to initialise search directories,
4270         * (_hasNativeMulFor): support functions for all except char/int
4271         multiplication, and char division,
4272         * (PIC16_port struct): modified entry for native mul support,
4273         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
4274         no_banksel option,
4275         * (buildCallTree): call to register_usage is ifdef'ed out,
4276
4277 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4278
4279         * device/include/string.h: applied Stas Sergeev's patch to make this
4280         header file compatible with the preprocessor -Wundef option
4281         * src/SDCCmain.c (main): abort compilation if preprocessor reports
4282         failure (fixes bug #941458)
4283
4284 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4285
4286         * src/SDCCopt.c (killDeadCode): fixed bug #907733
4287         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
4288         that the variable, not the function, should be static
4289         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
4290         to be consistent with non-literal case
4291
4292 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4293
4294         * src/SDCCast.c (isConformingBody): fixed bug #949967
4295         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
4296         convilong): fixed bug #952086
4297
4298 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4299
4300         * src/SDCCmem.c (allocVariables): fixed bug #955321
4301
4302 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4303
4304         * src/hc08/main.c (_hc08_genAssemblerEnd),
4305         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
4306         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
4307         completely eliminated the use of a temporary file
4308         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
4309         when more than one file linked
4310         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
4311
4312 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4313
4314         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
4315         which fixes bug #543481
4316         * support/regression/tests/bug-751703.c: fixed comments left from a
4317         cut and paste error
4318         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
4319         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
4320         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
4321         scopes
4322         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
4323         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
4324         are now changed to underscores in moduleName
4325
4326 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4327
4328         * as/mcs51/lkmem.c: better fix for bug #954173
4329
4330 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
4331         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4332
4333         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
4334         * device/include/c8051f000.h,
4335         * device/include/c8051f120.h,
4336         * device/include/c8051f300.h,
4337         * device/include/c8051f310.h,
4338         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
4339         PWM16) and detab'ed
4340
4341 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4342
4343         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
4344         and mailing lists, doc'ed --no-peep-comments, removed reference
4345         to knoppix (newest version has no LyX/LaTeX), other minor changes
4346         * src/SDCCglue.c (glue): save 2 bytes stack space with
4347         option --main-return. The ljmp could probably be avoided too
4348
4349 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4350
4351         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
4352
4353 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4354
4355         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
4356         * src/SDCCopt.c (isLocalWithoutDef),
4357         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
4358         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
4359         (credit to Maarten Brock for patch #949363, on which this is based)
4360         * support/regression/tests/bug-751703.c: some test cases of extern used
4361         within inner scopes.
4362
4363 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4364
4365         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
4366         SPEC_STRUCT
4367         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
4368         struct definitions
4369         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
4370         dwWriteLabel): fix to create valid debugger symbols even when
4371         the module name has non-alphanumeric symbols in it
4372         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
4373         when a variable's allocation has been optimized away
4374
4375
4376 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4377
4378         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
4379         * src/hc08/main.c,
4380         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
4381         * src/mcs51/main.c,
4382         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
4383         * src/ds390/main.c,
4384         * src/z80/gen.c (z80_emitDebuggerSymbol),
4385         * src/z80/main.c,
4386         * src/pic/gen.c (pic14_emitDebuggerSymbol),
4387         * src/pic/main.c,
4388         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
4389         * src/pic16/main.c,
4390         * src/avr/gen.c (avr_emitDebuggerSymbol),
4391         * src/avr/main.c,
4392         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
4393         * src/xa51/main.c,
4394         * src/SDCCdebug.c (emitDebuggerSymbol),
4395         * src/SDCCdebug.h,
4396         * src/port.h: added a debugger struct to the port struct. Added a
4397         callback for defining debugger symbols
4398
4399         * src/SDCCast.c (createLabel),
4400         * src/SDCC.y (labeled_statement): mark all compiler generated labels
4401         with isitmp = 1
4402         * src/SDCCicode.h,
4403         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
4404         iCode back to the ast for the function
4405
4406         * src/hc08/ralloc.c (hc08_assignRegisters),
4407         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
4408         unneeded fields from the regs struct.
4409         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
4410         pushReg() & pullReg() functions instead of emitcode()
4411
4412         * src/hc08/gen.c (genLabel, genhc08Code),
4413         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
4414
4415         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
4416         debugger hooks
4417
4418         * src/hc08/gen.c (genEndFunction, genhc08Code),
4419         * src/hc08/gen.h,
4420         * src/mcs51/gen.c (genEndFunction, gen51Code),
4421         * src/mcs51/gen.h,
4422         * src/ds390/gen.c (genEndFunction, gen390Code),
4423         * src/ds390/gen.h,
4424         * src/z80/gen.c (genEndFunction, genZ80Code),
4425         * src/z80/gen.h,
4426         * src/z80/z80.h,
4427         * src/pic/gen.c (genEndFunction, genpic14Code),
4428         * src/pic/gen.h,
4429         * src/pic16/gen.c (genEndFunction, genpic16Code),
4430         * src/pic16/gen.h,
4431         * src/avr/gen.c (genEndFunction, genAVRCode),
4432         * src/avr/gen.h,
4433         * src/xa51/gen.c (genEndFunction, genXA51Code),
4434         * src/xa51/gen.h,
4435         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
4436         specific code to cdbFile.c and out of the backend code generators
4437
4438         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
4439         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
4440         starting address is now 0
4441
4442         * as/hc08/asm.h,
4443         * as/hc08/m08pst.c,
4444         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
4445         assembler directive for DWARF support
4446         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
4447
4448         * src/src.dsp,
4449         * src/Makefile.in,
4450         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
4451
4452 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4453
4454         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
4455         and inappropriate peephole optimization in jump tables
4456
4457 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4458
4459         * as/hc08/m08pst.c,
4460         * src/SDCCglue.c: sdccopt works for the hc08 port now
4461
4462 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
4463
4464         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
4465
4466 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4467
4468         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
4469
4470 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4471
4472         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
4473         rules
4474         * src/SDCCmain.c,
4475         * src/SDCCglobl.h,
4476         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
4477         comments from the peephole optimizer replacement rules
4478         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
4479         symbols
4480         * src/SDCCcse.c (updateSpillLocation),
4481         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
4482         equivalents
4483         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
4484         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
4485         objects far pointers
4486
4487 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4488
4489         * src/SDCCsymt.h: a missing part of my last change
4490         * src/pic/ralloc.c (regTypeNum),
4491         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
4492
4493 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4494
4495         * src/SDCCicode.h,
4496         * src/SDCCicode.c (aggrToPtrDclType),
4497         * src/SDCCptropt.h,
4498         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
4499         ptrPseudoSymConvert),
4500         * src/pic/ralloc.c (regTypeNum),
4501         * src/pic16/ralloc.c (regTypeNum),
4502         * src/hc08/ralloc.c (regTypeNum),
4503         * src/ds390/ralloc.c (regTypeNum),
4504         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
4505         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
4506
4507 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4508
4509         * link/z80/lkmain.c (afile),
4510         * as/hc08/lkmain.c (afile),
4511         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
4512         prevent a pointer problem when a filename has no directory and
4513         no extension specified.
4514
4515 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4516
4517         * link/z80/lkmain.c (afile): allow periods in directory names
4518         * link/z80/lkmain.c (afile),
4519         * as/mcs51/lkmain.c (afile),
4520         * as/hc08/lkmain.c (afile): allow linker script file to have an
4521         extension other than ".lnk"
4522         * link/z80/lklex.c (getfid),
4523         * link/z80/lkmain.c (parse),
4524         * as/mcs51/lklex.c (getfid),
4525         * as/mcs51/lkmain.c (parse),
4526         * as/hc08/lklex.c (getfid),
4527         * as/hc08/lkmain.c (parse): Support comments in the linker script
4528         file on lines by themselves and after filenames
4529
4530 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4531
4532         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
4533
4534 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4535
4536         * src/z80/peeph-z80.def: removed some peephole rules that don't
4537         work with multibyte arithmetic (fixed bug #937126)
4538         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
4539         to registers and not global variables
4540         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
4541         geniCodePreInc, geniCodePostDec, geniCodePreDec,
4542         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
4543         checking for assignments not internally generated (fixed bug #931895)
4544         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
4545         structure member (fixed bug #930072)
4546
4547 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4548
4549         * src/SDCCmain.c (linkEdit),
4550         * src/hc08/main.c (_hc08_parseOptions),
4551         * as/hc08/Makefile.in,
4552         * as/hc08/aslink.h,
4553         * as/hc08/asm.h,
4554         * as/hc08/m08pst.c,
4555         * as/hc08/lkrloc.c (relr, rele),
4556         * as/hc08/lkarea.c (lnkarea)
4557         * as/hc08/lkmain.c (afile, parse),
4558         * as/hc08/lkelf.c: support for ELF output
4559         * as/hc08/lks19.c (s19),
4560         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
4561
4562 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4563
4564         * as/mcs51/lkihx.c: Fixed bug #899105.
4565
4566 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4567
4568         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
4569         .dsp files from Unix to DOS.
4570
4571 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4572
4573         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
4574         function pointers; we have been compliant for several months now.
4575         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
4576         change that was accidently commented out
4577         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
4578         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
4579         bug #922319
4580
4581 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4582
4583         * src/hc08/gen.c: output of all of the internal debugging information
4584         is now controlled by the D() macro; it is disabled by default
4585
4586 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4587
4588         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
4589         harder to keep the same registers during a CAST iCode
4590         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
4591         long via int can be done in a single cast, if the signedness is
4592         correct.
4593         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
4594         putchar() in tinibios.c in ds390's library
4595
4596 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
4597
4598         * src/SDCCast.c (decorateType): fixed bug #898889,
4599         cast result of a literal complement too
4600         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
4601         fixed check for bitfields
4602
4603 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
4604
4605         * src/SDCCicode.c (geniCodeLogic): made it static,
4606         (geniCodeLogicAndOr): added in order to fix bug #905492,
4607         (ast2iCode): fixed bug #905492
4608         * support/regression/tests/bug-905492.c: added
4609         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
4610         (processParms): fixed bug #927659: don't copy parms, this will clear
4611         decorated flag
4612         * support/regression/tests/bug-927659.c: added
4613
4614 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
4615
4616         * src/SDCCast.c (addCast): don't cast float to char
4617         * device/lib/libsdcc.lib: added _memmove
4618
4619 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
4620
4621         * device/lib/large/Makefile: fixed parallel execution by
4622         replacing `make` by `$(MAKE)`
4623
4624 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4625
4626         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
4627         offsets (fixes bug #923936)
4628
4629 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
4630
4631         * device/lib/small/Makefile: fixed parallel execution by
4632         replacing `make` by `$(MAKE)`
4633
4634 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4635
4636         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
4637
4638 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
4639
4640         * src/pic/gen.c (genCpl): multi-byte complements were not working.
4641         * src/regression/Makefile: Regression test was not running.
4642
4643 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4644
4645         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
4646         complement if possible
4647         * src/SDCCval.c (valComplement),
4648         * src/SDCCicode.c (operandOperation): fixed complement of literal
4649         * support/regression/tests/onebyte.c (testComplement): added
4650
4651 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
4652
4653         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
4654         return an optimized tree; actually replace actParm with the new tree
4655         * src/SDCCast.h: added some parantheses to remove side effects
4656         * support/regression/tests/bug-920866.c
4657
4658 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
4659         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
4660         Bit operands were not being handled properly in the pic14 port.
4661         (now src/regression/add.c passes again).
4662
4663 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4664
4665         * src/SDCC.y (labeled_statement): case and default no longer require
4666         a following statement (RFE #893037)
4667
4668 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4669
4670         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
4671         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
4672         disabled (fixes bug #916294)
4673         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
4674         "mov a,acc"; patch provided by Lenny Story
4675         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
4676
4677 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4678
4679         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
4680         functions
4681         * src/ds390/gen.c (genFunction, genEndFunction),
4682         * src/ds390/ralloc.c (ds390_assignRegisters),
4683         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
4684         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
4685         pushed if there are parameters passed on the stack. Also, a cleaner
4686         way to decide if r0/r1 should be pushed/popped. (Together they fix
4687         bug #918693)
4688
4689 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4690
4691         * doc/sdccman.lyx,
4692         * device/lib/mcs51/crtpagesfr.asm,
4693         * device/lib/mcs51/crtxinit.asm,
4694         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
4695         to avoid confusion with Si Lab's SFRPAGE register.
4696
4697 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4698
4699         * src/SDCCglue.c (emitMaps): allow public sfr variables
4700         * src/SDCCglue.c (initialComments): include compiler build date
4701         with compiler version and put the timestamp of the generated
4702         assembly file on a serperate line to be less confusing.
4703         * src/port.h: added genInitStartup hook
4704         * src/avr/main.c,
4705         * src/ds390/main.c,
4706         * src/hc08/main.c,
4707         * src/pic/main.c,
4708         * src/pic16/main.c,
4709         * src/xa51/main.c,
4710         * src/z80/main.c: genInitStartup initialize as NULL (default to
4711         historical behaviour)
4712         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
4713         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
4714         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
4715         library instead of hard coding it into the compiler.
4716         * support/regression/ports/mcs51-stack-auto/spec.mk,
4717         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
4718         * device/lib/mcs51/Makefile,
4719         * device/lib/small/Makefile,
4720         * device/lib/large/Makefile,
4721         * device/lib/mcs51/crtpagesfr.asm,
4722         * device/lib/mcs51/crtstart.asm,
4723         * device/lib/mcs51/crtxclear.asm,
4724         * device/lib/mcs51/crtxinit.asm,
4725         * device/lib/mcs51/crtclear.asm,
4726         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
4727         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
4728         and into user configurable files.
4729         * device/lib/clean.mk: clean mcs51 directory too
4730         * support/regression/tests/longlit.c: added static to T1 declaration
4731         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
4732         accesses in the initialization code
4733
4734 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4735
4736         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
4737         OSCTRIMVAL as noted in bug #916008
4738
4739 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4740
4741         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
4742         in loops with multiple exits (reported as incorrect registers
4743         used by Martin Helmling in Sdcc-user list)
4744
4745 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4746
4747         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
4748         made ds390 register extensions look less like error messages
4749
4750 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4751
4752         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
4753         reported by Adam Wozniak in Sdcc-user list
4754
4755 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
4756
4757         * src/SDCCast.c (decorateType): fixed with bug and promotion in
4758         arithmetic optimizations, added debug output
4759
4760 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
4761
4762         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
4763         * sdcc.spec: updated and split sdcc into 3 rpms
4764         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
4765         needed for literals of LEFT_OP and '+'
4766         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
4767         introduced RESULT_TYPE_NOPROM
4768         (geniCodeMultiply): fixed logic for decision if mul is optimized to
4769         left shift
4770         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
4771         limited promotion to int only for '*'
4772         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
4773
4774 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
4775
4776         * src/pic16/gen.c (genSkip),
4777         (genc16bit2lit), (gencjneshort): commented out
4778         (is_LitOp): new helper function, checks operand type
4779         (genCmpEq): rewritten
4780
4781 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
4782
4783         * support/regression/tests/bug-908454.c: added
4784
4785 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
4786
4787         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
4788         * src/SDCCicode.c (usualBinaryConversions): op needs int type
4789         (geniCodeCast): cosmetic, don't preserve bit storage class
4790         (geniCodeLeftShift): added promotion
4791         (geniCodeLogic): fixed regression
4792         * src/SDCCsymt.c (computeTypeOr): accept bits too
4793         (compareType): 2nd part of fix for bug #908454, needed for bitfields
4794
4795 2004-03-07  Borut Razem <borut.razem AT siol.net>
4796
4797         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
4798
4799 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
4800
4801         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
4802         version of pic16_genPackRegisters which does not check if ic is a
4803         CAST operator,
4804         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
4805         function cause string1.c regression test fails
4806
4807 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
4808
4809         * sim/ucsim/configure.in,
4810         * sim/ucsim/configure,
4811         * sim/ucsim/doc/Makefile.in: use docdir
4812         * src/SDCC.y: fixed sbit atrributes
4813         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
4814         * src/SDCCast.c (decorateType): |^& need special promotion handling
4815         * src/SDCCast.h,
4816         * src/SDCCsymt.h: moved definition of RESULT_TYPE
4817         * src/SDCCsymt.h (computeType),
4818         * src/SDCCicode.c: computeType() needs op
4819         * src/SDCCsymt.c (checkTypeSanity),
4820         * doc/sddman.lyx: "plain" bitfields are unsigned
4821         * src/SDCCsymt.c (computeTypeOr): added
4822         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
4823         |^& ops
4824         * src/SDCCval.c (val*): computeType() needs op
4825         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
4826         * support/regression/tests/onebyte.c: added tests for |^&
4827
4828 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
4829
4830         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
4831         for writing icode into asm output.
4832
4833 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
4834
4835         * src/pic16/device.c: added some debug lines enabled
4836         with macro DEBUG_CHECK,
4837         * src/pic16/genarith.c: more debug in genPlus,
4838         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
4839         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
4840         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
4841         * (aopForSym): onStack symbols are re-placed in data memspace,
4842         and onStack flag is cleared,
4843         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
4844         copy temporary pcodeop,
4845         * (genPcall): added warning for not updating PCLATU,
4846         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
4847         always true for pic16 port,
4848         * (genMultOneWord): NEW, supports integer multiplication,
4849         * (genMult): modified to call genMultOneWord,
4850         * (ifxForOp): added warning when return NULL,
4851         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
4852         flag is set before call to operandFromSymbol for implicit
4853         added structures,
4854         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
4855         options.intlong_rent are set by default,
4856         * (_hasNativeMulFor): modified to allow port generation of integer
4857         multiplication,
4858         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
4859         set regtype to REG_SFR for all registers, restricting seting the
4860         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
4861
4862 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4863
4864         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
4865         more than 500 times in the regression tests
4866
4867 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4868
4869         * support/Util/SDCCerr.h,
4870         * support/Util/SDCCerr.c,
4871         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4872         enumerator_list),
4873         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
4874         for symbol conflicts.
4875         * support/valdiags/tests/enum.c,
4876         * support/valdiags/tests/tentdecl.c,
4877         * support/valdiags/tests/struct.c: expect possible error messages
4878         referring to original symbol definitions.
4879         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
4880         * src/SDCCsymt.h,
4881         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
4882
4883 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
4884
4885         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
4886
4887 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
4888
4889         * src/pic16/ralloc.c (newReg): fixed bug #908929
4890
4891 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4892
4893         * src/ds390/gen.c: added missing #include "main.h"
4894
4895 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
4896
4897         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
4898         checking if symbol is already in set,
4899         * src/pic16/device.h: prototype for checkAddSym,
4900         * src/pic16/gen.c: (_G): added entry interruptvector,
4901         * (assignResultValue): removed some commented out lines,
4902         * (genFunction): check for ISR via sym->type, absolute section for
4903         interrupt code is created via a new pBlock, the goto instruction is
4904         placed now correctly at the interrupt vector position, changed all
4905         references from ivec to _G.interruptvector,
4906         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
4907         is the interrupt is a high priority one, same for return from ISR,
4908         * src/pic16/glue.c: changed all calls of addSetHead for publics and
4909         externs to calls of checkAddSym,
4910         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
4911         pic16_pcode_verbose flag is set,
4912         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
4913         * src/pic16/pcoderegs.c: message about how many registers are saved
4914         will only be emitted if pic16_pcode_verbose flag is set,
4915
4916 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4917
4918         * src/ds390/ralloc.h,
4919         * src/ds390/ralloc.c (ds390_regWithIdx),
4920         * src/ds390/gen.c (emitcode),
4921         * src/ds390/main.h,
4922         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
4923         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4924         ds390operandCompare, getRegsRead, getRegsWritten,
4925         initializeAsmLineNode): customized instruction size calculation for
4926         ds390, started basis for some register optimizations
4927         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
4928         corresponding assembly output
4929         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
4930         missing push/pop of r0/r1. Optimized push/pops
4931
4932 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4933
4934         * src/mcs51/main.c (instructionSize): fixed ACALL size
4935         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
4936
4937 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
4938
4939         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
4940         the sorting of rlist with NULL elements
4941         * (print_idataType, print_idata): NEW to create idata sections
4942         * src/pic16/device.h: idataSymSet new variable
4943         * src/pic16/gen.c (genFunction): fixed some bugs in string
4944         comparing, improved the absolute section creation for ISRs,
4945         added FSR0L/FSR0H in registers that are saved in an ISR,
4946         * (genInline): fixed the processing of inline snippets,
4947         now they undergo no process by the peephole optimizer
4948         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
4949         are placed in idataSymSet,
4950         * (pic16emitStaticSeg): extern symbols are added in externs,
4951         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
4952         switching when aboslute variables are placed in access bank memory
4953         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
4954         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
4955         commented out with #if,
4956         * (pic16_packRegisters): reintroduce the check for CAST because some
4957         symbols are not correctly handled,
4958         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
4959         pCodeInstruction instead of pCode,
4960         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
4961         pCodeAsmDir definition,
4962         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
4963         directive, then the argument directive is emitted without the leading
4964         tab, hack for inline labels which must be in the first column,
4965         * (compareLabel,pic16_findNextInstruction),
4966         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
4967         * (insertBankSwitch): modified for the new pCodeAsmDir,
4968
4969 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4970         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
4971
4972         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
4973         instance,
4974         * (pushSide): commented out with #if,
4975         * (assignResultValue): fixed some typos in saving
4976         registers,
4977         * (genPcall): FIXED and sync'ed with genCall,
4978         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
4979         * (genNearPointerGet): fixed to handle some more cases,
4980         implementation scheme via table reads,
4981         * (genConstPointerGet): modified to access code memory correct,
4982         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
4983         and improved to handle some cases
4984         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
4985         instead of "RETLW" for init data
4986         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
4987         not IN_DIRSPACE, work around to reduce bank switching when aboslute
4988         variables are placed in access bank memory (<0x80 and >=0xf80),
4989         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
4990         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
4991         TBLWT_POSTDEC,TBLWT_PREINC
4992         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
4993         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
4994         directives
4995         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
4996         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
4997         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
4998         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
4999
5000 2004-02-29  Borut Razem <borut.razem AT siol.net>
5001
5002         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
5003         support/Util/findme.h, support/Util/system.h: enhance binary relative
5004         search for lib and include by using findProgramPath()
5005
5006 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5007
5008         * src/SDCCpeeph.h,
5009         * src/SDCCpeeph.c (pcDistance),
5010         * src/port.h,
5011         * src/mcs51/ralloc.h,
5012         * src/mcs51/ralloc.c (mcs51_regWithIdx),
5013         * src/mcs51/main.h,
5014         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
5015         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5016         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
5017         size calculation port specific, started basis for some register
5018         optimizations
5019         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
5020         missing push/pop of r0/r1. Optimized push/pops
5021         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
5022         * device/lib/_modsint.c (_modsint),
5023         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
5024         and stack version so regression tests pass
5025
5026 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
5027
5028         * src/Makefile.in (dep): include SLIBOBJS in dependency check
5029         * src/SDCCast.c (decorateType): catch another small optimization
5030         with '?' operator
5031         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
5032         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
5033         modified to finally use computeType() all over SDCC,
5034         see Feature Request #877103
5035         * src/SDCCval.h: cosmetic
5036         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
5037         valCompare(); regression tested in muldiv.c
5038         * support/regression/tests/muldiv.c (testMod): mod sign follows
5039         dividend only
5040
5041 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
5042
5043         * src/SDCCast.c (decorateType): fixed bug #902362
5044         * doc/INSTALL.txt: fixed install instructions for win32
5045
5046 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
5047
5048         * device/include/Makefile.in (install): fixed by replacing spaces
5049         by tabs
5050         * doc/README.txt,
5051         * doc/INSTALL.txt: updated for release
5052         * doc/sdccman.lyx: added warning for --xstack being buggy
5053
5054 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
5055
5056         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
5057         to eliminate build warnings.
5058         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
5059
5060 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
5061            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5062
5063         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
5064         removed -penable-stack, added comment for stack pragma, added
5065         warning for not initializing the stack/frame registers, removed
5066         comment at interrupts section
5067
5068         Stack is made permanent, there is no ability to disable stack usage.
5069         * src/pic16/device.h,
5070         * src/pic16/device.c: removed all references to USE_STACK macro,
5071         * src/pic16/device.c (pic16_dump_section): when no elements in
5072         rlist, free rlist before return,
5073         * (pic16_dump_int_registers): NEW, internal registers are a new set
5074         of general purpose registers reused by each function,
5075         * (checkAddReg): returns 1 if registers is added to set,
5076         * (pic16_groupRegistersInSection): when a registers is of type
5077         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
5078         * src/pic16/device.h: memRange and Assigned Memory are deleted,
5079         SRCASECMP macro is moved here from device.c
5080         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
5081         PO_PCLATU, PO_PRODL, PO_PRODH,
5082         * (pic16_pCodeOpType, genMinus,
5083         changed compares to "a" register, with AOP_ACC,
5084         * (pic16_genPlus): fixed some bugs and indented properly,
5085         * (pic16_addSign): changed size to size+offset in the MOVWF
5086         instruction,
5087         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
5088         multiply 8-bit operand by literal, result is 8-bit,
5089         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
5090         multiply 2 8-bit operand, result is 8-bit,
5091         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
5092         genUMult8X*_16,
5093         * src/pic16/gen.c: changed accUse to contain WREG only,
5094         * (pic16_emitcomment): renamed to pic16_emitpcomment,
5095         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
5096         true, do not use immediate addressing any more unless sym is a
5097         pointer in codespace,
5098         * (aopForRemat): do not use immediate addressing when symbol not in
5099         codespace and when symbol's address is requested,
5100         * (aopOp): for-loop in if(sym->accUse) is modified for the new
5101         accUse size (= 1),
5102         * (aopGet): added case for AOP_ACC and don't return "accumulator
5103         bug" but WREG instead,
5104         * (popGetTempReg): pushes contents of temporary register in stack,
5105         * (popReleaseTempReg): pops contents of temporary register from
5106         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
5107         * (pic16_popGet): separated case AOP_ACC to return register WREG
5108         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
5109         or PO_IMMEDIATE and initializes their instance/offset appropriately,
5110         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
5111         the use of immediate pointers to certain cases only.
5112
5113         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
5114         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
5115         * (assignResultValue, genCall, genRet): modified to use the new
5116         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
5117         genPcall is still broken,
5118         * (genFunction): added code to create 'A' type pBlocks when
5119         interrupt functions are generated, code not extensively tested yet,
5120         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
5121         * (genEndFunction): modified so ISRs pop stored registers from stack,
5122         * (genMultOneByte): cleanup,
5123         * (AccRsh): added flag andmask, to and result with appropriate mask,
5124         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
5125         * (genDataPointerGet): fixed and reenabled its use,
5126         * (genNearDataPointerGet): bugs fixed,
5127         * (genDataPointerSet): bugs fixed,
5128         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
5129         pic16_DumpSymbol, pic16_DumpOp,
5130         * src/pic16/genutils.h: function prototypes for the above functions,
5131         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
5132         pointers,
5133         * (pic16emitRegularMap): many many many improvements, but needs a
5134         major cleanup,
5135         * src/pic16/main.c: enable_stack in pic16_options is removed,
5136         * (_pic16_parseOptions): removed command line options -penable-stack,
5137         * (_process_pragma): emit stack symbol only when stack pragma is
5138         processed,
5139         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
5140         redirected to FSR0L/FSR0H pair,
5141         * (pic16_get_op, pic16_get_op2): modifications and improvements,
5142         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5143         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
5144         for immediates,
5145         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
5146         * (dumpPicOptype): NEW,
5147         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
5148         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
5149         with movff instruction,
5150         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
5151         added pic16_int_regs, some packRegsFor* functions are commented out,
5152         because produce errors,
5153         * src/pic16/NOTES: minor modifications
5154
5155 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5156
5157         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
5158         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
5159         --pack-iram.
5160         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
5161         * as/mcs51/lkaomf51.c: fixed bug #895763
5162
5163 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
5164
5165         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
5166
5167 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5168
5169         * doc/sdccman.lyx: added details about the HC08 storage classes and
5170         interrupts, fixed the register usage info for z80 & gbz80
5171
5172 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
5173
5174         * doc/sdccman.lyx: added more pic16 port documentation
5175         * device/include/pic16/: added header pic18fregs.h
5176
5177 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
5178
5179         * doc/sdccman.lyx: added Vangelis' contribution
5180
5181 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5182
5183         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
5184         extend to the next CALL or PCALL, not just to the next CALL.
5185
5186 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
5187
5188         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
5189
5190 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5191
5192         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
5193         bug #895752 and a better fix for bug #716790
5194
5195 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5196
5197         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
5198
5199 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5200
5201         * doc/sdccman.lyx: minor changes, minor changed
5202
5203 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
5204
5205         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
5206         which can't handle SDCC_NEWONEBYTEOPS,
5207         (geniCodeMultiply): removed conversion from mult to shift for pic14
5208         and pic16
5209
5210 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5211
5212         * src/hc08/gen.h,
5213         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
5214         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
5215         thus fixing bug #895406
5216
5217 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
5218
5219         * device/lib/_modsint.c,
5220         * device/lib/_modslong.c: sign follows divisor only
5221         * src/hc08/gen.c (genMultOneByte): if result size is 1,
5222         signs or signedness can be ignored
5223         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
5224         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
5225         added optimization for IFX,
5226         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
5227         arguments;
5228         reenabled optimization for IFX, which was removed on 2004-01-11
5229         * src/SDCCast.h: added return type IFX
5230         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
5231         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
5232         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
5233         SDCC_OLDONEBYTEOPS selects the old behaviour
5234         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
5235         changed again and commented promotion rule
5236         * src/SDCCval.c (valDiv): promotion no longer necessary
5237         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
5238         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
5239         rewritten
5240         * support/regression/tests/onebyte.c: added
5241
5242 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
5243
5244         * gen.c (genInline): reverted to old code for assemnling inline
5245         code because of bug reported James Chadd
5246
5247 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
5248
5249         * ralloc.h: missing declarations from previous patch,
5250         seems that patch for ralloc.h was never applied, fixed
5251
5252 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5253            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5254
5255         * pcode.c,
5256         * pcode.h,
5257         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
5258         indirect addressing. Marked FSR0 as deprecated
5259         * gen.c (pointerCode): commented out, not needed now
5260         (pic16_popGet2p): new MOVFF helper function
5261         (genGenPointerGet),
5262         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
5263         (shiftRLong): removed duplicate debugging info
5264
5265 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5266
5267         * src/ds390/gen.c (genNearPointerGet),
5268         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
5269         optimization with bits, but not bitfields.
5270         * src/ds390/ralloc.c (packRegisters),
5271         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
5272
5273 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
5274
5275         * src/SDCCcse.c (algebraicOpts): copy operands before modification
5276
5277 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5278
5279         * src/SDCCsymt.h,
5280         * src/SDCCicode.c (operandFromSymbol),
5281         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
5282         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
5283         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
5284         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
5285         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
5286         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
5287         bug #892038
5288         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
5289         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
5290         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
5291         * src/SDCCsymt.c (newSymbol),
5292         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5293         enumerator_list),
5294         * src/SDCCval.h,
5295         * src/SDCCval.c (newiList): fixed bug #885705
5296
5297 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5298
5299         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
5300         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
5301
5302 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5303
5304         * device/include/c8051f120.h,
5305         * device/include/c8051f300.h,
5306         * device/include/c8051f310.h: added/updated header files for Silicon
5307         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5308         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
5309         in new section Submitting patches
5310
5311 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5312
5313         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
5314         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5315         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5316         genGenPointerSet),
5317         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
5318         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5319         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5320         genGenPointerSet),
5321         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
5322         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5323         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5324         genGenPointerSet),
5325         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
5326         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5327         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5328         genGenPointerSet): fixed bug #892400
5329         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
5330         to eliminate build warnings.
5331         * src/SDCCast.c (processParms),
5332         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
5333         fixed bug 751859
5334         * support/valdiag/valdiag.py: added GCC to the list of defines active
5335         when compiling with gcc
5336
5337 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5338
5339         * support/Util/SDCCerr.h,
5340         * support/Util/SDCCerr.c,
5341         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
5342         with an incomplete type (fixed bug #883734)
5343         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
5344
5345 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5346
5347         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
5348
5349 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5350
5351         * src/SDCCast.c (decorateType),
5352         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
5353         function pointer implementation
5354         * support/regression/tests/funptrs.c: added tests to verify both forms
5355         of function pointers work correctly. Added tests to verify parameters
5356         are passed in the correct order.
5357
5358 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
5359
5360         * device.c (regCompare): registers are sorted by ascending
5361         address and increasing size,
5362         * main.c (_pic16_finaliseOptions): removed the declaration
5363         of compiler macro MCU. Now a macro of the format pic18fxxxx
5364         will be defined from the command line
5365
5366 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5367             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5368
5369         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
5370         PCOP_RLCF was overwritten!
5371         * gen.c (genSkip): commented out calls to pic16_emitcode,
5372         * (genCmpEQ): fixed "long" compares, only high word did get compared,
5373         * (genlshTwo),
5374         * (genRRC): added debugging info,
5375         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
5376         overwritten while shifting,
5377         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
5378         overwritten while shifting,
5379         * (AccLsh),
5380         * (AccRsh),
5381         * (shiftLLeftOrResult),
5382         * (shiftRLeftOrResult),
5383         * (shiftRLong),
5384         * (shiftLLong): Implemented with pic16_emitpcode
5385         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
5386         * (genLeftShift): Fixed bug, operand for shift by variable always
5387         was "and"ed with 0x0f,
5388         * (genLeftShiftLiteral),
5389         * (genrshTwo),
5390         * (genRightShiftLiteral): added debugging info,
5391         * (genrshFour): added comment,
5392         * (genRightShift): determined signedness from operand "left"
5393         instead of "result"
5394
5395 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5396
5397         * src/SDCCicode.c (geniCodeParms),
5398         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
5399         function pointers, fixed function pointer bugs #861242 and #861896
5400
5401 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5402
5403         * device/include/c8051f000.h,
5404         * device/include/c8051f120.h,
5405         * device/include/c8051f300.h: added header files for Silicon
5406         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5407
5408 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
5409
5410         * src/SDCCast.c (processParams): added new type flow and restructured
5411         (gatherAutoInit): added new type flow
5412         (addCast): cosmetic changes
5413         (getLeftResultType): added new type flow for array indices, patch
5414         provided by Stas, see FR #877103
5415         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
5416         array index patch by Stas
5417         * src/SDCCast.h: added prototype getResultTypeFromType()
5418         * src/SDCCval.h,
5419         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
5420         * src/pic/glue.c (pic14emitStaticSeg),
5421         * src/pic16/glue.c (pic16emitStaticSeg),
5422         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
5423         for initialization of symbols
5424         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
5425         * support/Util/SDCCerr.h:
5426         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
5427         * .version: bumped version number to 2.3.8
5428         * device/include/Makefile.in (install),
5429         * doc/Makefile (install): changed to 'rm `find ...`' construct to
5430         avoid warnings
5431
5432 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
5433
5434         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
5435         Slade Rich fixed an optimization bug
5436         * src/pic/pcodepeep.c,
5437         * src/pic/pcoderegs.c
5438         * doc/Makefile (install): added test for directory
5439
5440 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5441
5442         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
5443         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
5444         * src/pic/ralloc.c (getRegPtr, getRegGpr),
5445         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
5446         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
5447         * as/mcs51/asexpr.c (term),
5448         * as/hc08/asexpr.c (term): fixed bug #887146
5449
5450 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5451
5452         * src/z80/gen.c (genMult): handle single byte result product
5453         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
5454         DUMMY_READ_VOLATILE (fixed bug #886367)
5455
5456 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5457
5458         * support/regression/tests/libmullong.c: fixed logic, on little endian
5459         hosts we ended without a mullong_wrapper()
5460
5461 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5462
5463         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
5464         virus/worm forged address usage.
5465
5466 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5467
5468         Fixed promotion, it should be done on AST level:
5469         * src/SDCCast.c (addCast): added promotion to int
5470         (decorateType): updated call to upCast()
5471         * src/SDCCicode.c (geniCodeLeftShift): removed call to
5472         usualUnaryConversions()
5473
5474 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
5475
5476         * support/regression/tests/literalop.c (mulWrapper): Added a
5477         wrapper to remove integer overflow warnings.
5478
5479         * support/regression/tests/float_trans.c: Made work on host.
5480
5481         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
5482         location of sz80.
5483
5484         * support/regression/generate-cases.py (main): Changed from inline
5485         to a main method.
5486
5487         * doc/Makefile (install): Changed to depth first to get rid of
5488         missing directory install warning.
5489
5490         * as/Makefile (install-doc): Made work on Mac.
5491
5492 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
5493
5494         * src/SDCCast.c: added an additional type flow in decorateType() of
5495         opposite direction, see feature request #860006; it's enabled at runtime
5496         by setting the environment variable SDCC_NEWTYPEFLOW
5497         * src/SDCCast.h: changed prototype of decorateType()
5498         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
5499         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
5500         'char' to 'int' can be omitted, if both operands are 'unsigned char';
5501         see feature request #877103
5502         * src/SDCCval.c: updated call of decorateType()
5503         (valBitwise): fixed bug #882876
5504         (valMinus): added promotion
5505         (valLogicAndOr): result is unsigned
5506         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
5507         * src/SDCCsymt.c (computeType),
5508         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
5509         must not cause an unsigned operation
5510         * src/pic/glue (pic14emitRegularMap),
5511         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
5512
5513 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
5514
5515         * src/pic/pcode.c (PCodeID): commented out left over debug code
5516
5517 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
5518
5519         * support/valdiag/tests/overflow.c: added shift tests
5520         * src/pic/device.c,
5521         * src/pic/gen.c,
5522         * src/pic/gen.h,
5523         * src/pic/glue.c,
5524         * src/pic/main.c,
5525         * src/pic/pcode.c,
5526         * src/pic/pcode.h,
5527         * src/pic/pcodepeep.c,
5528         * src/pic/pcoderegs.c,
5529         * src/pic/ralloc.c,
5530         * src/pic/ralloc.h: applied patch from Slade Rich;
5531         added support for multiple code pages and multiple RAM banks on the
5532         PIC 14 port. The ASM files now no longer simply assume all the
5533         code / RAM are in the same page / bank. This means the linker can
5534         safely allocate code/RAM of separate ASM files to different pages/banks.
5535         * doc/sdccman.lyx: added Slade's tips
5536         * src/mcs51/peeph.def: fixed bug #880768
5537
5538 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5539
5540         * src/hc08/ralloc.c (rematStr): fixed bug #879282
5541         * src/SDCCast.c (decorateType): fixed bug #880197
5542
5543 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
5544
5545         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
5546         getopt.h.
5547
5548         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
5549         strtof is not part of C89 and isn't included with Mac OS X.
5550
5551 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5552
5553         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
5554         shiftL2Left2Result): fixed bug #879326
5555         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
5556         (genMultOneByte): fixed bug in signed vs unsigned multiplication
5557         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
5558         address fetch for clr instruction
5559         * device/lib/hc08/_mulint.c: created optimized assembly version
5560         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
5561
5562 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
5563
5564         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
5565         proposed in FR #877103
5566
5567 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
5568
5569         * src/SDCCval.c (cheapestVal): added missing checks
5570         * src/SDCCicode.c (usualBinaryConversions): fixed condition
5571         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
5572
5573 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
5574
5575         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
5576         equal operands
5577
5578 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
5579
5580         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
5581         loaded with the linker search paths (-L arguments) and the libraries
5582         to be linked with the current source (-l arguments). Changes
5583         currently will affect only the pic16 port.
5584         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
5585         include path the port specific paths and port specific libraries,
5586         * gplink command now contains the $3 argument,
5587         * src/pic16/device.h,
5588         * src/pic16/device.c,: structure PIC_device is made public and
5589         renamed to PIC16_device, the same for variable Pics which is renamed
5590         to Pics16. Updated all references to them.
5591         * src/pic16/glue.c (pic16glue): corrected bug with code
5592         initialization which bypassed the variable initializations block.
5593
5594         * device/lib/pic16/Makefile.rules: removed --penable-stack from
5595         COMPILE_FLAGS and added the --nostdinc option
5596
5597 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5598
5599         * device/include/mc68hc908jb8.h: Register defs for another member
5600         of the hc08 family. Contributed by Bjorn Bringert - thanks!
5601
5602 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
5603
5604         Documenting changes from previous commits.
5605         * configure.in (version 1.56),
5606         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
5607         when generating output files to configure the pic16 library,
5608         but now I've commented it out, since gputils aren't installed in the
5609         SF compile farm, so library won't compile
5610
5611         * device/lib/Makefile.in (version 1.56): initially I've added in
5612         target 'all' the prerequestive 'model-pic16' so it compiled the
5613         pic16 library, but now I've commented it out for the same reasons
5614         above,
5615         * added targets 'model-pic16' and 'objects-pic16' to compile the
5616         library
5617         * added target 'port-specific-objects-pic16' to handle the
5618         generated libraries and copy them into the build/ directory
5619         * added target 'clean-intermediate-pic16' to clean intermediate
5620         files into pic16 directory
5621         * in target 'installdirs' added line to create directory pic16 in
5622         the installation path
5623
5624         * device/include/Makefile.in (version 1.11): in target 'install'
5625         added lines to copy all header files to installation path,
5626         * in target 'installdirs' added line create directory for pic16
5627         headers in the installation path
5628
5629 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
5630
5631         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
5632          a function call
5633
5634 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
5635
5636         * configure,
5637         * device/lib/configure.in,
5638         * device/lib/configure: fixed for autoconf 2.57
5639
5640 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5641
5642         * src/z80/main.c (_parseOptions): fixed the portmode= command line
5643         option so that it actually works. Made it specific to the z80, since
5644         the gbz80 doesn't have these kinds of I/O ports.
5645
5646 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5647
5648         * device/include/z180.h,
5649         * device/lib/_memcpy.c,
5650         * device/lib/_memmove.c,
5651         * device/lib/_mulint.c,
5652         * device/lib/ser_ir.c,
5653         * device/lib/ser_ir_cts_rts.c,
5654         * device/lib/_strcmp.c,
5655         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
5656         * src/z80/main.c (_process_pragma): add support for pragmas bank and
5657         portmode; added deprecation warning for bank= and protmode= forms.
5658         Also, guard against buffer overflow.
5659         * src/z80/gen.c (aopGet): generate better code for sfr banked read
5660
5661 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5662
5663         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
5664         changed interrupt vector table generation to only emit declared vectors.
5665         * device/include/Makefile.in: added missing backslash
5666         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
5667
5668 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5669
5670         Mainly changes to support compilation of the device libraries
5671         * src/pic16/device.c: stack is allocated via symbol and not
5672         via literal number. The symbol is placed in the corresponding
5673         position of the data ram
5674         * (pic16_dump_section): relocatable and absolute uninitialized
5675         data are now emitted in sorted order to reduce section naming,
5676         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
5677         weren't marked as being in the access bank,
5678
5679 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5680
5681         Added portion of GNU PIC Library under the directory
5682         device/include/pic16 and device/lib/pic16. These files
5683         contain the declarations of SFRs for the PIC18Fxx2 devices.
5684         The directory is initialized via configure from toplevel.
5685
5686 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
5687
5688         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
5689         the spilllocations to be compared correctly
5690
5691 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5692
5693         * src/SDCCast.c (decorateType): fixed bug introduced today
5694
5695 2004-01-12  Borut Razem <borut.razem AT siol.net>
5696
5697         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
5698         doc/sdccman.lyx: upper case pragmas are deprecated
5699
5700 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5701
5702         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
5703         in simpler and even better code
5704
5705 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
5706
5707         * src/SDCCicode.c (operandOperation): fixed bug #874819
5708         * src/SDCCast.c (decorateType): fixed
5709         char foo (unsigned long ul) { return ul > 0; }
5710
5711 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5712
5713         * doc/sdccman.lyx: Moved and added some sections, small changes
5714         all over. Telling LaTeX to be less strict with word spacing
5715         to better keep the right margin. Changed some notes about
5716         maintainance of the ports in section 3.2.1 - is it OK like this?
5717
5718 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
5719
5720         SDCC source changes:
5721         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
5722         convilong): modified to inform the pic16 port that builtin functions
5723         are external
5724
5725         PIC16 PORT specific changes:
5726         * src/pic16/device.c pic16_dump_equates() added,
5727         processor registers declared internally by the port are emitted in
5728         the translation as equates,
5729         * src/pic16/gen.c: inline code is passed unprocessed to the
5730         translation,
5731         * (pic16_popGetLit2): fnuction modified to take second operand as
5732         pCodeOp pointer and not as literal,
5733         * (popRegFromIdx): prefixed with pic16_,
5734         * (pic16_popCombine2): modified to receive already allocated pCode
5735         operands,
5736         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
5737         * (genFunction): initializes local stack frame and pushes on stack
5738         all the registers used by this function,
5739         * (genEndFunction): restores all registers from stack and restores
5740         stack frame,
5741         * src/pic16/glue.c (pic16emitRegularMap): various changes and
5742         improvements,
5743         * (pic16glue): changed the program startup sequence,
5744         * added new dbName code 'A' for functions placed in absolute section
5745         * src/pic16/main.c: added function attribute _naked,
5746         * added pragma 'code' to place a fnuction at an absolute address,
5747         * added command line arguments --debug-ralloc and --pcode-verbose,
5748         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
5749         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
5750         * (pic16_newpCodeOpLit2): modified to take the second operand as
5751         pCodeOp pointer,
5752         * (pic16_printpBlock): modified to emit each function in a separate
5753         section,
5754         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
5755         UPPER for immediate operands,
5756         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
5757         instruction,
5758         * src/pic16/peeph.def: all peepholes with movff are commented out,
5759         because there is a problem in the pcode peep optimizer,
5760         * src/pic16/ralloc.c: the register allocator can now reuse local
5761         function symbols for another function. This saves register usage.
5762         * src/pic16/ralloc.h: added flag isLocal in structure regs,
5763
5764         Added file src/pic16/NOTES with information about program writing on
5765         the current port version.
5766
5767 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5768
5769         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
5770         and peephole 252 (array access)
5771
5772 2004-01-09  Borut Razem <borut.razem AT siol.net>
5773
5774         * src/SDCCmain.c : fixed #872250: -l command line defined library
5775           files are scanned before standard library files
5776
5777 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5778
5779         * src/SDCCast.c (decorateType): fixed bug #874046
5780
5781 2004-01-09  Borut Razem <borut.razem AT siol.net>
5782
5783         * support/scripts/sdcc.nsi: remove previous installation
5784
5785 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5786
5787         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
5788         bytes for last interrupt vector (mcs51)
5789         * sdcc.spec: fixed typo
5790
5791 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5792
5793         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
5794         gen51Code): more efficient parameter receive for --model-large
5795         ("bug" #845294)
5796
5797 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5798
5799         * src/ds390/main.c,
5800         * src/z80/main.c: added missed needLinkerScript flags (more than
5801         one port structure defined in these file)
5802         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
5803         bug #795325
5804
5805 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
5806
5807         * src/SDCCmain.c: removed various references to DEFAULT_PORT
5808         * src/port.h: added flag needLinkerScript in port->linker
5809         structure to inform whether to create a .lnk file or not,
5810         * src/avr/main.c,
5811         * src/ds390/main.c,
5812         * src/hc08/main.c,
5813         * src/mcs51/main.c,
5814         * src/pic/main.c,
5815         * src/pic16/main.c,
5816         * src/xa51/main.c,
5817         * src/z80/main.c: changed appropriately to configure
5818         needLinkerScript flag
5819         * src/pic/gen.c,
5820         * src/pic16/gen.c (genAddrOf): fixed bug #863624
5821         * src/pic/glue.c: added variable udata_section_name to
5822         override default uninitialized data segment definition for
5823         devices only with SHAREBANK memory (reported from Erik Epetrich)
5824         * (pic14emitOverlay): modified to emit a commented overlay segment
5825         directive when no overlay data exist
5826         * (picglue): modified to emit uninitialized data segment
5827         according to udata_section_name
5828         * src/pic/main.c (_pic14_parseOptions): added command line
5829         options --udata-section-name=[name] to override default
5830         udata definition name
5831         * modified _linkCmd and _asmCmd to include compiler passed
5832         arguments via -W option
5833         * src/pic16/main.c: added $l in _asmCmd, changed extension for
5834         object file from '.rel' to '.o' in port->linker structure,
5835         changed size of fptr from 2 to 3 in port structure
5836
5837 2004-01-07  Borut Razem <borut.razem AT siol.net>
5838
5839         * support/scripts/sdcc.nsi: update PATH
5840         * support/scripts/sdcc.ico: craeted
5841
5842 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
5843
5844         * device/include/Makefile.in: fix install
5845         * doc/Makefile: fix install
5846
5847 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5848
5849         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
5850         in bug #860505
5851         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
5852         how the function variable allocation summary is displayed; also
5853         include information about variables allocated to the overlay
5854         segment
5855
5856 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5857
5858         * as/mcs51/lkmain.c: Help about -Y option
5859         * as/mcs51/lkarea.c: Fixed gcc warnings
5860
5861 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5862
5863         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
5864         fixed warning
5865         * support/valdiag/tests/overflow.c: added
5866         * src/SDCCast.c (decorateType),
5867         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
5868         LEFT_OP (left shift)
5869
5870 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5871
5872         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
5873         (default behaviour).
5874
5875 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5876
5877         A python script to validate compiler diagnostic messages. It can be
5878         used to verify that sdcc complains about bad c source code and
5879         gives a good location of the error.
5880         * support/valdiag/Makefile,
5881         * support/valdiag/valdiag.py,
5882         * support/valdiag/tests/*
5883
5884 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5885
5886         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
5887         * src/SDCCsymt.c (newEnumType),
5888         * src/SDCCsymt.h
5889         * support/Util/SDCCerr.c,
5890         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
5891         enum related bugs.
5892         * support/regression/tests/enum.c: added test for enum values that
5893         require at least 2 bytes of storage.
5894
5895 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5896
5897         * src/common.h: added ifndef/define/endif macros
5898         around the header file.
5899         Bug reported from Jesus Calvino-Fraga
5900
5901 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5902
5903         * sdcc.spec: updated
5904         * device/include/Makefile.in: don't install CVS directories
5905         * device/lib/Makefile.in: added removal of CVS directories after install
5906         * doc/Makefile: fixed install, added local_icons
5907         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
5908         * src/mcs51/gen.c (genRightShift): fixed bug #870788
5909         * src/ds390/gen.c (genRightShift): fixed bug #870788
5910         * src/SDCCast.c (decorateType): fixed bug #870781
5911
5912 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5913
5914         PIC16 port related changes:
5915         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
5916         added variable stackPos,
5917
5918         * gen.c: genCall, assignResultValue: added support for
5919         pushing/retrieving function parameters to/from stack,
5920         genFunction,genEndFunction: setup stack frame for the
5921         generated function,
5922         genAddrOf: will be changed according to bug 863624
5923
5924         * added files genutils.c and genutils.h which contain gen*
5925         debugged and optimised functions extracted from gen.c
5926
5927         * glue.c: added variable 'externs' which holds extern symbols,
5928         pic16emitRegularMap: is modified to properly handle relocatable
5929          symbols under the new scheme,
5930         pic16createInterruptVect: is modified
5931         pic16printPublics: is modified to emit 'global' assembler directives,
5932         added pic16_printExterns to print extern symbols,
5933         pic16glue: initializes stack/frame pointer in the beginning of
5934         the assembly output. Temporary hack, will be corrected later,
5935         because gplink yet does not support stack and SDCC does not
5936         yet support a type of crt0.o object to create the final binary.
5937
5938         * Removed many lines that contain 8051 legacy code.
5939         * The code is finally placed under a 'code' directive.
5940         * Added port specific options.
5941
5942         * _process_pragma: simplified since now we do not need *special*
5943         include file to define SFR registers. But a separate header
5944         will be needed. This will be developed later.
5945         * _pic16_parseOptions: added, parses port specific options:
5946         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
5947         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
5948         --preplace-udata-with=
5949
5950         * _pic16_setDefaultOptions: modified to initialize section names,
5951         but hack is temporarly out of order since it needs improvement.
5952         * _pic16_genAssemblerPreamble: configuration words are emitted by
5953         their address instead of their name. This part is incomplete and
5954         supports only the 18Fxx2 devices. Other devices will emit an error
5955         during assembly since they do not contain the same set of config
5956         registers
5957         * _pic16_genIVT: is modified,
5958
5959         * pcode.c: added definitions for some hardware registers that are needed
5960         for stack support
5961         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
5962         All PCI entries are updated. Now LFSR is supported.
5963         * Removed pic16_pciTRIS is mentioned by mdubuc in source
5964         * added pic16_newpCodeOpLit2 to support instructions with
5965         two literal arguments
5966         * pic16_pCode2str: corrected code that emits assembler instructions
5967         with two literal operands and those that have an access bit modifier
5968         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
5969         this fixes a bug which caused some labels to be lost, when an
5970         assembler directive was added, i.e. banksel,
5971         * pic16_FixRegisterBanking: improved logic that causes the insertion
5972         of bank switching,
5973         * InlineFunction: functions that are called once, are not any more
5974         inlined. This can be a port option in the future,
5975
5976         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
5977
5978         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
5979         hold the corresponding uninitialized symbols,
5980         * pic16_allocProcessorRegister: registers have explicit marked the
5981         accessBank field,
5982         * pic16_allocInternalRegister: registers are explicit marked as
5983         not used,
5984         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
5985         processing list, so bit registers were lost,
5986         *
5987
5988         * ralloc.h: added field 'accessBank' and original symbol operand
5989         in register definition,
5990         * removed the field isMapped from register definition,
5991
5992         ** Several functions have been removed from various sources:
5993         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
5994         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
5995         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
5996         pic16_assignRelocatableRegisters
5997
5998         ** others have been introduced:
5999         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
6000         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
6001
6002 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
6003
6004         * support/scripts/inc2h.pl: changed definition of BIT_AT
6005         to emit 'sbit at' instead of 'bit at'. This was a request.
6006
6007         PIC16 port related preliminary changes:
6008         * gen.c: prefixed function popRegFromString with
6009         pic16_ and all references to it corrected
6010         * pcode.c: all pic16_pc_* hardware registers prefixed
6011         with underscore (_),
6012         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
6013         * ralloc.c: newReg(): when register is REG_SFR then
6014         set address to rIdx,
6015         pic16_allocProcessorRegister(): marks register wasUsed=0
6016         pic16_writeUsedRegs(): added a call to assign processor
6017         registers via pic16_assignFixedRegisters
6018
6019 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6020
6021         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
6022         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
6023         variables in unused register banks.  Also the SSEG is placed
6024         wherever there is enough space for it, and IDATA can be anywhere
6025         in internal RAM.  For now compile using -Wl-Y[stack_size].
6026         The mem file is different for this option as well, since it
6027         makes no sense of talking about DSEG lenght.
6028
6029 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
6030
6031         * src/SDCClrange.c: fixed bug 869095 that caused segfault
6032         in certain cases, e.g. when ROM assignment, patch provided
6033         from Albert den Haan.
6034
6035 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
6036
6037         Many signedness and type propagation fixes:
6038         * src/SDCCicode.c: made geniCodeCast() static
6039         replaced SPEC_ by IS_ (cosmetic)
6040         (operandOperation): fixed div and mod operation
6041         (usualBinaryConversions): added support for promotion of char
6042         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
6043         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
6044         (geniCodeAdd): an array index will stay unsigned, even if promoted
6045         from char to int
6046         (geniCodeArray): ditto
6047         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
6048         * src/SDCCsymt.c (computeType): added more support for char;
6049         promotion of char is selectable by promoteCharToInt, fixed signedness
6050         for all cases
6051         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6052         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6053         * src/SDCCval (val*): replaced signedness calculation by
6054         computeType()
6055         rearranged if-branches (cosmetic)
6056         (valShift): added warning W_SHIFT_CHANGED
6057         (valCompare): fixed problem with different types
6058         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
6059         * support/regression/tests/literalop.c: added many cases
6060         * support/regression/tests/ast_constant_folding.c: changed finally to
6061         'unsigned int'
6062         * .version: new year, new version: 2.3.7
6063         * src/SDCCmain.c (main): applied patch #866468
6064         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
6065         provided by Scott Bronson
6066         * doc/sdccman.lyx: updated documentation for sdcdb
6067         updated and added chapter tips
6068
6069 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6070
6071         * src/SDCCsymt.h: missing from yesterday's commits
6072
6073 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6074
6075         * src/SDCC.y (struct_or_union_specifier),
6076         * support/Util/SDCCerr.c,
6077         * support/Util/SDCCerr.h: verify that struct & union tags are used
6078         as declared.
6079
6080 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6081
6082         * src/SDCCglobl.h: missing from yesterday's commits
6083
6084 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6085
6086         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
6087         sft_attributes, struct_declaration, parameter_declaration,
6088         type_name, start_block, declaration_list),
6089         * src/SDCC.lex (check_type): support redefinition of typedef names
6090
6091 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6092
6093         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
6094         aligned xdata arrays. Erik helped me with the if clause.
6095
6096 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6097
6098         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
6099         warning
6100
6101 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6102
6103         * src/SDCCast.h,
6104         * src/SDCCast.c (newAst_),
6105         * src/SDCCicode.h,
6106         * src/SDCCicode.c (ast2iCode, newiCode),
6107         * src/SDCCglobl.h,
6108         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
6109         expr, statement, expression_statement, selection_statement,
6110         iteration_statement, expr_opt, jump_statement): foundation for tracking
6111         sequence points
6112         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
6113         point code too)
6114
6115 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6116
6117         * support/Util/SDCCerr.c,
6118         * src/SDCCast.h,
6119         * src/SDCCast.c (createCase, createDefault, decorateType),
6120         * src/SDCClabel.c (labelUnreach),
6121         * src/SDCC.y (labeled_statement, jump_statement): More improvements
6122         to error messages.
6123         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
6124         (with thanks to Stas Sergeev)
6125         * device/include/time.h,
6126         * device/lib/time.c (CheckTime): suppress unreachable code warning
6127
6128 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6129
6130         * src/SDCCast.c (createIvalCharPtr),
6131         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
6132         bug #753752)
6133         * support/regression/tests/nullstring.c: tests for these two bugs
6134
6135 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6136
6137         * support/Util/SDCCerr.h,
6138         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
6139         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
6140         about storage class and 'at' used inside struct or union
6141         * src/SDCCBBlock.c (iCodeFromeBBlock),
6142         * src/SDCCcse.c (ifxOptimize),
6143         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
6144         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
6145         printIval, emitStaticSeg, emitOverlay),
6146         * src/SDCClabel.c (deleteIfx),
6147         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
6148         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
6149         gatherAutoInit, processParms),
6150         * support/Util/SDCCerr.h,
6151         * support/Util/SDCCerr.c (werrorfl): Support for better error location
6152         reporting for post-parse errors.
6153
6154 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6155
6156         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
6157         implicit casts via union; they don't work on big endian systems
6158         (possible fix for bug #861138)
6159
6160 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6161
6162         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
6163         * src/mcs51/main.c: fixed the fix for bug #737001
6164
6165 2003-12-15  Borut Razem <borut.razem AT siol.net>
6166
6167         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
6168
6169 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6170
6171         * support/makebin/makebin.c: put output in binary mode
6172
6173 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6174
6175         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
6176         xdata and data memory on startup. Set the environment variable
6177         SDCC_NOGENRAMCLEAR to disable this.
6178         * src/mcs51/peephole.def,
6179         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
6180         (allows non-interrupt and interrupt code to safely compete for a resource
6181         without the non-interrupt code having to disable interrupts)
6182
6183 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6184
6185         * src/SDCCicode.c (geniCodeAdd),
6186         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
6187         with valFromType if type might be a pointer and host is big endian).
6188         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
6189         types, not just integer types.
6190         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
6191         multiply defined with mismatching "at" address.
6192
6193 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6194
6195         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
6196         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
6197         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
6198         with embedded nulls (fixed bug #753752)
6199
6200 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6201
6202         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
6203         Apparently this did not see much testing (endless loop)
6204
6205 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6206
6207         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
6208
6209 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6210
6211         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
6212         gracefully handle NULL memmap pointers
6213
6214 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6215
6216         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
6217         instead of deleting the iCode when an operand is volatile
6218         * src/z80/gen.c (genDummyRead),
6219         * src/mcs51/gen.c (genDummyRead),
6220         * src/ds390/gen.c (genDummyRead),
6221         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
6222         not just IC_RIGHT
6223         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
6224         * src/SDCC.y: fixed bug #850420
6225
6226 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6227
6228         Applied z80 i/o port patch from Peter Townson and fixed some operators
6229         to better handle operands in A register.
6230         * device/include/z180.h
6231         * src/SDCC.y
6232         * src/SDCCglue.c
6233         * src/z80/gen.c
6234         * src/z80/gen.h
6235         * src/z80/main.c
6236         * src/z80/peeph-z80.def
6237         * src/z80/peeph.def
6238         * src/z80/z80.h
6239
6240 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6241
6242         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
6243
6244 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6245
6246         * device/lib/hc08/_mullong.c: Removed extra #endif
6247
6248 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6249
6250         * sim/ucsim/hc08.src/inst.cc,
6251         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
6252         carries from x to h
6253         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
6254         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
6255         * device/include/stdarg.h: fixed varargs for hc08
6256         * device/lib/Makefile.in,
6257         * device/lib/hc08/Makefile,
6258         * device/lib/hc08/_mulint.c,
6259         * device/lib/hc08/_mullong.c: fixed some endian problems
6260
6261 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6262
6263         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
6264         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
6265         * device/lib/_gptrget.c,
6266         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
6267
6268 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6269
6270         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
6271         * src/SDCCast.c (astErrors): fixed bug #846007
6272         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
6273
6274 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6275
6276         * src/SDCCast.c (decorateType): disabled a transformation I added in
6277         revision 1.188 (access to fields of a structure at an absolute address);
6278         it breaks with bitfields, extern declarations, and gcse analysis.
6279         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
6280         could be assigned through a pointer, so don't complain.
6281         * src/SDCCast.c (astErrors),
6282         * src/SDCCast.h,
6283         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
6284
6285 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
6286
6287         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
6288         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
6289         output of __config directives, since gpasm now supports them
6290         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
6291         pre-processor macro, i.e. -DMCU=p18f452
6292         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
6293         and modified to handle 'cast' icode similarly to '=' icode
6294         * src/pic16/device.h (typedef struct PIC_device): added field
6295         'extMIface' to indicate that chip has external memory interface
6296         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
6297         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
6298         18F8720
6299
6300 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6301
6302         * src/SDCC.y (pointer): fixed bug #846006
6303         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
6304         * src/SDCCast.c (decorateType): fixed bug #846009
6305         * src/ds390/peeph.def,
6306         * src/ds390/gen.c (genAnd, genOr),
6307         * src/mcs51/peeph.def,
6308         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
6309
6310 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6311
6312         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
6313         * src/SDCCdflow.c
6314         * src/SDCCcse.c
6315         * src/SDCCcse.h
6316         * src/SDCCBBlock.h
6317         * src/SDCCBBlock.c
6318
6319 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
6320
6321         fixed bug #845089
6322         * src/SDCCbitv.h,
6323         * src/SDCCbitv.c: added function to free a bitvector
6324         * src/SDCClrange.h,
6325         * src/SDCClrange.c: added function to recompute the liveranges
6326         * src/avr/ralloc.c,
6327         * src/ds390/ralloc.c,
6328         * src/hc08/ralloc.c,
6329         * src/mcs51/ralloc.c,
6330         * src/pic/ralloc.c,
6331         * src/pic16/ralloc.c,
6332         * src/xa51/ralloc.c,
6333         * src/z80/ralloc.c: recompute the liveranges after register packing
6334
6335 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
6336
6337         * src/SDCCloop.c (newInduction): fixed bug #845630
6338
6339 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6340
6341         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
6342         inadvertantly left behind from my 2003-11-12 change
6343
6344 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6345
6346         Updated headers I neglected to commit yesterday.
6347         * src/SDCClrange.h,
6348         * src/SDCCicode.h
6349
6350 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6351
6352         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
6353         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
6354         * src/SDCCopt.c (eBBlockFromiCode),
6355         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
6356         the creation of the key hash table from the sequencing so it can be used
6357         earlier (for some GCSE bug fixes still pending)
6358
6359 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6360
6361         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
6362         * support/regression/tests/addsub.c: testing genPlus shortcut
6363
6364 2003-11-15  Borut Razem <borut.razem AT siol.net>
6365
6366         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
6367
6368 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6369
6370         * src/SDCCcse.c (cseBBlock): fixed bug #527779
6371         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
6372         ordering is immaterial.
6373         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
6374
6375 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6376
6377         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
6378         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
6379         (SIGSEV) of bug #840381
6380         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
6381         unlink new file before rename if new and old filenames are the same)
6382
6383 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6384
6385         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
6386         uninitialized variables) for the mcs51. Set environment variable
6387         SDCC_GENRAMCLEAR to test.
6388         xdata initialization slightly shorter
6389
6390 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6391
6392         * src/SDCCsymt.h,
6393         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
6394         #838241 & 780691 (basicly the same bug)
6395         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
6396         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
6397
6398 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
6399
6400         * src/SDCCmain.c (linkEdit): "fix" #834252
6401
6402 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6403
6404         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
6405         * src/SDCCast.h,
6406         * src/SDCC.y: fixed bug #819403
6407
6408 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6409
6410         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
6411         the reentrant attribute.
6412         * src/hc08/gen.c (genPackBits): added missing stack readjustment
6413         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
6414         simulation
6415         * src/SDCCast.c (decorateType): fixed bug with storage class not being
6416         updated during pointer dereference; f.e. ~(((char *)1)*) was being
6417         erroneously reduced to a literal.
6418         * src/hc08/ralloc.c (packRegisters, rematStr),
6419         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
6420         some cases
6421
6422 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6423
6424         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
6425         * doc/sdccman.lyx: changed from 'article' to 'book'
6426         * doc/Makefile: readded test_suite_spec and cdbfileformat
6427
6428 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
6429
6430         * device/include/stdlib.h: include malloc.h to comply with ANSI
6431         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
6432
6433 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6434
6435         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
6436         * doc/clean.mk: also remove *.out files
6437         * doc/sdccman.lyx: some additions, larger top/bottom margins
6438
6439 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6440
6441         * src/SDCC.y: fixed bug #837365
6442         * support/regression/tests/bitopcse.c
6443         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
6444         a symbol (might be valop instead)
6445         * device/lib/Makefile.in: added errno.c to HC08SOURCES
6446         * device/lib/clean.mk: added hc08 to the cleaning list
6447
6448 2003-11-04  Borut Razem <borut.razem AT siol.net>
6449
6450         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
6451           made 2003-11-04
6452         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6453           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
6454           malloc is declared in standard stdlib.h
6455
6456 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6457
6458         * device/lib/hc08/Makefile: need to clean .rel not .o files
6459         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
6460
6461 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6462
6463         * src/port.h,
6464         * src/hc08/main.c,
6465         * src/mcs51/main.c,
6466         * src/ds390/main.c,
6467         * src/z80/main.c,
6468         * src/avr/main.c,
6469         * src/pic/main.c,
6470         * src/pic16/main.c,
6471         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
6472         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
6473         tests (which uses the port's oclsExpense function)
6474         * src/SDCC.y,
6475         * src/SDCCast.c,
6476         * src/SDCCicode.c,
6477         * src/hc08/gen.c,
6478         * src/ds390/gen.c,
6479         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
6480
6481 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6482
6483         * src/SDCCcse.c (ifxOptimize),
6484         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
6485         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
6486         deleting the IFX iCode.
6487         * src/hc08/ralloc.c: reduced unneeded slocs
6488         * src/hc08/gen.c: fixed bug in asmopToBoolean
6489
6490 2003-11-04  Borut Razem <borut.razem AT siol.net>
6491
6492         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
6493           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6494           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
6495           transferred to configure
6496
6497 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
6498
6499         Use headers defined in the C[++] standards:
6500         * sim/ucsim/gui.src/serio.src/fileio.cc
6501         * sim/ucsim/gui.src/serio.src/frontend.cc
6502         * sim/ucsim/gui.src/serio.src/main.cc
6503         * sim/ucsim/gui.src/serio.src/posix_signal.cc
6504         * support/Util/NewAlloc.c
6505         * as/hc08/lklibr.c
6506         * as/mcs51/lklibr.c
6507         * as/z80/aslist.c
6508         * as/z80/assym.c
6509
6510 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6511
6512         * Added MSVC projects for hc08 assembler and linker:
6513         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
6514         /as/hc08/link_hc08.dsp
6515
6516 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
6517
6518         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
6519
6520 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
6521
6522         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
6523
6524 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6525
6526         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
6527
6528 2003-10-31  Borut Razem <borut.razem AT siol.net>
6529
6530         * support/cpp2/cpplib.h,
6531           support/cpp2/cpplib.c,
6532           support/cpp2/cpplex.c,
6533           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
6534           to switch _asm block preprocessing on / off. Default is
6535           #pragma preproc_asm +
6536
6537 2003-10-31  Borut Razem <borut.razem AT siol.net>
6538
6539         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
6540           when outputting comment blocks (when executed with -C option) and
6541           _asm (SDCPP specific) blocks
6542
6543 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6544
6545         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
6546
6547 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
6548
6549         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
6550
6551 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
6552
6553         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
6554         * src/SDCCast.c (decorateType): fixed bug #832664
6555
6556 2003-10-31  Borut Razem <borut.razem AT siol.net>
6557
6558         * support\cpp2\cpplex.c: fixed for SDCPP:
6559           comments(when executed with -C option) and _asm blocks
6560           were included even if they where in skipped #if block.
6561           Applied solution from GCC cpp 3.3.2
6562
6563 2003-10-31  Borut Razem <borut.razem AT siol.net>
6564
6565         * src/SDCC.lex: sdcc now understands both formats:
6566           '# <line_number> <file_name>' and
6567           '#line <line_number> <file_name>'
6568         * support/cpp2/cppmain.c: sdcpp now generates the standard
6569           '# <line_number> <file_name>' instead of former
6570           '#line <line_number> <file_name>'
6571
6572 2003-10-30  Borut Razem <borut.razem AT siol.net>
6573
6574         * support/cpp2/cpphash.h,
6575         * support/cpp2/cpplib.h
6576         * support/cpp2/cpplex.c,
6577         * support/cpp2/cppmain.c,
6578         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
6579
6580 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6581
6582         Fixed a number of problems revealed by bug #827883.
6583         * src/SDCCloop.c (loopInvariants): Spill location of the
6584         result operand should be recomputed if extracted from
6585         a loop. Also, don't extract assignments of an iTemp
6586         from a literal.
6587         * src/SDCCast.c (isConformingBody): loop reversal should
6588         not occur if the control variable is involved with a
6589         relational operator.
6590
6591 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
6592
6593         * .version: bumped to 2.3.6 to reflect the big improvements
6594         made by Erik and Klaus. Thanks!
6595
6596 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
6597
6598         Replaced the livrange code.
6599         * src/SDCClrange.c: added new LR code
6600         * src/SDCCloop.c,
6601         * src/SDCCBBlock.h: removed remainig parts from old LR code
6602         * src/ds390/ralloc.c,
6603         * src/ds390/gen.c: minor fixes to make it work with new code
6604
6605 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6606
6607         * as/hc08/asm.h,
6608         * as/hc08/lkrloc.c,
6609         * src/hc08/gen.c,
6610         * src/hc08/ralloc.c: Fix various warnings related to the hc08
6611         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
6612         (tweaked fix for bug #818696)
6613
6614 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6615
6616         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
6617
6618 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6619
6620         * src/SDCCmain.c,
6621         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
6622         * src/mcs51/gen.c (gencjneshort),
6623         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
6624         more efficient (per Scott Bronson's suggestion)
6625
6626 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6627
6628         Extended the semantics of the critical keyword to include
6629         individual statements. See RFE #827755 and #799831
6630         * src/SDCC.y
6631         * src/SDCCicode.c
6632         * src/SDCCopt.c
6633         * src/SDCCast.c
6634         * support/Util/SDCCerr.c
6635         * support/Util/SDCCerr.h
6636         * src/mcs51/gen.c
6637         * src/ds390/gen.c
6638         * src/hc08/gen.c
6639
6640 2003-10-19  Borut Razem <borut.razem AT siol.net>
6641
6642         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
6643
6644 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6645
6646         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
6647         Fixed bug #818696
6648         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
6649         and predecrement operand is displayed
6650
6651 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6652
6653         * src/SDCCval.c (valMinus): fixed bug #826041
6654
6655 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6656
6657         Some hc08 related updates that I missed earlier
6658         * sim/ucsim/stypes.h
6659         * support/regression/ports/hc08/spec.mk
6660
6661 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6662
6663         New target "hc08" for the Motorola 68hc08 family of micros
6664
6665         * configure
6666         * configure.in
6667         * Makefile
6668         * src/hc08/*
6669         * src/SDCCmain.c
6670         * src/port.h
6671         * sim/ucsim/hc08.src/*
6672         * sim/ucsim/configure.in
6673         * src/ucsim/configure
6674         * sim/ucsim/packages_in.mk
6675         * as/hc08/*
6676         * as/Makefile
6677         * device/include/mc68hc908qy.h
6678         * device/lib/hc08/*
6679         * device/lib/Makefile.in
6680         * support/regression/ports/hc08/*
6681         * support/regression/Makefile
6682
6683 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6684
6685         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
6686         regression test
6687         * src/ds390/gen.c (genCast): fixed bug #821957
6688
6689 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6690
6691         * device/lib/logf.c: "fixed" overlay bug
6692         * support/regression/ports/host/spec.mk: added m library
6693         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
6694         * support/regression/tests/float_trans: added (for Eric)
6695
6696 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
6697
6698         * src/mcs51/gen.c (genCpl): fixed bug
6699         http://sf.net/mailarchive/message.php?msg_id=6263915
6700
6701 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
6702
6703         * src/SDCCast.c (decorateType): added extended constant folding
6704         * src/SDCCsymt.c (computeType): cleanup
6705         * src/SDCCval.c (valShift): minor optimization
6706         * support/regression/tests/ast_constant_folding.c: added
6707
6708 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6709
6710         * src/SDCCmain.c: removed some unintended changes
6711
6712 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6713
6714         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
6715         * src/z80/gen.c: fixed part of bug #817589
6716         * src/SDCCsymt.c (checkFunction): fixed bug #817895
6717
6718 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
6719
6720         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
6721         * src/SDCCcflow.c
6722         * src/SDCCcse.c
6723         * src/SDCCdflow.c
6724         * src/SDCClabel.c
6725         * src/SDCClrange.c
6726         * src/SDCCmem.c
6727         * src/SDCCopt.c
6728         * src/SDCCpeeph.c
6729         * src/SDCCset.c
6730         * src/avr/ralloc.c
6731         * src/ds390/ralloc.c
6732         * src/izt/ralloc.c
6733         * src/mcs51/ralloc.c
6734         * src/pic/ralloc.c
6735         * src/pic16/ralloc.c
6736         * src/xa51/ralloc.c
6737         * src/z80/ralloc.c
6738         * src/z80/gen.c: removed unused label "release:"
6739
6740 2003-10-06  Borut Razem <borut.razem AT siol.net>
6741
6742         * src/SDCC.lex: removed definition of unused variables
6743           save_optimize and save_options
6744
6745 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
6746
6747         * clean.mk: removed '=' in "-maxdepth=1"
6748         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
6749         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
6750
6751 2003-10-06  Borut Razem <borut.razem AT siol.net>
6752
6753         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
6754           my_unput() replaced by unput()
6755
6756 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
6757
6758         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
6759         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
6760         type-punned pointer will break strict-aliasing rules"
6761         Old LR behaviour is again default; Klaus' LR can be choosen by
6762         defining the environment variable LRKLAUS
6763         * src/SDCCBBlock.h
6764         * src/SDCCloop.c
6765         * src/SDCClrange.c
6766         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
6767         * clean.mk: fixed removal of files in bin/CVS/
6768         * device/lib/clean.mk: fixed removal of directories small and large
6769         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
6770         * src/SDCCicode.c,
6771         * src/SDCCval.c: removed superflous test for pedantic
6772
6773 2003-10-05  Borut Razem <borut.razem AT siol.net>
6774
6775         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
6776           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
6777           message "unmatched #pragma SAVE and #pragma RESTORE"
6778
6779 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6780
6781         * doc/sdccman.lyx: various additions and updates (interrupts, inline
6782           assembly, critical functions, atomic, nojtbound)
6783
6784 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
6785
6786         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
6787         * src/SDCCBBlock.h
6788         * src/SDCCloop.c
6789         * src/SDCCloop.h
6790         * src/SDCClrange.c
6791
6792 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6793
6794         * src/z80/gen.h,
6795         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6796         * src/mcs51/gen.h
6797         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6798         * src/ds390/gen.h
6799         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6800         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
6801         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
6802
6803 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6804
6805         * src/z80/gen.c (genRet): fixed bug #524753
6806         * src/z80/gen.c (genCast): fixed internal error on cast from
6807         pointer to long
6808         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
6809         fix for bug #477835 to the z80
6810         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
6811         for tracking iCodes in the peephole optimizer for z80
6812
6813 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6814
6815         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
6816         the other part of bug #814548
6817         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
6818
6819 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
6820
6821         * src/SDCCcse.c: fixed part of bug #814548
6822
6823 2003-09-28  Borut Razem <borut.razem AT siol.net>
6824
6825         * src/asm.c: rewrite of printILine() to use temporary file instead
6826           a pipe
6827         * src/xa51/main.c: commented out declaration of int rewinds
6828
6829 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6830
6831         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
6832
6833 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6834
6835         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
6836         * src/asm.c (printILine): Fixed bug #811015
6837
6838 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6839
6840         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
6841         freeing.
6842
6843 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6844
6845         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
6846         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
6847         to correctly handle general case of AOP_PAIRPTR
6848         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
6849
6850 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6851
6852         * src/mcs51/ralloc.c (fillGaps),
6853         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
6854         register positioning bug)
6855
6856 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
6857
6858         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
6859
6860 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6861
6862         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
6863         genCodePointerGet, genGenPointerGet, genFarPointerSet,
6864         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
6865         (ralloc doesn't intentionally do this now, but perhaps later)
6866         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
6867         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
6868         register positioning bugs (Fixed bug #762602 and #795325)
6869         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
6870         (Fixed bug #808779)
6871         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
6872         lines that --i-code-in-asm generates
6873
6874 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6875
6876         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
6877         trying to fclose a FILE* that was already closed.
6878
6879 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6880
6881         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
6882         of const struct should be treated as if const themselves)
6883
6884 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
6885
6886         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
6887
6888 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6889
6890         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
6891         Unix (/n) and DOS (/r/n) line terminations.
6892
6893 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6894
6895         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
6896         bug #613775
6897
6898 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6899
6900         * src/mcs51/gen.c (genFunction, genEndFunction),
6901         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
6902         and restore of EA so that stack offsets to parameters are
6903         correct when using both critical and reentrant/stack-auto.
6904         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
6905         size (can be triggered in error if sloc is shared between
6906         different sized objects)
6907         * device/include/float.h: fixed macros to explicitly use
6908         unsigned long where needed
6909
6910 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
6911
6912         Feature req. 799831: added code to allow nesting of critical functions
6913         * src/mcs51/gen.c (genFunction, genEndFunction)
6914         * src/ds390/gen.c (genFunction, genEndFunction)
6915
6916 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6917
6918         * src/SDCCsymt.c (sclsFromPtr),
6919         * src/SDCCsymt.h,
6920         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
6921         support for standard C idiom of memory mapped variables; for
6922         example, *((xdata int*)0x1234) = 1 is now internally equivalent
6923         to xdata int at 0x1234 tempvar = 1.
6924         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
6925         provided by Akiya ISHIDA
6926
6927 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
6928
6929         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
6930         * src/SDCCval.c (constVal): added reduction from int to char
6931         * src/SDCCval.c (valMult, valDiv): fixed sign handling
6932         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
6933         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
6934         to ignore the sign
6935         * support/regression/tests/shifts.c: fixed
6936
6937 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6938
6939         * src/z80/gen.c (genXor): Fixed bug #805445
6940
6941 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6942
6943         Fixed bug #621531 (const & volatile confusion in the type chain).
6944         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
6945         refer to the const or volatile state of the pointer itself.
6946
6947         * src/SDCCast.c
6948         * src/SDCCglue.c
6949         * src/SDCCicode.c
6950         * src/SDCCsymt.c
6951         * src/SDCCval.c
6952         * src/SDCC.y
6953         * src/SDCCsymt.h
6954         * src/pic/gen.c
6955         * src/pic/ralloc.c
6956         * src/pic16/gen.c
6957         * src/pic16/ralloc.c
6958         * support/regression/tests/const.c
6959
6960 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6961
6962         When checking for duplicated modules, use absolute paths
6963         instead of relative paths.  Files changed:
6964
6965         * as/mcs51/lklib.c
6966         * link/z80/lklib.c
6967
6968 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6969
6970         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
6971
6972 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6973
6974         * device/include/string.h: added size_t typedef, changed
6975         prototypes to use size_t, eliminated separate reentrant and
6976         non-reentrant declarations, added _memmove declaration
6977         * device/lib/_memcpy.c: changed to use size_t instead of int,
6978         changed /4 to >>2 to avoid division library call
6979         * device/lib/_memcmp.c,
6980         * device/lib/_memset.c,
6981         * device/lib/_strncat.c,
6982         * device/lib/_strncpy.c,
6983         * device/lib/_strncmp.c: changed to use size_t instead of int
6984         * device/lib/_memmove.c: new file (fixed bug #772294)
6985         * device/lib/Makefile.in: added _memmove.c
6986         * device/lib/z80/asm_strings.s: fixed bug #772290
6987         * support/regression/tests/bitfields.c: attempt to fix host assertion
6988         failure on amd64-unknown-linux2.2
6989
6990 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6991
6992         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
6993         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
6994         * as/z80/asmain.c (main): fixed bug #801766
6995
6996 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
6997
6998         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
6999         compilers
7000
7001 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7002
7003         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
7004         reported in bug #800609
7005
7006 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
7007
7008         * Top header beautifications in src/pic16 directory:
7009           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
7010           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
7011           pcoderegs.h, ralloc.c, ralloc.h
7012         * main.c: added top header and GPL license notice
7013         * pcode.c: fixed the if-conditional warning
7014
7015 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
7016
7017         * device/lib/_mullong.c: replaced int by short for gcc
7018
7019 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7020
7021         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
7022         and JUMPTABLE iCodes properly now (worked by accident before)
7023         * src/mcs51/gen.c (leftRightUseAcc),
7024         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
7025         iCode properly now. Use getSize instead of nRegs since a & b
7026         aren't part of the nRegs tally.
7027
7028 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
7029
7030         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
7031         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
7032           before instructions that use the _STATUS register
7033
7034 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
7035
7036         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
7037         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
7038         fetching of the pointer
7039         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
7040         copied from genNearPointerSet()
7041         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
7042         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
7043         If they pop r0/r1 they must be called in the opposite order than aopOp().
7044         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
7045         (resp. --stack-auto), prepared for --xstack
7046
7047 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7048
7049         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
7050
7051 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
7052
7053         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
7054         these ports have their own __sdcc_external_start()
7055
7056 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
7057
7058         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7059         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
7060         type for bits was changed. It resulted in bit variables becoming
7061         global, which is not permitted in PIC 14 assembly output.
7062
7063 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7064
7065         * doc/sdccman.lyx: various additions and updates. Rearranged sections
7066
7067 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7068
7069         Z80 and MCS51 linkers complaint if a public symbol is defined
7070         in more than one library module:
7071
7072         * as/mcs51/lklib.c
7073         * link/z80/lklib.c
7074         * as/mcs51/Makefile.in
7075
7076 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7077
7078         A few small changes that speed up the peephole optimizer.
7079
7080         * src/SDCCpeeph.c
7081
7082 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7083
7084         Try to make the peephole optimizer smarter by maintaining
7085         an association between the assembly source code and the
7086         iCodes that originated them. Put this information to use
7087         with a new peephole rule condition "notVolatile" so that
7088         the rules can be aggressive yet still safe.
7089
7090         * src/SDCCpeeph.c
7091         * src/SDCCpeeph.h
7092         * src/mcs51/gen.c
7093         * src/mcs51/peeph.def
7094
7095 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7096
7097         Fixed bug #741761
7098
7099         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
7100         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
7101         if the left or right operand symbols have the accuse flag set.
7102
7103 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7104
7105         Changed the type of the result of the ! (NOT) operator to char;
7106         previously it returned the same type as the source. This allows
7107         us to eliminate all the genFloatNot functions (all of its target
7108         implementations were very buggy) since !float can use the same
7109         code as !long now.
7110
7111         * src/SDCCicode.c (ast2iCode): ! returns char
7112         * src/mcs51/gen.c (genNot, genNotFloat),
7113         * src/ds390/gen.c (genNot, genNotFloat),
7114         * src/z80/gen.c (genNot, genNotFloat),
7115         * src/pic/gen.c (genNot, genNotFloat),
7116         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
7117
7118 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
7119
7120         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7121         1. Interrupt would not compile properly. Ensure PCLATH register is saved
7122            during interrupts. Ensure WSAVE is located at a shared bank address.
7123         2. Fixed page selection in some places
7124         3. Fixed BTFSS/C to where necessary use registers directly and not simply
7125            the registers name strings.
7126         4. Fixed "signed / unsigned compare" compiler warnings.
7127         5. The PIC port manages its own allocation of the general purpose
7128            registers, but makes no attempt to reuse them. As a result when
7129            compiling it soon runs out of general purpose registers. Some
7130            additional code was added to the files pcode.c and device.c to walk
7131            through the function call tree and rename the registers so that they
7132            get reused.
7133
7134         * src/pic/device.c
7135         * src/pic/gen.c
7136         * src/pic/glue.c
7137         * src/pic/pcode.c
7138         * src/pic/pcode.h
7139         * src/pic/ralloc.c
7140         * src/pic/ralloc.h
7141         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
7142         genPlus() & genMinus() when the result is the same as left or right
7143
7144 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7145
7146         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
7147
7148 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7149
7150         Made bitfield a distinct type from bit so that bitfields
7151         convert as per ANSI C and bits retain their traditional
7152         boolean style behaviour. Implemented bitfield support in
7153         the z80 port.
7154
7155         * src/SDCCsymt.h,
7156         * src/SDCCsymt.c,
7157         * src/SDCCast.c,
7158         * src/cdbFile.c,
7159         * src/mcs51/gen.c,
7160         * src/ds390/gen.c: bit v bitfield split
7161         * src/z80/gen.c: New support for bitfields
7162         * support/regression/tests/bitfields.c: reenabled z80,
7163         added more tests
7164
7165 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7166
7167         Rules 246.x, 247.x relate to bitfields, the others speed up
7168         access to xdata mapped I/O devices.
7169
7170         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
7171
7172 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7173
7174         Cleaned up genPackBits and genUnpackBits and added two helper
7175         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
7176         for literal assignments in genPackBits (thanks to Frieder for
7177         reminding me).
7178
7179         * src/mcs51/gen.c
7180         * src/ds390/gen.c
7181
7182 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7183
7184         Fixed bug #748310 (pointer to function type mishandled when the
7185         function name is omitted). Also fixed a SIGSEGV when a function
7186         attribute (reentrant, etc) is used on a non-function or on a
7187         function but misplaced before the parameter list.
7188
7189         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
7190         bug #748310
7191         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
7192         * support/Util/SDCCerr.h,
7193         * support/Util/SDCCerr.c: Added func attr misuse error msg
7194
7195 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7196
7197         Fixed bug #787649 by anonymous
7198         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
7199         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
7200
7201 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7202
7203         Fixed numerous bitfield problems.
7204
7205         * src/SDCC.y: More bitfield related error checking
7206         * src/SDCCsymt.h,
7207         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
7208         * support/Util/SDCCerr.h,
7209         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
7210         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7211         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7212         * support/regression/tests/bitfields.c: tests added
7213
7214 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7215
7216         Made the constant following the "interrupt" keyword optional. If
7217         omitted, the function will not automatically be given an entry
7218         in the interrupt vector table (similar to #pragma NOIV, but
7219         less syntacticly kludgy). The interrupt number is also now
7220         range checked. Also fixed a bug in the high order bit example
7221         in the manual.
7222
7223         * src/SDCC.y
7224         * src/SDCCmem.c
7225         * src/SDCCglue.c
7226         * src/SDCCsymt.h
7227         * support/Util/SDCCerr.c
7228         * support/Util/SDCCerr.h
7229         * doc/sdccman.lyx
7230
7231 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7232
7233         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
7234         * src/SDCCicode.c (operandOperation): rewritten some ops
7235         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
7236         * src/SDCCsymt.c (computeType): literals are handled the same way as any
7237         other type
7238         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
7239         be re-activated by defining REDUCE_LITERALS)
7240         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
7241         unsigned, but are signed by default
7242         * src/SDCCval.c (constVal): rearranged
7243         * src/SDCCval.c (valMod): preliminary fix
7244         * src/SDCCval.c (valCastLiteral): use TYPE_* types
7245         * support/regression/literalop.c: added, work in progress
7246
7247 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7248
7249         Generate warnings for useless declarations like "char data;"
7250         that don't do what new users expect.
7251
7252         * src/SDCC.y
7253         * support/Util/SDCCerr.h
7254         * support/Util/SDCCerr.c
7255
7256 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
7257
7258         * src/SDCCval.c (valMult): fix overflow detection of negative int
7259
7260 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7261
7262         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
7263
7264         Changes to support big endian targets:
7265
7266         * src/ports.h
7267         * src/SDCCglue.c
7268         * src/avr/main.c
7269         * src/ds390/main.c
7270         * src/izt/i186.c
7271         * src/mcs51/main.c
7272         * src/pic/main.c
7273         * src/pic16/main.c
7274         * src/xa51/main.c
7275         * src/z80/main.c
7276
7277 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
7278
7279         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
7280         * device/lib/time.c: fixed warning "integer overflow in expression"
7281
7282 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
7283
7284         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
7285         * src/SDCCval.c (constVal): changed default to signed; hex and octal
7286         constants are unsigned; added recognition of "u" flag for unsigned
7287         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
7288         * src/SDCCval.c (valDiv, valMod): fixed signdness
7289         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
7290         signedness of modulo, left and right shift
7291         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
7292         * support/Util/SDCCerr.h: added warning W_INT_OVL
7293         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
7294         * src/SDCCast.c (ast_print): improved output of constants
7295
7296 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7297
7298         Fixed some warnings when building with MSVC:
7299
7300         * as\mcs51\asdata.c
7301         * as\z80\asdata.c
7302         * as\mcs51\asm.h
7303         * as\z80\asm.h
7304         * link\z80\aslink.h
7305         * link\z80\lkdata.c
7306         * link\z80\lkeval.c
7307         * link\z80\lkgb.c
7308         * link\z80\lkihx.c
7309         * link\z80\lks19.c
7310         * link\z80\lksym.c
7311         * support\cpp2\cpplib.c
7312         * src\ds390\gen.c
7313         * src\mcs51\gen.c
7314
7315 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
7316
7317         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
7318
7319 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7320
7321         * support\librarian\clean.mk: Do not remove Makefile.
7322         * support\librarian\Makefile: added.
7323
7324 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7325
7326         Added librarian to MSVC build:
7327         * all.dsp
7328         * sdcc.dsw
7329         * support\librarian\librarian.dsp
7330
7331         'configure' not needed for librarian, removed:
7332         * support\librarian\configure
7333         * support\librarian\configure.in
7334         * support\librarian\config_in.h
7335         * support\librarian\Makefile.in
7336
7337         Hopefully these ones built the librarian and the rest of sdcc properly:
7338         * Makefile
7339         * Makefile.common.in
7340
7341         Messed up 'configure', so revert to previous version:
7342         * configure
7343         * configure.in
7344
7345 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
7346
7347         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
7348         there, while the mantissa of a double is "only" 53 bits wide.
7349
7350 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7351
7352         Adding sdcclib to the build.  MSVC project coming soon.
7353         Files added/changed:
7354
7355         * support\librarian\clean.mk
7356         * support\librarian\configure
7357         * support\librarian\configure.in
7358         * support\librarian\config_in.h
7359         * support\librarian\Makefile.bcc
7360         * support\librarian\Makefile.in
7361         * support\librarian\sdcclib.c
7362         * Makefile.bcc
7363         * Makefile
7364         * Makefile.common.in
7365         * configure
7366         * configure.in
7367
7368 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7369
7370         Linker now complaints if linked modules have conflicting options, for
7371         example, one compiled using --model-large and another one compiled with
7372         --model-small.  The following files were modified:
7373
7374         * as\mcs51\asdata.c
7375         * as\mcs51\aslink.h
7376         * as\mcs51\asm.h
7377         * as\mcs51\asmain.c
7378         * as\mcs51\asout.c
7379         * as\mcs51\i51pst.c
7380         * as\mcs51\lkdata.c
7381         * as\mcs51\lklibr.c
7382         * as\mcs51\lkmain.c
7383         * as\z80\asdata.c
7384         * as\z80\asm.h
7385         * as\z80\asmain.c
7386         * as\z80\asout.c
7387         * as\z80\z80pst.c
7388         * link\z80\aslink.h
7389         * link\z80\lkdata.c
7390         * link\z80\lklibr.c
7391         * link\z80\lkmain.c
7392         * src\SDCCglue.c
7393
7394 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7395
7396         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
7397         as/mcs51/lklibr.c: Generate a warning when a library is not found.
7398
7399 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
7400
7401         * src/z80/mappings.i: fix _mul[us][int,long] entries
7402
7403 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7404
7405         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
7406
7407 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7408
7409         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
7410         * support/regression/tests/bitopcse.c: added
7411         fixed warning:
7412         * src/avr/gen.c:
7413         * src/pic/gen.c:
7414         * src/pic16/gen.c:
7415         * src/z80/gen.c:
7416         * src/xa51/gen.c:
7417
7418 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7419
7420         added support for new library format to z80, gbz80 linkers:
7421         *link/z80/aslink.h
7422         *link/z80/lklex.c
7423         *link/z80/lklib.c
7424         *link/z80/lklist.c
7425
7426 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7427
7428         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
7429         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
7430
7431 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
7432
7433         added DUMMY_READ_VOLATILE:
7434         * src/SDCC.y:
7435         * src/avr/gen.c:
7436         * src/xa51/gen.c:
7437         * src/z80/gen.c:
7438         * src/pic/gen.c:
7439         * src/pic16/gen.c:
7440         * src/mcs51/gen.c:
7441         * src/ds390/gen.c:
7442         * src/SDCCcse.c (algebraicOpts): many improvements
7443         * src/SDCCcse.h: removed algebraicOpts()
7444         * src/SDCCicode.c (picDummyRead): added
7445
7446 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7447
7448         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
7449         "Insufficient space in data memory".
7450
7451 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7452
7453         * src/mcs51/gen.c: fixed bug #771358
7454         * src/z80/gen.c: fixed bug #759087
7455
7456 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
7457
7458         * src/pic16/glue.c: minor cleanup by Vangelis
7459
7460 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7461
7462         * device/include/regc515c.h: fixed #758477
7463         * device/lib/_gptrget.c: saving some cycles in generic pointer get
7464         * device/lib/_gptrput.c: saved a few bytes
7465         * my tab spacing is 8, yours too?)
7466         * device/lib/_ser.c: process RX bytes earlier than TX bytes
7467         * device/lib/serial.c: process RX bytes earlier than TX bytes
7468         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
7469
7470 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7471
7472         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
7473
7474 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7475
7476     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
7477
7478 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
7479
7480         * device/lib/Makefile.in: bad fix, reverted to 1.43
7481
7482 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
7483
7484         * device/lib/Makefile.in: added missing z80 object files
7485
7486 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
7487
7488         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
7489         pic16 progress by Vangelis:
7490         * src/SDCCglobl.h:
7491         * src/SDCCmain.c:
7492         * src/pic/Makefile:
7493         * src/pic:
7494         * pic/Makefile:
7495         * pic16/device.c:
7496         * pic16/device.h:
7497         * pic16/gen.c:
7498         * pic16/gen.h:
7499         * pic16/genarith.c:
7500         * pic16/glue.c:
7501         * pic16/main.c:
7502         * pic16/pcode.c:
7503         * pic16/pcode.h:
7504         * pic16/pcodepeep.c:
7505         * pic16/peeph.def:
7506
7507 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7508
7509     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
7510
7511 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7512
7513     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
7514     added gbz80 build to MSVC project.
7515     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
7516     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
7517     from 8051 stuff and setup so it links using a .lnk file.
7518
7519 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7520
7521     * support/librarian/sdcclib.c: sdcc librarian.
7522     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
7523     with sdcclib.
7524
7525 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7526
7527     * as/mcs51/lkmain.c: properly handle extensions in function afile.
7528
7529 2003-07-02  Borut Razem <borut.razem AT siol.net>
7530
7531         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
7532         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
7533         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
7534         src/xa51/main.c, src/z80/main.c:
7535         virtualization of glue() function: each port has it's own glue function,
7536         which is accessed by do_glue function pointer in PORT.general structure
7537
7538 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
7539
7540         * DS800C400 fun, improved ROM interface and tinibios.
7541
7542 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
7543
7544         * More support for DS80C400. Now includes beginning of interface to ROM.
7545
7546 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
7547
7548         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
7549
7550 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7551
7552         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
7553
7554 2003-06-19  Borut Razem <borut.razem AT siol.net>
7555
7556         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
7557
7558 2003-06-19  Borut Razem <borut.razem AT siol.net>
7559
7560         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
7561         fixed Z80 port - crt0.o: cannot open.
7562
7563 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
7564
7565         * support/Util/MySystem.c (merge_command): revert bad fix
7566
7567 2003-06-18  Borut Razem <borut.razem AT siol.net>
7568
7569         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
7570
7571 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7572
7573         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7574         option --use-stdout sends errors to stdout instead of stderr.
7575
7576 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
7577
7578         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
7579
7580 2003-06-15  Borut Razem <borut.razem AT siol.net>
7581
7582         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
7583         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
7584         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
7585         fixed width array of pointers replaced with sets;
7586         multiple include and lib paths ared transferred to preprocessor and linker
7587         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
7588         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
7589         fixed width array of pointers
7590         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
7591         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
7592         fixupPath(), getPathDifference()
7593         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
7594         fixed width array of pointers
7595
7596 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
7597
7598         * src/pic16/ralloc.c: fix warnings
7599         * src/pic16/pcode.c: fix warning
7600
7601 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
7602
7603          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
7604         know all the details, but essentially this set of changes enable
7605         the pic16 port to generate movff instructions and generate assembler
7606         directives,
7607         * src/SDCCmain.c:
7608         * src/pic16/gen.c:
7609         * src/pic16/glue.c:
7610         * src/pic16/pcode.c:
7611         * src/pic16/device.c:
7612         * src/pic16/main.c:
7613         * src/pic16/pcode.h:
7614         * src/pic16/pcoderegs.c:
7615         * src/pic16/ralloc.c:
7616         * src/pic16/ralloc.h:
7617
7618 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7619
7620         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7621         added option --vc, so sdcc errors and warnings are compatible with
7622         Microsoft Visual Studio.
7623
7624 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7625
7626         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
7627           device/lib/libfloat.lib: added atof function.
7628
7629 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
7630
7631         * doc/sdccman.lyx: updated to Lyx 1.3
7632         * doc/cdbfileformat.lyx: updated to Lyx 1.3
7633         * doc/test_suite_spec.lyx: updated to Lyx 1.3
7634         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
7635
7636 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
7637
7638         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
7639
7640 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7641
7642         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
7643           additions to the "related tools/documentation" section
7644
7645 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
7646
7647         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
7648
7649 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
7650
7651         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
7652         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
7653
7654 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
7655
7656         * doc/sdccman.lyx: fix double dash and other minor things
7657         * doc/Makefile: fix double dash
7658
7659 2003-05-28  Karl Bongers(patches from Martin Helmling)
7660         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
7661           condition and ignore commands.
7662
7663 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7664
7665         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
7666           is in parts still quite out of date, I did changes as far as I felt makes sense
7667           for a non-native english speaker.
7668           Please feel free to add to the manual or to correct my changes.
7669         * doc/Makefile: undid touching the date of intermediate tex files.
7670
7671 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7672
7673         * doc/sdccman.lyx: Manual has an index now
7674
7675 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
7676
7677         Finalize muluint/mulsint and mululong/mulslong merging:
7678         * device/lib/_mulint.c
7679         * device/lib/_mullong.c
7680         * device/lib/gbz80/mul.s
7681         * device/lib/gbz80/stubs.s
7682         * device/lib/z80/mul.s
7683         * device/lib/z80/stubs.s
7684         * src/SDCCsymt.c (initCSupport)
7685
7686 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7687
7688         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
7689         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
7690           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
7691           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
7692           instead of /Zm500.
7693
7694 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7695
7696         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
7697           the regression tests I'm not brave enough to enable 245.b, 245.c
7698         * doc/sdccman.lyx: added latex preamble for hyperref package.
7699           Using pdflatex this will give you a hyperlinked pdf file with
7700           bookmarks. (prepend '%' before /usepackage if this breaks something)
7701
7702 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7703
7704          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
7705
7706 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
7707
7708         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
7709
7710 2003-05-21    <johan AT balder>
7711
7712         * src/SDCCglue.c (printIval): fixed bug #739934
7713
7714 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7715
7716         Applied patch from bug 737905 (renamed yylineo to mylineno):
7717         * src/altlex.c
7718         * src/SDCCast.c
7719         * src/SDCglobl.h
7720         * src/SDCC.lex
7721         * src/SDCCsymt.c
7722         * src/SDCCval.c
7723         * src/pic16/pcode.c: Cleaned warnings
7724         * src/pic16/pcodeflow.c: Cleaned warnings
7725         * src/pic16/pcoderegs.c: Cleaned warnings
7726
7727 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
7728
7729         * src/pic16/pcode.c: Cleaned warnings
7730         * src/pic16/pcodepeep.c: Cleaned warnings
7731         * src/pic16/ralloc.c: Cleaned warnings
7732
7733 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7734
7735         * doc/sdccman.lyx: fixed bug 739745
7736         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
7737
7738 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
7739
7740         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
7741         it can be defined with CFLAGS when running configure
7742         * src/SDCCmain.c: fixed compiling + linking with object files
7743
7744 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
7745
7746         * configure.in: configure for pic16 port,
7747             added --disable-pic16-port
7748         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
7749         * src/SDCCmain.c: linkOptions is changed to set *,
7750             added if/endif conditional macros to remove options help
7751             messages from optionsTable when a port is not configured, added
7752             support for the PIc16 port in the ports table, when executing
7753             the compiler with no port specified on command line, a default
7754             port is selected with the new macro DEFAULT_PORT which is
7755             defined in port.h, in setDefaultOptions() linkOptions is removed
7756             from initialization assignment, since now it is a set,
7757             parseCmdLine uses setParseWithComma for linkOptions, in
7758             linkEdit() linkOptions are accessed with new function indexSet()
7759             which returns the i'th item of a set variable. See SDCCset.c, in
7760             linkEdit() when calling buildCmdLine(), added linkOptions as
7761             last argument. Now users can pass arguments to gplink via the
7762             -Wl option, main() uses pic16glue() to glue up pic16 programs
7763         * src/SDCCpeeph.c: various changes to support pic16
7764         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
7765             return the i'th item of the set
7766         * src/SDCCset.h: added function prototype for indexSet()
7767         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
7768         * src/clean.mk: added pic16 in CLEANALLPORTS variable
7769         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
7770             added macro DEFAULT_PORT
7771         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
7772         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
7773             generated
7774         * src/pic16/glue.c: commented out some error producing lines
7775         * src/pic16/main.c: __config directives are commented out to stop
7776             gpasm complaining and test the linkage with gplink, _linkCmd and
7777             _asmCmd changed to be more gplink and gpasm friendly
7778         * src/pic16/peeph.def: peep rule 3 is commented out, since it
7779             produced an error when parsed, peep rule 12 is added to utilize
7780             movff, but it is commented out since the pCode does not support
7781             yet a command with 2 address arguments
7782
7783 2003-05-18    <johan AT balder>
7784
7785         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7786         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7787 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
7788
7789         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
7790   Added feature to script commands from file.
7791
7792 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
7793
7794         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
7795         * src/SDCCutil.c: include ctype.h for win32
7796
7797 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
7798
7799         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
7800
7801 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
7802
7803         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
7804   Fixed so you can set breakpoints prior to run, run does not stop
7805   on entry now.  Add tbreak.  Other enhancements and fixes for use
7806   with ddd.
7807
7808 2003-05-12  Borut Razem <borut.razem AT siol.net>
7809
7810         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
7811
7812 2003-05-11  Borut Razem <borut.razem AT siol.net>
7813
7814         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
7815         the path of bin directory, so that PATH is the only env. variable, which has to be set
7816         in case of standard installation.
7817         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
7818         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
7819         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
7820
7821 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7822
7823         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
7824         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
7825         temp files are in the port dir; clean the gen/test directory when
7826         generating new test.c
7827         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
7828         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
7829         * support/regression/tests/zeropad.c: added
7830
7831 2003-05-09    <johan AT balder>
7832
7833         * src/SDCCglue.c: fixed bug #597940
7834
7835 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
7836
7837         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7838   cache sfr, optimize next,step, fix off by one sourceline,
7839   support ddd list function.
7840         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
7841
7842 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7843
7844         * support/regression/HTMLgen.py: added compare_s2f()
7845         * support/regression/Makefile: redo 1.27
7846         * support/regression/generate-cases.py: redo 1.5
7847
7848 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
7849
7850         * support/regression/tests/float.c: workaround 33 bit hex constant
7851         * support/regression/tests/simplefloat.c: fix division for host
7852
7853 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
7854
7855         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
7856         that tame's the PIC's over-aggressive optimizer.
7857
7858 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7859
7860          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
7861          support for MSVC.
7862
7863 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
7864
7865         Initial support for DS80C400. "Hello world" runs on TINIm400
7866         (with polled I/O).
7867
7868 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
7869
7870          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7871          * Some notes on ddd usage added in debugger/README
7872          Martin Helmling adding more features and fixes for ddd GUI debugger.
7873          Code added for nexti, stepi, up, down, and other adjustments.
7874
7875 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
7876
7877         * src/pic/pCodepeep.c non-wildcard asmops are now handled
7878         * src/pic/peeph.def Added two rules to optimize carry manipulation
7879         * src/pic/* removed debug printfs
7880
7881 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
7882
7883         * debugger/mcs51/cmd.c: added header newalloc.h
7884
7885 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
7886
7887         * as/Makefile: new EXEEXT
7888         * as/z80/Makefile: remove trailing slash of BUILDIR
7889         * as/z80/clean.mk: new EXEEXT
7890         * Makefile.common.in: add to CFLAGS (and others), don't replace it
7891         * support/cpp2/Makefile.in: new EXEEXT
7892         * src/pic/glue.c (pic14emitRegularMap): fixed warning
7893
7894 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
7895
7896         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
7897         EXEEXT was introduced to fix all related problems with targets
7898         "clean", "install" and "uninstall"; a couple of further flaws
7899         especially with "clean" have been fixed too
7900         * as/mcs51/Makefile.in
7901         * as/mcs51/clean.mk
7902         * as/z80/Makefile
7903         * Makefile
7904         * clean.mk
7905         * debugger/mcs51/Makefile.in
7906         * debugger/mcs51/clean.mk
7907         * link/z80/Makefile
7908         * link/z80/Makefile.in
7909         * link/z80/clean.mk
7910         * link/Makefile
7911         * packihx/Makefile.in
7912         * packihx/clean.mk
7913         * sim/ucsim/Makefile
7914         * sim/ucsim/clean.mk
7915         * sim/ucsim/avr.src/Makefile.in
7916         * sim/ucsim/avr.src/clean.mk
7917         * sim/ucsim/s51.src/Makefile.in
7918         * sim/ucsim/s51.src/clean.mk
7919         * sim/ucsim/xa.src/Makefile.in
7920         * sim/ucsim/xa.src/clean.mk
7921         * sim/ucsim/z80.src/Makefile.in
7922         * sim/ucsim/z80.src/clean.mk
7923         * sim/ucsim/main_in.mk
7924         * sim/ucsim/packages_in.mk
7925         * sim/ucsim/gui.src/Makefile.in
7926         * sim/ucsim/gui.src/serio.src/Makefile.in
7927         * sim/ucsim/gui.src/serio.src/clean.mk
7928         * src/Makefile.in
7929         * src/clean.mk
7930         * support/cpp2/Makefile.in
7931         * support/cpp2/clean.mk
7932         * support/makebin/Makefile
7933         * support/makebin/clean.mk
7934         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
7935         * doc/sdccman.lyx: --program-suffix no longer needed
7936
7937 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
7938
7939          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
7940          Martin Helmling added support for ddd GUI debugger.
7941          Code added to display assembly, set variables, and other commands
7942          to interface to ddd.
7943
7944 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
7945
7946         * as/Makefile: fix target clean
7947         * as/clean.mk: fix target clean
7948         * as/z80/clean.mk: fix target clean
7949
7950 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
7951
7952         * Makefile.common.in: added  AT EXEEXT AT
7953         * configure.in: removed all mingw32 stuff
7954         * configure: rebuilt from configure.in
7955         * doc/sdccman.lyx: updated section "installation"
7956         * support/scripts/sdcc_mingw32: adapted to configure
7957         * support/scripts/sdcc_cygwin_mingw32: added
7958
7959 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
7960
7961         * src/pic Added object file support for the PIC port
7962         * src/pic Applied patch from Craig Franklin (this started the object file support)
7963         * src/regression Updated the PIC regression tests for object files
7964
7965 2003-04-20  Borut Razem <borut.razem AT siol.net>
7966
7967         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
7968           lklex.c: In function `getfid':
7969           lklex.c:203: warning: array subscript has type `char'
7970         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
7971           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
7972         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
7973           stack handling macros
7974
7975 2003-04-19  Borut Razem <borut.razem AT siol.net>
7976
7977         * "handling space characters in file path" task:
7978         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
7979         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
7980         * support/Util/MySystem.h: make it self-sufficient
7981         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
7982           src/z80/main.c, sdcc/as/mcs51/lklex.c:
7983           handling space characters in file path
7984         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
7985           (it will be used by assemblers, which have their own includes, e.g. gpasm)
7986         * support/Util/MySystem.c: handling space characters in executable's path
7987
7988 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
7989
7990         * as/z80/Makefile: fix permanent rebuild of z80
7991         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
7992         * support/regression/tests/bitfields.c: added Johan's bitfields.c
7993
7994 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
7995
7996         * src/SDCCopt.c: add special case optimization to replace modulo by
7997           a power of two with a bitwise AND.
7998
7999 2003-04-18    <johan AT balder>
8000
8001         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
8002
8003 2003-04-17    <johan AT balder>
8004
8005         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
8006         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
8007
8008 2003-04-13  Borut Razem <borut.razem AT siol.net>
8009
8010         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
8011         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
8012           fixed mingw problem in adl_NORMALIZE_PATH
8013
8014 2003-04-12  Borut Razem <borut.razem AT siol.net>
8015
8016         * fixed "#pragma SAVE/RESTORE can not be nested":
8017         * src/SDCC.lex: reworked pragma handling functions
8018         * sdcc/src/SDCCglobl.h: reworked stack handling macros
8019         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
8020
8021 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8022
8023         * src/SDCCutil.c (pathEquivalent): defined but not used
8024         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
8025         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
8026         * configure: rebuilt from configure.in
8027         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8028         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8029         * device/include/Makefile.in: replace sdcc_datadir
8030         * device/lib/Makefile.in: replace sdcc_datadir
8031         * Makefile.common.in: add LDFLAGS from configure
8032         * packihx/Makefile.in: use LDFLAGS
8033         * src/Makefile.in: use LDFLAGS
8034         * support/cpp2/Makefile.in: add LDFLAGS from configure
8035         * support/makebin/Makefile: use LDFLAGS
8036         * .version: bumped version number to 2.3.5
8037
8038 2003-04-12  Borut Razem <borut.razem AT siol.net>
8039
8040         * completed "different paths" task:
8041         * src/SDCCmacro.c: fixed bug in handling quotes
8042         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
8043         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
8044
8045 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8046
8047         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
8048
8049 2003-04-11 kevin Vigor <kevin AT vigor.nu>
8050
8051         * ds390/gen.c ds390/peeph.def: fix bug 706781
8052
8053 2003-04-11  Borut Razem <borut.razem AT siol.net>
8054
8055         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
8056
8057 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
8058
8059         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
8060         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
8061          set - this bit used to not be set...).
8062         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
8063           bad code in PIC Port
8064         * src/regression/and2.c added to test bug 609268
8065         * src/regression/Makefile added and2.c to regression test
8066
8067
8068 2003-04-08    <johan AT CP255758-A>
8069
8070         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
8071         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
8072         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
8073
8074 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
8075
8076         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
8077         fix bug #487815
8078         * support/cpp2/Makefile.in: fix bug #487815
8079         * configure: rebuilt from configure.in
8080         * Makefile.common.in: docdir changed, new path suffixes
8081         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8082         * sdcc_vc_in.h: reflect changes from sdccconf.h
8083         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
8084         * src/SDCCutil.h: remove BINDIR hack
8085         * doc/sdccman.lyx: update new path hierarchy
8086
8087 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8088
8089         * src/SDCCpeeph.c: added okToRemoveSLOC test
8090
8091 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8092
8093         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
8094
8095 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8096
8097         * src/SDCCpeeph.c: added labelIsReturnOnly test
8098         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
8099
8100 2003-04-05    <johan AT balder>
8101
8102         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
8103         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
8104         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
8105         * src/SDCCast.c: fixed a warning
8106         * src/SDCCast.h: fixed a warning
8107         * src/SDCCicode.c (operandFromAst): fixed a warning
8108
8109 2003-04-04    <johan AT balder>
8110
8111         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
8112         * src/SDCCast.c (decorateType): fixed bug #715076
8113         * src/SDCC.y: fixed bug #702907
8114
8115 2003-04-03    <johan AT balder>
8116
8117         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
8118         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
8119         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
8120         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
8121         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
8122
8123 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
8124
8125         * _decdptr.c: fix return values
8126         * _gptrget.c: fix return values
8127         * _gptrgetc.c: fix return values
8128         * _gptrput.c: fix return values
8129         * _mulint.c: fix return values
8130         * as/z80/Makefile: fix 'make -j' problem
8131
8132 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
8133
8134         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
8135         * configure.in: big cleanup, updated to autoconf 2.5x
8136         * configure: rebuilt from configure.in
8137         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8138         * sdcc_vc_in.h: reflect changes from sdccconf.h
8139         * doc/Makefile: fixed a flaw in "make install"
8140
8141 2003-04-02    <johan AT balder>
8142
8143         * src/ds390/gen.c (genCmp): no comments
8144         * src/mcs51/gen.c (genCmp): no comments
8145         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
8146         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
8147
8148 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
8149
8150         * support/regression/generate-cases.py: place generated file in given sub directory
8151         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
8152         * support/regression/Makefile: improvements for 'make -j';
8153         side effect: it's simpler and faster now
8154
8155 2003-03-31  Borut Razem <borut.razem AT siol.net>
8156
8157         * src/z80/main.c: link-{port} and as-{port} defined without path
8158         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
8159
8160 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
8161
8162         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
8163
8164 2003-03-30  Borut Razem <borut.razem AT siol.net>
8165
8166         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
8167           changed type of list parameter to set
8168         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
8169         * src/port.h: changed type of do_assemble() parameter to set
8170         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
8171           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
8172           definition of "cppoutfilename" macro with NULL value in preProcess()
8173         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
8174         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
8175         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
8176           replaced with set *binPathSet
8177         * shash_add() deallocates the item, if allready exsists, before adding the new one
8178         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
8179
8180 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
8181
8182         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
8183           a nested for loop bug in the PIC port
8184         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
8185           for loops
8186
8187 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
8188
8189         * support/Util/dbuf.h: remove C++ stuff to make it portable
8190
8191 2003-03-28  Borut Razem <borut.razem AT siol.net>
8192
8193         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
8194           literal strings in stringLiteral()
8195         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
8196         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
8197           to the project
8198
8199 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
8200
8201         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
8202
8203 2003-03-26    <johan AT balder>
8204
8205         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
8206         * src/ds390/gen.c (saveRegisters): catched symbol abuse
8207         * src/SDCCast.c (decorateType): fixed " -v < 3"
8208
8209 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
8210
8211         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
8212         Added Lenny Story's debug infrastructure changes:
8213         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
8214         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
8215         * src/cdbFile.c: added
8216         * src/SDCCdebug.c: added
8217         * src/SDCCdebug.h: added
8218         * src/SDCCast.c (createFunction)
8219         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
8220         * src/SDCCmain.c (parseCmdLine, main)
8221         * src/SDCCmem.c (redoStackOffsets)
8222         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
8223         * src/SDCCsymt.h
8224         * src/common.h
8225         * src/avr/gen.c (genAVRCode)
8226         * src/ds390/gen.c (gen390Code)
8227         * src/mcs51/gen.c (gen51Code)
8228         * src/pic/gen.c (genpic14Code)
8229         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
8230         * src/xa51/gen.c (genXA51Code)
8231         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
8232
8233 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8234
8235         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
8236         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
8237
8238 2003-03-22    <johan AT balder>
8239
8240         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
8241
8242 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
8243
8244         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
8245         * doc/cdbfileformat.lyx: added, written by Lenny Story
8246         * doc/Makefile: added cdbfileformat.lyx
8247         * doc/clean.mk: added cdbfileformat.lyx
8248
8249 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
8250
8251         * src/mcs51/peeph.def: fix bug #705773
8252
8253 2003-03-20    <johan AT balder>
8254
8255         An sfr/sbit can have an "at #" AND an initializer
8256         * src/SDCCsymt.c (checkSClass):
8257         * src/SDCCmem.c (allocGlobal):
8258         * src/SDCCmem.c (allocLocal):
8259         * src/SDCCast.c (createBlock):
8260
8261 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
8262
8263         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
8264
8265 2003-03-16    <johan AT balder>
8266
8267         Undid the hackup of const and volatile, the problem is much bigger
8268         * src/SDCC.y:1.65
8269         * src/SDCCast.c:1.171
8270         * src/SDCCglue.c:1.138
8271         * src/SDCCicode.c:1.146
8272         * src/SDCCsymt.c:1.150
8273         * src/SDCCval.c:1.65
8274
8275 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
8276
8277         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
8278         * src/ds390/gen.c (genAddrOf): fixed bug #704087
8279
8280 2003-03-13    <johan AT balder>
8281
8282         Hackup const and volatile modifiers in type chains a bit:
8283         * src/SDCC.y:1.63
8284         * src/SDCCast.c:1.169
8285         * src/SDCCglue.c:1.136
8286         * src/SDCCicode.c:1.143
8287         * src/SDCCsymt.c1.146
8288         * src/SDCCsymt.h1.59
8289         * src/SDCCval.c:1.63
8290
8291 2003-03-12    <johan AT balder>
8292
8293         * src/SDCCBBlock.h: more LRH debugging junk
8294         * src/SDCCcflow.h: more LRH debugging junk
8295         * src/SDCCloop.c: more LRH debugging junk
8296         * src/SDCC.y (struct_declaration): fixed bug #697590
8297         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
8298         * src/ds390/gen.c (aopForRemat): fixed bug #700031
8299         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
8300
8301 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8302         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
8303         test function names must now match exactly).
8304         * src/SDCCcse.c: added special case in findCheaperOp to allow
8305         extending a short integer. Makes less awful code for bug 700121 test case.
8306
8307 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8308
8309         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
8310         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
8311
8312 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8313
8314         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
8315         actually called (operandsNotEqual() was called for all
8316         operandsNotEqualX tests).
8317
8318 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8319
8320         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
8321         with shorter literals. Fixes bug 700121.
8322
8323 2003-03-11    <johan AT balder>
8324
8325         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
8326
8327 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
8328
8329         * src/SDCCloop.c (mergeRegions): an evil beast is dead
8330         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
8331
8332 2003-03-10  Borut Razem <borut.razem AT siol.net>
8333
8334         * src/SDCCmain.c: pipe preprocessor's output
8335         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8336         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8337         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8338         which closes all pipes in pipeSet set
8339         * src/SDCCset.c: free deleted item in function deleteSetItem()
8340         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8341         moved from z80 to src subproject
8342         * .version: increased version number to 2.3.4
8343
8344 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
8345
8346         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
8347         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
8348         * support/regression/ports/xa51/spec.mk: fix typo
8349
8350 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
8351
8352         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
8353
8354 2003-03-09  Borut Razem <borut.razem AT siol.net>
8355
8356         * src/SDCCmain.c: pipe preprocessor's output
8357         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8358         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8359         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8360         which closes all pipes in pipeSet set
8361         * src/SDCCset.c: free deleted item in function deleteSetItem()
8362         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8363         moved from z80 to src subproject
8364
8365 2003-03-09  Borut Razem <borut.razem AT siol.net>
8366
8367         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
8368         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
8369         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
8370         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
8371         * src/SDCCglobl.h: unification of WIN32 native definitions
8372
8373 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8374
8375         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
8376
8377 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8378
8379         * src/configure.in:   check for endianess (even while cross-compiling)
8380         * src/configure:      check for endianess (even while cross-compiling)
8381         * src/configure_in.h: check for endianess (even while cross-compiling)
8382         * src/avr/gen.c:        remove old endianess stuff
8383         * src/mcs51/gen.c:      remove old endianess stuff
8384         * src/ds390/gen.c:      remove old endianess stuff
8385         * src/pic/gen.c:        remove old endianess stuff
8386         * src/pic/genarith.c:   remove old endianess stuff
8387         * src/pic/glue.c:       fix endianess check
8388         * src/pic16/gen.c:      remove old endianess stuff
8389         * src/pic16/genarith.c: remove old endianess stuff
8390         * src/pic16/glue.c:     fix endianess check
8391         * src/xa51/gen.c:       remove old endianess stuff
8392         * src/z80/gen.c:        fix endianess check
8393         * src/SDCCglue.c:       fix endianess check
8394         * src/ds390/peeph.def: fix bug 700036
8395
8396 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8397
8398         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
8399         * src/configure: find appropriate data-types on host for SDCC's int and long
8400         * src/configure.in: find appropriate data-types on host for SDCC's int and long
8401         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
8402         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
8403
8404 2003-03-07    <johan AT balder>
8405
8406         Just a big NOOP:
8407                 some minor cleanups before the big shot
8408                 OP_DEFS and OP_USES now use Kevin's protection
8409                 new option --nolabelopt
8410
8411         * src/SDCCBBlock.c:
8412         * src/SDCCast.c,:
8413         * src/SDCCcflow.c:
8414         * src/SDCCcse.c:
8415         * src/SDCCicode.c:
8416         * src/SDCCicode.h:
8417         * src/SDCClabel.c:
8418         * src/SDCCloop.c:
8419         * src/SDCCmain.c:
8420         * src/ds390/ralloc.c:
8421         * src/mcs51/ralloc.c:
8422         * src/pic/ralloc.c:
8423         * src/xa51/ralloc.c:
8424         * src/z80/ralloc.c:
8425
8426 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
8427
8428         * src/pic/pcode.c (get_op): fix 64 bit warnings
8429         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
8430         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
8431         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
8432         * support/regression/tests/malloc.c: fix 64 bit warnings
8433
8434 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
8435
8436         * src/mcs51/gen.c (genMinus): fixed bug 696436
8437
8438 2003-03-02  Borut Razem <borut.razem AT siol.net>
8439
8440         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
8441
8442 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
8443
8444         * configure.in: test for mkstemp
8445         * sdccconf_in.h: add HAVE_MKSTEMP
8446
8447 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
8448
8449         * device/include/ctype.h: removed warning while using --stack-auto
8450         * device/include/malloc.h: removed warning while using --stack-auto
8451         * device/include/string.h: removed warning while using --stack-auto
8452
8453 2003-02-23  Borut Razem <borut.razem AT siol.net>
8454
8455         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
8456         because NDEBUG is defined (see man assert)
8457         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
8458
8459 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8460
8461         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
8462         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
8463
8464 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8465
8466         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
8467         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
8468
8469 2003-02-18    <johan AT balder>
8470
8471         * as/mcs51/asmain.c (asmbl): module can start with a digit
8472         * as/z80/asmain.c (asmbl): module can start with a digit
8473
8474 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
8475
8476         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
8477         * src/asm.c: fix pipe() for Mingw32
8478
8479 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
8480
8481         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
8482         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
8483         make -V work again; --c1mode reads now from stdin
8484         * doc/sdccman.lyx: added --c1mode
8485         * support/Util/SDCCerr.c: new messages for c1 mode
8486         * support/Util/SDCCerr.h: new messages for c1 mode
8487         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
8488
8489 2003-02-15    <johan AT balder>
8490
8491         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
8492
8493 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
8494
8495         * doc/sdccman.lyx: Environment variables, -o and other minor things
8496
8497 2003-02-14    <johan AT balder>
8498
8499         * src/xa51/main.c: before anyone really tries to use it :)
8500
8501         * Install doc's in share/sdcc/doc
8502         * removed some obsolete files
8503         * Do a proper make distclean and uninstall
8504         M Makefile.common.in
8505         R sdccbuild.sh
8506         M as/Makefile
8507         M device/include/Makefile.in
8508         M device/lib/Makefile.in
8509         M doc/sdccman.lyx
8510         M link/Makefile
8511         M sim/ucsim/doc/Makefile.in
8512         M src/clean.mk
8513         R src/avr/peeph.rul
8514         R src/xa51/peeph.rul
8515         M support/cpp2/Makefile.in
8516         M support/makebin/Makefile
8517
8518
8519 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
8520
8521         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
8522
8523 2003-02-10  Borut Razem <borut.razem AT siol.net>
8524
8525         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
8526         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
8527         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
8528         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
8529         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
8530         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
8531         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
8532         src/z80/Makefile.bcc: Borland Makefile cleanup
8533         * as/z80/Makefile.bcc: Added Borland Makefile
8534         * support/cpp2/borland.h: Removed
8535
8536 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
8537
8538         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
8539         * src/SDCC.lex: new pragma NOIV
8540         * src/SDCCglobl.h: new pragma NOIV
8541         * src/SDCCmem.c: new pragma NOIV
8542
8543 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8544
8545         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
8546
8547 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8548
8549         * src/SDCCmain.c: signal handling is switched off by --debug
8550         * doc/Makefile: small fix for install; use clean.mk again
8551         * doc/clean.mk: clean *.pdf and *.html too
8552
8553 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
8554
8555         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
8556         * device/lib/printfl.c: fix a ds390 bug by making it portable
8557         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
8558         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
8559         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
8560         * debugger/mcs51/cmd.c: converted multi-line string literals
8561         * sim/ucsim/globals.cc: converted multi-line string literals
8562         * src/SDCCmain.c: introduced signal handler to remove temp files
8563         * doc/Makefile: small tweaks, implement clean
8564         * doc: removed generated files
8565
8566 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8567
8568         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
8569         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
8570         Address Record is not correctly generated for DS390."
8571
8572 2003-02-02  Borut Razem <borut.razem AT siol.net>
8573
8574         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
8575         * as/mcs51/asm.h: fixed compilation with Borland C
8576         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
8577         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
8578         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
8579         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
8580         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
8581         src/z80/Makefile.bcc: delete $(LIB) only if exist
8582         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
8583
8584 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
8585
8586         * device/include/malloc.h: introduced NULL
8587         * device/include/string.h: introduced NULL
8588         * device/include/stdlib.h: introduced NULL
8589         * device/lib/_memcpy.c: removed NULL
8590         * device/lib/_strcat.c: removed NULL
8591         * device/lib/_strchr.c: removed NULL
8592         * device/lib/_strcmp.c: removed NULL
8593         * device/lib/_strcpy.c: removed NULL
8594         * device/lib/_strcspn.c: removed NULL
8595         * device/lib/_strlen.c: removed NULL
8596         * device/lib/_strncat.c: removed NULL
8597         * device/lib/_strncmp.c: removed NULL
8598         * device/lib/_strncpy.c: removed NULL
8599         * device/lib/_strpbrk.c: removed NULL
8600         * device/lib/_strrchr.c: removed NULL
8601         * device/lib/_strspn.c: removed NULL
8602         * device/lib/_strstr.c: removed NULL
8603         * device/lib/_strtok.c: removed NULL
8604         * device/lib/malloc.c: removed NULL, include own header
8605
8606 2003-02-02    <johan AT balder>
8607
8608         * 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
8609         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
8610         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
8611         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
8612         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
8613         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
8614
8615 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8616
8617         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
8618         area 'DATA'"
8619
8620 2003-02-01    <johan AT balder>
8621
8622         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
8623
8624 2003-01-31    <johan AT CP255758-A>
8625
8626         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
8627
8628 2003-01-30    <johan AT balder>
8629
8630         * src/SDCCBBlock.c: automatic bug detection
8631         * src/SDCCicode.c: automatic bug detection
8632
8633 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8634
8635         * src/SDCCglobl.h:   now --xram-size 0 works
8636         * src/SDCCmain.c:    now --xram-size 0 works
8637
8638 2003-01-29    <johan AT balder>
8639
8640         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
8641
8642 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8643
8644         * as/mcs51/aslink.h: Added options --xram-size and --code-size
8645         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
8646         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
8647         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
8648         * src/SDCCglobl.h:   Added options --xram-size and --code-size
8649         * src/SDCCmain.c:    Added options --xram-size and --code-size
8650
8651 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
8652
8653         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
8654         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
8655
8656 2003-01-27    <johan AT balder>
8657
8658         * src/SDCC.y: fixed bug #613764
8659
8660 2003-01-26    <johan AT balder>
8661
8662         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
8663         * src/SDCCsymt.h: fixed bug #673374
8664         * src/SDCCglue.c: fixed bug #661910
8665         * src/SDCCast.c: fixed bug #458099 and 673374
8666
8667 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
8668
8669         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
8670         * as/mcs51/strcmpi.h: added
8671         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
8672         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
8673         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
8674         * as/mcs51/assym.c: strcmpi -> as_strcmpi
8675         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
8676         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
8677         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
8678         * as/mcs51/Makefile.aslink: new module strcmpi
8679         * as/mcs51/Makefile.asx8051: new module strcmpi
8680         * as/mcs51/Makefil.bcc: new module strcmpi
8681         * as/mcs51/Makefile.in: new module strcmpi
8682         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
8683
8684 2003-01-26    <johan AT balder>
8685
8686         * src/SDCCglue.c: reverted back to 1.124
8687         * src/SDCCast.c: reverted back to 1.156
8688         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
8689
8690 2003-01-25    <johan AT balder>
8691
8692         * src/SDCCglue.c: A better fix for bug #661910
8693         * src/SDCCast.c: A better fix for bug #661910
8694         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
8695
8696 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8697
8698         * src/Makefile.in: remove spawn.o
8699         * src/SDCCmain.c: remove spawn.h
8700         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
8701         * src/spawn.c: removed
8702         * src/spawn.h: removed
8703         * support/regression/ports/ds390/spec.mk: link with -r
8704
8705 2003-01-24    <johan AT CP255758-A>
8706
8707         * src/ds390/gen.c (aopOp): fixed bug #667458
8708         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
8709         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
8710         (createIvalCharPtr): an ival doesn't always have a storage class anymore
8711
8712 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8713
8714         * src/mcs51/peeph.def: better assembler identation by Frieder
8715         * src/mcs51/gen.c: better assembler identation by Frieder
8716
8717 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
8718
8719         * as/z80/string.h: removed for gcc 3.2
8720         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
8721         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
8722
8723 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8724
8725         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
8726         * src/SDCCpeeph.c (replaceRule): fix bug #663503
8727         * support/regression/Makefile: separate temp files for ports
8728         * support/regression/generate-cases.py: separate temp files for ports
8729         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8730         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8731
8732 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8733
8734         * moved tinitalk to device/examples/ds390
8735
8736 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
8737
8738         * as/mcs51/lkmem.c: rflag is for DS390
8739         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
8740         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
8741                          (linkEdit): move mem- and map-files the same way as ihx-files
8742         * src/z80/main.c (_setDefaultOptions): removed --generic
8743         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
8744         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
8745         * src/pic/glue.c (picglue): --c1mode works again
8746         * src/pic16/glue.c (pic16glue): --c1mode works again
8747         * src/asm.c (printCLine): fix #660034
8748
8749 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
8750
8751         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
8752         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
8753         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
8754         * as/mcs51/lkmem (summary): better fix for sp problem
8755         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
8756         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
8757         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
8758                                               remove --stack-after-data
8759
8760 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
8761
8762         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
8763         * src/SDCCutil.c (join): ugly bug: missing '\0'
8764         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
8765
8766 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8767
8768         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
8769         * src/port.h: typo
8770         * src/pic/main.c (_asmCmd): gpasm supports -o
8771         * src/z80/main.c: more general macros
8772         * device/lib/Makefile.in: remove intermediate files
8773
8774 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8775
8776         * .version: Bumped version number to 2.3.3
8777         * src/SDCCBBlock.c: new option -o
8778         * src/SDCCglobl.h: new option -o
8779         * src/SDCCglue.c: new option -o
8780         * src/SDCCmain.c: new option -o
8781         * src/asm.c: new option -o
8782         * src/ds390/main.c: new option -o
8783         * src/pic/glue.c: new option -o
8784         * src/pic/pcode.c: new option -o
8785         * src/pic/ralloc.c: new option -o
8786         * src/pic16/glue.c: new option -o
8787         * src/pic16/pcode.c: new option -o
8788         * src/pic16/ralloc.c: new option -o
8789         * src/z80/main.c: new option -o
8790         * device/lib/Makefile.in: use -o
8791         * support/regression/ports/ds390/spec.mk: use -o
8792         * support/regression/ports/gbz80/spec.mk: use -o
8793         * support/regression/ports/mcs51/spec.mk: use -o
8794         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
8795         * support/regression/ports/z80/spec.mk: use -o
8796         * support/regression/ports/ucz80/spec.mk: use -o
8797         * support/regression/ports/xa51/spec.mk: use -o
8798         * support/regression/fwk/lib/timeout.c: fix usage string
8799
8800 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
8801         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
8802
8803 2003-01-07    <johan AT balder>
8804
8805         * src/SDCCast.c (decorateType): fixed bug #600035
8806
8807 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
8808         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
8809         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
8810         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
8811         * src/pic/pcode.c: outcommented unused variable to remove warnings
8812         * src/pic/ralloc.c: outcommented unused variable to remove warnings
8813
8814 2003-01-06    <karl AT turbobit.com>
8815         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
8816    regression tests.
8817
8818 2003-01-06    <johan AT balder>
8819
8820         * src/SDCCicode.c: fixed array add
8821
8822 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
8823         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
8824         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
8825
8826 2003-01-04    <johan AT balder>
8827
8828         * src/SDCCval.c (getNelements): fixed the initialized array of structures
8829
8830 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8831         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
8832
8833 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8834         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
8835         * support/regression/tests/bug-524697.c: fit mem usage into 8032
8836
8837 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8838         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
8839
8840 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
8841         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
8842
8843 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
8844         * src/mcs51/main.c: removed {bindir}{sep} from aslink
8845
8846 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8847
8848     * in \sdcc\as\mcs51\ changed these files in order to create an
8849     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
8850     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
8851     following files to include the previous two files: aslink.dsp,
8852     Makefile.aslink, Makefile.bcc, and Makefile.in.
8853
8854     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
8855     .adb instead of .cdb
8856
8857 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8858
8859         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
8860         value from option --iram-size.
8861
8862 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8863
8864         * \sdcc\as\mcs51\lklist.c: added boundary check before using
8865         dram[] array.
8866
8867 2002-09-18    <wiml AT hhhh.org>
8868
8869         * SDCClrange.h: exposed setFromRange() and setToRange()
8870         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
8871           packRegsForAccUse() (bug 542397)
8872         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
8873           multiple times and emitting the fetch operations more than once
8874           added aopGetUsesAcc() function to allow binary operators to
8875           fetch their operands in the correct order; made genMinus() emit
8876           compact code for X = LITERAL - Y
8877
8878 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8879         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
8880         sprintf() in line 1267.
8881
8882 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8883         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
8884         like ports.
8885
8886 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8887         Changes to aslink (All the changes are marked with 'JCF'):
8888
8889         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
8890         summary().
8891
8892         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
8893         area BSEG.  Also moves, if possible, the DATA area down into the internal
8894         ram so more space is available.
8895
8896         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
8897         sflag.
8898
8899         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
8900         not bytes.  Function summary() which creates a memory usage summary
8901         file with extension .mem.  Reports of overlaping stack and small stack
8902         size.  If the space for the stack is less than 16 bytes aslink trows a
8903         warning.
8904
8905         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
8906         the 8051.  Option 'y' for memory summary output file.
8907
8908         Changes to sdcc (All the changes are marked with 'JCF'):
8909
8910         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
8911
8912         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
8913         overlaying area for it (uses RegBankUsed[4]).
8914
8915         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
8916         bank zero as used by default.  By default aslink locates the stack
8917         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
8918         the creation of the .mem file.  Delegates the allocation of data area
8919         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
8920         the begining of the stack area to aslink.
8921
8922         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
8923         glue() in SDCCglue.c creates an area for it.
8924
8925 2002-09-03  Borut Razem <borut.razem AT siol.net>
8926         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
8927         sdcc/src/pic/glue.c:
8928         introduced atexit() handler for teporay files removal in case of
8929         errors, assertions, ...
8930
8931 2002-08-29  Borut Razem <borut.razem AT siol.net>
8932         * sdcc/support/cpp2/auto-host_vc_in.h:
8933         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
8934         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
8935         Maybe there is a similar problem with BORLANDC? It should be checked!
8936
8937         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
8938         corrected improper use of assert: the assignment to clr variable was done inside the assert.
8939         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
8940         was not executed, and the compiler (cl) launched a warning:
8941         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
8942
8943 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8944         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
8945
8946 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
8947         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
8948
8949         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8950           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
8951           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
8952           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8953           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
8954           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
8955           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
8956         - added Release configuration in VS projects
8957         - review of compiler an linker options
8958         - VC .exe files are generated in bin_vc directory, not to interfere
8959           with binaries generated from other projects (cygwin, mingw, bcc ...)
8960
8961         * sdcc/src/yacc.dsp: added
8962
8963         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
8964         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
8965         and insert the version number definitions from .version
8966
8967         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
8968
8969         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
8970         added - genarate auto-host.h using auto-host_vc_in.h as template
8971
8972         * sdcc/sdcc_vc.h,
8973         removed from CVS, generated automatically
8974
8975 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
8976         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
8977
8978 2002-08-11  Borut Razem <borut.razem AT siol.net>
8979         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
8980
8981 2002-08-10  Borut Razem <borut.razem AT siol.net>
8982         * src/SDCCmain.c (main):
8983         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
8984         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
8985         The consequence was that some temporary files were not removed.
8986
8987         * src/SDCCglue.c:
8988         unification of code in functions tempfilename() and tempfile():
8989         function tempnam() is defined in Visual Studio 6.0 and .NET
8990
8991         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
8992
8993         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8994           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
8995         - removed compiler command line option /WX: Treats all warnings as errors
8996         - update a list of source files, included into the project
8997
8998         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8999           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
9000         changed project type to Generic Project so that can be correcly converted to VS.NET project
9001
9002         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
9003
9004         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
9005
9006         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
9007
9008         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
9009         added return 0 statements after assert() to make compiler happy
9010
9011         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
9012         added newline in the def file to keep MSC compiler satisfied
9013
9014         * sdcc/src/z80/gen.c:
9015         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
9016           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
9017         - solved MSC error in function aopDump()
9018
9019         * sdcc_vc.h: define PREFIX as "\\sdcc"
9020
9021 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
9022         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
9023
9024 2002-06-22  Scott Dattalo <scott AT dattalo.com>
9025         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
9026         - Rewrote the register banking algorithm.
9027         - Added pCode live-range analysis to registers (for now, only non-used and
9028         singly-used registers optimized away)
9029
9030         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
9031
9032         * 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.
9033
9034 2002-05-10  Scott Dattalo <scott AT dattalo.com>
9035         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
9036
9037 2002-04-22  Michael Hope  <michaelh AT vroom>
9038
9039         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
9040
9041         * configure.in (DD_COPT): Added include support required for gbdk.
9042
9043         * .version: Bumped version number just to increase it.
9044
9045         * src/SDCCmain.c: Added -nostdinc to the default options.
9046
9047 2002-04-15  Michael Hope  <michaelh AT vroom>
9048
9049         * device/lib/z80/printf.c (sprintf): Added.
9050
9051         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
9052
9053         * src/z80/peeph.def: Added transpose redundent load rule.
9054
9055         * src/z80/main.c: Added force callee saves for jaune.
9056
9057         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
9058
9059         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
9060
9061 2002-03-28  Johan Knol  <johan AT balder>
9062
9063         * src/SDCCval.c: fixed bug #532436
9064
9065 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9066         * /src/port.h:
9067         Added "char *Processor" field to the port structure.
9068
9069         * /src/SDCCmain.c:
9070         Added -p option. Allows port dependent processor to be specified.
9071
9072         * all ports:
9073         Initialized the new field char *Processor field to NULL in all ports
9074
9075         * /src/pic/*:
9076         Compiler generated registers for interrupt context saving
9077         were not getting allocated.
9078
9079 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
9080
9081         * /src/SDCCast.c:
9082         Fixed left shift. Will promote the left side of a left shift
9083         if a) left shifting more than size of operand or b) when assigned
9084         to something size > size of left side
9085
9086 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9087         * src/pic/*
9088         tons of changes. Register allocation has been
9089         rewritten. Added customization for the various PICs. Flow
9090         analysis is restructured. ...
9091
9092         * src/pic/device.h:
9093         Added
9094
9095         * src/pic/device.c:
9096         Added. device.c is a PIC port hack to accomodate variations
9097         in PIC devices.
9098
9099 2002-03-13  Michael Hope  <michaelh AT vroom>
9100
9101         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
9102
9103 2002-03-04  johanknol  <johanknol AT manik>
9104
9105         * /src/SDCCval.c: fixed
9106
9107         const unsigned char arr[][2] = { { 0, 1 } };
9108         t18.c:1: error: Initializer element is not constant
9109
9110 2002-03-04  bela  <bela AT manik>
9111
9112         * /device/include/mcs51reg.h:
9113         ds89c420 register definition update
9114
9115 2002-03-03    <johan AT FRIJA>
9116
9117         * support/Util/SDCCerr.c: did something, but don't no why anymore
9118
9119         * support/regression/tests/bug-524691.c: made it a little less shy
9120
9121         * src/SDCCast.c (decorateType): fixed bug #524697
9122
9123         * src/SDCCast.c: made some lineno improvements
9124
9125         * src/SDCCval.c (getNelements): changed warning to error
9126
9127         * src/SDCCglue.c (printIvalArray): changed warning to error
9128
9129         * src/SDCCicode.c: fixed a warning for mingw
9130
9131         * src/SDCCast.c (decorateType): fixed the << promotion for ops
9132
9133         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
9134
9135 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
9136
9137         * src/ds390/peeph.def:
9138         Added some more peephole rules
9139
9140         * src/ds390/gen.c: Various fixes & enhancements
9141
9142         * src/SDCClrange.c, src/SDCClrange.h:
9143         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
9144
9145         * src/ds390/ralloc.c:
9146         various fixes & enhancements (ds390) specific
9147
9148         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
9149         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
9150         from rallocs.
9151
9152         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
9153
9154 2002-03-02    <johan AT FRIJA>
9155
9156         * src/SDCCast.c (decorateType): fixed bug #524708
9157
9158         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
9159
9160         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
9161
9162 2002-03-01  Michael Hope  <michaelh AT vroom>
9163
9164         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
9165
9166         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
9167
9168 2002-03-01    <johan AT FRIJA>
9169
9170         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
9171
9172         * src/SDCCast.c (decorateType): fixed bug #524209
9173
9174         * src/SDCCval.c (valNot): fixed bug #524195
9175
9176 2002-02-26    <johan AT balder>
9177
9178         * src/xa51/gen.c: fixed a warning
9179
9180         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
9181
9182         * src/SDCCast.c (decorateType): fixed bug #522534
9183
9184 2002-02-23    <johan AT balder>
9185
9186         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
9187
9188 2002-02-22    <johan AT balder>
9189
9190         * src/SDCCast.c: fixed bug #514865
9191
9192         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
9193
9194 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
9195
9196         * sdcc/src/SDCCloop.c:
9197         Previous fix was not good. basic blocks that have "break" or "return" are
9198         not really partof a loop , but live ranges used in these blocks should
9199         be live thru the entire loop, so set partOfLoop but don't add them to
9200         loop region
9201
9202 2002-02-21    <johan AT FRIJA>
9203
9204         * src/SDCCcse.c: fixed bug #514308
9205
9206 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
9207
9208         * src/SDCCloop.c:
9209         Fixed BUG #519583. If a conditional block ended in a return/break
9210         statement inside a loop, it was not being considered part of the loop.
9211
9212         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
9213
9214 2002-02-10  Karl Bongers <karl AT turbobit.com>
9215
9216         * debugger/*:
9217         Fixed up SDCDB debugger somewhat.  Updated debugger/README
9218         with lots of comments and notes.
9219
9220         * device/examples/test2.c:
9221         Fix bug, "red" variable not being initialized(compiler complained).
9222
9223         * device/examples/Makefile, examples/test3.c:
9224         Add Makefile in device/examples folder, compiles test3.c
9225         for use as a multiple module SDCDB test case.
9226
9227         * sim/ucsim/cmd.src/cmdset.cc:
9228         Took out debug printfs in ucsim "next" command.
9229
9230         * sim/ucsim/xa.src:
9231         Karl and Johan start ucsim XA support.  Most dissassembly working,
9232         about 75% emulation done(plenty of work remaining).
9233
9234         * sim/ucsim/z80.src:
9235         Add Z80 support to ucsim, add test-ucz80 regression test,
9236         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
9237         Notice z80 compiler fails on examples/test3.c/crc code.
9238
9239 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
9240
9241         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
9242         Added support for --parms-in-bank1
9243
9244         * src/ds390/peeph.def:
9245         added a few more peephole optimzations
9246
9247         * src/ds390/main.c:
9248         1) added __builtin_inp & __builtin_outp used to read in data of given length
9249            from a memory mapped port
9250         2) added __builtin_memcmp
9251         3) added __builtin_swapw swap bytes of a short
9252
9253         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
9254         1) handle multiple send & receives from register bank1
9255         2) ralloc can now allocate DPTR1 to some liveRanges
9256
9257         * src/SDCCsymt.c, src/SDCCsymt.h:
9258         changes to handle multiple sends & receives
9259
9260         * src/SDCCptropt.h:
9261         added some pointer arithmetic optimization
9262
9263         * src/SDCCptropt.c:
9264         added some pointer arithmetic optimizations but not stable yet so not
9265         called from anywhere (will get this working shortly)
9266
9267         * src/SDCCopt.c: fixed for multiple sends & receives
9268
9269         * src/SDCCmain.c:
9270         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
9271         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
9272            set preprocessor defines (depending on options)
9273
9274         * src/SDCCicode.c, src/SDCCicode.h:
9275         changes made to handle multiple sends & receives
9276
9277         * src/SDCCglobl.h:
9278         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
9279
9280         * src/SDCCcse.c, src/SDCCcse.h:
9281         added function findbackward def (to be used in upcoming optimization)
9282
9283         * src/SDCCcflow.c, src/SDCCcflow.h:
9284         added function returnAtEnd - to determine if a basic block terminates with
9285         a RETURN iCode
9286
9287         * src/SDCCast.c, src/SDCCast.h:
9288         added option parms-in-bank1
9289
9290         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
9291         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
9292         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
9293         adjusted for --parms-in-bank1 option
9294
9295         * device/include/string.h:
9296         donot redefine "reentrant" keyword
9297
9298         * device/include/ds80c390.h: Added some more SFRs
9299
9300 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
9301
9302         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
9303
9304 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
9305
9306         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
9307
9308 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
9309
9310         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
9311
9312 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
9313
9314         * Added --xram-movc option
9315
9316 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
9317
9318         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
9319
9320 2002-01-11  Johan Knol
9321
9322         * Added math lib of Jesus Calvino-Fraga
9323
9324 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
9325
9326         * src/SDCCmain.c (processFile): fix processing of ../../src.c
9327         * support/regression/Makefile: new target test-mcs51-stack-auto
9328         * support/regression/ports/mcs51-stack-auto/spec.mk: added
9329
9330 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9331
9332         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
9333
9334 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9335
9336         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
9337
9338 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
9339
9340         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
9341
9342         * src/SDCCglue.h: add definition for printIvalChar()
9343
9344 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9345
9346         * src/SDCCast.c: fix #498138 by Johan
9347
9348         * src/SDCCglue.c: fix #498138 by Johan
9349
9350 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9351
9352         * support/regression/Makefile: fix clean
9353
9354         * support/regression/ports/ds390/support.c: fix transmission of last character
9355
9356 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
9357
9358         * /sdcc/src/ds390/gen.c:
9359         a) improved computing address of stack variable
9360         b) took out some #if 0 code
9361         c) improved parmBytes adjustment
9362         d) improved genPlusIncr & genMinusIncr
9363         e) genCmp could generate bad code (when left assigned to DPTR)
9364         f) Fixed bug in hasInc
9365
9366         * /sdcc/src/ds390/ralloc.c:
9367         a) packRegsForSupport could mess up live information (Fixed)
9368         b) packRegsDPTRuse could be incorrect for left & right shift
9369
9370         * /sdcc/src/mcs51/ralloc.c:
9371         packRegsForSupport could mess up the live information (Fixed)
9372
9373         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
9374
9375         * /sdcc/src/SDCCast.c:
9376         can reverse a loop even if function call is present as long
9377         as the loop control variable is local & is not passed as parameter
9378
9379 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9380
9381         * /sdcc/ChangeLog: *** empty log message ***
9382
9383         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
9384         More builtin function additions for TININative
9385
9386         * /sdcc/src/ds390/ralloc.c:
9387         Had broken the regression testsuite
9388
9389         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
9390
9391         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
9392         Added funcattr hasStackParms will be set for reentrant functions when there
9393         are paramteres on the stack, this helps in minimizing frame pointer generation
9394         typeFromStr can handle function pointers now
9395
9396         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
9397         *** empty log message ***
9398
9399 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9400
9401         * /src/ds390/gen.c, /src/ds390/main.c:
9402         More builtin function additions for TININative
9403
9404         * /src/ds390/ralloc.c:
9405         Had broken the regression testsuite
9406
9407         * /src/SDCCast.c: Fixed a bug in dumptree
9408
9409         * /src/SDCCsymt.c, /src/SDCCsymt.h:
9410         Added funcattr hasStackParms will be set for reentrant functions when there
9411         are paramteres on the stack, this helps in minimizing frame pointer generation
9412         typeFromStr can handle function pointers now
9413
9414         * /doc/builtins.txt, /doc/TININative.txt:
9415         *** empty log message ***
9416
9417
9418 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9419
9420         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
9421         ALPHA version for -mTININative
9422
9423         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
9424         updated to reflect changes in the port structure
9425
9426         * /src/port.h:
9427         added function do_assemble (similar to do_link) if non-null this function
9428         will be called to do assembly (-mTININative) requires a multi command
9429         assembly
9430         added function genAssemblerEnd will be called to generate assembler Epilogue
9431
9432         * /src/SDCCsymt.c:
9433         added _JavaNative to debug info printing
9434
9435         * /src/SDCCmain.c: added option --tini-libid
9436         added port->do_assemble function (-mTININative) has a multi command assemble
9437
9438         * /src/SDCCglue.c: Disabled "constExpr" check
9439         added port->genAssemblerEnd function
9440
9441         * /src/SDCCglobl.h: Added option --tini-libid value
9442
9443         * /src/SDCCast.h:
9444         tookout optimizeCompare from the header (has no external references)
9445
9446         * /src/SDCCast.c: made one more function "static"
9447
9448 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
9449
9450         * src/z80/mappings.i: Added z80asm support.
9451
9452         * src/z80/main.c: Added z80asm support on --asm=z80asm
9453
9454         * src/z80/gen.c: Fixed asm portability issues.
9455
9456         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
9457
9458         * src/SDCCglue.c (printExterns): Added global/extern split.
9459
9460 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
9461
9462         * support/regression/Makefile: added test for mcs51 model large
9463
9464         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
9465
9466         * support/regression/ports/gbz80/spec.mk: added -mgbz80
9467
9468 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
9469
9470         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
9471
9472 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
9473
9474         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
9475
9476         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
9477
9478 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
9479
9480         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
9481
9482         * support/regression/tests/simplefloat.c: Port to mcs51.
9483
9484 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
9485         * support/regression/tests/bug-485362.c: Added.
9486
9487         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
9488
9489         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
9490
9491         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
9492
9493         * src/z80/gen.c (aopDump): Added a dump function.
9494
9495 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
9496         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
9497
9498         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
9499
9500         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
9501
9502         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
9503
9504         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
9505
9506         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
9507
9508         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
9509
9510         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
9511
9512         * support/regression/ports/ds390/support.c: Use tinibios.
9513
9514         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
9515
9516 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
9517
9518         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
9519         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
9520
9521         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
9522
9523         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
9524
9525 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
9526
9527         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
9528
9529         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
9530         (packRegsForIYUse): Created and optimised.
9531
9532 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9533
9534         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
9535 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
9536
9537         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
9538
9539         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
9540
9541         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
9542
9543 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9544
9545         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
9546
9547         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
9548
9549 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9550
9551         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
9552
9553         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
9554
9555         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
9556
9557 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9558
9559         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
9560         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
9561         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
9562
9563         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
9564
9565         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
9566         (genNotFloat): Added.
9567         (genUminusFloat): Added.
9568
9569         * device/lib/z80/Makefile: Added floating pt stubs.
9570
9571         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
9572
9573         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
9574
9575         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
9576
9577 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9578
9579         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
9580
9581         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
9582
9583         * sdcc/support/regression/Makefile: Add port ds390.
9584
9585         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
9586
9587         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
9588
9589         * sdcc/support/regression/ports/ds390/spec.mk: Added.
9590
9591         * sdcc/support/regression/ports/ds390/support.c: Added.
9592
9593         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
9594
9595         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
9596
9597         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
9598
9599 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9600
9601         * device/include/malloc.h: Added z80 and gbz80 support.
9602
9603         * device/lib/gbz80/heap.s: Added.
9604
9605         * device/lib/z80/heap.s: Added.
9606
9607         * device/lib/malloc.c: Added z80 and gbz80 support.
9608
9609         * support/regression/tests/malloc.c (testMalloc): Added.
9610
9611         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
9612
9613         * support/regression/tests/bug-478094.c: Added.
9614
9615         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
9616
9617 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
9618
9619         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
9620
9621         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
9622
9623         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
9624
9625         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
9626
9627         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
9628
9629 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9630
9631         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
9632
9633 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
9634
9635         * support/regression/tests/bug-477927.c: Added.
9636
9637         * src/z80/peeph.def: Added minor rules.
9638
9639         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
9640
9641         * src/z80/peeph.def: Added jump optimisation modification.
9642
9643 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
9644
9645         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
9646
9647 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
9648
9649         * support/regression/tests/funptrs.c: Added.
9650
9651 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
9652
9653         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
9654
9655 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
9656
9657         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
9658
9659         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
9660
9661         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
9662         (movLeft2ResultLong): Created.
9663
9664         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
9665         (joinPushes): Added.  Joins two char pushes into a word push.
9666
9667 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
9668
9669         * support/cpp2/Makefile.in (install): Added creation of dest dir.
9670
9671         * support/makebin/Makefile (install): Added creation of dest dir.
9672
9673 2001-10-24 Karl Bongers <karl AT turbobit.com>
9674
9675         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
9676
9677 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
9678
9679         * src/z80/ralloc.c: Turned off faulty pack for one use.
9680
9681         * src/z80/peeph-gbz80.def: Removed redundent restart options.
9682
9683         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
9684
9685 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
9686
9687         * support/regression/Makefile: Improved clean
9688
9689         * support/regression/ports/gbz80/spec.mk: Added clean
9690
9691         * support/regression/ports/host/spec.mk: Added clean
9692
9693         * support/regression/ports/z80/spec.mk: Added clean
9694
9695         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
9696
9697         * support/regression/ports/mcs51/timeout.c: little improvements
9698
9699 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
9700
9701         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
9702
9703         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
9704
9705         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
9706
9707 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
9708
9709         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
9710
9711         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
9712
9713 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
9714         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
9715
9716         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
9717
9718         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
9719
9720         * src/mcs51/main.c (_linkCmd): Added bin path to command.
9721
9722         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
9723
9724         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
9725
9726         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
9727
9728         * support/regression/tests/longor.c: Added.
9729
9730 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
9731
9732         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
9733
9734         * as/mcs51/aslink.h: define PATH_MAX
9735
9736         * as/mcs51/asm.h: define PATH_MAX
9737
9738         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
9739
9740         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
9741
9742         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
9743
9744         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
9745
9746         * src/SDCCglobl.h: define PATH_MAX
9747
9748         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
9749
9750         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
9751
9752 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
9753
9754         * src/z80/gen.c (gencjneshort): Fixed
9755
9756         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
9757
9758 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
9759
9760         * support/regression/tests/bug-469671.c: Added.
9761
9762         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
9763
9764 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
9765
9766         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
9767
9768         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
9769
9770 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
9771
9772         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
9773
9774         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
9775
9776         * src/device/lib/_mullong.c : removed hint: nooverlay bug
9777
9778         * src/device/lib/_divuint.c : removed hint: nooverlay bug
9779
9780         * src/device/lib/_divulong.c: removed hint: nooverlay bug
9781
9782         * src/device/lib/_moduint.c : removed hint: nooverlay bug
9783
9784         * src/device/lib/_modulong.c: removed hint: nooverlay bug
9785
9786 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
9787
9788         * 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.
9789
9790         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
9791
9792         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
9793
9794 2001-10-07    <johan AT FRIJA>
9795
9796         * device/lib/gets.c (gets): fixed the return value.
9797
9798 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
9799         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
9800
9801         * 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.
9802
9803         * 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.
9804
9805         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
9806
9807         * src/pic/gen.c: Removed Safe_strdup.
9808
9809         * configure.in: Added option to enable libgc support.
9810
9811         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
9812         (bitVectUnion): Optimised.
9813         (bitVectIntersect): Optimised.
9814         (bitVectBitsInCommon): Optimised.
9815         (bitVectCplAnd): Optimised.
9816
9817         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
9818
9819 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9820
9821         * src/SDCCmain.c: distinguish between assembler debug and plain options
9822
9823         * src/avr/main.c:   remove standard assembler options
9824
9825         * src/ds390/main.c: remove standard assembler options
9826
9827         * src/mcs51/main.c: remove standard assembler options
9828
9829         * src/port.h: removed "PENDING" comment
9830
9831 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9832
9833         * src/device/lib/_mulint.c  : new, with assember functions
9834
9835         * src/device/lib/_mullong.c : new, with assember functions
9836
9837         * src/device/lib/_divuint.c : with assember functions
9838
9839         * src/device/lib/_divsint.c : with assember functions
9840
9841         * src/device/lib/_divulong.c: with assember functions
9842
9843         * src/device/lib/_divslong.c: with assember functions
9844
9845         * src/device/lib/_moduint.c : with assember functions
9846
9847         * src/device/lib/_modsint.c : with assember functions
9848
9849         * src/device/lib/_modulong.c: with assember functions
9850
9851         * src/device/lib/_modslong.c: with assember functions
9852
9853         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
9854
9855         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
9856
9857         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
9858                                       replaced _mululong.c and _mulslong.c by _mullong.c
9859
9860 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9861
9862         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
9863
9864 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9865
9866         * src/SDCCglue.c: test, if win32api is available for MINGW
9867
9868 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9869
9870         * src/SDCCsymt.c: no more _modifier in printTypeChain()
9871         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
9872         * support/regression/ports/gbz80/spec.mk: removed GENERIC
9873         * support/regression/ports/host/spec.mk: removed GENERIC
9874         * support/regression/ports/mcs51/spec.mk: removed GENERIC
9875         * support/regression/ports/z80/spec.mk: removed GENERIC
9876
9877 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
9878
9879         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
9880
9881         * support/regression/tests/bug-467035.c: Created.
9882
9883 2001-10-01    <johan AT FRIJA>
9884
9885         * src/SDCC.y: fixed bug #466586 part 1
9886
9887 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
9888
9889         * SDCCicode.c: z80 has no generic pointers
9890         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
9891
9892 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
9893
9894         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
9895
9896 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
9897
9898         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
9899
9900         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
9901
9902 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
9903
9904         * configure.in: Fixed up so that ucsim is only configured once.
9905
9906         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
9907
9908         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
9909         (getPathDifference): As above.
9910
9911         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
9912
9913         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
9914
9915 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
9916         * .version: Updated to 2.3.1
9917
9918         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
9919         Added copyright header.
9920
9921         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
9922         (assemble): Added support for macro based assembler commands.
9923         (linkEdit): Added support for macro based linker commands.
9924         (preProcess): Changed the pre-processor to use macros.
9925         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
9926         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
9927
9928         * device/lib/z80/crt0.s: Added module name for debugging.
9929
9930 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
9931
9932         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9933
9934         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
9935
9936         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
9937
9938         * src/Makefile.in: Added SDCCmacro and SDCCutil
9939
9940 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
9941
9942         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9943
9944 2001-09-16    <johan AT FRIJA>
9945
9946         * 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.
9947
9948 2001-09-15    <johan AT FRIJA>
9949
9950         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
9951         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
9952
9953 2001-09-11    <johan AT FRIJA>
9954
9955         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
9956
9957 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
9958
9959         * support/regression/tests/bug-460444.c: Added test case.
9960
9961         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
9962         (genCast): Added justification for all of the asserts.
9963
9964 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
9965
9966         * support/regression/support.c: _xdata replaced by xdata
9967
9968         * support/regression/spec.mk: removed _generic
9969
9970 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
9971
9972         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
9973
9974         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
9975         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
9976
9977         * src/z80/peeph.def: Added a rule to optimise shift then compare.
9978
9979         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
9980
9981         * support/regression/tests/bug-460010.c: Added test case.
9982
9983         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
9984
9985 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
9986
9987         * support/regression/Makefile: inter-port-clean adjusted for mcs51
9988
9989         * support/regression/testfwk.c: removed workaround for bug #436344
9990
9991         * support/regression/tests/bp.c: use less memory with mcs51
9992
9993         * support/regression/tests/bug-441448.c: use less memory
9994
9995         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
9996
9997         * support/regression/collate-results.py: typo
9998
9999 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
10000
10001         * support/regression/tests/fetchoverlap.c: Added new test case.
10002
10003         * support/regression/tests/bp.c: Added new test case.
10004
10005         * support/regression/tests/bug-448984.c: Added new test case.
10006
10007         * support/regression/tests/pow2shifts.c: Added new test case.
10008
10009         * src/z80/gen.c: Turned off the noise it normally generates for the release.
10010         (genlshTwo): Fixed right shift for count > 8.
10011
10012         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
10013
10014 2001-09-08    <johan AT FRIJA>
10015
10016         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
10017
10018 2001-09-07    <johan AT FRIJA>
10019
10020         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
10021
10022         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
10023
10024 2001-09-06    <johan AT FRIJA>
10025
10026         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
10027         * bernhard noted me at this: "() equals to (void)" (1.38)
10028
10029 2001-09-05    <johan AT FRIJA>
10030
10031         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
10032
10033 2001-09-04    <johan AT FRIJA>
10034
10035         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
10036
10037
10038 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
10039
10040         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
10041
10042 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
10043
10044         * link/z80/aslink.h: Fixed path for PATH_MAX
10045
10046 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
10047
10048         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
10049
10050         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
10051
10052         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
10053
10054         * 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.
10055
10056 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
10057
10058         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
10059         (genCmp): Fixed up genCmp for the GB with longs.
10060
10061         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
10062
10063         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
10064
10065         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
10066
10067         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
10068
10069 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
10070
10071         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
10072
10073 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
10074
10075         * 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.
10076
10077         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
10078
10079 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
10080
10081         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
10082
10083         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
10084
10085 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
10086
10087   * sim/ucsim/configure:    little improvement of Cygwin-detection
10088   * sim/ucsim/configure.in: little improvement of Cygwin-detection
10089   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
10090   * support/regression/tests/bug-221100.c: small changes for mcs51
10091   * support/regression/tests/bug-221168.c: small changes for mcs51
10092   * support/regression/tests/bug-227710.c: small changes for mcs51
10093   * support/regression/tests/staticinit.c: small changes for mcs51
10094   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
10095   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10096   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10097
10098 $Revision$