26c756650b1d72cb3c15d65c92d4362cc356c847
[fw/sdcc] / ChangeLog
1 2005-11-02 Borut Razem <borut.razem AT siol.net>
2
3         * sim/ucsim/cmd.src/cmdutil.cc: corrected typo - #include <winsock2.h>
4
5 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
6
7         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
8           (_asxxxx_mapping): added org directive for future enhancements
9
10 2005-11-01 Borut Razem <borut.razem AT siol.net>
11
12         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
13           enabled sockets on WIN32
14         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
15
16 2005-10-31 Borut Razem <borut.razem AT siol.net>
17
18         * support/regression/generate-cases.py: escape backslashes in {testcase}:
19           WIN32 backslash path delimiters should be escaped when used in C strings
20         * support/regression/tests/bitfields.c: exclude failing assertions for
21           __CYGWIN32__ and __MINGW32__ hosts
22
23 2005-10-30 Borut Razem <borut.razem AT siol.net>
24
25         * src/SDCCutil.c: corrected double comparison typo
26
27 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
28
29         * device/lib/medium/Makefile: added for new memory model medium
30         * device/include/asm/mcs51/features.h: updated for medium/pdata
31         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
32           added Multiply & Accumulate sbit's and MAC0_PAGE define
33         * device/include/mcs51/c8051f300.h: added sfr16 definitions
34         * device/include/mcs51/c8051f310.h: added sfr16 definitions
35         * device/lib/_mullong.c: update for medium model
36         * device/lib/incl.mk: added medium model
37         * doc/sdccman.lyx: documented medium model
38         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
39         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
40         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
41         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
42           (allocParms): set SCLS and OCLS to pdata for medium model
43         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
44           for pdata,
45           (powof2): return <0 if not power of 2
46         * src/avr/gen.c (genBitWise): use updated powof2
47         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
48           (shiftR2Left2Result): small optimization in setup, save acc when storing,
49           (shiftLLeftOrResult): use B if necessary
50         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
51         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
52         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
53         * support/regression/Makefile.in: added test-mcs51-medium
54         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
55
56 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
57
58         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
59         specifier unsigned
60         * device/lib/time.c (mktime): fixed bug 1334315
61
62 2005-10-28 Raphael Neider <rneider AT web.de>
63
64         * device/include/pic/p16f_common.inc: added common declarations
65         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
66
67 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
68
69         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
70           (aopPutUsesAcc): added to predict accumulator use,
71           (assignResultValue): save acc if necessary,
72           (genMinusDec): store result if indirectly addressed,
73           (genDivOneByte):  save acc if necessary,
74           (movLeft2Result): bugfix if left already in acc,
75           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
76             attention to accumulator use (esp. pdata),
77           (genReceive): receive pdata correctly
78         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
79         * src/SDCCicode.h: added isOperandInPagedSpace prototype
80
81 2005-10-27 Raphael Neider <rneider AT web.de>
82
83         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
84
85 2005-10-27 Raphael Neider <rneider AT web.de>
86
87         * .version: changed version to 2.5.4
88         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
89         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
90           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
91             arithmetics support routines
92         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
93         * device/lib/Makefile.in: also create installdir for pic
94
95         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
96           pic14 port as well
97         * src/pic/device.c (dump_sfr): rewritten to delegate register
98           placement to the linker (use `extern sym' rather than sym EQU addr),
99           (validAddress): fixed to check last specified address
100         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
101           (popGetLit): truncate literal value to 8 bit,
102           (popGet): moved assert to more appropriate place
103           (popGetExternal): create pCode operand from and mark the according
104             symbol as being `extern'
105           (popGetAddr): added sanity check on immediate's offset, provide
106             GPOINTER tag on demand
107           (aopPut): fixed for immediates,
108           (mov2w_op): move operand's address or contents to WREG (depending on
109             operand type), safer variant of mov2w,
110           (movwf,call_libraryfunc): NEW, handy abbreviations,
111           (get_argument_pcop,get_return_val_pcop,pass_argument,
112           get_returnvalue): interface for accessing function parameters and
113             return values,
114           (assignResultValuei,genRet): use new parameter/return value interface
115           (pic14_getDataSize): back to old version handling generic pointers,
116           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
117             provided implementation and/or fixed old one,
118           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
119             calls, removed legacy 8051 reference code
120           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
121           (loadSignToC): NEW, move the operands sign bit to CARRY,
122           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
123             genRightShiftSigned, accepts negative shift counts,
124           (setup_fsr): load FSR and adjust IRP (indirect memory access),
125           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
126             generic pointers, __data pointers and __code pointers,
127           (genUnpackBits,genPackBits): rewritten to work with generic pointers
128             and signed bitfields, limit bitfields to 8 bit,
129           (genDataPointerGet): fixed number of bytes read,
130           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
131           (genPointerGet,genPointerSet): fixed handling of __code pointers,
132             pointers to constant data are no longer assumed to point to __code
133             space, removed invalid pointer types,
134           (bitpatternFromVal): retrieve the PICs representation of an integer
135             or float literal,
136           (genDataPointerSet): fixed assigning to po_immediate operands,
137           (genGenPointerSet): implemented as library call,
138           (genIfx): fixed incorrect condition,
139           (genAddrOf): limit generic pointers' addresses to 2 bytes,
140             provide GPOINTER tag according to destination's storage class,
141           (genCast): added code to handle casting to generic pointers, added
142             sign-/zero extension of the result
143           (aop_isLitLike,op_isLitLike): fixed handling of immediates
144         * src/pic/gen.h: added macros to access IRP bit in STATUS register
145         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
146           extend the result
147         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
148           address/register resides in the shared banks
149           (emitSymbolToFile): improved to handle global and `pinned' symbols,
150             put all variables into separate sections (have the linker arrange
151             them)
152           (picglue): put init code and interrupt handlers in separate sections
153         * src/pic/main.c: added port specific options table, modified to PORT
154           structure to make GPOINTERs 3 byte, added pic14_options
155           (_pic14_do_link): private linking routine (update paths to libraries,
156             add libsdcc.lib by default)
157         * src/pic/main.h: declare pic14_options
158         * src/pic/pcode.c: fixed instructions i/o relations,
159           (RegCond): reverted to correct version,
160           (newpCodeOpLit): truncate literals to 8 bit,
161           (genericPrint): added debug output,
162           (getRegFromInstruction): fixed for various operand types, simplified
163           (BuildFlow): fixed broken handling of isntructions with labels
164           (LinkFlow): start at last instruction in flow (skip trailing comments),
165             pass the flow on to the next instruction after CALL
166           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
167           (insertPCodeInstruction): fixed inserting after a skip instruction,
168           (DoBankSelect): fixed for labeled instructions
169           (OptimizepBlock): honor --nopeep switch
170           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
171         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
172         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
173           (pCodeOptime2pCodes): allow disabling this optimization via
174             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
175             but is still buggy), started implementation of a dataflow based
176             pCode optimization (CSE + dead code elimination)
177           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
178         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
179           names are independant of the stack location and therefore portable across
180           devices
181
182 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
183
184         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
185           (selectSpil): fixed bug 1337835 by not spilling bit variables
186         * support/regression/tests/bug1337835.c: added test for this bug
187         * src/mcs51/peeph.def: restart after rule 3.c,
188           addded rules 263.x to optimize loading constants
189
190 2005-10-26 Raphael Neider <rneider AT web.de>
191
192         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
193         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
194           (genAssign): emit warning when casting literals to generic pointer
195             type, also applies when taking the address of a fixed variable,
196           (genCast): improved casting to generic pointers
197         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
198           extern variables, added verbose error message
199         * device/include/pic16/{string.h,errno.h}: added #pragma library c
200
201 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
202
203         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
204         carry must be complemented too
205         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
206         could be emitted by genMinus
207         * src/SDCCval.c (constVal): fixed bug 1305065
208
209 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
210
211         * src/SDCCast.c (addCast): added promotion for bit variables
212         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
213         promotion casts + optimisation
214         (optimizeGetWord): fix warning 'i' might be used uninitialized
215         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
216         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
217
218 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
219
220         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
221         all chars are promoted to int; promotion should be handled in SDCCast.c
222
223 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
224
225         * device/lib/_strcmp.c: Fixed bug 1326457
226
227 2005-10-11 Raphael Neider <rneider AT web.de>
228
229         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
230         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
231
232 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
233
234         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
235         * support/regression/tests/sfr16.c: added test for the sfr32 bug
236
237 2005-10-04 Raphael Neider <rneider AT web.de>
238
239         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
240           device/lib/pic16/pics.all: added pic18f1320
241         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
242
243 2005-09-30 Raphael Neider <rneider AT web.de>
244
245         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
246         * src/pic16/devices.inc: NEW, provides device descriptions
247         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
248
249 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
250
251         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
252           GETHBIT
253
254 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
255
256         * doc/sdccman.lyx: updated Highest Order Bit documentation,
257           documented Any Order Bit, Higher Order Byte and Higher Order Word
258         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
259         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
260           (optimizeGetAbit): new, to get any bit, not only the high bit,
261           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
262           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
263           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
264           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
265             RIGHT_OP: also try GETBYTE, GETWORD optimization,
266             GETABIT, GETBYTE, GETWORD: decorate them,
267           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
268           (ast_print): added GETABIT, GETBYTE, GETWORD
269         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
270         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
271           (geniCodeBinary): new generic binary icode,
272           (ast2iCode): added GETABIT, GETBYTE, GETWORD
273         * src/port.h: updated comment for PORT.hasExtBitOp
274         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
275           (genGetByte): new, to get a single byte,
276           (genGetWord): new, to get a word from a long,
277           (gen51Code): added GETABIT, GETBYTE, GETWORD
278         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
279
280 2005-09-23 Raphael Neider <rneider AT web.de>
281
282         * configure.in, configure: have device/lib/pic configured
283         * device/lib/Makefile.in: added model-pic14
284         * device/lib/clean.mk: added pic/ to clean rule
285         * device/lib/pic: added rudimentary pic14 library providing support
286           functions for multiplication/division/generic pointer access
287         * src/SDCCopt.c (convilong): mark support functions as extern
288           for pic14 port as well
289         * src/pic/gen.c (genMult): added assertions,
290           (genpic14Code): emit warning on unhandled iCodes
291         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
292         * src/pic/pcode.c (pCodeOpCopy),
293         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
294           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
295           SFR_REGISTER}), made safe for future extensions
296         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
297           instructions even if preceeded by SKIP instructions (also remove
298           them); removed unused code
299         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
300           prevents leaving parts of the structure uninitialized after copying
301
302 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
303
304         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
305           ago by me
306         * support/regression/tests/addsub.c: added test for the bug
307
308 2005-09-21 Raphael Neider <rneider AT web.de>
309
310         * device/include/pic16/pic18f1220.h,
311           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
312         * device/lib/pic16/Makefile.rules: added missing opening paren
313         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
314           are provided in genutils.c,
315           (genUminusFloat,genUminus,genCmpEq): added asserts on different
316           operand/result sizes,
317           (genCmp): assert on NULL pointers first, then check deref'ed values
318         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
319           result size
320
321 2005-09-18 Raphael Neider <rneider AT web.de>
322
323         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
324           as these are now unused,
325           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
326         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
327           local, avoids uninitialized pointer dereference on r->name
328         * src/pic16/ralloc.c (newReg): fixed indentation
329
330 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
331
332         * src/SDCCval.c (constVal): fixed bug 730366
333         * support/Util/SDCCerr.c,
334         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
335
336 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
337
338         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
339
340 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
341
342         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
343
344 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
345
346         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
347           (hex2dec): made hex_digit unsigned char, removed ascii dependance
348         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
349           (hex2dec): made hex_digit unsigned char, removed ascii dependance
350         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
351         * packihx/packihx.c (hexDigit): made c unsigned char
352         * as/mcs51/lklibr.c (fndsym),
353         * link/z80/lkgb.c (gb),
354         * link/z80/lklibr.c (fndsym),
355         * link/z80/lkrloc.c (relr),
356         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
357         * src/SDCC.lex (checkCurrFile, process_pragma),
358         * src/SDCCglue.c (spacesToUnderscores),
359         * src/SDCCmain.c (setParseWithComma, processFile),
360         * src/asm.c (tvsprintf, printCLine),
361         * src/avr/gen.c (emitcode, aopPut),
362         * src/ds390/gen.c (emitcode),
363         * src/hc08/gen.c (emitcode, emitinline),
364         * src/mcs51/gen.c (emitcode, genInline),
365         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
366           tokenizeLineNode),
367         * src/pic/ralloc.c (debugLog),
368         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
369           tokenizeLineNode),
370         * src/pic16/ralloc.c (debugLog),
371         * src/z80/main.c (_process_pragma):
372            made all ctype.h function calls safe
373         * src/SDCCopt.c: include math.h for fabs
374         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
375           and used them throughout the code to make ctype.h function calls safe
376         * src/ds390/main.c (asmLineNodeFromLineNode),
377         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
378         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
379            unsigned char*
380         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
381           (newpCodeAsmDir): made ctype.h function calls safe
382         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
383           pic16_emitcode):  made lbp unsigned char*
384         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
385           (pic16_newpCodeAsmDir): made ctype.h function calls safe
386         * src/xa51/gen.c (emitcode),
387         * src/z80/gen.c (_emit2): made lbp unsigned char*
388         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
389            char*
390
391 2005-09-05 Raphael Neider <rneider AT web.de>
392
393         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
394           access bank splitpoint
395
396 2005-09-05 Raphael Neider <rneider AT web.de>
397
398         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
399
400 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
401
402         * .version: changed to version 2.5.3
403         * doc/sdccman.lyx: changed version to 2.5.3,
404           documented --codeseg and --constseg and pragma codeseg and constseg,
405           documented bit parameters (reentrant) and bit returning
406         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
407            currFunc->recvSize, but is this ok for all ports?
408           (ast2iCode): result of ~ on unsigned char must be cast to int for
409            bool to work
410         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
411           function pointers in bit space
412         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
413           (processFuncArgs): call port.reg_parm() with reentrancy info
414         * src/port.h,
415         * src/avr/main.c,
416         * src/ds390/main.c,
417         * src/hc08/main.c,
418         * src/pic/main.c,
419         * src/pic16/main.c,
420         * src/xa51/main.c,
421         * src/z80/main.c: port.reg_parm prototype extended with
422           "bool reentrant" parameter
423         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
424           options.stackAuto for allocating bit register parameters
425         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
426           (genSend): set BitBankUsed if it is,
427           (selectRegBank): factored out of genCall for use in genPcall,
428           (genCall): removed redundant dtype assignmen, use selectRegBank,
429           (genPcall): handle returning in Carry properly, save in F0 if needed,
430           (genReceive): handle bit register parameters
431         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
432           (mcs51_assignRegisters): enable bit registers for all reentrant
433            functions and don't set BitBankUsed unconditionally
434         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
435         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
436         * support/regression/tests/funptrs.c: added tests for BOOL and for return
437
438 2005-08-27 Borut Razem <borut.razem AT siol.net>
439
440         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
441         ppc-osx (Darwin) does not support -u option. It seems that it is
442         supported only on Linux - GNU cp
443
444 2005-08-25 Borut Razem <borut.razem AT siol.net>
445
446         * sim/ucsim/gui.src/serio.src/Makefile.in,
447           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
448           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
449           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
450           install and strip, since the strip at /usr/ccs/bin should be used
451           on solaris
452
453 2005-08-24 Borut Razem <borut.razem AT siol.net>
454
455         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
456
457 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
458
459         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
460         ffffffffu
461
462 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
463
464         * as/mcs51/aslink.h: completed lkrloc.c prototypes
465         * as/mcs51/lkmain.c (link_main): fixed warning
466         * device/include/stdbool.h: ds390 has no advanced bit support yet
467         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
468         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
469         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
470           and updated their macros
471         * src/SDCCval.c (constVal): updated comment for renamed b_long
472
473 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
474
475         * as/mcs51/asdata.c: changed ctype['['] to BINOP
476         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
477           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
478           (oprio): set priority for '['
479         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
480            and adb_24_bit
481         * as/mcs51/asm.h: added defines R_BIT and S_BIT
482         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
483         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
484         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
485           added overlayable BIT_BANK area
486         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
487           (summary2): explain 'T' in legenda
488         * as/mcs51/lkrloc.c: replaced old K&R style,
489           (relr): added R_BIT processing,
490           (errmsg): added "Bit-addressable relocation error",
491           (adb_bit): added for converting from byte- to bit-addressable space,
492           (adb_24_bit): added for converting from byte- to bit-addressable space
493         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
494            used in reentrant functions now even as return value
495         * device/lib/_gptrput.c (_gptrput): removed obsolete code
496         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
497           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
498         * src/SDCCglobl.h: added indicator BitBankUsed
499         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
500            the bit registers b0-b7
501         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
502           (geniCodeCast): fixed bug 1263853,
503           (geniCodeLogicAndOr): put result in bool or char,
504           (geniCodeReceive): added parameter func for accessing the return type,
505           (geniCodeFunctionBody): pass func to geniCodeReceive
506         * src/SDCCmain.c: added indicator BitBankUsed
507         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
508         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
509           (checkSClass): don't put automatic bool/bit on stack,
510           (checkFunction): removed check on function cannot return bit
511         * src/SDCCsymt.h: added newBoolLink prototype
512         * src/mcs51/gen.c (rb1regs): added bit registers,
513           (movc): created for assigning to carry,
514           (pushReg, popReg): created for pushing registers,
515           (sameRegs): check both AOP_REG and AOP_CRY types,
516           (aopOp): handle bit registers,
517           (aopPut): optimization no self-assign,
518           (saveRegisters): push reg->base (bits) only once for bit registers,
519            and use pushReg,
520           (unsaveRegisters): pop reg->base only once and use popReg,
521           (assignResultValue): added parameter func and return in carry for bits,
522           (genIpush): optimization no reload in A if not changed,
523           (genSend): bit parameters in reentrant functions are passed in bit
524            registers by first assigning to bits in B, then save registers and
525            copy B to bits,
526           (genCall): handle returning in Carry properly, save it in F0 if needed,
527           (genPcall): updated assignResultValue call, this is not safe yet for bit
528            returning function !!!
529           (genFunction): don't generate equ's for bit registers and use pushReg,
530           (genEndFunction): take care of bit returning functions and use popReg,
531           (genRet): return bit in Carry,
532           (genIfx): optimize bit registers and other directly addressable bits,
533           (genReceive): updated assignResultValue call
534         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
535           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
536            registers when using stack-auto
537         * src/mcs51/ralloc.c (_G): added allBitregs,
538           (regs8051): added the bit registers,
539           (createStackSpil): use macro IS_BIT,
540           (getRegBit): added to allocate a bit register, else spill,
541           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
542           (updateRegUsage): factored out to ease stepping while debugging,
543           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
544            also allocate bit registers,
545           (fillGaps): handle bit registers,
546           (findAllBitregs): added to create bit vector with all bit registers,
547           (mcs51_allBitregs): returns this bit vector,
548           (mcs51_assignRegisters): when using stack-auto use bit registers for
549            passing parameters and creating local variables
550         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
551
552 2005-08-22 Borut Razem <borut.razem AT siol.net>
553
554         * device/lib/Makefile.in: replaced find option -or with -o
555           to make it run on solaris
556
557 2005-08-22 Raphael Neider <rneider AT web.de>
558
559         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
560           fixes #1265442 (crash on Solaris)
561
562 2005-08-20 Borut Razem <borut.razem AT siol.net>
563
564         * configure, configure.in: added tests for libsocket and libnsl libraries,
565           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
566           from support/regression/Makefile.in
567         * support/regression/Makefile.in: added
568         * device/lib/pic16/Makefile.common.in: force make to use bash shell
569         * sim/ucsim/libtool: regenerated on sparc-solaris
570         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
571           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
572           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
573           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
574           sparc-solaris, which doesn't use GNU ld linker
575         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
576         * as/Makefile: find on sparc-solaris does not support -maxdepth option
577
578 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
579
580         * src/mcs51/peeph.def: updated comments
581
582 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
583
584         * device/lib/_gptrget.c,
585         * device/lib/_gptrput.c: slightly shorter
586         * doc/sdccman.lyx: incremented version
587         * src/mcs51/peeph.def: moved peephole comments to the line of first
588           change to better keep line correlation, reanimated 186.e
589         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
590
591 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
592
593         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
594           David Saxton with quotes around file name.
595
596 2005-08-15 Borut Razem <borut.razem AT siol.net>
597
598         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
599           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
600           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
601           make tests run on x86_64 platform
602
603 2005-08-13 Raphael Neider <rneider AT web.de>
604
605         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
606           as it might be executed DURING a build (parallel make is wonderful)
607
608 2005-08-13 Raphael Neider <rneider AT web.de>
609
610         * device/lib/Makefile.in (port-specific-objects-pic16):
611           revert to cp $(PORT)/bin/*.* $(PORTDIR)
612         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
613           dependency
614         * device/lib/pic16/Makefile.rules: build subdirs before creating
615           the library, removed builddir rule, create $(builddir) early in
616           recurse rule, use empty recurse rule for leaf directories
617         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
618           mkdir errors (race condition), removed duplicate suffix "hex"
619           from clean rules
620         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
621         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
622           prevents mkdir -p from aborting on Alpha
623
624 2005-08-12 Raphael Neider <rneider AT web.de>
625
626         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
627           db-statements in order to allow for arrays of pointers in code
628           sections to be placed without interspersed 0-padding, fixes
629           bug #1256215
630         * (emitStatistics): fixed division by zero for pic18f1220
631         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
632           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
633         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
634         * (pic16_pCodeConstString): keep track of already emitted string
635           literals to prevent "duplicate definitions of symbol _str_NR"
636         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
637           debug message
638         * device/lib/Makefile.in: ignore failing PIC16 library builds
639         * device/lib/pic16/Makefile: do not build if gputils are missing
640         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
641
642 2005-08-10 Raphael Neider <rneider AT web.de>
643
644         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
645           my last commit)
646
647 2005-08-10 Raphael Neider <rneider AT web.de>
648
649         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
650           Rokas' patch to add the new fixed point type "__fixed16x16"
651         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
652           functions for __fixed16x16 arithmetics
653         * device/lib/pic16: reimplemented the build system to support
654           a separate build directory, better handling of libio (create
655           the library in a separate subdir for each architecture) and
656           easier configuration (centralized in Makefile.common)
657
658 2005-08-07 Raphael Neider <rneider AT web.de>
659
660         * src/pic16/gen.c (genrshTwo): fixed sign extension
661         * src/pic16/device.c: added pic18f2320, 4220 and 4320
662         * device/include/pic16/pic18f2220.h: changed some bit definitions,
663           added T0CONbits
664         * device/include/pic16/pic18f4220.h: NEW, header for
665           pic18f4220 and pic18f4320
666         * device/include/pic16/pic18fregs.h: added new devices,
667           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
668         * device/include/pic16/signal.h: resolved name clashes
669           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
670           to also allow testing for interrupt enable bits, added
671           comments on how to use the macros
672         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
673         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
674           register definitions for the devices
675         * device/lib/pic16/pics.all: added new devices
676         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
677           allocated memory
678         * device/lib/pic16/libc/stdlib/memfree: do not count
679           the block header as free memory
680         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
681           simplified and added missing end-of-blocklist-marker
682           (reported by Peter Onion, fixes #1252814)
683         * (_mergeHeapBlock): fixed loop condition
684         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
685           len==0, restructured code
686         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
687           up a bit, reduced bitfield accesses, prevent endless loops
688           in case of heap corruption
689         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
690           "unreferenced arguments/must return a value" warnings
691         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
692           replaced BAUDREG with SPBRG
693         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
694           device/lib/pic16/debug/gstack/gstack.c: replaced
695           _naked, _asm, _endasm with __naked, __asm, __endasm
696
697 2005-08-05 Raphael Neider <rneider AT web.de>
698
699         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
700           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
701
702 2005-08-05 Borut Razem <borut.razem AT siol.net>
703
704         * device/lib/Makefile.in: added missing ';'
705         * configure: removed ^M characters
706
707 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
708
709         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
710           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
711           License
712
713 2005-08-04 Borut Razem <borut.razem AT siol.net>
714
715         * configure.in: pic16 libraries build 2nd try - enable running
716           configure in device/lib/pic16
717         * configure: regenerated from configure.in
718         * device/lib/Makefile.in: create $(PORT)/bin directory
719
720 2005-08-03 Raphael Neider <rneider AT web.de>
721
722         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
723           to get/set values via pointers
724         * (genUnpackBits,genPackBits): changed detection of
725           ptr->bitfield vs. sym.bitfield, fixed access via generic
726           pointers, removed dead (wrong) code for multibyte bitfields
727         * (genNearPointerGet, genGenPointerGet): removed useless code,
728           fixed bitfield detection, fixes #1250594
729         * (genNearPointerSet): removed useless code
730         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
731           and introduced macro pic16_emitpcode that conditionally emits
732           the origin of the following pCode (useful for debugging SDCC)
733         * src/pic16/pcode.c: changed (and disabled) some debug outputs
734         * (createDefmap): fixed handling of LFSR for --optimize-df
735
736 2005-08-02 Borut Razem <borut.razem AT siol.net>
737
738         * device/lib/Makefile.in: pic16 libraries build enabled since
739           gputils-0.13.2 are now localy installed at sourceforge's compile farm
740
741 2005-08-02 Raphael Neider <rneider AT web.de>
742
743         * src/pic16/gen.c (genPackBits): removed deprecated warning
744         * (genGenPointerSet): fixed bitfield detection
745
746 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
747
748         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
749
750 2005-07-31 Raphael Neider <rneider AT web.de>
751
752         * device/lib/pic16/libdev/pic18f458.c,
753           device/include/pic16/pic18f458.h: added missing T0CONbits
754
755 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
756
757         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
758
759 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
760
761         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
762
763 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
764
765         * device/include/mcs51/at89c51ed2.h: added.
766
767 2005-07-23 Raphael Neider <rneider AT web.de>
768
769         * src/pic/gen.h: added emitpcode macro for debugging
770         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
771           and replace by macro adding debug information on demand
772         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
773         * (gencjne): tried to fix; replaced with correct (slower) code
774         * (gen{Unp,P}ackBits): fixed single bit access
775         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
776         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
777           previous instruction
778         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
779           register has to be handled with care (forbidding movement
780           of assignments/uses, removing assignments completely, ...)
781         * (pCodeOptime2pCodes): make use of regIsSpecial
782         * added lots of debugging output (commented out)
783         * src/pic/rallloc.c (deassignLRs): prevent operand registers
784           from being reused as result UNLESS it is known to work
785
786 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
787
788         * support/Util/dbuf.h: include <stddef.h> for size_t
789         * .version: changed to version 2.5.2
790
791 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
792
793         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
794
795 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
796
797         * src/hc08/gen.c (genMinus): fixed bug #1241835,
798           (genModOneByte): removed needless psha/pula
799
800 2005-07-22 Raphael Neider <rneider AT web.de>
801
802         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
803           have PIC14 handled like PIC16, fixes broken pic14 linker calls
804         * src/pic/gen.c (resolveIfx): do not "invent" labels
805         * (genSkipc): changed to positive logic
806         * (genSkipCond): removed as no longer needed
807         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
808           backport from PIC16
809         * (genLeftShift): check operands are in different registers
810         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
811           INCF does not update CARRY...
812         * src/pic/main.c: fixed _linkCmd
813         * src/pic/pcode.c (unlinkpCode): added inactive code
814         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
815           alive (do not assign result and operand overlapping registers)
816
817 2005-07-22 Raphael Neider <rneider AT web.de>
818
819         * src/pic/device.c (dump_sfr): replaced register declaration with
820           call to emitSymbolToFile() to avoid duplicate symbols
821         * (assignRelocatableRegisters): do not declare external symbols
822         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
823           right (take size of type, not etype)
824         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
825         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
826         * (packRegsForAccUse): disabled assignment of WREG as
827           the result reg to prevent occurence of just fixed #1235003,
828           fixes #1242954
829         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
830           symbols (avoids duplicate symbols in .asm file)
831         * (pic14emitRegularMap): use emitSymbolToFile()
832         * src/pic/gen.c (aopOp): fixed spillLocation handling
833         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
834         * (genDataPointerSet): removed unneccessary variables/output
835
836 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
837
838         * as/mcs51/lkarea.c: enlarged codemap for banked memory
839         * device/lib/mcs51/crtbank.asm: added # to 0x0F
840
841 2005-07-21 Raphael Neider <rneider AT web.de>
842
843         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
844           architecture cannot handle them efficiently, fixes bug #1235003
845         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
846           check for empty sets before using them (fixes bug #1232190)
847
848 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
849
850         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
851           (lnksect2): generate warnings for memory overlap
852         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
853           constseg to set the name of these segments so you can instruct the linker
854           to place them in banks
855         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
856         * src/SDCCglobl.h: added MODEL_HUGE to enum,
857           added code_seg and const_seg to options
858         * src/SDCCglue.c (emitMaps): use options.const_seg,
859           (createInterruptVect): put interrupt vectors in segment HOME,
860           (glue): put HOME before static segment and put the main glue in HOME,
861           (glue): use options.code_seg
862         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
863         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
864           these segments so you can instruct the linker to place them in banks
865           (linkEdit): use code_loc for HOME segment which should be the first
866           segment in code memory now
867         * src/SDCCmem.c: fixed more stuff like bug 1238386
868         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
869           (changePointer): don't change function pointers to code pointers for
870           banked functions,
871           (compareType): added exceptional check for banked function pointers
872         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
873         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
874           after static in code memory
875         * src/mcs51/gen.c: added aopLiteralLong prototype,
876           (aopForSym): use getSize for functions,
877           (genCall): generate banked calls over one trampoline __sdcc_banked_call
878           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
879           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
880           the segment,
881           (genPcall): use call for literal function pointers and generate banked
882           calls over the one trampoline so there's only one place for the user to
883           modify according to his/hers hardware,
884           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
885           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
886         * src/mcs51/main.c: added keyword banked,
887           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
888         * support/Util/SDCCerr.c,
889         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
890           needed for passing the bank and address to the trampoline
891         * device/lib/mcs51/crtbank.asm: added for bankswitching
892         * device/lib/mcs51/Makefile: added crtbank
893
894 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
895
896         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
897           for fields at offset 0 of a struct or union as reported
898           on 2005-07-07 in the developer mailing list.
899
900 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
901
902         * src/SDCCmem.c: fixed bug 1238386
903
904 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
905
906         * src/mcs51/peeph.def: added labelrefcounting for peepholes
907           (patch #1144962), added peephole 300, enabled 259.x
908         * doc/sdccman.lyx: removed screenshot and provided link instead
909
910 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
911
912         * doc/sdccman.lyx: added section about debugging with ddd
913         * doc/figures/ddd_example.eps: screenshot of debugging session
914
915 2005-07-04 Raphael Neider <rneider AT web.de>
916
917         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
918           like CODE pointers, fixes #1115683
919         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
920           call, fixes bugs #1232211, #1228110,
921           fixed wrong casts to pCodeFlow from pCodeInstructions
922
923 2005-07-04 Raphael Neider <rneider AT web.de>
924
925         * src/pic/gen.c (popGet): changed assert to allow for
926           bit operands
927         * (popGetAddr): changed signature to provide
928           an additional index, patched all call sites
929         * (genCmpEq): handle literal-like operands correctly
930         * (genAddrOf): added sanity checks on __code/__data pointers
931         * (genAssign): added handling of symbols from __code section
932         * (gencjne): do not generate code for comparisons whose result
933           is neither stored nor used, fixes bug #1171114
934         * (AccLsh, AccRsh): operate on operand instead of WREG
935         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
936           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
937           by known count
938         * rewrote complete shift-by-literal logic, commented unused
939           functions out
940         * (genConstPointerGet): get multiple bytes (if result size > 1),
941           fixed handling of non-immediate addresses
942         * (genPointerGet): handle CODE pointers like CONST pointers
943         * (genpic14Code): insert C-SRC lines as Cource-pCodes
944         * ({aop,op}_isLitLike): NEW, single place to decide whether an
945           operand is to be treated as a literal or not
946         * (mov2w,genPcall,genCmpEq),
947           src/pic/genarith.c: use aop_isLitLike() to decide between
948           literal/register contents
949         * (addSign): added missing offset
950         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
951           only emit comment in debug-mode,
952           use {aop,op}_isLitLike throughout the file
953         * src/pic/glue.c: fix initializers for pointers (work in progress)
954         * src/pic/pcode.c (get_op): honor index on _const symbols
955         * ({reset,dump}pCodeStatistics): NEW, estimate code size
956         * (dumppBlock): added pCode size estimation
957         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
958           check for IS_SYMOP before OP_SYMBOL'ing
959         * fixed indentation, compacted switch-statements
960         * (allocReg): find free register and allocate it instead of
961           allocating new registers all the time
962         * (deassignLRs): prevent POINTER_GET's from being assigned the same
963           registers as its operands (necessary only for multibyte GETs)
964
965 2005-07-01 Raphael Neider <rneider AT web.de>
966
967         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
968           debugging .asm-output macros FENTRY + FEXIT
969         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
970           way... I wonder...
971         * (emitpComment): NEW, printf to pCode
972         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
973           offset handling
974         * (popGetAddr): NEW, variant of popGet to access an immediates
975           high(er) bytes instead of the n'th byte of memory they reference,
976           replaced popGet with popGetAddr where neccessary
977         * (genDataPointerGet): reactivated and fixed implementation
978         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
979           accesses
980         * (genDataPointerSet): fixed multibyte assignments
981         * (genpic14Code): fixed --i-code-in-asm handling
982         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
983         * (genPlus): fixed index-out-of-bounds error
984         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
985         * src/pic/ralloc.c: added debugging output macro FENTRY2
986         * (spillThis): fixed indentation, enbraced for-body for clarity
987         * (rematStr): commented out as now unused
988         * (regTypeNum): commented out special spill case (overwrites
989           arbitrary values)
990         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
991
992 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
993
994         * doc/sdccman.lyx: documented sfr16/sfr32,
995           added example for using storage class with function pointers
996         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
997
998 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
999
1000         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
1001         * device/lib/_itoa.c,
1002         * device/lib/_ltoa.c: optimized codesize
1003         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
1004           but don't know how to suppress the double warning.
1005         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
1006         * support/Util/SDCCerr.c,
1007         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
1008
1009 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
1010
1011         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
1012           fixed old K&R prototypes
1013         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
1014         * device/lib/_gptrget.c,
1015         * device/lib/_gptrgetc.c,
1016         * device/lib/_gptrput.c: changed versions for new memory indicator values,
1017           also new versions for small generic pointers and banked generic pointers
1018         * src/port.h: added const_name
1019         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
1020         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
1021         * src/SDCCcse.c (findPrevIc): check all associative operators
1022         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
1023         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
1024         * src/SDCCmem.c: updated comments,
1025           set far-space to 0 for pdata, results in optimized code
1026         * src/SDCCmem.h: added macro CONST_NAME
1027         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
1028           moving the info into the highest bits, see also gptrget/gptrput
1029         * src/src.dsp: added sdcc.ico to project files
1030         * src/avr/gen.c (genCast): fixed bug 0x%d
1031         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
1032         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
1033           relation between ptr_type and DCL_TYPE,
1034           (genCast): fixed bug 0x%d
1035         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
1036           (CODE)" for const_name
1037         * src/hc08/gen.c (genCast): fixed bug 0x%d
1038         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
1039           (hc08_port): added "CONST (CODE)" for const_name
1040         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
1041           (aopForRemat, adjustArithmeticResult): disconnected direct relation
1042           between ptr_type and DCL_TYPE,
1043           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
1044           operand* and took AOP() inside function so sfr-ness can be checked,
1045           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
1046           new prototype,
1047           (genFunction, genEndFunction): optimized stack setup,
1048           (genMinus): optimized for literals with ending zeroes (in bytes),
1049           (genCast): fixed bug 0x%d
1050         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
1051           (mcs51_port): added "CONST (CODE)" for const_name
1052         * src/mcs51/peeph.def: made rule 226 more generic
1053         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
1054         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
1055         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
1056         * src/z80/main.c (z80_port): added NULL for const_name,
1057           (gbz80_port): added NULL for const_name
1058         * support/regression/tests/bug663539.c,
1059         * support/regression/tests/sfr16.c: new tests
1060
1061 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1062
1063         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
1064
1065 2005-06-24 Raphael Neider <rneider AT web.de>
1066
1067         * device/lib/pic16/libdev/pic18f[68][567]20.c:
1068           corrected typos...
1069         * device/include/pic16/signal.h: added USBIF
1070           and SIG_USB
1071
1072 2005-06-24 Raphael Neider <rneider AT web.de>
1073
1074         * device/lib/pic16/libdev/pic18f2455.c,
1075           device/include/pic16/pic18f2455.h: NEW
1076         * device/include/pic16/pic18fregs.h,
1077           device/lib/pic16/pics.all,
1078           src/pic16/device.c: added 18f2455
1079         * device/lib/pic16/libdev/pic18f[68][567]20.c,
1080           device/include/pic16/{pic18f[68][567].h,usart.h}:
1081           replaced MULTIPLE_USARTS define with more relaible
1082           compatibility sfrs (for USART access)
1083
1084 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
1085
1086         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
1087           and the output asm file line is printed on two lines.
1088
1089 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1090
1091         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
1092           BGT, BLE, BHI, and BLS instructions
1093         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
1094           genCmpEq): removed
1095         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
1096           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
1097           fixes bug #1216342
1098         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
1099
1100 2005-06-15 Raphael Neider <rneider AT web.de>
1101
1102         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
1103         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
1104         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
1105           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
1106           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
1107
1108 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1109
1110         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
1111           Marcel Telka in bug #1215704
1112
1113 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
1114
1115         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
1116           located in shared memory bank.
1117
1118 2005-05-31 Raphael Neider <rneider AT web.de>
1119
1120         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
1121           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
1122           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
1123
1124 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
1125
1126         * device/lib/_strncpy.c: fixed the fix
1127
1128 2005-05-26 Raphael Neider <rneider AT web.de>
1129
1130         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
1131           initializers with \0, bug #1208187
1132         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
1133           intializers with \0, bug #1208187
1134
1135 2005-05-26 Raphael Neider <rneider AT web.de>
1136
1137         * src/pic16/glue.c (pic16_printIvalChar): fixed string
1138           initializers with \0, bug #1208187
1139         * src/pic16/main.c (_process_pragma): added sanity checks
1140           for stack position and size, emit warnings when appropriate
1141
1142 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
1143
1144         * device/lib/_strncpy.c: fixed not filling with \0
1145
1146 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1147
1148         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
1149           createFunction),
1150         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
1151           compound_statement),
1152         * src/SDCCsymt.h,
1153         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
1154
1155 2005-05-24 Raphael Neider <rneider AT web.de>
1156
1157         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
1158
1159 2005-05-24 Raphael Neider <rneider AT web.de>
1160
1161         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
1162           TRISE definitions, closes bug #1162453
1163
1164 2005-05-22 Raphael Neider <rneider AT web.de>
1165
1166         * src/pic16/main.c (_process_pragma): check for missing
1167           arguments to pragmas code and udata
1168         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
1169           consistency fixes to match other headers (thanks to Jim Paris)
1170         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
1171
1172 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
1173
1174         * src/SDCCicode.c (isOperandEqual): fixed missing ;
1175
1176 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
1177
1178         * support/regression/tests/bug1198642.c: new test
1179         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
1180         * src/SDCCcse.c (findPrevIc): added comment, please have a look
1181         * support/scripts/resource.h,
1182         * support/scripts/resource.rc,
1183         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
1184         * support/scripts/sdcc.ico: added 32x32 icon
1185
1186 2005-05-18 Raphael Neider <rneider AT web.de>
1187
1188         * device/lib/pic16/libdev/pic18f*.c,
1189         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
1190           keywords to "__sfr" and "__at (X)"
1191         * device/include/pic16/pic18fregs.h: added pic18f4520
1192         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
1193           #1203088 (MPLAB compatibility)
1194
1195 2005-05-17 Raphael Neider <rneider AT web.de>
1196
1197         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
1198         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
1199         * device/lib/pic16/pics.all: added new devices
1200         * src/pic16/device.c: added support for pic18f4520
1201
1202 2005-05-16 Raphael Neider <rneider AT web.de>
1203         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
1204         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
1205         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
1206           convenience function for bit access
1207
1208 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
1209
1210         * device/lib/printf_large.c: fixed bug 1193299
1211         * support/regression/tests/bug1057979.c: added test %3.3s
1212
1213 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1214
1215         * device/include/mcs51/8051.h,
1216         * device/include/mcs51/8052.h: made parseable with lint
1217         * device/include/mcs51/lint.h: added include file for (sp)lint
1218         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
1219         * doc/cdbfileformat.lyx,
1220         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
1221
1222 2005-05-14 Raphael Neider <rneider AT web.de>
1223
1224         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
1225         * device/lib/pic16/libc/stdlib/itoa.c (new)
1226         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
1227         * device/lib/pic16/libio/Makefile: exclude subdir according to
1228           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
1229         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
1230         * src/pic16/gen.c (genFunction): prevent annoying warning
1231         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
1232           nameclashes on BeOS
1233         * support/cpp2/cppmain.c (cpp_output_string): new
1234         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
1235           fixes bug 1116802
1236
1237 2005-05-13 Borut Razem <borut.razem AT siol.net>
1238
1239         * src/SDCCmain.c (linkEdit): fixed bug 1195202
1240
1241 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1242
1243         * .version: changed to version 2.5.1; back to bleeding edge development
1244
1245 2005-05-11 Borut Razem <borut.razem AT siol.net>
1246
1247         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
1248           generate PDF version 1.3 documents
1249
1250 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1251
1252         * .version: changed to version 2.5.0
1253
1254 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1255
1256         * doc/sdccman.lyx: updated weblinks, index and smaller updates
1257
1258 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1259
1260         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
1261         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
1262         well as many smaller updates.
1263         * .version: changed to version 2.5.0-pre1
1264
1265 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1266
1267         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
1268
1269 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
1270
1271         * support/regression/tests/bug1185672.c: added
1272         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
1273           bug 1185672
1274         * src/mcs51/gen.c (genCall): added comments, made it look safer
1275         * src/mcs51/gen.c (genEndFunction): simplified
1276
1277 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
1278
1279         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
1280
1281 2005-04-14 Borut Razem <borut.razem AT siol.net>
1282
1283         * fixed bug 1045046 - SIGSEGV with really simple code?:
1284           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
1285           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
1286
1287 2005-04-14 Borut Razem <borut.razem AT siol.net>
1288
1289         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
1290           src/pic16/device.h: temporarily disabled experimental #inline pragma
1291           for 2.5.0 release
1292
1293 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
1294
1295         * device/include/z80/stdio.h,
1296         * device/include/z80/string.h: removed these highly incomplete files so
1297           SDCC can use the default ones in device/include/
1298
1299 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1300
1301         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
1302         gcc warning.
1303         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
1304         fix sdcpp warnings.
1305
1306 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1307
1308         * device/include/malloc.h: removed redundant __reentrant prototypes
1309         * device/lib/_mullong.c: added working xstack variant in asm (C version
1310           doesn't pass regression tests)
1311         * device/lib/bpx.c: used __data and made bpx char for mcs51
1312         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
1313           (createFunction): fixed bug with xstackPtr
1314         * src/SDCCcse.c: corrected comments
1315         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
1316           (killDeadCode, eBBlockFromiCode): removed unused code
1317         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
1318           corrected comments
1319         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
1320           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
1321           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
1322           (genModOneByte): fixed warning in MSVC
1323         * src/mcs51/main.c (): added comments
1324         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
1325
1326 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1327
1328         * src/SDCCmain.c (linkEdit): oops, changed one line too many
1329
1330 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
1331
1332         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
1333
1334 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
1335
1336         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
1337         characters arrays of larger size than the declared one.
1338
1339 2005-04-10 Borut Razem <borut.razem AT siol.net>
1340
1341         * src/pic/gen.c (genInline),
1342           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
1343           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
1344           (findNextInstruction), (findPrevInstruction),
1345           (findInstructionUsingLabel),
1346           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
1347         * src/pic/pcode.c (findLabel): added missing '\n'
1348         * src/src.dsp: added SDCCdwarf2.c to the project
1349
1350 2005-04-09 Borut Razem <borut.razem AT siol.net>
1351
1352         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
1353
1354 2005-04-08 Raphael Neider <rneider AT web.de>
1355
1356         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
1357           into the chain after a given one) and mergeDefmapSymbols (combine
1358           defmap entries for each symbol per pcode)
1359         * (createDefmap): have defmap entries merged in the end
1360         * (defmapReplaceSymRef): split defmap entries covering two accesses to
1361           a symbol before replacing one access type's symbol, merge symbols in
1362           the end (replacement symbol might already have an entry)
1363         * (assignValnums): keep reference to written WREG intact
1364
1365 2005-04-08 Raphael Neider <rneider AT web.de>
1366
1367         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
1368           Alpha)
1369
1370 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
1371
1372         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
1373         bytes
1374
1375 2005-04-07 Raphael Neider <rneider AT web.de>
1376
1377         * device/include/pic16/usart.h: added compatibility defines for
1378           devices with more than one USART
1379         * device/include/pic16/pic18f[68][567]20.h: activated above defines
1380
1381 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1382
1383         * device/lib/Makefile.in: updated for port specific include
1384
1385 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1386
1387         * support/regression/ports/mcs51/spec.mk: added mcs51 include
1388
1389 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1390
1391         * device/include/8051.h,
1392         * device/include/8052.h,
1393         * device/include/at89S8252.h,
1394         * device/include/at89c55.h,
1395         * device/include/at89x051.h,
1396         * device/include/at89x51.h,
1397         * device/include/at89x52.h,
1398         * device/include/mcs51reg.h,
1399         * device/include/reg51.h,
1400         * device/include/reg764.h,
1401         * device/include/regc515c.h,
1402         * device/include/sab80515.h: (re)moved these 12 files
1403         * device/include/mcs51/8051.h,
1404         * device/include/mcs51/8052.h,
1405         * device/include/mcs51/at89S8252.h,
1406         * device/include/mcs51/at89c55.h,
1407         * device/include/mcs51/at89x051.h,
1408         * device/include/mcs51/at89x51.h,
1409         * device/include/mcs51/at89x52.h,
1410         * device/include/mcs51/mcs51reg.h,
1411         * device/include/mcs51/reg51.h,
1412         * device/include/mcs51/reg764.h,
1413         * device/include/mcs51/regc515c.h,
1414         * device/include/mcs51/sab80515.h: and added them here
1415
1416 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
1417
1418         * device/include/stdarg.h: changed SDCC specific keywords to double
1419           underlined form.
1420         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
1421           mcs51 and ds390.
1422         * device/include/hc08/mc68hc908gp32.h,
1423         * device/include/hc08/mc68hc908jb8.h,
1424         * device/include/hc08/mc68hc908jkjl.h,
1425         * device/include/hc08/mc68hc908qy.h: fixed comments
1426         * device/include/mcs51/README: updated
1427         * device/include/mcs51/c8051f120.h: added PINRSF
1428         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
1429         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
1430           amidst code. Also inline is not supported.
1431
1432 2005-04-06 Raphael Neider <rneider AT web.de>
1433
1434         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
1435         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
1436           callers stack/frame pointers
1437
1438 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
1439
1440         * device/include/pic16/usart.h: added, missing in previous commit,
1441         * device/include/pic16/adc.h: fixed typo,
1442         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
1443         commit,
1444         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
1445         <p18fxxx.inc>
1446         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
1447         uninitialized because a bug appears with gplink
1448         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
1449         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
1450         complains for unrecognised option
1451
1452 2005-04-05 Raphael Neider <rneider AT web.de>
1453
1454         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
1455           structs as well (using memcpy)
1456         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
1457           on ISRs (GOTO has no label)
1458         * src/pic16/device.h: added OF_OPTIMIZE_DF
1459         * src/pic16/main.c: added compiler switch --optimize-df to enable the
1460           new data flow analysis/optimization
1461         * src/pic16/pcode.c: added (prototypes for and implementation of)
1462           dataflow analysis functions, fixed pCodeInstructions' inCond and
1463           outCond values, made RCALL a branch instruction
1464         * (pic16_unlinkpCode): keep C line if possible
1465         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
1466           C line moved if possible
1467         * (pic16_getRegFrompCodeOp): NEW, improved version of...
1468         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
1469           to use new pic16_getRegFrompCodeOp (works for more SFRs)
1470         * (pic16_BuildFlow): fixed skip instructions with label (did not start
1471           new flow)
1472         * (pic16_getJumptabpCode): NEW, needed in...
1473         * (LinkFlow): fixed handling of jumptables, calls and conditional
1474           branches
1475         * (pic16_InsertCommentAfter): NEW
1476         * (pic16_pCodeReplace): made verbose and flow preserving
1477         * (AnalyzeFlow): added call to data flow analysis
1478         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
1479         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
1480         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
1481
1482 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1483
1484         * src/SDCCast.c (decorateType): fixed bug #1105626
1485
1486 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
1487
1488         * device/include/asm/pic16/features.h,
1489         * pic18f*.h headers,
1490         * device/include/pic16/adc.h,
1491         * device/include/pic16/delay.h,
1492         * device/include/pic16/i2c.h,
1493         * device/include/pic16/malloc.h,
1494         * device/include/pic16/stdio.h,
1495         * device/include/pic16/stdlib.h,
1496         * device/include/pic16/string.h,
1497         * device/lib/pic16/libc/stdio/printf_tiny.c,
1498         * device/lib/pic16/libc/stdio/printf_small.c,
1499         * device/lib/pic16/libc/stdio/strmgpsim.c,
1500         * device/lib/pic16/libc/stdio/strmmssp.c,
1501         * device/lib/pic16/libc/stdio/strmusart.c,
1502         * device/lib/pic16/libc/stdio/vfprintf.c,
1503         * device/lib/pic16/libc/stdlib/ltoa.c,
1504         * device/lib/pic16/libc/stdlib/putchar.c,
1505         * device/lib/pic16/libc/stdlib/x_ftoa.c,
1506         * device/lib/pic16/libc/stdlib/memchrpgm.c,
1507         * device/lib/pic16/libc/stdlib/memchrram.c,
1508         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
1509         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
1510         * device/lib/pic16/libio/adc/adcbusy.c,
1511         * device/lib/pic16/libio/adc/adcread.c,
1512         * device/lib/pic16/libio/adc/adcsetch.c,
1513         * device/lib/pic16/libio/usart/ubaud.c,
1514         * device/lib/pic16/libio/usart/ubusy.c,
1515         * device/lib/pic16/libio/usart/udrdy.c,
1516         * device/lib/pic16/libio/usart/uopen.c,
1517         * device/lib/pic16/libio/usart/uputc.c,
1518         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
1519         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
1520         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
1521         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
1522         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
1523         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
1524         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
1525         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
1526         specific keywords to double underlined form,
1527         * device/lib/pic16/libc/Makefile.rules,
1528         * device/lib/pic16/libsdcc/Makefile.rules,
1529         * device/lib/pic16/libm/Makefile,
1530         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
1531         to compile with C standard set in Makefile.common
1532         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
1533         rand.c and crc.c in compilation process,
1534         * device/lib/pic16/libsdcc/int/divuint.c,
1535         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
1536         `c' from signed to unsigned,
1537         * device/lib/pic16/startup/crt0.c,
1538         * device/lib/pic16/startup/crt0i.c,
1539         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
1540         keywords to double underlined form, bug fixes in _do_cinit function
1541         which prevented the correct initialization of the .idata segment,
1542         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
1543         core to enter a infinite loop
1544         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
1545
1546 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1547
1548         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
1549
1550 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1551
1552         * device/include/Makefile.in: add support for hc08 subdirectory
1553         * device/include/hc08/: new subdirectory
1554         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
1555         Lucas Loizaga, thanks!
1556         * device/include/hc08/mc68hc908qy.h,
1557         * device/include/hc08/mc68hc908gp32.h,
1558         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
1559         their own directory. Changed internal macro names to use the compiler
1560         reserved namespace. Changed SDCC specific keywords to double
1561         underlined form.
1562         * device/include/math.h,
1563         * device/include/malloc.h,
1564         * device/include/stdarg.h,
1565         * device/include/stdbool.h
1566         * device/include/string.h,
1567         * device/include/tinibios.h,
1568         * device/include/ds400rom.h,
1569         * device/include/8051.h,
1570         * device/include/8052.h,
1571         * device/include/80c51xa.h,
1572         * device/include/at89c55.h,
1573         * device/include/at89S8252.h,
1574         * device/include/at89x51.h,
1575         * device/include/at89x52.h,
1576         * device/include/ds80c390.h,
1577         * device/include/reg764.h,
1578         * device/include/regc515c.h,
1579         * device/include/sab80515.h,
1580         * device/include/mcs51/c8051f000.h,
1581         * device/include/mcs51/c8051f018.h,
1582         * device/include/mcs51/c8051f020.h,
1583         * device/include/mcs51/c8051f040.h,
1584         * device/include/mcs51/c8051f060.h,
1585         * device/include/mcs51/c8051f120.h,
1586         * device/include/mcs51/c8051f300.h,
1587         * device/include/mcs51/c8051f310.h,
1588         * device/include/mcs51/c8051f320.h,
1589         * device/include/mcs51/c8051f330.h,
1590         * device/include/mcs51/c8051f350.h,
1591         * device/include/z180.h: Changed SDCC specific keywords to double
1592         underlined form.
1593
1594 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
1595
1596         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
1597         18F4455,
1598         * (pic16_assignConfigWordValue): disable testing of configuration
1599         register value with config mask,
1600         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
1601         function with port->fun_prefix,
1602         * (genFunction): when generating a naked interrupt function never
1603         create an absolute segment placed in interrupt vector address, place
1604         the actual interrupt function at IVA instead, when an interrupt
1605         function is generated with unspecified interrupt then do not create
1606         the absolute section,
1607         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
1608         code for generating a call to generic pointer get/put function with
1609         a call to function pic16_callGenericPointer(),
1610         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
1611         the call to the generic pointer get/put functions with prefixing the
1612         function name with port->fun_prefix,
1613         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
1614         * src/pic16/main.c (_process_pragma): prefix function with
1615         port->fun_prefix,
1616         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
1617         calling assembler, old 18Fxxxx macro is deprecated,
1618         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
1619         PC_ASMDIR in while condition,
1620         * (findInstruction): add PC_ASMDIR in while condition,
1621         * (buildCallTree): prefix main with port->fun_prefix,
1622         * (pic16_pCode2str): fixed bug that didn't emit the memory access
1623         identifier for variable with banked access in instructions BTFSS,
1624         BTFSC, BCF, BSF, BTG
1625         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
1626         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
1627         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
1628         perform optimization when enviroment variable NO_REG_OPT is set,
1629         * (insideLRBlock): NEW, return 1 if register is inside an
1630         INF_LOCALREGS block,
1631         * (RemoveRegFromLRBlock): remove a register that is completely
1632         eliminated by register optimization, but it is still left in local
1633         register store/restore in/from stack block,
1634         * (Remove2pcodes): after removing register, check to see if it
1635         should be removed from local register store/restore in/from stack
1636         block,
1637         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
1638         DUMMY_READ_VOLATILE,
1639
1640         * device/include/pic16/adc.h: minor prototype modifications and
1641         update,
1642         * device/include/pic16/malloc.h: added GPL notice various
1643         modifications,
1644         * device/include/pic16/stdint.h: NEW, standard header for ints
1645         * device/include/pic16/delay.h: NEW, header for delay functions,
1646         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
1647         delay1mtcy,
1648         * device/include/pic16/signal.h: NEW, header providing helper macros
1649         for implementing signal handlers,
1650         * device/include/pic16/stdio.h: added prototypes for functions,
1651         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
1652         prototypes for stdin and stdout, added macro PUTCHAR to
1653         automatically implement putchar function prototype,
1654         * device/include/pic16/usart.h: modified and updated USART library,
1655         * device/lib/pic16/libio/adc/,
1656         * device/lib/pic16/libio/i2c: some modifications to improve library
1657         performance,
1658         * device/lib/pic16/libc/stdio/: modifications for the new printf*
1659         family of functions,
1660         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
1661         family of functions and other sources,
1662         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
1663         of the PIC18Fxx[28] devices,
1664         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
1665         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
1666         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
1667         _do_cinit function, because the previous failed when local variables
1668         where not placed in the same memory bank,
1669         * device/lib/pic16/libsdcc/char/: various modifications to improve
1670         library performance,
1671         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
1672         information on the new functions of the c library and more...
1673
1674 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1675
1676         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
1677
1678 2005-03-26 Raphael Neider <rneider AT web.de>
1679
1680         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
1681           if condition == CARRY)
1682         * (genCmp): adapted to new genSkipc semantics
1683         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
1684           on rIfx (genCmp was broken)
1685
1686 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1687
1688         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
1689         * src/z80/main.c (_keywords[]),
1690         * src/SDCCglobal.h (struct options),
1691         * src/SDCC.y,
1692         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
1693         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
1694         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
1695         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
1696         always available in leading double underscore form. The C99 support is
1697         mostly missing, but it's a start.
1698         * support/regression/tests/bug-227710.c: fixed nonconforming use of
1699         reserved identifier "__data".
1700
1701 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
1702
1703         * src/mcs51/peeph.def: fixed bug 1170013
1704
1705 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
1706
1707         * device/include/mcs51reg.h: fixed bug 842007
1708
1709 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1710
1711         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
1712         last time.
1713
1714 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1715
1716         * src/port.h (struct PORT),
1717         * src/avr/ralloc.c (avr_assignRegisters),
1718         * src/avr/main.c,
1719         * src/ds390/ralloc.c (ds390_assignRegisters),
1720         * src/ds390/main.c,
1721         * src/hc08/ralloc.c (hc08_assignRegisters),
1722         * src/hc08/main.c,
1723         * src/mcs51/ralloc.c (mcs51_assignRegisters),
1724         * src/mcs51/main.c,
1725         * src/pic/ralloc.c (pic14_assignRegisters),
1726         * src/pic/main.c,
1727         * src/pic16/ralloc.c (pic16_assignRegisters),
1728         * src/pic16/main.c,
1729         * src/xa51/ralloc.c (xa51_assignRegisters),
1730         * src/xa51/main.c,
1731         * src/z80/ralloc.c (z80_assignRegisters),
1732         * src/z80/ralloc.h,
1733         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
1734         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
1735         * src/SDCCcse.h,
1736         * src/SDCCdflow.c (computeDataFlow),
1737         * src/SDCCdflow.h,
1738         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
1739         * src/SDCCloop.h,
1740         * src/SDCCcflow.c (*),
1741         * src/SDCCcflow.h,
1742         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
1743         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
1744         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
1745         immedDom() returning wrong block; probably fixes bug #1160833)
1746
1747 2005-03-20 Borut Razem <borut.razem AT siol.net>
1748
1749         * support/scripts/inc2h.pl: WIN32 port
1750
1751 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
1752
1753         * device/lib/makefile.in: added abs.c and labs.c
1754
1755 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
1756
1757         * device/include/stdint.h: added
1758         * device/lib/abs.c: added
1759         * device/lib/labs.c: added
1760         * device/include/stdlib.h: added abs() and labs() prototypes
1761         * device/lib/libsdcc.lib: added abs and labs
1762         * device/include/float.h,
1763         * device/lib/_fsmul.c,
1764         * device/lib/printf_fast.c,
1765         * device/lib/printf_tiny.c: updated comments
1766
1767 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1768
1769         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
1770         bug #1164313
1771
1772 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1773
1774         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
1775         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
1776
1777 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
1778
1779         * device/lib/printf_large.c: removed inline assembly for portability and
1780           readability. Use printf_fast if speed or size are more important.
1781         * src/pic16/gen.c: removed conditions around use of DEBUGpc
1782         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
1783
1784 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
1785
1786         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
1787         prevent compiler warning
1788
1789 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
1790
1791         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
1792         moved to level 0 and declared as static. Also they are explicit
1793         placed in access bank. This was necessery because some times they
1794         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
1795         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
1796         optimizations. Currently only compare to unsigned char is implemented,
1797         * src/pic16/gen.c: added fReturnIdx array,
1798         * (struct resolvedIfx) is moved to gen.h and made public,
1799         * (struct _G): added sregsAlloc and sregsAllocSet fields,
1800         * (aopForSym): added an optimization to directly store in stack of
1801         the operand of a SEND iCode,
1802         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
1803         but as registers instead (AOP_REG) using the fReturnIdx array,
1804         * (pic16_freeAsmop): remove the freed register from the
1805         _G.sregsAlloc field,
1806         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
1807         a compare of 'WREG',
1808         * (pic16_popGetTempRegCond): changed function prototype, now
1809         function takes also a bitVector argument v which holds the current
1810         set of registers that are allocated for stack access by aopForSym,
1811         registers allocated in aopForSym for accessing stack symbols are not
1812         any more part of the functions usedRegs field,
1813         * (genCall): some times aopOp is called for a stack variable to be
1814         send, aopForSym might perform the push, if this is true make sure
1815         that genCall doesn't push the variable twice by testing _G.resDirect,
1816         * (genFunction): changed testing for unspecified interrupt number
1817         from 256 to INTNO_UNSPEC,
1818         * modified selection scheme of frame pointer generation. Previously
1819         if function did use local registers a frame pointer was generated,
1820         now a frame pointer is generated only if function has arguments
1821         (that need PLUSW2 register access), or has stack arguments, or the
1822         compiler is not instructed to omit the frame pointer,
1823         * (genEndFunction): before restoring local registers that were saved
1824         in the function preamble, also restore the registers that *might*
1825         have been allocated for stack access,
1826         * (genRet): removed some old comments,
1827         * (genCmp, the active (RN's) version): added a call to the
1828         pic16_genCmp_special function to perform the compare with a more
1829         robust and optimized way,
1830         * (genInline): a feature has been added in inline code generation,
1831         which allows a wildcard variable substitution when writing inline
1832         assembly. Code is incomplete and experimental therefore undocumented,
1833         * (genCast): changed order of aopOp for result and right to allow
1834         aopForSym to directly load the result if possible,
1835         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
1836         perform an optimized compare on some selected special occasions,
1837         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
1838         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
1839         generate an IVT any more,
1840         * src/pic16/main.c (pic16_optionsTable): added command line option
1841         --optimize-cmp,
1842         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
1843         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
1844         macros,
1845         * src/pic16/NOTES: Raphael Neider added in list of active developers
1846         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
1847         jumptable_end to prevent bug #,
1848         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
1849         inCond and outCond fields,
1850         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
1851         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
1852         turn off register spilling,
1853         * (packRegsForOneUse): synced with other ports' versions although it
1854         is not used currently,
1855         * (pic16_packRegisters): added an optimization while reading
1856         structure bitfields, some registers may be saved (malloc code is
1857         decreased by 80 bytes)
1858
1859 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
1860
1861         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
1862         left is a bitfield, if yes, then don't optimize assignment. Perhaps
1863         this can be optimized more?
1864
1865 2005-03-10 Raphael Neider <rneider AT web.de>
1866
1867         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
1868           genNearPointerGet): (hopefully) fixed access to bitfields via
1869           pointers (p->bitN = x; and x = p->bitN; failed)
1870
1871 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
1872
1873         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
1874
1875 2005-03-09 Raphael Neider <rneider AT web.de>
1876
1877         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
1878
1879 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
1880
1881         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
1882         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
1883           (regTypeNum): set REG_BIT type if necessary
1884         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
1885         * support/regression/tests/critical.c: check bug 1144613
1886
1887 2005-03-02 Raphael Neider <rneider AT web.de>
1888
1889         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
1890
1891 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1892
1893         * src/avr/ralloc.c (serialRegAssign),
1894         * src/ds390/ralloc.c (serialRegAssign),
1895         * src/hc08/ralloc.c (serialRegAssign),
1896         * src/mcs51/ralloc.c (serialRegAssign),
1897         * src/pic/ralloc.c (serialRegAssign),
1898         * src/pic16/ralloc.c (serialRegAssign),
1899         * src/xa51/ralloc.c (serialRegAssign),
1900         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
1901
1902 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
1903
1904         * src/SDCCast.c (decorateType): fixed bug 1124787
1905
1906 2005-02-20 Hubert Sack <sack AT digiplan.de>
1907         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1908
1909         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
1910         patch #1121755
1911
1912 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1913
1914         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
1915         to keep the correct label reference count when adding/removing references
1916         to labels. A peephole file using this is appended to patch #1144962.
1917
1918 2005-02-14 Raphael Neider <rneider AT web.de>
1919
1920         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
1921         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
1922         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
1923           retrievals of result operand's value on assignment
1924
1925 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
1926
1927         * device/include/pic16/string.h: modified prototype for memccpy()
1928         to memccpy(void *, void *, char, size_t)
1929         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
1930         check whether to omit frame pointer or not,
1931         * (genInline): convert all occurences of "\n" to LF in inline
1932         assembler blocks, this helps formatting the inline text,
1933         * (pic16_loadFSR0): modified prototype,
1934         * (genNearPointerGet, genNearPointerSet): reorganization of code,
1935         removed some 8051 legacy code,
1936         * (genPackBits): enabled handling bitfields exceeding one byte in size,
1937         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
1938         before allocating temporary registers in functions,
1939
1940 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1941
1942         * support/regression/tests/bitvars.c: corrected the "fix"
1943
1944 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1945
1946         * support/regression/tests/bitvars.c,
1947         * support/regression/tests/bitwise.c,
1948         * support/regression/tests/rotate.c: "fixed" problems on Alpha
1949
1950 2005-02-10 Raphael Neider <rneider AT web.de>
1951
1952         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
1953           different size for Alpha
1954         * src/pic16/gen.c (genCmpEq) : improved compare with 0
1955
1956 2005-02-09 Raphael Neider <rneider AT web.de>
1957
1958         * src/SDCC.lex(doPragma) : save and restore warning options as well
1959           (also added new stack plus clone- and copyAndFreeSDCCERRG())
1960         * have #pragma less_pedantic set the errorlevel to WARNING
1961           (fixes #1117001)
1962         * (cloneOptimize) : fixed wrong malloc's size
1963         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
1964           facilitate correct handling of #pragma (save|restore)
1965
1966 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1967
1968         * src/mcs51/gen.c: removed non-standard C nameless struct/union
1969
1970 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
1971
1972         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
1973
1974 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
1975
1976         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
1977
1978 2005-02-02 Raphael Neider <rneider AT web.de>
1979
1980         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
1981         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
1982         * (pic16_storeForReturn): fixed to allow returning function pointers
1983         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
1984         * device/include/pic16/{stddef.h,stdbool.h}: added
1985
1986 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
1987
1988         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
1989
1990 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
1991
1992         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
1993         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
1994          appeared to be required
1995
1996 2005-01-31 Borut Razem <borut.razem AT siol.net>
1997
1998         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
1999           include/mcs51 and include/z80 directories to the package
2000
2001 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2002
2003         * src/hc08/gen.c (genFunction): fixed bug #1112752
2004
2005 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2006
2007         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
2008
2009 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2010
2011         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
2012
2013 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
2014
2015         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
2016
2017 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
2018
2019         * device/include/c8051fxxx.h: removed these 6 files
2020         * device/include/mcs51/c8051fxxx.h: added these 11 new files
2021
2022 2005-01-26 Raphael Neider <rneider AT web.de>
2023
2024         * src/pic16/gen.c (genAssign): fixed assignment from longs
2025           in codespace (were cut to three bytes)
2026         * (genDummyRead): implemented (except for CODESPACE...),
2027           fixed bug #1108575
2028         * src/pic16/glue.c (emitStatistics): beautified
2029         * device/lib/pic16/libm/Makefile: added include path
2030
2031 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2032
2033         * src/z80/gen.c (aopPut): fixed bug #1103902
2034
2035 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2036
2037         * device/lib/expf.c: fixed bug #1095792
2038
2039 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
2040
2041         * device/lib/pic16/libm: added Math library sources
2042
2043 2005-01-24 Raphael Neider <rneider AT web.de>
2044
2045         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
2046           to enable upcast to pCodeOpReg2 (there is no type tag to
2047           differenciate the two and pic16_popGet2p cast into PCOR2)
2048         * src/pic16/main.c (_process_pragma): fixed another malloc bug
2049           (sizeof(sectNames) changed to sizeof(sectName))
2050           Both patches fix segfaults under MinGW.
2051
2052 2005-01-23 Raphael Neider <rneider AT web.de>
2053
2054         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
2055           Safe_[mc]?alloc()'ed variables
2056         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
2057           of (byte sized) temporaries (assign them to WREG for now)
2058         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
2059           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
2060           this might fix SIGSEGVs on MinGW...
2061         * src/SDCCopt.c (killDeadCode): restored original behaviour
2062           (volatile operands might get thrown away though)
2063
2064 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
2065
2066         * src/pic16/gen.c: fixed bug #1106975,
2067         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
2068         pointer update, INTCON is saved, global interrupts are disabled and
2069         restored after updateing TOS.
2070         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
2071         * added function attribute 'shadowregs' to take advantage of shadow
2072         registers,
2073         * added function attribute 'wparam' as an alternative to the wparam
2074         pragma,
2075         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
2076         user declares a non-ISR function as 'shadowregs',
2077         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
2078
2079 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
2080
2081         * .version: bumped version number to 2.4.8
2082         * device/lib/pic16/pics.all: list of PIC18F devices supported by
2083         pic16 port,
2084         * device/lib/pic16/libio/i2c/: I2C module support library,
2085         * device/include/pic16/i2c.h: I2C support library header,
2086         * device/lib/pic16/libc/stdio/: standard IO support sources,
2087         * (printf_small.c): printf_small() source, supports float print,
2088         * (printf_tiny.c): printf_tiny() source, does not support floats,
2089         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
2090         enable global optimizations for entire library source, other
2091         Makefiles in the source tree are also modified to reflect this,
2092         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
2093         function,
2094         * doc/sdccman.lyx: updated to reflect new changes,
2095         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
2096         sym->onStack if-case,
2097         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
2098         sbit, idata, _idata, xdata, _xdata,
2099         * added pragma library, to link an external library, (see doc),
2100         * removed command line options, --pomit-config-words, --pomit-ivt,
2101         --pleave-reset-vector,
2102         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
2103         when calling assembler to reflect memory model used, also define
2104         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
2105         reflect stack model used,
2106         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
2107         on stack return NULL,
2108
2109 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2110
2111         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
2112           of the operands is volatile. Fixes #1020220
2113
2114 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2115
2116         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
2117         * (OptimizeRegUsage): make sure that there is really no other flow where
2118           the first pCode is used
2119
2120 2005-01-22 Raphael Neider <rneider AT web.de>
2121
2122         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
2123           to fix #1106967 (pCode->seq are not set up correctly)
2124
2125 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2126
2127         * src/SDCCglue.c (glue): make sure code area is declared before the
2128         static initialization area.
2129
2130 2005-01-21 Raphael Neider <rneider AT web.de>
2131
2132         * device/lib/Makefile.in: fixed test for pic16 install dir
2133         * device/lib/pic16/*/Makefile*: modified compile flags to enable
2134           optimizations
2135         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
2136           added --optimize-goto compiler switch and pragma wparam documentation
2137         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
2138         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
2139           and PRODH closing bug #1071770 (peephole optimizer)
2140
2141 2005-01-19 Raphael Neider <rneider AT web.de>
2142
2143         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
2144           cmdLine buffers (used when calling sdcpp...) are large enough
2145           (MAX_PATH=256 truncates arguments leading to system halts when
2146           used in MinGW...)
2147         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
2148         * (genUminus): rewritten to for efficiency
2149         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
2150           used uninitialized in some cases)
2151         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
2152           copy the third byte from the int -- now assumes 0x80 (data memory)
2153         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
2154           operands (genAddLit expects the iCode's operands to swapped as
2155           well), fixed leftover bytes (crashed for short left operands)
2156         * (pic16_genMinusDec): performance improvements, removed false
2157           PIC14 emitSKPNCs
2158         * (pic16_genMinus): fixed to cope with differently sized operands
2159         * src/pic16/glue.c (pic16_glue): added new banksel optimization
2160           for --obanksel > 1
2161         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
2162         * src/pic16/graph.[ch]: implementation of directed graphs, used by
2163           new banksel optimization
2164         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
2165           analysis for temporary registers (segfaults...)
2166         * src/pic16/peeph.def: added rule
2167
2168 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
2169
2170         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
2171         which converts a float number to its ASCII representation
2172         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
2173         functions to convert the fractional and integer part of a float to ASCII,
2174         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
2175         realloc.c): added _MALLOC_SPEC to explicit place variables in data
2176         ram
2177         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
2178         _STATMEM macros,
2179         * device/include/pic16/adc.h: added GPL info,
2180         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
2181         a pCodeOp as tested operand,
2182         * (genNearPointerGet): optimized bit testing, does not use
2183         intermediate register for bit value, test directly instead with
2184         BTFSS, BTFSC, works only for single bits,
2185         * (genpic16Code): dump the name of the iCode in the asm,
2186         * src/pic16/ralloc.c (decodeOp): removed static declaration and
2187         renamed to pic16_decodeOp,
2188         * (serialRegAssign): do not allocate a temporary register for iCode
2189         sequences that test a single bit for 1/0
2190
2191 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
2192
2193         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
2194         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
2195         access stack and frame pointers. They are initially assigned to
2196         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
2197         accessing SFRs. Updated all occurences of modification of stack or
2198         frame pointer in gen.c and pcode.c,
2199         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
2200         assigning of a literal value to pointers,
2201         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
2202         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
2203         selected
2204
2205 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
2206
2207         * doc/sdccman.lyx: update documentation about stack pragma, added
2208         some info for stack memory models
2209
2210 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2211
2212         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
2213
2214 2005-01-08 Raphael Neider <rneider AT web.de>
2215
2216         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
2217           udata sections to fix bug #1097823
2218
2219 2005-01-05 Raphael Neider <rneider AT web.de>
2220
2221         * src/pic16/gen.c (genGenericShift): added handling of differently
2222           sized left operand and result
2223
2224 2005-01-04 Raphael Neider <rneider AT web.de>
2225
2226         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
2227         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
2228           to hold the condition bit)
2229         * added new version of genCmp (old code available via #define)
2230         * added new version of genShiftLeft/genShiftRight in a generic
2231           way, now supports shifting by negative values
2232         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
2233           shiftCount (expected by genGenericShift)
2234         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
2235         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
2236           dump
2237         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
2238           is an invalid literal too...)
2239
2240 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
2241
2242         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
2243         from Raphael Neider,
2244         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
2245         for 8-bit literals. This fixes some literal operands which are sign
2246         extended to 16-bits ints when instruction needs only 8-bits.
2247
2248 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
2249
2250         * device/lib/logf.c: added mcs51 assembly version
2251         * device/lib/expf.c: added mcs51 assembly version
2252         * device/lib/_logexpf.c: new shared asm code for expf and logf
2253         * device/include/math.h: add defines for assembly math library
2254         * device/lib/Makefile.in: build new _logexpf.c
2255         * device/lib/libfloat.lib: use new _logexpf.c
2256
2257 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2258
2259         * src/pic/device.c
2260         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
2261           device types which have less than 0x7f registers.
2262
2263 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2264
2265         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
2266
2267 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2268
2269         * device/lib/printf_fast.c: only build on supported arch.
2270         * device/lib/printf_tiny.c: only build on supported arch.
2271         * device/lib/printf_fast_f.c: only build if asm float lib
2272         * device/lib/_fsget1arg.c: only build if asm float lib
2273         * device/lib/_fsget2args.c: only build if asm float lib
2274         * device/lib/_fsnormalize.c: only build if asm float lib
2275         * device/lib/_fsreturnval.c: only build if asm float lib
2276         * device/lib/_fsrshift.c: only build if asm float lib
2277         * device/lib/_fsswapargs.c: only build if asm float lib
2278         * device/include/stdio.h: don't provide print_fast,
2279           print_fast_f, print_tiny prototypes if --xstack used
2280
2281 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
2282
2283         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
2284         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
2285           to the SOURCES
2286
2287 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2288
2289         * device/lib/printf_fast_f.c: same as printf_fast, but
2290           with floating point enabled
2291         * device/lib/printf_fast.c: minor tweaks
2292         * device/include/stdio.h: add printf_fast_f
2293
2294 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2295
2296         * src/SDCCmain.c: make --float-reent default for mcs51
2297         * device/lib/_fsadd.c: added mcs51 assembly version
2298         * device/lib/_fssub.c: added mcs51 assembly version
2299         * device/lib/_fsmul.c: added mcs51 assembly version
2300         * device/lib/_fsdiv.c: added mcs51 assembly version
2301         * device/lib/_fseq.c: added mcs51 assembly version
2302         * device/lib/_fsneq.c: added mcs51 assembly version
2303         * device/lib/_fsgt.c: added mcs51 assembly version
2304         * device/lib/_fslt.c: added mcs51 assembly version
2305         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
2306         * device/lib/Makefile.in: add _fscmp to build
2307         * device/lib/libfloat.lib: add _fscmp to build
2308
2309 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2310
2311         * device/lib/_fs2slong.c: added mcs51 assembly version
2312         * device/lib/_fs2sint.c: added mcs51 assembly version
2313         * device/lib/_fs2schar.c: added mcs51 assembly version
2314         * device/lib/_fs2ulong.c: added mcs51 assembly version
2315         * device/lib/_fs2uint.c: added mcs51 assembly version
2316         * device/lib/_fs2uchar.c: added mcs51 assembly version
2317         * device/lib/_slong2fs.c: added mcs51 assembly version
2318         * device/lib/_sint2fs.c: added mcs51 assembly version
2319         * device/lib/_schar2fs.c: added mcs51 assembly version
2320         * device/lib/_ulong2fs.c: added mcs51 assembly version
2321         * device/lib/_uint2fs.c: added mcs51 assembly version
2322         * device/lib/_uchar2fs.c: added mcs51 assembly version
2323         * device/include/float.h: added #define to select asm vs c
2324
2325 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
2326
2327         * device/lib/printf_fast.c: improvements to float output
2328         * device/include/float.h: add defines for assembly float library
2329         * device/lib/_fsget1arg.c: receive 1 float arg
2330         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
2331         * device/lib/_fsnormalize.c: normalize a float
2332         * device/lib/_fsreturnval.c: return float, various helper routines
2333         * device/lib/_fsrshift.c: right shift a float's mantissa
2334         * device/lib/_fsswapargs.c: swap 2 floats
2335         * device/lib/Makefile.in: build these 6 new files for mcs51
2336         * device/lib/libfloat.lib: add these 6 files to the library
2337
2338 2004-12-26 Borut Razem <borut.razem AT siol.net>
2339
2340         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
2341           built by gcc 3.4.2
2342
2343 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
2344
2345         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
2346           and fully reentrant and register bank neutral.
2347         * device/lib/printf_fast.c: added float (not enabled by default),
2348           added compact/slower integer (also not enabled by default),
2349           improved size/speed of fast integer code, other minor changes
2350         * device/include/stdio.h, device/lib/Makefile.in,
2351           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
2352
2353 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
2354
2355         * src/pic16/pcode.c: declaring variables other than at the start of a
2356           block is not supported in C by VC6.
2357
2358 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
2359
2360         * applied a previous patch from Raphael Neider that wasn't included
2361         in the previous commits, which fixes infinite loops within jumptable
2362         improvements,
2363         * made some fixes that previous patches introduced
2364
2365 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
2366
2367         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
2368         that fixes an issue with AOP_PCODE asmop's offset,
2369         * (pic16_popCopyReg): update instance field too,
2370         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
2371         function of pic port,
2372         * (genCmp, genAnd, genAssign),
2373         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
2374
2375 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
2376
2377         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
2378         variables initial values to idata section,
2379         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
2380         variables in some functions. This utilizes parmBytes field of iCode
2381         structure to hold the offset of the variable in stack. (might be
2382         able to use the stack field too?)
2383         * applied patch from Raphael Neider # ### , # ###
2384         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
2385         variable initial values in idata section,
2386         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
2387         for static variables with initial value
2388         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
2389         applied fix in while loop from Raphael Neider.
2390
2391 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
2392
2393         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
2394         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
2395         * src/ds390/ralloc.c (serialRegAssign): spill bits
2396         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
2397         * support/Util/SDCCerr.c,
2398         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
2399         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
2400         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
2401
2402 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
2403
2404         * device/include/sdcc-lib.h: inserted LGPL, added includes
2405           asm/ds390/features.h and asm/mcs51/features.h
2406         * device/include/asm/default/features.h,
2407         * device/include/asm/gbz80/features.h,
2408         * device/include/asm/z80/features.h: added empty _AUTOMEM
2409           and _STATMEM
2410         * device/include/asm/ds390/features.h,
2411         * device/include/asm/mcs51/features.h: added files with defines for
2412           _AUTOMEM and _STATMEM indicating automatic and static storage class
2413         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
2414         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
2415         * src/SDCCicode.c (geniCodeCast),
2416         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
2417         * src/SDCCloop.c (loopInduction): removed unused variable lr
2418         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
2419           to convertToFcall to include char modulo (RFE 1065037), added check
2420           if left operand is unsigned and use abs of literal value
2421         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
2422           as it doesn't work after conversion from peephole.def to peephole.rul
2423         * src/mcs51/gen.c (toBoolean): added check for size,
2424           (genModOneByte): optimized code for signed char modulo a literal
2425           power of 2 (thanks to Hubert Sack),
2426           (genRRC): removed unnecessary "clr c",
2427           (genRLC): replaced "add a,acc" with cheaper "rlc a"
2428         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
2429           jump optimization,
2430           swapped rules 256.c and 256.d,
2431           extended 256.d by using new multiple checks (thanks Erik),
2432           added rules 256.e and 256.f,
2433           updated rule 261.a and 261.b to new generated code
2434         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
2435
2436 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2437
2438         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
2439           induction related bugs, including first part of bug #1074377
2440
2441 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
2442
2443         * applied patch from bug-report #1076292,
2444         * applied patches for genAnd and Goto-optimizations for Raphael
2445         Neider,
2446         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
2447         dump a less iCode information,
2448         * src/pic16/device.h (pic16_options_t): added field debgen,
2449         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
2450         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
2451         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
2452         puclic,
2453         * (various functions): added macros FENTRY and FENTRY2 to functions,
2454         to emit function prologue,
2455         * (various functions): fixed indentation,
2456         * (genNearPointerGet): fixed loading of FSR0,
2457         * (genPackBits): applied patch from Raphael Neider to fix updating
2458         of FSR0 and touching only the modified bits,
2459         * src/pic16/genarith.c (various functions): added macros FENTRY to
2460         emit function prologue in comments,
2461         * src/pic16/pcode.h: added functions debugf2, debugf3,
2462         * src/pic16/ralloc.c: partial fix for packForPush caused
2463         segmentation fault,
2464
2465 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2466
2467         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
2468           <stsp AT users.sourceforge.net> with reversed byte order
2469         * support/regression/tests/rotate.c: added (ds390 skips some tests)
2470
2471 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2472
2473         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
2474           bug #1074377
2475         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
2476         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
2477
2478 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2479
2480         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
2481
2482 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2483
2484         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
2485           conditions,
2486           (setFromConditionArgs): friendly operand parser for peephole rules,
2487           (operandBaseName, operandsNotRelated): new peephole condition
2488           "operandsNotRelated" -- similar to "operandsNotSame", but takes
2489           architecture specific register naming into account, handles n-way
2490           comparisons, and supports quoted literals
2491         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
2492
2493 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2494
2495         * src/mcs51/peeph.def: fixed bug #1076940
2496
2497 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2498
2499         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
2500
2501 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2502
2503         Adding support for replacing ljmps with sjmps in jumptables
2504         generated for switch statements. For now you need to set the
2505         environment variable SDCC_SJMP_JUMPTABLE to enable this.
2506         Now 4 algorithms for mcs51 jumptable generation are used:
2507         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
2508         addresses loaded pc-relative for up to 112 cases and stack-pushing
2509         target addresses loaded with offset from dptr for up to 256 cases.
2510
2511         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
2512         * src/mcs51/main.c: adapted constants for switch table generation
2513         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
2514
2515 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
2516
2517         * device/lib/printf_large.c (_print_format): fixed bug 1073386
2518         * support/regression/tests/bug1057979.c: added test for bug 1073386
2519
2520 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2521
2522         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
2523         compilers
2524
2525 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2526
2527         * src/pic16/device.h,
2528         * src/pic16/genarith.c,
2529         * src/pic16/glue.c,
2530         * src/pic16/main.c,
2531         * src/pic16/pcode.c: applied patches #1068154 and #1070213
2532
2533 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
2534
2535         Large cummulative patch for pic16 port.
2536         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
2537         to call when a stack overflow occurs,
2538         * (malloc.h): added CVS Id tag,
2539         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
2540         variable,
2541         * added libc directory. The current version of LibC contains string
2542         functions, ctype functions and macros and some functions of the
2543         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
2544         be extensively tested in the future. Standard disclaimer here.
2545         Library is not automatically build yet. But one can build it by
2546         invoking 'make' inside the libc directory.
2547         * added ADC library under libio. Preliminary version yet.
2548
2549         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
2550         * src/pic16/gen.c (aopForRemat): asmop size is filled by
2551         aopForRemat() now and not by pic16_aopOp(),
2552         * (pic16_popGetTempReg): removed warning messgae when allocating
2553         temporary registers, its a buggy feature and will be removed,
2554         * (pic16_popGet): set register instance field in AOP_CRY,
2555         * (pic16_outBitC): fixed for results in size greater than 1,
2556         * (genUminusFloat): fixed for pic16, ported code from mcs51,
2557         * (pic16_storeForReturn): optimized return of 0,
2558         * (genCmp): experimental code for new genCmp which uses PIC18's
2559         special compare&skip instructions. Initial tests fail some times
2560         with variables grater than 1 byte in size, so new code is disabled,
2561         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
2562         a single bit,
2563         * (genCast): began a fix to optimize the casting of a bit to another
2564         bit, now assigning a bitfield to another bitfield will fail, sorry,
2565         * src/pic16/main.c: disabled the use of lr-support feature,
2566         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
2567         * added some function prototypes, added function _debugf prototype,
2568         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
2569         bits with offset (case PO_GPR_BIT),
2570         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
2571         command line,
2572         * (isBankInstruction): modified to return 0 for no banking instruction,
2573         and 1 for banking instruction,
2574         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
2575         caused stop processing pCodes after a inline assembly block,
2576         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
2577         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
2578         registers when it shouldn't,
2579         * src/pic16/ralloc.c (allocReg): add preliminary support for
2580         supporting a limited set of temporary registers,
2581
2582 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2583
2584         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
2585           genDataPointerSet): ensure assignments always copy in MSB to LSB
2586           order,
2587           (loadRegFromAop): recognize CLRH optimization,
2588           (genFunction): optimize RECEIVE iCodes in reentrant functions
2589
2590 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2591
2592         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
2593           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
2594           selected.
2595         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
2596         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
2597           contiguous with data
2598
2599 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2600
2601         * device/lib/_gptrget.c (_gptrget),
2602         * device/lib/_gptrgetc.c (_gptrgetc),
2603         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
2604           instead of sjmp to ret
2605         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
2606           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
2607
2608 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
2609
2610         * .version: bumped version to 2.4.7
2611         * device/lib/_gptrget.c (_gptrget): is now _naked
2612         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
2613         * device/lib/_gptrput.c (_gptrput): is now _naked
2614         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
2615           (createFunction): fixed xstack
2616         * src/SDCCglue.c (emitMaps): set allocation required for bit area
2617         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
2618           or bit either,
2619           (geniCodeCritical): store original interrupt state in an iTemp bit
2620           var unless stack-auto
2621         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
2622         * src/SDCCmain.c (setIncludePath): added include/target to search path
2623         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
2624         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
2625           prototype,
2626           (processFuncArgs): put bit vars in bit area
2627         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
2628           unsaveRBank): fixed xstack,
2629           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
2630           (genFunction, genEndFunction): fixed xstack,
2631           (genAssign): optimization don't walk backwards through mem
2632         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
2633         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
2634         * support/regression/Makefile: also make library (for stack-auto) when
2635           making "all" and added "test-mcs51-xstack-auto"
2636         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
2637         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
2638         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
2639         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
2640         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
2641           make-library by MAKE_LIBRARY
2642         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
2643           regression tests for xstack
2644         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
2645         * support/regression/tests/critical.c: test for critical on mcs51
2646
2647 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2648
2649         * support/regression/ports/ucz80/spec.mk: use include and lib files from
2650           built version of sdcc instead of installed version
2651
2652 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
2653
2654         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
2655         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
2656           vprintf.c now
2657         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
2658         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
2659           WARNING: remove device/lib/build/z80/printf.o by hand when
2660           updating from previous build!
2661         * device/lib/z80/printf.c: updated comment
2662         * support/regression/tests/bug1057979.c: test all ports now
2663         * support/regression/tests/bug1065458.c: file added
2664
2665 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2666
2667         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
2668           *_start and *_end symbols for static functions
2669
2670 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
2671
2672         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
2673           and search crt0.o in all library paths,
2674           (setIncludePath): proper handling of --nostdinc,
2675           (setLibPath): proper handling of --nostdlib
2676         * support/regression/Makefile,
2677         * support/regression/ports/ds390/spec.mk,
2678         * support/regression/ports/gbz80/spec.mk,
2679         * support/regression/ports/hc08/spec.mk,
2680         * support/regression/ports/mcs51/spec.mk,
2681         * support/regression/ports/mcs51-large/spec.mk,
2682         * support/regression/ports/mcs51-stack-auto/spec.mk,
2683         * support/regression/ports/z80/spec.mk: use include and lib files from
2684           built version of sdcc instead of installed version
2685         * doc/sdccman.lyx: fixed typo in --nostdinc
2686
2687 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
2688
2689         * src/pic/pcode.c,
2690         * src/pic/device.c,
2691         * src/pic/ralloc.c,
2692         * src/pic/gen.c : added support to generate code for struct bit fields.
2693
2694 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
2695
2696         * as/xa51/xa_version.h,
2697         * device/include/errno.h,
2698         * device/include/regc515c.h,
2699         * device/lib/_itoa.c,
2700         * device/lib/_ltoa.c,
2701         * device/lib/ser_ir_cts_rts.c,
2702         * sim/ucsim/xa.src/glob.cc,
2703         * sim/ucsim/xa.src/inst_gen.cc,
2704         * sim/ucsim/xa.src/xa_bit.cc,
2705         * sim/ucsim/xa.src/xa_sfr.cc,
2706         * sim/ucsim/z80.src/inst_dd.cc,
2707         * sim/ucsim/z80.src/inst_fdcb.cc,
2708         * support/scripts/keil2sdcc.pl,
2709         * src/pic16/pic16.dsp,
2710         * src/pic16/pic16a.dsp: corrected cvs line endings
2711         * device/lib/printf_large.c: fixed bug 1057979
2712         * src/pic16/gen.c: fixed non-C standard code
2713         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
2714         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
2715         * support/regression/ports/mcs51/support.c: reload T1 asap
2716         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
2717           pdata use and clear idata startup behaviour
2718         * support/regression/tests/bug1057979.c: added
2719
2720 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
2721
2722         * device/examples/ds390/ow390/ad26.h,
2723         * device/examples/ds390/ow390/cnt1d.h,
2724         * device/examples/ds390/ow390/crcutil.c,
2725         * device/examples/ds390/ow390/ownet.h,
2726         * device/examples/ds390/ow390/owsesu.c,
2727         * device/examples/ds390/ow390/swt12.h,
2728         * device/examples/ds390/ow390/swtoper.c,
2729         * device/examples/ds390/ow390/temp10.h,
2730         * device/examples/ds390/ow390/thermodl.c,
2731         * device/examples/ds390/tinitalk/tinitalk.dsp,
2732         * device/examples/ds390/tinitalk/tinitalk.dsw,
2733         * device/examples/mcs51/clock/hw.h,
2734         * device/examples/mcs51/simple2/go.bat,
2735         * device/examples/serialcomm/windows/serial.h,
2736         * device/examples/xa51/dummy.c,
2737         * device/examples/xa51/hello.c,
2738         * device/include/80c51xa.h,
2739         * device/include/at89x051.h: corrected cvs line endings
2740
2741 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
2742
2743         * src/pic16/main.c (options): added command line --gstack, to trace
2744         stack over/under flows,
2745         * added pragma 'wparam' to allow passing first byte of function
2746         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
2747         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
2748         call to __gstack_test function and sets up the symbol as extern,
2749         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
2750         * popaop): added call to pic16_testStackOverflow,
2751         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
2752         wparamList list,
2753         * (genCall, genPcall): now all parameters are passed via stack
2754         except in functions that are pass to wparam pragma in which WREG is
2755         used too,
2756         * (genPcall): REENTRANT flag is checked to see if variable prototype
2757         contains reentrant keyword, don't call a non-reentrant function, via
2758         a reentrant function pointer or vice versa, functions are never
2759         passed via WREG,
2760         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
2761         D.Winkler,
2762         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
2763         SIGSEGV when accessing a NULL register stucture,
2764         * (pic16_printGPointerType): modified to handle UPPER modifier for
2765         function initializers, changed prototype of function to simpler one,
2766         * (pic16_printIvalFuncPtr): check to see if function is already
2767         added in externs list,
2768         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
2769         optimized a move from W to SFR with a move to the same register
2770         later after a CALL,
2771         * device/lib/pic16/debug: NEW directory, contains debug features
2772         which are enabled when linking with libdebug.lib, currently command
2773         line option --gstack enables stack pointer tracing for over/under
2774         flow, corresponding sources are in debug/gstack
2775
2776 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
2777
2778         * doc/sdccman.lyx: updated SDCC version,
2779         * (PIC16 port): update list of command line options,
2780         * src/pic16/device.h (structure pic16_options_t): added field gstack
2781         to enable stack overflow tracing on push/pops,
2782         * src/pic16/device.c (statistics structure): added statistics
2783         structure,
2784         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
2785         pic16_dump_int_registers): increase statistics counters for each
2786         * variable which is encountered
2787         * (pic16_dump_usection): emit each .udata variable to its own udata
2788         section,
2789         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
2790         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
2791         parameters via stack, otherwise use old scheme,
2792         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
2793         assembler output file,
2794         * src/pic16/main.c: added command line options --gstack to enable
2795         push/pop tracing for stack overflow,
2796         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
2797         instructions): added size of each instruction,
2798         * (pic16_countInstruction): estimate size of instructions in
2799         the_pFile list, inline assembly blocks are not counted,
2800         * (pic16_FixRegisterBanking): trace previous register usage, when
2801         banksel optimizations is greater than 0, don't emit a redudant
2802         banksel directive,
2803
2804 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
2805
2806         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
2807         * src/pic16/ralloc.c : applied same fix for pic16.
2808         * src/pic/gen.c : tidied it up a little.
2809
2810 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2811
2812         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
2813         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
2814
2815 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2816
2817         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
2818
2819 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2820
2821         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
2822         non-reentrant function __modsint in the interrupt function (thus
2823         corrupting math operations during serial I/O)
2824         * device/lib/ser_ir.c: as above, changed buffersize
2825         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
2826         256.c,d for zeroing
2827         * doc/Makefile: added option -t for rsync
2828
2829 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2830
2831         * src/SDCCast.h (struct ast),
2832         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
2833
2834 2004-10-20 Borut Razem <borut.razem AT siol.net>
2835
2836         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
2837         package
2838
2839 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
2840
2841         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
2842         makefile targets,
2843         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
2844         support functions to replace long sequences of MOVFF's from access
2845         bank registers to stack and vice versa,
2846         * src/pic16/device.h: added new field opt_flags, where optimization
2847         flags can be set to enable certain features,
2848         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
2849         * pBlock, (genFunction, genEndFunction): surroung loop for
2850         saving/loading used registers in stack with PC_INFO pCodes,
2851         INF_LREGS. Code in between can then be optimized by pCode optimizer
2852         to support function calls,
2853         * (genDataPointerSet): fixed bug which loaded float fields in
2854         structures with corrupt data,
2855         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
2856         in a standard way debug info on stderr. Feature used for developing
2857         and debugging only,
2858         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
2859         obsolete chunks of code,
2860         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
2861         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
2862         * pic16/src/pcode.c (pic16_newpCodeInfo,
2863         * (pic16_newpCodeOpLocalRegs),
2864         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
2865         feature,
2866         * (pic16_pCodeConstString): printing of the initial value of a
2867         symbol as a comment is inhibited since parsing was already done by
2868         copyStr and output is corrupt,
2869         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
2870
2871 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2872
2873         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
2874
2875 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
2876
2877         * as/mcs51/lkarea.c: removed old K&R style,
2878           (lnksect): changed check on boundary error,
2879           (lnksect2): changed check on boundary error,
2880           (lnksect2): extend XSTK to end of page if size = 1
2881         * as/mcs51/lkmain.c: removed old K&R style,
2882           (Areas51): create l_IRAM symbol
2883         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
2884         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
2885           model-mcs51-stack-auto, added model-mcs51-xstack-auto
2886         * device/lib/_mullong.c: added version to be compiled with xstack
2887         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
2888         * device/lib/mcs51/crtxclear.asm: clear pdata as well
2889         * device/lib/mcs51/crtxstack.asm: fixed comment
2890         * src/SDCCglue.c: maxInterrupts defaults to 0,
2891           (emitMaps): added pdata,
2892           (createInterruptVect): (re)moved default,
2893           (glue): added pdata,
2894           (glue): moved __start__xstack to XSTK with default size 1
2895         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
2896           and options.float_rent when options.stackAuto is set,
2897           (linkEdit): only write XDATA_NAME if provided on command line
2898         * src/SDCCmem.h,
2899         * src/SDCCmem.c: added pdata
2900         * src/port.h: added pdata_name to PORT
2901         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
2902           (saveRegisters, unsaveRegisters): removed usage of B,
2903           (genMinus): fixed accumulator clash,
2904           (genJumpTab): added comment, this needs another look
2905         * src/mcs51/gen.c: added check for "B in use" paranoia,
2906           added pushB() and popB()
2907         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
2908           chance
2909         * src/avr/main.c,
2910         * src/ds390/main.c,
2911         * src/hc08/main.c,
2912         * src/mcs51/main.c,
2913         * src/pic/main.c,
2914         * src/pic16/main.c,
2915         * src/xa51/main.c,
2916         * src/z80/main.c: (reset_regparms) made void parameter explicit and
2917           added PSEG (PAG,XDATA) or NULL to port specifier
2918         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
2919         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
2920           (_mcs51_genInitStartup): removed __start__xstack equ,
2921           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
2922         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
2923         * src/z80/gen.c (_rleAppend): fixed warnings
2924         * support/regression/tests/zeropad.c: added pdata test
2925         * .version: bumped to 2.4.6
2926
2927 2004-10-17 Borut Razem <borut.razem AT siol.net>
2928
2929         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
2930         as a part of nightly build
2931
2932 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
2933
2934         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
2935         WREG holds the first byte function parameters,
2936         * (aopForSym): take special case for symbols which are in FARSPACE
2937         but in CODESPACE too,
2938         * (assignResultValue): modified to take into account _G.useWreg,
2939         * (genCall): don't use wreg for parameter passing when function is
2940         declared as reentrant, too, added optimization INCF to stack
2941         pointer when stack parameter count is 1,
2942         * (genFunction, genEndFunction): refurnished and fixed to not using
2943         wreg for passing parameters when function has varargs or is
2944         reentrant, fixed bug with symbol name compare for generating
2945         functions in absolute address,
2946         * (pic16_storeForReturn): refurnished,
2947         * (genCmp): began writing a new version of the function, not ready
2948         yet, therefore it is disabled,
2949         * (genAssign): do not read code memory when assigning a function to
2950         a pointer function,
2951         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
2952         array of characters, not pointer,
2953         * (pic16initialComments): in debug mode emit an .ident directive for
2954         the assembler,
2955         * (_process_pragma): emit a new warning type (internal to pic16)
2956         when setting stack to default length, emit a similar warning when
2957         placing a function at absolute address and address is not word aligned
2958         * (_pic16_parseOptions): added 'return TRUE' statement,
2959         * (_pic16_linkEdit): if compiling a source, then add the source's
2960         file object, first in the list of objects to link,
2961
2962 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
2963
2964         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
2965         * src/pic/main.c : removed VC warning.
2966         * src/pic/gen.c : changed comment.
2967
2968 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
2969
2970         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
2971         reference to a deprecated symbol _GPTRREG was causing failure to
2972         link. Thanks G. M. Gallant for the info.
2973
2974 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
2975
2976         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
2977         comments for Bugs item #954788.
2978
2979 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
2980
2981         * src/pic16/device.c (pic16_dump_gsection,
2982         * pic16_groupRegistersInSection): handle symbols declared to be in
2983         access bank differently,
2984         * src/pic16/gen.c (struct _G): added field resDirect,
2985         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
2986         send values read from stack directly to result and don't allocate
2987         temporary values,
2988         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
2989         same registers,
2990         * (pic16_sameRegsOfs): NEW,
2991         * (freeAsmop): if _G.resDirect is set then do not mark registers as
2992         free because they were not allocated from temporary pool,
2993         * pic16_popRegFromString): workaround to fix a problem with
2994         allocating variables twice or never,
2995         * (genGenPointerGet): using PRODL instead of FSR0H,
2996         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
2997         instead of FSR0H,
2998         * (genAssign): take advantage of the _G.resDirect flag,
2999         * (genCast): around line 11844, use mov2f instead of directly
3000         MOVFF'ing between operands to account for literal values,
3001         * src/pic16/genutils.c: some new debug functions for gpsim have been
3002         added,
3003         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
3004         float with integer part only,
3005         * src/pic16/main.c (_process_pragma): handle pragma udata access to
3006         place variables in access bank
3007         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
3008         updated sources to reflect recent changes in gen.c
3009
3010 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
3011
3012         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
3013         sources that searched for headers in installation path, now the
3014         device/include/pic16 is used,
3015         * src/pic16/glue.c (pic16glue),
3016         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
3017         .line directives if not in debug mode, this suppresses assembler's
3018         warnings for ignored directives
3019
3020 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
3021
3022         * src/port.h: made reset_regparms prototype void parameter explicit.
3023         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
3024         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
3025         * doc/sdccman.lyx: documented warning disabling and how to use
3026           printf_large to make it print floats.
3027         * device/include/stdbool.h: NEW
3028         * device/lib/_atof.c,
3029         * device/lib/_divuint.c,
3030         * device/lib/_divulong.c,
3031         * device/lib/expf.c,
3032         * device/lib/printf_large.c,
3033         * device/lib/sincosf.c,
3034         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
3035         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
3036           a completely reentrant lib.
3037
3038 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
3039
3040         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
3041         * device/include/pic16/stdio.h: fixed bug with colon
3042
3043 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
3044
3045         * device/include/pic16/stdio.h,
3046         * device/include/pic16/stdlib.h,
3047         * device/include/pic16/math.h: NEW
3048         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
3049         declared as _naked to reduce overhead
3050         * device/lib/Makefile.in (target port-specific-objects-pic16):
3051         changed * to *.* so to ignore the CVS directory,
3052         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
3053         stacked variables back in stack,
3054         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
3055         corruption
3056
3057 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
3058
3059         * .version: bumped version number to 2.4.5
3060         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
3061         * support/Util/SDCCerr.c (messages structure): added entry for
3062         W_POSSBUG2
3063
3064         Large cumulative patch for pic16 port and libraries.
3065         * device/include/pic16/sdcc-lib.h,
3066         * device/include/pic16/stdarg.h,
3067         * device/include/asm/pic16/features.h,
3068         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
3069         * device/include/pic16/float.h: changes reentrant keyword with
3070         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
3071         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
3072         updated target build-libraries to include objects from gptr,
3073         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
3074         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
3075         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
3076         all function headings,
3077         * src/SDCCmain.c: added global parameter userIncDirsSet,
3078         * (parseCmdLine): when option -I is encountered add directory to
3079         userIncDirsSet too,
3080         * src/version.awk: added space between control and long,
3081         * src/pic16/NOTES: added some notes for the port,
3082         * src/pic16/gen.c: added prototype for mov2fp function,
3083         * (fReturnpic16[]): properly named return value registers,
3084         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
3085         * (aopForSym): added code to handle symbols with onStack flag set,
3086         symbols onStack are allocated PTRSIZE bytes,
3087         * (aopFreeAsmop): handles special case where asmops are stack objects,
3088         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
3089         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
3090         added argument lock to trace flaws in allocating temporary registers
3091         when developing port,
3092         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
3093         * (pic16_popRegFromString): reenabled allocating a direct register
3094         from string,
3095         * (assignResultValue): various beautifications,
3096         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
3097         referenced function argument,
3098         * (genIpush): reenabled to allow stacked arguments, handles only
3099         ic->parmPush iCodes,
3100         * (genCall, genPcall): major changes to allow for variable argument
3101         functions, fixed a bug with falsely restoring stack pointer after
3102         returning from call,
3103         * (genFunction): pending code for critical function,
3104         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
3105         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
3106         * (genNearPointerGet): fixed bug with indirect reading, was always
3107         reading from INDF0
3108         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
3109         pointers,
3110         * (genAddrOf): rewrote code to take address of a stacked function parameter
3111         * (genCast): fixed casting to generic pointer type,
3112         * src/pic16/gen.h: added AOP_STA,
3113         * (struct asmop): added field stk,
3114         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
3115         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
3116         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
3117         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
3118         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
3119         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
3120         generic pointers,
3121         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
3122         and library paths,
3123         * (pic16_port structure): generic pointer size is set to 3,
3124         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
3125         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
3126         compiler warning,
3127         * src/pic16/ralloc.c (allocReg): prevent allocating register when
3128         operand is an iTemp,
3129
3130 2004-09-24 Martin Helmling <mh AT octo-soft.de>
3131
3132         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
3133         * debugger/mcs51/simi.c: addapt new syntax of s51
3134
3135 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
3136
3137         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
3138         * src/pic16/pcode.c: commented out some calls to free() in order to
3139         fix bug #989576,
3140
3141 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3142
3143         * src/SDCCicode.h,
3144         * src/SDCCicode.c (isiCodeInFunctionCall),
3145         * src/avr/ralloc.c (selectSpil),
3146         * src/pic/ralloc.c (selectSpil),
3147         * src/pic16/ralloc.c (selectSpil),
3148         * src/ds390/ralloc.c (selectSpil),
3149         * src/hc08/ralloc.c (selectSpil),
3150         * src/xa51/ralloc.c (selectSpil),
3151         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
3152         stack in the middle of a function call sequence (fixes bug #1020268)
3153         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
3154         costs associated with the minimum switch case.
3155
3156 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3157
3158         * src/SDCC.lex: fixed bug #1030549
3159
3160 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3161
3162         * src/SDCCcse.h (struct cseDef),
3163         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
3164         over a function call if the CSE is derived from a symbol whose
3165         address has been taken (fixes bug #1029883)
3166         * support/regression/tests/bug-1029883: a new regression test for
3167         this bug
3168
3169 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3170
3171         * src/hc08/gen.c (emitinline): fixed bug #1029778
3172         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
3173         to a cast object is no longer a syntax error ("fixes" bug #1030006,
3174         and starts toward RFE #905167)
3175
3176 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
3177
3178         * src/pic16/gen.c (mov2f): New function to move an operand to
3179         another without considering if it is a literal or a register,
3180         * (pic16_sameRegs): don't check if they are both AOP_REG,
3181         * (AccRsh): removed andmask=0 lines,
3182         * (genLeftShift): duplicated to be improved in future versions,
3183         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
3184         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
3185         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
3186         * (pic16initMnemonics): added initialization for POC_INFSNZW,
3187         * (insertBankSwitch): fixed inserting banksel directives algorithm
3188         for instructions that follow a skip instruction, this fixes a report
3189         for broken subtraction code generation,
3190         * src/pic16/ralloc.c (deassignLRs): do not free register if current
3191         iCode is a left op, just in case result and right share the same
3192         registers
3193
3194 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3195
3196         * src/hc08/main.c,
3197         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
3198         preservation of HX
3199         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
3200         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
3201         on 2004-09-12; it was buggy
3202
3203 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
3204
3205         * src/SDCCsymt.h: removed RESULT_CHECK
3206         * src/SDCCast.c,
3207         * src/SDCCglue.c,
3208         * src/SDCCval.c,
3209         * src/pic/glue.c,
3210         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
3211
3212 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
3213
3214         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
3215         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
3216         configuration values no more rejected by compiler, they are assigned
3217         to configuration registers with a warning message instead,
3218         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
3219         the for-loop so last conf register is emitted too,
3220         * (_pic16_initPaths): link library libsdcc.lib by default,
3221         * (_hasNativeMulFor): modified test for multiplication according to
3222         Raphael Neider's remarks. Integer multiplication is also done with
3223         support functions,
3224         * device/include/pic16/pic18fregs.h: corrected type error in while
3225         testing and including 18f6720 header file
3226
3227 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
3228
3229         * src/pic16/device.h (pic16_options): removed field use_crt,
3230         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
3231         until an optimization to handle single bits is added,
3232         * (pic16_loadFSR0): moved before genUnpackBits,
3233         * (genAnd): some white lines removed,
3234         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
3235         leave_reset flags in pic16_options when using crt modules,
3236
3237 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
3238
3239         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
3240           for bugs 898889 & 979599. Also used some safer print instructions.
3241
3242 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
3243
3244         * src/pic16/device.h (pic16_options_t): added field use_crt,
3245         crt_name, no_crt,
3246         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
3247         catch a probable future bug,
3248         * src/pic16/gen.c: aopIdx function commented out,
3249         * (genAssign): commented out old code which used aopIdx,
3250         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
3251         code, added if conditionals to take into account the --use-crt
3252         command line options,
3253         * src/pic16/main.c (pic16_optionsTable): added new command line
3254         options, --use-crt= and --no-crt,
3255         * (_pic16_linkEdit): now the proper crt object is added in the
3256         linker command line except than when --no-crt is specified,
3257         * src/pic16/pcode.c,
3258         * src/pic16/pcode.h: added some structures and functions for a new
3259         optimization scheme to compansate for instruction overhead between
3260         same iCodes, this scheme is currently under development and is not
3261         working in any way,
3262         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
3263         to && operator,
3264         * device/lib/pic16/startup/crt0i.c,
3265         * device/lib/pic16/startup/crt0iz.c: added global char variable
3266         __uflags to force the generation of an idata section
3267
3268 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
3269
3270         * doc/Makefile,
3271         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
3272         * doc/sdccman.lyx: updated sdcc version to 2.4.4
3273
3274 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3275
3276         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
3277         Frieder) and clarified the default code optimization mode
3278
3279 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3280
3281         * src/SDCC.lex (doPragma, process_pragma),
3282         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
3283         "opt_code_size", and "opt_code_balanced"
3284         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
3285         regrouped options by category, added support for category headers
3286         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
3287         and "--opt-code-size"
3288         * doc/sdccman.lyx: documented these new options and pragmas
3289         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
3290         preference into account
3291
3292 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3293
3294         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
3295           geniCodePreDec): Fixed bug 904237 by generating a warning
3296         * src/SDCCerr.h,
3297         * src/SDCCerr.c: added warning W_SIZEOF_VOID
3298
3299 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
3300
3301         * src/pic/device.c : When no max ram set validate full memory range.
3302         * src/pic/pcode.c,
3303         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
3304
3305 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3306
3307         * device/lib/_gptrget.c,
3308         * device/lib/_gptrput.c: updated comment
3309         * device/lib/calloc.c,
3310         * device/lib/free.c,
3311         * device/lib/malloc.c,
3312         * device/lib/realloc.c: added LGPL, made them reentrant-safe
3313         * src/SDCCcse.c (cseBBlock),
3314         * src/SDCCicode.c (printOperand, geniCodeArray),
3315         * src/SDCCicode.h (struct operand): fixed bug 868103
3316         * support/regression/tests/bug-868103.c: added
3317         * src/SDCCast.c (searchLitOp),
3318         * src/SDCCcse.h (struct cseDef),
3319         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
3320         * src/SDCCicode.h (struct operand),
3321         * src/SDCCsymt.h (struct sym_link),
3322         * src/avr/gen.c (hasInc),
3323         * src/ds390/gen.c (hasInc),
3324         * src/hc08/gen.c (genPlusIncr, hasInc),
3325         * src/mcs51/gen.c (hasInc),
3326         * src/pic16/glue.c (pic16_printIvalChar),
3327         * src/pic16/ralloc.c (regWithIdx),
3328         * src/xa51/gen.c (hasInc) : removed warnings
3329         * src/SDCCast.c (createBlock): added comment ???
3330         * src/hc08/ralloc.c: updated comments
3331
3332 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3333
3334         * doc/sdccman.lyx: updated section on switch statements, added
3335         section about semaphore locking
3336         * doc/Makefile: added option -info for latex2html
3337         * device/lib/_gptrget.c,
3338         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
3339
3340 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3341
3342         * src/pic/device.h,
3343         * src/pic/device.c,
3344         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
3345          maxram is less than 0x100.
3346
3347 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3348
3349         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
3350
3351 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3352
3353         * src/port.h,
3354         * src/mcs51/main.c,
3355         * src/ds390/main.c,
3356         * src/z80/main.c,
3357         * src/hc08/main.c,
3358         * src/pic/main.c,
3359         * src/pic16/main.c,
3360         * src/avr/main.c,
3361         * src/xa51/main.c
3362         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
3363         a jump table is the best form for a switch statement, including
3364         automatic insertion of missing cases to make the case range
3365         continuous. Developed in collaboration with Frieder Ferlemann.
3366
3367 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3368
3369         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
3370         accumulator result if it needs sign extension
3371
3372 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3373
3374         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
3375
3376 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3377
3378         * device/lib/gbz80/printf.c,
3379         * device/lib/z80/printf.c: removed define for NULL
3380
3381 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3382
3383         * as/xa51/xa_link.c,
3384         * device/examples/ds390/ow390/ad26.c,
3385         * device/examples/ds390/ow390/cnt1d.c,
3386         * device/examples/ds390/ow390/counter.c,
3387         * device/examples/ds390/ow390/ds2480.h,
3388         * device/examples/ds390/ow390/ds2480ut.c,
3389         * device/examples/ds390/ow390/findtype.c,
3390         * device/examples/ds390/ow390/gethumd.c,
3391         * device/examples/ds390/ow390/owllu.c,
3392         * device/examples/ds390/ow390/ownetu.c,
3393         * device/examples/ds390/ow390/swt12.c,
3394         * device/examples/ds390/ow390/swtloop.c,
3395         * device/examples/ds390/ow390/temp.c,
3396         * device/examples/ds390/ow390/temp10.c,
3397         * device/examples/ds390/ow390/thermo21.c,
3398         * device/examples/ds390/ow390/tinilnk.c,
3399         * device/examples/ds390/ow390/tstfind.c,
3400         * device/examples/serialcomm/windows/serial.cpp,
3401         * device/examples/serialcomm/windows/test_serialcomm.cpp,
3402         * device/include/reg51.h: fixed line endings for cvs
3403
3404 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3405
3406         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
3407         packRegsForAccUse, packRegisters): new accumulator register
3408         packing algorithm
3409         * support/regression/ports/hc08/support.c (_putchar): suppress
3410         warning of unused variable
3411         * src/SDCCicode.c: added SWAP entry to codeTable
3412
3413 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
3414
3415         * device/lib/sprintf.c: forgot to add this file before previous commit
3416
3417 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
3418
3419         * src/pic16/gen.c (genPackBits): added operand right in function
3420         parameters, load result directly if p_type is POINTER (that is
3421         called by genNearPointerSet)
3422         * (genUnPackBits): added operand left in function parameters,
3423         * (genNearPointerGet, genNearPointerSet): prevent the loading of
3424         FSR0 if accessing bitfields,
3425
3426 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
3427
3428         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
3429           _print_format; updated printf, sprintf, vsprintf
3430         * device/include/asm/default/features.h: corrected comment/define
3431         * device/lib/Makefile.in: added sprintf.c
3432         * device/lib/libsdcc.lib: added sprintf module
3433         * device/lib/printf_large.c,
3434         * device/lib/vprintf.c,
3435         * device/lib/sprintf.c: totally refactored printf_large and vprintf
3436           into these 3 files
3437         * support/regression/Makefile: changed ALL_PORTS into a usefull default
3438         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
3439         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
3440           hc08 test
3441         * support/regression/tests/zeropad.c: define idata as data for hc08
3442
3443 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3444
3445         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
3446         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
3447         labels are referenced at least once (even if a reference is not found)
3448         * src/hc08/gen.c (emitcode): set isComment flag for comments
3449         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
3450         loads), rules 6a..6b (optimize jumps to return)
3451
3452 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3453
3454         * device/lib/acosf.c (acosf),
3455         * device/lib/asinf.c (asinf),
3456         * device/lib/atanf.c (atanf),
3457         * device/lib/ceilf.c (ceilf),
3458         * device/lib/cosf.c (cosf),
3459         * device/lib/coshf.c (coshf),
3460         * device/lib/cotf.c (cotf),
3461         * device/lib/fabsf.c (fabsf),
3462         * device/lib/floorf.c (floorf),
3463         * device/lib/log10f.c (log10f),
3464         * device/lib/logf.c (logf),
3465         * device/lib/sinf.c (sinf),
3466         * device/lib/sinhf.c (sinhf),
3467         * device/lib/sqrtf.c (sqrtf),
3468         * device/lib/tanf.c (tanf),
3469         * device/lib/tanhf.c (tanhf),
3470         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
3471         replaced all instances of "reentrant" in the library functions
3472         defined in math.h with this macro.
3473         * support/regression/tests/float_trans.c: reenabled test for hc08
3474
3475 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
3476
3477         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
3478         erroneously deleted
3479
3480 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3481
3482         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
3483         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
3484         multi-byte volatile operands are used
3485         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
3486         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
3487         initialization to area GSINIT0 so that it would always precede
3488         any static initializers in GSINIT
3489         * support/regression/tests/zeropad.c: fixed idata define for hc08
3490         * support/regression/tests/bug-927659.c,
3491         * support/regression/tests/float_trans.c: disabled tests for hc08
3492         pending missing library routines
3493         * .version: increased version number to 2.4.4 - hc08 port now passes
3494         regression tests
3495
3496
3497 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
3498
3499         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
3500         * Makefile.common.in,
3501         * as/Makefile,
3502         * as/hc08/Makefile.in,
3503         * as/mcs51/Makefile.in,
3504         * as/z80/Makefile.in,
3505         * debugger/mcs51/Makefile.in,
3506         * device/include/Makefile.in,
3507         * device/lib/Makefile.in,
3508         * doc/Makefile,
3509         * link/Makefile,
3510         * link/z80/Makefile.in,
3511         * packihx/Makefile.in,
3512         * sim/ucsim/main_in.mk,
3513         * sim/ucsim/avr.src/Makefile.in,
3514         * sim/ucsim/doc/Makefile.in,
3515         * sim/ucsim/gui.src/serio.src/Makefile.in,
3516         * sim/ucsim/hc08.src/Makefile.in,
3517         * sim/ucsim/s51.src/Makefile.in,
3518         * sim/ucsim/xa.src/Makefile.in,
3519         * sim/ucsim/z80.src/Makefile.in,
3520         * src/Makefile.in,
3521         * support/cpp2/Makefile.in,
3522         * support/librarian/Makefile,
3523         * support/makebin/Makefile: added DESTDIR to the install path proposed
3524         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
3525         * doc/sdccman.lyx: added DESTDIR documentation
3526
3527 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
3528
3529         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
3530         instruction for interrupt handlers, use fast returns when returning
3531         from high priority interrupts
3532
3533 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3534
3535         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
3536         code generation
3537         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
3538         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
3539         bugs, ported much of Bernhard's code from mcs51
3540         * src/mcs51/gen.c (genSend),
3541         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
3542         than one when calling a reentrant function
3543         * device/lib/_mullong.c: defined an alternate struct layout for big
3544         endian ports (hc08)
3545
3546 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3547
3548         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
3549         test
3550
3551 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3552
3553         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
3554         are sane and complete before asking the port its prefered parameter
3555         passing method (fixes bug #1017633)
3556         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
3557         and _ret3
3558
3559 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3560
3561         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
3562         problem in bitfields >= 8 bits.
3563
3564 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3565
3566         * src/SDCCsymt.c: undid changes that were not meant to be committed
3567
3568 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3569
3570         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
3571
3572 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3573
3574         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
3575           copied and wrong bit got inverted
3576
3577 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3578
3579         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
3580         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
3581         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
3582         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
3583         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
3584         assignments to bitfields at known addresses
3585         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
3586         reads from bitfields at known addresses
3587         * src/hc08/ralloc.c (packRegisters),
3588         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
3589         genhc08Code): optimize pointer get values used as conditionals
3590         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
3591         and branch
3592
3593 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3594
3595         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
3596         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
3597         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
3598         as conditionals
3599
3600 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3601
3602         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
3603
3604 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3605
3606         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
3607         related problems
3608
3609 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
3610
3611         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
3612
3613 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3614
3615         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
3616         mcs51 port
3617
3618 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
3619
3620         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
3621
3622 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3623
3624         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
3625         cases use more compact code.
3626
3627 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
3628
3629         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
3630
3631 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3632
3633         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
3634
3635 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3636
3637         * src/SDCCsymt.h,
3638         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
3639         parameter of changePointer() from symbol* to sym_link*
3640         * src/SDCCast.c (decorateType): call changePointer() for CAST op
3641         * src/SDCCsymt.c (compareType): void* type is castable to other
3642         pointers, but not necesarily an exact match.
3643         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
3644         is no longer blindly treated as an exact match.
3645         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
3646
3647 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
3648
3649         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
3650
3651 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
3652
3653         * src/pic/gen.c,
3654         * src/pic/pcode.c,
3655         * src/pic/ralloc.h,
3656         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
3657
3658 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
3659
3660         * src/pic/device.c,
3661         * src/pic/device.h,
3662         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
3663
3664 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3665
3666         * src/mcs51/gen.c (emitcode): fixed bug #992819
3667
3668 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
3669
3670         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
3671           there's no need to make it worse
3672
3673 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3674
3675         * src/mcs51/ralloc.c (deassignLR),
3676         * src/ds390/ralloc.c (deassignLR),
3677         * src/hc08/ralloc.c (deassignLR),
3678         * src/z80/ralloc.c (deassignLR),
3679         * src/pic/ralloc.c (deassignLR),
3680         * src/pic16/ralloc.c (deassignLR),
3681         * src/avr/ralloc.c (deassignLR),
3682         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
3683         rlivePoint): fixed another part of bug #971834
3684
3685 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3686
3687         * src/z80/main.c: enabled "critical" keyword
3688         * src/z80/mappings.i,
3689         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
3690         functions (fixes bug #979646)
3691         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
3692
3693 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3694
3695         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
3696           such as c:\mydir.
3697
3698 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
3699
3700         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
3701           doesn't disable too much optimizations
3702
3703 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3704
3705         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
3706
3707 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
3708
3709         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
3710
3711 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3712
3713         * src/pic/gen.c tidied up tabs
3714         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
3715         * src/pic/main.c tidied up tabs
3716         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
3717         * src/pic/pcoderegs.c tidied up tabs
3718         * src/pic/ralloc.c tidied up tabs
3719
3720 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
3721
3722         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
3723         to S_FIXED for pic16 port and when symbol is not in level 0,
3724         allocate for S_REGISTER storage class and pic16 port, too,
3725         * src/pic16/device.h: prototype for checkSym,
3726         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
3727         * (pic16_assignConfigWordValue): test the value and the mask to
3728         validate that the value is suitable for the configuration word,
3729         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
3730         collect extern declared symbols, don't emit symbol twice, check
3731         first if symbol is in publics set first,
3732         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
3733         * added command line '--fstack' which enables an experimental
3734         feature for stack access, too buggy to be used yet...
3735         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
3736         * (pic16_allocDirReg): when register has storage class S_REGISTER
3737         allocate in pic16_dynAccessRegs,
3738         * device/include/pic16/pic18f????.h: modified configuration word
3739         naming convention, words started as CONFIG0H but should be CONFIG1H
3740
3741 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
3742
3743         * device/include/mcs51reg.h: fixed bug 970993
3744
3745 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
3746
3747         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
3748         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
3749         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
3750         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
3751         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
3752         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
3753           error/warning numbers,
3754           added function setWarningDisabled()
3755         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
3756         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
3757           _memcmp.c _memmove.c calloc.c realloc.c free.c
3758         * support/regression/tests/malloc.c: added tests for new functionality
3759         * support/regression/tests/zeropad.c: added tests for truncated initializers
3760           and initialized char arrays starting with '\x0'
3761         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
3762
3763 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
3764
3765         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
3766
3767 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3768
3769         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
3770         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
3771         peephole 177.e. Thanks to anonymous
3772
3773 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
3774
3775         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
3776         function isn't used in the source but referenced as a
3777         variable initializer then declare it as extern in .asm file
3778
3779 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
3780
3781         * .version: increased version number to 2.4.3
3782
3783         Adding version extension according to ChangeLog CVS revision
3784         * src/Makefile.in (target all): added dependency 'version.h'
3785         * (rule version.h): added rule to create version.h from ChangeLog,
3786         * (rule dep): added dependency version.h,
3787         * src/version.awk: AWK script to create version.h
3788         * src/SDCCdwarf2.c (dwWriteModule),
3789         * src/SDCCglue.c (initialComments),
3790         * src/SDCCmain.c (printVersionInfo): modified to write after
3791         version string the version extension number,
3792         * src/SDCCutil.c: included "version.h"
3793         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
3794         number,
3795         * src/SDCCutil.h: added prototype for getBuildNumber
3796
3797         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
3798         includeDirsSet, too,
3799         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
3800         const char [] is found in function prototype...
3801
3802         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
3803         moving to WREG with source is already in WREG,
3804         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
3805         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
3806         * (aopForSym): stack'ed symbols are partially supported, added
3807         if-clause to support symbols in FARSPACE,
3808         * (sameRegs): added test for AOP_ACC to see if registers are same,
3809         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
3810         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
3811         * (pic16_popRegFromString): will not allocate a new register if it
3812         doesn't find one by name, bug may have introduced...
3813         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
3814         * (genIpush): revived to use pic16 port's stack,
3815         * (genAddrOf): added incomplete case for stack'ed operand,
3816         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
3817         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
3818         can handle multibyte operands,
3819         * src/pic16/glue.c (pic16_printIval*): some debug info added,
3820         * (pic16initialComments): added message for MPLAB compatibility
3821         mode enabled,
3822         * src/pic16/main.h: prototype for pic16_mplab_comp,
3823         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
3824         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
3825         * (_pic16_linkEdit): NEW, handles link stage, transferred here
3826         because of increased complexity of procedure,
3827         * (_process_pragma): stack pragma changed to format 'stack pos len',
3828         emit symbol '_stack_end' to conform with gplink,
3829         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
3830         to search for register,
3831         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
3832         PO_GPR_REGISTER,
3833         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
3834         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
3835         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
3836         case for PO_GPR_REGISTER,
3837         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
3838         dies, the new era is ahead !...
3839         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
3840         pic16_dynInternalRegs,
3841         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
3842         * (pic16_allocDirReg): minor optimizations and bug fixes,
3843         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
3844
3845         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
3846         load stack and frame pointer with address of 'stack_end' symbol
3847
3848 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
3849
3850         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
3851         without source code but only variable initializers
3852
3853 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
3854
3855         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
3856         external are not declared as extern to reduce overhead while linking
3857
3858 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
3859
3860         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
3861
3862 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
3863
3864         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
3865           Yee Keat for the patch
3866         * src/SDCCast.c (decorateType): fixed bug #979599
3867         * src/ds390/gen.h: removed local fReturnSizeDS390
3868         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
3869         * src/ds390/gen.c (genAnd, genOr, genXor),
3870         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
3871
3872 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
3873
3874         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
3875         add relFilesSet to $3, manipulate $2 to handle linking of object
3876         files without source files in command line,
3877         * device/include/pic16 (all headers): added ID location macros,
3878         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
3879         entries for ID location bytes,
3880         * (pic16_assignIdByteValue): NEW,
3881         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
3882         added field dumpcalltree to pic16_options_t,
3883         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
3884         is used instead of pic16_Gstack_base_addr, check if (ifx) before
3885         emitting rFalseIfx label after check_carry label,
3886         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
3887         pic16_emitDIRegs), NEW
3888         * (pic16glue): dump .calltree file when option --calltree found,
3889         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
3890         * (_pic16_genAssemblerPreamble): emit ID locations after
3891         configuration registers,
3892         * (pic16_linkCmd): modifications of the link command,
3893         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
3894         * (pic16_pCodeInitRegisters): don't init stack registers,
3895         * (pic16_findPrevInstruction): fixed bug,
3896         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
3897         bug with immediate registers,
3898         * (buildCallTree): traces stack push and pop,
3899         * (pct2): dump also stack usage for each function,
3900         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
3901         * (pic16_allocDirReg): various modifications,
3902         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
3903         fixed to 1,
3904
3905 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
3906
3907         * src/pic16/pcode.c: removed buggy double colon
3908
3909 2004-07-01 Borut Razem <borut.razem AT siol.net>
3910
3911         * support/scripts/sdcc.nsi: added include/pic16 to setup
3912
3913 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
3914
3915         * device/lib/Makefile.in: fixed bug in target objects-pic16,
3916         * device/lib/pic16/Makefile: prefixed with dash (-) command under
3917         target 'clean',
3918         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
3919         specific command line arguments. Also added sample lkr script
3920         for placing a variable at a specific memory bank.
3921         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
3922         at a specific memory bank,
3923         * (pic16_dump_isection): fixed bug which caused string literals to
3924         be omitted when dumping idata section,
3925         * (pic16_groupRegistersInSection): added code to handle registers
3926         in specific memory banks,
3927         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
3928         public, all references are renamed too,
3929         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
3930         AOP_DPTR2,
3931         * (pic16_storeForReturn): added case to handle when dest is WREG,
3932         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
3933         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
3934         pic16_rel_udata, check to see if that register is marked as being
3935         a member of a specific memory bank,
3936         * (pic16_printIvalCharPtr): added code to add string literals either
3937         to code or the idata sections,
3938         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
3939         also accept the 'udata' pragma,
3940         * src/pic16/main.h: new structure types sectName and sectSym
3941         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
3942         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
3943         * (pic16_findPrevInstruction): fixed, it returned nothing,
3944         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
3945         instruction combinations,
3946         * (pic16_FixRegisterBanking): heavily reorganised,
3947         * (pic16_AnalyzeBanking): if generating banksel directives is
3948         disabled, then don't call FixRegisterBanking at all,
3949         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
3950         completely removed,
3951         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
3952
3953 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
3954
3955         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
3956         Phuah Yee Keat <yk.phuah AT nestac.com>
3957
3958 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3959
3960         * src/pic16/glue.c (pic16createInterruptVect): function now emits
3961         correctly the IVT even if it is relocated to some other location
3962
3963 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3964
3965         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
3966         * device/include/pic16/pic18f2220.h: NEW,
3967         * device/lib/pic16/libdev/pic18f2220.c: NEW,
3968         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
3969         * src/pic16/device.c (struct Pics16): added info for 18f2220,
3970         * src/pic16/device.h (struct pic16_options): added ivt_loc and
3971         nodefaultlibs, ivt_loc is the location of the interrupt vector
3972         table, and nodefaultlibs signs that default libraries should not be
3973         linked in link stage,
3974         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
3975         according to --ivt-loc argument,
3976         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
3977         when pragma stack is found,
3978
3979 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3980
3981         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
3982         256 (range check), 257 (do while), 258.a-f (bit banging
3983         f.e. on 3-wire SPI bus)
3984
3985 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3986
3987         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
3988         variables used exclusively within a loop
3989
3990 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
3991
3992         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
3993
3994 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3995
3996         * src/SDCClrange.c (computeClash): fixed bug #971834
3997
3998 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3999
4000         * src/mcs51/gen.c (genCmp): fixed bug #975903
4001         * src/hc08/gen.c (operandsEqu),
4002         * src/ds390/gen.c (operandsEqu),
4003         * src/z80/gen.c (operandsEqu),
4004         * src/pic/gen.c (operandsEqu),
4005         * src/pic16/gen.c (operandsEqu),
4006         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
4007         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
4008
4009 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4010
4011         * src/SDCCcse.c (cseBBlock): fixed bug #966963
4012
4013 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
4014
4015         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
4016         default case in switch statement,
4017         * glue.c (pic16_initPointer): expr is initialised via decoarteType
4018         to eliminate problem with initialisation of pointers, but problem
4019         still exists,
4020         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
4021         * (emitStaticSegment): removed various lines emitting debug info,
4022         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
4023         added processor registers for utilizing EEPROM,
4024         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
4025         configurable and set 8
4026
4027 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
4028
4029         * .version: increased version number to 2.4.2,
4030
4031         Cumulative patch for pic16 port
4032         * src/pic16/device.c: changed scheme to dump initial values for
4033         variables in idata segment, all print_idata* functions were removed,
4034         now the pic16_printIval* will be called,
4035         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
4036         * _pic16_printPointerType, pic16_printPointerType,
4037         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
4038         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
4039         NEW, similar to the respective functions in SDCCglue.c,
4040         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
4041         way, emitting hex bytes,
4042         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
4043
4044 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4045
4046         * src/avr/ralloc.c (serialRegAssign),
4047         * src/xa51/ralloc.c (serialRegAssign),
4048         * src/pic/ralloc.c (serialRegAssign),
4049         * src/pic16/ralloc.c (serialRegAssign),
4050         * src/hc08/ralloc.c (serialRegAssign),
4051         * src/z80/ralloc.c (serialRegAssign),
4052         * src/ds390/ralloc.c (serialRegAssign),
4053         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
4054
4055 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4056
4057         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
4058         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
4059
4060 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
4061
4062         Cumulative patch for pic16 port:
4063         * src/pic16/device.h (typedef PIC16_device) modified fields for
4064         defining microcontrollers,
4065         * src/pic16/device.c: added new info for all devices in Pics16 array,
4066         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
4067         to be optimised out by the pCode optimiser,
4068         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
4069         specially, bug reported by G.M. Gallant,
4070         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
4071         as force'd so that cannot be optimised out by pCode optimiser,
4072         * src/pic16/pcode.c,
4073         * src/pic16/pcodepeeph.c,
4074         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
4075         they are disabled by default, but can be enabled explicit with
4076         command argument --denable-peeps, for testing,
4077         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
4078         --pomit-ivt in COMPILE_FLAGS
4079
4080 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4081
4082         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
4083           compilation on MSVC
4084
4085 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4086
4087         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
4088
4089 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4090
4091         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
4092         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
4093
4094 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
4095
4096         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
4097         would only assign 0x300001 register.
4098
4099 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
4100
4101         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
4102         in COMPILE_FLAGS. Thanks to G. Gallant for report.
4103
4104 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4105
4106         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
4107         for ds80c400
4108         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
4109         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
4110         added peephole 254 (left shift), 255 (jump table)
4111
4112 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
4113
4114         * device/lib/Makefile.in: removed comment line with model-pic16,
4115         * (target port-specific-objects-pic16): the libraries and objects
4116         are copied to the build directory form the device/lib/pic16/bin
4117         directory
4118
4119         Cumulative patch concerning pic16 port:
4120         * library directory has been re-organized,
4121         * added support for PIC18F1220,
4122         * added headers and library sources for chips 18f1220,18f6520,
4123         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
4124
4125         * configuration registers setting has changed, now each supported
4126         device has a complete description of the registers it uses,
4127         * all initialisations are moved to idata sections, these section
4128         can be absolute or relocatable,
4129         * fixed initialisation of codespace variables,
4130         * fixed warning about PCLATU and gpsim,
4131         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
4132         * (genAssign): use table reads when assigning from variables in codespace,
4133         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
4134         char/int variables placed in codespace,
4135         * (pic16_emitConfigRegs): NEW, emits a list with configuration
4136         registers set in .asm file, no need for --pomit-config-words anymore,
4137         * (pic16glue): some 8051 legacy segments are commented out
4138         (to be removed completely),
4139         * added support for alternative assembler and linker with --asm=
4140         and --link= command line arguments,
4141         * peepholes are disabled automatically in the port, no need to
4142         specify on command line,
4143         * port supports natively char/int/long multiplication, but converts
4144         all divisions to support functions,
4145         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
4146         to the file set in variable $2,
4147         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
4148         strings in ASCII format and not in hex,
4149         * ralloc.c (serialRegAssign): added a triplet of conditional calls
4150         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
4151         allocate proper register if iCodes aren't temporary,
4152
4153 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
4154
4155         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
4156
4157 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
4158
4159         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
4160         is commented out
4161
4162 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4163
4164         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
4165         computed address is reused
4166         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
4167         multi-byte bitfields
4168
4169 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4170
4171         * src/z80/gen.c: (genArrayInit): must check for pointers too
4172
4173 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4174
4175         * support/regression/tests/zeropad.c: never meant to commit the
4176           nestedstruct test: removed, added check for GCC version
4177
4178 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
4179
4180         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
4181         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
4182         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
4183           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
4184           bugs 928906 and 954082 half-empty initializers
4185         * src/SDCCsymt.h,
4186         * src/SDCCsymt.c (getAllocSize): added for above fix
4187         * src/z80/gen.c (genArrayInit): fixed bug 741044
4188         * support/regression/tests/zeropad.c: added tests
4189
4190 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
4191
4192         * src/pic16/device.c (pic16_dump_section): corrected bug which
4193         caused some symbols of the libraries to be misplaced
4194
4195 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4196
4197         * src/pic16/glue.c,
4198         * src/pic16/ralloc.h,
4199         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
4200         to fix conflict with pic port
4201
4202 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4203
4204         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
4205         externs configuration variables,
4206         * src/pic16/ralloc.h,
4207         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
4208         prototype in header, commented out some debug messages
4209
4210 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
4211
4212         * src/pic16/glue.c,
4213         * src/pic16/main.c,
4214         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
4215         for gpasm COFF object generation. Thanks to D. Hawkins for
4216         his patch info
4217
4218 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4219
4220         * src/ds390/main.c,
4221         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
4222         Brock for spotting this)
4223         * src/ds390/gen.c (genEndFunction),
4224         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
4225         interrupt handler and critical. Disable push/pop optimizations when
4226         peephole optimizations disabled.
4227
4228 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4229
4230         Updated pic16 library sources and headers.
4231         * device/lib/pic16/pic18f*/ ,
4232         * device/include/pic16/*.h: modified to handle structured SFR
4233         definitions
4234
4235 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4236
4237         * src/port.h (PORT structure): added hook initPaths, now each
4238         port can declare its own default search paths,
4239         which can been seen with the --print-search-dirs option,
4240         see pic16 port for example,
4241         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
4242         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
4243         * (doPrintSearchDirs): NEW, replaces in a central manner the
4244         printing of search dirs which was split in set*Paths functions,
4245         * (main): added call to port->initPaths and doPrintSearchDirs,
4246         * src/avr/main.c,
4247         * src/ds390/main.c,
4248         * src/hc08/main.c,
4249         * src/izt/i186.c,
4250         * src/izt/tlcs900h.c,
4251         * src/mcs51/main.c,
4252         * src/pic/main.c,
4253         * src/pic16/main.c: modified port structures to reflect addition of
4254         initPaths hook,
4255
4256         * src/pic16/device.c (regCompare): registers are finally sorted by name,
4257         * (pic16_dump_section): for registers in same address reserve memory once,
4258         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
4259         to no_banksel,
4260         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
4261         result is greater in size than right or left,
4262         * (pic16_genUMult8X8_8): there are some cases where the result can
4263         be 16 bits size, so handle these,
4264         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
4265         * (pic16_outBitC): modified to emit pcodes,
4266         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
4267         or not,
4268         * (genDivOneByte): implemented algorithm to divide 8-bits,
4269         * (genCmp): uncommented goto, but issues still exist,
4270         * (genAnd): fixed a bug with variables >8bits,
4271         * (genPackBits): optimization added that uses BCF/BSF to change a
4272         single bit,
4273         * (genAssign): fixed bug when assigning floating point literals,
4274         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
4275         __sdcc_gsinit_startup label,
4276         * src/pic16/main.c (_pic16_init): removed search directory
4277         initialisations,
4278         * (_pic16_initPaths): NEW, used to initialise search directories,
4279         * (_hasNativeMulFor): support functions for all except char/int
4280         multiplication, and char division,
4281         * (PIC16_port struct): modified entry for native mul support,
4282         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
4283         no_banksel option,
4284         * (buildCallTree): call to register_usage is ifdef'ed out,
4285
4286 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4287
4288         * device/include/string.h: applied Stas Sergeev's patch to make this
4289         header file compatible with the preprocessor -Wundef option
4290         * src/SDCCmain.c (main): abort compilation if preprocessor reports
4291         failure (fixes bug #941458)
4292
4293 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4294
4295         * src/SDCCopt.c (killDeadCode): fixed bug #907733
4296         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
4297         that the variable, not the function, should be static
4298         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
4299         to be consistent with non-literal case
4300
4301 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4302
4303         * src/SDCCast.c (isConformingBody): fixed bug #949967
4304         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
4305         convilong): fixed bug #952086
4306
4307 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4308
4309         * src/SDCCmem.c (allocVariables): fixed bug #955321
4310
4311 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4312
4313         * src/hc08/main.c (_hc08_genAssemblerEnd),
4314         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
4315         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
4316         completely eliminated the use of a temporary file
4317         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
4318         when more than one file linked
4319         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
4320
4321 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4322
4323         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
4324         which fixes bug #543481
4325         * support/regression/tests/bug-751703.c: fixed comments left from a
4326         cut and paste error
4327         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
4328         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
4329         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
4330         scopes
4331         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
4332         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
4333         are now changed to underscores in moduleName
4334
4335 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4336
4337         * as/mcs51/lkmem.c: better fix for bug #954173
4338
4339 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
4340         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4341
4342         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
4343         * device/include/c8051f000.h,
4344         * device/include/c8051f120.h,
4345         * device/include/c8051f300.h,
4346         * device/include/c8051f310.h,
4347         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
4348         PWM16) and detab'ed
4349
4350 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4351
4352         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
4353         and mailing lists, doc'ed --no-peep-comments, removed reference
4354         to knoppix (newest version has no LyX/LaTeX), other minor changes
4355         * src/SDCCglue.c (glue): save 2 bytes stack space with
4356         option --main-return. The ljmp could probably be avoided too
4357
4358 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4359
4360         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
4361
4362 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4363
4364         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
4365         * src/SDCCopt.c (isLocalWithoutDef),
4366         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
4367         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
4368         (credit to Maarten Brock for patch #949363, on which this is based)
4369         * support/regression/tests/bug-751703.c: some test cases of extern used
4370         within inner scopes.
4371
4372 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4373
4374         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
4375         SPEC_STRUCT
4376         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
4377         struct definitions
4378         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
4379         dwWriteLabel): fix to create valid debugger symbols even when
4380         the module name has non-alphanumeric symbols in it
4381         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
4382         when a variable's allocation has been optimized away
4383
4384
4385 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4386
4387         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
4388         * src/hc08/main.c,
4389         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
4390         * src/mcs51/main.c,
4391         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
4392         * src/ds390/main.c,
4393         * src/z80/gen.c (z80_emitDebuggerSymbol),
4394         * src/z80/main.c,
4395         * src/pic/gen.c (pic14_emitDebuggerSymbol),
4396         * src/pic/main.c,
4397         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
4398         * src/pic16/main.c,
4399         * src/avr/gen.c (avr_emitDebuggerSymbol),
4400         * src/avr/main.c,
4401         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
4402         * src/xa51/main.c,
4403         * src/SDCCdebug.c (emitDebuggerSymbol),
4404         * src/SDCCdebug.h,
4405         * src/port.h: added a debugger struct to the port struct. Added a
4406         callback for defining debugger symbols
4407
4408         * src/SDCCast.c (createLabel),
4409         * src/SDCC.y (labeled_statement): mark all compiler generated labels
4410         with isitmp = 1
4411         * src/SDCCicode.h,
4412         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
4413         iCode back to the ast for the function
4414
4415         * src/hc08/ralloc.c (hc08_assignRegisters),
4416         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
4417         unneeded fields from the regs struct.
4418         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
4419         pushReg() & pullReg() functions instead of emitcode()
4420
4421         * src/hc08/gen.c (genLabel, genhc08Code),
4422         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
4423
4424         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
4425         debugger hooks
4426
4427         * src/hc08/gen.c (genEndFunction, genhc08Code),
4428         * src/hc08/gen.h,
4429         * src/mcs51/gen.c (genEndFunction, gen51Code),
4430         * src/mcs51/gen.h,
4431         * src/ds390/gen.c (genEndFunction, gen390Code),
4432         * src/ds390/gen.h,
4433         * src/z80/gen.c (genEndFunction, genZ80Code),
4434         * src/z80/gen.h,
4435         * src/z80/z80.h,
4436         * src/pic/gen.c (genEndFunction, genpic14Code),
4437         * src/pic/gen.h,
4438         * src/pic16/gen.c (genEndFunction, genpic16Code),
4439         * src/pic16/gen.h,
4440         * src/avr/gen.c (genEndFunction, genAVRCode),
4441         * src/avr/gen.h,
4442         * src/xa51/gen.c (genEndFunction, genXA51Code),
4443         * src/xa51/gen.h,
4444         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
4445         specific code to cdbFile.c and out of the backend code generators
4446
4447         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
4448         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
4449         starting address is now 0
4450
4451         * as/hc08/asm.h,
4452         * as/hc08/m08pst.c,
4453         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
4454         assembler directive for DWARF support
4455         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
4456
4457         * src/src.dsp,
4458         * src/Makefile.in,
4459         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
4460
4461 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4462
4463         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
4464         and inappropriate peephole optimization in jump tables
4465
4466 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4467
4468         * as/hc08/m08pst.c,
4469         * src/SDCCglue.c: sdccopt works for the hc08 port now
4470
4471 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
4472
4473         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
4474
4475 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4476
4477         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
4478
4479 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4480
4481         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
4482         rules
4483         * src/SDCCmain.c,
4484         * src/SDCCglobl.h,
4485         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
4486         comments from the peephole optimizer replacement rules
4487         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
4488         symbols
4489         * src/SDCCcse.c (updateSpillLocation),
4490         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
4491         equivalents
4492         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
4493         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
4494         objects far pointers
4495
4496 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4497
4498         * src/SDCCsymt.h: a missing part of my last change
4499         * src/pic/ralloc.c (regTypeNum),
4500         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
4501
4502 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4503
4504         * src/SDCCicode.h,
4505         * src/SDCCicode.c (aggrToPtrDclType),
4506         * src/SDCCptropt.h,
4507         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
4508         ptrPseudoSymConvert),
4509         * src/pic/ralloc.c (regTypeNum),
4510         * src/pic16/ralloc.c (regTypeNum),
4511         * src/hc08/ralloc.c (regTypeNum),
4512         * src/ds390/ralloc.c (regTypeNum),
4513         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
4514         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
4515
4516 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4517
4518         * link/z80/lkmain.c (afile),
4519         * as/hc08/lkmain.c (afile),
4520         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
4521         prevent a pointer problem when a filename has no directory and
4522         no extension specified.
4523
4524 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4525
4526         * link/z80/lkmain.c (afile): allow periods in directory names
4527         * link/z80/lkmain.c (afile),
4528         * as/mcs51/lkmain.c (afile),
4529         * as/hc08/lkmain.c (afile): allow linker script file to have an
4530         extension other than ".lnk"
4531         * link/z80/lklex.c (getfid),
4532         * link/z80/lkmain.c (parse),
4533         * as/mcs51/lklex.c (getfid),
4534         * as/mcs51/lkmain.c (parse),
4535         * as/hc08/lklex.c (getfid),
4536         * as/hc08/lkmain.c (parse): Support comments in the linker script
4537         file on lines by themselves and after filenames
4538
4539 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4540
4541         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
4542
4543 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4544
4545         * src/z80/peeph-z80.def: removed some peephole rules that don't
4546         work with multibyte arithmetic (fixed bug #937126)
4547         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
4548         to registers and not global variables
4549         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
4550         geniCodePreInc, geniCodePostDec, geniCodePreDec,
4551         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
4552         checking for assignments not internally generated (fixed bug #931895)
4553         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
4554         structure member (fixed bug #930072)
4555
4556 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4557
4558         * src/SDCCmain.c (linkEdit),
4559         * src/hc08/main.c (_hc08_parseOptions),
4560         * as/hc08/Makefile.in,
4561         * as/hc08/aslink.h,
4562         * as/hc08/asm.h,
4563         * as/hc08/m08pst.c,
4564         * as/hc08/lkrloc.c (relr, rele),
4565         * as/hc08/lkarea.c (lnkarea)
4566         * as/hc08/lkmain.c (afile, parse),
4567         * as/hc08/lkelf.c: support for ELF output
4568         * as/hc08/lks19.c (s19),
4569         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
4570
4571 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4572
4573         * as/mcs51/lkihx.c: Fixed bug #899105.
4574
4575 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4576
4577         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
4578         .dsp files from Unix to DOS.
4579
4580 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4581
4582         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
4583         function pointers; we have been compliant for several months now.
4584         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
4585         change that was accidently commented out
4586         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
4587         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
4588         bug #922319
4589
4590 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4591
4592         * src/hc08/gen.c: output of all of the internal debugging information
4593         is now controlled by the D() macro; it is disabled by default
4594
4595 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4596
4597         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
4598         harder to keep the same registers during a CAST iCode
4599         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
4600         long via int can be done in a single cast, if the signedness is
4601         correct.
4602         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
4603         putchar() in tinibios.c in ds390's library
4604
4605 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
4606
4607         * src/SDCCast.c (decorateType): fixed bug #898889,
4608         cast result of a literal complement too
4609         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
4610         fixed check for bitfields
4611
4612 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
4613
4614         * src/SDCCicode.c (geniCodeLogic): made it static,
4615         (geniCodeLogicAndOr): added in order to fix bug #905492,
4616         (ast2iCode): fixed bug #905492
4617         * support/regression/tests/bug-905492.c: added
4618         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
4619         (processParms): fixed bug #927659: don't copy parms, this will clear
4620         decorated flag
4621         * support/regression/tests/bug-927659.c: added
4622
4623 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
4624
4625         * src/SDCCast.c (addCast): don't cast float to char
4626         * device/lib/libsdcc.lib: added _memmove
4627
4628 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
4629
4630         * device/lib/large/Makefile: fixed parallel execution by
4631         replacing `make` by `$(MAKE)`
4632
4633 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4634
4635         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
4636         offsets (fixes bug #923936)
4637
4638 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
4639
4640         * device/lib/small/Makefile: fixed parallel execution by
4641         replacing `make` by `$(MAKE)`
4642
4643 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4644
4645         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
4646
4647 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
4648
4649         * src/pic/gen.c (genCpl): multi-byte complements were not working.
4650         * src/regression/Makefile: Regression test was not running.
4651
4652 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4653
4654         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
4655         complement if possible
4656         * src/SDCCval.c (valComplement),
4657         * src/SDCCicode.c (operandOperation): fixed complement of literal
4658         * support/regression/tests/onebyte.c (testComplement): added
4659
4660 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
4661
4662         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
4663         return an optimized tree; actually replace actParm with the new tree
4664         * src/SDCCast.h: added some parantheses to remove side effects
4665         * support/regression/tests/bug-920866.c
4666
4667 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
4668         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
4669         Bit operands were not being handled properly in the pic14 port.
4670         (now src/regression/add.c passes again).
4671
4672 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4673
4674         * src/SDCC.y (labeled_statement): case and default no longer require
4675         a following statement (RFE #893037)
4676
4677 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4678
4679         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
4680         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
4681         disabled (fixes bug #916294)
4682         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
4683         "mov a,acc"; patch provided by Lenny Story
4684         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
4685
4686 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4687
4688         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
4689         functions
4690         * src/ds390/gen.c (genFunction, genEndFunction),
4691         * src/ds390/ralloc.c (ds390_assignRegisters),
4692         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
4693         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
4694         pushed if there are parameters passed on the stack. Also, a cleaner
4695         way to decide if r0/r1 should be pushed/popped. (Together they fix
4696         bug #918693)
4697
4698 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4699
4700         * doc/sdccman.lyx,
4701         * device/lib/mcs51/crtpagesfr.asm,
4702         * device/lib/mcs51/crtxinit.asm,
4703         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
4704         to avoid confusion with Si Lab's SFRPAGE register.
4705
4706 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4707
4708         * src/SDCCglue.c (emitMaps): allow public sfr variables
4709         * src/SDCCglue.c (initialComments): include compiler build date
4710         with compiler version and put the timestamp of the generated
4711         assembly file on a serperate line to be less confusing.
4712         * src/port.h: added genInitStartup hook
4713         * src/avr/main.c,
4714         * src/ds390/main.c,
4715         * src/hc08/main.c,
4716         * src/pic/main.c,
4717         * src/pic16/main.c,
4718         * src/xa51/main.c,
4719         * src/z80/main.c: genInitStartup initialize as NULL (default to
4720         historical behaviour)
4721         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
4722         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
4723         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
4724         library instead of hard coding it into the compiler.
4725         * support/regression/ports/mcs51-stack-auto/spec.mk,
4726         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
4727         * device/lib/mcs51/Makefile,
4728         * device/lib/small/Makefile,
4729         * device/lib/large/Makefile,
4730         * device/lib/mcs51/crtpagesfr.asm,
4731         * device/lib/mcs51/crtstart.asm,
4732         * device/lib/mcs51/crtxclear.asm,
4733         * device/lib/mcs51/crtxinit.asm,
4734         * device/lib/mcs51/crtclear.asm,
4735         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
4736         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
4737         and into user configurable files.
4738         * device/lib/clean.mk: clean mcs51 directory too
4739         * support/regression/tests/longlit.c: added static to T1 declaration
4740         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
4741         accesses in the initialization code
4742
4743 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4744
4745         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
4746         OSCTRIMVAL as noted in bug #916008
4747
4748 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4749
4750         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
4751         in loops with multiple exits (reported as incorrect registers
4752         used by Martin Helmling in Sdcc-user list)
4753
4754 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4755
4756         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
4757         made ds390 register extensions look less like error messages
4758
4759 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4760
4761         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
4762         reported by Adam Wozniak in Sdcc-user list
4763
4764 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
4765
4766         * src/SDCCast.c (decorateType): fixed with bug and promotion in
4767         arithmetic optimizations, added debug output
4768
4769 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
4770
4771         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
4772         * sdcc.spec: updated and split sdcc into 3 rpms
4773         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
4774         needed for literals of LEFT_OP and '+'
4775         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
4776         introduced RESULT_TYPE_NOPROM
4777         (geniCodeMultiply): fixed logic for decision if mul is optimized to
4778         left shift
4779         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
4780         limited promotion to int only for '*'
4781         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
4782
4783 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
4784
4785         * src/pic16/gen.c (genSkip),
4786         (genc16bit2lit), (gencjneshort): commented out
4787         (is_LitOp): new helper function, checks operand type
4788         (genCmpEq): rewritten
4789
4790 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
4791
4792         * support/regression/tests/bug-908454.c: added
4793
4794 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
4795
4796         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
4797         * src/SDCCicode.c (usualBinaryConversions): op needs int type
4798         (geniCodeCast): cosmetic, don't preserve bit storage class
4799         (geniCodeLeftShift): added promotion
4800         (geniCodeLogic): fixed regression
4801         * src/SDCCsymt.c (computeTypeOr): accept bits too
4802         (compareType): 2nd part of fix for bug #908454, needed for bitfields
4803
4804 2004-03-07  Borut Razem <borut.razem AT siol.net>
4805
4806         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
4807
4808 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
4809
4810         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
4811         version of pic16_genPackRegisters which does not check if ic is a
4812         CAST operator,
4813         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
4814         function cause string1.c regression test fails
4815
4816 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
4817
4818         * sim/ucsim/configure.in,
4819         * sim/ucsim/configure,
4820         * sim/ucsim/doc/Makefile.in: use docdir
4821         * src/SDCC.y: fixed sbit atrributes
4822         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
4823         * src/SDCCast.c (decorateType): |^& need special promotion handling
4824         * src/SDCCast.h,
4825         * src/SDCCsymt.h: moved definition of RESULT_TYPE
4826         * src/SDCCsymt.h (computeType),
4827         * src/SDCCicode.c: computeType() needs op
4828         * src/SDCCsymt.c (checkTypeSanity),
4829         * doc/sddman.lyx: "plain" bitfields are unsigned
4830         * src/SDCCsymt.c (computeTypeOr): added
4831         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
4832         |^& ops
4833         * src/SDCCval.c (val*): computeType() needs op
4834         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
4835         * support/regression/tests/onebyte.c: added tests for |^&
4836
4837 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
4838
4839         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
4840         for writing icode into asm output.
4841
4842 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
4843
4844         * src/pic16/device.c: added some debug lines enabled
4845         with macro DEBUG_CHECK,
4846         * src/pic16/genarith.c: more debug in genPlus,
4847         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
4848         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
4849         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
4850         * (aopForSym): onStack symbols are re-placed in data memspace,
4851         and onStack flag is cleared,
4852         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
4853         copy temporary pcodeop,
4854         * (genPcall): added warning for not updating PCLATU,
4855         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
4856         always true for pic16 port,
4857         * (genMultOneWord): NEW, supports integer multiplication,
4858         * (genMult): modified to call genMultOneWord,
4859         * (ifxForOp): added warning when return NULL,
4860         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
4861         flag is set before call to operandFromSymbol for implicit
4862         added structures,
4863         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
4864         options.intlong_rent are set by default,
4865         * (_hasNativeMulFor): modified to allow port generation of integer
4866         multiplication,
4867         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
4868         set regtype to REG_SFR for all registers, restricting seting the
4869         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
4870
4871 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4872
4873         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
4874         more than 500 times in the regression tests
4875
4876 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4877
4878         * support/Util/SDCCerr.h,
4879         * support/Util/SDCCerr.c,
4880         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4881         enumerator_list),
4882         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
4883         for symbol conflicts.
4884         * support/valdiags/tests/enum.c,
4885         * support/valdiags/tests/tentdecl.c,
4886         * support/valdiags/tests/struct.c: expect possible error messages
4887         referring to original symbol definitions.
4888         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
4889         * src/SDCCsymt.h,
4890         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
4891
4892 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
4893
4894         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
4895
4896 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
4897
4898         * src/pic16/ralloc.c (newReg): fixed bug #908929
4899
4900 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4901
4902         * src/ds390/gen.c: added missing #include "main.h"
4903
4904 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
4905
4906         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
4907         checking if symbol is already in set,
4908         * src/pic16/device.h: prototype for checkAddSym,
4909         * src/pic16/gen.c: (_G): added entry interruptvector,
4910         * (assignResultValue): removed some commented out lines,
4911         * (genFunction): check for ISR via sym->type, absolute section for
4912         interrupt code is created via a new pBlock, the goto instruction is
4913         placed now correctly at the interrupt vector position, changed all
4914         references from ivec to _G.interruptvector,
4915         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
4916         is the interrupt is a high priority one, same for return from ISR,
4917         * src/pic16/glue.c: changed all calls of addSetHead for publics and
4918         externs to calls of checkAddSym,
4919         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
4920         pic16_pcode_verbose flag is set,
4921         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
4922         * src/pic16/pcoderegs.c: message about how many registers are saved
4923         will only be emitted if pic16_pcode_verbose flag is set,
4924
4925 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4926
4927         * src/ds390/ralloc.h,
4928         * src/ds390/ralloc.c (ds390_regWithIdx),
4929         * src/ds390/gen.c (emitcode),
4930         * src/ds390/main.h,
4931         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
4932         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4933         ds390operandCompare, getRegsRead, getRegsWritten,
4934         initializeAsmLineNode): customized instruction size calculation for
4935         ds390, started basis for some register optimizations
4936         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
4937         corresponding assembly output
4938         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
4939         missing push/pop of r0/r1. Optimized push/pops
4940
4941 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4942
4943         * src/mcs51/main.c (instructionSize): fixed ACALL size
4944         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
4945
4946 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
4947
4948         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
4949         the sorting of rlist with NULL elements
4950         * (print_idataType, print_idata): NEW to create idata sections
4951         * src/pic16/device.h: idataSymSet new variable
4952         * src/pic16/gen.c (genFunction): fixed some bugs in string
4953         comparing, improved the absolute section creation for ISRs,
4954         added FSR0L/FSR0H in registers that are saved in an ISR,
4955         * (genInline): fixed the processing of inline snippets,
4956         now they undergo no process by the peephole optimizer
4957         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
4958         are placed in idataSymSet,
4959         * (pic16emitStaticSeg): extern symbols are added in externs,
4960         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
4961         switching when aboslute variables are placed in access bank memory
4962         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
4963         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
4964         commented out with #if,
4965         * (pic16_packRegisters): reintroduce the check for CAST because some
4966         symbols are not correctly handled,
4967         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
4968         pCodeInstruction instead of pCode,
4969         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
4970         pCodeAsmDir definition,
4971         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
4972         directive, then the argument directive is emitted without the leading
4973         tab, hack for inline labels which must be in the first column,
4974         * (compareLabel,pic16_findNextInstruction),
4975         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
4976         * (insertBankSwitch): modified for the new pCodeAsmDir,
4977
4978 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4979         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
4980
4981         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
4982         instance,
4983         * (pushSide): commented out with #if,
4984         * (assignResultValue): fixed some typos in saving
4985         registers,
4986         * (genPcall): FIXED and sync'ed with genCall,
4987         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
4988         * (genNearPointerGet): fixed to handle some more cases,
4989         implementation scheme via table reads,
4990         * (genConstPointerGet): modified to access code memory correct,
4991         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
4992         and improved to handle some cases
4993         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
4994         instead of "RETLW" for init data
4995         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
4996         not IN_DIRSPACE, work around to reduce bank switching when aboslute
4997         variables are placed in access bank memory (<0x80 and >=0xf80),
4998         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
4999         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
5000         TBLWT_POSTDEC,TBLWT_PREINC
5001         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
5002         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
5003         directives
5004         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
5005         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
5006         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
5007         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
5008
5009 2004-02-29  Borut Razem <borut.razem AT siol.net>
5010
5011         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
5012         support/Util/findme.h, support/Util/system.h: enhance binary relative
5013         search for lib and include by using findProgramPath()
5014
5015 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5016
5017         * src/SDCCpeeph.h,
5018         * src/SDCCpeeph.c (pcDistance),
5019         * src/port.h,
5020         * src/mcs51/ralloc.h,
5021         * src/mcs51/ralloc.c (mcs51_regWithIdx),
5022         * src/mcs51/main.h,
5023         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
5024         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5025         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
5026         size calculation port specific, started basis for some register
5027         optimizations
5028         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
5029         missing push/pop of r0/r1. Optimized push/pops
5030         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
5031         * device/lib/_modsint.c (_modsint),
5032         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
5033         and stack version so regression tests pass
5034
5035 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
5036
5037         * src/Makefile.in (dep): include SLIBOBJS in dependency check
5038         * src/SDCCast.c (decorateType): catch another small optimization
5039         with '?' operator
5040         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
5041         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
5042         modified to finally use computeType() all over SDCC,
5043         see Feature Request #877103
5044         * src/SDCCval.h: cosmetic
5045         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
5046         valCompare(); regression tested in muldiv.c
5047         * support/regression/tests/muldiv.c (testMod): mod sign follows
5048         dividend only
5049
5050 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
5051
5052         * src/SDCCast.c (decorateType): fixed bug #902362
5053         * doc/INSTALL.txt: fixed install instructions for win32
5054
5055 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
5056
5057         * device/include/Makefile.in (install): fixed by replacing spaces
5058         by tabs
5059         * doc/README.txt,
5060         * doc/INSTALL.txt: updated for release
5061         * doc/sdccman.lyx: added warning for --xstack being buggy
5062
5063 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
5064
5065         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
5066         to eliminate build warnings.
5067         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
5068
5069 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
5070            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5071
5072         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
5073         removed -penable-stack, added comment for stack pragma, added
5074         warning for not initializing the stack/frame registers, removed
5075         comment at interrupts section
5076
5077         Stack is made permanent, there is no ability to disable stack usage.
5078         * src/pic16/device.h,
5079         * src/pic16/device.c: removed all references to USE_STACK macro,
5080         * src/pic16/device.c (pic16_dump_section): when no elements in
5081         rlist, free rlist before return,
5082         * (pic16_dump_int_registers): NEW, internal registers are a new set
5083         of general purpose registers reused by each function,
5084         * (checkAddReg): returns 1 if registers is added to set,
5085         * (pic16_groupRegistersInSection): when a registers is of type
5086         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
5087         * src/pic16/device.h: memRange and Assigned Memory are deleted,
5088         SRCASECMP macro is moved here from device.c
5089         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
5090         PO_PCLATU, PO_PRODL, PO_PRODH,
5091         * (pic16_pCodeOpType, genMinus,
5092         changed compares to "a" register, with AOP_ACC,
5093         * (pic16_genPlus): fixed some bugs and indented properly,
5094         * (pic16_addSign): changed size to size+offset in the MOVWF
5095         instruction,
5096         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
5097         multiply 8-bit operand by literal, result is 8-bit,
5098         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
5099         multiply 2 8-bit operand, result is 8-bit,
5100         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
5101         genUMult8X*_16,
5102         * src/pic16/gen.c: changed accUse to contain WREG only,
5103         * (pic16_emitcomment): renamed to pic16_emitpcomment,
5104         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
5105         true, do not use immediate addressing any more unless sym is a
5106         pointer in codespace,
5107         * (aopForRemat): do not use immediate addressing when symbol not in
5108         codespace and when symbol's address is requested,
5109         * (aopOp): for-loop in if(sym->accUse) is modified for the new
5110         accUse size (= 1),
5111         * (aopGet): added case for AOP_ACC and don't return "accumulator
5112         bug" but WREG instead,
5113         * (popGetTempReg): pushes contents of temporary register in stack,
5114         * (popReleaseTempReg): pops contents of temporary register from
5115         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
5116         * (pic16_popGet): separated case AOP_ACC to return register WREG
5117         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
5118         or PO_IMMEDIATE and initializes their instance/offset appropriately,
5119         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
5120         the use of immediate pointers to certain cases only.
5121
5122         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
5123         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
5124         * (assignResultValue, genCall, genRet): modified to use the new
5125         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
5126         genPcall is still broken,
5127         * (genFunction): added code to create 'A' type pBlocks when
5128         interrupt functions are generated, code not extensively tested yet,
5129         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
5130         * (genEndFunction): modified so ISRs pop stored registers from stack,
5131         * (genMultOneByte): cleanup,
5132         * (AccRsh): added flag andmask, to and result with appropriate mask,
5133         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
5134         * (genDataPointerGet): fixed and reenabled its use,
5135         * (genNearDataPointerGet): bugs fixed,
5136         * (genDataPointerSet): bugs fixed,
5137         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
5138         pic16_DumpSymbol, pic16_DumpOp,
5139         * src/pic16/genutils.h: function prototypes for the above functions,
5140         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
5141         pointers,
5142         * (pic16emitRegularMap): many many many improvements, but needs a
5143         major cleanup,
5144         * src/pic16/main.c: enable_stack in pic16_options is removed,
5145         * (_pic16_parseOptions): removed command line options -penable-stack,
5146         * (_process_pragma): emit stack symbol only when stack pragma is
5147         processed,
5148         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
5149         redirected to FSR0L/FSR0H pair,
5150         * (pic16_get_op, pic16_get_op2): modifications and improvements,
5151         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5152         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
5153         for immediates,
5154         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
5155         * (dumpPicOptype): NEW,
5156         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
5157         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
5158         with movff instruction,
5159         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
5160         added pic16_int_regs, some packRegsFor* functions are commented out,
5161         because produce errors,
5162         * src/pic16/NOTES: minor modifications
5163
5164 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5165
5166         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
5167         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
5168         --pack-iram.
5169         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
5170         * as/mcs51/lkaomf51.c: fixed bug #895763
5171
5172 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
5173
5174         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
5175
5176 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5177
5178         * doc/sdccman.lyx: added details about the HC08 storage classes and
5179         interrupts, fixed the register usage info for z80 & gbz80
5180
5181 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
5182
5183         * doc/sdccman.lyx: added more pic16 port documentation
5184         * device/include/pic16/: added header pic18fregs.h
5185
5186 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
5187
5188         * doc/sdccman.lyx: added Vangelis' contribution
5189
5190 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5191
5192         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
5193         extend to the next CALL or PCALL, not just to the next CALL.
5194
5195 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
5196
5197         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
5198
5199 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5200
5201         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
5202         bug #895752 and a better fix for bug #716790
5203
5204 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5205
5206         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
5207
5208 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5209
5210         * doc/sdccman.lyx: minor changes, minor changed
5211
5212 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
5213
5214         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
5215         which can't handle SDCC_NEWONEBYTEOPS,
5216         (geniCodeMultiply): removed conversion from mult to shift for pic14
5217         and pic16
5218
5219 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5220
5221         * src/hc08/gen.h,
5222         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
5223         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
5224         thus fixing bug #895406
5225
5226 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
5227
5228         * device/lib/_modsint.c,
5229         * device/lib/_modslong.c: sign follows divisor only
5230         * src/hc08/gen.c (genMultOneByte): if result size is 1,
5231         signs or signedness can be ignored
5232         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
5233         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
5234         added optimization for IFX,
5235         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
5236         arguments;
5237         reenabled optimization for IFX, which was removed on 2004-01-11
5238         * src/SDCCast.h: added return type IFX
5239         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
5240         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
5241         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
5242         SDCC_OLDONEBYTEOPS selects the old behaviour
5243         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
5244         changed again and commented promotion rule
5245         * src/SDCCval.c (valDiv): promotion no longer necessary
5246         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
5247         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
5248         rewritten
5249         * support/regression/tests/onebyte.c: added
5250
5251 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
5252
5253         * gen.c (genInline): reverted to old code for assemnling inline
5254         code because of bug reported James Chadd
5255
5256 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
5257
5258         * ralloc.h: missing declarations from previous patch,
5259         seems that patch for ralloc.h was never applied, fixed
5260
5261 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5262            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5263
5264         * pcode.c,
5265         * pcode.h,
5266         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
5267         indirect addressing. Marked FSR0 as deprecated
5268         * gen.c (pointerCode): commented out, not needed now
5269         (pic16_popGet2p): new MOVFF helper function
5270         (genGenPointerGet),
5271         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
5272         (shiftRLong): removed duplicate debugging info
5273
5274 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5275
5276         * src/ds390/gen.c (genNearPointerGet),
5277         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
5278         optimization with bits, but not bitfields.
5279         * src/ds390/ralloc.c (packRegisters),
5280         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
5281
5282 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
5283
5284         * src/SDCCcse.c (algebraicOpts): copy operands before modification
5285
5286 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5287
5288         * src/SDCCsymt.h,
5289         * src/SDCCicode.c (operandFromSymbol),
5290         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
5291         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
5292         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
5293         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
5294         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
5295         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
5296         bug #892038
5297         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
5298         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
5299         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
5300         * src/SDCCsymt.c (newSymbol),
5301         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5302         enumerator_list),
5303         * src/SDCCval.h,
5304         * src/SDCCval.c (newiList): fixed bug #885705
5305
5306 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5307
5308         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
5309         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
5310
5311 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5312
5313         * device/include/c8051f120.h,
5314         * device/include/c8051f300.h,
5315         * device/include/c8051f310.h: added/updated header files for Silicon
5316         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5317         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
5318         in new section Submitting patches
5319
5320 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5321
5322         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
5323         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5324         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5325         genGenPointerSet),
5326         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
5327         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5328         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5329         genGenPointerSet),
5330         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
5331         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5332         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5333         genGenPointerSet),
5334         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
5335         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5336         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5337         genGenPointerSet): fixed bug #892400
5338         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
5339         to eliminate build warnings.
5340         * src/SDCCast.c (processParms),
5341         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
5342         fixed bug 751859
5343         * support/valdiag/valdiag.py: added GCC to the list of defines active
5344         when compiling with gcc
5345
5346 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5347
5348         * support/Util/SDCCerr.h,
5349         * support/Util/SDCCerr.c,
5350         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
5351         with an incomplete type (fixed bug #883734)
5352         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
5353
5354 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5355
5356         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
5357
5358 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5359
5360         * src/SDCCast.c (decorateType),
5361         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
5362         function pointer implementation
5363         * support/regression/tests/funptrs.c: added tests to verify both forms
5364         of function pointers work correctly. Added tests to verify parameters
5365         are passed in the correct order.
5366
5367 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
5368
5369         * device.c (regCompare): registers are sorted by ascending
5370         address and increasing size,
5371         * main.c (_pic16_finaliseOptions): removed the declaration
5372         of compiler macro MCU. Now a macro of the format pic18fxxxx
5373         will be defined from the command line
5374
5375 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5376             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5377
5378         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
5379         PCOP_RLCF was overwritten!
5380         * gen.c (genSkip): commented out calls to pic16_emitcode,
5381         * (genCmpEQ): fixed "long" compares, only high word did get compared,
5382         * (genlshTwo),
5383         * (genRRC): added debugging info,
5384         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
5385         overwritten while shifting,
5386         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
5387         overwritten while shifting,
5388         * (AccLsh),
5389         * (AccRsh),
5390         * (shiftLLeftOrResult),
5391         * (shiftRLeftOrResult),
5392         * (shiftRLong),
5393         * (shiftLLong): Implemented with pic16_emitpcode
5394         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
5395         * (genLeftShift): Fixed bug, operand for shift by variable always
5396         was "and"ed with 0x0f,
5397         * (genLeftShiftLiteral),
5398         * (genrshTwo),
5399         * (genRightShiftLiteral): added debugging info,
5400         * (genrshFour): added comment,
5401         * (genRightShift): determined signedness from operand "left"
5402         instead of "result"
5403
5404 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5405
5406         * src/SDCCicode.c (geniCodeParms),
5407         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
5408         function pointers, fixed function pointer bugs #861242 and #861896
5409
5410 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5411
5412         * device/include/c8051f000.h,
5413         * device/include/c8051f120.h,
5414         * device/include/c8051f300.h: added header files for Silicon
5415         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5416
5417 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
5418
5419         * src/SDCCast.c (processParams): added new type flow and restructured
5420         (gatherAutoInit): added new type flow
5421         (addCast): cosmetic changes
5422         (getLeftResultType): added new type flow for array indices, patch
5423         provided by Stas, see FR #877103
5424         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
5425         array index patch by Stas
5426         * src/SDCCast.h: added prototype getResultTypeFromType()
5427         * src/SDCCval.h,
5428         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
5429         * src/pic/glue.c (pic14emitStaticSeg),
5430         * src/pic16/glue.c (pic16emitStaticSeg),
5431         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
5432         for initialization of symbols
5433         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
5434         * support/Util/SDCCerr.h:
5435         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
5436         * .version: bumped version number to 2.3.8
5437         * device/include/Makefile.in (install),
5438         * doc/Makefile (install): changed to 'rm `find ...`' construct to
5439         avoid warnings
5440
5441 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
5442
5443         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
5444         Slade Rich fixed an optimization bug
5445         * src/pic/pcodepeep.c,
5446         * src/pic/pcoderegs.c
5447         * doc/Makefile (install): added test for directory
5448
5449 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5450
5451         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
5452         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
5453         * src/pic/ralloc.c (getRegPtr, getRegGpr),
5454         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
5455         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
5456         * as/mcs51/asexpr.c (term),
5457         * as/hc08/asexpr.c (term): fixed bug #887146
5458
5459 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5460
5461         * src/z80/gen.c (genMult): handle single byte result product
5462         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
5463         DUMMY_READ_VOLATILE (fixed bug #886367)
5464
5465 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5466
5467         * support/regression/tests/libmullong.c: fixed logic, on little endian
5468         hosts we ended without a mullong_wrapper()
5469
5470 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5471
5472         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
5473         virus/worm forged address usage.
5474
5475 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5476
5477         Fixed promotion, it should be done on AST level:
5478         * src/SDCCast.c (addCast): added promotion to int
5479         (decorateType): updated call to upCast()
5480         * src/SDCCicode.c (geniCodeLeftShift): removed call to
5481         usualUnaryConversions()
5482
5483 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
5484
5485         * support/regression/tests/literalop.c (mulWrapper): Added a
5486         wrapper to remove integer overflow warnings.
5487
5488         * support/regression/tests/float_trans.c: Made work on host.
5489
5490         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
5491         location of sz80.
5492
5493         * support/regression/generate-cases.py (main): Changed from inline
5494         to a main method.
5495
5496         * doc/Makefile (install): Changed to depth first to get rid of
5497         missing directory install warning.
5498
5499         * as/Makefile (install-doc): Made work on Mac.
5500
5501 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
5502
5503         * src/SDCCast.c: added an additional type flow in decorateType() of
5504         opposite direction, see feature request #860006; it's enabled at runtime
5505         by setting the environment variable SDCC_NEWTYPEFLOW
5506         * src/SDCCast.h: changed prototype of decorateType()
5507         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
5508         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
5509         'char' to 'int' can be omitted, if both operands are 'unsigned char';
5510         see feature request #877103
5511         * src/SDCCval.c: updated call of decorateType()
5512         (valBitwise): fixed bug #882876
5513         (valMinus): added promotion
5514         (valLogicAndOr): result is unsigned
5515         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
5516         * src/SDCCsymt.c (computeType),
5517         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
5518         must not cause an unsigned operation
5519         * src/pic/glue (pic14emitRegularMap),
5520         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
5521
5522 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
5523
5524         * src/pic/pcode.c (PCodeID): commented out left over debug code
5525
5526 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
5527
5528         * support/valdiag/tests/overflow.c: added shift tests
5529         * src/pic/device.c,
5530         * src/pic/gen.c,
5531         * src/pic/gen.h,
5532         * src/pic/glue.c,
5533         * src/pic/main.c,
5534         * src/pic/pcode.c,
5535         * src/pic/pcode.h,
5536         * src/pic/pcodepeep.c,
5537         * src/pic/pcoderegs.c,
5538         * src/pic/ralloc.c,
5539         * src/pic/ralloc.h: applied patch from Slade Rich;
5540         added support for multiple code pages and multiple RAM banks on the
5541         PIC 14 port. The ASM files now no longer simply assume all the
5542         code / RAM are in the same page / bank. This means the linker can
5543         safely allocate code/RAM of separate ASM files to different pages/banks.
5544         * doc/sdccman.lyx: added Slade's tips
5545         * src/mcs51/peeph.def: fixed bug #880768
5546
5547 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5548
5549         * src/hc08/ralloc.c (rematStr): fixed bug #879282
5550         * src/SDCCast.c (decorateType): fixed bug #880197
5551
5552 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
5553
5554         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
5555         getopt.h.
5556
5557         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
5558         strtof is not part of C89 and isn't included with Mac OS X.
5559
5560 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5561
5562         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
5563         shiftL2Left2Result): fixed bug #879326
5564         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
5565         (genMultOneByte): fixed bug in signed vs unsigned multiplication
5566         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
5567         address fetch for clr instruction
5568         * device/lib/hc08/_mulint.c: created optimized assembly version
5569         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
5570
5571 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
5572
5573         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
5574         proposed in FR #877103
5575
5576 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
5577
5578         * src/SDCCval.c (cheapestVal): added missing checks
5579         * src/SDCCicode.c (usualBinaryConversions): fixed condition
5580         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
5581
5582 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
5583
5584         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
5585         equal operands
5586
5587 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
5588
5589         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
5590         loaded with the linker search paths (-L arguments) and the libraries
5591         to be linked with the current source (-l arguments). Changes
5592         currently will affect only the pic16 port.
5593         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
5594         include path the port specific paths and port specific libraries,
5595         * gplink command now contains the $3 argument,
5596         * src/pic16/device.h,
5597         * src/pic16/device.c,: structure PIC_device is made public and
5598         renamed to PIC16_device, the same for variable Pics which is renamed
5599         to Pics16. Updated all references to them.
5600         * src/pic16/glue.c (pic16glue): corrected bug with code
5601         initialization which bypassed the variable initializations block.
5602
5603         * device/lib/pic16/Makefile.rules: removed --penable-stack from
5604         COMPILE_FLAGS and added the --nostdinc option
5605
5606 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5607
5608         * device/include/mc68hc908jb8.h: Register defs for another member
5609         of the hc08 family. Contributed by Bjorn Bringert - thanks!
5610
5611 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
5612
5613         Documenting changes from previous commits.
5614         * configure.in (version 1.56),
5615         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
5616         when generating output files to configure the pic16 library,
5617         but now I've commented it out, since gputils aren't installed in the
5618         SF compile farm, so library won't compile
5619
5620         * device/lib/Makefile.in (version 1.56): initially I've added in
5621         target 'all' the prerequestive 'model-pic16' so it compiled the
5622         pic16 library, but now I've commented it out for the same reasons
5623         above,
5624         * added targets 'model-pic16' and 'objects-pic16' to compile the
5625         library
5626         * added target 'port-specific-objects-pic16' to handle the
5627         generated libraries and copy them into the build/ directory
5628         * added target 'clean-intermediate-pic16' to clean intermediate
5629         files into pic16 directory
5630         * in target 'installdirs' added line to create directory pic16 in
5631         the installation path
5632
5633         * device/include/Makefile.in (version 1.11): in target 'install'
5634         added lines to copy all header files to installation path,
5635         * in target 'installdirs' added line create directory for pic16
5636         headers in the installation path
5637
5638 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
5639
5640         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
5641          a function call
5642
5643 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
5644
5645         * configure,
5646         * device/lib/configure.in,
5647         * device/lib/configure: fixed for autoconf 2.57
5648
5649 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5650
5651         * src/z80/main.c (_parseOptions): fixed the portmode= command line
5652         option so that it actually works. Made it specific to the z80, since
5653         the gbz80 doesn't have these kinds of I/O ports.
5654
5655 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5656
5657         * device/include/z180.h,
5658         * device/lib/_memcpy.c,
5659         * device/lib/_memmove.c,
5660         * device/lib/_mulint.c,
5661         * device/lib/ser_ir.c,
5662         * device/lib/ser_ir_cts_rts.c,
5663         * device/lib/_strcmp.c,
5664         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
5665         * src/z80/main.c (_process_pragma): add support for pragmas bank and
5666         portmode; added deprecation warning for bank= and protmode= forms.
5667         Also, guard against buffer overflow.
5668         * src/z80/gen.c (aopGet): generate better code for sfr banked read
5669
5670 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5671
5672         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
5673         changed interrupt vector table generation to only emit declared vectors.
5674         * device/include/Makefile.in: added missing backslash
5675         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
5676
5677 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5678
5679         Mainly changes to support compilation of the device libraries
5680         * src/pic16/device.c: stack is allocated via symbol and not
5681         via literal number. The symbol is placed in the corresponding
5682         position of the data ram
5683         * (pic16_dump_section): relocatable and absolute uninitialized
5684         data are now emitted in sorted order to reduce section naming,
5685         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
5686         weren't marked as being in the access bank,
5687
5688 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5689
5690         Added portion of GNU PIC Library under the directory
5691         device/include/pic16 and device/lib/pic16. These files
5692         contain the declarations of SFRs for the PIC18Fxx2 devices.
5693         The directory is initialized via configure from toplevel.
5694
5695 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
5696
5697         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
5698         the spilllocations to be compared correctly
5699
5700 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5701
5702         * src/SDCCast.c (decorateType): fixed bug introduced today
5703
5704 2004-01-12  Borut Razem <borut.razem AT siol.net>
5705
5706         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
5707         doc/sdccman.lyx: upper case pragmas are deprecated
5708
5709 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5710
5711         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
5712         in simpler and even better code
5713
5714 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
5715
5716         * src/SDCCicode.c (operandOperation): fixed bug #874819
5717         * src/SDCCast.c (decorateType): fixed
5718         char foo (unsigned long ul) { return ul > 0; }
5719
5720 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5721
5722         * doc/sdccman.lyx: Moved and added some sections, small changes
5723         all over. Telling LaTeX to be less strict with word spacing
5724         to better keep the right margin. Changed some notes about
5725         maintainance of the ports in section 3.2.1 - is it OK like this?
5726
5727 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
5728
5729         SDCC source changes:
5730         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
5731         convilong): modified to inform the pic16 port that builtin functions
5732         are external
5733
5734         PIC16 PORT specific changes:
5735         * src/pic16/device.c pic16_dump_equates() added,
5736         processor registers declared internally by the port are emitted in
5737         the translation as equates,
5738         * src/pic16/gen.c: inline code is passed unprocessed to the
5739         translation,
5740         * (pic16_popGetLit2): fnuction modified to take second operand as
5741         pCodeOp pointer and not as literal,
5742         * (popRegFromIdx): prefixed with pic16_,
5743         * (pic16_popCombine2): modified to receive already allocated pCode
5744         operands,
5745         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
5746         * (genFunction): initializes local stack frame and pushes on stack
5747         all the registers used by this function,
5748         * (genEndFunction): restores all registers from stack and restores
5749         stack frame,
5750         * src/pic16/glue.c (pic16emitRegularMap): various changes and
5751         improvements,
5752         * (pic16glue): changed the program startup sequence,
5753         * added new dbName code 'A' for functions placed in absolute section
5754         * src/pic16/main.c: added function attribute _naked,
5755         * added pragma 'code' to place a fnuction at an absolute address,
5756         * added command line arguments --debug-ralloc and --pcode-verbose,
5757         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
5758         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
5759         * (pic16_newpCodeOpLit2): modified to take the second operand as
5760         pCodeOp pointer,
5761         * (pic16_printpBlock): modified to emit each function in a separate
5762         section,
5763         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
5764         UPPER for immediate operands,
5765         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
5766         instruction,
5767         * src/pic16/peeph.def: all peepholes with movff are commented out,
5768         because there is a problem in the pcode peep optimizer,
5769         * src/pic16/ralloc.c: the register allocator can now reuse local
5770         function symbols for another function. This saves register usage.
5771         * src/pic16/ralloc.h: added flag isLocal in structure regs,
5772
5773         Added file src/pic16/NOTES with information about program writing on
5774         the current port version.
5775
5776 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5777
5778         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
5779         and peephole 252 (array access)
5780
5781 2004-01-09  Borut Razem <borut.razem AT siol.net>
5782
5783         * src/SDCCmain.c : fixed #872250: -l command line defined library
5784           files are scanned before standard library files
5785
5786 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5787
5788         * src/SDCCast.c (decorateType): fixed bug #874046
5789
5790 2004-01-09  Borut Razem <borut.razem AT siol.net>
5791
5792         * support/scripts/sdcc.nsi: remove previous installation
5793
5794 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5795
5796         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
5797         bytes for last interrupt vector (mcs51)
5798         * sdcc.spec: fixed typo
5799
5800 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5801
5802         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
5803         gen51Code): more efficient parameter receive for --model-large
5804         ("bug" #845294)
5805
5806 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5807
5808         * src/ds390/main.c,
5809         * src/z80/main.c: added missed needLinkerScript flags (more than
5810         one port structure defined in these file)
5811         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
5812         bug #795325
5813
5814 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
5815
5816         * src/SDCCmain.c: removed various references to DEFAULT_PORT
5817         * src/port.h: added flag needLinkerScript in port->linker
5818         structure to inform whether to create a .lnk file or not,
5819         * src/avr/main.c,
5820         * src/ds390/main.c,
5821         * src/hc08/main.c,
5822         * src/mcs51/main.c,
5823         * src/pic/main.c,
5824         * src/pic16/main.c,
5825         * src/xa51/main.c,
5826         * src/z80/main.c: changed appropriately to configure
5827         needLinkerScript flag
5828         * src/pic/gen.c,
5829         * src/pic16/gen.c (genAddrOf): fixed bug #863624
5830         * src/pic/glue.c: added variable udata_section_name to
5831         override default uninitialized data segment definition for
5832         devices only with SHAREBANK memory (reported from Erik Epetrich)
5833         * (pic14emitOverlay): modified to emit a commented overlay segment
5834         directive when no overlay data exist
5835         * (picglue): modified to emit uninitialized data segment
5836         according to udata_section_name
5837         * src/pic/main.c (_pic14_parseOptions): added command line
5838         options --udata-section-name=[name] to override default
5839         udata definition name
5840         * modified _linkCmd and _asmCmd to include compiler passed
5841         arguments via -W option
5842         * src/pic16/main.c: added $l in _asmCmd, changed extension for
5843         object file from '.rel' to '.o' in port->linker structure,
5844         changed size of fptr from 2 to 3 in port structure
5845
5846 2004-01-07  Borut Razem <borut.razem AT siol.net>
5847
5848         * support/scripts/sdcc.nsi: update PATH
5849         * support/scripts/sdcc.ico: craeted
5850
5851 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
5852
5853         * device/include/Makefile.in: fix install
5854         * doc/Makefile: fix install
5855
5856 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5857
5858         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
5859         in bug #860505
5860         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
5861         how the function variable allocation summary is displayed; also
5862         include information about variables allocated to the overlay
5863         segment
5864
5865 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5866
5867         * as/mcs51/lkmain.c: Help about -Y option
5868         * as/mcs51/lkarea.c: Fixed gcc warnings
5869
5870 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5871
5872         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
5873         fixed warning
5874         * support/valdiag/tests/overflow.c: added
5875         * src/SDCCast.c (decorateType),
5876         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
5877         LEFT_OP (left shift)
5878
5879 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5880
5881         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
5882         (default behaviour).
5883
5884 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5885
5886         A python script to validate compiler diagnostic messages. It can be
5887         used to verify that sdcc complains about bad c source code and
5888         gives a good location of the error.
5889         * support/valdiag/Makefile,
5890         * support/valdiag/valdiag.py,
5891         * support/valdiag/tests/*
5892
5893 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5894
5895         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
5896         * src/SDCCsymt.c (newEnumType),
5897         * src/SDCCsymt.h
5898         * support/Util/SDCCerr.c,
5899         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
5900         enum related bugs.
5901         * support/regression/tests/enum.c: added test for enum values that
5902         require at least 2 bytes of storage.
5903
5904 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5905
5906         * src/common.h: added ifndef/define/endif macros
5907         around the header file.
5908         Bug reported from Jesus Calvino-Fraga
5909
5910 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5911
5912         * sdcc.spec: updated
5913         * device/include/Makefile.in: don't install CVS directories
5914         * device/lib/Makefile.in: added removal of CVS directories after install
5915         * doc/Makefile: fixed install, added local_icons
5916         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
5917         * src/mcs51/gen.c (genRightShift): fixed bug #870788
5918         * src/ds390/gen.c (genRightShift): fixed bug #870788
5919         * src/SDCCast.c (decorateType): fixed bug #870781
5920
5921 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5922
5923         PIC16 port related changes:
5924         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
5925         added variable stackPos,
5926
5927         * gen.c: genCall, assignResultValue: added support for
5928         pushing/retrieving function parameters to/from stack,
5929         genFunction,genEndFunction: setup stack frame for the
5930         generated function,
5931         genAddrOf: will be changed according to bug 863624
5932
5933         * added files genutils.c and genutils.h which contain gen*
5934         debugged and optimised functions extracted from gen.c
5935
5936         * glue.c: added variable 'externs' which holds extern symbols,
5937         pic16emitRegularMap: is modified to properly handle relocatable
5938          symbols under the new scheme,
5939         pic16createInterruptVect: is modified
5940         pic16printPublics: is modified to emit 'global' assembler directives,
5941         added pic16_printExterns to print extern symbols,
5942         pic16glue: initializes stack/frame pointer in the beginning of
5943         the assembly output. Temporary hack, will be corrected later,
5944         because gplink yet does not support stack and SDCC does not
5945         yet support a type of crt0.o object to create the final binary.
5946
5947         * Removed many lines that contain 8051 legacy code.
5948         * The code is finally placed under a 'code' directive.
5949         * Added port specific options.
5950
5951         * _process_pragma: simplified since now we do not need *special*
5952         include file to define SFR registers. But a separate header
5953         will be needed. This will be developed later.
5954         * _pic16_parseOptions: added, parses port specific options:
5955         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
5956         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
5957         --preplace-udata-with=
5958
5959         * _pic16_setDefaultOptions: modified to initialize section names,
5960         but hack is temporarly out of order since it needs improvement.
5961         * _pic16_genAssemblerPreamble: configuration words are emitted by
5962         their address instead of their name. This part is incomplete and
5963         supports only the 18Fxx2 devices. Other devices will emit an error
5964         during assembly since they do not contain the same set of config
5965         registers
5966         * _pic16_genIVT: is modified,
5967
5968         * pcode.c: added definitions for some hardware registers that are needed
5969         for stack support
5970         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
5971         All PCI entries are updated. Now LFSR is supported.
5972         * Removed pic16_pciTRIS is mentioned by mdubuc in source
5973         * added pic16_newpCodeOpLit2 to support instructions with
5974         two literal arguments
5975         * pic16_pCode2str: corrected code that emits assembler instructions
5976         with two literal operands and those that have an access bit modifier
5977         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
5978         this fixes a bug which caused some labels to be lost, when an
5979         assembler directive was added, i.e. banksel,
5980         * pic16_FixRegisterBanking: improved logic that causes the insertion
5981         of bank switching,
5982         * InlineFunction: functions that are called once, are not any more
5983         inlined. This can be a port option in the future,
5984
5985         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
5986
5987         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
5988         hold the corresponding uninitialized symbols,
5989         * pic16_allocProcessorRegister: registers have explicit marked the
5990         accessBank field,
5991         * pic16_allocInternalRegister: registers are explicit marked as
5992         not used,
5993         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
5994         processing list, so bit registers were lost,
5995         *
5996
5997         * ralloc.h: added field 'accessBank' and original symbol operand
5998         in register definition,
5999         * removed the field isMapped from register definition,
6000
6001         ** Several functions have been removed from various sources:
6002         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
6003         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
6004         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
6005         pic16_assignRelocatableRegisters
6006
6007         ** others have been introduced:
6008         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
6009         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
6010
6011 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
6012
6013         * support/scripts/inc2h.pl: changed definition of BIT_AT
6014         to emit 'sbit at' instead of 'bit at'. This was a request.
6015
6016         PIC16 port related preliminary changes:
6017         * gen.c: prefixed function popRegFromString with
6018         pic16_ and all references to it corrected
6019         * pcode.c: all pic16_pc_* hardware registers prefixed
6020         with underscore (_),
6021         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
6022         * ralloc.c: newReg(): when register is REG_SFR then
6023         set address to rIdx,
6024         pic16_allocProcessorRegister(): marks register wasUsed=0
6025         pic16_writeUsedRegs(): added a call to assign processor
6026         registers via pic16_assignFixedRegisters
6027
6028 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6029
6030         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
6031         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
6032         variables in unused register banks.  Also the SSEG is placed
6033         wherever there is enough space for it, and IDATA can be anywhere
6034         in internal RAM.  For now compile using -Wl-Y[stack_size].
6035         The mem file is different for this option as well, since it
6036         makes no sense of talking about DSEG lenght.
6037
6038 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
6039
6040         * src/SDCClrange.c: fixed bug 869095 that caused segfault
6041         in certain cases, e.g. when ROM assignment, patch provided
6042         from Albert den Haan.
6043
6044 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
6045
6046         Many signedness and type propagation fixes:
6047         * src/SDCCicode.c: made geniCodeCast() static
6048         replaced SPEC_ by IS_ (cosmetic)
6049         (operandOperation): fixed div and mod operation
6050         (usualBinaryConversions): added support for promotion of char
6051         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
6052         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
6053         (geniCodeAdd): an array index will stay unsigned, even if promoted
6054         from char to int
6055         (geniCodeArray): ditto
6056         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
6057         * src/SDCCsymt.c (computeType): added more support for char;
6058         promotion of char is selectable by promoteCharToInt, fixed signedness
6059         for all cases
6060         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6061         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6062         * src/SDCCval (val*): replaced signedness calculation by
6063         computeType()
6064         rearranged if-branches (cosmetic)
6065         (valShift): added warning W_SHIFT_CHANGED
6066         (valCompare): fixed problem with different types
6067         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
6068         * support/regression/tests/literalop.c: added many cases
6069         * support/regression/tests/ast_constant_folding.c: changed finally to
6070         'unsigned int'
6071         * .version: new year, new version: 2.3.7
6072         * src/SDCCmain.c (main): applied patch #866468
6073         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
6074         provided by Scott Bronson
6075         * doc/sdccman.lyx: updated documentation for sdcdb
6076         updated and added chapter tips
6077
6078 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6079
6080         * src/SDCCsymt.h: missing from yesterday's commits
6081
6082 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6083
6084         * src/SDCC.y (struct_or_union_specifier),
6085         * support/Util/SDCCerr.c,
6086         * support/Util/SDCCerr.h: verify that struct & union tags are used
6087         as declared.
6088
6089 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6090
6091         * src/SDCCglobl.h: missing from yesterday's commits
6092
6093 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6094
6095         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
6096         sft_attributes, struct_declaration, parameter_declaration,
6097         type_name, start_block, declaration_list),
6098         * src/SDCC.lex (check_type): support redefinition of typedef names
6099
6100 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6101
6102         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
6103         aligned xdata arrays. Erik helped me with the if clause.
6104
6105 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6106
6107         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
6108         warning
6109
6110 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6111
6112         * src/SDCCast.h,
6113         * src/SDCCast.c (newAst_),
6114         * src/SDCCicode.h,
6115         * src/SDCCicode.c (ast2iCode, newiCode),
6116         * src/SDCCglobl.h,
6117         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
6118         expr, statement, expression_statement, selection_statement,
6119         iteration_statement, expr_opt, jump_statement): foundation for tracking
6120         sequence points
6121         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
6122         point code too)
6123
6124 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6125
6126         * support/Util/SDCCerr.c,
6127         * src/SDCCast.h,
6128         * src/SDCCast.c (createCase, createDefault, decorateType),
6129         * src/SDCClabel.c (labelUnreach),
6130         * src/SDCC.y (labeled_statement, jump_statement): More improvements
6131         to error messages.
6132         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
6133         (with thanks to Stas Sergeev)
6134         * device/include/time.h,
6135         * device/lib/time.c (CheckTime): suppress unreachable code warning
6136
6137 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6138
6139         * src/SDCCast.c (createIvalCharPtr),
6140         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
6141         bug #753752)
6142         * support/regression/tests/nullstring.c: tests for these two bugs
6143
6144 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6145
6146         * support/Util/SDCCerr.h,
6147         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
6148         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
6149         about storage class and 'at' used inside struct or union
6150         * src/SDCCBBlock.c (iCodeFromeBBlock),
6151         * src/SDCCcse.c (ifxOptimize),
6152         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
6153         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
6154         printIval, emitStaticSeg, emitOverlay),
6155         * src/SDCClabel.c (deleteIfx),
6156         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
6157         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
6158         gatherAutoInit, processParms),
6159         * support/Util/SDCCerr.h,
6160         * support/Util/SDCCerr.c (werrorfl): Support for better error location
6161         reporting for post-parse errors.
6162
6163 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6164
6165         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
6166         implicit casts via union; they don't work on big endian systems
6167         (possible fix for bug #861138)
6168
6169 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6170
6171         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
6172         * src/mcs51/main.c: fixed the fix for bug #737001
6173
6174 2003-12-15  Borut Razem <borut.razem AT siol.net>
6175
6176         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
6177
6178 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6179
6180         * support/makebin/makebin.c: put output in binary mode
6181
6182 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6183
6184         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
6185         xdata and data memory on startup. Set the environment variable
6186         SDCC_NOGENRAMCLEAR to disable this.
6187         * src/mcs51/peephole.def,
6188         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
6189         (allows non-interrupt and interrupt code to safely compete for a resource
6190         without the non-interrupt code having to disable interrupts)
6191
6192 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6193
6194         * src/SDCCicode.c (geniCodeAdd),
6195         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
6196         with valFromType if type might be a pointer and host is big endian).
6197         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
6198         types, not just integer types.
6199         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
6200         multiply defined with mismatching "at" address.
6201
6202 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6203
6204         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
6205         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
6206         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
6207         with embedded nulls (fixed bug #753752)
6208
6209 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6210
6211         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
6212         Apparently this did not see much testing (endless loop)
6213
6214 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6215
6216         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
6217
6218 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6219
6220         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
6221         gracefully handle NULL memmap pointers
6222
6223 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6224
6225         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
6226         instead of deleting the iCode when an operand is volatile
6227         * src/z80/gen.c (genDummyRead),
6228         * src/mcs51/gen.c (genDummyRead),
6229         * src/ds390/gen.c (genDummyRead),
6230         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
6231         not just IC_RIGHT
6232         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
6233         * src/SDCC.y: fixed bug #850420
6234
6235 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6236
6237         Applied z80 i/o port patch from Peter Townson and fixed some operators
6238         to better handle operands in A register.
6239         * device/include/z180.h
6240         * src/SDCC.y
6241         * src/SDCCglue.c
6242         * src/z80/gen.c
6243         * src/z80/gen.h
6244         * src/z80/main.c
6245         * src/z80/peeph-z80.def
6246         * src/z80/peeph.def
6247         * src/z80/z80.h
6248
6249 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6250
6251         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
6252
6253 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6254
6255         * device/lib/hc08/_mullong.c: Removed extra #endif
6256
6257 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6258
6259         * sim/ucsim/hc08.src/inst.cc,
6260         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
6261         carries from x to h
6262         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
6263         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
6264         * device/include/stdarg.h: fixed varargs for hc08
6265         * device/lib/Makefile.in,
6266         * device/lib/hc08/Makefile,
6267         * device/lib/hc08/_mulint.c,
6268         * device/lib/hc08/_mullong.c: fixed some endian problems
6269
6270 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6271
6272         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
6273         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
6274         * device/lib/_gptrget.c,
6275         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
6276
6277 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6278
6279         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
6280         * src/SDCCast.c (astErrors): fixed bug #846007
6281         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
6282
6283 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6284
6285         * src/SDCCast.c (decorateType): disabled a transformation I added in
6286         revision 1.188 (access to fields of a structure at an absolute address);
6287         it breaks with bitfields, extern declarations, and gcse analysis.
6288         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
6289         could be assigned through a pointer, so don't complain.
6290         * src/SDCCast.c (astErrors),
6291         * src/SDCCast.h,
6292         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
6293
6294 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
6295
6296         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
6297         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
6298         output of __config directives, since gpasm now supports them
6299         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
6300         pre-processor macro, i.e. -DMCU=p18f452
6301         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
6302         and modified to handle 'cast' icode similarly to '=' icode
6303         * src/pic16/device.h (typedef struct PIC_device): added field
6304         'extMIface' to indicate that chip has external memory interface
6305         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
6306         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
6307         18F8720
6308
6309 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6310
6311         * src/SDCC.y (pointer): fixed bug #846006
6312         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
6313         * src/SDCCast.c (decorateType): fixed bug #846009
6314         * src/ds390/peeph.def,
6315         * src/ds390/gen.c (genAnd, genOr),
6316         * src/mcs51/peeph.def,
6317         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
6318
6319 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6320
6321         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
6322         * src/SDCCdflow.c
6323         * src/SDCCcse.c
6324         * src/SDCCcse.h
6325         * src/SDCCBBlock.h
6326         * src/SDCCBBlock.c
6327
6328 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
6329
6330         fixed bug #845089
6331         * src/SDCCbitv.h,
6332         * src/SDCCbitv.c: added function to free a bitvector
6333         * src/SDCClrange.h,
6334         * src/SDCClrange.c: added function to recompute the liveranges
6335         * src/avr/ralloc.c,
6336         * src/ds390/ralloc.c,
6337         * src/hc08/ralloc.c,
6338         * src/mcs51/ralloc.c,
6339         * src/pic/ralloc.c,
6340         * src/pic16/ralloc.c,
6341         * src/xa51/ralloc.c,
6342         * src/z80/ralloc.c: recompute the liveranges after register packing
6343
6344 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
6345
6346         * src/SDCCloop.c (newInduction): fixed bug #845630
6347
6348 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6349
6350         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
6351         inadvertantly left behind from my 2003-11-12 change
6352
6353 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6354
6355         Updated headers I neglected to commit yesterday.
6356         * src/SDCClrange.h,
6357         * src/SDCCicode.h
6358
6359 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6360
6361         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
6362         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
6363         * src/SDCCopt.c (eBBlockFromiCode),
6364         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
6365         the creation of the key hash table from the sequencing so it can be used
6366         earlier (for some GCSE bug fixes still pending)
6367
6368 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6369
6370         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
6371         * support/regression/tests/addsub.c: testing genPlus shortcut
6372
6373 2003-11-15  Borut Razem <borut.razem AT siol.net>
6374
6375         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
6376
6377 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6378
6379         * src/SDCCcse.c (cseBBlock): fixed bug #527779
6380         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
6381         ordering is immaterial.
6382         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
6383
6384 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6385
6386         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
6387         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
6388         (SIGSEV) of bug #840381
6389         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
6390         unlink new file before rename if new and old filenames are the same)
6391
6392 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6393
6394         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
6395         uninitialized variables) for the mcs51. Set environment variable
6396         SDCC_GENRAMCLEAR to test.
6397         xdata initialization slightly shorter
6398
6399 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6400
6401         * src/SDCCsymt.h,
6402         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
6403         #838241 & 780691 (basicly the same bug)
6404         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
6405         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
6406
6407 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
6408
6409         * src/SDCCmain.c (linkEdit): "fix" #834252
6410
6411 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6412
6413         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
6414         * src/SDCCast.h,
6415         * src/SDCC.y: fixed bug #819403
6416
6417 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6418
6419         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
6420         the reentrant attribute.
6421         * src/hc08/gen.c (genPackBits): added missing stack readjustment
6422         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
6423         simulation
6424         * src/SDCCast.c (decorateType): fixed bug with storage class not being
6425         updated during pointer dereference; f.e. ~(((char *)1)*) was being
6426         erroneously reduced to a literal.
6427         * src/hc08/ralloc.c (packRegisters, rematStr),
6428         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
6429         some cases
6430
6431 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6432
6433         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
6434         * doc/sdccman.lyx: changed from 'article' to 'book'
6435         * doc/Makefile: readded test_suite_spec and cdbfileformat
6436
6437 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
6438
6439         * device/include/stdlib.h: include malloc.h to comply with ANSI
6440         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
6441
6442 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6443
6444         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
6445         * doc/clean.mk: also remove *.out files
6446         * doc/sdccman.lyx: some additions, larger top/bottom margins
6447
6448 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6449
6450         * src/SDCC.y: fixed bug #837365
6451         * support/regression/tests/bitopcse.c
6452         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
6453         a symbol (might be valop instead)
6454         * device/lib/Makefile.in: added errno.c to HC08SOURCES
6455         * device/lib/clean.mk: added hc08 to the cleaning list
6456
6457 2003-11-04  Borut Razem <borut.razem AT siol.net>
6458
6459         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
6460           made 2003-11-04
6461         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6462           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
6463           malloc is declared in standard stdlib.h
6464
6465 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6466
6467         * device/lib/hc08/Makefile: need to clean .rel not .o files
6468         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
6469
6470 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6471
6472         * src/port.h,
6473         * src/hc08/main.c,
6474         * src/mcs51/main.c,
6475         * src/ds390/main.c,
6476         * src/z80/main.c,
6477         * src/avr/main.c,
6478         * src/pic/main.c,
6479         * src/pic16/main.c,
6480         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
6481         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
6482         tests (which uses the port's oclsExpense function)
6483         * src/SDCC.y,
6484         * src/SDCCast.c,
6485         * src/SDCCicode.c,
6486         * src/hc08/gen.c,
6487         * src/ds390/gen.c,
6488         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
6489
6490 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6491
6492         * src/SDCCcse.c (ifxOptimize),
6493         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
6494         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
6495         deleting the IFX iCode.
6496         * src/hc08/ralloc.c: reduced unneeded slocs
6497         * src/hc08/gen.c: fixed bug in asmopToBoolean
6498
6499 2003-11-04  Borut Razem <borut.razem AT siol.net>
6500
6501         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
6502           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6503           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
6504           transferred to configure
6505
6506 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
6507
6508         Use headers defined in the C[++] standards:
6509         * sim/ucsim/gui.src/serio.src/fileio.cc
6510         * sim/ucsim/gui.src/serio.src/frontend.cc
6511         * sim/ucsim/gui.src/serio.src/main.cc
6512         * sim/ucsim/gui.src/serio.src/posix_signal.cc
6513         * support/Util/NewAlloc.c
6514         * as/hc08/lklibr.c
6515         * as/mcs51/lklibr.c
6516         * as/z80/aslist.c
6517         * as/z80/assym.c
6518
6519 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6520
6521         * Added MSVC projects for hc08 assembler and linker:
6522         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
6523         /as/hc08/link_hc08.dsp
6524
6525 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
6526
6527         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
6528
6529 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
6530
6531         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
6532
6533 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6534
6535         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
6536
6537 2003-10-31  Borut Razem <borut.razem AT siol.net>
6538
6539         * support/cpp2/cpplib.h,
6540           support/cpp2/cpplib.c,
6541           support/cpp2/cpplex.c,
6542           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
6543           to switch _asm block preprocessing on / off. Default is
6544           #pragma preproc_asm +
6545
6546 2003-10-31  Borut Razem <borut.razem AT siol.net>
6547
6548         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
6549           when outputting comment blocks (when executed with -C option) and
6550           _asm (SDCPP specific) blocks
6551
6552 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6553
6554         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
6555
6556 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
6557
6558         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
6559
6560 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
6561
6562         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
6563         * src/SDCCast.c (decorateType): fixed bug #832664
6564
6565 2003-10-31  Borut Razem <borut.razem AT siol.net>
6566
6567         * support\cpp2\cpplex.c: fixed for SDCPP:
6568           comments(when executed with -C option) and _asm blocks
6569           were included even if they where in skipped #if block.
6570           Applied solution from GCC cpp 3.3.2
6571
6572 2003-10-31  Borut Razem <borut.razem AT siol.net>
6573
6574         * src/SDCC.lex: sdcc now understands both formats:
6575           '# <line_number> <file_name>' and
6576           '#line <line_number> <file_name>'
6577         * support/cpp2/cppmain.c: sdcpp now generates the standard
6578           '# <line_number> <file_name>' instead of former
6579           '#line <line_number> <file_name>'
6580
6581 2003-10-30  Borut Razem <borut.razem AT siol.net>
6582
6583         * support/cpp2/cpphash.h,
6584         * support/cpp2/cpplib.h
6585         * support/cpp2/cpplex.c,
6586         * support/cpp2/cppmain.c,
6587         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
6588
6589 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6590
6591         Fixed a number of problems revealed by bug #827883.
6592         * src/SDCCloop.c (loopInvariants): Spill location of the
6593         result operand should be recomputed if extracted from
6594         a loop. Also, don't extract assignments of an iTemp
6595         from a literal.
6596         * src/SDCCast.c (isConformingBody): loop reversal should
6597         not occur if the control variable is involved with a
6598         relational operator.
6599
6600 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
6601
6602         * .version: bumped to 2.3.6 to reflect the big improvements
6603         made by Erik and Klaus. Thanks!
6604
6605 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
6606
6607         Replaced the livrange code.
6608         * src/SDCClrange.c: added new LR code
6609         * src/SDCCloop.c,
6610         * src/SDCCBBlock.h: removed remainig parts from old LR code
6611         * src/ds390/ralloc.c,
6612         * src/ds390/gen.c: minor fixes to make it work with new code
6613
6614 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6615
6616         * as/hc08/asm.h,
6617         * as/hc08/lkrloc.c,
6618         * src/hc08/gen.c,
6619         * src/hc08/ralloc.c: Fix various warnings related to the hc08
6620         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
6621         (tweaked fix for bug #818696)
6622
6623 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6624
6625         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
6626
6627 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6628
6629         * src/SDCCmain.c,
6630         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
6631         * src/mcs51/gen.c (gencjneshort),
6632         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
6633         more efficient (per Scott Bronson's suggestion)
6634
6635 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6636
6637         Extended the semantics of the critical keyword to include
6638         individual statements. See RFE #827755 and #799831
6639         * src/SDCC.y
6640         * src/SDCCicode.c
6641         * src/SDCCopt.c
6642         * src/SDCCast.c
6643         * support/Util/SDCCerr.c
6644         * support/Util/SDCCerr.h
6645         * src/mcs51/gen.c
6646         * src/ds390/gen.c
6647         * src/hc08/gen.c
6648
6649 2003-10-19  Borut Razem <borut.razem AT siol.net>
6650
6651         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
6652
6653 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6654
6655         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
6656         Fixed bug #818696
6657         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
6658         and predecrement operand is displayed
6659
6660 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6661
6662         * src/SDCCval.c (valMinus): fixed bug #826041
6663
6664 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6665
6666         Some hc08 related updates that I missed earlier
6667         * sim/ucsim/stypes.h
6668         * support/regression/ports/hc08/spec.mk
6669
6670 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6671
6672         New target "hc08" for the Motorola 68hc08 family of micros
6673
6674         * configure
6675         * configure.in
6676         * Makefile
6677         * src/hc08/*
6678         * src/SDCCmain.c
6679         * src/port.h
6680         * sim/ucsim/hc08.src/*
6681         * sim/ucsim/configure.in
6682         * src/ucsim/configure
6683         * sim/ucsim/packages_in.mk
6684         * as/hc08/*
6685         * as/Makefile
6686         * device/include/mc68hc908qy.h
6687         * device/lib/hc08/*
6688         * device/lib/Makefile.in
6689         * support/regression/ports/hc08/*
6690         * support/regression/Makefile
6691
6692 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6693
6694         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
6695         regression test
6696         * src/ds390/gen.c (genCast): fixed bug #821957
6697
6698 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6699
6700         * device/lib/logf.c: "fixed" overlay bug
6701         * support/regression/ports/host/spec.mk: added m library
6702         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
6703         * support/regression/tests/float_trans: added (for Eric)
6704
6705 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
6706
6707         * src/mcs51/gen.c (genCpl): fixed bug
6708         http://sf.net/mailarchive/message.php?msg_id=6263915
6709
6710 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
6711
6712         * src/SDCCast.c (decorateType): added extended constant folding
6713         * src/SDCCsymt.c (computeType): cleanup
6714         * src/SDCCval.c (valShift): minor optimization
6715         * support/regression/tests/ast_constant_folding.c: added
6716
6717 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6718
6719         * src/SDCCmain.c: removed some unintended changes
6720
6721 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6722
6723         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
6724         * src/z80/gen.c: fixed part of bug #817589
6725         * src/SDCCsymt.c (checkFunction): fixed bug #817895
6726
6727 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
6728
6729         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
6730         * src/SDCCcflow.c
6731         * src/SDCCcse.c
6732         * src/SDCCdflow.c
6733         * src/SDCClabel.c
6734         * src/SDCClrange.c
6735         * src/SDCCmem.c
6736         * src/SDCCopt.c
6737         * src/SDCCpeeph.c
6738         * src/SDCCset.c
6739         * src/avr/ralloc.c
6740         * src/ds390/ralloc.c
6741         * src/izt/ralloc.c
6742         * src/mcs51/ralloc.c
6743         * src/pic/ralloc.c
6744         * src/pic16/ralloc.c
6745         * src/xa51/ralloc.c
6746         * src/z80/ralloc.c
6747         * src/z80/gen.c: removed unused label "release:"
6748
6749 2003-10-06  Borut Razem <borut.razem AT siol.net>
6750
6751         * src/SDCC.lex: removed definition of unused variables
6752           save_optimize and save_options
6753
6754 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
6755
6756         * clean.mk: removed '=' in "-maxdepth=1"
6757         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
6758         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
6759
6760 2003-10-06  Borut Razem <borut.razem AT siol.net>
6761
6762         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
6763           my_unput() replaced by unput()
6764
6765 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
6766
6767         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
6768         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
6769         type-punned pointer will break strict-aliasing rules"
6770         Old LR behaviour is again default; Klaus' LR can be choosen by
6771         defining the environment variable LRKLAUS
6772         * src/SDCCBBlock.h
6773         * src/SDCCloop.c
6774         * src/SDCClrange.c
6775         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
6776         * clean.mk: fixed removal of files in bin/CVS/
6777         * device/lib/clean.mk: fixed removal of directories small and large
6778         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
6779         * src/SDCCicode.c,
6780         * src/SDCCval.c: removed superflous test for pedantic
6781
6782 2003-10-05  Borut Razem <borut.razem AT siol.net>
6783
6784         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
6785           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
6786           message "unmatched #pragma SAVE and #pragma RESTORE"
6787
6788 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6789
6790         * doc/sdccman.lyx: various additions and updates (interrupts, inline
6791           assembly, critical functions, atomic, nojtbound)
6792
6793 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
6794
6795         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
6796         * src/SDCCBBlock.h
6797         * src/SDCCloop.c
6798         * src/SDCCloop.h
6799         * src/SDCClrange.c
6800
6801 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6802
6803         * src/z80/gen.h,
6804         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6805         * src/mcs51/gen.h
6806         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6807         * src/ds390/gen.h
6808         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6809         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
6810         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
6811
6812 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6813
6814         * src/z80/gen.c (genRet): fixed bug #524753
6815         * src/z80/gen.c (genCast): fixed internal error on cast from
6816         pointer to long
6817         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
6818         fix for bug #477835 to the z80
6819         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
6820         for tracking iCodes in the peephole optimizer for z80
6821
6822 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6823
6824         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
6825         the other part of bug #814548
6826         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
6827
6828 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
6829
6830         * src/SDCCcse.c: fixed part of bug #814548
6831
6832 2003-09-28  Borut Razem <borut.razem AT siol.net>
6833
6834         * src/asm.c: rewrite of printILine() to use temporary file instead
6835           a pipe
6836         * src/xa51/main.c: commented out declaration of int rewinds
6837
6838 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6839
6840         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
6841
6842 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6843
6844         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
6845         * src/asm.c (printILine): Fixed bug #811015
6846
6847 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6848
6849         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
6850         freeing.
6851
6852 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6853
6854         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
6855         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
6856         to correctly handle general case of AOP_PAIRPTR
6857         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
6858
6859 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6860
6861         * src/mcs51/ralloc.c (fillGaps),
6862         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
6863         register positioning bug)
6864
6865 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
6866
6867         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
6868
6869 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6870
6871         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
6872         genCodePointerGet, genGenPointerGet, genFarPointerSet,
6873         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
6874         (ralloc doesn't intentionally do this now, but perhaps later)
6875         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
6876         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
6877         register positioning bugs (Fixed bug #762602 and #795325)
6878         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
6879         (Fixed bug #808779)
6880         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
6881         lines that --i-code-in-asm generates
6882
6883 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6884
6885         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
6886         trying to fclose a FILE* that was already closed.
6887
6888 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6889
6890         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
6891         of const struct should be treated as if const themselves)
6892
6893 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
6894
6895         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
6896
6897 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6898
6899         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
6900         Unix (/n) and DOS (/r/n) line terminations.
6901
6902 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6903
6904         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
6905         bug #613775
6906
6907 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6908
6909         * src/mcs51/gen.c (genFunction, genEndFunction),
6910         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
6911         and restore of EA so that stack offsets to parameters are
6912         correct when using both critical and reentrant/stack-auto.
6913         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
6914         size (can be triggered in error if sloc is shared between
6915         different sized objects)
6916         * device/include/float.h: fixed macros to explicitly use
6917         unsigned long where needed
6918
6919 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
6920
6921         Feature req. 799831: added code to allow nesting of critical functions
6922         * src/mcs51/gen.c (genFunction, genEndFunction)
6923         * src/ds390/gen.c (genFunction, genEndFunction)
6924
6925 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6926
6927         * src/SDCCsymt.c (sclsFromPtr),
6928         * src/SDCCsymt.h,
6929         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
6930         support for standard C idiom of memory mapped variables; for
6931         example, *((xdata int*)0x1234) = 1 is now internally equivalent
6932         to xdata int at 0x1234 tempvar = 1.
6933         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
6934         provided by Akiya ISHIDA
6935
6936 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
6937
6938         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
6939         * src/SDCCval.c (constVal): added reduction from int to char
6940         * src/SDCCval.c (valMult, valDiv): fixed sign handling
6941         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
6942         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
6943         to ignore the sign
6944         * support/regression/tests/shifts.c: fixed
6945
6946 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6947
6948         * src/z80/gen.c (genXor): Fixed bug #805445
6949
6950 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6951
6952         Fixed bug #621531 (const & volatile confusion in the type chain).
6953         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
6954         refer to the const or volatile state of the pointer itself.
6955
6956         * src/SDCCast.c
6957         * src/SDCCglue.c
6958         * src/SDCCicode.c
6959         * src/SDCCsymt.c
6960         * src/SDCCval.c
6961         * src/SDCC.y
6962         * src/SDCCsymt.h
6963         * src/pic/gen.c
6964         * src/pic/ralloc.c
6965         * src/pic16/gen.c
6966         * src/pic16/ralloc.c
6967         * support/regression/tests/const.c
6968
6969 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6970
6971         When checking for duplicated modules, use absolute paths
6972         instead of relative paths.  Files changed:
6973
6974         * as/mcs51/lklib.c
6975         * link/z80/lklib.c
6976
6977 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6978
6979         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
6980
6981 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6982
6983         * device/include/string.h: added size_t typedef, changed
6984         prototypes to use size_t, eliminated separate reentrant and
6985         non-reentrant declarations, added _memmove declaration
6986         * device/lib/_memcpy.c: changed to use size_t instead of int,
6987         changed /4 to >>2 to avoid division library call
6988         * device/lib/_memcmp.c,
6989         * device/lib/_memset.c,
6990         * device/lib/_strncat.c,
6991         * device/lib/_strncpy.c,
6992         * device/lib/_strncmp.c: changed to use size_t instead of int
6993         * device/lib/_memmove.c: new file (fixed bug #772294)
6994         * device/lib/Makefile.in: added _memmove.c
6995         * device/lib/z80/asm_strings.s: fixed bug #772290
6996         * support/regression/tests/bitfields.c: attempt to fix host assertion
6997         failure on amd64-unknown-linux2.2
6998
6999 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7000
7001         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
7002         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
7003         * as/z80/asmain.c (main): fixed bug #801766
7004
7005 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
7006
7007         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
7008         compilers
7009
7010 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7011
7012         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
7013         reported in bug #800609
7014
7015 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
7016
7017         * Top header beautifications in src/pic16 directory:
7018           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
7019           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
7020           pcoderegs.h, ralloc.c, ralloc.h
7021         * main.c: added top header and GPL license notice
7022         * pcode.c: fixed the if-conditional warning
7023
7024 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
7025
7026         * device/lib/_mullong.c: replaced int by short for gcc
7027
7028 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7029
7030         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
7031         and JUMPTABLE iCodes properly now (worked by accident before)
7032         * src/mcs51/gen.c (leftRightUseAcc),
7033         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
7034         iCode properly now. Use getSize instead of nRegs since a & b
7035         aren't part of the nRegs tally.
7036
7037 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
7038
7039         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
7040         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
7041           before instructions that use the _STATUS register
7042
7043 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
7044
7045         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
7046         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
7047         fetching of the pointer
7048         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
7049         copied from genNearPointerSet()
7050         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
7051         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
7052         If they pop r0/r1 they must be called in the opposite order than aopOp().
7053         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
7054         (resp. --stack-auto), prepared for --xstack
7055
7056 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7057
7058         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
7059
7060 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
7061
7062         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
7063         these ports have their own __sdcc_external_start()
7064
7065 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
7066
7067         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7068         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
7069         type for bits was changed. It resulted in bit variables becoming
7070         global, which is not permitted in PIC 14 assembly output.
7071
7072 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7073
7074         * doc/sdccman.lyx: various additions and updates. Rearranged sections
7075
7076 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7077
7078         Z80 and MCS51 linkers complaint if a public symbol is defined
7079         in more than one library module:
7080
7081         * as/mcs51/lklib.c
7082         * link/z80/lklib.c
7083         * as/mcs51/Makefile.in
7084
7085 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7086
7087         A few small changes that speed up the peephole optimizer.
7088
7089         * src/SDCCpeeph.c
7090
7091 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7092
7093         Try to make the peephole optimizer smarter by maintaining
7094         an association between the assembly source code and the
7095         iCodes that originated them. Put this information to use
7096         with a new peephole rule condition "notVolatile" so that
7097         the rules can be aggressive yet still safe.
7098
7099         * src/SDCCpeeph.c
7100         * src/SDCCpeeph.h
7101         * src/mcs51/gen.c
7102         * src/mcs51/peeph.def
7103
7104 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7105
7106         Fixed bug #741761
7107
7108         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
7109         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
7110         if the left or right operand symbols have the accuse flag set.
7111
7112 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7113
7114         Changed the type of the result of the ! (NOT) operator to char;
7115         previously it returned the same type as the source. This allows
7116         us to eliminate all the genFloatNot functions (all of its target
7117         implementations were very buggy) since !float can use the same
7118         code as !long now.
7119
7120         * src/SDCCicode.c (ast2iCode): ! returns char
7121         * src/mcs51/gen.c (genNot, genNotFloat),
7122         * src/ds390/gen.c (genNot, genNotFloat),
7123         * src/z80/gen.c (genNot, genNotFloat),
7124         * src/pic/gen.c (genNot, genNotFloat),
7125         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
7126
7127 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
7128
7129         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7130         1. Interrupt would not compile properly. Ensure PCLATH register is saved
7131            during interrupts. Ensure WSAVE is located at a shared bank address.
7132         2. Fixed page selection in some places
7133         3. Fixed BTFSS/C to where necessary use registers directly and not simply
7134            the registers name strings.
7135         4. Fixed "signed / unsigned compare" compiler warnings.
7136         5. The PIC port manages its own allocation of the general purpose
7137            registers, but makes no attempt to reuse them. As a result when
7138            compiling it soon runs out of general purpose registers. Some
7139            additional code was added to the files pcode.c and device.c to walk
7140            through the function call tree and rename the registers so that they
7141            get reused.
7142
7143         * src/pic/device.c
7144         * src/pic/gen.c
7145         * src/pic/glue.c
7146         * src/pic/pcode.c
7147         * src/pic/pcode.h
7148         * src/pic/ralloc.c
7149         * src/pic/ralloc.h
7150         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
7151         genPlus() & genMinus() when the result is the same as left or right
7152
7153 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7154
7155         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
7156
7157 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7158
7159         Made bitfield a distinct type from bit so that bitfields
7160         convert as per ANSI C and bits retain their traditional
7161         boolean style behaviour. Implemented bitfield support in
7162         the z80 port.
7163
7164         * src/SDCCsymt.h,
7165         * src/SDCCsymt.c,
7166         * src/SDCCast.c,
7167         * src/cdbFile.c,
7168         * src/mcs51/gen.c,
7169         * src/ds390/gen.c: bit v bitfield split
7170         * src/z80/gen.c: New support for bitfields
7171         * support/regression/tests/bitfields.c: reenabled z80,
7172         added more tests
7173
7174 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7175
7176         Rules 246.x, 247.x relate to bitfields, the others speed up
7177         access to xdata mapped I/O devices.
7178
7179         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
7180
7181 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7182
7183         Cleaned up genPackBits and genUnpackBits and added two helper
7184         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
7185         for literal assignments in genPackBits (thanks to Frieder for
7186         reminding me).
7187
7188         * src/mcs51/gen.c
7189         * src/ds390/gen.c
7190
7191 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7192
7193         Fixed bug #748310 (pointer to function type mishandled when the
7194         function name is omitted). Also fixed a SIGSEGV when a function
7195         attribute (reentrant, etc) is used on a non-function or on a
7196         function but misplaced before the parameter list.
7197
7198         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
7199         bug #748310
7200         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
7201         * support/Util/SDCCerr.h,
7202         * support/Util/SDCCerr.c: Added func attr misuse error msg
7203
7204 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7205
7206         Fixed bug #787649 by anonymous
7207         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
7208         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
7209
7210 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7211
7212         Fixed numerous bitfield problems.
7213
7214         * src/SDCC.y: More bitfield related error checking
7215         * src/SDCCsymt.h,
7216         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
7217         * support/Util/SDCCerr.h,
7218         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
7219         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7220         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7221         * support/regression/tests/bitfields.c: tests added
7222
7223 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7224
7225         Made the constant following the "interrupt" keyword optional. If
7226         omitted, the function will not automatically be given an entry
7227         in the interrupt vector table (similar to #pragma NOIV, but
7228         less syntacticly kludgy). The interrupt number is also now
7229         range checked. Also fixed a bug in the high order bit example
7230         in the manual.
7231
7232         * src/SDCC.y
7233         * src/SDCCmem.c
7234         * src/SDCCglue.c
7235         * src/SDCCsymt.h
7236         * support/Util/SDCCerr.c
7237         * support/Util/SDCCerr.h
7238         * doc/sdccman.lyx
7239
7240 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7241
7242         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
7243         * src/SDCCicode.c (operandOperation): rewritten some ops
7244         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
7245         * src/SDCCsymt.c (computeType): literals are handled the same way as any
7246         other type
7247         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
7248         be re-activated by defining REDUCE_LITERALS)
7249         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
7250         unsigned, but are signed by default
7251         * src/SDCCval.c (constVal): rearranged
7252         * src/SDCCval.c (valMod): preliminary fix
7253         * src/SDCCval.c (valCastLiteral): use TYPE_* types
7254         * support/regression/literalop.c: added, work in progress
7255
7256 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7257
7258         Generate warnings for useless declarations like "char data;"
7259         that don't do what new users expect.
7260
7261         * src/SDCC.y
7262         * support/Util/SDCCerr.h
7263         * support/Util/SDCCerr.c
7264
7265 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
7266
7267         * src/SDCCval.c (valMult): fix overflow detection of negative int
7268
7269 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7270
7271         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
7272
7273         Changes to support big endian targets:
7274
7275         * src/ports.h
7276         * src/SDCCglue.c
7277         * src/avr/main.c
7278         * src/ds390/main.c
7279         * src/izt/i186.c
7280         * src/mcs51/main.c
7281         * src/pic/main.c
7282         * src/pic16/main.c
7283         * src/xa51/main.c
7284         * src/z80/main.c
7285
7286 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
7287
7288         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
7289         * device/lib/time.c: fixed warning "integer overflow in expression"
7290
7291 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
7292
7293         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
7294         * src/SDCCval.c (constVal): changed default to signed; hex and octal
7295         constants are unsigned; added recognition of "u" flag for unsigned
7296         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
7297         * src/SDCCval.c (valDiv, valMod): fixed signdness
7298         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
7299         signedness of modulo, left and right shift
7300         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
7301         * support/Util/SDCCerr.h: added warning W_INT_OVL
7302         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
7303         * src/SDCCast.c (ast_print): improved output of constants
7304
7305 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7306
7307         Fixed some warnings when building with MSVC:
7308
7309         * as\mcs51\asdata.c
7310         * as\z80\asdata.c
7311         * as\mcs51\asm.h
7312         * as\z80\asm.h
7313         * link\z80\aslink.h
7314         * link\z80\lkdata.c
7315         * link\z80\lkeval.c
7316         * link\z80\lkgb.c
7317         * link\z80\lkihx.c
7318         * link\z80\lks19.c
7319         * link\z80\lksym.c
7320         * support\cpp2\cpplib.c
7321         * src\ds390\gen.c
7322         * src\mcs51\gen.c
7323
7324 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
7325
7326         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
7327
7328 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7329
7330         * support\librarian\clean.mk: Do not remove Makefile.
7331         * support\librarian\Makefile: added.
7332
7333 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7334
7335         Added librarian to MSVC build:
7336         * all.dsp
7337         * sdcc.dsw
7338         * support\librarian\librarian.dsp
7339
7340         'configure' not needed for librarian, removed:
7341         * support\librarian\configure
7342         * support\librarian\configure.in
7343         * support\librarian\config_in.h
7344         * support\librarian\Makefile.in
7345
7346         Hopefully these ones built the librarian and the rest of sdcc properly:
7347         * Makefile
7348         * Makefile.common.in
7349
7350         Messed up 'configure', so revert to previous version:
7351         * configure
7352         * configure.in
7353
7354 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
7355
7356         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
7357         there, while the mantissa of a double is "only" 53 bits wide.
7358
7359 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7360
7361         Adding sdcclib to the build.  MSVC project coming soon.
7362         Files added/changed:
7363
7364         * support\librarian\clean.mk
7365         * support\librarian\configure
7366         * support\librarian\configure.in
7367         * support\librarian\config_in.h
7368         * support\librarian\Makefile.bcc
7369         * support\librarian\Makefile.in
7370         * support\librarian\sdcclib.c
7371         * Makefile.bcc
7372         * Makefile
7373         * Makefile.common.in
7374         * configure
7375         * configure.in
7376
7377 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7378
7379         Linker now complaints if linked modules have conflicting options, for
7380         example, one compiled using --model-large and another one compiled with
7381         --model-small.  The following files were modified:
7382
7383         * as\mcs51\asdata.c
7384         * as\mcs51\aslink.h
7385         * as\mcs51\asm.h
7386         * as\mcs51\asmain.c
7387         * as\mcs51\asout.c
7388         * as\mcs51\i51pst.c
7389         * as\mcs51\lkdata.c
7390         * as\mcs51\lklibr.c
7391         * as\mcs51\lkmain.c
7392         * as\z80\asdata.c
7393         * as\z80\asm.h
7394         * as\z80\asmain.c
7395         * as\z80\asout.c
7396         * as\z80\z80pst.c
7397         * link\z80\aslink.h
7398         * link\z80\lkdata.c
7399         * link\z80\lklibr.c
7400         * link\z80\lkmain.c
7401         * src\SDCCglue.c
7402
7403 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7404
7405         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
7406         as/mcs51/lklibr.c: Generate a warning when a library is not found.
7407
7408 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
7409
7410         * src/z80/mappings.i: fix _mul[us][int,long] entries
7411
7412 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7413
7414         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
7415
7416 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7417
7418         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
7419         * support/regression/tests/bitopcse.c: added
7420         fixed warning:
7421         * src/avr/gen.c:
7422         * src/pic/gen.c:
7423         * src/pic16/gen.c:
7424         * src/z80/gen.c:
7425         * src/xa51/gen.c:
7426
7427 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7428
7429         added support for new library format to z80, gbz80 linkers:
7430         *link/z80/aslink.h
7431         *link/z80/lklex.c
7432         *link/z80/lklib.c
7433         *link/z80/lklist.c
7434
7435 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7436
7437         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
7438         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
7439
7440 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
7441
7442         added DUMMY_READ_VOLATILE:
7443         * src/SDCC.y:
7444         * src/avr/gen.c:
7445         * src/xa51/gen.c:
7446         * src/z80/gen.c:
7447         * src/pic/gen.c:
7448         * src/pic16/gen.c:
7449         * src/mcs51/gen.c:
7450         * src/ds390/gen.c:
7451         * src/SDCCcse.c (algebraicOpts): many improvements
7452         * src/SDCCcse.h: removed algebraicOpts()
7453         * src/SDCCicode.c (picDummyRead): added
7454
7455 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7456
7457         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
7458         "Insufficient space in data memory".
7459
7460 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7461
7462         * src/mcs51/gen.c: fixed bug #771358
7463         * src/z80/gen.c: fixed bug #759087
7464
7465 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
7466
7467         * src/pic16/glue.c: minor cleanup by Vangelis
7468
7469 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7470
7471         * device/include/regc515c.h: fixed #758477
7472         * device/lib/_gptrget.c: saving some cycles in generic pointer get
7473         * device/lib/_gptrput.c: saved a few bytes
7474         * my tab spacing is 8, yours too?)
7475         * device/lib/_ser.c: process RX bytes earlier than TX bytes
7476         * device/lib/serial.c: process RX bytes earlier than TX bytes
7477         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
7478
7479 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7480
7481         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
7482
7483 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7484
7485     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
7486
7487 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
7488
7489         * device/lib/Makefile.in: bad fix, reverted to 1.43
7490
7491 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
7492
7493         * device/lib/Makefile.in: added missing z80 object files
7494
7495 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
7496
7497         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
7498         pic16 progress by Vangelis:
7499         * src/SDCCglobl.h:
7500         * src/SDCCmain.c:
7501         * src/pic/Makefile:
7502         * src/pic:
7503         * pic/Makefile:
7504         * pic16/device.c:
7505         * pic16/device.h:
7506         * pic16/gen.c:
7507         * pic16/gen.h:
7508         * pic16/genarith.c:
7509         * pic16/glue.c:
7510         * pic16/main.c:
7511         * pic16/pcode.c:
7512         * pic16/pcode.h:
7513         * pic16/pcodepeep.c:
7514         * pic16/peeph.def:
7515
7516 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7517
7518     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
7519
7520 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7521
7522     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
7523     added gbz80 build to MSVC project.
7524     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
7525     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
7526     from 8051 stuff and setup so it links using a .lnk file.
7527
7528 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7529
7530     * support/librarian/sdcclib.c: sdcc librarian.
7531     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
7532     with sdcclib.
7533
7534 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7535
7536     * as/mcs51/lkmain.c: properly handle extensions in function afile.
7537
7538 2003-07-02  Borut Razem <borut.razem AT siol.net>
7539
7540         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
7541         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
7542         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
7543         src/xa51/main.c, src/z80/main.c:
7544         virtualization of glue() function: each port has it's own glue function,
7545         which is accessed by do_glue function pointer in PORT.general structure
7546
7547 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
7548
7549         * DS800C400 fun, improved ROM interface and tinibios.
7550
7551 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
7552
7553         * More support for DS80C400. Now includes beginning of interface to ROM.
7554
7555 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
7556
7557         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
7558
7559 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7560
7561         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
7562
7563 2003-06-19  Borut Razem <borut.razem AT siol.net>
7564
7565         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
7566
7567 2003-06-19  Borut Razem <borut.razem AT siol.net>
7568
7569         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
7570         fixed Z80 port - crt0.o: cannot open.
7571
7572 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
7573
7574         * support/Util/MySystem.c (merge_command): revert bad fix
7575
7576 2003-06-18  Borut Razem <borut.razem AT siol.net>
7577
7578         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
7579
7580 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7581
7582         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7583         option --use-stdout sends errors to stdout instead of stderr.
7584
7585 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
7586
7587         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
7588
7589 2003-06-15  Borut Razem <borut.razem AT siol.net>
7590
7591         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
7592         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
7593         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
7594         fixed width array of pointers replaced with sets;
7595         multiple include and lib paths ared transferred to preprocessor and linker
7596         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
7597         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
7598         fixed width array of pointers
7599         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
7600         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
7601         fixupPath(), getPathDifference()
7602         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
7603         fixed width array of pointers
7604
7605 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
7606
7607         * src/pic16/ralloc.c: fix warnings
7608         * src/pic16/pcode.c: fix warning
7609
7610 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
7611
7612          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
7613         know all the details, but essentially this set of changes enable
7614         the pic16 port to generate movff instructions and generate assembler
7615         directives,
7616         * src/SDCCmain.c:
7617         * src/pic16/gen.c:
7618         * src/pic16/glue.c:
7619         * src/pic16/pcode.c:
7620         * src/pic16/device.c:
7621         * src/pic16/main.c:
7622         * src/pic16/pcode.h:
7623         * src/pic16/pcoderegs.c:
7624         * src/pic16/ralloc.c:
7625         * src/pic16/ralloc.h:
7626
7627 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7628
7629         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7630         added option --vc, so sdcc errors and warnings are compatible with
7631         Microsoft Visual Studio.
7632
7633 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7634
7635         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
7636           device/lib/libfloat.lib: added atof function.
7637
7638 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
7639
7640         * doc/sdccman.lyx: updated to Lyx 1.3
7641         * doc/cdbfileformat.lyx: updated to Lyx 1.3
7642         * doc/test_suite_spec.lyx: updated to Lyx 1.3
7643         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
7644
7645 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
7646
7647         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
7648
7649 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7650
7651         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
7652           additions to the "related tools/documentation" section
7653
7654 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
7655
7656         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
7657
7658 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
7659
7660         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
7661         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
7662
7663 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
7664
7665         * doc/sdccman.lyx: fix double dash and other minor things
7666         * doc/Makefile: fix double dash
7667
7668 2003-05-28  Karl Bongers(patches from Martin Helmling)
7669         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
7670           condition and ignore commands.
7671
7672 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7673
7674         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
7675           is in parts still quite out of date, I did changes as far as I felt makes sense
7676           for a non-native english speaker.
7677           Please feel free to add to the manual or to correct my changes.
7678         * doc/Makefile: undid touching the date of intermediate tex files.
7679
7680 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7681
7682         * doc/sdccman.lyx: Manual has an index now
7683
7684 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
7685
7686         Finalize muluint/mulsint and mululong/mulslong merging:
7687         * device/lib/_mulint.c
7688         * device/lib/_mullong.c
7689         * device/lib/gbz80/mul.s
7690         * device/lib/gbz80/stubs.s
7691         * device/lib/z80/mul.s
7692         * device/lib/z80/stubs.s
7693         * src/SDCCsymt.c (initCSupport)
7694
7695 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7696
7697         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
7698         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
7699           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
7700           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
7701           instead of /Zm500.
7702
7703 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7704
7705         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
7706           the regression tests I'm not brave enough to enable 245.b, 245.c
7707         * doc/sdccman.lyx: added latex preamble for hyperref package.
7708           Using pdflatex this will give you a hyperlinked pdf file with
7709           bookmarks. (prepend '%' before /usepackage if this breaks something)
7710
7711 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7712
7713          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
7714
7715 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
7716
7717         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
7718
7719 2003-05-21    <johan AT balder>
7720
7721         * src/SDCCglue.c (printIval): fixed bug #739934
7722
7723 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7724
7725         Applied patch from bug 737905 (renamed yylineo to mylineno):
7726         * src/altlex.c
7727         * src/SDCCast.c
7728         * src/SDCglobl.h
7729         * src/SDCC.lex
7730         * src/SDCCsymt.c
7731         * src/SDCCval.c
7732         * src/pic16/pcode.c: Cleaned warnings
7733         * src/pic16/pcodeflow.c: Cleaned warnings
7734         * src/pic16/pcoderegs.c: Cleaned warnings
7735
7736 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
7737
7738         * src/pic16/pcode.c: Cleaned warnings
7739         * src/pic16/pcodepeep.c: Cleaned warnings
7740         * src/pic16/ralloc.c: Cleaned warnings
7741
7742 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7743
7744         * doc/sdccman.lyx: fixed bug 739745
7745         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
7746
7747 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
7748
7749         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
7750         it can be defined with CFLAGS when running configure
7751         * src/SDCCmain.c: fixed compiling + linking with object files
7752
7753 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
7754
7755         * configure.in: configure for pic16 port,
7756             added --disable-pic16-port
7757         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
7758         * src/SDCCmain.c: linkOptions is changed to set *,
7759             added if/endif conditional macros to remove options help
7760             messages from optionsTable when a port is not configured, added
7761             support for the PIc16 port in the ports table, when executing
7762             the compiler with no port specified on command line, a default
7763             port is selected with the new macro DEFAULT_PORT which is
7764             defined in port.h, in setDefaultOptions() linkOptions is removed
7765             from initialization assignment, since now it is a set,
7766             parseCmdLine uses setParseWithComma for linkOptions, in
7767             linkEdit() linkOptions are accessed with new function indexSet()
7768             which returns the i'th item of a set variable. See SDCCset.c, in
7769             linkEdit() when calling buildCmdLine(), added linkOptions as
7770             last argument. Now users can pass arguments to gplink via the
7771             -Wl option, main() uses pic16glue() to glue up pic16 programs
7772         * src/SDCCpeeph.c: various changes to support pic16
7773         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
7774             return the i'th item of the set
7775         * src/SDCCset.h: added function prototype for indexSet()
7776         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
7777         * src/clean.mk: added pic16 in CLEANALLPORTS variable
7778         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
7779             added macro DEFAULT_PORT
7780         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
7781         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
7782             generated
7783         * src/pic16/glue.c: commented out some error producing lines
7784         * src/pic16/main.c: __config directives are commented out to stop
7785             gpasm complaining and test the linkage with gplink, _linkCmd and
7786             _asmCmd changed to be more gplink and gpasm friendly
7787         * src/pic16/peeph.def: peep rule 3 is commented out, since it
7788             produced an error when parsed, peep rule 12 is added to utilize
7789             movff, but it is commented out since the pCode does not support
7790             yet a command with 2 address arguments
7791
7792 2003-05-18    <johan AT balder>
7793
7794         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7795         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7796 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
7797
7798         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
7799   Added feature to script commands from file.
7800
7801 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
7802
7803         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
7804         * src/SDCCutil.c: include ctype.h for win32
7805
7806 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
7807
7808         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
7809
7810 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
7811
7812         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
7813   Fixed so you can set breakpoints prior to run, run does not stop
7814   on entry now.  Add tbreak.  Other enhancements and fixes for use
7815   with ddd.
7816
7817 2003-05-12  Borut Razem <borut.razem AT siol.net>
7818
7819         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
7820
7821 2003-05-11  Borut Razem <borut.razem AT siol.net>
7822
7823         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
7824         the path of bin directory, so that PATH is the only env. variable, which has to be set
7825         in case of standard installation.
7826         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
7827         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
7828         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
7829
7830 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7831
7832         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
7833         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
7834         temp files are in the port dir; clean the gen/test directory when
7835         generating new test.c
7836         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
7837         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
7838         * support/regression/tests/zeropad.c: added
7839
7840 2003-05-09    <johan AT balder>
7841
7842         * src/SDCCglue.c: fixed bug #597940
7843
7844 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
7845
7846         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7847   cache sfr, optimize next,step, fix off by one sourceline,
7848   support ddd list function.
7849         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
7850
7851 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7852
7853         * support/regression/HTMLgen.py: added compare_s2f()
7854         * support/regression/Makefile: redo 1.27
7855         * support/regression/generate-cases.py: redo 1.5
7856
7857 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
7858
7859         * support/regression/tests/float.c: workaround 33 bit hex constant
7860         * support/regression/tests/simplefloat.c: fix division for host
7861
7862 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
7863
7864         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
7865         that tame's the PIC's over-aggressive optimizer.
7866
7867 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7868
7869          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
7870          support for MSVC.
7871
7872 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
7873
7874         Initial support for DS80C400. "Hello world" runs on TINIm400
7875         (with polled I/O).
7876
7877 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
7878
7879          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7880          * Some notes on ddd usage added in debugger/README
7881          Martin Helmling adding more features and fixes for ddd GUI debugger.
7882          Code added for nexti, stepi, up, down, and other adjustments.
7883
7884 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
7885
7886         * src/pic/pCodepeep.c non-wildcard asmops are now handled
7887         * src/pic/peeph.def Added two rules to optimize carry manipulation
7888         * src/pic/* removed debug printfs
7889
7890 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
7891
7892         * debugger/mcs51/cmd.c: added header newalloc.h
7893
7894 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
7895
7896         * as/Makefile: new EXEEXT
7897         * as/z80/Makefile: remove trailing slash of BUILDIR
7898         * as/z80/clean.mk: new EXEEXT
7899         * Makefile.common.in: add to CFLAGS (and others), don't replace it
7900         * support/cpp2/Makefile.in: new EXEEXT
7901         * src/pic/glue.c (pic14emitRegularMap): fixed warning
7902
7903 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
7904
7905         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
7906         EXEEXT was introduced to fix all related problems with targets
7907         "clean", "install" and "uninstall"; a couple of further flaws
7908         especially with "clean" have been fixed too
7909         * as/mcs51/Makefile.in
7910         * as/mcs51/clean.mk
7911         * as/z80/Makefile
7912         * Makefile
7913         * clean.mk
7914         * debugger/mcs51/Makefile.in
7915         * debugger/mcs51/clean.mk
7916         * link/z80/Makefile
7917         * link/z80/Makefile.in
7918         * link/z80/clean.mk
7919         * link/Makefile
7920         * packihx/Makefile.in
7921         * packihx/clean.mk
7922         * sim/ucsim/Makefile
7923         * sim/ucsim/clean.mk
7924         * sim/ucsim/avr.src/Makefile.in
7925         * sim/ucsim/avr.src/clean.mk
7926         * sim/ucsim/s51.src/Makefile.in
7927         * sim/ucsim/s51.src/clean.mk
7928         * sim/ucsim/xa.src/Makefile.in
7929         * sim/ucsim/xa.src/clean.mk
7930         * sim/ucsim/z80.src/Makefile.in
7931         * sim/ucsim/z80.src/clean.mk
7932         * sim/ucsim/main_in.mk
7933         * sim/ucsim/packages_in.mk
7934         * sim/ucsim/gui.src/Makefile.in
7935         * sim/ucsim/gui.src/serio.src/Makefile.in
7936         * sim/ucsim/gui.src/serio.src/clean.mk
7937         * src/Makefile.in
7938         * src/clean.mk
7939         * support/cpp2/Makefile.in
7940         * support/cpp2/clean.mk
7941         * support/makebin/Makefile
7942         * support/makebin/clean.mk
7943         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
7944         * doc/sdccman.lyx: --program-suffix no longer needed
7945
7946 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
7947
7948          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
7949          Martin Helmling added support for ddd GUI debugger.
7950          Code added to display assembly, set variables, and other commands
7951          to interface to ddd.
7952
7953 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
7954
7955         * as/Makefile: fix target clean
7956         * as/clean.mk: fix target clean
7957         * as/z80/clean.mk: fix target clean
7958
7959 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
7960
7961         * Makefile.common.in: added  AT EXEEXT AT
7962         * configure.in: removed all mingw32 stuff
7963         * configure: rebuilt from configure.in
7964         * doc/sdccman.lyx: updated section "installation"
7965         * support/scripts/sdcc_mingw32: adapted to configure
7966         * support/scripts/sdcc_cygwin_mingw32: added
7967
7968 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
7969
7970         * src/pic Added object file support for the PIC port
7971         * src/pic Applied patch from Craig Franklin (this started the object file support)
7972         * src/regression Updated the PIC regression tests for object files
7973
7974 2003-04-20  Borut Razem <borut.razem AT siol.net>
7975
7976         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
7977           lklex.c: In function `getfid':
7978           lklex.c:203: warning: array subscript has type `char'
7979         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
7980           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
7981         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
7982           stack handling macros
7983
7984 2003-04-19  Borut Razem <borut.razem AT siol.net>
7985
7986         * "handling space characters in file path" task:
7987         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
7988         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
7989         * support/Util/MySystem.h: make it self-sufficient
7990         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
7991           src/z80/main.c, sdcc/as/mcs51/lklex.c:
7992           handling space characters in file path
7993         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
7994           (it will be used by assemblers, which have their own includes, e.g. gpasm)
7995         * support/Util/MySystem.c: handling space characters in executable's path
7996
7997 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
7998
7999         * as/z80/Makefile: fix permanent rebuild of z80
8000         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
8001         * support/regression/tests/bitfields.c: added Johan's bitfields.c
8002
8003 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
8004
8005         * src/SDCCopt.c: add special case optimization to replace modulo by
8006           a power of two with a bitwise AND.
8007
8008 2003-04-18    <johan AT balder>
8009
8010         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
8011
8012 2003-04-17    <johan AT balder>
8013
8014         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
8015         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
8016
8017 2003-04-13  Borut Razem <borut.razem AT siol.net>
8018
8019         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
8020         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
8021           fixed mingw problem in adl_NORMALIZE_PATH
8022
8023 2003-04-12  Borut Razem <borut.razem AT siol.net>
8024
8025         * fixed "#pragma SAVE/RESTORE can not be nested":
8026         * src/SDCC.lex: reworked pragma handling functions
8027         * sdcc/src/SDCCglobl.h: reworked stack handling macros
8028         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
8029
8030 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8031
8032         * src/SDCCutil.c (pathEquivalent): defined but not used
8033         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
8034         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
8035         * configure: rebuilt from configure.in
8036         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8037         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8038         * device/include/Makefile.in: replace sdcc_datadir
8039         * device/lib/Makefile.in: replace sdcc_datadir
8040         * Makefile.common.in: add LDFLAGS from configure
8041         * packihx/Makefile.in: use LDFLAGS
8042         * src/Makefile.in: use LDFLAGS
8043         * support/cpp2/Makefile.in: add LDFLAGS from configure
8044         * support/makebin/Makefile: use LDFLAGS
8045         * .version: bumped version number to 2.3.5
8046
8047 2003-04-12  Borut Razem <borut.razem AT siol.net>
8048
8049         * completed "different paths" task:
8050         * src/SDCCmacro.c: fixed bug in handling quotes
8051         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
8052         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
8053
8054 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8055
8056         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
8057
8058 2003-04-11 kevin Vigor <kevin AT vigor.nu>
8059
8060         * ds390/gen.c ds390/peeph.def: fix bug 706781
8061
8062 2003-04-11  Borut Razem <borut.razem AT siol.net>
8063
8064         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
8065
8066 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
8067
8068         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
8069         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
8070          set - this bit used to not be set...).
8071         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
8072           bad code in PIC Port
8073         * src/regression/and2.c added to test bug 609268
8074         * src/regression/Makefile added and2.c to regression test
8075
8076
8077 2003-04-08    <johan AT CP255758-A>
8078
8079         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
8080         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
8081         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
8082
8083 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
8084
8085         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
8086         fix bug #487815
8087         * support/cpp2/Makefile.in: fix bug #487815
8088         * configure: rebuilt from configure.in
8089         * Makefile.common.in: docdir changed, new path suffixes
8090         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8091         * sdcc_vc_in.h: reflect changes from sdccconf.h
8092         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
8093         * src/SDCCutil.h: remove BINDIR hack
8094         * doc/sdccman.lyx: update new path hierarchy
8095
8096 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8097
8098         * src/SDCCpeeph.c: added okToRemoveSLOC test
8099
8100 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8101
8102         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
8103
8104 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8105
8106         * src/SDCCpeeph.c: added labelIsReturnOnly test
8107         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
8108
8109 2003-04-05    <johan AT balder>
8110
8111         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
8112         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
8113         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
8114         * src/SDCCast.c: fixed a warning
8115         * src/SDCCast.h: fixed a warning
8116         * src/SDCCicode.c (operandFromAst): fixed a warning
8117
8118 2003-04-04    <johan AT balder>
8119
8120         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
8121         * src/SDCCast.c (decorateType): fixed bug #715076
8122         * src/SDCC.y: fixed bug #702907
8123
8124 2003-04-03    <johan AT balder>
8125
8126         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
8127         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
8128         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
8129         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
8130         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
8131
8132 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
8133
8134         * _decdptr.c: fix return values
8135         * _gptrget.c: fix return values
8136         * _gptrgetc.c: fix return values
8137         * _gptrput.c: fix return values
8138         * _mulint.c: fix return values
8139         * as/z80/Makefile: fix 'make -j' problem
8140
8141 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
8142
8143         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
8144         * configure.in: big cleanup, updated to autoconf 2.5x
8145         * configure: rebuilt from configure.in
8146         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8147         * sdcc_vc_in.h: reflect changes from sdccconf.h
8148         * doc/Makefile: fixed a flaw in "make install"
8149
8150 2003-04-02    <johan AT balder>
8151
8152         * src/ds390/gen.c (genCmp): no comments
8153         * src/mcs51/gen.c (genCmp): no comments
8154         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
8155         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
8156
8157 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
8158
8159         * support/regression/generate-cases.py: place generated file in given sub directory
8160         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
8161         * support/regression/Makefile: improvements for 'make -j';
8162         side effect: it's simpler and faster now
8163
8164 2003-03-31  Borut Razem <borut.razem AT siol.net>
8165
8166         * src/z80/main.c: link-{port} and as-{port} defined without path
8167         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
8168
8169 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
8170
8171         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
8172
8173 2003-03-30  Borut Razem <borut.razem AT siol.net>
8174
8175         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
8176           changed type of list parameter to set
8177         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
8178         * src/port.h: changed type of do_assemble() parameter to set
8179         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
8180           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
8181           definition of "cppoutfilename" macro with NULL value in preProcess()
8182         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
8183         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
8184         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
8185           replaced with set *binPathSet
8186         * shash_add() deallocates the item, if allready exsists, before adding the new one
8187         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
8188
8189 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
8190
8191         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
8192           a nested for loop bug in the PIC port
8193         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
8194           for loops
8195
8196 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
8197
8198         * support/Util/dbuf.h: remove C++ stuff to make it portable
8199
8200 2003-03-28  Borut Razem <borut.razem AT siol.net>
8201
8202         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
8203           literal strings in stringLiteral()
8204         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
8205         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
8206           to the project
8207
8208 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
8209
8210         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
8211
8212 2003-03-26    <johan AT balder>
8213
8214         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
8215         * src/ds390/gen.c (saveRegisters): catched symbol abuse
8216         * src/SDCCast.c (decorateType): fixed " -v < 3"
8217
8218 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
8219
8220         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
8221         Added Lenny Story's debug infrastructure changes:
8222         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
8223         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
8224         * src/cdbFile.c: added
8225         * src/SDCCdebug.c: added
8226         * src/SDCCdebug.h: added
8227         * src/SDCCast.c (createFunction)
8228         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
8229         * src/SDCCmain.c (parseCmdLine, main)
8230         * src/SDCCmem.c (redoStackOffsets)
8231         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
8232         * src/SDCCsymt.h
8233         * src/common.h
8234         * src/avr/gen.c (genAVRCode)
8235         * src/ds390/gen.c (gen390Code)
8236         * src/mcs51/gen.c (gen51Code)
8237         * src/pic/gen.c (genpic14Code)
8238         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
8239         * src/xa51/gen.c (genXA51Code)
8240         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
8241
8242 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8243
8244         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
8245         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
8246
8247 2003-03-22    <johan AT balder>
8248
8249         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
8250
8251 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
8252
8253         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
8254         * doc/cdbfileformat.lyx: added, written by Lenny Story
8255         * doc/Makefile: added cdbfileformat.lyx
8256         * doc/clean.mk: added cdbfileformat.lyx
8257
8258 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
8259
8260         * src/mcs51/peeph.def: fix bug #705773
8261
8262 2003-03-20    <johan AT balder>
8263
8264         An sfr/sbit can have an "at #" AND an initializer
8265         * src/SDCCsymt.c (checkSClass):
8266         * src/SDCCmem.c (allocGlobal):
8267         * src/SDCCmem.c (allocLocal):
8268         * src/SDCCast.c (createBlock):
8269
8270 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
8271
8272         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
8273
8274 2003-03-16    <johan AT balder>
8275
8276         Undid the hackup of const and volatile, the problem is much bigger
8277         * src/SDCC.y:1.65
8278         * src/SDCCast.c:1.171
8279         * src/SDCCglue.c:1.138
8280         * src/SDCCicode.c:1.146
8281         * src/SDCCsymt.c:1.150
8282         * src/SDCCval.c:1.65
8283
8284 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
8285
8286         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
8287         * src/ds390/gen.c (genAddrOf): fixed bug #704087
8288
8289 2003-03-13    <johan AT balder>
8290
8291         Hackup const and volatile modifiers in type chains a bit:
8292         * src/SDCC.y:1.63
8293         * src/SDCCast.c:1.169
8294         * src/SDCCglue.c:1.136
8295         * src/SDCCicode.c:1.143
8296         * src/SDCCsymt.c1.146
8297         * src/SDCCsymt.h1.59
8298         * src/SDCCval.c:1.63
8299
8300 2003-03-12    <johan AT balder>
8301
8302         * src/SDCCBBlock.h: more LRH debugging junk
8303         * src/SDCCcflow.h: more LRH debugging junk
8304         * src/SDCCloop.c: more LRH debugging junk
8305         * src/SDCC.y (struct_declaration): fixed bug #697590
8306         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
8307         * src/ds390/gen.c (aopForRemat): fixed bug #700031
8308         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
8309
8310 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8311         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
8312         test function names must now match exactly).
8313         * src/SDCCcse.c: added special case in findCheaperOp to allow
8314         extending a short integer. Makes less awful code for bug 700121 test case.
8315
8316 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8317
8318         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
8319         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
8320
8321 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8322
8323         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
8324         actually called (operandsNotEqual() was called for all
8325         operandsNotEqualX tests).
8326
8327 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8328
8329         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
8330         with shorter literals. Fixes bug 700121.
8331
8332 2003-03-11    <johan AT balder>
8333
8334         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
8335
8336 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
8337
8338         * src/SDCCloop.c (mergeRegions): an evil beast is dead
8339         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
8340
8341 2003-03-10  Borut Razem <borut.razem AT siol.net>
8342
8343         * src/SDCCmain.c: pipe preprocessor's output
8344         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8345         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8346         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8347         which closes all pipes in pipeSet set
8348         * src/SDCCset.c: free deleted item in function deleteSetItem()
8349         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8350         moved from z80 to src subproject
8351         * .version: increased version number to 2.3.4
8352
8353 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
8354
8355         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
8356         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
8357         * support/regression/ports/xa51/spec.mk: fix typo
8358
8359 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
8360
8361         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
8362
8363 2003-03-09  Borut Razem <borut.razem AT siol.net>
8364
8365         * src/SDCCmain.c: pipe preprocessor's output
8366         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8367         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8368         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8369         which closes all pipes in pipeSet set
8370         * src/SDCCset.c: free deleted item in function deleteSetItem()
8371         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8372         moved from z80 to src subproject
8373
8374 2003-03-09  Borut Razem <borut.razem AT siol.net>
8375
8376         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
8377         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
8378         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
8379         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
8380         * src/SDCCglobl.h: unification of WIN32 native definitions
8381
8382 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8383
8384         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
8385
8386 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8387
8388         * src/configure.in:   check for endianess (even while cross-compiling)
8389         * src/configure:      check for endianess (even while cross-compiling)
8390         * src/configure_in.h: check for endianess (even while cross-compiling)
8391         * src/avr/gen.c:        remove old endianess stuff
8392         * src/mcs51/gen.c:      remove old endianess stuff
8393         * src/ds390/gen.c:      remove old endianess stuff
8394         * src/pic/gen.c:        remove old endianess stuff
8395         * src/pic/genarith.c:   remove old endianess stuff
8396         * src/pic/glue.c:       fix endianess check
8397         * src/pic16/gen.c:      remove old endianess stuff
8398         * src/pic16/genarith.c: remove old endianess stuff
8399         * src/pic16/glue.c:     fix endianess check
8400         * src/xa51/gen.c:       remove old endianess stuff
8401         * src/z80/gen.c:        fix endianess check
8402         * src/SDCCglue.c:       fix endianess check
8403         * src/ds390/peeph.def: fix bug 700036
8404
8405 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8406
8407         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
8408         * src/configure: find appropriate data-types on host for SDCC's int and long
8409         * src/configure.in: find appropriate data-types on host for SDCC's int and long
8410         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
8411         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
8412
8413 2003-03-07    <johan AT balder>
8414
8415         Just a big NOOP:
8416                 some minor cleanups before the big shot
8417                 OP_DEFS and OP_USES now use Kevin's protection
8418                 new option --nolabelopt
8419
8420         * src/SDCCBBlock.c:
8421         * src/SDCCast.c,:
8422         * src/SDCCcflow.c:
8423         * src/SDCCcse.c:
8424         * src/SDCCicode.c:
8425         * src/SDCCicode.h:
8426         * src/SDCClabel.c:
8427         * src/SDCCloop.c:
8428         * src/SDCCmain.c:
8429         * src/ds390/ralloc.c:
8430         * src/mcs51/ralloc.c:
8431         * src/pic/ralloc.c:
8432         * src/xa51/ralloc.c:
8433         * src/z80/ralloc.c:
8434
8435 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
8436
8437         * src/pic/pcode.c (get_op): fix 64 bit warnings
8438         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
8439         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
8440         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
8441         * support/regression/tests/malloc.c: fix 64 bit warnings
8442
8443 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
8444
8445         * src/mcs51/gen.c (genMinus): fixed bug 696436
8446
8447 2003-03-02  Borut Razem <borut.razem AT siol.net>
8448
8449         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
8450
8451 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
8452
8453         * configure.in: test for mkstemp
8454         * sdccconf_in.h: add HAVE_MKSTEMP
8455
8456 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
8457
8458         * device/include/ctype.h: removed warning while using --stack-auto
8459         * device/include/malloc.h: removed warning while using --stack-auto
8460         * device/include/string.h: removed warning while using --stack-auto
8461
8462 2003-02-23  Borut Razem <borut.razem AT siol.net>
8463
8464         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
8465         because NDEBUG is defined (see man assert)
8466         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
8467
8468 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8469
8470         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
8471         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
8472
8473 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8474
8475         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
8476         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
8477
8478 2003-02-18    <johan AT balder>
8479
8480         * as/mcs51/asmain.c (asmbl): module can start with a digit
8481         * as/z80/asmain.c (asmbl): module can start with a digit
8482
8483 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
8484
8485         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
8486         * src/asm.c: fix pipe() for Mingw32
8487
8488 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
8489
8490         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
8491         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
8492         make -V work again; --c1mode reads now from stdin
8493         * doc/sdccman.lyx: added --c1mode
8494         * support/Util/SDCCerr.c: new messages for c1 mode
8495         * support/Util/SDCCerr.h: new messages for c1 mode
8496         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
8497
8498 2003-02-15    <johan AT balder>
8499
8500         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
8501
8502 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
8503
8504         * doc/sdccman.lyx: Environment variables, -o and other minor things
8505
8506 2003-02-14    <johan AT balder>
8507
8508         * src/xa51/main.c: before anyone really tries to use it :)
8509
8510         * Install doc's in share/sdcc/doc
8511         * removed some obsolete files
8512         * Do a proper make distclean and uninstall
8513         M Makefile.common.in
8514         R sdccbuild.sh
8515         M as/Makefile
8516         M device/include/Makefile.in
8517         M device/lib/Makefile.in
8518         M doc/sdccman.lyx
8519         M link/Makefile
8520         M sim/ucsim/doc/Makefile.in
8521         M src/clean.mk
8522         R src/avr/peeph.rul
8523         R src/xa51/peeph.rul
8524         M support/cpp2/Makefile.in
8525         M support/makebin/Makefile
8526
8527
8528 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
8529
8530         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
8531
8532 2003-02-10  Borut Razem <borut.razem AT siol.net>
8533
8534         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
8535         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
8536         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
8537         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
8538         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
8539         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
8540         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
8541         src/z80/Makefile.bcc: Borland Makefile cleanup
8542         * as/z80/Makefile.bcc: Added Borland Makefile
8543         * support/cpp2/borland.h: Removed
8544
8545 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
8546
8547         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
8548         * src/SDCC.lex: new pragma NOIV
8549         * src/SDCCglobl.h: new pragma NOIV
8550         * src/SDCCmem.c: new pragma NOIV
8551
8552 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8553
8554         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
8555
8556 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8557
8558         * src/SDCCmain.c: signal handling is switched off by --debug
8559         * doc/Makefile: small fix for install; use clean.mk again
8560         * doc/clean.mk: clean *.pdf and *.html too
8561
8562 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
8563
8564         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
8565         * device/lib/printfl.c: fix a ds390 bug by making it portable
8566         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
8567         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
8568         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
8569         * debugger/mcs51/cmd.c: converted multi-line string literals
8570         * sim/ucsim/globals.cc: converted multi-line string literals
8571         * src/SDCCmain.c: introduced signal handler to remove temp files
8572         * doc/Makefile: small tweaks, implement clean
8573         * doc: removed generated files
8574
8575 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8576
8577         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
8578         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
8579         Address Record is not correctly generated for DS390."
8580
8581 2003-02-02  Borut Razem <borut.razem AT siol.net>
8582
8583         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
8584         * as/mcs51/asm.h: fixed compilation with Borland C
8585         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
8586         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
8587         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
8588         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
8589         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
8590         src/z80/Makefile.bcc: delete $(LIB) only if exist
8591         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
8592
8593 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
8594
8595         * device/include/malloc.h: introduced NULL
8596         * device/include/string.h: introduced NULL
8597         * device/include/stdlib.h: introduced NULL
8598         * device/lib/_memcpy.c: removed NULL
8599         * device/lib/_strcat.c: removed NULL
8600         * device/lib/_strchr.c: removed NULL
8601         * device/lib/_strcmp.c: removed NULL
8602         * device/lib/_strcpy.c: removed NULL
8603         * device/lib/_strcspn.c: removed NULL
8604         * device/lib/_strlen.c: removed NULL
8605         * device/lib/_strncat.c: removed NULL
8606         * device/lib/_strncmp.c: removed NULL
8607         * device/lib/_strncpy.c: removed NULL
8608         * device/lib/_strpbrk.c: removed NULL
8609         * device/lib/_strrchr.c: removed NULL
8610         * device/lib/_strspn.c: removed NULL
8611         * device/lib/_strstr.c: removed NULL
8612         * device/lib/_strtok.c: removed NULL
8613         * device/lib/malloc.c: removed NULL, include own header
8614
8615 2003-02-02    <johan AT balder>
8616
8617         * 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
8618         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
8619         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
8620         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
8621         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
8622         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
8623
8624 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8625
8626         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
8627         area 'DATA'"
8628
8629 2003-02-01    <johan AT balder>
8630
8631         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
8632
8633 2003-01-31    <johan AT CP255758-A>
8634
8635         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
8636
8637 2003-01-30    <johan AT balder>
8638
8639         * src/SDCCBBlock.c: automatic bug detection
8640         * src/SDCCicode.c: automatic bug detection
8641
8642 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8643
8644         * src/SDCCglobl.h:   now --xram-size 0 works
8645         * src/SDCCmain.c:    now --xram-size 0 works
8646
8647 2003-01-29    <johan AT balder>
8648
8649         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
8650
8651 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8652
8653         * as/mcs51/aslink.h: Added options --xram-size and --code-size
8654         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
8655         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
8656         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
8657         * src/SDCCglobl.h:   Added options --xram-size and --code-size
8658         * src/SDCCmain.c:    Added options --xram-size and --code-size
8659
8660 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
8661
8662         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
8663         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
8664
8665 2003-01-27    <johan AT balder>
8666
8667         * src/SDCC.y: fixed bug #613764
8668
8669 2003-01-26    <johan AT balder>
8670
8671         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
8672         * src/SDCCsymt.h: fixed bug #673374
8673         * src/SDCCglue.c: fixed bug #661910
8674         * src/SDCCast.c: fixed bug #458099 and 673374
8675
8676 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
8677
8678         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
8679         * as/mcs51/strcmpi.h: added
8680         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
8681         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
8682         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
8683         * as/mcs51/assym.c: strcmpi -> as_strcmpi
8684         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
8685         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
8686         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
8687         * as/mcs51/Makefile.aslink: new module strcmpi
8688         * as/mcs51/Makefile.asx8051: new module strcmpi
8689         * as/mcs51/Makefil.bcc: new module strcmpi
8690         * as/mcs51/Makefile.in: new module strcmpi
8691         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
8692
8693 2003-01-26    <johan AT balder>
8694
8695         * src/SDCCglue.c: reverted back to 1.124
8696         * src/SDCCast.c: reverted back to 1.156
8697         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
8698
8699 2003-01-25    <johan AT balder>
8700
8701         * src/SDCCglue.c: A better fix for bug #661910
8702         * src/SDCCast.c: A better fix for bug #661910
8703         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
8704
8705 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8706
8707         * src/Makefile.in: remove spawn.o
8708         * src/SDCCmain.c: remove spawn.h
8709         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
8710         * src/spawn.c: removed
8711         * src/spawn.h: removed
8712         * support/regression/ports/ds390/spec.mk: link with -r
8713
8714 2003-01-24    <johan AT CP255758-A>
8715
8716         * src/ds390/gen.c (aopOp): fixed bug #667458
8717         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
8718         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
8719         (createIvalCharPtr): an ival doesn't always have a storage class anymore
8720
8721 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8722
8723         * src/mcs51/peeph.def: better assembler identation by Frieder
8724         * src/mcs51/gen.c: better assembler identation by Frieder
8725
8726 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
8727
8728         * as/z80/string.h: removed for gcc 3.2
8729         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
8730         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
8731
8732 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8733
8734         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
8735         * src/SDCCpeeph.c (replaceRule): fix bug #663503
8736         * support/regression/Makefile: separate temp files for ports
8737         * support/regression/generate-cases.py: separate temp files for ports
8738         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8739         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8740
8741 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8742
8743         * moved tinitalk to device/examples/ds390
8744
8745 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
8746
8747         * as/mcs51/lkmem.c: rflag is for DS390
8748         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
8749         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
8750                          (linkEdit): move mem- and map-files the same way as ihx-files
8751         * src/z80/main.c (_setDefaultOptions): removed --generic
8752         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
8753         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
8754         * src/pic/glue.c (picglue): --c1mode works again
8755         * src/pic16/glue.c (pic16glue): --c1mode works again
8756         * src/asm.c (printCLine): fix #660034
8757
8758 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
8759
8760         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
8761         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
8762         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
8763         * as/mcs51/lkmem (summary): better fix for sp problem
8764         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
8765         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
8766         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
8767                                               remove --stack-after-data
8768
8769 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
8770
8771         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
8772         * src/SDCCutil.c (join): ugly bug: missing '\0'
8773         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
8774
8775 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8776
8777         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
8778         * src/port.h: typo
8779         * src/pic/main.c (_asmCmd): gpasm supports -o
8780         * src/z80/main.c: more general macros
8781         * device/lib/Makefile.in: remove intermediate files
8782
8783 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8784
8785         * .version: Bumped version number to 2.3.3
8786         * src/SDCCBBlock.c: new option -o
8787         * src/SDCCglobl.h: new option -o
8788         * src/SDCCglue.c: new option -o
8789         * src/SDCCmain.c: new option -o
8790         * src/asm.c: new option -o
8791         * src/ds390/main.c: new option -o
8792         * src/pic/glue.c: new option -o
8793         * src/pic/pcode.c: new option -o
8794         * src/pic/ralloc.c: new option -o
8795         * src/pic16/glue.c: new option -o
8796         * src/pic16/pcode.c: new option -o
8797         * src/pic16/ralloc.c: new option -o
8798         * src/z80/main.c: new option -o
8799         * device/lib/Makefile.in: use -o
8800         * support/regression/ports/ds390/spec.mk: use -o
8801         * support/regression/ports/gbz80/spec.mk: use -o
8802         * support/regression/ports/mcs51/spec.mk: use -o
8803         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
8804         * support/regression/ports/z80/spec.mk: use -o
8805         * support/regression/ports/ucz80/spec.mk: use -o
8806         * support/regression/ports/xa51/spec.mk: use -o
8807         * support/regression/fwk/lib/timeout.c: fix usage string
8808
8809 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
8810         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
8811
8812 2003-01-07    <johan AT balder>
8813
8814         * src/SDCCast.c (decorateType): fixed bug #600035
8815
8816 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
8817         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
8818         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
8819         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
8820         * src/pic/pcode.c: outcommented unused variable to remove warnings
8821         * src/pic/ralloc.c: outcommented unused variable to remove warnings
8822
8823 2003-01-06    <karl AT turbobit.com>
8824         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
8825    regression tests.
8826
8827 2003-01-06    <johan AT balder>
8828
8829         * src/SDCCicode.c: fixed array add
8830
8831 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
8832         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
8833         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
8834
8835 2003-01-04    <johan AT balder>
8836
8837         * src/SDCCval.c (getNelements): fixed the initialized array of structures
8838
8839 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8840         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
8841
8842 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8843         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
8844         * support/regression/tests/bug-524697.c: fit mem usage into 8032
8845
8846 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8847         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
8848
8849 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
8850         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
8851
8852 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
8853         * src/mcs51/main.c: removed {bindir}{sep} from aslink
8854
8855 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8856
8857     * in \sdcc\as\mcs51\ changed these files in order to create an
8858     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
8859     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
8860     following files to include the previous two files: aslink.dsp,
8861     Makefile.aslink, Makefile.bcc, and Makefile.in.
8862
8863     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
8864     .adb instead of .cdb
8865
8866 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8867
8868         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
8869         value from option --iram-size.
8870
8871 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8872
8873         * \sdcc\as\mcs51\lklist.c: added boundary check before using
8874         dram[] array.
8875
8876 2002-09-18    <wiml AT hhhh.org>
8877
8878         * SDCClrange.h: exposed setFromRange() and setToRange()
8879         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
8880           packRegsForAccUse() (bug 542397)
8881         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
8882           multiple times and emitting the fetch operations more than once
8883           added aopGetUsesAcc() function to allow binary operators to
8884           fetch their operands in the correct order; made genMinus() emit
8885           compact code for X = LITERAL - Y
8886
8887 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8888         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
8889         sprintf() in line 1267.
8890
8891 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8892         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
8893         like ports.
8894
8895 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8896         Changes to aslink (All the changes are marked with 'JCF'):
8897
8898         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
8899         summary().
8900
8901         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
8902         area BSEG.  Also moves, if possible, the DATA area down into the internal
8903         ram so more space is available.
8904
8905         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
8906         sflag.
8907
8908         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
8909         not bytes.  Function summary() which creates a memory usage summary
8910         file with extension .mem.  Reports of overlaping stack and small stack
8911         size.  If the space for the stack is less than 16 bytes aslink trows a
8912         warning.
8913
8914         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
8915         the 8051.  Option 'y' for memory summary output file.
8916
8917         Changes to sdcc (All the changes are marked with 'JCF'):
8918
8919         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
8920
8921         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
8922         overlaying area for it (uses RegBankUsed[4]).
8923
8924         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
8925         bank zero as used by default.  By default aslink locates the stack
8926         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
8927         the creation of the .mem file.  Delegates the allocation of data area
8928         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
8929         the begining of the stack area to aslink.
8930
8931         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
8932         glue() in SDCCglue.c creates an area for it.
8933
8934 2002-09-03  Borut Razem <borut.razem AT siol.net>
8935         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
8936         sdcc/src/pic/glue.c:
8937         introduced atexit() handler for teporay files removal in case of
8938         errors, assertions, ...
8939
8940 2002-08-29  Borut Razem <borut.razem AT siol.net>
8941         * sdcc/support/cpp2/auto-host_vc_in.h:
8942         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
8943         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
8944         Maybe there is a similar problem with BORLANDC? It should be checked!
8945
8946         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
8947         corrected improper use of assert: the assignment to clr variable was done inside the assert.
8948         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
8949         was not executed, and the compiler (cl) launched a warning:
8950         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
8951
8952 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8953         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
8954
8955 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
8956         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
8957
8958         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8959           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
8960           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
8961           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8962           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
8963           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
8964           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
8965         - added Release configuration in VS projects
8966         - review of compiler an linker options
8967         - VC .exe files are generated in bin_vc directory, not to interfere
8968           with binaries generated from other projects (cygwin, mingw, bcc ...)
8969
8970         * sdcc/src/yacc.dsp: added
8971
8972         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
8973         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
8974         and insert the version number definitions from .version
8975
8976         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
8977
8978         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
8979         added - genarate auto-host.h using auto-host_vc_in.h as template
8980
8981         * sdcc/sdcc_vc.h,
8982         removed from CVS, generated automatically
8983
8984 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
8985         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
8986
8987 2002-08-11  Borut Razem <borut.razem AT siol.net>
8988         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
8989
8990 2002-08-10  Borut Razem <borut.razem AT siol.net>
8991         * src/SDCCmain.c (main):
8992         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
8993         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
8994         The consequence was that some temporary files were not removed.
8995
8996         * src/SDCCglue.c:
8997         unification of code in functions tempfilename() and tempfile():
8998         function tempnam() is defined in Visual Studio 6.0 and .NET
8999
9000         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
9001
9002         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9003           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
9004         - removed compiler command line option /WX: Treats all warnings as errors
9005         - update a list of source files, included into the project
9006
9007         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9008           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
9009         changed project type to Generic Project so that can be correcly converted to VS.NET project
9010
9011         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
9012
9013         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
9014
9015         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
9016
9017         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
9018         added return 0 statements after assert() to make compiler happy
9019
9020         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
9021         added newline in the def file to keep MSC compiler satisfied
9022
9023         * sdcc/src/z80/gen.c:
9024         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
9025           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
9026         - solved MSC error in function aopDump()
9027
9028         * sdcc_vc.h: define PREFIX as "\\sdcc"
9029
9030 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
9031         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
9032
9033 2002-06-22  Scott Dattalo <scott AT dattalo.com>
9034         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
9035         - Rewrote the register banking algorithm.
9036         - Added pCode live-range analysis to registers (for now, only non-used and
9037         singly-used registers optimized away)
9038
9039         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
9040
9041         * 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.
9042
9043 2002-05-10  Scott Dattalo <scott AT dattalo.com>
9044         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
9045
9046 2002-04-22  Michael Hope  <michaelh AT vroom>
9047
9048         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
9049
9050         * configure.in (DD_COPT): Added include support required for gbdk.
9051
9052         * .version: Bumped version number just to increase it.
9053
9054         * src/SDCCmain.c: Added -nostdinc to the default options.
9055
9056 2002-04-15  Michael Hope  <michaelh AT vroom>
9057
9058         * device/lib/z80/printf.c (sprintf): Added.
9059
9060         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
9061
9062         * src/z80/peeph.def: Added transpose redundent load rule.
9063
9064         * src/z80/main.c: Added force callee saves for jaune.
9065
9066         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
9067
9068         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
9069
9070 2002-03-28  Johan Knol  <johan AT balder>
9071
9072         * src/SDCCval.c: fixed bug #532436
9073
9074 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9075         * /src/port.h:
9076         Added "char *Processor" field to the port structure.
9077
9078         * /src/SDCCmain.c:
9079         Added -p option. Allows port dependent processor to be specified.
9080
9081         * all ports:
9082         Initialized the new field char *Processor field to NULL in all ports
9083
9084         * /src/pic/*:
9085         Compiler generated registers for interrupt context saving
9086         were not getting allocated.
9087
9088 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
9089
9090         * /src/SDCCast.c:
9091         Fixed left shift. Will promote the left side of a left shift
9092         if a) left shifting more than size of operand or b) when assigned
9093         to something size > size of left side
9094
9095 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9096         * src/pic/*
9097         tons of changes. Register allocation has been
9098         rewritten. Added customization for the various PICs. Flow
9099         analysis is restructured. ...
9100
9101         * src/pic/device.h:
9102         Added
9103
9104         * src/pic/device.c:
9105         Added. device.c is a PIC port hack to accomodate variations
9106         in PIC devices.
9107
9108 2002-03-13  Michael Hope  <michaelh AT vroom>
9109
9110         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
9111
9112 2002-03-04  johanknol  <johanknol AT manik>
9113
9114         * /src/SDCCval.c: fixed
9115
9116         const unsigned char arr[][2] = { { 0, 1 } };
9117         t18.c:1: error: Initializer element is not constant
9118
9119 2002-03-04  bela  <bela AT manik>
9120
9121         * /device/include/mcs51reg.h:
9122         ds89c420 register definition update
9123
9124 2002-03-03    <johan AT FRIJA>
9125
9126         * support/Util/SDCCerr.c: did something, but don't no why anymore
9127
9128         * support/regression/tests/bug-524691.c: made it a little less shy
9129
9130         * src/SDCCast.c (decorateType): fixed bug #524697
9131
9132         * src/SDCCast.c: made some lineno improvements
9133
9134         * src/SDCCval.c (getNelements): changed warning to error
9135
9136         * src/SDCCglue.c (printIvalArray): changed warning to error
9137
9138         * src/SDCCicode.c: fixed a warning for mingw
9139
9140         * src/SDCCast.c (decorateType): fixed the << promotion for ops
9141
9142         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
9143
9144 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
9145
9146         * src/ds390/peeph.def:
9147         Added some more peephole rules
9148
9149         * src/ds390/gen.c: Various fixes & enhancements
9150
9151         * src/SDCClrange.c, src/SDCClrange.h:
9152         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
9153
9154         * src/ds390/ralloc.c:
9155         various fixes & enhancements (ds390) specific
9156
9157         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
9158         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
9159         from rallocs.
9160
9161         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
9162
9163 2002-03-02    <johan AT FRIJA>
9164
9165         * src/SDCCast.c (decorateType): fixed bug #524708
9166
9167         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
9168
9169         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
9170
9171 2002-03-01  Michael Hope  <michaelh AT vroom>
9172
9173         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
9174
9175         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
9176
9177 2002-03-01    <johan AT FRIJA>
9178
9179         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
9180
9181         * src/SDCCast.c (decorateType): fixed bug #524209
9182
9183         * src/SDCCval.c (valNot): fixed bug #524195
9184
9185 2002-02-26    <johan AT balder>
9186
9187         * src/xa51/gen.c: fixed a warning
9188
9189         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
9190
9191         * src/SDCCast.c (decorateType): fixed bug #522534
9192
9193 2002-02-23    <johan AT balder>
9194
9195         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
9196
9197 2002-02-22    <johan AT balder>
9198
9199         * src/SDCCast.c: fixed bug #514865
9200
9201         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
9202
9203 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
9204
9205         * sdcc/src/SDCCloop.c:
9206         Previous fix was not good. basic blocks that have "break" or "return" are
9207         not really partof a loop , but live ranges used in these blocks should
9208         be live thru the entire loop, so set partOfLoop but don't add them to
9209         loop region
9210
9211 2002-02-21    <johan AT FRIJA>
9212
9213         * src/SDCCcse.c: fixed bug #514308
9214
9215 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
9216
9217         * src/SDCCloop.c:
9218         Fixed BUG #519583. If a conditional block ended in a return/break
9219         statement inside a loop, it was not being considered part of the loop.
9220
9221         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
9222
9223 2002-02-10  Karl Bongers <karl AT turbobit.com>
9224
9225         * debugger/*:
9226         Fixed up SDCDB debugger somewhat.  Updated debugger/README
9227         with lots of comments and notes.
9228
9229         * device/examples/test2.c:
9230         Fix bug, "red" variable not being initialized(compiler complained).
9231
9232         * device/examples/Makefile, examples/test3.c:
9233         Add Makefile in device/examples folder, compiles test3.c
9234         for use as a multiple module SDCDB test case.
9235
9236         * sim/ucsim/cmd.src/cmdset.cc:
9237         Took out debug printfs in ucsim "next" command.
9238
9239         * sim/ucsim/xa.src:
9240         Karl and Johan start ucsim XA support.  Most dissassembly working,
9241         about 75% emulation done(plenty of work remaining).
9242
9243         * sim/ucsim/z80.src:
9244         Add Z80 support to ucsim, add test-ucz80 regression test,
9245         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
9246         Notice z80 compiler fails on examples/test3.c/crc code.
9247
9248 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
9249
9250         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
9251         Added support for --parms-in-bank1
9252
9253         * src/ds390/peeph.def:
9254         added a few more peephole optimzations
9255
9256         * src/ds390/main.c:
9257         1) added __builtin_inp & __builtin_outp used to read in data of given length
9258            from a memory mapped port
9259         2) added __builtin_memcmp
9260         3) added __builtin_swapw swap bytes of a short
9261
9262         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
9263         1) handle multiple send & receives from register bank1
9264         2) ralloc can now allocate DPTR1 to some liveRanges
9265
9266         * src/SDCCsymt.c, src/SDCCsymt.h:
9267         changes to handle multiple sends & receives
9268
9269         * src/SDCCptropt.h:
9270         added some pointer arithmetic optimization
9271
9272         * src/SDCCptropt.c:
9273         added some pointer arithmetic optimizations but not stable yet so not
9274         called from anywhere (will get this working shortly)
9275
9276         * src/SDCCopt.c: fixed for multiple sends & receives
9277
9278         * src/SDCCmain.c:
9279         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
9280         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
9281            set preprocessor defines (depending on options)
9282
9283         * src/SDCCicode.c, src/SDCCicode.h:
9284         changes made to handle multiple sends & receives
9285
9286         * src/SDCCglobl.h:
9287         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
9288
9289         * src/SDCCcse.c, src/SDCCcse.h:
9290         added function findbackward def (to be used in upcoming optimization)
9291
9292         * src/SDCCcflow.c, src/SDCCcflow.h:
9293         added function returnAtEnd - to determine if a basic block terminates with
9294         a RETURN iCode
9295
9296         * src/SDCCast.c, src/SDCCast.h:
9297         added option parms-in-bank1
9298
9299         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
9300         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
9301         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
9302         adjusted for --parms-in-bank1 option
9303
9304         * device/include/string.h:
9305         donot redefine "reentrant" keyword
9306
9307         * device/include/ds80c390.h: Added some more SFRs
9308
9309 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
9310
9311         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
9312
9313 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
9314
9315         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
9316
9317 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
9318
9319         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
9320
9321 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
9322
9323         * Added --xram-movc option
9324
9325 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
9326
9327         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
9328
9329 2002-01-11  Johan Knol
9330
9331         * Added math lib of Jesus Calvino-Fraga
9332
9333 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
9334
9335         * src/SDCCmain.c (processFile): fix processing of ../../src.c
9336         * support/regression/Makefile: new target test-mcs51-stack-auto
9337         * support/regression/ports/mcs51-stack-auto/spec.mk: added
9338
9339 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9340
9341         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
9342
9343 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9344
9345         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
9346
9347 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
9348
9349         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
9350
9351         * src/SDCCglue.h: add definition for printIvalChar()
9352
9353 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9354
9355         * src/SDCCast.c: fix #498138 by Johan
9356
9357         * src/SDCCglue.c: fix #498138 by Johan
9358
9359 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9360
9361         * support/regression/Makefile: fix clean
9362
9363         * support/regression/ports/ds390/support.c: fix transmission of last character
9364
9365 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
9366
9367         * /sdcc/src/ds390/gen.c:
9368         a) improved computing address of stack variable
9369         b) took out some #if 0 code
9370         c) improved parmBytes adjustment
9371         d) improved genPlusIncr & genMinusIncr
9372         e) genCmp could generate bad code (when left assigned to DPTR)
9373         f) Fixed bug in hasInc
9374
9375         * /sdcc/src/ds390/ralloc.c:
9376         a) packRegsForSupport could mess up live information (Fixed)
9377         b) packRegsDPTRuse could be incorrect for left & right shift
9378
9379         * /sdcc/src/mcs51/ralloc.c:
9380         packRegsForSupport could mess up the live information (Fixed)
9381
9382         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
9383
9384         * /sdcc/src/SDCCast.c:
9385         can reverse a loop even if function call is present as long
9386         as the loop control variable is local & is not passed as parameter
9387
9388 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9389
9390         * /sdcc/ChangeLog: *** empty log message ***
9391
9392         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
9393         More builtin function additions for TININative
9394
9395         * /sdcc/src/ds390/ralloc.c:
9396         Had broken the regression testsuite
9397
9398         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
9399
9400         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
9401         Added funcattr hasStackParms will be set for reentrant functions when there
9402         are paramteres on the stack, this helps in minimizing frame pointer generation
9403         typeFromStr can handle function pointers now
9404
9405         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
9406         *** empty log message ***
9407
9408 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9409
9410         * /src/ds390/gen.c, /src/ds390/main.c:
9411         More builtin function additions for TININative
9412
9413         * /src/ds390/ralloc.c:
9414         Had broken the regression testsuite
9415
9416         * /src/SDCCast.c: Fixed a bug in dumptree
9417
9418         * /src/SDCCsymt.c, /src/SDCCsymt.h:
9419         Added funcattr hasStackParms will be set for reentrant functions when there
9420         are paramteres on the stack, this helps in minimizing frame pointer generation
9421         typeFromStr can handle function pointers now
9422
9423         * /doc/builtins.txt, /doc/TININative.txt:
9424         *** empty log message ***
9425
9426
9427 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9428
9429         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
9430         ALPHA version for -mTININative
9431
9432         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
9433         updated to reflect changes in the port structure
9434
9435         * /src/port.h:
9436         added function do_assemble (similar to do_link) if non-null this function
9437         will be called to do assembly (-mTININative) requires a multi command
9438         assembly
9439         added function genAssemblerEnd will be called to generate assembler Epilogue
9440
9441         * /src/SDCCsymt.c:
9442         added _JavaNative to debug info printing
9443
9444         * /src/SDCCmain.c: added option --tini-libid
9445         added port->do_assemble function (-mTININative) has a multi command assemble
9446
9447         * /src/SDCCglue.c: Disabled "constExpr" check
9448         added port->genAssemblerEnd function
9449
9450         * /src/SDCCglobl.h: Added option --tini-libid value
9451
9452         * /src/SDCCast.h:
9453         tookout optimizeCompare from the header (has no external references)
9454
9455         * /src/SDCCast.c: made one more function "static"
9456
9457 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
9458
9459         * src/z80/mappings.i: Added z80asm support.
9460
9461         * src/z80/main.c: Added z80asm support on --asm=z80asm
9462
9463         * src/z80/gen.c: Fixed asm portability issues.
9464
9465         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
9466
9467         * src/SDCCglue.c (printExterns): Added global/extern split.
9468
9469 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
9470
9471         * support/regression/Makefile: added test for mcs51 model large
9472
9473         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
9474
9475         * support/regression/ports/gbz80/spec.mk: added -mgbz80
9476
9477 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
9478
9479         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
9480
9481 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
9482
9483         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
9484
9485         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
9486
9487 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
9488
9489         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
9490
9491         * support/regression/tests/simplefloat.c: Port to mcs51.
9492
9493 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
9494         * support/regression/tests/bug-485362.c: Added.
9495
9496         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
9497
9498         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
9499
9500         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
9501
9502         * src/z80/gen.c (aopDump): Added a dump function.
9503
9504 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
9505         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
9506
9507         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
9508
9509         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
9510
9511         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
9512
9513         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
9514
9515         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
9516
9517         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
9518
9519         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
9520
9521         * support/regression/ports/ds390/support.c: Use tinibios.
9522
9523         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
9524
9525 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
9526
9527         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
9528         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
9529
9530         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
9531
9532         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
9533
9534 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
9535
9536         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
9537
9538         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
9539         (packRegsForIYUse): Created and optimised.
9540
9541 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9542
9543         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
9544 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
9545
9546         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
9547
9548         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
9549
9550         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
9551
9552 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9553
9554         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
9555
9556         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
9557
9558 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9559
9560         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
9561
9562         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
9563
9564         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
9565
9566 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9567
9568         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
9569         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
9570         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
9571
9572         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
9573
9574         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
9575         (genNotFloat): Added.
9576         (genUminusFloat): Added.
9577
9578         * device/lib/z80/Makefile: Added floating pt stubs.
9579
9580         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
9581
9582         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
9583
9584         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
9585
9586 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9587
9588         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
9589
9590         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
9591
9592         * sdcc/support/regression/Makefile: Add port ds390.
9593
9594         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
9595
9596         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
9597
9598         * sdcc/support/regression/ports/ds390/spec.mk: Added.
9599
9600         * sdcc/support/regression/ports/ds390/support.c: Added.
9601
9602         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
9603
9604         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
9605
9606         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
9607
9608 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9609
9610         * device/include/malloc.h: Added z80 and gbz80 support.
9611
9612         * device/lib/gbz80/heap.s: Added.
9613
9614         * device/lib/z80/heap.s: Added.
9615
9616         * device/lib/malloc.c: Added z80 and gbz80 support.
9617
9618         * support/regression/tests/malloc.c (testMalloc): Added.
9619
9620         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
9621
9622         * support/regression/tests/bug-478094.c: Added.
9623
9624         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
9625
9626 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
9627
9628         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
9629
9630         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
9631
9632         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
9633
9634         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
9635
9636         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
9637
9638 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9639
9640         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
9641
9642 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
9643
9644         * support/regression/tests/bug-477927.c: Added.
9645
9646         * src/z80/peeph.def: Added minor rules.
9647
9648         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
9649
9650         * src/z80/peeph.def: Added jump optimisation modification.
9651
9652 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
9653
9654         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
9655
9656 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
9657
9658         * support/regression/tests/funptrs.c: Added.
9659
9660 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
9661
9662         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
9663
9664 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
9665
9666         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
9667
9668         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
9669
9670         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
9671         (movLeft2ResultLong): Created.
9672
9673         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
9674         (joinPushes): Added.  Joins two char pushes into a word push.
9675
9676 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
9677
9678         * support/cpp2/Makefile.in (install): Added creation of dest dir.
9679
9680         * support/makebin/Makefile (install): Added creation of dest dir.
9681
9682 2001-10-24 Karl Bongers <karl AT turbobit.com>
9683
9684         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
9685
9686 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
9687
9688         * src/z80/ralloc.c: Turned off faulty pack for one use.
9689
9690         * src/z80/peeph-gbz80.def: Removed redundent restart options.
9691
9692         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
9693
9694 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
9695
9696         * support/regression/Makefile: Improved clean
9697
9698         * support/regression/ports/gbz80/spec.mk: Added clean
9699
9700         * support/regression/ports/host/spec.mk: Added clean
9701
9702         * support/regression/ports/z80/spec.mk: Added clean
9703
9704         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
9705
9706         * support/regression/ports/mcs51/timeout.c: little improvements
9707
9708 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
9709
9710         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
9711
9712         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
9713
9714         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
9715
9716 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
9717
9718         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
9719
9720         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
9721
9722 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
9723         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
9724
9725         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
9726
9727         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
9728
9729         * src/mcs51/main.c (_linkCmd): Added bin path to command.
9730
9731         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
9732
9733         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
9734
9735         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
9736
9737         * support/regression/tests/longor.c: Added.
9738
9739 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
9740
9741         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
9742
9743         * as/mcs51/aslink.h: define PATH_MAX
9744
9745         * as/mcs51/asm.h: define PATH_MAX
9746
9747         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
9748
9749         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
9750
9751         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
9752
9753         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
9754
9755         * src/SDCCglobl.h: define PATH_MAX
9756
9757         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
9758
9759         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
9760
9761 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
9762
9763         * src/z80/gen.c (gencjneshort): Fixed
9764
9765         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
9766
9767 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
9768
9769         * support/regression/tests/bug-469671.c: Added.
9770
9771         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
9772
9773 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
9774
9775         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
9776
9777         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
9778
9779 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
9780
9781         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
9782
9783         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
9784
9785         * src/device/lib/_mullong.c : removed hint: nooverlay bug
9786
9787         * src/device/lib/_divuint.c : removed hint: nooverlay bug
9788
9789         * src/device/lib/_divulong.c: removed hint: nooverlay bug
9790
9791         * src/device/lib/_moduint.c : removed hint: nooverlay bug
9792
9793         * src/device/lib/_modulong.c: removed hint: nooverlay bug
9794
9795 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
9796
9797         * 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.
9798
9799         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
9800
9801         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
9802
9803 2001-10-07    <johan AT FRIJA>
9804
9805         * device/lib/gets.c (gets): fixed the return value.
9806
9807 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
9808         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
9809
9810         * 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.
9811
9812         * 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.
9813
9814         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
9815
9816         * src/pic/gen.c: Removed Safe_strdup.
9817
9818         * configure.in: Added option to enable libgc support.
9819
9820         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
9821         (bitVectUnion): Optimised.
9822         (bitVectIntersect): Optimised.
9823         (bitVectBitsInCommon): Optimised.
9824         (bitVectCplAnd): Optimised.
9825
9826         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
9827
9828 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9829
9830         * src/SDCCmain.c: distinguish between assembler debug and plain options
9831
9832         * src/avr/main.c:   remove standard assembler options
9833
9834         * src/ds390/main.c: remove standard assembler options
9835
9836         * src/mcs51/main.c: remove standard assembler options
9837
9838         * src/port.h: removed "PENDING" comment
9839
9840 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9841
9842         * src/device/lib/_mulint.c  : new, with assember functions
9843
9844         * src/device/lib/_mullong.c : new, with assember functions
9845
9846         * src/device/lib/_divuint.c : with assember functions
9847
9848         * src/device/lib/_divsint.c : with assember functions
9849
9850         * src/device/lib/_divulong.c: with assember functions
9851
9852         * src/device/lib/_divslong.c: with assember functions
9853
9854         * src/device/lib/_moduint.c : with assember functions
9855
9856         * src/device/lib/_modsint.c : with assember functions
9857
9858         * src/device/lib/_modulong.c: with assember functions
9859
9860         * src/device/lib/_modslong.c: with assember functions
9861
9862         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
9863
9864         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
9865
9866         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
9867                                       replaced _mululong.c and _mulslong.c by _mullong.c
9868
9869 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9870
9871         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
9872
9873 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9874
9875         * src/SDCCglue.c: test, if win32api is available for MINGW
9876
9877 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9878
9879         * src/SDCCsymt.c: no more _modifier in printTypeChain()
9880         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
9881         * support/regression/ports/gbz80/spec.mk: removed GENERIC
9882         * support/regression/ports/host/spec.mk: removed GENERIC
9883         * support/regression/ports/mcs51/spec.mk: removed GENERIC
9884         * support/regression/ports/z80/spec.mk: removed GENERIC
9885
9886 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
9887
9888         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
9889
9890         * support/regression/tests/bug-467035.c: Created.
9891
9892 2001-10-01    <johan AT FRIJA>
9893
9894         * src/SDCC.y: fixed bug #466586 part 1
9895
9896 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
9897
9898         * SDCCicode.c: z80 has no generic pointers
9899         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
9900
9901 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
9902
9903         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
9904
9905 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
9906
9907         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
9908
9909         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
9910
9911 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
9912
9913         * configure.in: Fixed up so that ucsim is only configured once.
9914
9915         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
9916
9917         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
9918         (getPathDifference): As above.
9919
9920         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
9921
9922         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
9923
9924 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
9925         * .version: Updated to 2.3.1
9926
9927         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
9928         Added copyright header.
9929
9930         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
9931         (assemble): Added support for macro based assembler commands.
9932         (linkEdit): Added support for macro based linker commands.
9933         (preProcess): Changed the pre-processor to use macros.
9934         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
9935         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
9936
9937         * device/lib/z80/crt0.s: Added module name for debugging.
9938
9939 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
9940
9941         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9942
9943         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
9944
9945         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
9946
9947         * src/Makefile.in: Added SDCCmacro and SDCCutil
9948
9949 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
9950
9951         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9952
9953 2001-09-16    <johan AT FRIJA>
9954
9955         * 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.
9956
9957 2001-09-15    <johan AT FRIJA>
9958
9959         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
9960         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
9961
9962 2001-09-11    <johan AT FRIJA>
9963
9964         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
9965
9966 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
9967
9968         * support/regression/tests/bug-460444.c: Added test case.
9969
9970         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
9971         (genCast): Added justification for all of the asserts.
9972
9973 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
9974
9975         * support/regression/support.c: _xdata replaced by xdata
9976
9977         * support/regression/spec.mk: removed _generic
9978
9979 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
9980
9981         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
9982
9983         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
9984         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
9985
9986         * src/z80/peeph.def: Added a rule to optimise shift then compare.
9987
9988         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
9989
9990         * support/regression/tests/bug-460010.c: Added test case.
9991
9992         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
9993
9994 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
9995
9996         * support/regression/Makefile: inter-port-clean adjusted for mcs51
9997
9998         * support/regression/testfwk.c: removed workaround for bug #436344
9999
10000         * support/regression/tests/bp.c: use less memory with mcs51
10001
10002         * support/regression/tests/bug-441448.c: use less memory
10003
10004         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
10005
10006         * support/regression/collate-results.py: typo
10007
10008 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
10009
10010         * support/regression/tests/fetchoverlap.c: Added new test case.
10011
10012         * support/regression/tests/bp.c: Added new test case.
10013
10014         * support/regression/tests/bug-448984.c: Added new test case.
10015
10016         * support/regression/tests/pow2shifts.c: Added new test case.
10017
10018         * src/z80/gen.c: Turned off the noise it normally generates for the release.
10019         (genlshTwo): Fixed right shift for count > 8.
10020
10021         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
10022
10023 2001-09-08    <johan AT FRIJA>
10024
10025         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
10026
10027 2001-09-07    <johan AT FRIJA>
10028
10029         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
10030
10031         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
10032
10033 2001-09-06    <johan AT FRIJA>
10034
10035         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
10036         * bernhard noted me at this: "() equals to (void)" (1.38)
10037
10038 2001-09-05    <johan AT FRIJA>
10039
10040         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
10041
10042 2001-09-04    <johan AT FRIJA>
10043
10044         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
10045
10046
10047 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
10048
10049         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
10050
10051 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
10052
10053         * link/z80/aslink.h: Fixed path for PATH_MAX
10054
10055 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
10056
10057         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
10058
10059         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
10060
10061         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
10062
10063         * 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.
10064
10065 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
10066
10067         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
10068         (genCmp): Fixed up genCmp for the GB with longs.
10069
10070         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
10071
10072         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
10073
10074         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
10075
10076         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
10077
10078 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
10079
10080         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
10081
10082 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
10083
10084         * 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.
10085
10086         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
10087
10088 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
10089
10090         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
10091
10092         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
10093
10094 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
10095
10096   * sim/ucsim/configure:    little improvement of Cygwin-detection
10097   * sim/ucsim/configure.in: little improvement of Cygwin-detection
10098   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
10099   * support/regression/tests/bug-221100.c: small changes for mcs51
10100   * support/regression/tests/bug-221168.c: small changes for mcs51
10101   * support/regression/tests/bug-227710.c: small changes for mcs51
10102   * support/regression/tests/staticinit.c: small changes for mcs51
10103   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
10104   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10105   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10106
10107 $Revision$