* device/lib/pic16/libdev/pic18f458.c,
[fw/sdcc] / ChangeLog
1 2005-07-31 Raphael Neider <rneider AT web.de>
2
3         * device/lib/pic16/libdev/pic18f458.c,
4           device/include/pic16/pic18f458.h: added missing T0CONbits
5
6 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
7
8         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
9
10 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
11
12         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
13
14 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
15
16         * device/include/mcs51/at89c51ed2.h: added.
17
18 2005-07-23 Raphael Neider <rneider AT web.de>
19
20         * src/pic/gen.h: added emitpcode macro for debugging
21         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
22           and replace by macro adding debug information on demand
23         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
24         * (gencjne): tried to fix; replaced with correct (slower) code
25         * (gen{Unp,P}ackBits): fixed single bit access
26         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
27         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
28           previous instruction
29         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
30           register has to be handled with care (forbidding movement
31           of assignments/uses, removing assignments completely, ...)
32         * (pCodeOptime2pCodes): make use of regIsSpecial
33         * added lots of debugging output (commented out)
34         * src/pic/rallloc.c (deassignLRs): prevent operand registers
35           from being reused as result UNLESS it is known to work
36
37 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
38
39         * support/Util/dbuf.h: include <stddef.h> for size_t
40         * .version: changed to version 2.5.2
41
42 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
43
44         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
45
46 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
47
48         * src/hc08/gen.c (genMinus): fixed bug #1241835,
49           (genModOneByte): removed needless psha/pula
50
51 2005-07-22 Raphael Neider <rneider AT web.de>
52
53         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
54           have PIC14 handled like PIC16, fixes broken pic14 linker calls
55         * src/pic/gen.c (resolveIfx): do not "invent" labels
56         * (genSkipc): changed to positive logic
57         * (genSkipCond): removed as no longer needed
58         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
59           backport from PIC16
60         * (genLeftShift): check operands are in different registers
61         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
62           INCF does not update CARRY...
63         * src/pic/main.c: fixed _linkCmd
64         * src/pic/pcode.c (unlinkpCode): added inactive code
65         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
66           alive (do not assign result and operand overlapping registers)
67
68 2005-07-22 Raphael Neider <rneider AT web.de>
69
70         * src/pic/device.c (dump_sfr): replaced register declaration with
71           call to emitSymbolToFile() to avoid duplicate symbols
72         * (assignRelocatableRegisters): do not declare external symbols
73         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
74           right (take size of type, not etype)
75         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
76         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
77         * (packRegsForAccUse): disabled assignment of WREG as
78           the result reg to prevent occurence of just fixed #1235003,
79           fixes #1242954
80         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
81           symbols (avoids duplicate symbols in .asm file)
82         * (pic14emitRegularMap): use emitSymbolToFile()
83         * src/pic/gen.c (aopOp): fixed spillLocation handling
84         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
85         * (genDataPointerSet): removed unneccessary variables/output
86
87 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
88
89         * as/mcs51/lkarea.c: enlarged codemap for banked memory
90         * device/lib/mcs51/crtbank.asm: added # to 0x0F
91
92 2005-07-21 Raphael Neider <rneider AT web.de>
93
94         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
95           architecture cannot handle them efficiently, fixes bug #1235003
96         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
97           check for empty sets before using them (fixes bug #1232190)
98
99 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
100
101         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
102           (lnksect2): generate warnings for memory overlap
103         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
104           constseg to set the name of these segments so you can instruct the linker
105           to place them in banks
106         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
107         * src/SDCCglobl.h: added MODEL_HUGE to enum,
108           added code_seg and const_seg to options
109         * src/SDCCglue.c (emitMaps): use options.const_seg,
110           (createInterruptVect): put interrupt vectors in segment HOME,
111           (glue): put HOME before static segment and put the main glue in HOME,
112           (glue): use options.code_seg
113         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
114         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
115           these segments so you can instruct the linker to place them in banks
116           (linkEdit): use code_loc for HOME segment which should be the first
117           segment in code memory now
118         * src/SDCCmem.c: fixed more stuff like bug 1238386
119         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
120           (changePointer): don't change function pointers to code pointers for
121           banked functions,
122           (compareType): added exceptional check for banked function pointers
123         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
124         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
125           after static in code memory
126         * src/mcs51/gen.c: added aopLiteralLong prototype,
127           (aopForSym): use getSize for functions,
128           (genCall): generate banked calls over one trampoline __sdcc_banked_call
129           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
130           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
131           the segment,
132           (genPcall): use call for literal function pointers and generate banked
133           calls over the one trampoline so there's only one place for the user to
134           modify according to his/hers hardware,
135           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
136           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
137         * src/mcs51/main.c: added keyword banked,
138           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
139         * support/Util/SDCCerr.c,
140         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
141           needed for passing the bank and address to the trampoline
142         * device/lib/mcs51/crtbank.asm: added for bankswitching
143         * device/lib/mcs51/Makefile: added crtbank
144
145 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
146
147         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
148           for fields at offset 0 of a struct or union as reported
149           on 2005-07-07 in the developer mailing list.
150
151 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
152
153         * src/SDCCmem.c: fixed bug 1238386
154
155 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
156
157         * src/mcs51/peeph.def: added labelrefcounting for peepholes
158           (patch #1144962), added peephole 300, enabled 259.x
159         * doc/sdccman.lyx: removed screenshot and provided link instead
160
161 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
162
163         * doc/sdccman.lyx: added section about debugging with ddd
164         * doc/figures/ddd_example.eps: screenshot of debugging session
165
166 2005-07-04 Raphael Neider <rneider AT web.de>
167
168         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
169           like CODE pointers, fixes #1115683
170         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
171           call, fixes bugs #1232211, #1228110,
172           fixed wrong casts to pCodeFlow from pCodeInstructions
173
174 2005-07-04 Raphael Neider <rneider AT web.de>
175
176         * src/pic/gen.c (popGet): changed assert to allow for
177           bit operands
178         * (popGetAddr): changed signature to provide
179           an additional index, patched all call sites
180         * (genCmpEq): handle literal-like operands correctly
181         * (genAddrOf): added sanity checks on __code/__data pointers
182         * (genAssign): added handling of symbols from __code section
183         * (gencjne): do not generate code for comparisons whose result
184           is neither stored nor used, fixes bug #1171114
185         * (AccLsh, AccRsh): operate on operand instead of WREG
186         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
187           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
188           by known count
189         * rewrote complete shift-by-literal logic, commented unused
190           functions out
191         * (genConstPointerGet): get multiple bytes (if result size > 1),
192           fixed handling of non-immediate addresses
193         * (genPointerGet): handle CODE pointers like CONST pointers
194         * (genpic14Code): insert C-SRC lines as Cource-pCodes
195         * ({aop,op}_isLitLike): NEW, single place to decide whether an
196           operand is to be treated as a literal or not
197         * (mov2w,genPcall,genCmpEq),
198           src/pic/genarith.c: use aop_isLitLike() to decide between
199           literal/register contents
200         * (addSign): added missing offset
201         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
202           only emit comment in debug-mode,
203           use {aop,op}_isLitLike throughout the file
204         * src/pic/glue.c: fix initializers for pointers (work in progress)
205         * src/pic/pcode.c (get_op): honor index on _const symbols
206         * ({reset,dump}pCodeStatistics): NEW, estimate code size
207         * (dumppBlock): added pCode size estimation
208         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
209           check for IS_SYMOP before OP_SYMBOL'ing
210         * fixed indentation, compacted switch-statements
211         * (allocReg): find free register and allocate it instead of
212           allocating new registers all the time
213         * (deassignLRs): prevent POINTER_GET's from being assigned the same
214           registers as its operands (necessary only for multibyte GETs)
215
216 2005-07-01 Raphael Neider <rneider AT web.de>
217
218         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
219           debugging .asm-output macros FENTRY + FEXIT
220         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
221           way... I wonder...
222         * (emitpComment): NEW, printf to pCode
223         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
224           offset handling
225         * (popGetAddr): NEW, variant of popGet to access an immediates
226           high(er) bytes instead of the n'th byte of memory they reference,
227           replaced popGet with popGetAddr where neccessary
228         * (genDataPointerGet): reactivated and fixed implementation
229         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
230           accesses
231         * (genDataPointerSet): fixed multibyte assignments
232         * (genpic14Code): fixed --i-code-in-asm handling
233         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
234         * (genPlus): fixed index-out-of-bounds error
235         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
236         * src/pic/ralloc.c: added debugging output macro FENTRY2
237         * (spillThis): fixed indentation, enbraced for-body for clarity
238         * (rematStr): commented out as now unused
239         * (regTypeNum): commented out special spill case (overwrites
240           arbitrary values)
241         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
242
243 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
244
245         * doc/sdccman.lyx: documented sfr16/sfr32,
246           added example for using storage class with function pointers
247         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
248
249 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
250
251         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
252         * device/lib/_itoa.c,
253         * device/lib/_ltoa.c: optimized codesize
254         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
255           but don't know how to suppress the double warning.
256         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
257         * support/Util/SDCCerr.c,
258         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
259
260 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
261
262         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
263           fixed old K&R prototypes
264         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
265         * device/lib/_gptrget.c,
266         * device/lib/_gptrgetc.c,
267         * device/lib/_gptrput.c: changed versions for new memory indicator values,
268           also new versions for small generic pointers and banked generic pointers
269         * src/port.h: added const_name
270         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
271         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
272         * src/SDCCcse.c (findPrevIc): check all associative operators
273         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
274         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
275         * src/SDCCmem.c: updated comments,
276           set far-space to 0 for pdata, results in optimized code
277         * src/SDCCmem.h: added macro CONST_NAME
278         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
279           moving the info into the highest bits, see also gptrget/gptrput
280         * src/src.dsp: added sdcc.ico to project files
281         * src/avr/gen.c (genCast): fixed bug 0x%d
282         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
283         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
284           relation between ptr_type and DCL_TYPE,
285           (genCast): fixed bug 0x%d
286         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
287           (CODE)" for const_name
288         * src/hc08/gen.c (genCast): fixed bug 0x%d
289         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
290           (hc08_port): added "CONST (CODE)" for const_name
291         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
292           (aopForRemat, adjustArithmeticResult): disconnected direct relation
293           between ptr_type and DCL_TYPE,
294           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
295           operand* and took AOP() inside function so sfr-ness can be checked,
296           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
297           new prototype,
298           (genFunction, genEndFunction): optimized stack setup,
299           (genMinus): optimized for literals with ending zeroes (in bytes),
300           (genCast): fixed bug 0x%d
301         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
302           (mcs51_port): added "CONST (CODE)" for const_name
303         * src/mcs51/peeph.def: made rule 226 more generic
304         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
305         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
306         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
307         * src/z80/main.c (z80_port): added NULL for const_name,
308           (gbz80_port): added NULL for const_name
309         * support/regression/tests/bug663539.c,
310         * support/regression/tests/sfr16.c: new tests
311
312 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
313
314         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
315
316 2005-06-24 Raphael Neider <rneider AT web.de>
317
318         * device/lib/pic16/libdev/pic18f[68][567]20.c:
319           corrected typos...
320         * device/include/pic16/signal.h: added USBIF
321           and SIG_USB
322
323 2005-06-24 Raphael Neider <rneider AT web.de>
324
325         * device/lib/pic16/libdev/pic18f2455.c,
326           device/include/pic16/pic18f2455.h: NEW
327         * device/include/pic16/pic18fregs.h,
328           device/lib/pic16/pics.all,
329           src/pic16/device.c: added 18f2455
330         * device/lib/pic16/libdev/pic18f[68][567]20.c,
331           device/include/pic16/{pic18f[68][567].h,usart.h}:
332           replaced MULTIPLE_USARTS define with more relaible
333           compatibility sfrs (for USART access)
334
335 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
336
337         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
338           and the output asm file line is printed on two lines.
339
340 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
341
342         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
343           BGT, BLE, BHI, and BLS instructions
344         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
345           genCmpEq): removed
346         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
347           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
348           fixes bug #1216342
349         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
350
351 2005-06-15 Raphael Neider <rneider AT web.de>
352
353         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
354         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
355         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
356           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
357           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
358
359 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
360
361         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
362           Marcel Telka in bug #1215704
363
364 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
365
366         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
367           located in shared memory bank.
368
369 2005-05-31 Raphael Neider <rneider AT web.de>
370
371         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
372           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
373           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
374
375 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
376
377         * device/lib/_strncpy.c: fixed the fix
378
379 2005-05-26 Raphael Neider <rneider AT web.de>
380
381         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
382           initializers with \0, bug #1208187
383         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
384           intializers with \0, bug #1208187
385
386 2005-05-26 Raphael Neider <rneider AT web.de>
387
388         * src/pic16/glue.c (pic16_printIvalChar): fixed string
389           initializers with \0, bug #1208187
390         * src/pic16/main.c (_process_pragma): added sanity checks
391           for stack position and size, emit warnings when appropriate
392
393 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
394
395         * device/lib/_strncpy.c: fixed not filling with \0
396
397 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
398
399         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
400           createFunction),
401         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
402           compound_statement),
403         * src/SDCCsymt.h,
404         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
405
406 2005-05-24 Raphael Neider <rneider AT web.de>
407
408         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
409
410 2005-05-24 Raphael Neider <rneider AT web.de>
411
412         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
413           TRISE definitions, closes bug #1162453
414
415 2005-05-22 Raphael Neider <rneider AT web.de>
416
417         * src/pic16/main.c (_process_pragma): check for missing
418           arguments to pragmas code and udata
419         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
420           consistency fixes to match other headers (thanks to Jim Paris)
421         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
422
423 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
424
425         * src/SDCCicode.c (isOperandEqual): fixed missing ;
426
427 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
428
429         * support/regression/tests/bug1198642.c: new test
430         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
431         * src/SDCCcse.c (findPrevIc): added comment, please have a look
432         * support/scripts/resource.h,
433         * support/scripts/resource.rc,
434         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
435         * support/scripts/sdcc.ico: added 32x32 icon
436
437 2005-05-18 Raphael Neider <rneider AT web.de>
438
439         * device/lib/pic16/libdev/pic18f*.c,
440         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
441           keywords to "__sfr" and "__at (X)"
442         * device/include/pic16/pic18fregs.h: added pic18f4520
443         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
444           #1203088 (MPLAB compatibility)
445
446 2005-05-17 Raphael Neider <rneider AT web.de>
447
448         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
449         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
450         * device/lib/pic16/pics.all: added new devices
451         * src/pic16/device.c: added support for pic18f4520
452
453 2005-05-16 Raphael Neider <rneider AT web.de>
454         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
455         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
456         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
457           convenience function for bit access
458
459 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
460
461         * device/lib/printf_large.c: fixed bug 1193299
462         * support/regression/tests/bug1057979.c: added test %3.3s
463
464 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
465
466         * device/include/mcs51/8051.h,
467         * device/include/mcs51/8052.h: made parseable with lint
468         * device/include/mcs51/lint.h: added include file for (sp)lint
469         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
470         * doc/cdbfileformat.lyx,
471         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
472
473 2005-05-14 Raphael Neider <rneider AT web.de>
474
475         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
476         * device/lib/pic16/libc/stdlib/itoa.c (new)
477         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
478         * device/lib/pic16/libio/Makefile: exclude subdir according to
479           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
480         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
481         * src/pic16/gen.c (genFunction): prevent annoying warning
482         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
483           nameclashes on BeOS
484         * support/cpp2/cppmain.c (cpp_output_string): new
485         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
486           fixes bug 1116802
487
488 2005-05-13 Borut Razem <borut.razem AT siol.net>
489
490         * src/SDCCmain.c (linkEdit): fixed bug 1195202
491
492 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
493
494         * .version: changed to version 2.5.1; back to bleeding edge development
495
496 2005-05-11 Borut Razem <borut.razem AT siol.net>
497
498         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
499           generate PDF version 1.3 documents
500
501 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
502
503         * .version: changed to version 2.5.0
504
505 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
506
507         * doc/sdccman.lyx: updated weblinks, index and smaller updates
508
509 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
510
511         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
512         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
513         well as many smaller updates.
514         * .version: changed to version 2.5.0-pre1
515
516 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
517
518         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
519
520 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
521
522         * support/regression/tests/bug1185672.c: added
523         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
524           bug 1185672
525         * src/mcs51/gen.c (genCall): added comments, made it look safer
526         * src/mcs51/gen.c (genEndFunction): simplified
527
528 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
529
530         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
531
532 2005-04-14 Borut Razem <borut.razem AT siol.net>
533
534         * fixed bug 1045046 - SIGSEGV with really simple code?:
535           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
536           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
537
538 2005-04-14 Borut Razem <borut.razem AT siol.net>
539
540         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
541           src/pic16/device.h: temporarily disabled experimental #inline pragma
542           for 2.5.0 release
543
544 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
545
546         * device/include/z80/stdio.h,
547         * device/include/z80/string.h: removed these highly incomplete files so
548           SDCC can use the default ones in device/include/
549
550 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
551
552         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
553         gcc warning.
554         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
555         fix sdcpp warnings.
556
557 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
558
559         * device/include/malloc.h: removed redundant __reentrant prototypes
560         * device/lib/_mullong.c: added working xstack variant in asm (C version
561           doesn't pass regression tests)
562         * device/lib/bpx.c: used __data and made bpx char for mcs51
563         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
564           (createFunction): fixed bug with xstackPtr
565         * src/SDCCcse.c: corrected comments
566         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
567           (killDeadCode, eBBlockFromiCode): removed unused code
568         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
569           corrected comments
570         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
571           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
572           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
573           (genModOneByte): fixed warning in MSVC
574         * src/mcs51/main.c (): added comments
575         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
576
577 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
578
579         * src/SDCCmain.c (linkEdit): oops, changed one line too many
580
581 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
582
583         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
584
585 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
586
587         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
588         characters arrays of larger size than the declared one.
589
590 2005-04-10 Borut Razem <borut.razem AT siol.net>
591
592         * src/pic/gen.c (genInline),
593           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
594           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
595           (findNextInstruction), (findPrevInstruction),
596           (findInstructionUsingLabel),
597           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
598         * src/pic/pcode.c (findLabel): added missing '\n'
599         * src/src.dsp: added SDCCdwarf2.c to the project
600
601 2005-04-09 Borut Razem <borut.razem AT siol.net>
602
603         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
604
605 2005-04-08 Raphael Neider <rneider AT web.de>
606
607         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
608           into the chain after a given one) and mergeDefmapSymbols (combine
609           defmap entries for each symbol per pcode)
610         * (createDefmap): have defmap entries merged in the end
611         * (defmapReplaceSymRef): split defmap entries covering two accesses to
612           a symbol before replacing one access type's symbol, merge symbols in
613           the end (replacement symbol might already have an entry)
614         * (assignValnums): keep reference to written WREG intact
615
616 2005-04-08 Raphael Neider <rneider AT web.de>
617
618         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
619           Alpha)
620
621 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
622
623         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
624         bytes
625
626 2005-04-07 Raphael Neider <rneider AT web.de>
627
628         * device/include/pic16/usart.h: added compatibility defines for
629           devices with more than one USART
630         * device/include/pic16/pic18f[68][567]20.h: activated above defines
631
632 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
633
634         * device/lib/Makefile.in: updated for port specific include
635
636 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
637
638         * support/regression/ports/mcs51/spec.mk: added mcs51 include
639
640 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
641
642         * device/include/8051.h,
643         * device/include/8052.h,
644         * device/include/at89S8252.h,
645         * device/include/at89c55.h,
646         * device/include/at89x051.h,
647         * device/include/at89x51.h,
648         * device/include/at89x52.h,
649         * device/include/mcs51reg.h,
650         * device/include/reg51.h,
651         * device/include/reg764.h,
652         * device/include/regc515c.h,
653         * device/include/sab80515.h: (re)moved these 12 files
654         * device/include/mcs51/8051.h,
655         * device/include/mcs51/8052.h,
656         * device/include/mcs51/at89S8252.h,
657         * device/include/mcs51/at89c55.h,
658         * device/include/mcs51/at89x051.h,
659         * device/include/mcs51/at89x51.h,
660         * device/include/mcs51/at89x52.h,
661         * device/include/mcs51/mcs51reg.h,
662         * device/include/mcs51/reg51.h,
663         * device/include/mcs51/reg764.h,
664         * device/include/mcs51/regc515c.h,
665         * device/include/mcs51/sab80515.h: and added them here
666
667 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
668
669         * device/include/stdarg.h: changed SDCC specific keywords to double
670           underlined form.
671         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
672           mcs51 and ds390.
673         * device/include/hc08/mc68hc908gp32.h,
674         * device/include/hc08/mc68hc908jb8.h,
675         * device/include/hc08/mc68hc908jkjl.h,
676         * device/include/hc08/mc68hc908qy.h: fixed comments
677         * device/include/mcs51/README: updated
678         * device/include/mcs51/c8051f120.h: added PINRSF
679         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
680         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
681           amidst code. Also inline is not supported.
682
683 2005-04-06 Raphael Neider <rneider AT web.de>
684
685         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
686         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
687           callers stack/frame pointers
688
689 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
690
691         * device/include/pic16/usart.h: added, missing in previous commit,
692         * device/include/pic16/adc.h: fixed typo,
693         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
694         commit,
695         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
696         <p18fxxx.inc>
697         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
698         uninitialized because a bug appears with gplink
699         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
700         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
701         complains for unrecognised option
702
703 2005-04-05 Raphael Neider <rneider AT web.de>
704
705         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
706           structs as well (using memcpy)
707         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
708           on ISRs (GOTO has no label)
709         * src/pic16/device.h: added OF_OPTIMIZE_DF
710         * src/pic16/main.c: added compiler switch --optimize-df to enable the
711           new data flow analysis/optimization
712         * src/pic16/pcode.c: added (prototypes for and implementation of)
713           dataflow analysis functions, fixed pCodeInstructions' inCond and
714           outCond values, made RCALL a branch instruction
715         * (pic16_unlinkpCode): keep C line if possible
716         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
717           C line moved if possible
718         * (pic16_getRegFrompCodeOp): NEW, improved version of...
719         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
720           to use new pic16_getRegFrompCodeOp (works for more SFRs)
721         * (pic16_BuildFlow): fixed skip instructions with label (did not start
722           new flow)
723         * (pic16_getJumptabpCode): NEW, needed in...
724         * (LinkFlow): fixed handling of jumptables, calls and conditional
725           branches
726         * (pic16_InsertCommentAfter): NEW
727         * (pic16_pCodeReplace): made verbose and flow preserving
728         * (AnalyzeFlow): added call to data flow analysis
729         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
730         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
731         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
732
733 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
734
735         * src/SDCCast.c (decorateType): fixed bug #1105626
736
737 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
738
739         * device/include/asm/pic16/features.h,
740         * pic18f*.h headers,
741         * device/include/pic16/adc.h,
742         * device/include/pic16/delay.h,
743         * device/include/pic16/i2c.h,
744         * device/include/pic16/malloc.h,
745         * device/include/pic16/stdio.h,
746         * device/include/pic16/stdlib.h,
747         * device/include/pic16/string.h,
748         * device/lib/pic16/libc/stdio/printf_tiny.c,
749         * device/lib/pic16/libc/stdio/printf_small.c,
750         * device/lib/pic16/libc/stdio/strmgpsim.c,
751         * device/lib/pic16/libc/stdio/strmmssp.c,
752         * device/lib/pic16/libc/stdio/strmusart.c,
753         * device/lib/pic16/libc/stdio/vfprintf.c,
754         * device/lib/pic16/libc/stdlib/ltoa.c,
755         * device/lib/pic16/libc/stdlib/putchar.c,
756         * device/lib/pic16/libc/stdlib/x_ftoa.c,
757         * device/lib/pic16/libc/stdlib/memchrpgm.c,
758         * device/lib/pic16/libc/stdlib/memchrram.c,
759         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
760         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
761         * device/lib/pic16/libio/adc/adcbusy.c,
762         * device/lib/pic16/libio/adc/adcread.c,
763         * device/lib/pic16/libio/adc/adcsetch.c,
764         * device/lib/pic16/libio/usart/ubaud.c,
765         * device/lib/pic16/libio/usart/ubusy.c,
766         * device/lib/pic16/libio/usart/udrdy.c,
767         * device/lib/pic16/libio/usart/uopen.c,
768         * device/lib/pic16/libio/usart/uputc.c,
769         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
770         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
771         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
772         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
773         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
774         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
775         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
776         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
777         specific keywords to double underlined form,
778         * device/lib/pic16/libc/Makefile.rules,
779         * device/lib/pic16/libsdcc/Makefile.rules,
780         * device/lib/pic16/libm/Makefile,
781         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
782         to compile with C standard set in Makefile.common
783         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
784         rand.c and crc.c in compilation process,
785         * device/lib/pic16/libsdcc/int/divuint.c,
786         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
787         `c' from signed to unsigned,
788         * device/lib/pic16/startup/crt0.c,
789         * device/lib/pic16/startup/crt0i.c,
790         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
791         keywords to double underlined form, bug fixes in _do_cinit function
792         which prevented the correct initialization of the .idata segment,
793         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
794         core to enter a infinite loop
795         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
796
797 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
798
799         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
800
801 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
802
803         * device/include/Makefile.in: add support for hc08 subdirectory
804         * device/include/hc08/: new subdirectory
805         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
806         Lucas Loizaga, thanks!
807         * device/include/hc08/mc68hc908qy.h,
808         * device/include/hc08/mc68hc908gp32.h,
809         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
810         their own directory. Changed internal macro names to use the compiler
811         reserved namespace. Changed SDCC specific keywords to double
812         underlined form.
813         * device/include/math.h,
814         * device/include/malloc.h,
815         * device/include/stdarg.h,
816         * device/include/stdbool.h
817         * device/include/string.h,
818         * device/include/tinibios.h,
819         * device/include/ds400rom.h,
820         * device/include/8051.h,
821         * device/include/8052.h,
822         * device/include/80c51xa.h,
823         * device/include/at89c55.h,
824         * device/include/at89S8252.h,
825         * device/include/at89x51.h,
826         * device/include/at89x52.h,
827         * device/include/ds80c390.h,
828         * device/include/reg764.h,
829         * device/include/regc515c.h,
830         * device/include/sab80515.h,
831         * device/include/mcs51/c8051f000.h,
832         * device/include/mcs51/c8051f018.h,
833         * device/include/mcs51/c8051f020.h,
834         * device/include/mcs51/c8051f040.h,
835         * device/include/mcs51/c8051f060.h,
836         * device/include/mcs51/c8051f120.h,
837         * device/include/mcs51/c8051f300.h,
838         * device/include/mcs51/c8051f310.h,
839         * device/include/mcs51/c8051f320.h,
840         * device/include/mcs51/c8051f330.h,
841         * device/include/mcs51/c8051f350.h,
842         * device/include/z180.h: Changed SDCC specific keywords to double
843         underlined form.
844
845 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
846
847         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
848         18F4455,
849         * (pic16_assignConfigWordValue): disable testing of configuration
850         register value with config mask,
851         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
852         function with port->fun_prefix,
853         * (genFunction): when generating a naked interrupt function never
854         create an absolute segment placed in interrupt vector address, place
855         the actual interrupt function at IVA instead, when an interrupt
856         function is generated with unspecified interrupt then do not create
857         the absolute section,
858         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
859         code for generating a call to generic pointer get/put function with
860         a call to function pic16_callGenericPointer(),
861         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
862         the call to the generic pointer get/put functions with prefixing the
863         function name with port->fun_prefix,
864         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
865         * src/pic16/main.c (_process_pragma): prefix function with
866         port->fun_prefix,
867         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
868         calling assembler, old 18Fxxxx macro is deprecated,
869         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
870         PC_ASMDIR in while condition,
871         * (findInstruction): add PC_ASMDIR in while condition,
872         * (buildCallTree): prefix main with port->fun_prefix,
873         * (pic16_pCode2str): fixed bug that didn't emit the memory access
874         identifier for variable with banked access in instructions BTFSS,
875         BTFSC, BCF, BSF, BTG
876         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
877         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
878         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
879         perform optimization when enviroment variable NO_REG_OPT is set,
880         * (insideLRBlock): NEW, return 1 if register is inside an
881         INF_LOCALREGS block,
882         * (RemoveRegFromLRBlock): remove a register that is completely
883         eliminated by register optimization, but it is still left in local
884         register store/restore in/from stack block,
885         * (Remove2pcodes): after removing register, check to see if it
886         should be removed from local register store/restore in/from stack
887         block,
888         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
889         DUMMY_READ_VOLATILE,
890
891         * device/include/pic16/adc.h: minor prototype modifications and
892         update,
893         * device/include/pic16/malloc.h: added GPL notice various
894         modifications,
895         * device/include/pic16/stdint.h: NEW, standard header for ints
896         * device/include/pic16/delay.h: NEW, header for delay functions,
897         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
898         delay1mtcy,
899         * device/include/pic16/signal.h: NEW, header providing helper macros
900         for implementing signal handlers,
901         * device/include/pic16/stdio.h: added prototypes for functions,
902         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
903         prototypes for stdin and stdout, added macro PUTCHAR to
904         automatically implement putchar function prototype,
905         * device/include/pic16/usart.h: modified and updated USART library,
906         * device/lib/pic16/libio/adc/,
907         * device/lib/pic16/libio/i2c: some modifications to improve library
908         performance,
909         * device/lib/pic16/libc/stdio/: modifications for the new printf*
910         family of functions,
911         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
912         family of functions and other sources,
913         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
914         of the PIC18Fxx[28] devices,
915         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
916         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
917         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
918         _do_cinit function, because the previous failed when local variables
919         where not placed in the same memory bank,
920         * device/lib/pic16/libsdcc/char/: various modifications to improve
921         library performance,
922         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
923         information on the new functions of the c library and more...
924
925 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
926
927         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
928
929 2005-03-26 Raphael Neider <rneider AT web.de>
930
931         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
932           if condition == CARRY)
933         * (genCmp): adapted to new genSkipc semantics
934         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
935           on rIfx (genCmp was broken)
936
937 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
938
939         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
940         * src/z80/main.c (_keywords[]),
941         * src/SDCCglobal.h (struct options),
942         * src/SDCC.y,
943         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
944         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
945         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
946         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
947         always available in leading double underscore form. The C99 support is
948         mostly missing, but it's a start.
949         * support/regression/tests/bug-227710.c: fixed nonconforming use of
950         reserved identifier "__data".
951
952 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
953
954         * src/mcs51/peeph.def: fixed bug 1170013
955
956 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
957
958         * device/include/mcs51reg.h: fixed bug 842007
959
960 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
961
962         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
963         last time.
964
965 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
966
967         * src/port.h (struct PORT),
968         * src/avr/ralloc.c (avr_assignRegisters),
969         * src/avr/main.c,
970         * src/ds390/ralloc.c (ds390_assignRegisters),
971         * src/ds390/main.c,
972         * src/hc08/ralloc.c (hc08_assignRegisters),
973         * src/hc08/main.c,
974         * src/mcs51/ralloc.c (mcs51_assignRegisters),
975         * src/mcs51/main.c,
976         * src/pic/ralloc.c (pic14_assignRegisters),
977         * src/pic/main.c,
978         * src/pic16/ralloc.c (pic16_assignRegisters),
979         * src/pic16/main.c,
980         * src/xa51/ralloc.c (xa51_assignRegisters),
981         * src/xa51/main.c,
982         * src/z80/ralloc.c (z80_assignRegisters),
983         * src/z80/ralloc.h,
984         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
985         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
986         * src/SDCCcse.h,
987         * src/SDCCdflow.c (computeDataFlow),
988         * src/SDCCdflow.h,
989         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
990         * src/SDCCloop.h,
991         * src/SDCCcflow.c (*),
992         * src/SDCCcflow.h,
993         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
994         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
995         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
996         immedDom() returning wrong block; probably fixes bug #1160833)
997
998 2005-03-20 Borut Razem <borut.razem AT siol.net>
999
1000         * support/scripts/inc2h.pl: WIN32 port
1001
1002 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
1003
1004         * device/lib/makefile.in: added abs.c and labs.c
1005
1006 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
1007
1008         * device/include/stdint.h: added
1009         * device/lib/abs.c: added
1010         * device/lib/labs.c: added
1011         * device/include/stdlib.h: added abs() and labs() prototypes
1012         * device/lib/libsdcc.lib: added abs and labs
1013         * device/include/float.h,
1014         * device/lib/_fsmul.c,
1015         * device/lib/printf_fast.c,
1016         * device/lib/printf_tiny.c: updated comments
1017
1018 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1019
1020         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
1021         bug #1164313
1022
1023 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1024
1025         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
1026         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
1027
1028 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
1029
1030         * device/lib/printf_large.c: removed inline assembly for portability and
1031           readability. Use printf_fast if speed or size are more important.
1032         * src/pic16/gen.c: removed conditions around use of DEBUGpc
1033         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
1034
1035 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
1036
1037         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
1038         prevent compiler warning
1039
1040 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
1041
1042         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
1043         moved to level 0 and declared as static. Also they are explicit
1044         placed in access bank. This was necessery because some times they
1045         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
1046         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
1047         optimizations. Currently only compare to unsigned char is implemented,
1048         * src/pic16/gen.c: added fReturnIdx array,
1049         * (struct resolvedIfx) is moved to gen.h and made public,
1050         * (struct _G): added sregsAlloc and sregsAllocSet fields,
1051         * (aopForSym): added an optimization to directly store in stack of
1052         the operand of a SEND iCode,
1053         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
1054         but as registers instead (AOP_REG) using the fReturnIdx array,
1055         * (pic16_freeAsmop): remove the freed register from the
1056         _G.sregsAlloc field,
1057         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
1058         a compare of 'WREG',
1059         * (pic16_popGetTempRegCond): changed function prototype, now
1060         function takes also a bitVector argument v which holds the current
1061         set of registers that are allocated for stack access by aopForSym,
1062         registers allocated in aopForSym for accessing stack symbols are not
1063         any more part of the functions usedRegs field,
1064         * (genCall): some times aopOp is called for a stack variable to be
1065         send, aopForSym might perform the push, if this is true make sure
1066         that genCall doesn't push the variable twice by testing _G.resDirect,
1067         * (genFunction): changed testing for unspecified interrupt number
1068         from 256 to INTNO_UNSPEC,
1069         * modified selection scheme of frame pointer generation. Previously
1070         if function did use local registers a frame pointer was generated,
1071         now a frame pointer is generated only if function has arguments
1072         (that need PLUSW2 register access), or has stack arguments, or the
1073         compiler is not instructed to omit the frame pointer,
1074         * (genEndFunction): before restoring local registers that were saved
1075         in the function preamble, also restore the registers that *might*
1076         have been allocated for stack access,
1077         * (genRet): removed some old comments,
1078         * (genCmp, the active (RN's) version): added a call to the
1079         pic16_genCmp_special function to perform the compare with a more
1080         robust and optimized way,
1081         * (genInline): a feature has been added in inline code generation,
1082         which allows a wildcard variable substitution when writing inline
1083         assembly. Code is incomplete and experimental therefore undocumented,
1084         * (genCast): changed order of aopOp for result and right to allow
1085         aopForSym to directly load the result if possible,
1086         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
1087         perform an optimized compare on some selected special occasions,
1088         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
1089         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
1090         generate an IVT any more,
1091         * src/pic16/main.c (pic16_optionsTable): added command line option
1092         --optimize-cmp,
1093         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
1094         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
1095         macros,
1096         * src/pic16/NOTES: Raphael Neider added in list of active developers
1097         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
1098         jumptable_end to prevent bug #,
1099         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
1100         inCond and outCond fields,
1101         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
1102         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
1103         turn off register spilling,
1104         * (packRegsForOneUse): synced with other ports' versions although it
1105         is not used currently,
1106         * (pic16_packRegisters): added an optimization while reading
1107         structure bitfields, some registers may be saved (malloc code is
1108         decreased by 80 bytes)
1109
1110 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
1111
1112         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
1113         left is a bitfield, if yes, then don't optimize assignment. Perhaps
1114         this can be optimized more?
1115
1116 2005-03-10 Raphael Neider <rneider AT web.de>
1117
1118         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
1119           genNearPointerGet): (hopefully) fixed access to bitfields via
1120           pointers (p->bitN = x; and x = p->bitN; failed)
1121
1122 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
1123
1124         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
1125
1126 2005-03-09 Raphael Neider <rneider AT web.de>
1127
1128         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
1129
1130 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
1131
1132         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
1133         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
1134           (regTypeNum): set REG_BIT type if necessary
1135         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
1136         * support/regression/tests/critical.c: check bug 1144613
1137
1138 2005-03-02 Raphael Neider <rneider AT web.de>
1139
1140         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
1141
1142 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1143
1144         * src/avr/ralloc.c (serialRegAssign),
1145         * src/ds390/ralloc.c (serialRegAssign),
1146         * src/hc08/ralloc.c (serialRegAssign),
1147         * src/mcs51/ralloc.c (serialRegAssign),
1148         * src/pic/ralloc.c (serialRegAssign),
1149         * src/pic16/ralloc.c (serialRegAssign),
1150         * src/xa51/ralloc.c (serialRegAssign),
1151         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
1152
1153 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
1154
1155         * src/SDCCast.c (decorateType): fixed bug 1124787
1156
1157 2005-02-20 Hubert Sack <sack AT digiplan.de>
1158         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1159
1160         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
1161         patch #1121755
1162
1163 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1164
1165         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
1166         to keep the correct label reference count when adding/removing references
1167         to labels. A peephole file using this is appended to patch #1144962.
1168
1169 2005-02-14 Raphael Neider <rneider AT web.de>
1170
1171         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
1172         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
1173         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
1174           retrievals of result operand's value on assignment
1175
1176 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
1177
1178         * device/include/pic16/string.h: modified prototype for memccpy()
1179         to memccpy(void *, void *, char, size_t)
1180         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
1181         check whether to omit frame pointer or not,
1182         * (genInline): convert all occurences of "\n" to LF in inline
1183         assembler blocks, this helps formatting the inline text,
1184         * (pic16_loadFSR0): modified prototype,
1185         * (genNearPointerGet, genNearPointerSet): reorganization of code,
1186         removed some 8051 legacy code,
1187         * (genPackBits): enabled handling bitfields exceeding one byte in size,
1188         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
1189         before allocating temporary registers in functions,
1190
1191 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1192
1193         * support/regression/tests/bitvars.c: corrected the "fix"
1194
1195 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1196
1197         * support/regression/tests/bitvars.c,
1198         * support/regression/tests/bitwise.c,
1199         * support/regression/tests/rotate.c: "fixed" problems on Alpha
1200
1201 2005-02-10 Raphael Neider <rneider AT web.de>
1202
1203         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
1204           different size for Alpha
1205         * src/pic16/gen.c (genCmpEq) : improved compare with 0
1206
1207 2005-02-09 Raphael Neider <rneider AT web.de>
1208
1209         * src/SDCC.lex(doPragma) : save and restore warning options as well
1210           (also added new stack plus clone- and copyAndFreeSDCCERRG())
1211         * have #pragma less_pedantic set the errorlevel to WARNING
1212           (fixes #1117001)
1213         * (cloneOptimize) : fixed wrong malloc's size
1214         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
1215           facilitate correct handling of #pragma (save|restore)
1216
1217 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1218
1219         * src/mcs51/gen.c: removed non-standard C nameless struct/union
1220
1221 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
1222
1223         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
1224
1225 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
1226
1227         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
1228
1229 2005-02-02 Raphael Neider <rneider AT web.de>
1230
1231         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
1232         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
1233         * (pic16_storeForReturn): fixed to allow returning function pointers
1234         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
1235         * device/include/pic16/{stddef.h,stdbool.h}: added
1236
1237 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
1238
1239         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
1240
1241 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
1242
1243         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
1244         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
1245          appeared to be required
1246
1247 2005-01-31 Borut Razem <borut.razem AT siol.net>
1248
1249         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
1250           include/mcs51 and include/z80 directories to the package
1251
1252 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1253
1254         * src/hc08/gen.c (genFunction): fixed bug #1112752
1255
1256 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1257
1258         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
1259
1260 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1261
1262         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
1263
1264 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
1265
1266         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
1267
1268 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
1269
1270         * device/include/c8051fxxx.h: removed these 6 files
1271         * device/include/mcs51/c8051fxxx.h: added these 11 new files
1272
1273 2005-01-26 Raphael Neider <rneider AT web.de>
1274
1275         * src/pic16/gen.c (genAssign): fixed assignment from longs
1276           in codespace (were cut to three bytes)
1277         * (genDummyRead): implemented (except for CODESPACE...),
1278           fixed bug #1108575
1279         * src/pic16/glue.c (emitStatistics): beautified
1280         * device/lib/pic16/libm/Makefile: added include path
1281
1282 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1283
1284         * src/z80/gen.c (aopPut): fixed bug #1103902
1285
1286 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1287
1288         * device/lib/expf.c: fixed bug #1095792
1289
1290 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
1291
1292         * device/lib/pic16/libm: added Math library sources
1293
1294 2005-01-24 Raphael Neider <rneider AT web.de>
1295
1296         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
1297           to enable upcast to pCodeOpReg2 (there is no type tag to
1298           differenciate the two and pic16_popGet2p cast into PCOR2)
1299         * src/pic16/main.c (_process_pragma): fixed another malloc bug
1300           (sizeof(sectNames) changed to sizeof(sectName))
1301           Both patches fix segfaults under MinGW.
1302
1303 2005-01-23 Raphael Neider <rneider AT web.de>
1304
1305         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
1306           Safe_[mc]?alloc()'ed variables
1307         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
1308           of (byte sized) temporaries (assign them to WREG for now)
1309         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
1310           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
1311           this might fix SIGSEGVs on MinGW...
1312         * src/SDCCopt.c (killDeadCode): restored original behaviour
1313           (volatile operands might get thrown away though)
1314
1315 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
1316
1317         * src/pic16/gen.c: fixed bug #1106975,
1318         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
1319         pointer update, INTCON is saved, global interrupts are disabled and
1320         restored after updateing TOS.
1321         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
1322         * added function attribute 'shadowregs' to take advantage of shadow
1323         registers,
1324         * added function attribute 'wparam' as an alternative to the wparam
1325         pragma,
1326         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
1327         user declares a non-ISR function as 'shadowregs',
1328         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
1329
1330 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
1331
1332         * .version: bumped version number to 2.4.8
1333         * device/lib/pic16/pics.all: list of PIC18F devices supported by
1334         pic16 port,
1335         * device/lib/pic16/libio/i2c/: I2C module support library,
1336         * device/include/pic16/i2c.h: I2C support library header,
1337         * device/lib/pic16/libc/stdio/: standard IO support sources,
1338         * (printf_small.c): printf_small() source, supports float print,
1339         * (printf_tiny.c): printf_tiny() source, does not support floats,
1340         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
1341         enable global optimizations for entire library source, other
1342         Makefiles in the source tree are also modified to reflect this,
1343         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
1344         function,
1345         * doc/sdccman.lyx: updated to reflect new changes,
1346         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
1347         sym->onStack if-case,
1348         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
1349         sbit, idata, _idata, xdata, _xdata,
1350         * added pragma library, to link an external library, (see doc),
1351         * removed command line options, --pomit-config-words, --pomit-ivt,
1352         --pleave-reset-vector,
1353         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
1354         when calling assembler to reflect memory model used, also define
1355         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
1356         reflect stack model used,
1357         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
1358         on stack return NULL,
1359
1360 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1361
1362         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
1363           of the operands is volatile. Fixes #1020220
1364
1365 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1366
1367         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
1368         * (OptimizeRegUsage): make sure that there is really no other flow where
1369           the first pCode is used
1370
1371 2005-01-22 Raphael Neider <rneider AT web.de>
1372
1373         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
1374           to fix #1106967 (pCode->seq are not set up correctly)
1375
1376 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1377
1378         * src/SDCCglue.c (glue): make sure code area is declared before the
1379         static initialization area.
1380
1381 2005-01-21 Raphael Neider <rneider AT web.de>
1382
1383         * device/lib/Makefile.in: fixed test for pic16 install dir
1384         * device/lib/pic16/*/Makefile*: modified compile flags to enable
1385           optimizations
1386         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
1387           added --optimize-goto compiler switch and pragma wparam documentation
1388         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
1389         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
1390           and PRODH closing bug #1071770 (peephole optimizer)
1391
1392 2005-01-19 Raphael Neider <rneider AT web.de>
1393
1394         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
1395           cmdLine buffers (used when calling sdcpp...) are large enough
1396           (MAX_PATH=256 truncates arguments leading to system halts when
1397           used in MinGW...)
1398         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
1399         * (genUminus): rewritten to for efficiency
1400         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
1401           used uninitialized in some cases)
1402         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
1403           copy the third byte from the int -- now assumes 0x80 (data memory)
1404         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
1405           operands (genAddLit expects the iCode's operands to swapped as
1406           well), fixed leftover bytes (crashed for short left operands)
1407         * (pic16_genMinusDec): performance improvements, removed false
1408           PIC14 emitSKPNCs
1409         * (pic16_genMinus): fixed to cope with differently sized operands
1410         * src/pic16/glue.c (pic16_glue): added new banksel optimization
1411           for --obanksel > 1
1412         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
1413         * src/pic16/graph.[ch]: implementation of directed graphs, used by
1414           new banksel optimization
1415         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
1416           analysis for temporary registers (segfaults...)
1417         * src/pic16/peeph.def: added rule
1418
1419 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
1420
1421         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
1422         which converts a float number to its ASCII representation
1423         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
1424         functions to convert the fractional and integer part of a float to ASCII,
1425         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
1426         realloc.c): added _MALLOC_SPEC to explicit place variables in data
1427         ram
1428         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
1429         _STATMEM macros,
1430         * device/include/pic16/adc.h: added GPL info,
1431         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
1432         a pCodeOp as tested operand,
1433         * (genNearPointerGet): optimized bit testing, does not use
1434         intermediate register for bit value, test directly instead with
1435         BTFSS, BTFSC, works only for single bits,
1436         * (genpic16Code): dump the name of the iCode in the asm,
1437         * src/pic16/ralloc.c (decodeOp): removed static declaration and
1438         renamed to pic16_decodeOp,
1439         * (serialRegAssign): do not allocate a temporary register for iCode
1440         sequences that test a single bit for 1/0
1441
1442 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
1443
1444         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
1445         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
1446         access stack and frame pointers. They are initially assigned to
1447         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
1448         accessing SFRs. Updated all occurences of modification of stack or
1449         frame pointer in gen.c and pcode.c,
1450         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
1451         assigning of a literal value to pointers,
1452         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
1453         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
1454         selected
1455
1456 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
1457
1458         * doc/sdccman.lyx: update documentation about stack pragma, added
1459         some info for stack memory models
1460
1461 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1462
1463         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
1464
1465 2005-01-08 Raphael Neider <rneider AT web.de>
1466
1467         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
1468           udata sections to fix bug #1097823
1469
1470 2005-01-05 Raphael Neider <rneider AT web.de>
1471
1472         * src/pic16/gen.c (genGenericShift): added handling of differently
1473           sized left operand and result
1474
1475 2005-01-04 Raphael Neider <rneider AT web.de>
1476
1477         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
1478         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
1479           to hold the condition bit)
1480         * added new version of genCmp (old code available via #define)
1481         * added new version of genShiftLeft/genShiftRight in a generic
1482           way, now supports shifting by negative values
1483         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
1484           shiftCount (expected by genGenericShift)
1485         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
1486         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
1487           dump
1488         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
1489           is an invalid literal too...)
1490
1491 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
1492
1493         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
1494         from Raphael Neider,
1495         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
1496         for 8-bit literals. This fixes some literal operands which are sign
1497         extended to 16-bits ints when instruction needs only 8-bits.
1498
1499 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
1500
1501         * device/lib/logf.c: added mcs51 assembly version
1502         * device/lib/expf.c: added mcs51 assembly version
1503         * device/lib/_logexpf.c: new shared asm code for expf and logf
1504         * device/include/math.h: add defines for assembly math library
1505         * device/lib/Makefile.in: build new _logexpf.c
1506         * device/lib/libfloat.lib: use new _logexpf.c
1507
1508 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
1509
1510         * src/pic/device.c
1511         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
1512           device types which have less than 0x7f registers.
1513
1514 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
1515
1516         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
1517
1518 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
1519
1520         * device/lib/printf_fast.c: only build on supported arch.
1521         * device/lib/printf_tiny.c: only build on supported arch.
1522         * device/lib/printf_fast_f.c: only build if asm float lib
1523         * device/lib/_fsget1arg.c: only build if asm float lib
1524         * device/lib/_fsget2args.c: only build if asm float lib
1525         * device/lib/_fsnormalize.c: only build if asm float lib
1526         * device/lib/_fsreturnval.c: only build if asm float lib
1527         * device/lib/_fsrshift.c: only build if asm float lib
1528         * device/lib/_fsswapargs.c: only build if asm float lib
1529         * device/include/stdio.h: don't provide print_fast,
1530           print_fast_f, print_tiny prototypes if --xstack used
1531
1532 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
1533
1534         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
1535         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
1536           to the SOURCES
1537
1538 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
1539
1540         * device/lib/printf_fast_f.c: same as printf_fast, but
1541           with floating point enabled
1542         * device/lib/printf_fast.c: minor tweaks
1543         * device/include/stdio.h: add printf_fast_f
1544
1545 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
1546
1547         * src/SDCCmain.c: make --float-reent default for mcs51
1548         * device/lib/_fsadd.c: added mcs51 assembly version
1549         * device/lib/_fssub.c: added mcs51 assembly version
1550         * device/lib/_fsmul.c: added mcs51 assembly version
1551         * device/lib/_fsdiv.c: added mcs51 assembly version
1552         * device/lib/_fseq.c: added mcs51 assembly version
1553         * device/lib/_fsneq.c: added mcs51 assembly version
1554         * device/lib/_fsgt.c: added mcs51 assembly version
1555         * device/lib/_fslt.c: added mcs51 assembly version
1556         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
1557         * device/lib/Makefile.in: add _fscmp to build
1558         * device/lib/libfloat.lib: add _fscmp to build
1559
1560 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
1561
1562         * device/lib/_fs2slong.c: added mcs51 assembly version
1563         * device/lib/_fs2sint.c: added mcs51 assembly version
1564         * device/lib/_fs2schar.c: added mcs51 assembly version
1565         * device/lib/_fs2ulong.c: added mcs51 assembly version
1566         * device/lib/_fs2uint.c: added mcs51 assembly version
1567         * device/lib/_fs2uchar.c: added mcs51 assembly version
1568         * device/lib/_slong2fs.c: added mcs51 assembly version
1569         * device/lib/_sint2fs.c: added mcs51 assembly version
1570         * device/lib/_schar2fs.c: added mcs51 assembly version
1571         * device/lib/_ulong2fs.c: added mcs51 assembly version
1572         * device/lib/_uint2fs.c: added mcs51 assembly version
1573         * device/lib/_uchar2fs.c: added mcs51 assembly version
1574         * device/include/float.h: added #define to select asm vs c
1575
1576 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
1577
1578         * device/lib/printf_fast.c: improvements to float output
1579         * device/include/float.h: add defines for assembly float library
1580         * device/lib/_fsget1arg.c: receive 1 float arg
1581         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
1582         * device/lib/_fsnormalize.c: normalize a float
1583         * device/lib/_fsreturnval.c: return float, various helper routines
1584         * device/lib/_fsrshift.c: right shift a float's mantissa
1585         * device/lib/_fsswapargs.c: swap 2 floats
1586         * device/lib/Makefile.in: build these 6 new files for mcs51
1587         * device/lib/libfloat.lib: add these 6 files to the library
1588
1589 2004-12-26 Borut Razem <borut.razem AT siol.net>
1590
1591         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
1592           built by gcc 3.4.2
1593
1594 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
1595
1596         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
1597           and fully reentrant and register bank neutral.
1598         * device/lib/printf_fast.c: added float (not enabled by default),
1599           added compact/slower integer (also not enabled by default),
1600           improved size/speed of fast integer code, other minor changes
1601         * device/include/stdio.h, device/lib/Makefile.in,
1602           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
1603
1604 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
1605
1606         * src/pic16/pcode.c: declaring variables other than at the start of a
1607           block is not supported in C by VC6.
1608
1609 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
1610
1611         * applied a previous patch from Raphael Neider that wasn't included
1612         in the previous commits, which fixes infinite loops within jumptable
1613         improvements,
1614         * made some fixes that previous patches introduced
1615
1616 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
1617
1618         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
1619         that fixes an issue with AOP_PCODE asmop's offset,
1620         * (pic16_popCopyReg): update instance field too,
1621         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
1622         function of pic port,
1623         * (genCmp, genAnd, genAssign),
1624         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
1625
1626 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
1627
1628         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
1629         variables initial values to idata section,
1630         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
1631         variables in some functions. This utilizes parmBytes field of iCode
1632         structure to hold the offset of the variable in stack. (might be
1633         able to use the stack field too?)
1634         * applied patch from Raphael Neider # ### , # ###
1635         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
1636         variable initial values in idata section,
1637         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
1638         for static variables with initial value
1639         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
1640         applied fix in while loop from Raphael Neider.
1641
1642 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
1643
1644         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
1645         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
1646         * src/ds390/ralloc.c (serialRegAssign): spill bits
1647         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
1648         * support/Util/SDCCerr.c,
1649         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
1650         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
1651         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
1652
1653 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
1654
1655         * device/include/sdcc-lib.h: inserted LGPL, added includes
1656           asm/ds390/features.h and asm/mcs51/features.h
1657         * device/include/asm/default/features.h,
1658         * device/include/asm/gbz80/features.h,
1659         * device/include/asm/z80/features.h: added empty _AUTOMEM
1660           and _STATMEM
1661         * device/include/asm/ds390/features.h,
1662         * device/include/asm/mcs51/features.h: added files with defines for
1663           _AUTOMEM and _STATMEM indicating automatic and static storage class
1664         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
1665         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
1666         * src/SDCCicode.c (geniCodeCast),
1667         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
1668         * src/SDCCloop.c (loopInduction): removed unused variable lr
1669         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
1670           to convertToFcall to include char modulo (RFE 1065037), added check
1671           if left operand is unsigned and use abs of literal value
1672         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
1673           as it doesn't work after conversion from peephole.def to peephole.rul
1674         * src/mcs51/gen.c (toBoolean): added check for size,
1675           (genModOneByte): optimized code for signed char modulo a literal
1676           power of 2 (thanks to Hubert Sack),
1677           (genRRC): removed unnecessary "clr c",
1678           (genRLC): replaced "add a,acc" with cheaper "rlc a"
1679         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
1680           jump optimization,
1681           swapped rules 256.c and 256.d,
1682           extended 256.d by using new multiple checks (thanks Erik),
1683           added rules 256.e and 256.f,
1684           updated rule 261.a and 261.b to new generated code
1685         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
1686
1687 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1688
1689         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
1690           induction related bugs, including first part of bug #1074377
1691
1692 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
1693
1694         * applied patch from bug-report #1076292,
1695         * applied patches for genAnd and Goto-optimizations for Raphael
1696         Neider,
1697         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
1698         dump a less iCode information,
1699         * src/pic16/device.h (pic16_options_t): added field debgen,
1700         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
1701         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
1702         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
1703         puclic,
1704         * (various functions): added macros FENTRY and FENTRY2 to functions,
1705         to emit function prologue,
1706         * (various functions): fixed indentation,
1707         * (genNearPointerGet): fixed loading of FSR0,
1708         * (genPackBits): applied patch from Raphael Neider to fix updating
1709         of FSR0 and touching only the modified bits,
1710         * src/pic16/genarith.c (various functions): added macros FENTRY to
1711         emit function prologue in comments,
1712         * src/pic16/pcode.h: added functions debugf2, debugf3,
1713         * src/pic16/ralloc.c: partial fix for packForPush caused
1714         segmentation fault,
1715
1716 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1717
1718         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
1719           <stsp AT users.sourceforge.net> with reversed byte order
1720         * support/regression/tests/rotate.c: added (ds390 skips some tests)
1721
1722 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1723
1724         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
1725           bug #1074377
1726         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
1727         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
1728
1729 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
1730
1731         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
1732
1733 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1734
1735         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
1736           conditions,
1737           (setFromConditionArgs): friendly operand parser for peephole rules,
1738           (operandBaseName, operandsNotRelated): new peephole condition
1739           "operandsNotRelated" -- similar to "operandsNotSame", but takes
1740           architecture specific register naming into account, handles n-way
1741           comparisons, and supports quoted literals
1742         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
1743
1744 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1745
1746         * src/mcs51/peeph.def: fixed bug #1076940
1747
1748 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
1749
1750         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
1751
1752 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1753
1754         Adding support for replacing ljmps with sjmps in jumptables
1755         generated for switch statements. For now you need to set the
1756         environment variable SDCC_SJMP_JUMPTABLE to enable this.
1757         Now 4 algorithms for mcs51 jumptable generation are used:
1758         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
1759         addresses loaded pc-relative for up to 112 cases and stack-pushing
1760         target addresses loaded with offset from dptr for up to 256 cases.
1761
1762         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
1763         * src/mcs51/main.c: adapted constants for switch table generation
1764         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
1765
1766 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
1767
1768         * device/lib/printf_large.c (_print_format): fixed bug 1073386
1769         * support/regression/tests/bug1057979.c: added test for bug 1073386
1770
1771 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
1772
1773         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
1774         compilers
1775
1776 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
1777
1778         * src/pic16/device.h,
1779         * src/pic16/genarith.c,
1780         * src/pic16/glue.c,
1781         * src/pic16/main.c,
1782         * src/pic16/pcode.c: applied patches #1068154 and #1070213
1783
1784 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
1785
1786         Large cummulative patch for pic16 port.
1787         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
1788         to call when a stack overflow occurs,
1789         * (malloc.h): added CVS Id tag,
1790         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
1791         variable,
1792         * added libc directory. The current version of LibC contains string
1793         functions, ctype functions and macros and some functions of the
1794         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
1795         be extensively tested in the future. Standard disclaimer here.
1796         Library is not automatically build yet. But one can build it by
1797         invoking 'make' inside the libc directory.
1798         * added ADC library under libio. Preliminary version yet.
1799
1800         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
1801         * src/pic16/gen.c (aopForRemat): asmop size is filled by
1802         aopForRemat() now and not by pic16_aopOp(),
1803         * (pic16_popGetTempReg): removed warning messgae when allocating
1804         temporary registers, its a buggy feature and will be removed,
1805         * (pic16_popGet): set register instance field in AOP_CRY,
1806         * (pic16_outBitC): fixed for results in size greater than 1,
1807         * (genUminusFloat): fixed for pic16, ported code from mcs51,
1808         * (pic16_storeForReturn): optimized return of 0,
1809         * (genCmp): experimental code for new genCmp which uses PIC18's
1810         special compare&skip instructions. Initial tests fail some times
1811         with variables grater than 1 byte in size, so new code is disabled,
1812         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
1813         a single bit,
1814         * (genCast): began a fix to optimize the casting of a bit to another
1815         bit, now assigning a bitfield to another bitfield will fail, sorry,
1816         * src/pic16/main.c: disabled the use of lr-support feature,
1817         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
1818         * added some function prototypes, added function _debugf prototype,
1819         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
1820         bits with offset (case PO_GPR_BIT),
1821         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
1822         command line,
1823         * (isBankInstruction): modified to return 0 for no banking instruction,
1824         and 1 for banking instruction,
1825         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
1826         caused stop processing pCodes after a inline assembly block,
1827         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
1828         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
1829         registers when it shouldn't,
1830         * src/pic16/ralloc.c (allocReg): add preliminary support for
1831         supporting a limited set of temporary registers,
1832
1833 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1834
1835         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
1836           genDataPointerSet): ensure assignments always copy in MSB to LSB
1837           order,
1838           (loadRegFromAop): recognize CLRH optimization,
1839           (genFunction): optimize RECEIVE iCodes in reentrant functions
1840
1841 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1842
1843         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
1844           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
1845           selected.
1846         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
1847         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
1848           contiguous with data
1849
1850 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1851
1852         * device/lib/_gptrget.c (_gptrget),
1853         * device/lib/_gptrgetc.c (_gptrgetc),
1854         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
1855           instead of sjmp to ret
1856         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
1857           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
1858
1859 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
1860
1861         * .version: bumped version to 2.4.7
1862         * device/lib/_gptrget.c (_gptrget): is now _naked
1863         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
1864         * device/lib/_gptrput.c (_gptrput): is now _naked
1865         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
1866           (createFunction): fixed xstack
1867         * src/SDCCglue.c (emitMaps): set allocation required for bit area
1868         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
1869           or bit either,
1870           (geniCodeCritical): store original interrupt state in an iTemp bit
1871           var unless stack-auto
1872         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
1873         * src/SDCCmain.c (setIncludePath): added include/target to search path
1874         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
1875         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
1876           prototype,
1877           (processFuncArgs): put bit vars in bit area
1878         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
1879           unsaveRBank): fixed xstack,
1880           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
1881           (genFunction, genEndFunction): fixed xstack,
1882           (genAssign): optimization don't walk backwards through mem
1883         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
1884         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
1885         * support/regression/Makefile: also make library (for stack-auto) when
1886           making "all" and added "test-mcs51-xstack-auto"
1887         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
1888         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
1889         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
1890         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
1891         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
1892           make-library by MAKE_LIBRARY
1893         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
1894           regression tests for xstack
1895         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
1896         * support/regression/tests/critical.c: test for critical on mcs51
1897
1898 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1899
1900         * support/regression/ports/ucz80/spec.mk: use include and lib files from
1901           built version of sdcc instead of installed version
1902
1903 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
1904
1905         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
1906         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
1907           vprintf.c now
1908         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
1909         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
1910           WARNING: remove device/lib/build/z80/printf.o by hand when
1911           updating from previous build!
1912         * device/lib/z80/printf.c: updated comment
1913         * support/regression/tests/bug1057979.c: test all ports now
1914         * support/regression/tests/bug1065458.c: file added
1915
1916 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1917
1918         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
1919           *_start and *_end symbols for static functions
1920
1921 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
1922
1923         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
1924           and search crt0.o in all library paths,
1925           (setIncludePath): proper handling of --nostdinc,
1926           (setLibPath): proper handling of --nostdlib
1927         * support/regression/Makefile,
1928         * support/regression/ports/ds390/spec.mk,
1929         * support/regression/ports/gbz80/spec.mk,
1930         * support/regression/ports/hc08/spec.mk,
1931         * support/regression/ports/mcs51/spec.mk,
1932         * support/regression/ports/mcs51-large/spec.mk,
1933         * support/regression/ports/mcs51-stack-auto/spec.mk,
1934         * support/regression/ports/z80/spec.mk: use include and lib files from
1935           built version of sdcc instead of installed version
1936         * doc/sdccman.lyx: fixed typo in --nostdinc
1937
1938 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
1939
1940         * src/pic/pcode.c,
1941         * src/pic/device.c,
1942         * src/pic/ralloc.c,
1943         * src/pic/gen.c : added support to generate code for struct bit fields.
1944
1945 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
1946
1947         * as/xa51/xa_version.h,
1948         * device/include/errno.h,
1949         * device/include/regc515c.h,
1950         * device/lib/_itoa.c,
1951         * device/lib/_ltoa.c,
1952         * device/lib/ser_ir_cts_rts.c,
1953         * sim/ucsim/xa.src/glob.cc,
1954         * sim/ucsim/xa.src/inst_gen.cc,
1955         * sim/ucsim/xa.src/xa_bit.cc,
1956         * sim/ucsim/xa.src/xa_sfr.cc,
1957         * sim/ucsim/z80.src/inst_dd.cc,
1958         * sim/ucsim/z80.src/inst_fdcb.cc,
1959         * support/scripts/keil2sdcc.pl,
1960         * src/pic16/pic16.dsp,
1961         * src/pic16/pic16a.dsp: corrected cvs line endings
1962         * device/lib/printf_large.c: fixed bug 1057979
1963         * src/pic16/gen.c: fixed non-C standard code
1964         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
1965         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
1966         * support/regression/ports/mcs51/support.c: reload T1 asap
1967         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
1968           pdata use and clear idata startup behaviour
1969         * support/regression/tests/bug1057979.c: added
1970
1971 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
1972
1973         * device/examples/ds390/ow390/ad26.h,
1974         * device/examples/ds390/ow390/cnt1d.h,
1975         * device/examples/ds390/ow390/crcutil.c,
1976         * device/examples/ds390/ow390/ownet.h,
1977         * device/examples/ds390/ow390/owsesu.c,
1978         * device/examples/ds390/ow390/swt12.h,
1979         * device/examples/ds390/ow390/swtoper.c,
1980         * device/examples/ds390/ow390/temp10.h,
1981         * device/examples/ds390/ow390/thermodl.c,
1982         * device/examples/ds390/tinitalk/tinitalk.dsp,
1983         * device/examples/ds390/tinitalk/tinitalk.dsw,
1984         * device/examples/mcs51/clock/hw.h,
1985         * device/examples/mcs51/simple2/go.bat,
1986         * device/examples/serialcomm/windows/serial.h,
1987         * device/examples/xa51/dummy.c,
1988         * device/examples/xa51/hello.c,
1989         * device/include/80c51xa.h,
1990         * device/include/at89x051.h: corrected cvs line endings
1991
1992 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
1993
1994         * src/pic16/main.c (options): added command line --gstack, to trace
1995         stack over/under flows,
1996         * added pragma 'wparam' to allow passing first byte of function
1997         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
1998         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
1999         call to __gstack_test function and sets up the symbol as extern,
2000         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
2001         * popaop): added call to pic16_testStackOverflow,
2002         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
2003         wparamList list,
2004         * (genCall, genPcall): now all parameters are passed via stack
2005         except in functions that are pass to wparam pragma in which WREG is
2006         used too,
2007         * (genPcall): REENTRANT flag is checked to see if variable prototype
2008         contains reentrant keyword, don't call a non-reentrant function, via
2009         a reentrant function pointer or vice versa, functions are never
2010         passed via WREG,
2011         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
2012         D.Winkler,
2013         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
2014         SIGSEGV when accessing a NULL register stucture,
2015         * (pic16_printGPointerType): modified to handle UPPER modifier for
2016         function initializers, changed prototype of function to simpler one,
2017         * (pic16_printIvalFuncPtr): check to see if function is already
2018         added in externs list,
2019         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
2020         optimized a move from W to SFR with a move to the same register
2021         later after a CALL,
2022         * device/lib/pic16/debug: NEW directory, contains debug features
2023         which are enabled when linking with libdebug.lib, currently command
2024         line option --gstack enables stack pointer tracing for over/under
2025         flow, corresponding sources are in debug/gstack
2026
2027 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
2028
2029         * doc/sdccman.lyx: updated SDCC version,
2030         * (PIC16 port): update list of command line options,
2031         * src/pic16/device.h (structure pic16_options_t): added field gstack
2032         to enable stack overflow tracing on push/pops,
2033         * src/pic16/device.c (statistics structure): added statistics
2034         structure,
2035         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
2036         pic16_dump_int_registers): increase statistics counters for each
2037         * variable which is encountered
2038         * (pic16_dump_usection): emit each .udata variable to its own udata
2039         section,
2040         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
2041         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
2042         parameters via stack, otherwise use old scheme,
2043         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
2044         assembler output file,
2045         * src/pic16/main.c: added command line options --gstack to enable
2046         push/pop tracing for stack overflow,
2047         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
2048         instructions): added size of each instruction,
2049         * (pic16_countInstruction): estimate size of instructions in
2050         the_pFile list, inline assembly blocks are not counted,
2051         * (pic16_FixRegisterBanking): trace previous register usage, when
2052         banksel optimizations is greater than 0, don't emit a redudant
2053         banksel directive,
2054
2055 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
2056
2057         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
2058         * src/pic16/ralloc.c : applied same fix for pic16.
2059         * src/pic/gen.c : tidied it up a little.
2060
2061 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2062
2063         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
2064         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
2065
2066 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2067
2068         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
2069
2070 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2071
2072         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
2073         non-reentrant function __modsint in the interrupt function (thus
2074         corrupting math operations during serial I/O)
2075         * device/lib/ser_ir.c: as above, changed buffersize
2076         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
2077         256.c,d for zeroing
2078         * doc/Makefile: added option -t for rsync
2079
2080 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2081
2082         * src/SDCCast.h (struct ast),
2083         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
2084
2085 2004-10-20 Borut Razem <borut.razem AT siol.net>
2086
2087         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
2088         package
2089
2090 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
2091
2092         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
2093         makefile targets,
2094         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
2095         support functions to replace long sequences of MOVFF's from access
2096         bank registers to stack and vice versa,
2097         * src/pic16/device.h: added new field opt_flags, where optimization
2098         flags can be set to enable certain features,
2099         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
2100         * pBlock, (genFunction, genEndFunction): surroung loop for
2101         saving/loading used registers in stack with PC_INFO pCodes,
2102         INF_LREGS. Code in between can then be optimized by pCode optimizer
2103         to support function calls,
2104         * (genDataPointerSet): fixed bug which loaded float fields in
2105         structures with corrupt data,
2106         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
2107         in a standard way debug info on stderr. Feature used for developing
2108         and debugging only,
2109         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
2110         obsolete chunks of code,
2111         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
2112         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
2113         * pic16/src/pcode.c (pic16_newpCodeInfo,
2114         * (pic16_newpCodeOpLocalRegs),
2115         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
2116         feature,
2117         * (pic16_pCodeConstString): printing of the initial value of a
2118         symbol as a comment is inhibited since parsing was already done by
2119         copyStr and output is corrupt,
2120         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
2121
2122 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2123
2124         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
2125
2126 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
2127
2128         * as/mcs51/lkarea.c: removed old K&R style,
2129           (lnksect): changed check on boundary error,
2130           (lnksect2): changed check on boundary error,
2131           (lnksect2): extend XSTK to end of page if size = 1
2132         * as/mcs51/lkmain.c: removed old K&R style,
2133           (Areas51): create l_IRAM symbol
2134         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
2135         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
2136           model-mcs51-stack-auto, added model-mcs51-xstack-auto
2137         * device/lib/_mullong.c: added version to be compiled with xstack
2138         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
2139         * device/lib/mcs51/crtxclear.asm: clear pdata as well
2140         * device/lib/mcs51/crtxstack.asm: fixed comment
2141         * src/SDCCglue.c: maxInterrupts defaults to 0,
2142           (emitMaps): added pdata,
2143           (createInterruptVect): (re)moved default,
2144           (glue): added pdata,
2145           (glue): moved __start__xstack to XSTK with default size 1
2146         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
2147           and options.float_rent when options.stackAuto is set,
2148           (linkEdit): only write XDATA_NAME if provided on command line
2149         * src/SDCCmem.h,
2150         * src/SDCCmem.c: added pdata
2151         * src/port.h: added pdata_name to PORT
2152         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
2153           (saveRegisters, unsaveRegisters): removed usage of B,
2154           (genMinus): fixed accumulator clash,
2155           (genJumpTab): added comment, this needs another look
2156         * src/mcs51/gen.c: added check for "B in use" paranoia,
2157           added pushB() and popB()
2158         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
2159           chance
2160         * src/avr/main.c,
2161         * src/ds390/main.c,
2162         * src/hc08/main.c,
2163         * src/mcs51/main.c,
2164         * src/pic/main.c,
2165         * src/pic16/main.c,
2166         * src/xa51/main.c,
2167         * src/z80/main.c: (reset_regparms) made void parameter explicit and
2168           added PSEG (PAG,XDATA) or NULL to port specifier
2169         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
2170         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
2171           (_mcs51_genInitStartup): removed __start__xstack equ,
2172           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
2173         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
2174         * src/z80/gen.c (_rleAppend): fixed warnings
2175         * support/regression/tests/zeropad.c: added pdata test
2176         * .version: bumped to 2.4.6
2177
2178 2004-10-17 Borut Razem <borut.razem AT siol.net>
2179
2180         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
2181         as a part of nightly build
2182
2183 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
2184
2185         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
2186         WREG holds the first byte function parameters,
2187         * (aopForSym): take special case for symbols which are in FARSPACE
2188         but in CODESPACE too,
2189         * (assignResultValue): modified to take into account _G.useWreg,
2190         * (genCall): don't use wreg for parameter passing when function is
2191         declared as reentrant, too, added optimization INCF to stack
2192         pointer when stack parameter count is 1,
2193         * (genFunction, genEndFunction): refurnished and fixed to not using
2194         wreg for passing parameters when function has varargs or is
2195         reentrant, fixed bug with symbol name compare for generating
2196         functions in absolute address,
2197         * (pic16_storeForReturn): refurnished,
2198         * (genCmp): began writing a new version of the function, not ready
2199         yet, therefore it is disabled,
2200         * (genAssign): do not read code memory when assigning a function to
2201         a pointer function,
2202         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
2203         array of characters, not pointer,
2204         * (pic16initialComments): in debug mode emit an .ident directive for
2205         the assembler,
2206         * (_process_pragma): emit a new warning type (internal to pic16)
2207         when setting stack to default length, emit a similar warning when
2208         placing a function at absolute address and address is not word aligned
2209         * (_pic16_parseOptions): added 'return TRUE' statement,
2210         * (_pic16_linkEdit): if compiling a source, then add the source's
2211         file object, first in the list of objects to link,
2212
2213 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
2214
2215         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
2216         * src/pic/main.c : removed VC warning.
2217         * src/pic/gen.c : changed comment.
2218
2219 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
2220
2221         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
2222         reference to a deprecated symbol _GPTRREG was causing failure to
2223         link. Thanks G. M. Gallant for the info.
2224
2225 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
2226
2227         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
2228         comments for Bugs item #954788.
2229
2230 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
2231
2232         * src/pic16/device.c (pic16_dump_gsection,
2233         * pic16_groupRegistersInSection): handle symbols declared to be in
2234         access bank differently,
2235         * src/pic16/gen.c (struct _G): added field resDirect,
2236         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
2237         send values read from stack directly to result and don't allocate
2238         temporary values,
2239         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
2240         same registers,
2241         * (pic16_sameRegsOfs): NEW,
2242         * (freeAsmop): if _G.resDirect is set then do not mark registers as
2243         free because they were not allocated from temporary pool,
2244         * pic16_popRegFromString): workaround to fix a problem with
2245         allocating variables twice or never,
2246         * (genGenPointerGet): using PRODL instead of FSR0H,
2247         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
2248         instead of FSR0H,
2249         * (genAssign): take advantage of the _G.resDirect flag,
2250         * (genCast): around line 11844, use mov2f instead of directly
2251         MOVFF'ing between operands to account for literal values,
2252         * src/pic16/genutils.c: some new debug functions for gpsim have been
2253         added,
2254         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
2255         float with integer part only,
2256         * src/pic16/main.c (_process_pragma): handle pragma udata access to
2257         place variables in access bank
2258         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
2259         updated sources to reflect recent changes in gen.c
2260
2261 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
2262
2263         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
2264         sources that searched for headers in installation path, now the
2265         device/include/pic16 is used,
2266         * src/pic16/glue.c (pic16glue),
2267         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
2268         .line directives if not in debug mode, this suppresses assembler's
2269         warnings for ignored directives
2270
2271 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
2272
2273         * src/port.h: made reset_regparms prototype void parameter explicit.
2274         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
2275         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
2276         * doc/sdccman.lyx: documented warning disabling and how to use
2277           printf_large to make it print floats.
2278         * device/include/stdbool.h: NEW
2279         * device/lib/_atof.c,
2280         * device/lib/_divuint.c,
2281         * device/lib/_divulong.c,
2282         * device/lib/expf.c,
2283         * device/lib/printf_large.c,
2284         * device/lib/sincosf.c,
2285         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
2286         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
2287           a completely reentrant lib.
2288
2289 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
2290
2291         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
2292         * device/include/pic16/stdio.h: fixed bug with colon
2293
2294 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
2295
2296         * device/include/pic16/stdio.h,
2297         * device/include/pic16/stdlib.h,
2298         * device/include/pic16/math.h: NEW
2299         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
2300         declared as _naked to reduce overhead
2301         * device/lib/Makefile.in (target port-specific-objects-pic16):
2302         changed * to *.* so to ignore the CVS directory,
2303         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
2304         stacked variables back in stack,
2305         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
2306         corruption
2307
2308 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
2309
2310         * .version: bumped version number to 2.4.5
2311         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
2312         * support/Util/SDCCerr.c (messages structure): added entry for
2313         W_POSSBUG2
2314
2315         Large cumulative patch for pic16 port and libraries.
2316         * device/include/pic16/sdcc-lib.h,
2317         * device/include/pic16/stdarg.h,
2318         * device/include/asm/pic16/features.h,
2319         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
2320         * device/include/pic16/float.h: changes reentrant keyword with
2321         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
2322         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
2323         updated target build-libraries to include objects from gptr,
2324         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
2325         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
2326         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
2327         all function headings,
2328         * src/SDCCmain.c: added global parameter userIncDirsSet,
2329         * (parseCmdLine): when option -I is encountered add directory to
2330         userIncDirsSet too,
2331         * src/version.awk: added space between control and long,
2332         * src/pic16/NOTES: added some notes for the port,
2333         * src/pic16/gen.c: added prototype for mov2fp function,
2334         * (fReturnpic16[]): properly named return value registers,
2335         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
2336         * (aopForSym): added code to handle symbols with onStack flag set,
2337         symbols onStack are allocated PTRSIZE bytes,
2338         * (aopFreeAsmop): handles special case where asmops are stack objects,
2339         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
2340         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
2341         added argument lock to trace flaws in allocating temporary registers
2342         when developing port,
2343         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
2344         * (pic16_popRegFromString): reenabled allocating a direct register
2345         from string,
2346         * (assignResultValue): various beautifications,
2347         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
2348         referenced function argument,
2349         * (genIpush): reenabled to allow stacked arguments, handles only
2350         ic->parmPush iCodes,
2351         * (genCall, genPcall): major changes to allow for variable argument
2352         functions, fixed a bug with falsely restoring stack pointer after
2353         returning from call,
2354         * (genFunction): pending code for critical function,
2355         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
2356         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
2357         * (genNearPointerGet): fixed bug with indirect reading, was always
2358         reading from INDF0
2359         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
2360         pointers,
2361         * (genAddrOf): rewrote code to take address of a stacked function parameter
2362         * (genCast): fixed casting to generic pointer type,
2363         * src/pic16/gen.h: added AOP_STA,
2364         * (struct asmop): added field stk,
2365         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
2366         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
2367         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
2368         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
2369         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
2370         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
2371         generic pointers,
2372         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
2373         and library paths,
2374         * (pic16_port structure): generic pointer size is set to 3,
2375         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
2376         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
2377         compiler warning,
2378         * src/pic16/ralloc.c (allocReg): prevent allocating register when
2379         operand is an iTemp,
2380
2381 2004-09-24 Martin Helmling <mh AT octo-soft.de>
2382
2383         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
2384         * debugger/mcs51/simi.c: addapt new syntax of s51
2385
2386 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
2387
2388         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
2389         * src/pic16/pcode.c: commented out some calls to free() in order to
2390         fix bug #989576,
2391
2392 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2393
2394         * src/SDCCicode.h,
2395         * src/SDCCicode.c (isiCodeInFunctionCall),
2396         * src/avr/ralloc.c (selectSpil),
2397         * src/pic/ralloc.c (selectSpil),
2398         * src/pic16/ralloc.c (selectSpil),
2399         * src/ds390/ralloc.c (selectSpil),
2400         * src/hc08/ralloc.c (selectSpil),
2401         * src/xa51/ralloc.c (selectSpil),
2402         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
2403         stack in the middle of a function call sequence (fixes bug #1020268)
2404         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
2405         costs associated with the minimum switch case.
2406
2407 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2408
2409         * src/SDCC.lex: fixed bug #1030549
2410
2411 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2412
2413         * src/SDCCcse.h (struct cseDef),
2414         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
2415         over a function call if the CSE is derived from a symbol whose
2416         address has been taken (fixes bug #1029883)
2417         * support/regression/tests/bug-1029883: a new regression test for
2418         this bug
2419
2420 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2421
2422         * src/hc08/gen.c (emitinline): fixed bug #1029778
2423         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
2424         to a cast object is no longer a syntax error ("fixes" bug #1030006,
2425         and starts toward RFE #905167)
2426
2427 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
2428
2429         * src/pic16/gen.c (mov2f): New function to move an operand to
2430         another without considering if it is a literal or a register,
2431         * (pic16_sameRegs): don't check if they are both AOP_REG,
2432         * (AccRsh): removed andmask=0 lines,
2433         * (genLeftShift): duplicated to be improved in future versions,
2434         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
2435         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
2436         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
2437         * (pic16initMnemonics): added initialization for POC_INFSNZW,
2438         * (insertBankSwitch): fixed inserting banksel directives algorithm
2439         for instructions that follow a skip instruction, this fixes a report
2440         for broken subtraction code generation,
2441         * src/pic16/ralloc.c (deassignLRs): do not free register if current
2442         iCode is a left op, just in case result and right share the same
2443         registers
2444
2445 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2446
2447         * src/hc08/main.c,
2448         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
2449         preservation of HX
2450         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
2451         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
2452         on 2004-09-12; it was buggy
2453
2454 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
2455
2456         * src/SDCCsymt.h: removed RESULT_CHECK
2457         * src/SDCCast.c,
2458         * src/SDCCglue.c,
2459         * src/SDCCval.c,
2460         * src/pic/glue.c,
2461         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
2462
2463 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
2464
2465         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
2466         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
2467         configuration values no more rejected by compiler, they are assigned
2468         to configuration registers with a warning message instead,
2469         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
2470         the for-loop so last conf register is emitted too,
2471         * (_pic16_initPaths): link library libsdcc.lib by default,
2472         * (_hasNativeMulFor): modified test for multiplication according to
2473         Raphael Neider's remarks. Integer multiplication is also done with
2474         support functions,
2475         * device/include/pic16/pic18fregs.h: corrected type error in while
2476         testing and including 18f6720 header file
2477
2478 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
2479
2480         * src/pic16/device.h (pic16_options): removed field use_crt,
2481         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
2482         until an optimization to handle single bits is added,
2483         * (pic16_loadFSR0): moved before genUnpackBits,
2484         * (genAnd): some white lines removed,
2485         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
2486         leave_reset flags in pic16_options when using crt modules,
2487
2488 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
2489
2490         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
2491           for bugs 898889 & 979599. Also used some safer print instructions.
2492
2493 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
2494
2495         * src/pic16/device.h (pic16_options_t): added field use_crt,
2496         crt_name, no_crt,
2497         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
2498         catch a probable future bug,
2499         * src/pic16/gen.c: aopIdx function commented out,
2500         * (genAssign): commented out old code which used aopIdx,
2501         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
2502         code, added if conditionals to take into account the --use-crt
2503         command line options,
2504         * src/pic16/main.c (pic16_optionsTable): added new command line
2505         options, --use-crt= and --no-crt,
2506         * (_pic16_linkEdit): now the proper crt object is added in the
2507         linker command line except than when --no-crt is specified,
2508         * src/pic16/pcode.c,
2509         * src/pic16/pcode.h: added some structures and functions for a new
2510         optimization scheme to compansate for instruction overhead between
2511         same iCodes, this scheme is currently under development and is not
2512         working in any way,
2513         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
2514         to && operator,
2515         * device/lib/pic16/startup/crt0i.c,
2516         * device/lib/pic16/startup/crt0iz.c: added global char variable
2517         __uflags to force the generation of an idata section
2518
2519 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
2520
2521         * doc/Makefile,
2522         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
2523         * doc/sdccman.lyx: updated sdcc version to 2.4.4
2524
2525 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2526
2527         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
2528         Frieder) and clarified the default code optimization mode
2529
2530 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2531
2532         * src/SDCC.lex (doPragma, process_pragma),
2533         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
2534         "opt_code_size", and "opt_code_balanced"
2535         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
2536         regrouped options by category, added support for category headers
2537         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
2538         and "--opt-code-size"
2539         * doc/sdccman.lyx: documented these new options and pragmas
2540         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
2541         preference into account
2542
2543 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2544
2545         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
2546           geniCodePreDec): Fixed bug 904237 by generating a warning
2547         * src/SDCCerr.h,
2548         * src/SDCCerr.c: added warning W_SIZEOF_VOID
2549
2550 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
2551
2552         * src/pic/device.c : When no max ram set validate full memory range.
2553         * src/pic/pcode.c,
2554         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
2555
2556 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2557
2558         * device/lib/_gptrget.c,
2559         * device/lib/_gptrput.c: updated comment
2560         * device/lib/calloc.c,
2561         * device/lib/free.c,
2562         * device/lib/malloc.c,
2563         * device/lib/realloc.c: added LGPL, made them reentrant-safe
2564         * src/SDCCcse.c (cseBBlock),
2565         * src/SDCCicode.c (printOperand, geniCodeArray),
2566         * src/SDCCicode.h (struct operand): fixed bug 868103
2567         * support/regression/tests/bug-868103.c: added
2568         * src/SDCCast.c (searchLitOp),
2569         * src/SDCCcse.h (struct cseDef),
2570         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
2571         * src/SDCCicode.h (struct operand),
2572         * src/SDCCsymt.h (struct sym_link),
2573         * src/avr/gen.c (hasInc),
2574         * src/ds390/gen.c (hasInc),
2575         * src/hc08/gen.c (genPlusIncr, hasInc),
2576         * src/mcs51/gen.c (hasInc),
2577         * src/pic16/glue.c (pic16_printIvalChar),
2578         * src/pic16/ralloc.c (regWithIdx),
2579         * src/xa51/gen.c (hasInc) : removed warnings
2580         * src/SDCCast.c (createBlock): added comment ???
2581         * src/hc08/ralloc.c: updated comments
2582
2583 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2584
2585         * doc/sdccman.lyx: updated section on switch statements, added
2586         section about semaphore locking
2587         * doc/Makefile: added option -info for latex2html
2588         * device/lib/_gptrget.c,
2589         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
2590
2591 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
2592
2593         * src/pic/device.h,
2594         * src/pic/device.c,
2595         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
2596          maxram is less than 0x100.
2597
2598 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
2599
2600         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
2601
2602 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2603
2604         * src/port.h,
2605         * src/mcs51/main.c,
2606         * src/ds390/main.c,
2607         * src/z80/main.c,
2608         * src/hc08/main.c,
2609         * src/pic/main.c,
2610         * src/pic16/main.c,
2611         * src/avr/main.c,
2612         * src/xa51/main.c
2613         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
2614         a jump table is the best form for a switch statement, including
2615         automatic insertion of missing cases to make the case range
2616         continuous. Developed in collaboration with Frieder Ferlemann.
2617
2618 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2619
2620         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
2621         accumulator result if it needs sign extension
2622
2623 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2624
2625         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
2626
2627 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2628
2629         * device/lib/gbz80/printf.c,
2630         * device/lib/z80/printf.c: removed define for NULL
2631
2632 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2633
2634         * as/xa51/xa_link.c,
2635         * device/examples/ds390/ow390/ad26.c,
2636         * device/examples/ds390/ow390/cnt1d.c,
2637         * device/examples/ds390/ow390/counter.c,
2638         * device/examples/ds390/ow390/ds2480.h,
2639         * device/examples/ds390/ow390/ds2480ut.c,
2640         * device/examples/ds390/ow390/findtype.c,
2641         * device/examples/ds390/ow390/gethumd.c,
2642         * device/examples/ds390/ow390/owllu.c,
2643         * device/examples/ds390/ow390/ownetu.c,
2644         * device/examples/ds390/ow390/swt12.c,
2645         * device/examples/ds390/ow390/swtloop.c,
2646         * device/examples/ds390/ow390/temp.c,
2647         * device/examples/ds390/ow390/temp10.c,
2648         * device/examples/ds390/ow390/thermo21.c,
2649         * device/examples/ds390/ow390/tinilnk.c,
2650         * device/examples/ds390/ow390/tstfind.c,
2651         * device/examples/serialcomm/windows/serial.cpp,
2652         * device/examples/serialcomm/windows/test_serialcomm.cpp,
2653         * device/include/reg51.h: fixed line endings for cvs
2654
2655 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2656
2657         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
2658         packRegsForAccUse, packRegisters): new accumulator register
2659         packing algorithm
2660         * support/regression/ports/hc08/support.c (_putchar): suppress
2661         warning of unused variable
2662         * src/SDCCicode.c: added SWAP entry to codeTable
2663
2664 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
2665
2666         * device/lib/sprintf.c: forgot to add this file before previous commit
2667
2668 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
2669
2670         * src/pic16/gen.c (genPackBits): added operand right in function
2671         parameters, load result directly if p_type is POINTER (that is
2672         called by genNearPointerSet)
2673         * (genUnPackBits): added operand left in function parameters,
2674         * (genNearPointerGet, genNearPointerSet): prevent the loading of
2675         FSR0 if accessing bitfields,
2676
2677 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
2678
2679         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
2680           _print_format; updated printf, sprintf, vsprintf
2681         * device/include/asm/default/features.h: corrected comment/define
2682         * device/lib/Makefile.in: added sprintf.c
2683         * device/lib/libsdcc.lib: added sprintf module
2684         * device/lib/printf_large.c,
2685         * device/lib/vprintf.c,
2686         * device/lib/sprintf.c: totally refactored printf_large and vprintf
2687           into these 3 files
2688         * support/regression/Makefile: changed ALL_PORTS into a usefull default
2689         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
2690         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
2691           hc08 test
2692         * support/regression/tests/zeropad.c: define idata as data for hc08
2693
2694 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2695
2696         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
2697         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
2698         labels are referenced at least once (even if a reference is not found)
2699         * src/hc08/gen.c (emitcode): set isComment flag for comments
2700         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
2701         loads), rules 6a..6b (optimize jumps to return)
2702
2703 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2704
2705         * device/lib/acosf.c (acosf),
2706         * device/lib/asinf.c (asinf),
2707         * device/lib/atanf.c (atanf),
2708         * device/lib/ceilf.c (ceilf),
2709         * device/lib/cosf.c (cosf),
2710         * device/lib/coshf.c (coshf),
2711         * device/lib/cotf.c (cotf),
2712         * device/lib/fabsf.c (fabsf),
2713         * device/lib/floorf.c (floorf),
2714         * device/lib/log10f.c (log10f),
2715         * device/lib/logf.c (logf),
2716         * device/lib/sinf.c (sinf),
2717         * device/lib/sinhf.c (sinhf),
2718         * device/lib/sqrtf.c (sqrtf),
2719         * device/lib/tanf.c (tanf),
2720         * device/lib/tanhf.c (tanhf),
2721         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
2722         replaced all instances of "reentrant" in the library functions
2723         defined in math.h with this macro.
2724         * support/regression/tests/float_trans.c: reenabled test for hc08
2725
2726 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
2727
2728         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
2729         erroneously deleted
2730
2731 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2732
2733         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
2734         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
2735         multi-byte volatile operands are used
2736         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
2737         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
2738         initialization to area GSINIT0 so that it would always precede
2739         any static initializers in GSINIT
2740         * support/regression/tests/zeropad.c: fixed idata define for hc08
2741         * support/regression/tests/bug-927659.c,
2742         * support/regression/tests/float_trans.c: disabled tests for hc08
2743         pending missing library routines
2744         * .version: increased version number to 2.4.4 - hc08 port now passes
2745         regression tests
2746
2747
2748 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
2749
2750         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
2751         * Makefile.common.in,
2752         * as/Makefile,
2753         * as/hc08/Makefile.in,
2754         * as/mcs51/Makefile.in,
2755         * as/z80/Makefile.in,
2756         * debugger/mcs51/Makefile.in,
2757         * device/include/Makefile.in,
2758         * device/lib/Makefile.in,
2759         * doc/Makefile,
2760         * link/Makefile,
2761         * link/z80/Makefile.in,
2762         * packihx/Makefile.in,
2763         * sim/ucsim/main_in.mk,
2764         * sim/ucsim/avr.src/Makefile.in,
2765         * sim/ucsim/doc/Makefile.in,
2766         * sim/ucsim/gui.src/serio.src/Makefile.in,
2767         * sim/ucsim/hc08.src/Makefile.in,
2768         * sim/ucsim/s51.src/Makefile.in,
2769         * sim/ucsim/xa.src/Makefile.in,
2770         * sim/ucsim/z80.src/Makefile.in,
2771         * src/Makefile.in,
2772         * support/cpp2/Makefile.in,
2773         * support/librarian/Makefile,
2774         * support/makebin/Makefile: added DESTDIR to the install path proposed
2775         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
2776         * doc/sdccman.lyx: added DESTDIR documentation
2777
2778 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
2779
2780         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
2781         instruction for interrupt handlers, use fast returns when returning
2782         from high priority interrupts
2783
2784 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2785
2786         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
2787         code generation
2788         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
2789         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
2790         bugs, ported much of Bernhard's code from mcs51
2791         * src/mcs51/gen.c (genSend),
2792         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
2793         than one when calling a reentrant function
2794         * device/lib/_mullong.c: defined an alternate struct layout for big
2795         endian ports (hc08)
2796
2797 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2798
2799         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
2800         test
2801
2802 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2803
2804         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
2805         are sane and complete before asking the port its prefered parameter
2806         passing method (fixes bug #1017633)
2807         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
2808         and _ret3
2809
2810 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2811
2812         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
2813         problem in bitfields >= 8 bits.
2814
2815 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
2816
2817         * src/SDCCsymt.c: undid changes that were not meant to be committed
2818
2819 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
2820
2821         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
2822
2823 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
2824
2825         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
2826           copied and wrong bit got inverted
2827
2828 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2829
2830         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
2831         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
2832         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
2833         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
2834         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
2835         assignments to bitfields at known addresses
2836         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
2837         reads from bitfields at known addresses
2838         * src/hc08/ralloc.c (packRegisters),
2839         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
2840         genhc08Code): optimize pointer get values used as conditionals
2841         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
2842         and branch
2843
2844 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2845
2846         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
2847         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
2848         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
2849         as conditionals
2850
2851 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2852
2853         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
2854
2855 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2856
2857         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
2858         related problems
2859
2860 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
2861
2862         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
2863
2864 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2865
2866         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
2867         mcs51 port
2868
2869 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
2870
2871         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
2872
2873 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2874
2875         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
2876         cases use more compact code.
2877
2878 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
2879
2880         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
2881
2882 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2883
2884         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
2885
2886 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2887
2888         * src/SDCCsymt.h,
2889         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
2890         parameter of changePointer() from symbol* to sym_link*
2891         * src/SDCCast.c (decorateType): call changePointer() for CAST op
2892         * src/SDCCsymt.c (compareType): void* type is castable to other
2893         pointers, but not necesarily an exact match.
2894         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
2895         is no longer blindly treated as an exact match.
2896         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
2897
2898 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
2899
2900         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
2901
2902 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
2903
2904         * src/pic/gen.c,
2905         * src/pic/pcode.c,
2906         * src/pic/ralloc.h,
2907         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
2908
2909 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
2910
2911         * src/pic/device.c,
2912         * src/pic/device.h,
2913         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
2914
2915 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2916
2917         * src/mcs51/gen.c (emitcode): fixed bug #992819
2918
2919 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
2920
2921         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
2922           there's no need to make it worse
2923
2924 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2925
2926         * src/mcs51/ralloc.c (deassignLR),
2927         * src/ds390/ralloc.c (deassignLR),
2928         * src/hc08/ralloc.c (deassignLR),
2929         * src/z80/ralloc.c (deassignLR),
2930         * src/pic/ralloc.c (deassignLR),
2931         * src/pic16/ralloc.c (deassignLR),
2932         * src/avr/ralloc.c (deassignLR),
2933         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
2934         rlivePoint): fixed another part of bug #971834
2935
2936 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2937
2938         * src/z80/main.c: enabled "critical" keyword
2939         * src/z80/mappings.i,
2940         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
2941         functions (fixes bug #979646)
2942         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
2943
2944 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2945
2946         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
2947           such as c:\mydir.
2948
2949 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
2950
2951         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
2952           doesn't disable too much optimizations
2953
2954 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
2955
2956         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
2957
2958 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
2959
2960         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
2961
2962 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
2963
2964         * src/pic/gen.c tidied up tabs
2965         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
2966         * src/pic/main.c tidied up tabs
2967         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
2968         * src/pic/pcoderegs.c tidied up tabs
2969         * src/pic/ralloc.c tidied up tabs
2970
2971 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
2972
2973         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
2974         to S_FIXED for pic16 port and when symbol is not in level 0,
2975         allocate for S_REGISTER storage class and pic16 port, too,
2976         * src/pic16/device.h: prototype for checkSym,
2977         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
2978         * (pic16_assignConfigWordValue): test the value and the mask to
2979         validate that the value is suitable for the configuration word,
2980         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
2981         collect extern declared symbols, don't emit symbol twice, check
2982         first if symbol is in publics set first,
2983         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
2984         * added command line '--fstack' which enables an experimental
2985         feature for stack access, too buggy to be used yet...
2986         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
2987         * (pic16_allocDirReg): when register has storage class S_REGISTER
2988         allocate in pic16_dynAccessRegs,
2989         * device/include/pic16/pic18f????.h: modified configuration word
2990         naming convention, words started as CONFIG0H but should be CONFIG1H
2991
2992 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
2993
2994         * device/include/mcs51reg.h: fixed bug 970993
2995
2996 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
2997
2998         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
2999         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
3000         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
3001         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
3002         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
3003         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
3004           error/warning numbers,
3005           added function setWarningDisabled()
3006         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
3007         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
3008           _memcmp.c _memmove.c calloc.c realloc.c free.c
3009         * support/regression/tests/malloc.c: added tests for new functionality
3010         * support/regression/tests/zeropad.c: added tests for truncated initializers
3011           and initialized char arrays starting with '\x0'
3012         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
3013
3014 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
3015
3016         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
3017
3018 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3019
3020         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
3021         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
3022         peephole 177.e. Thanks to anonymous
3023
3024 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
3025
3026         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
3027         function isn't used in the source but referenced as a
3028         variable initializer then declare it as extern in .asm file
3029
3030 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
3031
3032         * .version: increased version number to 2.4.3
3033
3034         Adding version extension according to ChangeLog CVS revision
3035         * src/Makefile.in (target all): added dependency 'version.h'
3036         * (rule version.h): added rule to create version.h from ChangeLog,
3037         * (rule dep): added dependency version.h,
3038         * src/version.awk: AWK script to create version.h
3039         * src/SDCCdwarf2.c (dwWriteModule),
3040         * src/SDCCglue.c (initialComments),
3041         * src/SDCCmain.c (printVersionInfo): modified to write after
3042         version string the version extension number,
3043         * src/SDCCutil.c: included "version.h"
3044         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
3045         number,
3046         * src/SDCCutil.h: added prototype for getBuildNumber
3047
3048         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
3049         includeDirsSet, too,
3050         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
3051         const char [] is found in function prototype...
3052
3053         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
3054         moving to WREG with source is already in WREG,
3055         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
3056         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
3057         * (aopForSym): stack'ed symbols are partially supported, added
3058         if-clause to support symbols in FARSPACE,
3059         * (sameRegs): added test for AOP_ACC to see if registers are same,
3060         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
3061         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
3062         * (pic16_popRegFromString): will not allocate a new register if it
3063         doesn't find one by name, bug may have introduced...
3064         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
3065         * (genIpush): revived to use pic16 port's stack,
3066         * (genAddrOf): added incomplete case for stack'ed operand,
3067         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
3068         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
3069         can handle multibyte operands,
3070         * src/pic16/glue.c (pic16_printIval*): some debug info added,
3071         * (pic16initialComments): added message for MPLAB compatibility
3072         mode enabled,
3073         * src/pic16/main.h: prototype for pic16_mplab_comp,
3074         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
3075         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
3076         * (_pic16_linkEdit): NEW, handles link stage, transferred here
3077         because of increased complexity of procedure,
3078         * (_process_pragma): stack pragma changed to format 'stack pos len',
3079         emit symbol '_stack_end' to conform with gplink,
3080         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
3081         to search for register,
3082         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
3083         PO_GPR_REGISTER,
3084         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
3085         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
3086         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
3087         case for PO_GPR_REGISTER,
3088         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
3089         dies, the new era is ahead !...
3090         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
3091         pic16_dynInternalRegs,
3092         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
3093         * (pic16_allocDirReg): minor optimizations and bug fixes,
3094         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
3095
3096         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
3097         load stack and frame pointer with address of 'stack_end' symbol
3098
3099 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
3100
3101         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
3102         without source code but only variable initializers
3103
3104 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
3105
3106         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
3107         external are not declared as extern to reduce overhead while linking
3108
3109 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
3110
3111         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
3112
3113 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
3114
3115         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
3116           Yee Keat for the patch
3117         * src/SDCCast.c (decorateType): fixed bug #979599
3118         * src/ds390/gen.h: removed local fReturnSizeDS390
3119         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
3120         * src/ds390/gen.c (genAnd, genOr, genXor),
3121         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
3122
3123 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
3124
3125         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
3126         add relFilesSet to $3, manipulate $2 to handle linking of object
3127         files without source files in command line,
3128         * device/include/pic16 (all headers): added ID location macros,
3129         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
3130         entries for ID location bytes,
3131         * (pic16_assignIdByteValue): NEW,
3132         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
3133         added field dumpcalltree to pic16_options_t,
3134         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
3135         is used instead of pic16_Gstack_base_addr, check if (ifx) before
3136         emitting rFalseIfx label after check_carry label,
3137         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
3138         pic16_emitDIRegs), NEW
3139         * (pic16glue): dump .calltree file when option --calltree found,
3140         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
3141         * (_pic16_genAssemblerPreamble): emit ID locations after
3142         configuration registers,
3143         * (pic16_linkCmd): modifications of the link command,
3144         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
3145         * (pic16_pCodeInitRegisters): don't init stack registers,
3146         * (pic16_findPrevInstruction): fixed bug,
3147         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
3148         bug with immediate registers,
3149         * (buildCallTree): traces stack push and pop,
3150         * (pct2): dump also stack usage for each function,
3151         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
3152         * (pic16_allocDirReg): various modifications,
3153         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
3154         fixed to 1,
3155
3156 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
3157
3158         * src/pic16/pcode.c: removed buggy double colon
3159
3160 2004-07-01 Borut Razem <borut.razem AT siol.net>
3161
3162         * support/scripts/sdcc.nsi: added include/pic16 to setup
3163
3164 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
3165
3166         * device/lib/Makefile.in: fixed bug in target objects-pic16,
3167         * device/lib/pic16/Makefile: prefixed with dash (-) command under
3168         target 'clean',
3169         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
3170         specific command line arguments. Also added sample lkr script
3171         for placing a variable at a specific memory bank.
3172         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
3173         at a specific memory bank,
3174         * (pic16_dump_isection): fixed bug which caused string literals to
3175         be omitted when dumping idata section,
3176         * (pic16_groupRegistersInSection): added code to handle registers
3177         in specific memory banks,
3178         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
3179         public, all references are renamed too,
3180         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
3181         AOP_DPTR2,
3182         * (pic16_storeForReturn): added case to handle when dest is WREG,
3183         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
3184         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
3185         pic16_rel_udata, check to see if that register is marked as being
3186         a member of a specific memory bank,
3187         * (pic16_printIvalCharPtr): added code to add string literals either
3188         to code or the idata sections,
3189         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
3190         also accept the 'udata' pragma,
3191         * src/pic16/main.h: new structure types sectName and sectSym
3192         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
3193         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
3194         * (pic16_findPrevInstruction): fixed, it returned nothing,
3195         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
3196         instruction combinations,
3197         * (pic16_FixRegisterBanking): heavily reorganised,
3198         * (pic16_AnalyzeBanking): if generating banksel directives is
3199         disabled, then don't call FixRegisterBanking at all,
3200         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
3201         completely removed,
3202         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
3203
3204 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
3205
3206         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
3207         Phuah Yee Keat <yk.phuah AT nestac.com>
3208
3209 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3210
3211         * src/pic16/glue.c (pic16createInterruptVect): function now emits
3212         correctly the IVT even if it is relocated to some other location
3213
3214 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3215
3216         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
3217         * device/include/pic16/pic18f2220.h: NEW,
3218         * device/lib/pic16/libdev/pic18f2220.c: NEW,
3219         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
3220         * src/pic16/device.c (struct Pics16): added info for 18f2220,
3221         * src/pic16/device.h (struct pic16_options): added ivt_loc and
3222         nodefaultlibs, ivt_loc is the location of the interrupt vector
3223         table, and nodefaultlibs signs that default libraries should not be
3224         linked in link stage,
3225         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
3226         according to --ivt-loc argument,
3227         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
3228         when pragma stack is found,
3229
3230 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3231
3232         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
3233         256 (range check), 257 (do while), 258.a-f (bit banging
3234         f.e. on 3-wire SPI bus)
3235
3236 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3237
3238         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
3239         variables used exclusively within a loop
3240
3241 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
3242
3243         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
3244
3245 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3246
3247         * src/SDCClrange.c (computeClash): fixed bug #971834
3248
3249 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3250
3251         * src/mcs51/gen.c (genCmp): fixed bug #975903
3252         * src/hc08/gen.c (operandsEqu),
3253         * src/ds390/gen.c (operandsEqu),
3254         * src/z80/gen.c (operandsEqu),
3255         * src/pic/gen.c (operandsEqu),
3256         * src/pic16/gen.c (operandsEqu),
3257         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
3258         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
3259
3260 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3261
3262         * src/SDCCcse.c (cseBBlock): fixed bug #966963
3263
3264 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
3265
3266         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
3267         default case in switch statement,
3268         * glue.c (pic16_initPointer): expr is initialised via decoarteType
3269         to eliminate problem with initialisation of pointers, but problem
3270         still exists,
3271         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
3272         * (emitStaticSegment): removed various lines emitting debug info,
3273         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
3274         added processor registers for utilizing EEPROM,
3275         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
3276         configurable and set 8
3277
3278 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
3279
3280         * .version: increased version number to 2.4.2,
3281
3282         Cumulative patch for pic16 port
3283         * src/pic16/device.c: changed scheme to dump initial values for
3284         variables in idata segment, all print_idata* functions were removed,
3285         now the pic16_printIval* will be called,
3286         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
3287         * _pic16_printPointerType, pic16_printPointerType,
3288         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
3289         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
3290         NEW, similar to the respective functions in SDCCglue.c,
3291         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
3292         way, emitting hex bytes,
3293         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
3294
3295 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3296
3297         * src/avr/ralloc.c (serialRegAssign),
3298         * src/xa51/ralloc.c (serialRegAssign),
3299         * src/pic/ralloc.c (serialRegAssign),
3300         * src/pic16/ralloc.c (serialRegAssign),
3301         * src/hc08/ralloc.c (serialRegAssign),
3302         * src/z80/ralloc.c (serialRegAssign),
3303         * src/ds390/ralloc.c (serialRegAssign),
3304         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
3305
3306 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3307
3308         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
3309         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
3310
3311 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
3312
3313         Cumulative patch for pic16 port:
3314         * src/pic16/device.h (typedef PIC16_device) modified fields for
3315         defining microcontrollers,
3316         * src/pic16/device.c: added new info for all devices in Pics16 array,
3317         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
3318         to be optimised out by the pCode optimiser,
3319         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
3320         specially, bug reported by G.M. Gallant,
3321         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
3322         as force'd so that cannot be optimised out by pCode optimiser,
3323         * src/pic16/pcode.c,
3324         * src/pic16/pcodepeeph.c,
3325         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
3326         they are disabled by default, but can be enabled explicit with
3327         command argument --denable-peeps, for testing,
3328         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
3329         --pomit-ivt in COMPILE_FLAGS
3330
3331 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3332
3333         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
3334           compilation on MSVC
3335
3336 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3337
3338         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
3339
3340 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3341
3342         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
3343         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
3344
3345 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
3346
3347         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
3348         would only assign 0x300001 register.
3349
3350 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
3351
3352         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
3353         in COMPILE_FLAGS. Thanks to G. Gallant for report.
3354
3355 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3356
3357         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
3358         for ds80c400
3359         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
3360         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
3361         added peephole 254 (left shift), 255 (jump table)
3362
3363 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
3364
3365         * device/lib/Makefile.in: removed comment line with model-pic16,
3366         * (target port-specific-objects-pic16): the libraries and objects
3367         are copied to the build directory form the device/lib/pic16/bin
3368         directory
3369
3370         Cumulative patch concerning pic16 port:
3371         * library directory has been re-organized,
3372         * added support for PIC18F1220,
3373         * added headers and library sources for chips 18f1220,18f6520,
3374         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
3375
3376         * configuration registers setting has changed, now each supported
3377         device has a complete description of the registers it uses,
3378         * all initialisations are moved to idata sections, these section
3379         can be absolute or relocatable,
3380         * fixed initialisation of codespace variables,
3381         * fixed warning about PCLATU and gpsim,
3382         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
3383         * (genAssign): use table reads when assigning from variables in codespace,
3384         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
3385         char/int variables placed in codespace,
3386         * (pic16_emitConfigRegs): NEW, emits a list with configuration
3387         registers set in .asm file, no need for --pomit-config-words anymore,
3388         * (pic16glue): some 8051 legacy segments are commented out
3389         (to be removed completely),
3390         * added support for alternative assembler and linker with --asm=
3391         and --link= command line arguments,
3392         * peepholes are disabled automatically in the port, no need to
3393         specify on command line,
3394         * port supports natively char/int/long multiplication, but converts
3395         all divisions to support functions,
3396         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
3397         to the file set in variable $2,
3398         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
3399         strings in ASCII format and not in hex,
3400         * ralloc.c (serialRegAssign): added a triplet of conditional calls
3401         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
3402         allocate proper register if iCodes aren't temporary,
3403
3404 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
3405
3406         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
3407
3408 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
3409
3410         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
3411         is commented out
3412
3413 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3414
3415         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
3416         computed address is reused
3417         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
3418         multi-byte bitfields
3419
3420 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3421
3422         * src/z80/gen.c: (genArrayInit): must check for pointers too
3423
3424 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3425
3426         * support/regression/tests/zeropad.c: never meant to commit the
3427           nestedstruct test: removed, added check for GCC version
3428
3429 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
3430
3431         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
3432         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
3433         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
3434           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
3435           bugs 928906 and 954082 half-empty initializers
3436         * src/SDCCsymt.h,
3437         * src/SDCCsymt.c (getAllocSize): added for above fix
3438         * src/z80/gen.c (genArrayInit): fixed bug 741044
3439         * support/regression/tests/zeropad.c: added tests
3440
3441 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
3442
3443         * src/pic16/device.c (pic16_dump_section): corrected bug which
3444         caused some symbols of the libraries to be misplaced
3445
3446 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3447
3448         * src/pic16/glue.c,
3449         * src/pic16/ralloc.h,
3450         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
3451         to fix conflict with pic port
3452
3453 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3454
3455         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
3456         externs configuration variables,
3457         * src/pic16/ralloc.h,
3458         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
3459         prototype in header, commented out some debug messages
3460
3461 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
3462
3463         * src/pic16/glue.c,
3464         * src/pic16/main.c,
3465         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
3466         for gpasm COFF object generation. Thanks to D. Hawkins for
3467         his patch info
3468
3469 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3470
3471         * src/ds390/main.c,
3472         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
3473         Brock for spotting this)
3474         * src/ds390/gen.c (genEndFunction),
3475         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
3476         interrupt handler and critical. Disable push/pop optimizations when
3477         peephole optimizations disabled.
3478
3479 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
3480
3481         Updated pic16 library sources and headers.
3482         * device/lib/pic16/pic18f*/ ,
3483         * device/include/pic16/*.h: modified to handle structured SFR
3484         definitions
3485
3486 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
3487
3488         * src/port.h (PORT structure): added hook initPaths, now each
3489         port can declare its own default search paths,
3490         which can been seen with the --print-search-dirs option,
3491         see pic16 port for example,
3492         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
3493         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
3494         * (doPrintSearchDirs): NEW, replaces in a central manner the
3495         printing of search dirs which was split in set*Paths functions,
3496         * (main): added call to port->initPaths and doPrintSearchDirs,
3497         * src/avr/main.c,
3498         * src/ds390/main.c,
3499         * src/hc08/main.c,
3500         * src/izt/i186.c,
3501         * src/izt/tlcs900h.c,
3502         * src/mcs51/main.c,
3503         * src/pic/main.c,
3504         * src/pic16/main.c: modified port structures to reflect addition of
3505         initPaths hook,
3506
3507         * src/pic16/device.c (regCompare): registers are finally sorted by name,
3508         * (pic16_dump_section): for registers in same address reserve memory once,
3509         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
3510         to no_banksel,
3511         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
3512         result is greater in size than right or left,
3513         * (pic16_genUMult8X8_8): there are some cases where the result can
3514         be 16 bits size, so handle these,
3515         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
3516         * (pic16_outBitC): modified to emit pcodes,
3517         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
3518         or not,
3519         * (genDivOneByte): implemented algorithm to divide 8-bits,
3520         * (genCmp): uncommented goto, but issues still exist,
3521         * (genAnd): fixed a bug with variables >8bits,
3522         * (genPackBits): optimization added that uses BCF/BSF to change a
3523         single bit,
3524         * (genAssign): fixed bug when assigning floating point literals,
3525         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
3526         __sdcc_gsinit_startup label,
3527         * src/pic16/main.c (_pic16_init): removed search directory
3528         initialisations,
3529         * (_pic16_initPaths): NEW, used to initialise search directories,
3530         * (_hasNativeMulFor): support functions for all except char/int
3531         multiplication, and char division,
3532         * (PIC16_port struct): modified entry for native mul support,
3533         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
3534         no_banksel option,
3535         * (buildCallTree): call to register_usage is ifdef'ed out,
3536
3537 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3538
3539         * device/include/string.h: applied Stas Sergeev's patch to make this
3540         header file compatible with the preprocessor -Wundef option
3541         * src/SDCCmain.c (main): abort compilation if preprocessor reports
3542         failure (fixes bug #941458)
3543
3544 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3545
3546         * src/SDCCopt.c (killDeadCode): fixed bug #907733
3547         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
3548         that the variable, not the function, should be static
3549         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
3550         to be consistent with non-literal case
3551
3552 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3553
3554         * src/SDCCast.c (isConformingBody): fixed bug #949967
3555         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
3556         convilong): fixed bug #952086
3557
3558 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3559
3560         * src/SDCCmem.c (allocVariables): fixed bug #955321
3561
3562 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3563
3564         * src/hc08/main.c (_hc08_genAssemblerEnd),
3565         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
3566         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
3567         completely eliminated the use of a temporary file
3568         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
3569         when more than one file linked
3570         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
3571
3572 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3573
3574         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
3575         which fixes bug #543481
3576         * support/regression/tests/bug-751703.c: fixed comments left from a
3577         cut and paste error
3578         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
3579         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
3580         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
3581         scopes
3582         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
3583         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
3584         are now changed to underscores in moduleName
3585
3586 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3587
3588         * as/mcs51/lkmem.c: better fix for bug #954173
3589
3590 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
3591         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3592
3593         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
3594         * device/include/c8051f000.h,
3595         * device/include/c8051f120.h,
3596         * device/include/c8051f300.h,
3597         * device/include/c8051f310.h,
3598         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
3599         PWM16) and detab'ed
3600
3601 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3602
3603         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
3604         and mailing lists, doc'ed --no-peep-comments, removed reference
3605         to knoppix (newest version has no LyX/LaTeX), other minor changes
3606         * src/SDCCglue.c (glue): save 2 bytes stack space with
3607         option --main-return. The ljmp could probably be avoided too
3608
3609 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3610
3611         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
3612
3613 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3614
3615         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
3616         * src/SDCCopt.c (isLocalWithoutDef),
3617         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
3618         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
3619         (credit to Maarten Brock for patch #949363, on which this is based)
3620         * support/regression/tests/bug-751703.c: some test cases of extern used
3621         within inner scopes.
3622
3623 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3624
3625         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
3626         SPEC_STRUCT
3627         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
3628         struct definitions
3629         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
3630         dwWriteLabel): fix to create valid debugger symbols even when
3631         the module name has non-alphanumeric symbols in it
3632         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
3633         when a variable's allocation has been optimized away
3634
3635
3636 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3637
3638         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
3639         * src/hc08/main.c,
3640         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
3641         * src/mcs51/main.c,
3642         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
3643         * src/ds390/main.c,
3644         * src/z80/gen.c (z80_emitDebuggerSymbol),
3645         * src/z80/main.c,
3646         * src/pic/gen.c (pic14_emitDebuggerSymbol),
3647         * src/pic/main.c,
3648         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
3649         * src/pic16/main.c,
3650         * src/avr/gen.c (avr_emitDebuggerSymbol),
3651         * src/avr/main.c,
3652         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
3653         * src/xa51/main.c,
3654         * src/SDCCdebug.c (emitDebuggerSymbol),
3655         * src/SDCCdebug.h,
3656         * src/port.h: added a debugger struct to the port struct. Added a
3657         callback for defining debugger symbols
3658
3659         * src/SDCCast.c (createLabel),
3660         * src/SDCC.y (labeled_statement): mark all compiler generated labels
3661         with isitmp = 1
3662         * src/SDCCicode.h,
3663         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
3664         iCode back to the ast for the function
3665
3666         * src/hc08/ralloc.c (hc08_assignRegisters),
3667         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
3668         unneeded fields from the regs struct.
3669         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
3670         pushReg() & pullReg() functions instead of emitcode()
3671
3672         * src/hc08/gen.c (genLabel, genhc08Code),
3673         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
3674
3675         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
3676         debugger hooks
3677
3678         * src/hc08/gen.c (genEndFunction, genhc08Code),
3679         * src/hc08/gen.h,
3680         * src/mcs51/gen.c (genEndFunction, gen51Code),
3681         * src/mcs51/gen.h,
3682         * src/ds390/gen.c (genEndFunction, gen390Code),
3683         * src/ds390/gen.h,
3684         * src/z80/gen.c (genEndFunction, genZ80Code),
3685         * src/z80/gen.h,
3686         * src/z80/z80.h,
3687         * src/pic/gen.c (genEndFunction, genpic14Code),
3688         * src/pic/gen.h,
3689         * src/pic16/gen.c (genEndFunction, genpic16Code),
3690         * src/pic16/gen.h,
3691         * src/avr/gen.c (genEndFunction, genAVRCode),
3692         * src/avr/gen.h,
3693         * src/xa51/gen.c (genEndFunction, genXA51Code),
3694         * src/xa51/gen.h,
3695         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
3696         specific code to cdbFile.c and out of the backend code generators
3697
3698         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
3699         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
3700         starting address is now 0
3701
3702         * as/hc08/asm.h,
3703         * as/hc08/m08pst.c,
3704         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
3705         assembler directive for DWARF support
3706         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
3707
3708         * src/src.dsp,
3709         * src/Makefile.in,
3710         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
3711
3712 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3713
3714         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
3715         and inappropriate peephole optimization in jump tables
3716
3717 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3718
3719         * as/hc08/m08pst.c,
3720         * src/SDCCglue.c: sdccopt works for the hc08 port now
3721
3722 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
3723
3724         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
3725
3726 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3727
3728         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
3729
3730 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3731
3732         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
3733         rules
3734         * src/SDCCmain.c,
3735         * src/SDCCglobl.h,
3736         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
3737         comments from the peephole optimizer replacement rules
3738         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
3739         symbols
3740         * src/SDCCcse.c (updateSpillLocation),
3741         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
3742         equivalents
3743         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
3744         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
3745         objects far pointers
3746
3747 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3748
3749         * src/SDCCsymt.h: a missing part of my last change
3750         * src/pic/ralloc.c (regTypeNum),
3751         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
3752
3753 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3754
3755         * src/SDCCicode.h,
3756         * src/SDCCicode.c (aggrToPtrDclType),
3757         * src/SDCCptropt.h,
3758         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
3759         ptrPseudoSymConvert),
3760         * src/pic/ralloc.c (regTypeNum),
3761         * src/pic16/ralloc.c (regTypeNum),
3762         * src/hc08/ralloc.c (regTypeNum),
3763         * src/ds390/ralloc.c (regTypeNum),
3764         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
3765         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
3766
3767 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3768
3769         * link/z80/lkmain.c (afile),
3770         * as/hc08/lkmain.c (afile),
3771         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
3772         prevent a pointer problem when a filename has no directory and
3773         no extension specified.
3774
3775 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3776
3777         * link/z80/lkmain.c (afile): allow periods in directory names
3778         * link/z80/lkmain.c (afile),
3779         * as/mcs51/lkmain.c (afile),
3780         * as/hc08/lkmain.c (afile): allow linker script file to have an
3781         extension other than ".lnk"
3782         * link/z80/lklex.c (getfid),
3783         * link/z80/lkmain.c (parse),
3784         * as/mcs51/lklex.c (getfid),
3785         * as/mcs51/lkmain.c (parse),
3786         * as/hc08/lklex.c (getfid),
3787         * as/hc08/lkmain.c (parse): Support comments in the linker script
3788         file on lines by themselves and after filenames
3789
3790 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3791
3792         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
3793
3794 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3795
3796         * src/z80/peeph-z80.def: removed some peephole rules that don't
3797         work with multibyte arithmetic (fixed bug #937126)
3798         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
3799         to registers and not global variables
3800         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
3801         geniCodePreInc, geniCodePostDec, geniCodePreDec,
3802         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
3803         checking for assignments not internally generated (fixed bug #931895)
3804         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
3805         structure member (fixed bug #930072)
3806
3807 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3808
3809         * src/SDCCmain.c (linkEdit),
3810         * src/hc08/main.c (_hc08_parseOptions),
3811         * as/hc08/Makefile.in,
3812         * as/hc08/aslink.h,
3813         * as/hc08/asm.h,
3814         * as/hc08/m08pst.c,
3815         * as/hc08/lkrloc.c (relr, rele),
3816         * as/hc08/lkarea.c (lnkarea)
3817         * as/hc08/lkmain.c (afile, parse),
3818         * as/hc08/lkelf.c: support for ELF output
3819         * as/hc08/lks19.c (s19),
3820         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
3821
3822 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3823
3824         * as/mcs51/lkihx.c: Fixed bug #899105.
3825
3826 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3827
3828         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
3829         .dsp files from Unix to DOS.
3830
3831 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3832
3833         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
3834         function pointers; we have been compliant for several months now.
3835         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
3836         change that was accidently commented out
3837         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
3838         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
3839         bug #922319
3840
3841 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3842
3843         * src/hc08/gen.c: output of all of the internal debugging information
3844         is now controlled by the D() macro; it is disabled by default
3845
3846 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3847
3848         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
3849         harder to keep the same registers during a CAST iCode
3850         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
3851         long via int can be done in a single cast, if the signedness is
3852         correct.
3853         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
3854         putchar() in tinibios.c in ds390's library
3855
3856 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
3857
3858         * src/SDCCast.c (decorateType): fixed bug #898889,
3859         cast result of a literal complement too
3860         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
3861         fixed check for bitfields
3862
3863 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
3864
3865         * src/SDCCicode.c (geniCodeLogic): made it static,
3866         (geniCodeLogicAndOr): added in order to fix bug #905492,
3867         (ast2iCode): fixed bug #905492
3868         * support/regression/tests/bug-905492.c: added
3869         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
3870         (processParms): fixed bug #927659: don't copy parms, this will clear
3871         decorated flag
3872         * support/regression/tests/bug-927659.c: added
3873
3874 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
3875
3876         * src/SDCCast.c (addCast): don't cast float to char
3877         * device/lib/libsdcc.lib: added _memmove
3878
3879 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
3880
3881         * device/lib/large/Makefile: fixed parallel execution by
3882         replacing `make` by `$(MAKE)`
3883
3884 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3885
3886         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
3887         offsets (fixes bug #923936)
3888
3889 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
3890
3891         * device/lib/small/Makefile: fixed parallel execution by
3892         replacing `make` by `$(MAKE)`
3893
3894 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
3895
3896         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
3897
3898 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
3899
3900         * src/pic/gen.c (genCpl): multi-byte complements were not working.
3901         * src/regression/Makefile: Regression test was not running.
3902
3903 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
3904
3905         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
3906         complement if possible
3907         * src/SDCCval.c (valComplement),
3908         * src/SDCCicode.c (operandOperation): fixed complement of literal
3909         * support/regression/tests/onebyte.c (testComplement): added
3910
3911 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
3912
3913         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
3914         return an optimized tree; actually replace actParm with the new tree
3915         * src/SDCCast.h: added some parantheses to remove side effects
3916         * support/regression/tests/bug-920866.c
3917
3918 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
3919         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
3920         Bit operands were not being handled properly in the pic14 port.
3921         (now src/regression/add.c passes again).
3922
3923 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3924
3925         * src/SDCC.y (labeled_statement): case and default no longer require
3926         a following statement (RFE #893037)
3927
3928 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3929
3930         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
3931         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
3932         disabled (fixes bug #916294)
3933         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
3934         "mov a,acc"; patch provided by Lenny Story
3935         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
3936
3937 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3938
3939         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
3940         functions
3941         * src/ds390/gen.c (genFunction, genEndFunction),
3942         * src/ds390/ralloc.c (ds390_assignRegisters),
3943         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
3944         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
3945         pushed if there are parameters passed on the stack. Also, a cleaner
3946         way to decide if r0/r1 should be pushed/popped. (Together they fix
3947         bug #918693)
3948
3949 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3950
3951         * doc/sdccman.lyx,
3952         * device/lib/mcs51/crtpagesfr.asm,
3953         * device/lib/mcs51/crtxinit.asm,
3954         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
3955         to avoid confusion with Si Lab's SFRPAGE register.
3956
3957 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3958
3959         * src/SDCCglue.c (emitMaps): allow public sfr variables
3960         * src/SDCCglue.c (initialComments): include compiler build date
3961         with compiler version and put the timestamp of the generated
3962         assembly file on a serperate line to be less confusing.
3963         * src/port.h: added genInitStartup hook
3964         * src/avr/main.c,
3965         * src/ds390/main.c,
3966         * src/hc08/main.c,
3967         * src/pic/main.c,
3968         * src/pic16/main.c,
3969         * src/xa51/main.c,
3970         * src/z80/main.c: genInitStartup initialize as NULL (default to
3971         historical behaviour)
3972         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
3973         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
3974         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
3975         library instead of hard coding it into the compiler.
3976         * support/regression/ports/mcs51-stack-auto/spec.mk,
3977         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
3978         * device/lib/mcs51/Makefile,
3979         * device/lib/small/Makefile,
3980         * device/lib/large/Makefile,
3981         * device/lib/mcs51/crtpagesfr.asm,
3982         * device/lib/mcs51/crtstart.asm,
3983         * device/lib/mcs51/crtxclear.asm,
3984         * device/lib/mcs51/crtxinit.asm,
3985         * device/lib/mcs51/crtclear.asm,
3986         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
3987         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
3988         and into user configurable files.
3989         * device/lib/clean.mk: clean mcs51 directory too
3990         * support/regression/tests/longlit.c: added static to T1 declaration
3991         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
3992         accesses in the initialization code
3993
3994 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3995
3996         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
3997         OSCTRIMVAL as noted in bug #916008
3998
3999 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4000
4001         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
4002         in loops with multiple exits (reported as incorrect registers
4003         used by Martin Helmling in Sdcc-user list)
4004
4005 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4006
4007         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
4008         made ds390 register extensions look less like error messages
4009
4010 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4011
4012         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
4013         reported by Adam Wozniak in Sdcc-user list
4014
4015 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
4016
4017         * src/SDCCast.c (decorateType): fixed with bug and promotion in
4018         arithmetic optimizations, added debug output
4019
4020 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
4021
4022         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
4023         * sdcc.spec: updated and split sdcc into 3 rpms
4024         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
4025         needed for literals of LEFT_OP and '+'
4026         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
4027         introduced RESULT_TYPE_NOPROM
4028         (geniCodeMultiply): fixed logic for decision if mul is optimized to
4029         left shift
4030         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
4031         limited promotion to int only for '*'
4032         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
4033
4034 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
4035
4036         * src/pic16/gen.c (genSkip),
4037         (genc16bit2lit), (gencjneshort): commented out
4038         (is_LitOp): new helper function, checks operand type
4039         (genCmpEq): rewritten
4040
4041 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
4042
4043         * support/regression/tests/bug-908454.c: added
4044
4045 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
4046
4047         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
4048         * src/SDCCicode.c (usualBinaryConversions): op needs int type
4049         (geniCodeCast): cosmetic, don't preserve bit storage class
4050         (geniCodeLeftShift): added promotion
4051         (geniCodeLogic): fixed regression
4052         * src/SDCCsymt.c (computeTypeOr): accept bits too
4053         (compareType): 2nd part of fix for bug #908454, needed for bitfields
4054
4055 2004-03-07  Borut Razem <borut.razem AT siol.net>
4056
4057         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
4058
4059 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
4060
4061         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
4062         version of pic16_genPackRegisters which does not check if ic is a
4063         CAST operator,
4064         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
4065         function cause string1.c regression test fails
4066
4067 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
4068
4069         * sim/ucsim/configure.in,
4070         * sim/ucsim/configure,
4071         * sim/ucsim/doc/Makefile.in: use docdir
4072         * src/SDCC.y: fixed sbit atrributes
4073         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
4074         * src/SDCCast.c (decorateType): |^& need special promotion handling
4075         * src/SDCCast.h,
4076         * src/SDCCsymt.h: moved definition of RESULT_TYPE
4077         * src/SDCCsymt.h (computeType),
4078         * src/SDCCicode.c: computeType() needs op
4079         * src/SDCCsymt.c (checkTypeSanity),
4080         * doc/sddman.lyx: "plain" bitfields are unsigned
4081         * src/SDCCsymt.c (computeTypeOr): added
4082         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
4083         |^& ops
4084         * src/SDCCval.c (val*): computeType() needs op
4085         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
4086         * support/regression/tests/onebyte.c: added tests for |^&
4087
4088 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
4089
4090         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
4091         for writing icode into asm output.
4092
4093 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
4094
4095         * src/pic16/device.c: added some debug lines enabled
4096         with macro DEBUG_CHECK,
4097         * src/pic16/genarith.c: more debug in genPlus,
4098         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
4099         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
4100         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
4101         * (aopForSym): onStack symbols are re-placed in data memspace,
4102         and onStack flag is cleared,
4103         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
4104         copy temporary pcodeop,
4105         * (genPcall): added warning for not updating PCLATU,
4106         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
4107         always true for pic16 port,
4108         * (genMultOneWord): NEW, supports integer multiplication,
4109         * (genMult): modified to call genMultOneWord,
4110         * (ifxForOp): added warning when return NULL,
4111         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
4112         flag is set before call to operandFromSymbol for implicit
4113         added structures,
4114         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
4115         options.intlong_rent are set by default,
4116         * (_hasNativeMulFor): modified to allow port generation of integer
4117         multiplication,
4118         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
4119         set regtype to REG_SFR for all registers, restricting seting the
4120         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
4121
4122 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4123
4124         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
4125         more than 500 times in the regression tests
4126
4127 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4128
4129         * support/Util/SDCCerr.h,
4130         * support/Util/SDCCerr.c,
4131         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4132         enumerator_list),
4133         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
4134         for symbol conflicts.
4135         * support/valdiags/tests/enum.c,
4136         * support/valdiags/tests/tentdecl.c,
4137         * support/valdiags/tests/struct.c: expect possible error messages
4138         referring to original symbol definitions.
4139         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
4140         * src/SDCCsymt.h,
4141         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
4142
4143 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
4144
4145         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
4146
4147 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
4148
4149         * src/pic16/ralloc.c (newReg): fixed bug #908929
4150
4151 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4152
4153         * src/ds390/gen.c: added missing #include "main.h"
4154
4155 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
4156
4157         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
4158         checking if symbol is already in set,
4159         * src/pic16/device.h: prototype for checkAddSym,
4160         * src/pic16/gen.c: (_G): added entry interruptvector,
4161         * (assignResultValue): removed some commented out lines,
4162         * (genFunction): check for ISR via sym->type, absolute section for
4163         interrupt code is created via a new pBlock, the goto instruction is
4164         placed now correctly at the interrupt vector position, changed all
4165         references from ivec to _G.interruptvector,
4166         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
4167         is the interrupt is a high priority one, same for return from ISR,
4168         * src/pic16/glue.c: changed all calls of addSetHead for publics and
4169         externs to calls of checkAddSym,
4170         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
4171         pic16_pcode_verbose flag is set,
4172         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
4173         * src/pic16/pcoderegs.c: message about how many registers are saved
4174         will only be emitted if pic16_pcode_verbose flag is set,
4175
4176 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4177
4178         * src/ds390/ralloc.h,
4179         * src/ds390/ralloc.c (ds390_regWithIdx),
4180         * src/ds390/gen.c (emitcode),
4181         * src/ds390/main.h,
4182         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
4183         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4184         ds390operandCompare, getRegsRead, getRegsWritten,
4185         initializeAsmLineNode): customized instruction size calculation for
4186         ds390, started basis for some register optimizations
4187         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
4188         corresponding assembly output
4189         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
4190         missing push/pop of r0/r1. Optimized push/pops
4191
4192 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4193
4194         * src/mcs51/main.c (instructionSize): fixed ACALL size
4195         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
4196
4197 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
4198
4199         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
4200         the sorting of rlist with NULL elements
4201         * (print_idataType, print_idata): NEW to create idata sections
4202         * src/pic16/device.h: idataSymSet new variable
4203         * src/pic16/gen.c (genFunction): fixed some bugs in string
4204         comparing, improved the absolute section creation for ISRs,
4205         added FSR0L/FSR0H in registers that are saved in an ISR,
4206         * (genInline): fixed the processing of inline snippets,
4207         now they undergo no process by the peephole optimizer
4208         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
4209         are placed in idataSymSet,
4210         * (pic16emitStaticSeg): extern symbols are added in externs,
4211         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
4212         switching when aboslute variables are placed in access bank memory
4213         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
4214         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
4215         commented out with #if,
4216         * (pic16_packRegisters): reintroduce the check for CAST because some
4217         symbols are not correctly handled,
4218         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
4219         pCodeInstruction instead of pCode,
4220         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
4221         pCodeAsmDir definition,
4222         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
4223         directive, then the argument directive is emitted without the leading
4224         tab, hack for inline labels which must be in the first column,
4225         * (compareLabel,pic16_findNextInstruction),
4226         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
4227         * (insertBankSwitch): modified for the new pCodeAsmDir,
4228
4229 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4230         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
4231
4232         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
4233         instance,
4234         * (pushSide): commented out with #if,
4235         * (assignResultValue): fixed some typos in saving
4236         registers,
4237         * (genPcall): FIXED and sync'ed with genCall,
4238         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
4239         * (genNearPointerGet): fixed to handle some more cases,
4240         implementation scheme via table reads,
4241         * (genConstPointerGet): modified to access code memory correct,
4242         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
4243         and improved to handle some cases
4244         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
4245         instead of "RETLW" for init data
4246         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
4247         not IN_DIRSPACE, work around to reduce bank switching when aboslute
4248         variables are placed in access bank memory (<0x80 and >=0xf80),
4249         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
4250         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
4251         TBLWT_POSTDEC,TBLWT_PREINC
4252         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
4253         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
4254         directives
4255         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
4256         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
4257         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
4258         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
4259
4260 2004-02-29  Borut Razem <borut.razem AT siol.net>
4261
4262         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
4263         support/Util/findme.h, support/Util/system.h: enhance binary relative
4264         search for lib and include by using findProgramPath()
4265
4266 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4267
4268         * src/SDCCpeeph.h,
4269         * src/SDCCpeeph.c (pcDistance),
4270         * src/port.h,
4271         * src/mcs51/ralloc.h,
4272         * src/mcs51/ralloc.c (mcs51_regWithIdx),
4273         * src/mcs51/main.h,
4274         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
4275         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4276         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
4277         size calculation port specific, started basis for some register
4278         optimizations
4279         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
4280         missing push/pop of r0/r1. Optimized push/pops
4281         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
4282         * device/lib/_modsint.c (_modsint),
4283         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
4284         and stack version so regression tests pass
4285
4286 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
4287
4288         * src/Makefile.in (dep): include SLIBOBJS in dependency check
4289         * src/SDCCast.c (decorateType): catch another small optimization
4290         with '?' operator
4291         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
4292         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
4293         modified to finally use computeType() all over SDCC,
4294         see Feature Request #877103
4295         * src/SDCCval.h: cosmetic
4296         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
4297         valCompare(); regression tested in muldiv.c
4298         * support/regression/tests/muldiv.c (testMod): mod sign follows
4299         dividend only
4300
4301 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
4302
4303         * src/SDCCast.c (decorateType): fixed bug #902362
4304         * doc/INSTALL.txt: fixed install instructions for win32
4305
4306 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
4307
4308         * device/include/Makefile.in (install): fixed by replacing spaces
4309         by tabs
4310         * doc/README.txt,
4311         * doc/INSTALL.txt: updated for release
4312         * doc/sdccman.lyx: added warning for --xstack being buggy
4313
4314 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
4315
4316         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
4317         to eliminate build warnings.
4318         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
4319
4320 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
4321            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4322
4323         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
4324         removed -penable-stack, added comment for stack pragma, added
4325         warning for not initializing the stack/frame registers, removed
4326         comment at interrupts section
4327
4328         Stack is made permanent, there is no ability to disable stack usage.
4329         * src/pic16/device.h,
4330         * src/pic16/device.c: removed all references to USE_STACK macro,
4331         * src/pic16/device.c (pic16_dump_section): when no elements in
4332         rlist, free rlist before return,
4333         * (pic16_dump_int_registers): NEW, internal registers are a new set
4334         of general purpose registers reused by each function,
4335         * (checkAddReg): returns 1 if registers is added to set,
4336         * (pic16_groupRegistersInSection): when a registers is of type
4337         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
4338         * src/pic16/device.h: memRange and Assigned Memory are deleted,
4339         SRCASECMP macro is moved here from device.c
4340         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
4341         PO_PCLATU, PO_PRODL, PO_PRODH,
4342         * (pic16_pCodeOpType, genMinus,
4343         changed compares to "a" register, with AOP_ACC,
4344         * (pic16_genPlus): fixed some bugs and indented properly,
4345         * (pic16_addSign): changed size to size+offset in the MOVWF
4346         instruction,
4347         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
4348         multiply 8-bit operand by literal, result is 8-bit,
4349         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
4350         multiply 2 8-bit operand, result is 8-bit,
4351         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
4352         genUMult8X*_16,
4353         * src/pic16/gen.c: changed accUse to contain WREG only,
4354         * (pic16_emitcomment): renamed to pic16_emitpcomment,
4355         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
4356         true, do not use immediate addressing any more unless sym is a
4357         pointer in codespace,
4358         * (aopForRemat): do not use immediate addressing when symbol not in
4359         codespace and when symbol's address is requested,
4360         * (aopOp): for-loop in if(sym->accUse) is modified for the new
4361         accUse size (= 1),
4362         * (aopGet): added case for AOP_ACC and don't return "accumulator
4363         bug" but WREG instead,
4364         * (popGetTempReg): pushes contents of temporary register in stack,
4365         * (popReleaseTempReg): pops contents of temporary register from
4366         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
4367         * (pic16_popGet): separated case AOP_ACC to return register WREG
4368         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
4369         or PO_IMMEDIATE and initializes their instance/offset appropriately,
4370         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
4371         the use of immediate pointers to certain cases only.
4372
4373         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
4374         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
4375         * (assignResultValue, genCall, genRet): modified to use the new
4376         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
4377         genPcall is still broken,
4378         * (genFunction): added code to create 'A' type pBlocks when
4379         interrupt functions are generated, code not extensively tested yet,
4380         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
4381         * (genEndFunction): modified so ISRs pop stored registers from stack,
4382         * (genMultOneByte): cleanup,
4383         * (AccRsh): added flag andmask, to and result with appropriate mask,
4384         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
4385         * (genDataPointerGet): fixed and reenabled its use,
4386         * (genNearDataPointerGet): bugs fixed,
4387         * (genDataPointerSet): bugs fixed,
4388         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
4389         pic16_DumpSymbol, pic16_DumpOp,
4390         * src/pic16/genutils.h: function prototypes for the above functions,
4391         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
4392         pointers,
4393         * (pic16emitRegularMap): many many many improvements, but needs a
4394         major cleanup,
4395         * src/pic16/main.c: enable_stack in pic16_options is removed,
4396         * (_pic16_parseOptions): removed command line options -penable-stack,
4397         * (_process_pragma): emit stack symbol only when stack pragma is
4398         processed,
4399         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
4400         redirected to FSR0L/FSR0H pair,
4401         * (pic16_get_op, pic16_get_op2): modifications and improvements,
4402         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4403         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
4404         for immediates,
4405         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
4406         * (dumpPicOptype): NEW,
4407         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
4408         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
4409         with movff instruction,
4410         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
4411         added pic16_int_regs, some packRegsFor* functions are commented out,
4412         because produce errors,
4413         * src/pic16/NOTES: minor modifications
4414
4415 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4416
4417         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
4418         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
4419         --pack-iram.
4420         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
4421         * as/mcs51/lkaomf51.c: fixed bug #895763
4422
4423 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
4424
4425         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
4426
4427 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4428
4429         * doc/sdccman.lyx: added details about the HC08 storage classes and
4430         interrupts, fixed the register usage info for z80 & gbz80
4431
4432 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
4433
4434         * doc/sdccman.lyx: added more pic16 port documentation
4435         * device/include/pic16/: added header pic18fregs.h
4436
4437 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
4438
4439         * doc/sdccman.lyx: added Vangelis' contribution
4440
4441 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4442
4443         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
4444         extend to the next CALL or PCALL, not just to the next CALL.
4445
4446 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
4447
4448         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
4449
4450 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4451
4452         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
4453         bug #895752 and a better fix for bug #716790
4454
4455 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4456
4457         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
4458
4459 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4460
4461         * doc/sdccman.lyx: minor changes, minor changed
4462
4463 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
4464
4465         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
4466         which can't handle SDCC_NEWONEBYTEOPS,
4467         (geniCodeMultiply): removed conversion from mult to shift for pic14
4468         and pic16
4469
4470 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4471
4472         * src/hc08/gen.h,
4473         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
4474         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
4475         thus fixing bug #895406
4476
4477 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
4478
4479         * device/lib/_modsint.c,
4480         * device/lib/_modslong.c: sign follows divisor only
4481         * src/hc08/gen.c (genMultOneByte): if result size is 1,
4482         signs or signedness can be ignored
4483         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
4484         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
4485         added optimization for IFX,
4486         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
4487         arguments;
4488         reenabled optimization for IFX, which was removed on 2004-01-11
4489         * src/SDCCast.h: added return type IFX
4490         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
4491         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
4492         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
4493         SDCC_OLDONEBYTEOPS selects the old behaviour
4494         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
4495         changed again and commented promotion rule
4496         * src/SDCCval.c (valDiv): promotion no longer necessary
4497         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
4498         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
4499         rewritten
4500         * support/regression/tests/onebyte.c: added
4501
4502 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
4503
4504         * gen.c (genInline): reverted to old code for assemnling inline
4505         code because of bug reported James Chadd
4506
4507 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
4508
4509         * ralloc.h: missing declarations from previous patch,
4510         seems that patch for ralloc.h was never applied, fixed
4511
4512 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4513            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
4514
4515         * pcode.c,
4516         * pcode.h,
4517         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
4518         indirect addressing. Marked FSR0 as deprecated
4519         * gen.c (pointerCode): commented out, not needed now
4520         (pic16_popGet2p): new MOVFF helper function
4521         (genGenPointerGet),
4522         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
4523         (shiftRLong): removed duplicate debugging info
4524
4525 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4526
4527         * src/ds390/gen.c (genNearPointerGet),
4528         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
4529         optimization with bits, but not bitfields.
4530         * src/ds390/ralloc.c (packRegisters),
4531         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
4532
4533 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
4534
4535         * src/SDCCcse.c (algebraicOpts): copy operands before modification
4536
4537 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4538
4539         * src/SDCCsymt.h,
4540         * src/SDCCicode.c (operandFromSymbol),
4541         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
4542         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
4543         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
4544         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
4545         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
4546         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
4547         bug #892038
4548         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
4549         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
4550         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
4551         * src/SDCCsymt.c (newSymbol),
4552         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4553         enumerator_list),
4554         * src/SDCCval.h,
4555         * src/SDCCval.c (newiList): fixed bug #885705
4556
4557 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4558
4559         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
4560         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
4561
4562 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4563
4564         * device/include/c8051f120.h,
4565         * device/include/c8051f300.h,
4566         * device/include/c8051f310.h: added/updated header files for Silicon
4567         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
4568         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
4569         in new section Submitting patches
4570
4571 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4572
4573         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
4574         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4575         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4576         genGenPointerSet),
4577         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
4578         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4579         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4580         genGenPointerSet),
4581         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
4582         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4583         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4584         genGenPointerSet),
4585         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
4586         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4587         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4588         genGenPointerSet): fixed bug #892400
4589         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
4590         to eliminate build warnings.
4591         * src/SDCCast.c (processParms),
4592         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
4593         fixed bug 751859
4594         * support/valdiag/valdiag.py: added GCC to the list of defines active
4595         when compiling with gcc
4596
4597 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4598
4599         * support/Util/SDCCerr.h,
4600         * support/Util/SDCCerr.c,
4601         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
4602         with an incomplete type (fixed bug #883734)
4603         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
4604
4605 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4606
4607         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
4608
4609 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4610
4611         * src/SDCCast.c (decorateType),
4612         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
4613         function pointer implementation
4614         * support/regression/tests/funptrs.c: added tests to verify both forms
4615         of function pointers work correctly. Added tests to verify parameters
4616         are passed in the correct order.
4617
4618 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
4619
4620         * device.c (regCompare): registers are sorted by ascending
4621         address and increasing size,
4622         * main.c (_pic16_finaliseOptions): removed the declaration
4623         of compiler macro MCU. Now a macro of the format pic18fxxxx
4624         will be defined from the command line
4625
4626 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4627             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
4628
4629         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
4630         PCOP_RLCF was overwritten!
4631         * gen.c (genSkip): commented out calls to pic16_emitcode,
4632         * (genCmpEQ): fixed "long" compares, only high word did get compared,
4633         * (genlshTwo),
4634         * (genRRC): added debugging info,
4635         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
4636         overwritten while shifting,
4637         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
4638         overwritten while shifting,
4639         * (AccLsh),
4640         * (AccRsh),
4641         * (shiftLLeftOrResult),
4642         * (shiftRLeftOrResult),
4643         * (shiftRLong),
4644         * (shiftLLong): Implemented with pic16_emitpcode
4645         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
4646         * (genLeftShift): Fixed bug, operand for shift by variable always
4647         was "and"ed with 0x0f,
4648         * (genLeftShiftLiteral),
4649         * (genrshTwo),
4650         * (genRightShiftLiteral): added debugging info,
4651         * (genrshFour): added comment,
4652         * (genRightShift): determined signedness from operand "left"
4653         instead of "result"
4654
4655 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4656
4657         * src/SDCCicode.c (geniCodeParms),
4658         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
4659         function pointers, fixed function pointer bugs #861242 and #861896
4660
4661 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4662
4663         * device/include/c8051f000.h,
4664         * device/include/c8051f120.h,
4665         * device/include/c8051f300.h: added header files for Silicon
4666         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
4667
4668 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
4669
4670         * src/SDCCast.c (processParams): added new type flow and restructured
4671         (gatherAutoInit): added new type flow
4672         (addCast): cosmetic changes
4673         (getLeftResultType): added new type flow for array indices, patch
4674         provided by Stas, see FR #877103
4675         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
4676         array index patch by Stas
4677         * src/SDCCast.h: added prototype getResultTypeFromType()
4678         * src/SDCCval.h,
4679         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
4680         * src/pic/glue.c (pic14emitStaticSeg),
4681         * src/pic16/glue.c (pic16emitStaticSeg),
4682         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
4683         for initialization of symbols
4684         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
4685         * support/Util/SDCCerr.h:
4686         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
4687         * .version: bumped version number to 2.3.8
4688         * device/include/Makefile.in (install),
4689         * doc/Makefile (install): changed to 'rm `find ...`' construct to
4690         avoid warnings
4691
4692 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
4693
4694         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
4695         Slade Rich fixed an optimization bug
4696         * src/pic/pcodepeep.c,
4697         * src/pic/pcoderegs.c
4698         * doc/Makefile (install): added test for directory
4699
4700 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4701
4702         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
4703         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
4704         * src/pic/ralloc.c (getRegPtr, getRegGpr),
4705         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
4706         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
4707         * as/mcs51/asexpr.c (term),
4708         * as/hc08/asexpr.c (term): fixed bug #887146
4709
4710 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4711
4712         * src/z80/gen.c (genMult): handle single byte result product
4713         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
4714         DUMMY_READ_VOLATILE (fixed bug #886367)
4715
4716 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
4717
4718         * support/regression/tests/libmullong.c: fixed logic, on little endian
4719         hosts we ended without a mullong_wrapper()
4720
4721 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4722
4723         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
4724         virus/worm forged address usage.
4725
4726 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
4727
4728         Fixed promotion, it should be done on AST level:
4729         * src/SDCCast.c (addCast): added promotion to int
4730         (decorateType): updated call to upCast()
4731         * src/SDCCicode.c (geniCodeLeftShift): removed call to
4732         usualUnaryConversions()
4733
4734 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
4735
4736         * support/regression/tests/literalop.c (mulWrapper): Added a
4737         wrapper to remove integer overflow warnings.
4738
4739         * support/regression/tests/float_trans.c: Made work on host.
4740
4741         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
4742         location of sz80.
4743
4744         * support/regression/generate-cases.py (main): Changed from inline
4745         to a main method.
4746
4747         * doc/Makefile (install): Changed to depth first to get rid of
4748         missing directory install warning.
4749
4750         * as/Makefile (install-doc): Made work on Mac.
4751
4752 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
4753
4754         * src/SDCCast.c: added an additional type flow in decorateType() of
4755         opposite direction, see feature request #860006; it's enabled at runtime
4756         by setting the environment variable SDCC_NEWTYPEFLOW
4757         * src/SDCCast.h: changed prototype of decorateType()
4758         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
4759         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
4760         'char' to 'int' can be omitted, if both operands are 'unsigned char';
4761         see feature request #877103
4762         * src/SDCCval.c: updated call of decorateType()
4763         (valBitwise): fixed bug #882876
4764         (valMinus): added promotion
4765         (valLogicAndOr): result is unsigned
4766         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
4767         * src/SDCCsymt.c (computeType),
4768         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
4769         must not cause an unsigned operation
4770         * src/pic/glue (pic14emitRegularMap),
4771         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
4772
4773 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
4774
4775         * src/pic/pcode.c (PCodeID): commented out left over debug code
4776
4777 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
4778
4779         * support/valdiag/tests/overflow.c: added shift tests
4780         * src/pic/device.c,
4781         * src/pic/gen.c,
4782         * src/pic/gen.h,
4783         * src/pic/glue.c,
4784         * src/pic/main.c,
4785         * src/pic/pcode.c,
4786         * src/pic/pcode.h,
4787         * src/pic/pcodepeep.c,
4788         * src/pic/pcoderegs.c,
4789         * src/pic/ralloc.c,
4790         * src/pic/ralloc.h: applied patch from Slade Rich;
4791         added support for multiple code pages and multiple RAM banks on the
4792         PIC 14 port. The ASM files now no longer simply assume all the
4793         code / RAM are in the same page / bank. This means the linker can
4794         safely allocate code/RAM of separate ASM files to different pages/banks.
4795         * doc/sdccman.lyx: added Slade's tips
4796         * src/mcs51/peeph.def: fixed bug #880768
4797
4798 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4799
4800         * src/hc08/ralloc.c (rematStr): fixed bug #879282
4801         * src/SDCCast.c (decorateType): fixed bug #880197
4802
4803 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
4804
4805         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
4806         getopt.h.
4807
4808         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
4809         strtof is not part of C89 and isn't included with Mac OS X.
4810
4811 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4812
4813         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
4814         shiftL2Left2Result): fixed bug #879326
4815         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
4816         (genMultOneByte): fixed bug in signed vs unsigned multiplication
4817         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
4818         address fetch for clr instruction
4819         * device/lib/hc08/_mulint.c: created optimized assembly version
4820         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
4821
4822 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
4823
4824         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
4825         proposed in FR #877103
4826
4827 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
4828
4829         * src/SDCCval.c (cheapestVal): added missing checks
4830         * src/SDCCicode.c (usualBinaryConversions): fixed condition
4831         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
4832
4833 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
4834
4835         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
4836         equal operands
4837
4838 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
4839
4840         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
4841         loaded with the linker search paths (-L arguments) and the libraries
4842         to be linked with the current source (-l arguments). Changes
4843         currently will affect only the pic16 port.
4844         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
4845         include path the port specific paths and port specific libraries,
4846         * gplink command now contains the $3 argument,
4847         * src/pic16/device.h,
4848         * src/pic16/device.c,: structure PIC_device is made public and
4849         renamed to PIC16_device, the same for variable Pics which is renamed
4850         to Pics16. Updated all references to them.
4851         * src/pic16/glue.c (pic16glue): corrected bug with code
4852         initialization which bypassed the variable initializations block.
4853
4854         * device/lib/pic16/Makefile.rules: removed --penable-stack from
4855         COMPILE_FLAGS and added the --nostdinc option
4856
4857 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4858
4859         * device/include/mc68hc908jb8.h: Register defs for another member
4860         of the hc08 family. Contributed by Bjorn Bringert - thanks!
4861
4862 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
4863
4864         Documenting changes from previous commits.
4865         * configure.in (version 1.56),
4866         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
4867         when generating output files to configure the pic16 library,
4868         but now I've commented it out, since gputils aren't installed in the
4869         SF compile farm, so library won't compile
4870
4871         * device/lib/Makefile.in (version 1.56): initially I've added in
4872         target 'all' the prerequestive 'model-pic16' so it compiled the
4873         pic16 library, but now I've commented it out for the same reasons
4874         above,
4875         * added targets 'model-pic16' and 'objects-pic16' to compile the
4876         library
4877         * added target 'port-specific-objects-pic16' to handle the
4878         generated libraries and copy them into the build/ directory
4879         * added target 'clean-intermediate-pic16' to clean intermediate
4880         files into pic16 directory
4881         * in target 'installdirs' added line to create directory pic16 in
4882         the installation path
4883
4884         * device/include/Makefile.in (version 1.11): in target 'install'
4885         added lines to copy all header files to installation path,
4886         * in target 'installdirs' added line create directory for pic16
4887         headers in the installation path
4888
4889 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
4890
4891         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
4892          a function call
4893
4894 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
4895
4896         * configure,
4897         * device/lib/configure.in,
4898         * device/lib/configure: fixed for autoconf 2.57
4899
4900 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4901
4902         * src/z80/main.c (_parseOptions): fixed the portmode= command line
4903         option so that it actually works. Made it specific to the z80, since
4904         the gbz80 doesn't have these kinds of I/O ports.
4905
4906 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4907
4908         * device/include/z180.h,
4909         * device/lib/_memcpy.c,
4910         * device/lib/_memmove.c,
4911         * device/lib/_mulint.c,
4912         * device/lib/ser_ir.c,
4913         * device/lib/ser_ir_cts_rts.c,
4914         * device/lib/_strcmp.c,
4915         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
4916         * src/z80/main.c (_process_pragma): add support for pragmas bank and
4917         portmode; added deprecation warning for bank= and protmode= forms.
4918         Also, guard against buffer overflow.
4919         * src/z80/gen.c (aopGet): generate better code for sfr banked read
4920
4921 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4922
4923         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
4924         changed interrupt vector table generation to only emit declared vectors.
4925         * device/include/Makefile.in: added missing backslash
4926         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
4927
4928 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
4929
4930         Mainly changes to support compilation of the device libraries
4931         * src/pic16/device.c: stack is allocated via symbol and not
4932         via literal number. The symbol is placed in the corresponding
4933         position of the data ram
4934         * (pic16_dump_section): relocatable and absolute uninitialized
4935         data are now emitted in sorted order to reduce section naming,
4936         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
4937         weren't marked as being in the access bank,
4938
4939 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
4940
4941         Added portion of GNU PIC Library under the directory
4942         device/include/pic16 and device/lib/pic16. These files
4943         contain the declarations of SFRs for the PIC18Fxx2 devices.
4944         The directory is initialized via configure from toplevel.
4945
4946 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
4947
4948         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
4949         the spilllocations to be compared correctly
4950
4951 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
4952
4953         * src/SDCCast.c (decorateType): fixed bug introduced today
4954
4955 2004-01-12  Borut Razem <borut.razem AT siol.net>
4956
4957         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
4958         doc/sdccman.lyx: upper case pragmas are deprecated
4959
4960 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
4961
4962         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
4963         in simpler and even better code
4964
4965 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
4966
4967         * src/SDCCicode.c (operandOperation): fixed bug #874819
4968         * src/SDCCast.c (decorateType): fixed
4969         char foo (unsigned long ul) { return ul > 0; }
4970
4971 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4972
4973         * doc/sdccman.lyx: Moved and added some sections, small changes
4974         all over. Telling LaTeX to be less strict with word spacing
4975         to better keep the right margin. Changed some notes about
4976         maintainance of the ports in section 3.2.1 - is it OK like this?
4977
4978 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
4979
4980         SDCC source changes:
4981         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
4982         convilong): modified to inform the pic16 port that builtin functions
4983         are external
4984
4985         PIC16 PORT specific changes:
4986         * src/pic16/device.c pic16_dump_equates() added,
4987         processor registers declared internally by the port are emitted in
4988         the translation as equates,
4989         * src/pic16/gen.c: inline code is passed unprocessed to the
4990         translation,
4991         * (pic16_popGetLit2): fnuction modified to take second operand as
4992         pCodeOp pointer and not as literal,
4993         * (popRegFromIdx): prefixed with pic16_,
4994         * (pic16_popCombine2): modified to receive already allocated pCode
4995         operands,
4996         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
4997         * (genFunction): initializes local stack frame and pushes on stack
4998         all the registers used by this function,
4999         * (genEndFunction): restores all registers from stack and restores
5000         stack frame,
5001         * src/pic16/glue.c (pic16emitRegularMap): various changes and
5002         improvements,
5003         * (pic16glue): changed the program startup sequence,
5004         * added new dbName code 'A' for functions placed in absolute section
5005         * src/pic16/main.c: added function attribute _naked,
5006         * added pragma 'code' to place a fnuction at an absolute address,
5007         * added command line arguments --debug-ralloc and --pcode-verbose,
5008         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
5009         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
5010         * (pic16_newpCodeOpLit2): modified to take the second operand as
5011         pCodeOp pointer,
5012         * (pic16_printpBlock): modified to emit each function in a separate
5013         section,
5014         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
5015         UPPER for immediate operands,
5016         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
5017         instruction,
5018         * src/pic16/peeph.def: all peepholes with movff are commented out,
5019         because there is a problem in the pcode peep optimizer,
5020         * src/pic16/ralloc.c: the register allocator can now reuse local
5021         function symbols for another function. This saves register usage.
5022         * src/pic16/ralloc.h: added flag isLocal in structure regs,
5023
5024         Added file src/pic16/NOTES with information about program writing on
5025         the current port version.
5026
5027 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5028
5029         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
5030         and peephole 252 (array access)
5031
5032 2004-01-09  Borut Razem <borut.razem AT siol.net>
5033
5034         * src/SDCCmain.c : fixed #872250: -l command line defined library
5035           files are scanned before standard library files
5036
5037 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5038
5039         * src/SDCCast.c (decorateType): fixed bug #874046
5040
5041 2004-01-09  Borut Razem <borut.razem AT siol.net>
5042
5043         * support/scripts/sdcc.nsi: remove previous installation
5044
5045 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5046
5047         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
5048         bytes for last interrupt vector (mcs51)
5049         * sdcc.spec: fixed typo
5050
5051 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5052
5053         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
5054         gen51Code): more efficient parameter receive for --model-large
5055         ("bug" #845294)
5056
5057 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5058
5059         * src/ds390/main.c,
5060         * src/z80/main.c: added missed needLinkerScript flags (more than
5061         one port structure defined in these file)
5062         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
5063         bug #795325
5064
5065 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
5066
5067         * src/SDCCmain.c: removed various references to DEFAULT_PORT
5068         * src/port.h: added flag needLinkerScript in port->linker
5069         structure to inform whether to create a .lnk file or not,
5070         * src/avr/main.c,
5071         * src/ds390/main.c,
5072         * src/hc08/main.c,
5073         * src/mcs51/main.c,
5074         * src/pic/main.c,
5075         * src/pic16/main.c,
5076         * src/xa51/main.c,
5077         * src/z80/main.c: changed appropriately to configure
5078         needLinkerScript flag
5079         * src/pic/gen.c,
5080         * src/pic16/gen.c (genAddrOf): fixed bug #863624
5081         * src/pic/glue.c: added variable udata_section_name to
5082         override default uninitialized data segment definition for
5083         devices only with SHAREBANK memory (reported from Erik Epetrich)
5084         * (pic14emitOverlay): modified to emit a commented overlay segment
5085         directive when no overlay data exist
5086         * (picglue): modified to emit uninitialized data segment
5087         according to udata_section_name
5088         * src/pic/main.c (_pic14_parseOptions): added command line
5089         options --udata-section-name=[name] to override default
5090         udata definition name
5091         * modified _linkCmd and _asmCmd to include compiler passed
5092         arguments via -W option
5093         * src/pic16/main.c: added $l in _asmCmd, changed extension for
5094         object file from '.rel' to '.o' in port->linker structure,
5095         changed size of fptr from 2 to 3 in port structure
5096
5097 2004-01-07  Borut Razem <borut.razem AT siol.net>
5098
5099         * support/scripts/sdcc.nsi: update PATH
5100         * support/scripts/sdcc.ico: craeted
5101
5102 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
5103
5104         * device/include/Makefile.in: fix install
5105         * doc/Makefile: fix install
5106
5107 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5108
5109         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
5110         in bug #860505
5111         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
5112         how the function variable allocation summary is displayed; also
5113         include information about variables allocated to the overlay
5114         segment
5115
5116 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5117
5118         * as/mcs51/lkmain.c: Help about -Y option
5119         * as/mcs51/lkarea.c: Fixed gcc warnings
5120
5121 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5122
5123         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
5124         fixed warning
5125         * support/valdiag/tests/overflow.c: added
5126         * src/SDCCast.c (decorateType),
5127         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
5128         LEFT_OP (left shift)
5129
5130 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5131
5132         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
5133         (default behaviour).
5134
5135 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5136
5137         A python script to validate compiler diagnostic messages. It can be
5138         used to verify that sdcc complains about bad c source code and
5139         gives a good location of the error.
5140         * support/valdiag/Makefile,
5141         * support/valdiag/valdiag.py,
5142         * support/valdiag/tests/*
5143
5144 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5145
5146         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
5147         * src/SDCCsymt.c (newEnumType),
5148         * src/SDCCsymt.h
5149         * support/Util/SDCCerr.c,
5150         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
5151         enum related bugs.
5152         * support/regression/tests/enum.c: added test for enum values that
5153         require at least 2 bytes of storage.
5154
5155 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5156
5157         * src/common.h: added ifndef/define/endif macros
5158         around the header file.
5159         Bug reported from Jesus Calvino-Fraga
5160
5161 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5162
5163         * sdcc.spec: updated
5164         * device/include/Makefile.in: don't install CVS directories
5165         * device/lib/Makefile.in: added removal of CVS directories after install
5166         * doc/Makefile: fixed install, added local_icons
5167         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
5168         * src/mcs51/gen.c (genRightShift): fixed bug #870788
5169         * src/ds390/gen.c (genRightShift): fixed bug #870788
5170         * src/SDCCast.c (decorateType): fixed bug #870781
5171
5172 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5173
5174         PIC16 port related changes:
5175         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
5176         added variable stackPos,
5177
5178         * gen.c: genCall, assignResultValue: added support for
5179         pushing/retrieving function parameters to/from stack,
5180         genFunction,genEndFunction: setup stack frame for the
5181         generated function,
5182         genAddrOf: will be changed according to bug 863624
5183
5184         * added files genutils.c and genutils.h which contain gen*
5185         debugged and optimised functions extracted from gen.c
5186
5187         * glue.c: added variable 'externs' which holds extern symbols,
5188         pic16emitRegularMap: is modified to properly handle relocatable
5189          symbols under the new scheme,
5190         pic16createInterruptVect: is modified
5191         pic16printPublics: is modified to emit 'global' assembler directives,
5192         added pic16_printExterns to print extern symbols,
5193         pic16glue: initializes stack/frame pointer in the beginning of
5194         the assembly output. Temporary hack, will be corrected later,
5195         because gplink yet does not support stack and SDCC does not
5196         yet support a type of crt0.o object to create the final binary.
5197
5198         * Removed many lines that contain 8051 legacy code.
5199         * The code is finally placed under a 'code' directive.
5200         * Added port specific options.
5201
5202         * _process_pragma: simplified since now we do not need *special*
5203         include file to define SFR registers. But a separate header
5204         will be needed. This will be developed later.
5205         * _pic16_parseOptions: added, parses port specific options:
5206         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
5207         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
5208         --preplace-udata-with=
5209
5210         * _pic16_setDefaultOptions: modified to initialize section names,
5211         but hack is temporarly out of order since it needs improvement.
5212         * _pic16_genAssemblerPreamble: configuration words are emitted by
5213         their address instead of their name. This part is incomplete and
5214         supports only the 18Fxx2 devices. Other devices will emit an error
5215         during assembly since they do not contain the same set of config
5216         registers
5217         * _pic16_genIVT: is modified,
5218
5219         * pcode.c: added definitions for some hardware registers that are needed
5220         for stack support
5221         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
5222         All PCI entries are updated. Now LFSR is supported.
5223         * Removed pic16_pciTRIS is mentioned by mdubuc in source
5224         * added pic16_newpCodeOpLit2 to support instructions with
5225         two literal arguments
5226         * pic16_pCode2str: corrected code that emits assembler instructions
5227         with two literal operands and those that have an access bit modifier
5228         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
5229         this fixes a bug which caused some labels to be lost, when an
5230         assembler directive was added, i.e. banksel,
5231         * pic16_FixRegisterBanking: improved logic that causes the insertion
5232         of bank switching,
5233         * InlineFunction: functions that are called once, are not any more
5234         inlined. This can be a port option in the future,
5235
5236         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
5237
5238         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
5239         hold the corresponding uninitialized symbols,
5240         * pic16_allocProcessorRegister: registers have explicit marked the
5241         accessBank field,
5242         * pic16_allocInternalRegister: registers are explicit marked as
5243         not used,
5244         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
5245         processing list, so bit registers were lost,
5246         *
5247
5248         * ralloc.h: added field 'accessBank' and original symbol operand
5249         in register definition,
5250         * removed the field isMapped from register definition,
5251
5252         ** Several functions have been removed from various sources:
5253         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
5254         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
5255         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
5256         pic16_assignRelocatableRegisters
5257
5258         ** others have been introduced:
5259         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
5260         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
5261
5262 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
5263
5264         * support/scripts/inc2h.pl: changed definition of BIT_AT
5265         to emit 'sbit at' instead of 'bit at'. This was a request.
5266
5267         PIC16 port related preliminary changes:
5268         * gen.c: prefixed function popRegFromString with
5269         pic16_ and all references to it corrected
5270         * pcode.c: all pic16_pc_* hardware registers prefixed
5271         with underscore (_),
5272         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
5273         * ralloc.c: newReg(): when register is REG_SFR then
5274         set address to rIdx,
5275         pic16_allocProcessorRegister(): marks register wasUsed=0
5276         pic16_writeUsedRegs(): added a call to assign processor
5277         registers via pic16_assignFixedRegisters
5278
5279 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5280
5281         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
5282         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
5283         variables in unused register banks.  Also the SSEG is placed
5284         wherever there is enough space for it, and IDATA can be anywhere
5285         in internal RAM.  For now compile using -Wl-Y[stack_size].
5286         The mem file is different for this option as well, since it
5287         makes no sense of talking about DSEG lenght.
5288
5289 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
5290
5291         * src/SDCClrange.c: fixed bug 869095 that caused segfault
5292         in certain cases, e.g. when ROM assignment, patch provided
5293         from Albert den Haan.
5294
5295 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
5296
5297         Many signedness and type propagation fixes:
5298         * src/SDCCicode.c: made geniCodeCast() static
5299         replaced SPEC_ by IS_ (cosmetic)
5300         (operandOperation): fixed div and mod operation
5301         (usualBinaryConversions): added support for promotion of char
5302         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
5303         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
5304         (geniCodeAdd): an array index will stay unsigned, even if promoted
5305         from char to int
5306         (geniCodeArray): ditto
5307         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
5308         * src/SDCCsymt.c (computeType): added more support for char;
5309         promotion of char is selectable by promoteCharToInt, fixed signedness
5310         for all cases
5311         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5312         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5313         * src/SDCCval (val*): replaced signedness calculation by
5314         computeType()
5315         rearranged if-branches (cosmetic)
5316         (valShift): added warning W_SHIFT_CHANGED
5317         (valCompare): fixed problem with different types
5318         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
5319         * support/regression/tests/literalop.c: added many cases
5320         * support/regression/tests/ast_constant_folding.c: changed finally to
5321         'unsigned int'
5322         * .version: new year, new version: 2.3.7
5323         * src/SDCCmain.c (main): applied patch #866468
5324         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
5325         provided by Scott Bronson
5326         * doc/sdccman.lyx: updated documentation for sdcdb
5327         updated and added chapter tips
5328
5329 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5330
5331         * src/SDCCsymt.h: missing from yesterday's commits
5332
5333 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5334
5335         * src/SDCC.y (struct_or_union_specifier),
5336         * support/Util/SDCCerr.c,
5337         * support/Util/SDCCerr.h: verify that struct & union tags are used
5338         as declared.
5339
5340 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5341
5342         * src/SDCCglobl.h: missing from yesterday's commits
5343
5344 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5345
5346         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
5347         sft_attributes, struct_declaration, parameter_declaration,
5348         type_name, start_block, declaration_list),
5349         * src/SDCC.lex (check_type): support redefinition of typedef names
5350
5351 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5352
5353         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
5354         aligned xdata arrays. Erik helped me with the if clause.
5355
5356 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5357
5358         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
5359         warning
5360
5361 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5362
5363         * src/SDCCast.h,
5364         * src/SDCCast.c (newAst_),
5365         * src/SDCCicode.h,
5366         * src/SDCCicode.c (ast2iCode, newiCode),
5367         * src/SDCCglobl.h,
5368         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
5369         expr, statement, expression_statement, selection_statement,
5370         iteration_statement, expr_opt, jump_statement): foundation for tracking
5371         sequence points
5372         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
5373         point code too)
5374
5375 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5376
5377         * support/Util/SDCCerr.c,
5378         * src/SDCCast.h,
5379         * src/SDCCast.c (createCase, createDefault, decorateType),
5380         * src/SDCClabel.c (labelUnreach),
5381         * src/SDCC.y (labeled_statement, jump_statement): More improvements
5382         to error messages.
5383         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
5384         (with thanks to Stas Sergeev)
5385         * device/include/time.h,
5386         * device/lib/time.c (CheckTime): suppress unreachable code warning
5387
5388 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5389
5390         * src/SDCCast.c (createIvalCharPtr),
5391         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
5392         bug #753752)
5393         * support/regression/tests/nullstring.c: tests for these two bugs
5394
5395 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5396
5397         * support/Util/SDCCerr.h,
5398         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
5399         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
5400         about storage class and 'at' used inside struct or union
5401         * src/SDCCBBlock.c (iCodeFromeBBlock),
5402         * src/SDCCcse.c (ifxOptimize),
5403         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
5404         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
5405         printIval, emitStaticSeg, emitOverlay),
5406         * src/SDCClabel.c (deleteIfx),
5407         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
5408         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
5409         gatherAutoInit, processParms),
5410         * support/Util/SDCCerr.h,
5411         * support/Util/SDCCerr.c (werrorfl): Support for better error location
5412         reporting for post-parse errors.
5413
5414 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5415
5416         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
5417         implicit casts via union; they don't work on big endian systems
5418         (possible fix for bug #861138)
5419
5420 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5421
5422         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
5423         * src/mcs51/main.c: fixed the fix for bug #737001
5424
5425 2003-12-15  Borut Razem <borut.razem AT siol.net>
5426
5427         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
5428
5429 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5430
5431         * support/makebin/makebin.c: put output in binary mode
5432
5433 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5434
5435         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
5436         xdata and data memory on startup. Set the environment variable
5437         SDCC_NOGENRAMCLEAR to disable this.
5438         * src/mcs51/peephole.def,
5439         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
5440         (allows non-interrupt and interrupt code to safely compete for a resource
5441         without the non-interrupt code having to disable interrupts)
5442
5443 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5444
5445         * src/SDCCicode.c (geniCodeAdd),
5446         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
5447         with valFromType if type might be a pointer and host is big endian).
5448         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
5449         types, not just integer types.
5450         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
5451         multiply defined with mismatching "at" address.
5452
5453 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5454
5455         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
5456         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
5457         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
5458         with embedded nulls (fixed bug #753752)
5459
5460 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5461
5462         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
5463         Apparently this did not see much testing (endless loop)
5464
5465 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5466
5467         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
5468
5469 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5470
5471         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
5472         gracefully handle NULL memmap pointers
5473
5474 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5475
5476         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
5477         instead of deleting the iCode when an operand is volatile
5478         * src/z80/gen.c (genDummyRead),
5479         * src/mcs51/gen.c (genDummyRead),
5480         * src/ds390/gen.c (genDummyRead),
5481         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
5482         not just IC_RIGHT
5483         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
5484         * src/SDCC.y: fixed bug #850420
5485
5486 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5487
5488         Applied z80 i/o port patch from Peter Townson and fixed some operators
5489         to better handle operands in A register.
5490         * device/include/z180.h
5491         * src/SDCC.y
5492         * src/SDCCglue.c
5493         * src/z80/gen.c
5494         * src/z80/gen.h
5495         * src/z80/main.c
5496         * src/z80/peeph-z80.def
5497         * src/z80/peeph.def
5498         * src/z80/z80.h
5499
5500 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5501
5502         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
5503
5504 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5505
5506         * device/lib/hc08/_mullong.c: Removed extra #endif
5507
5508 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5509
5510         * sim/ucsim/hc08.src/inst.cc,
5511         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
5512         carries from x to h
5513         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
5514         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
5515         * device/include/stdarg.h: fixed varargs for hc08
5516         * device/lib/Makefile.in,
5517         * device/lib/hc08/Makefile,
5518         * device/lib/hc08/_mulint.c,
5519         * device/lib/hc08/_mullong.c: fixed some endian problems
5520
5521 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5522
5523         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
5524         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
5525         * device/lib/_gptrget.c,
5526         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
5527
5528 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5529
5530         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
5531         * src/SDCCast.c (astErrors): fixed bug #846007
5532         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
5533
5534 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5535
5536         * src/SDCCast.c (decorateType): disabled a transformation I added in
5537         revision 1.188 (access to fields of a structure at an absolute address);
5538         it breaks with bitfields, extern declarations, and gcse analysis.
5539         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
5540         could be assigned through a pointer, so don't complain.
5541         * src/SDCCast.c (astErrors),
5542         * src/SDCCast.h,
5543         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
5544
5545 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
5546
5547         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
5548         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
5549         output of __config directives, since gpasm now supports them
5550         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
5551         pre-processor macro, i.e. -DMCU=p18f452
5552         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
5553         and modified to handle 'cast' icode similarly to '=' icode
5554         * src/pic16/device.h (typedef struct PIC_device): added field
5555         'extMIface' to indicate that chip has external memory interface
5556         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
5557         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
5558         18F8720
5559
5560 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5561
5562         * src/SDCC.y (pointer): fixed bug #846006
5563         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
5564         * src/SDCCast.c (decorateType): fixed bug #846009
5565         * src/ds390/peeph.def,
5566         * src/ds390/gen.c (genAnd, genOr),
5567         * src/mcs51/peeph.def,
5568         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
5569
5570 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5571
5572         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
5573         * src/SDCCdflow.c
5574         * src/SDCCcse.c
5575         * src/SDCCcse.h
5576         * src/SDCCBBlock.h
5577         * src/SDCCBBlock.c
5578
5579 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
5580
5581         fixed bug #845089
5582         * src/SDCCbitv.h,
5583         * src/SDCCbitv.c: added function to free a bitvector
5584         * src/SDCClrange.h,
5585         * src/SDCClrange.c: added function to recompute the liveranges
5586         * src/avr/ralloc.c,
5587         * src/ds390/ralloc.c,
5588         * src/hc08/ralloc.c,
5589         * src/mcs51/ralloc.c,
5590         * src/pic/ralloc.c,
5591         * src/pic16/ralloc.c,
5592         * src/xa51/ralloc.c,
5593         * src/z80/ralloc.c: recompute the liveranges after register packing
5594
5595 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
5596
5597         * src/SDCCloop.c (newInduction): fixed bug #845630
5598
5599 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5600
5601         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
5602         inadvertantly left behind from my 2003-11-12 change
5603
5604 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5605
5606         Updated headers I neglected to commit yesterday.
5607         * src/SDCClrange.h,
5608         * src/SDCCicode.h
5609
5610 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5611
5612         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
5613         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
5614         * src/SDCCopt.c (eBBlockFromiCode),
5615         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
5616         the creation of the key hash table from the sequencing so it can be used
5617         earlier (for some GCSE bug fixes still pending)
5618
5619 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5620
5621         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
5622         * support/regression/tests/addsub.c: testing genPlus shortcut
5623
5624 2003-11-15  Borut Razem <borut.razem AT siol.net>
5625
5626         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
5627
5628 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5629
5630         * src/SDCCcse.c (cseBBlock): fixed bug #527779
5631         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
5632         ordering is immaterial.
5633         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
5634
5635 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5636
5637         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
5638         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
5639         (SIGSEV) of bug #840381
5640         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
5641         unlink new file before rename if new and old filenames are the same)
5642
5643 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5644
5645         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
5646         uninitialized variables) for the mcs51. Set environment variable
5647         SDCC_GENRAMCLEAR to test.
5648         xdata initialization slightly shorter
5649
5650 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5651
5652         * src/SDCCsymt.h,
5653         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
5654         #838241 & 780691 (basicly the same bug)
5655         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
5656         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
5657
5658 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
5659
5660         * src/SDCCmain.c (linkEdit): "fix" #834252
5661
5662 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5663
5664         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
5665         * src/SDCCast.h,
5666         * src/SDCC.y: fixed bug #819403
5667
5668 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5669
5670         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
5671         the reentrant attribute.
5672         * src/hc08/gen.c (genPackBits): added missing stack readjustment
5673         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
5674         simulation
5675         * src/SDCCast.c (decorateType): fixed bug with storage class not being
5676         updated during pointer dereference; f.e. ~(((char *)1)*) was being
5677         erroneously reduced to a literal.
5678         * src/hc08/ralloc.c (packRegisters, rematStr),
5679         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
5680         some cases
5681
5682 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5683
5684         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
5685         * doc/sdccman.lyx: changed from 'article' to 'book'
5686         * doc/Makefile: readded test_suite_spec and cdbfileformat
5687
5688 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
5689
5690         * device/include/stdlib.h: include malloc.h to comply with ANSI
5691         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
5692
5693 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5694
5695         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
5696         * doc/clean.mk: also remove *.out files
5697         * doc/sdccman.lyx: some additions, larger top/bottom margins
5698
5699 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5700
5701         * src/SDCC.y: fixed bug #837365
5702         * support/regression/tests/bitopcse.c
5703         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
5704         a symbol (might be valop instead)
5705         * device/lib/Makefile.in: added errno.c to HC08SOURCES
5706         * device/lib/clean.mk: added hc08 to the cleaning list
5707
5708 2003-11-04  Borut Razem <borut.razem AT siol.net>
5709
5710         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
5711           made 2003-11-04
5712         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
5713           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
5714           malloc is declared in standard stdlib.h
5715
5716 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5717
5718         * device/lib/hc08/Makefile: need to clean .rel not .o files
5719         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
5720
5721 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5722
5723         * src/port.h,
5724         * src/hc08/main.c,
5725         * src/mcs51/main.c,
5726         * src/ds390/main.c,
5727         * src/z80/main.c,
5728         * src/avr/main.c,
5729         * src/pic/main.c,
5730         * src/pic16/main.c,
5731         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
5732         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
5733         tests (which uses the port's oclsExpense function)
5734         * src/SDCC.y,
5735         * src/SDCCast.c,
5736         * src/SDCCicode.c,
5737         * src/hc08/gen.c,
5738         * src/ds390/gen.c,
5739         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
5740
5741 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5742
5743         * src/SDCCcse.c (ifxOptimize),
5744         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
5745         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
5746         deleting the IFX iCode.
5747         * src/hc08/ralloc.c: reduced unneeded slocs
5748         * src/hc08/gen.c: fixed bug in asmopToBoolean
5749
5750 2003-11-04  Borut Razem <borut.razem AT siol.net>
5751
5752         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
5753           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
5754           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
5755           transferred to configure
5756
5757 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
5758
5759         Use headers defined in the C[++] standards:
5760         * sim/ucsim/gui.src/serio.src/fileio.cc
5761         * sim/ucsim/gui.src/serio.src/frontend.cc
5762         * sim/ucsim/gui.src/serio.src/main.cc
5763         * sim/ucsim/gui.src/serio.src/posix_signal.cc
5764         * support/Util/NewAlloc.c
5765         * as/hc08/lklibr.c
5766         * as/mcs51/lklibr.c
5767         * as/z80/aslist.c
5768         * as/z80/assym.c
5769
5770 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5771
5772         * Added MSVC projects for hc08 assembler and linker:
5773         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
5774         /as/hc08/link_hc08.dsp
5775
5776 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
5777
5778         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
5779
5780 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
5781
5782         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
5783
5784 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5785
5786         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
5787
5788 2003-10-31  Borut Razem <borut.razem AT siol.net>
5789
5790         * support/cpp2/cpplib.h,
5791           support/cpp2/cpplib.c,
5792           support/cpp2/cpplex.c,
5793           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
5794           to switch _asm block preprocessing on / off. Default is
5795           #pragma preproc_asm +
5796
5797 2003-10-31  Borut Razem <borut.razem AT siol.net>
5798
5799         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
5800           when outputting comment blocks (when executed with -C option) and
5801           _asm (SDCPP specific) blocks
5802
5803 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5804
5805         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
5806
5807 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
5808
5809         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
5810
5811 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
5812
5813         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
5814         * src/SDCCast.c (decorateType): fixed bug #832664
5815
5816 2003-10-31  Borut Razem <borut.razem AT siol.net>
5817
5818         * support\cpp2\cpplex.c: fixed for SDCPP:
5819           comments(when executed with -C option) and _asm blocks
5820           were included even if they where in skipped #if block.
5821           Applied solution from GCC cpp 3.3.2
5822
5823 2003-10-31  Borut Razem <borut.razem AT siol.net>
5824
5825         * src/SDCC.lex: sdcc now understands both formats:
5826           '# <line_number> <file_name>' and
5827           '#line <line_number> <file_name>'
5828         * support/cpp2/cppmain.c: sdcpp now generates the standard
5829           '# <line_number> <file_name>' instead of former
5830           '#line <line_number> <file_name>'
5831
5832 2003-10-30  Borut Razem <borut.razem AT siol.net>
5833
5834         * support/cpp2/cpphash.h,
5835         * support/cpp2/cpplib.h
5836         * support/cpp2/cpplex.c,
5837         * support/cpp2/cppmain.c,
5838         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
5839
5840 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5841
5842         Fixed a number of problems revealed by bug #827883.
5843         * src/SDCCloop.c (loopInvariants): Spill location of the
5844         result operand should be recomputed if extracted from
5845         a loop. Also, don't extract assignments of an iTemp
5846         from a literal.
5847         * src/SDCCast.c (isConformingBody): loop reversal should
5848         not occur if the control variable is involved with a
5849         relational operator.
5850
5851 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
5852
5853         * .version: bumped to 2.3.6 to reflect the big improvements
5854         made by Erik and Klaus. Thanks!
5855
5856 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
5857
5858         Replaced the livrange code.
5859         * src/SDCClrange.c: added new LR code
5860         * src/SDCCloop.c,
5861         * src/SDCCBBlock.h: removed remainig parts from old LR code
5862         * src/ds390/ralloc.c,
5863         * src/ds390/gen.c: minor fixes to make it work with new code
5864
5865 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5866
5867         * as/hc08/asm.h,
5868         * as/hc08/lkrloc.c,
5869         * src/hc08/gen.c,
5870         * src/hc08/ralloc.c: Fix various warnings related to the hc08
5871         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
5872         (tweaked fix for bug #818696)
5873
5874 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5875
5876         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
5877
5878 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5879
5880         * src/SDCCmain.c,
5881         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
5882         * src/mcs51/gen.c (gencjneshort),
5883         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
5884         more efficient (per Scott Bronson's suggestion)
5885
5886 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5887
5888         Extended the semantics of the critical keyword to include
5889         individual statements. See RFE #827755 and #799831
5890         * src/SDCC.y
5891         * src/SDCCicode.c
5892         * src/SDCCopt.c
5893         * src/SDCCast.c
5894         * support/Util/SDCCerr.c
5895         * support/Util/SDCCerr.h
5896         * src/mcs51/gen.c
5897         * src/ds390/gen.c
5898         * src/hc08/gen.c
5899
5900 2003-10-19  Borut Razem <borut.razem AT siol.net>
5901
5902         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
5903
5904 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5905
5906         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
5907         Fixed bug #818696
5908         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
5909         and predecrement operand is displayed
5910
5911 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
5912
5913         * src/SDCCval.c (valMinus): fixed bug #826041
5914
5915 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5916
5917         Some hc08 related updates that I missed earlier
5918         * sim/ucsim/stypes.h
5919         * support/regression/ports/hc08/spec.mk
5920
5921 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5922
5923         New target "hc08" for the Motorola 68hc08 family of micros
5924
5925         * configure
5926         * configure.in
5927         * Makefile
5928         * src/hc08/*
5929         * src/SDCCmain.c
5930         * src/port.h
5931         * sim/ucsim/hc08.src/*
5932         * sim/ucsim/configure.in
5933         * src/ucsim/configure
5934         * sim/ucsim/packages_in.mk
5935         * as/hc08/*
5936         * as/Makefile
5937         * device/include/mc68hc908qy.h
5938         * device/lib/hc08/*
5939         * device/lib/Makefile.in
5940         * support/regression/ports/hc08/*
5941         * support/regression/Makefile
5942
5943 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5944
5945         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
5946         regression test
5947         * src/ds390/gen.c (genCast): fixed bug #821957
5948
5949 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
5950
5951         * device/lib/logf.c: "fixed" overlay bug
5952         * support/regression/ports/host/spec.mk: added m library
5953         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
5954         * support/regression/tests/float_trans: added (for Eric)
5955
5956 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
5957
5958         * src/mcs51/gen.c (genCpl): fixed bug
5959         http://sf.net/mailarchive/message.php?msg_id=6263915
5960
5961 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
5962
5963         * src/SDCCast.c (decorateType): added extended constant folding
5964         * src/SDCCsymt.c (computeType): cleanup
5965         * src/SDCCval.c (valShift): minor optimization
5966         * support/regression/tests/ast_constant_folding.c: added
5967
5968 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5969
5970         * src/SDCCmain.c: removed some unintended changes
5971
5972 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5973
5974         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
5975         * src/z80/gen.c: fixed part of bug #817589
5976         * src/SDCCsymt.c (checkFunction): fixed bug #817895
5977
5978 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
5979
5980         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
5981         * src/SDCCcflow.c
5982         * src/SDCCcse.c
5983         * src/SDCCdflow.c
5984         * src/SDCClabel.c
5985         * src/SDCClrange.c
5986         * src/SDCCmem.c
5987         * src/SDCCopt.c
5988         * src/SDCCpeeph.c
5989         * src/SDCCset.c
5990         * src/avr/ralloc.c
5991         * src/ds390/ralloc.c
5992         * src/izt/ralloc.c
5993         * src/mcs51/ralloc.c
5994         * src/pic/ralloc.c
5995         * src/pic16/ralloc.c
5996         * src/xa51/ralloc.c
5997         * src/z80/ralloc.c
5998         * src/z80/gen.c: removed unused label "release:"
5999
6000 2003-10-06  Borut Razem <borut.razem AT siol.net>
6001
6002         * src/SDCC.lex: removed definition of unused variables
6003           save_optimize and save_options
6004
6005 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
6006
6007         * clean.mk: removed '=' in "-maxdepth=1"
6008         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
6009         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
6010
6011 2003-10-06  Borut Razem <borut.razem AT siol.net>
6012
6013         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
6014           my_unput() replaced by unput()
6015
6016 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
6017
6018         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
6019         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
6020         type-punned pointer will break strict-aliasing rules"
6021         Old LR behaviour is again default; Klaus' LR can be choosen by
6022         defining the environment variable LRKLAUS
6023         * src/SDCCBBlock.h
6024         * src/SDCCloop.c
6025         * src/SDCClrange.c
6026         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
6027         * clean.mk: fixed removal of files in bin/CVS/
6028         * device/lib/clean.mk: fixed removal of directories small and large
6029         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
6030         * src/SDCCicode.c,
6031         * src/SDCCval.c: removed superflous test for pedantic
6032
6033 2003-10-05  Borut Razem <borut.razem AT siol.net>
6034
6035         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
6036           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
6037           message "unmatched #pragma SAVE and #pragma RESTORE"
6038
6039 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6040
6041         * doc/sdccman.lyx: various additions and updates (interrupts, inline
6042           assembly, critical functions, atomic, nojtbound)
6043
6044 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
6045
6046         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
6047         * src/SDCCBBlock.h
6048         * src/SDCCloop.c
6049         * src/SDCCloop.h
6050         * src/SDCClrange.c
6051
6052 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6053
6054         * src/z80/gen.h,
6055         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6056         * src/mcs51/gen.h
6057         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6058         * src/ds390/gen.h
6059         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6060         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
6061         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
6062
6063 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6064
6065         * src/z80/gen.c (genRet): fixed bug #524753
6066         * src/z80/gen.c (genCast): fixed internal error on cast from
6067         pointer to long
6068         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
6069         fix for bug #477835 to the z80
6070         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
6071         for tracking iCodes in the peephole optimizer for z80
6072
6073 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6074
6075         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
6076         the other part of bug #814548
6077         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
6078
6079 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
6080
6081         * src/SDCCcse.c: fixed part of bug #814548
6082
6083 2003-09-28  Borut Razem <borut.razem AT siol.net>
6084
6085         * src/asm.c: rewrite of printILine() to use temporary file instead
6086           a pipe
6087         * src/xa51/main.c: commented out declaration of int rewinds
6088
6089 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6090
6091         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
6092
6093 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6094
6095         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
6096         * src/asm.c (printILine): Fixed bug #811015
6097
6098 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6099
6100         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
6101         freeing.
6102
6103 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6104
6105         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
6106         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
6107         to correctly handle general case of AOP_PAIRPTR
6108         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
6109
6110 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6111
6112         * src/mcs51/ralloc.c (fillGaps),
6113         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
6114         register positioning bug)
6115
6116 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
6117
6118         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
6119
6120 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6121
6122         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
6123         genCodePointerGet, genGenPointerGet, genFarPointerSet,
6124         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
6125         (ralloc doesn't intentionally do this now, but perhaps later)
6126         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
6127         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
6128         register positioning bugs (Fixed bug #762602 and #795325)
6129         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
6130         (Fixed bug #808779)
6131         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
6132         lines that --i-code-in-asm generates
6133
6134 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6135
6136         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
6137         trying to fclose a FILE* that was already closed.
6138
6139 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6140
6141         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
6142         of const struct should be treated as if const themselves)
6143
6144 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
6145
6146         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
6147
6148 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6149
6150         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
6151         Unix (/n) and DOS (/r/n) line terminations.
6152
6153 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6154
6155         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
6156         bug #613775
6157
6158 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6159
6160         * src/mcs51/gen.c (genFunction, genEndFunction),
6161         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
6162         and restore of EA so that stack offsets to parameters are
6163         correct when using both critical and reentrant/stack-auto.
6164         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
6165         size (can be triggered in error if sloc is shared between
6166         different sized objects)
6167         * device/include/float.h: fixed macros to explicitly use
6168         unsigned long where needed
6169
6170 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
6171
6172         Feature req. 799831: added code to allow nesting of critical functions
6173         * src/mcs51/gen.c (genFunction, genEndFunction)
6174         * src/ds390/gen.c (genFunction, genEndFunction)
6175
6176 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6177
6178         * src/SDCCsymt.c (sclsFromPtr),
6179         * src/SDCCsymt.h,
6180         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
6181         support for standard C idiom of memory mapped variables; for
6182         example, *((xdata int*)0x1234) = 1 is now internally equivalent
6183         to xdata int at 0x1234 tempvar = 1.
6184         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
6185         provided by Akiya ISHIDA
6186
6187 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
6188
6189         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
6190         * src/SDCCval.c (constVal): added reduction from int to char
6191         * src/SDCCval.c (valMult, valDiv): fixed sign handling
6192         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
6193         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
6194         to ignore the sign
6195         * support/regression/tests/shifts.c: fixed
6196
6197 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6198
6199         * src/z80/gen.c (genXor): Fixed bug #805445
6200
6201 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6202
6203         Fixed bug #621531 (const & volatile confusion in the type chain).
6204         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
6205         refer to the const or volatile state of the pointer itself.
6206
6207         * src/SDCCast.c
6208         * src/SDCCglue.c
6209         * src/SDCCicode.c
6210         * src/SDCCsymt.c
6211         * src/SDCCval.c
6212         * src/SDCC.y
6213         * src/SDCCsymt.h
6214         * src/pic/gen.c
6215         * src/pic/ralloc.c
6216         * src/pic16/gen.c
6217         * src/pic16/ralloc.c
6218         * support/regression/tests/const.c
6219
6220 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6221
6222         When checking for duplicated modules, use absolute paths
6223         instead of relative paths.  Files changed:
6224
6225         * as/mcs51/lklib.c
6226         * link/z80/lklib.c
6227
6228 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6229
6230         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
6231
6232 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6233
6234         * device/include/string.h: added size_t typedef, changed
6235         prototypes to use size_t, eliminated separate reentrant and
6236         non-reentrant declarations, added _memmove declaration
6237         * device/lib/_memcpy.c: changed to use size_t instead of int,
6238         changed /4 to >>2 to avoid division library call
6239         * device/lib/_memcmp.c,
6240         * device/lib/_memset.c,
6241         * device/lib/_strncat.c,
6242         * device/lib/_strncpy.c,
6243         * device/lib/_strncmp.c: changed to use size_t instead of int
6244         * device/lib/_memmove.c: new file (fixed bug #772294)
6245         * device/lib/Makefile.in: added _memmove.c
6246         * device/lib/z80/asm_strings.s: fixed bug #772290
6247         * support/regression/tests/bitfields.c: attempt to fix host assertion
6248         failure on amd64-unknown-linux2.2
6249
6250 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6251
6252         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
6253         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
6254         * as/z80/asmain.c (main): fixed bug #801766
6255
6256 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
6257
6258         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
6259         compilers
6260
6261 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6262
6263         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
6264         reported in bug #800609
6265
6266 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
6267
6268         * Top header beautifications in src/pic16 directory:
6269           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
6270           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
6271           pcoderegs.h, ralloc.c, ralloc.h
6272         * main.c: added top header and GPL license notice
6273         * pcode.c: fixed the if-conditional warning
6274
6275 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
6276
6277         * device/lib/_mullong.c: replaced int by short for gcc
6278
6279 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6280
6281         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
6282         and JUMPTABLE iCodes properly now (worked by accident before)
6283         * src/mcs51/gen.c (leftRightUseAcc),
6284         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
6285         iCode properly now. Use getSize instead of nRegs since a & b
6286         aren't part of the nRegs tally.
6287
6288 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
6289
6290         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
6291         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
6292           before instructions that use the _STATUS register
6293
6294 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
6295
6296         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
6297         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
6298         fetching of the pointer
6299         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
6300         copied from genNearPointerSet()
6301         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
6302         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
6303         If they pop r0/r1 they must be called in the opposite order than aopOp().
6304         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
6305         (resp. --stack-auto), prepared for --xstack
6306
6307 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6308
6309         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
6310
6311 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
6312
6313         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
6314         these ports have their own __sdcc_external_start()
6315
6316 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
6317
6318         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6319         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
6320         type for bits was changed. It resulted in bit variables becoming
6321         global, which is not permitted in PIC 14 assembly output.
6322
6323 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6324
6325         * doc/sdccman.lyx: various additions and updates. Rearranged sections
6326
6327 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6328
6329         Z80 and MCS51 linkers complaint if a public symbol is defined
6330         in more than one library module:
6331
6332         * as/mcs51/lklib.c
6333         * link/z80/lklib.c
6334         * as/mcs51/Makefile.in
6335
6336 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6337
6338         A few small changes that speed up the peephole optimizer.
6339
6340         * src/SDCCpeeph.c
6341
6342 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6343
6344         Try to make the peephole optimizer smarter by maintaining
6345         an association between the assembly source code and the
6346         iCodes that originated them. Put this information to use
6347         with a new peephole rule condition "notVolatile" so that
6348         the rules can be aggressive yet still safe.
6349
6350         * src/SDCCpeeph.c
6351         * src/SDCCpeeph.h
6352         * src/mcs51/gen.c
6353         * src/mcs51/peeph.def
6354
6355 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6356
6357         Fixed bug #741761
6358
6359         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
6360         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
6361         if the left or right operand symbols have the accuse flag set.
6362
6363 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6364
6365         Changed the type of the result of the ! (NOT) operator to char;
6366         previously it returned the same type as the source. This allows
6367         us to eliminate all the genFloatNot functions (all of its target
6368         implementations were very buggy) since !float can use the same
6369         code as !long now.
6370
6371         * src/SDCCicode.c (ast2iCode): ! returns char
6372         * src/mcs51/gen.c (genNot, genNotFloat),
6373         * src/ds390/gen.c (genNot, genNotFloat),
6374         * src/z80/gen.c (genNot, genNotFloat),
6375         * src/pic/gen.c (genNot, genNotFloat),
6376         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
6377
6378 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
6379
6380         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6381         1. Interrupt would not compile properly. Ensure PCLATH register is saved
6382            during interrupts. Ensure WSAVE is located at a shared bank address.
6383         2. Fixed page selection in some places
6384         3. Fixed BTFSS/C to where necessary use registers directly and not simply
6385            the registers name strings.
6386         4. Fixed "signed / unsigned compare" compiler warnings.
6387         5. The PIC port manages its own allocation of the general purpose
6388            registers, but makes no attempt to reuse them. As a result when
6389            compiling it soon runs out of general purpose registers. Some
6390            additional code was added to the files pcode.c and device.c to walk
6391            through the function call tree and rename the registers so that they
6392            get reused.
6393
6394         * src/pic/device.c
6395         * src/pic/gen.c
6396         * src/pic/glue.c
6397         * src/pic/pcode.c
6398         * src/pic/pcode.h
6399         * src/pic/ralloc.c
6400         * src/pic/ralloc.h
6401         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
6402         genPlus() & genMinus() when the result is the same as left or right
6403
6404 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6405
6406         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
6407
6408 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6409
6410         Made bitfield a distinct type from bit so that bitfields
6411         convert as per ANSI C and bits retain their traditional
6412         boolean style behaviour. Implemented bitfield support in
6413         the z80 port.
6414
6415         * src/SDCCsymt.h,
6416         * src/SDCCsymt.c,
6417         * src/SDCCast.c,
6418         * src/cdbFile.c,
6419         * src/mcs51/gen.c,
6420         * src/ds390/gen.c: bit v bitfield split
6421         * src/z80/gen.c: New support for bitfields
6422         * support/regression/tests/bitfields.c: reenabled z80,
6423         added more tests
6424
6425 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6426
6427         Rules 246.x, 247.x relate to bitfields, the others speed up
6428         access to xdata mapped I/O devices.
6429
6430         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
6431
6432 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6433
6434         Cleaned up genPackBits and genUnpackBits and added two helper
6435         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
6436         for literal assignments in genPackBits (thanks to Frieder for
6437         reminding me).
6438
6439         * src/mcs51/gen.c
6440         * src/ds390/gen.c
6441
6442 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6443
6444         Fixed bug #748310 (pointer to function type mishandled when the
6445         function name is omitted). Also fixed a SIGSEGV when a function
6446         attribute (reentrant, etc) is used on a non-function or on a
6447         function but misplaced before the parameter list.
6448
6449         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
6450         bug #748310
6451         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
6452         * support/Util/SDCCerr.h,
6453         * support/Util/SDCCerr.c: Added func attr misuse error msg
6454
6455 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
6456
6457         Fixed bug #787649 by anonymous
6458         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
6459         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
6460
6461 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6462
6463         Fixed numerous bitfield problems.
6464
6465         * src/SDCC.y: More bitfield related error checking
6466         * src/SDCCsymt.h,
6467         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
6468         * support/Util/SDCCerr.h,
6469         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
6470         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
6471         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
6472         * support/regression/tests/bitfields.c: tests added
6473
6474 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6475
6476         Made the constant following the "interrupt" keyword optional. If
6477         omitted, the function will not automatically be given an entry
6478         in the interrupt vector table (similar to #pragma NOIV, but
6479         less syntacticly kludgy). The interrupt number is also now
6480         range checked. Also fixed a bug in the high order bit example
6481         in the manual.
6482
6483         * src/SDCC.y
6484         * src/SDCCmem.c
6485         * src/SDCCglue.c
6486         * src/SDCCsymt.h
6487         * support/Util/SDCCerr.c
6488         * support/Util/SDCCerr.h
6489         * doc/sdccman.lyx
6490
6491 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
6492
6493         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
6494         * src/SDCCicode.c (operandOperation): rewritten some ops
6495         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
6496         * src/SDCCsymt.c (computeType): literals are handled the same way as any
6497         other type
6498         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
6499         be re-activated by defining REDUCE_LITERALS)
6500         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
6501         unsigned, but are signed by default
6502         * src/SDCCval.c (constVal): rearranged
6503         * src/SDCCval.c (valMod): preliminary fix
6504         * src/SDCCval.c (valCastLiteral): use TYPE_* types
6505         * support/regression/literalop.c: added, work in progress
6506
6507 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6508
6509         Generate warnings for useless declarations like "char data;"
6510         that don't do what new users expect.
6511
6512         * src/SDCC.y
6513         * support/Util/SDCCerr.h
6514         * support/Util/SDCCerr.c
6515
6516 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
6517
6518         * src/SDCCval.c (valMult): fix overflow detection of negative int
6519
6520 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6521
6522         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
6523
6524         Changes to support big endian targets:
6525
6526         * src/ports.h
6527         * src/SDCCglue.c
6528         * src/avr/main.c
6529         * src/ds390/main.c
6530         * src/izt/i186.c
6531         * src/mcs51/main.c
6532         * src/pic/main.c
6533         * src/pic16/main.c
6534         * src/xa51/main.c
6535         * src/z80/main.c
6536
6537 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
6538
6539         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
6540         * device/lib/time.c: fixed warning "integer overflow in expression"
6541
6542 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
6543
6544         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
6545         * src/SDCCval.c (constVal): changed default to signed; hex and octal
6546         constants are unsigned; added recognition of "u" flag for unsigned
6547         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
6548         * src/SDCCval.c (valDiv, valMod): fixed signdness
6549         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
6550         signedness of modulo, left and right shift
6551         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
6552         * support/Util/SDCCerr.h: added warning W_INT_OVL
6553         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
6554         * src/SDCCast.c (ast_print): improved output of constants
6555
6556 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6557
6558         Fixed some warnings when building with MSVC:
6559
6560         * as\mcs51\asdata.c
6561         * as\z80\asdata.c
6562         * as\mcs51\asm.h
6563         * as\z80\asm.h
6564         * link\z80\aslink.h
6565         * link\z80\lkdata.c
6566         * link\z80\lkeval.c
6567         * link\z80\lkgb.c
6568         * link\z80\lkihx.c
6569         * link\z80\lks19.c
6570         * link\z80\lksym.c
6571         * support\cpp2\cpplib.c
6572         * src\ds390\gen.c
6573         * src\mcs51\gen.c
6574
6575 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
6576
6577         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
6578
6579 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6580
6581         * support\librarian\clean.mk: Do not remove Makefile.
6582         * support\librarian\Makefile: added.
6583
6584 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6585
6586         Added librarian to MSVC build:
6587         * all.dsp
6588         * sdcc.dsw
6589         * support\librarian\librarian.dsp
6590
6591         'configure' not needed for librarian, removed:
6592         * support\librarian\configure
6593         * support\librarian\configure.in
6594         * support\librarian\config_in.h
6595         * support\librarian\Makefile.in
6596
6597         Hopefully these ones built the librarian and the rest of sdcc properly:
6598         * Makefile
6599         * Makefile.common.in
6600
6601         Messed up 'configure', so revert to previous version:
6602         * configure
6603         * configure.in
6604
6605 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
6606
6607         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
6608         there, while the mantissa of a double is "only" 53 bits wide.
6609
6610 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6611
6612         Adding sdcclib to the build.  MSVC project coming soon.
6613         Files added/changed:
6614
6615         * support\librarian\clean.mk
6616         * support\librarian\configure
6617         * support\librarian\configure.in
6618         * support\librarian\config_in.h
6619         * support\librarian\Makefile.bcc
6620         * support\librarian\Makefile.in
6621         * support\librarian\sdcclib.c
6622         * Makefile.bcc
6623         * Makefile
6624         * Makefile.common.in
6625         * configure
6626         * configure.in
6627
6628 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6629
6630         Linker now complaints if linked modules have conflicting options, for
6631         example, one compiled using --model-large and another one compiled with
6632         --model-small.  The following files were modified:
6633
6634         * as\mcs51\asdata.c
6635         * as\mcs51\aslink.h
6636         * as\mcs51\asm.h
6637         * as\mcs51\asmain.c
6638         * as\mcs51\asout.c
6639         * as\mcs51\i51pst.c
6640         * as\mcs51\lkdata.c
6641         * as\mcs51\lklibr.c
6642         * as\mcs51\lkmain.c
6643         * as\z80\asdata.c
6644         * as\z80\asm.h
6645         * as\z80\asmain.c
6646         * as\z80\asout.c
6647         * as\z80\z80pst.c
6648         * link\z80\aslink.h
6649         * link\z80\lkdata.c
6650         * link\z80\lklibr.c
6651         * link\z80\lkmain.c
6652         * src\SDCCglue.c
6653
6654 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6655
6656         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
6657         as/mcs51/lklibr.c: Generate a warning when a library is not found.
6658
6659 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
6660
6661         * src/z80/mappings.i: fix _mul[us][int,long] entries
6662
6663 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6664
6665         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
6666
6667 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
6668
6669         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
6670         * support/regression/tests/bitopcse.c: added
6671         fixed warning:
6672         * src/avr/gen.c:
6673         * src/pic/gen.c:
6674         * src/pic16/gen.c:
6675         * src/z80/gen.c:
6676         * src/xa51/gen.c:
6677
6678 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6679
6680         added support for new library format to z80, gbz80 linkers:
6681         *link/z80/aslink.h
6682         *link/z80/lklex.c
6683         *link/z80/lklib.c
6684         *link/z80/lklist.c
6685
6686 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
6687
6688         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
6689         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
6690
6691 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
6692
6693         added DUMMY_READ_VOLATILE:
6694         * src/SDCC.y:
6695         * src/avr/gen.c:
6696         * src/xa51/gen.c:
6697         * src/z80/gen.c:
6698         * src/pic/gen.c:
6699         * src/pic16/gen.c:
6700         * src/mcs51/gen.c:
6701         * src/ds390/gen.c:
6702         * src/SDCCcse.c (algebraicOpts): many improvements
6703         * src/SDCCcse.h: removed algebraicOpts()
6704         * src/SDCCicode.c (picDummyRead): added
6705
6706 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6707
6708         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
6709         "Insufficient space in data memory".
6710
6711 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6712
6713         * src/mcs51/gen.c: fixed bug #771358
6714         * src/z80/gen.c: fixed bug #759087
6715
6716 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
6717
6718         * src/pic16/glue.c: minor cleanup by Vangelis
6719
6720 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6721
6722         * device/include/regc515c.h: fixed #758477
6723         * device/lib/_gptrget.c: saving some cycles in generic pointer get
6724         * device/lib/_gptrput.c: saved a few bytes
6725         * my tab spacing is 8, yours too?)
6726         * device/lib/_ser.c: process RX bytes earlier than TX bytes
6727         * device/lib/serial.c: process RX bytes earlier than TX bytes
6728         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
6729
6730 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6731
6732         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
6733
6734 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6735
6736     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
6737
6738 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
6739
6740         * device/lib/Makefile.in: bad fix, reverted to 1.43
6741
6742 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
6743
6744         * device/lib/Makefile.in: added missing z80 object files
6745
6746 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
6747
6748         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
6749         pic16 progress by Vangelis:
6750         * src/SDCCglobl.h:
6751         * src/SDCCmain.c:
6752         * src/pic/Makefile:
6753         * src/pic:
6754         * pic/Makefile:
6755         * pic16/device.c:
6756         * pic16/device.h:
6757         * pic16/gen.c:
6758         * pic16/gen.h:
6759         * pic16/genarith.c:
6760         * pic16/glue.c:
6761         * pic16/main.c:
6762         * pic16/pcode.c:
6763         * pic16/pcode.h:
6764         * pic16/pcodepeep.c:
6765         * pic16/peeph.def:
6766
6767 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6768
6769     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
6770
6771 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6772
6773     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
6774     added gbz80 build to MSVC project.
6775     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
6776     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
6777     from 8051 stuff and setup so it links using a .lnk file.
6778
6779 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6780
6781     * support/librarian/sdcclib.c: sdcc librarian.
6782     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
6783     with sdcclib.
6784
6785 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6786
6787     * as/mcs51/lkmain.c: properly handle extensions in function afile.
6788
6789 2003-07-02  Borut Razem <borut.razem AT siol.net>
6790
6791         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
6792         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
6793         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
6794         src/xa51/main.c, src/z80/main.c:
6795         virtualization of glue() function: each port has it's own glue function,
6796         which is accessed by do_glue function pointer in PORT.general structure
6797
6798 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
6799
6800         * DS800C400 fun, improved ROM interface and tinibios.
6801
6802 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
6803
6804         * More support for DS80C400. Now includes beginning of interface to ROM.
6805
6806 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
6807
6808         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
6809
6810 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6811
6812         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
6813
6814 2003-06-19  Borut Razem <borut.razem AT siol.net>
6815
6816         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
6817
6818 2003-06-19  Borut Razem <borut.razem AT siol.net>
6819
6820         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
6821         fixed Z80 port - crt0.o: cannot open.
6822
6823 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
6824
6825         * support/Util/MySystem.c (merge_command): revert bad fix
6826
6827 2003-06-18  Borut Razem <borut.razem AT siol.net>
6828
6829         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
6830
6831 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6832
6833         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
6834         option --use-stdout sends errors to stdout instead of stderr.
6835
6836 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
6837
6838         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
6839
6840 2003-06-15  Borut Razem <borut.razem AT siol.net>
6841
6842         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
6843         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
6844         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
6845         fixed width array of pointers replaced with sets;
6846         multiple include and lib paths ared transferred to preprocessor and linker
6847         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
6848         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
6849         fixed width array of pointers
6850         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
6851         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
6852         fixupPath(), getPathDifference()
6853         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
6854         fixed width array of pointers
6855
6856 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
6857
6858         * src/pic16/ralloc.c: fix warnings
6859         * src/pic16/pcode.c: fix warning
6860
6861 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
6862
6863          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
6864         know all the details, but essentially this set of changes enable
6865         the pic16 port to generate movff instructions and generate assembler
6866         directives,
6867         * src/SDCCmain.c:
6868         * src/pic16/gen.c:
6869         * src/pic16/glue.c:
6870         * src/pic16/pcode.c:
6871         * src/pic16/device.c:
6872         * src/pic16/main.c:
6873         * src/pic16/pcode.h:
6874         * src/pic16/pcoderegs.c:
6875         * src/pic16/ralloc.c:
6876         * src/pic16/ralloc.h:
6877
6878 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6879
6880         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
6881         added option --vc, so sdcc errors and warnings are compatible with
6882         Microsoft Visual Studio.
6883
6884 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6885
6886         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
6887           device/lib/libfloat.lib: added atof function.
6888
6889 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
6890
6891         * doc/sdccman.lyx: updated to Lyx 1.3
6892         * doc/cdbfileformat.lyx: updated to Lyx 1.3
6893         * doc/test_suite_spec.lyx: updated to Lyx 1.3
6894         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
6895
6896 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
6897
6898         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
6899
6900 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6901
6902         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
6903           additions to the "related tools/documentation" section
6904
6905 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
6906
6907         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
6908
6909 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
6910
6911         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
6912         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
6913
6914 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
6915
6916         * doc/sdccman.lyx: fix double dash and other minor things
6917         * doc/Makefile: fix double dash
6918
6919 2003-05-28  Karl Bongers(patches from Martin Helmling)
6920         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
6921           condition and ignore commands.
6922
6923 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6924
6925         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
6926           is in parts still quite out of date, I did changes as far as I felt makes sense
6927           for a non-native english speaker.
6928           Please feel free to add to the manual or to correct my changes.
6929         * doc/Makefile: undid touching the date of intermediate tex files.
6930
6931 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6932
6933         * doc/sdccman.lyx: Manual has an index now
6934
6935 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
6936
6937         Finalize muluint/mulsint and mululong/mulslong merging:
6938         * device/lib/_mulint.c
6939         * device/lib/_mullong.c
6940         * device/lib/gbz80/mul.s
6941         * device/lib/gbz80/stubs.s
6942         * device/lib/z80/mul.s
6943         * device/lib/z80/stubs.s
6944         * src/SDCCsymt.c (initCSupport)
6945
6946 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6947
6948         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
6949         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
6950           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
6951           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
6952           instead of /Zm500.
6953
6954 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6955
6956         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
6957           the regression tests I'm not brave enough to enable 245.b, 245.c
6958         * doc/sdccman.lyx: added latex preamble for hyperref package.
6959           Using pdflatex this will give you a hyperlinked pdf file with
6960           bookmarks. (prepend '%' before /usepackage if this breaks something)
6961
6962 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6963
6964          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
6965
6966 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
6967
6968         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
6969
6970 2003-05-21    <johan AT balder>
6971
6972         * src/SDCCglue.c (printIval): fixed bug #739934
6973
6974 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
6975
6976         Applied patch from bug 737905 (renamed yylineo to mylineno):
6977         * src/altlex.c
6978         * src/SDCCast.c
6979         * src/SDCglobl.h
6980         * src/SDCC.lex
6981         * src/SDCCsymt.c
6982         * src/SDCCval.c
6983         * src/pic16/pcode.c: Cleaned warnings
6984         * src/pic16/pcodeflow.c: Cleaned warnings
6985         * src/pic16/pcoderegs.c: Cleaned warnings
6986
6987 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
6988
6989         * src/pic16/pcode.c: Cleaned warnings
6990         * src/pic16/pcodepeep.c: Cleaned warnings
6991         * src/pic16/ralloc.c: Cleaned warnings
6992
6993 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
6994
6995         * doc/sdccman.lyx: fixed bug 739745
6996         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
6997
6998 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
6999
7000         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
7001         it can be defined with CFLAGS when running configure
7002         * src/SDCCmain.c: fixed compiling + linking with object files
7003
7004 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
7005
7006         * configure.in: configure for pic16 port,
7007             added --disable-pic16-port
7008         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
7009         * src/SDCCmain.c: linkOptions is changed to set *,
7010             added if/endif conditional macros to remove options help
7011             messages from optionsTable when a port is not configured, added
7012             support for the PIc16 port in the ports table, when executing
7013             the compiler with no port specified on command line, a default
7014             port is selected with the new macro DEFAULT_PORT which is
7015             defined in port.h, in setDefaultOptions() linkOptions is removed
7016             from initialization assignment, since now it is a set,
7017             parseCmdLine uses setParseWithComma for linkOptions, in
7018             linkEdit() linkOptions are accessed with new function indexSet()
7019             which returns the i'th item of a set variable. See SDCCset.c, in
7020             linkEdit() when calling buildCmdLine(), added linkOptions as
7021             last argument. Now users can pass arguments to gplink via the
7022             -Wl option, main() uses pic16glue() to glue up pic16 programs
7023         * src/SDCCpeeph.c: various changes to support pic16
7024         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
7025             return the i'th item of the set
7026         * src/SDCCset.h: added function prototype for indexSet()
7027         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
7028         * src/clean.mk: added pic16 in CLEANALLPORTS variable
7029         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
7030             added macro DEFAULT_PORT
7031         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
7032         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
7033             generated
7034         * src/pic16/glue.c: commented out some error producing lines
7035         * src/pic16/main.c: __config directives are commented out to stop
7036             gpasm complaining and test the linkage with gplink, _linkCmd and
7037             _asmCmd changed to be more gplink and gpasm friendly
7038         * src/pic16/peeph.def: peep rule 3 is commented out, since it
7039             produced an error when parsed, peep rule 12 is added to utilize
7040             movff, but it is commented out since the pCode does not support
7041             yet a command with 2 address arguments
7042
7043 2003-05-18    <johan AT balder>
7044
7045         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7046         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7047 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
7048
7049         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
7050   Added feature to script commands from file.
7051
7052 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
7053
7054         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
7055         * src/SDCCutil.c: include ctype.h for win32
7056
7057 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
7058
7059         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
7060
7061 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
7062
7063         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
7064   Fixed so you can set breakpoints prior to run, run does not stop
7065   on entry now.  Add tbreak.  Other enhancements and fixes for use
7066   with ddd.
7067
7068 2003-05-12  Borut Razem <borut.razem AT siol.net>
7069
7070         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
7071
7072 2003-05-11  Borut Razem <borut.razem AT siol.net>
7073
7074         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
7075         the path of bin directory, so that PATH is the only env. variable, which has to be set
7076         in case of standard installation.
7077         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
7078         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
7079         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
7080
7081 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7082
7083         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
7084         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
7085         temp files are in the port dir; clean the gen/test directory when
7086         generating new test.c
7087         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
7088         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
7089         * support/regression/tests/zeropad.c: added
7090
7091 2003-05-09    <johan AT balder>
7092
7093         * src/SDCCglue.c: fixed bug #597940
7094
7095 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
7096
7097         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7098   cache sfr, optimize next,step, fix off by one sourceline,
7099   support ddd list function.
7100         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
7101
7102 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7103
7104         * support/regression/HTMLgen.py: added compare_s2f()
7105         * support/regression/Makefile: redo 1.27
7106         * support/regression/generate-cases.py: redo 1.5
7107
7108 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
7109
7110         * support/regression/tests/float.c: workaround 33 bit hex constant
7111         * support/regression/tests/simplefloat.c: fix division for host
7112
7113 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
7114
7115         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
7116         that tame's the PIC's over-aggressive optimizer.
7117
7118 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7119
7120          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
7121          support for MSVC.
7122
7123 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
7124
7125         Initial support for DS80C400. "Hello world" runs on TINIm400
7126         (with polled I/O).
7127
7128 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
7129
7130          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7131          * Some notes on ddd usage added in debugger/README
7132          Martin Helmling adding more features and fixes for ddd GUI debugger.
7133          Code added for nexti, stepi, up, down, and other adjustments.
7134
7135 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
7136
7137         * src/pic/pCodepeep.c non-wildcard asmops are now handled
7138         * src/pic/peeph.def Added two rules to optimize carry manipulation
7139         * src/pic/* removed debug printfs
7140
7141 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
7142
7143         * debugger/mcs51/cmd.c: added header newalloc.h
7144
7145 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
7146
7147         * as/Makefile: new EXEEXT
7148         * as/z80/Makefile: remove trailing slash of BUILDIR
7149         * as/z80/clean.mk: new EXEEXT
7150         * Makefile.common.in: add to CFLAGS (and others), don't replace it
7151         * support/cpp2/Makefile.in: new EXEEXT
7152         * src/pic/glue.c (pic14emitRegularMap): fixed warning
7153
7154 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
7155
7156         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
7157         EXEEXT was introduced to fix all related problems with targets
7158         "clean", "install" and "uninstall"; a couple of further flaws
7159         especially with "clean" have been fixed too
7160         * as/mcs51/Makefile.in
7161         * as/mcs51/clean.mk
7162         * as/z80/Makefile
7163         * Makefile
7164         * clean.mk
7165         * debugger/mcs51/Makefile.in
7166         * debugger/mcs51/clean.mk
7167         * link/z80/Makefile
7168         * link/z80/Makefile.in
7169         * link/z80/clean.mk
7170         * link/Makefile
7171         * packihx/Makefile.in
7172         * packihx/clean.mk
7173         * sim/ucsim/Makefile
7174         * sim/ucsim/clean.mk
7175         * sim/ucsim/avr.src/Makefile.in
7176         * sim/ucsim/avr.src/clean.mk
7177         * sim/ucsim/s51.src/Makefile.in
7178         * sim/ucsim/s51.src/clean.mk
7179         * sim/ucsim/xa.src/Makefile.in
7180         * sim/ucsim/xa.src/clean.mk
7181         * sim/ucsim/z80.src/Makefile.in
7182         * sim/ucsim/z80.src/clean.mk
7183         * sim/ucsim/main_in.mk
7184         * sim/ucsim/packages_in.mk
7185         * sim/ucsim/gui.src/Makefile.in
7186         * sim/ucsim/gui.src/serio.src/Makefile.in
7187         * sim/ucsim/gui.src/serio.src/clean.mk
7188         * src/Makefile.in
7189         * src/clean.mk
7190         * support/cpp2/Makefile.in
7191         * support/cpp2/clean.mk
7192         * support/makebin/Makefile
7193         * support/makebin/clean.mk
7194         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
7195         * doc/sdccman.lyx: --program-suffix no longer needed
7196
7197 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
7198
7199          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
7200          Martin Helmling added support for ddd GUI debugger.
7201          Code added to display assembly, set variables, and other commands
7202          to interface to ddd.
7203
7204 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
7205
7206         * as/Makefile: fix target clean
7207         * as/clean.mk: fix target clean
7208         * as/z80/clean.mk: fix target clean
7209
7210 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
7211
7212         * Makefile.common.in: added  AT EXEEXT AT
7213         * configure.in: removed all mingw32 stuff
7214         * configure: rebuilt from configure.in
7215         * doc/sdccman.lyx: updated section "installation"
7216         * support/scripts/sdcc_mingw32: adapted to configure
7217         * support/scripts/sdcc_cygwin_mingw32: added
7218
7219 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
7220
7221         * src/pic Added object file support for the PIC port
7222         * src/pic Applied patch from Craig Franklin (this started the object file support)
7223         * src/regression Updated the PIC regression tests for object files
7224
7225 2003-04-20  Borut Razem <borut.razem AT siol.net>
7226
7227         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
7228           lklex.c: In function `getfid':
7229           lklex.c:203: warning: array subscript has type `char'
7230         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
7231           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
7232         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
7233           stack handling macros
7234
7235 2003-04-19  Borut Razem <borut.razem AT siol.net>
7236
7237         * "handling space characters in file path" task:
7238         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
7239         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
7240         * support/Util/MySystem.h: make it self-sufficient
7241         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
7242           src/z80/main.c, sdcc/as/mcs51/lklex.c:
7243           handling space characters in file path
7244         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
7245           (it will be used by assemblers, which have their own includes, e.g. gpasm)
7246         * support/Util/MySystem.c: handling space characters in executable's path
7247
7248 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
7249
7250         * as/z80/Makefile: fix permanent rebuild of z80
7251         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
7252         * support/regression/tests/bitfields.c: added Johan's bitfields.c
7253
7254 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
7255
7256         * src/SDCCopt.c: add special case optimization to replace modulo by
7257           a power of two with a bitwise AND.
7258
7259 2003-04-18    <johan AT balder>
7260
7261         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
7262
7263 2003-04-17    <johan AT balder>
7264
7265         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
7266         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
7267
7268 2003-04-13  Borut Razem <borut.razem AT siol.net>
7269
7270         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
7271         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
7272           fixed mingw problem in adl_NORMALIZE_PATH
7273
7274 2003-04-12  Borut Razem <borut.razem AT siol.net>
7275
7276         * fixed "#pragma SAVE/RESTORE can not be nested":
7277         * src/SDCC.lex: reworked pragma handling functions
7278         * sdcc/src/SDCCglobl.h: reworked stack handling macros
7279         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
7280
7281 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7282
7283         * src/SDCCutil.c (pathEquivalent): defined but not used
7284         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
7285         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
7286         * configure: rebuilt from configure.in
7287         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7288         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7289         * device/include/Makefile.in: replace sdcc_datadir
7290         * device/lib/Makefile.in: replace sdcc_datadir
7291         * Makefile.common.in: add LDFLAGS from configure
7292         * packihx/Makefile.in: use LDFLAGS
7293         * src/Makefile.in: use LDFLAGS
7294         * support/cpp2/Makefile.in: add LDFLAGS from configure
7295         * support/makebin/Makefile: use LDFLAGS
7296         * .version: bumped version number to 2.3.5
7297
7298 2003-04-12  Borut Razem <borut.razem AT siol.net>
7299
7300         * completed "different paths" task:
7301         * src/SDCCmacro.c: fixed bug in handling quotes
7302         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
7303         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
7304
7305 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7306
7307         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
7308
7309 2003-04-11 kevin Vigor <kevin AT vigor.nu>
7310
7311         * ds390/gen.c ds390/peeph.def: fix bug 706781
7312
7313 2003-04-11  Borut Razem <borut.razem AT siol.net>
7314
7315         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
7316
7317 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
7318
7319         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
7320         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
7321          set - this bit used to not be set...).
7322         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
7323           bad code in PIC Port
7324         * src/regression/and2.c added to test bug 609268
7325         * src/regression/Makefile added and2.c to regression test
7326
7327
7328 2003-04-08    <johan AT CP255758-A>
7329
7330         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
7331         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
7332         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
7333
7334 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
7335
7336         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
7337         fix bug #487815
7338         * support/cpp2/Makefile.in: fix bug #487815
7339         * configure: rebuilt from configure.in
7340         * Makefile.common.in: docdir changed, new path suffixes
7341         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7342         * sdcc_vc_in.h: reflect changes from sdccconf.h
7343         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
7344         * src/SDCCutil.h: remove BINDIR hack
7345         * doc/sdccman.lyx: update new path hierarchy
7346
7347 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7348
7349         * src/SDCCpeeph.c: added okToRemoveSLOC test
7350
7351 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7352
7353         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
7354
7355 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7356
7357         * src/SDCCpeeph.c: added labelIsReturnOnly test
7358         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
7359
7360 2003-04-05    <johan AT balder>
7361
7362         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
7363         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
7364         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
7365         * src/SDCCast.c: fixed a warning
7366         * src/SDCCast.h: fixed a warning
7367         * src/SDCCicode.c (operandFromAst): fixed a warning
7368
7369 2003-04-04    <johan AT balder>
7370
7371         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
7372         * src/SDCCast.c (decorateType): fixed bug #715076
7373         * src/SDCC.y: fixed bug #702907
7374
7375 2003-04-03    <johan AT balder>
7376
7377         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
7378         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
7379         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
7380         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
7381         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
7382
7383 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
7384
7385         * _decdptr.c: fix return values
7386         * _gptrget.c: fix return values
7387         * _gptrgetc.c: fix return values
7388         * _gptrput.c: fix return values
7389         * _mulint.c: fix return values
7390         * as/z80/Makefile: fix 'make -j' problem
7391
7392 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
7393
7394         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
7395         * configure.in: big cleanup, updated to autoconf 2.5x
7396         * configure: rebuilt from configure.in
7397         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7398         * sdcc_vc_in.h: reflect changes from sdccconf.h
7399         * doc/Makefile: fixed a flaw in "make install"
7400
7401 2003-04-02    <johan AT balder>
7402
7403         * src/ds390/gen.c (genCmp): no comments
7404         * src/mcs51/gen.c (genCmp): no comments
7405         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
7406         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
7407
7408 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
7409
7410         * support/regression/generate-cases.py: place generated file in given sub directory
7411         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
7412         * support/regression/Makefile: improvements for 'make -j';
7413         side effect: it's simpler and faster now
7414
7415 2003-03-31  Borut Razem <borut.razem AT siol.net>
7416
7417         * src/z80/main.c: link-{port} and as-{port} defined without path
7418         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
7419
7420 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
7421
7422         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
7423
7424 2003-03-30  Borut Razem <borut.razem AT siol.net>
7425
7426         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
7427           changed type of list parameter to set
7428         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
7429         * src/port.h: changed type of do_assemble() parameter to set
7430         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
7431           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
7432           definition of "cppoutfilename" macro with NULL value in preProcess()
7433         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
7434         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
7435         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
7436           replaced with set *binPathSet
7437         * shash_add() deallocates the item, if allready exsists, before adding the new one
7438         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
7439
7440 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
7441
7442         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
7443           a nested for loop bug in the PIC port
7444         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
7445           for loops
7446
7447 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
7448
7449         * support/Util/dbuf.h: remove C++ stuff to make it portable
7450
7451 2003-03-28  Borut Razem <borut.razem AT siol.net>
7452
7453         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
7454           literal strings in stringLiteral()
7455         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
7456         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
7457           to the project
7458
7459 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
7460
7461         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
7462
7463 2003-03-26    <johan AT balder>
7464
7465         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
7466         * src/ds390/gen.c (saveRegisters): catched symbol abuse
7467         * src/SDCCast.c (decorateType): fixed " -v < 3"
7468
7469 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
7470
7471         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
7472         Added Lenny Story's debug infrastructure changes:
7473         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
7474         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
7475         * src/cdbFile.c: added
7476         * src/SDCCdebug.c: added
7477         * src/SDCCdebug.h: added
7478         * src/SDCCast.c (createFunction)
7479         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
7480         * src/SDCCmain.c (parseCmdLine, main)
7481         * src/SDCCmem.c (redoStackOffsets)
7482         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
7483         * src/SDCCsymt.h
7484         * src/common.h
7485         * src/avr/gen.c (genAVRCode)
7486         * src/ds390/gen.c (gen390Code)
7487         * src/mcs51/gen.c (gen51Code)
7488         * src/pic/gen.c (genpic14Code)
7489         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
7490         * src/xa51/gen.c (genXA51Code)
7491         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
7492
7493 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7494
7495         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
7496         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
7497
7498 2003-03-22    <johan AT balder>
7499
7500         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
7501
7502 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
7503
7504         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
7505         * doc/cdbfileformat.lyx: added, written by Lenny Story
7506         * doc/Makefile: added cdbfileformat.lyx
7507         * doc/clean.mk: added cdbfileformat.lyx
7508
7509 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
7510
7511         * src/mcs51/peeph.def: fix bug #705773
7512
7513 2003-03-20    <johan AT balder>
7514
7515         An sfr/sbit can have an "at #" AND an initializer
7516         * src/SDCCsymt.c (checkSClass):
7517         * src/SDCCmem.c (allocGlobal):
7518         * src/SDCCmem.c (allocLocal):
7519         * src/SDCCast.c (createBlock):
7520
7521 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
7522
7523         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
7524
7525 2003-03-16    <johan AT balder>
7526
7527         Undid the hackup of const and volatile, the problem is much bigger
7528         * src/SDCC.y:1.65
7529         * src/SDCCast.c:1.171
7530         * src/SDCCglue.c:1.138
7531         * src/SDCCicode.c:1.146
7532         * src/SDCCsymt.c:1.150
7533         * src/SDCCval.c:1.65
7534
7535 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
7536
7537         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
7538         * src/ds390/gen.c (genAddrOf): fixed bug #704087
7539
7540 2003-03-13    <johan AT balder>
7541
7542         Hackup const and volatile modifiers in type chains a bit:
7543         * src/SDCC.y:1.63
7544         * src/SDCCast.c:1.169
7545         * src/SDCCglue.c:1.136
7546         * src/SDCCicode.c:1.143
7547         * src/SDCCsymt.c1.146
7548         * src/SDCCsymt.h1.59
7549         * src/SDCCval.c:1.63
7550
7551 2003-03-12    <johan AT balder>
7552
7553         * src/SDCCBBlock.h: more LRH debugging junk
7554         * src/SDCCcflow.h: more LRH debugging junk
7555         * src/SDCCloop.c: more LRH debugging junk
7556         * src/SDCC.y (struct_declaration): fixed bug #697590
7557         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
7558         * src/ds390/gen.c (aopForRemat): fixed bug #700031
7559         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
7560
7561 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7562         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
7563         test function names must now match exactly).
7564         * src/SDCCcse.c: added special case in findCheaperOp to allow
7565         extending a short integer. Makes less awful code for bug 700121 test case.
7566
7567 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7568
7569         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
7570         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
7571
7572 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7573
7574         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
7575         actually called (operandsNotEqual() was called for all
7576         operandsNotEqualX tests).
7577
7578 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7579
7580         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
7581         with shorter literals. Fixes bug 700121.
7582
7583 2003-03-11    <johan AT balder>
7584
7585         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
7586
7587 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
7588
7589         * src/SDCCloop.c (mergeRegions): an evil beast is dead
7590         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
7591
7592 2003-03-10  Borut Razem <borut.razem AT siol.net>
7593
7594         * src/SDCCmain.c: pipe preprocessor's output
7595         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
7596         * sdcc_vc_in.h: define pclose as _pclose for WIN32
7597         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
7598         which closes all pipes in pipeSet set
7599         * src/SDCCset.c: free deleted item in function deleteSetItem()
7600         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
7601         moved from z80 to src subproject
7602         * .version: increased version number to 2.3.4
7603
7604 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
7605
7606         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
7607         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
7608         * support/regression/ports/xa51/spec.mk: fix typo
7609
7610 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
7611
7612         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
7613
7614 2003-03-09  Borut Razem <borut.razem AT siol.net>
7615
7616         * src/SDCCmain.c: pipe preprocessor's output
7617         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
7618         * sdcc_vc_in.h: define pclose as _pclose for WIN32
7619         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
7620         which closes all pipes in pipeSet set
7621         * src/SDCCset.c: free deleted item in function deleteSetItem()
7622         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
7623         moved from z80 to src subproject
7624
7625 2003-03-09  Borut Razem <borut.razem AT siol.net>
7626
7627         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
7628         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
7629         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
7630         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
7631         * src/SDCCglobl.h: unification of WIN32 native definitions
7632
7633 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7634
7635         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
7636
7637 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
7638
7639         * src/configure.in:   check for endianess (even while cross-compiling)
7640         * src/configure:      check for endianess (even while cross-compiling)
7641         * src/configure_in.h: check for endianess (even while cross-compiling)
7642         * src/avr/gen.c:        remove old endianess stuff
7643         * src/mcs51/gen.c:      remove old endianess stuff
7644         * src/ds390/gen.c:      remove old endianess stuff
7645         * src/pic/gen.c:        remove old endianess stuff
7646         * src/pic/genarith.c:   remove old endianess stuff
7647         * src/pic/glue.c:       fix endianess check
7648         * src/pic16/gen.c:      remove old endianess stuff
7649         * src/pic16/genarith.c: remove old endianess stuff
7650         * src/pic16/glue.c:     fix endianess check
7651         * src/xa51/gen.c:       remove old endianess stuff
7652         * src/z80/gen.c:        fix endianess check
7653         * src/SDCCglue.c:       fix endianess check
7654         * src/ds390/peeph.def: fix bug 700036
7655
7656 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
7657
7658         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
7659         * src/configure: find appropriate data-types on host for SDCC's int and long
7660         * src/configure.in: find appropriate data-types on host for SDCC's int and long
7661         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
7662         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
7663
7664 2003-03-07    <johan AT balder>
7665
7666         Just a big NOOP:
7667                 some minor cleanups before the big shot
7668                 OP_DEFS and OP_USES now use Kevin's protection
7669                 new option --nolabelopt
7670
7671         * src/SDCCBBlock.c:
7672         * src/SDCCast.c,:
7673         * src/SDCCcflow.c:
7674         * src/SDCCcse.c:
7675         * src/SDCCicode.c:
7676         * src/SDCCicode.h:
7677         * src/SDCClabel.c:
7678         * src/SDCCloop.c:
7679         * src/SDCCmain.c:
7680         * src/ds390/ralloc.c:
7681         * src/mcs51/ralloc.c:
7682         * src/pic/ralloc.c:
7683         * src/xa51/ralloc.c:
7684         * src/z80/ralloc.c:
7685
7686 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
7687
7688         * src/pic/pcode.c (get_op): fix 64 bit warnings
7689         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
7690         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
7691         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
7692         * support/regression/tests/malloc.c: fix 64 bit warnings
7693
7694 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
7695
7696         * src/mcs51/gen.c (genMinus): fixed bug 696436
7697
7698 2003-03-02  Borut Razem <borut.razem AT siol.net>
7699
7700         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
7701
7702 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
7703
7704         * configure.in: test for mkstemp
7705         * sdccconf_in.h: add HAVE_MKSTEMP
7706
7707 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
7708
7709         * device/include/ctype.h: removed warning while using --stack-auto
7710         * device/include/malloc.h: removed warning while using --stack-auto
7711         * device/include/string.h: removed warning while using --stack-auto
7712
7713 2003-02-23  Borut Razem <borut.razem AT siol.net>
7714
7715         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
7716         because NDEBUG is defined (see man assert)
7717         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
7718
7719 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7720
7721         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
7722         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
7723
7724 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7725
7726         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
7727         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
7728
7729 2003-02-18    <johan AT balder>
7730
7731         * as/mcs51/asmain.c (asmbl): module can start with a digit
7732         * as/z80/asmain.c (asmbl): module can start with a digit
7733
7734 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
7735
7736         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
7737         * src/asm.c: fix pipe() for Mingw32
7738
7739 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
7740
7741         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
7742         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
7743         make -V work again; --c1mode reads now from stdin
7744         * doc/sdccman.lyx: added --c1mode
7745         * support/Util/SDCCerr.c: new messages for c1 mode
7746         * support/Util/SDCCerr.h: new messages for c1 mode
7747         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
7748
7749 2003-02-15    <johan AT balder>
7750
7751         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
7752
7753 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
7754
7755         * doc/sdccman.lyx: Environment variables, -o and other minor things
7756
7757 2003-02-14    <johan AT balder>
7758
7759         * src/xa51/main.c: before anyone really tries to use it :)
7760
7761         * Install doc's in share/sdcc/doc
7762         * removed some obsolete files
7763         * Do a proper make distclean and uninstall
7764         M Makefile.common.in
7765         R sdccbuild.sh
7766         M as/Makefile
7767         M device/include/Makefile.in
7768         M device/lib/Makefile.in
7769         M doc/sdccman.lyx
7770         M link/Makefile
7771         M sim/ucsim/doc/Makefile.in
7772         M src/clean.mk
7773         R src/avr/peeph.rul
7774         R src/xa51/peeph.rul
7775         M support/cpp2/Makefile.in
7776         M support/makebin/Makefile
7777
7778
7779 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
7780
7781         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
7782
7783 2003-02-10  Borut Razem <borut.razem AT siol.net>
7784
7785         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
7786         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
7787         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
7788         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
7789         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
7790         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
7791         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
7792         src/z80/Makefile.bcc: Borland Makefile cleanup
7793         * as/z80/Makefile.bcc: Added Borland Makefile
7794         * support/cpp2/borland.h: Removed
7795
7796 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
7797
7798         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
7799         * src/SDCC.lex: new pragma NOIV
7800         * src/SDCCglobl.h: new pragma NOIV
7801         * src/SDCCmem.c: new pragma NOIV
7802
7803 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
7804
7805         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
7806
7807 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
7808
7809         * src/SDCCmain.c: signal handling is switched off by --debug
7810         * doc/Makefile: small fix for install; use clean.mk again
7811         * doc/clean.mk: clean *.pdf and *.html too
7812
7813 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
7814
7815         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
7816         * device/lib/printfl.c: fix a ds390 bug by making it portable
7817         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
7818         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
7819         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
7820         * debugger/mcs51/cmd.c: converted multi-line string literals
7821         * sim/ucsim/globals.cc: converted multi-line string literals
7822         * src/SDCCmain.c: introduced signal handler to remove temp files
7823         * doc/Makefile: small tweaks, implement clean
7824         * doc: removed generated files
7825
7826 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7827
7828         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
7829         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
7830         Address Record is not correctly generated for DS390."
7831
7832 2003-02-02  Borut Razem <borut.razem AT siol.net>
7833
7834         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
7835         * as/mcs51/asm.h: fixed compilation with Borland C
7836         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
7837         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
7838         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
7839         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
7840         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
7841         src/z80/Makefile.bcc: delete $(LIB) only if exist
7842         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
7843
7844 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
7845
7846         * device/include/malloc.h: introduced NULL
7847         * device/include/string.h: introduced NULL
7848         * device/include/stdlib.h: introduced NULL
7849         * device/lib/_memcpy.c: removed NULL
7850         * device/lib/_strcat.c: removed NULL
7851         * device/lib/_strchr.c: removed NULL
7852         * device/lib/_strcmp.c: removed NULL
7853         * device/lib/_strcpy.c: removed NULL
7854         * device/lib/_strcspn.c: removed NULL
7855         * device/lib/_strlen.c: removed NULL
7856         * device/lib/_strncat.c: removed NULL
7857         * device/lib/_strncmp.c: removed NULL
7858         * device/lib/_strncpy.c: removed NULL
7859         * device/lib/_strpbrk.c: removed NULL
7860         * device/lib/_strrchr.c: removed NULL
7861         * device/lib/_strspn.c: removed NULL
7862         * device/lib/_strstr.c: removed NULL
7863         * device/lib/_strtok.c: removed NULL
7864         * device/lib/malloc.c: removed NULL, include own header
7865
7866 2003-02-02    <johan AT balder>
7867
7868         * 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
7869         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
7870         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
7871         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
7872         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
7873         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
7874
7875 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7876
7877         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
7878         area 'DATA'"
7879
7880 2003-02-01    <johan AT balder>
7881
7882         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
7883
7884 2003-01-31    <johan AT CP255758-A>
7885
7886         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
7887
7888 2003-01-30    <johan AT balder>
7889
7890         * src/SDCCBBlock.c: automatic bug detection
7891         * src/SDCCicode.c: automatic bug detection
7892
7893 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7894
7895         * src/SDCCglobl.h:   now --xram-size 0 works
7896         * src/SDCCmain.c:    now --xram-size 0 works
7897
7898 2003-01-29    <johan AT balder>
7899
7900         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
7901
7902 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7903
7904         * as/mcs51/aslink.h: Added options --xram-size and --code-size
7905         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
7906         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
7907         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
7908         * src/SDCCglobl.h:   Added options --xram-size and --code-size
7909         * src/SDCCmain.c:    Added options --xram-size and --code-size
7910
7911 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
7912
7913         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
7914         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
7915
7916 2003-01-27    <johan AT balder>
7917
7918         * src/SDCC.y: fixed bug #613764
7919
7920 2003-01-26    <johan AT balder>
7921
7922         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
7923         * src/SDCCsymt.h: fixed bug #673374
7924         * src/SDCCglue.c: fixed bug #661910
7925         * src/SDCCast.c: fixed bug #458099 and 673374
7926
7927 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
7928
7929         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
7930         * as/mcs51/strcmpi.h: added
7931         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
7932         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
7933         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
7934         * as/mcs51/assym.c: strcmpi -> as_strcmpi
7935         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
7936         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
7937         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
7938         * as/mcs51/Makefile.aslink: new module strcmpi
7939         * as/mcs51/Makefile.asx8051: new module strcmpi
7940         * as/mcs51/Makefil.bcc: new module strcmpi
7941         * as/mcs51/Makefile.in: new module strcmpi
7942         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
7943
7944 2003-01-26    <johan AT balder>
7945
7946         * src/SDCCglue.c: reverted back to 1.124
7947         * src/SDCCast.c: reverted back to 1.156
7948         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
7949
7950 2003-01-25    <johan AT balder>
7951
7952         * src/SDCCglue.c: A better fix for bug #661910
7953         * src/SDCCast.c: A better fix for bug #661910
7954         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
7955
7956 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
7957
7958         * src/Makefile.in: remove spawn.o
7959         * src/SDCCmain.c: remove spawn.h
7960         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
7961         * src/spawn.c: removed
7962         * src/spawn.h: removed
7963         * support/regression/ports/ds390/spec.mk: link with -r
7964
7965 2003-01-24    <johan AT CP255758-A>
7966
7967         * src/ds390/gen.c (aopOp): fixed bug #667458
7968         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
7969         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
7970         (createIvalCharPtr): an ival doesn't always have a storage class anymore
7971
7972 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
7973
7974         * src/mcs51/peeph.def: better assembler identation by Frieder
7975         * src/mcs51/gen.c: better assembler identation by Frieder
7976
7977 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
7978
7979         * as/z80/string.h: removed for gcc 3.2
7980         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
7981         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
7982
7983 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
7984
7985         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
7986         * src/SDCCpeeph.c (replaceRule): fix bug #663503
7987         * support/regression/Makefile: separate temp files for ports
7988         * support/regression/generate-cases.py: separate temp files for ports
7989         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
7990         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
7991
7992 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
7993
7994         * moved tinitalk to device/examples/ds390
7995
7996 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
7997
7998         * as/mcs51/lkmem.c: rflag is for DS390
7999         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
8000         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
8001                          (linkEdit): move mem- and map-files the same way as ihx-files
8002         * src/z80/main.c (_setDefaultOptions): removed --generic
8003         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
8004         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
8005         * src/pic/glue.c (picglue): --c1mode works again
8006         * src/pic16/glue.c (pic16glue): --c1mode works again
8007         * src/asm.c (printCLine): fix #660034
8008
8009 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
8010
8011         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
8012         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
8013         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
8014         * as/mcs51/lkmem (summary): better fix for sp problem
8015         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
8016         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
8017         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
8018                                               remove --stack-after-data
8019
8020 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
8021
8022         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
8023         * src/SDCCutil.c (join): ugly bug: missing '\0'
8024         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
8025
8026 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8027
8028         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
8029         * src/port.h: typo
8030         * src/pic/main.c (_asmCmd): gpasm supports -o
8031         * src/z80/main.c: more general macros
8032         * device/lib/Makefile.in: remove intermediate files
8033
8034 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8035
8036         * .version: Bumped version number to 2.3.3
8037         * src/SDCCBBlock.c: new option -o
8038         * src/SDCCglobl.h: new option -o
8039         * src/SDCCglue.c: new option -o
8040         * src/SDCCmain.c: new option -o
8041         * src/asm.c: new option -o
8042         * src/ds390/main.c: new option -o
8043         * src/pic/glue.c: new option -o
8044         * src/pic/pcode.c: new option -o
8045         * src/pic/ralloc.c: new option -o
8046         * src/pic16/glue.c: new option -o
8047         * src/pic16/pcode.c: new option -o
8048         * src/pic16/ralloc.c: new option -o
8049         * src/z80/main.c: new option -o
8050         * device/lib/Makefile.in: use -o
8051         * support/regression/ports/ds390/spec.mk: use -o
8052         * support/regression/ports/gbz80/spec.mk: use -o
8053         * support/regression/ports/mcs51/spec.mk: use -o
8054         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
8055         * support/regression/ports/z80/spec.mk: use -o
8056         * support/regression/ports/ucz80/spec.mk: use -o
8057         * support/regression/ports/xa51/spec.mk: use -o
8058         * support/regression/fwk/lib/timeout.c: fix usage string
8059
8060 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
8061         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
8062
8063 2003-01-07    <johan AT balder>
8064
8065         * src/SDCCast.c (decorateType): fixed bug #600035
8066
8067 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
8068         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
8069         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
8070         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
8071         * src/pic/pcode.c: outcommented unused variable to remove warnings
8072         * src/pic/ralloc.c: outcommented unused variable to remove warnings
8073
8074 2003-01-06    <karl AT turbobit.com>
8075         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
8076    regression tests.
8077
8078 2003-01-06    <johan AT balder>
8079
8080         * src/SDCCicode.c: fixed array add
8081
8082 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
8083         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
8084         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
8085
8086 2003-01-04    <johan AT balder>
8087
8088         * src/SDCCval.c (getNelements): fixed the initialized array of structures
8089
8090 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8091         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
8092
8093 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8094         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
8095         * support/regression/tests/bug-524697.c: fit mem usage into 8032
8096
8097 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8098         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
8099
8100 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
8101         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
8102
8103 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
8104         * src/mcs51/main.c: removed {bindir}{sep} from aslink
8105
8106 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8107
8108     * in \sdcc\as\mcs51\ changed these files in order to create an
8109     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
8110     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
8111     following files to include the previous two files: aslink.dsp,
8112     Makefile.aslink, Makefile.bcc, and Makefile.in.
8113
8114     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
8115     .adb instead of .cdb
8116
8117 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8118
8119         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
8120         value from option --iram-size.
8121
8122 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8123
8124         * \sdcc\as\mcs51\lklist.c: added boundary check before using
8125         dram[] array.
8126
8127 2002-09-18    <wiml AT hhhh.org>
8128
8129         * SDCClrange.h: exposed setFromRange() and setToRange()
8130         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
8131           packRegsForAccUse() (bug 542397)
8132         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
8133           multiple times and emitting the fetch operations more than once
8134           added aopGetUsesAcc() function to allow binary operators to
8135           fetch their operands in the correct order; made genMinus() emit
8136           compact code for X = LITERAL - Y
8137
8138 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8139         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
8140         sprintf() in line 1267.
8141
8142 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8143         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
8144         like ports.
8145
8146 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8147         Changes to aslink (All the changes are marked with 'JCF'):
8148
8149         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
8150         summary().
8151
8152         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
8153         area BSEG.  Also moves, if possible, the DATA area down into the internal
8154         ram so more space is available.
8155
8156         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
8157         sflag.
8158
8159         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
8160         not bytes.  Function summary() which creates a memory usage summary
8161         file with extension .mem.  Reports of overlaping stack and small stack
8162         size.  If the space for the stack is less than 16 bytes aslink trows a
8163         warning.
8164
8165         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
8166         the 8051.  Option 'y' for memory summary output file.
8167
8168         Changes to sdcc (All the changes are marked with 'JCF'):
8169
8170         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
8171
8172         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
8173         overlaying area for it (uses RegBankUsed[4]).
8174
8175         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
8176         bank zero as used by default.  By default aslink locates the stack
8177         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
8178         the creation of the .mem file.  Delegates the allocation of data area
8179         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
8180         the begining of the stack area to aslink.
8181
8182         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
8183         glue() in SDCCglue.c creates an area for it.
8184
8185 2002-09-03  Borut Razem <borut.razem AT siol.net>
8186         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
8187         sdcc/src/pic/glue.c:
8188         introduced atexit() handler for teporay files removal in case of
8189         errors, assertions, ...
8190
8191 2002-08-29  Borut Razem <borut.razem AT siol.net>
8192         * sdcc/support/cpp2/auto-host_vc_in.h:
8193         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
8194         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
8195         Maybe there is a similar problem with BORLANDC? It should be checked!
8196
8197         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
8198         corrected improper use of assert: the assignment to clr variable was done inside the assert.
8199         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
8200         was not executed, and the compiler (cl) launched a warning:
8201         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
8202
8203 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8204         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
8205
8206 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
8207         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
8208
8209         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8210           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
8211           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
8212           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8213           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
8214           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
8215           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
8216         - added Release configuration in VS projects
8217         - review of compiler an linker options
8218         - VC .exe files are generated in bin_vc directory, not to interfere
8219           with binaries generated from other projects (cygwin, mingw, bcc ...)
8220
8221         * sdcc/src/yacc.dsp: added
8222
8223         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
8224         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
8225         and insert the version number definitions from .version
8226
8227         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
8228
8229         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
8230         added - genarate auto-host.h using auto-host_vc_in.h as template
8231
8232         * sdcc/sdcc_vc.h,
8233         removed from CVS, generated automatically
8234
8235 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
8236         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
8237
8238 2002-08-11  Borut Razem <borut.razem AT siol.net>
8239         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
8240
8241 2002-08-10  Borut Razem <borut.razem AT siol.net>
8242         * src/SDCCmain.c (main):
8243         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
8244         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
8245         The consequence was that some temporary files were not removed.
8246
8247         * src/SDCCglue.c:
8248         unification of code in functions tempfilename() and tempfile():
8249         function tempnam() is defined in Visual Studio 6.0 and .NET
8250
8251         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
8252
8253         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8254           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
8255         - removed compiler command line option /WX: Treats all warnings as errors
8256         - update a list of source files, included into the project
8257
8258         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8259           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
8260         changed project type to Generic Project so that can be correcly converted to VS.NET project
8261
8262         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
8263
8264         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
8265
8266         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
8267
8268         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
8269         added return 0 statements after assert() to make compiler happy
8270
8271         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
8272         added newline in the def file to keep MSC compiler satisfied
8273
8274         * sdcc/src/z80/gen.c:
8275         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
8276           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
8277         - solved MSC error in function aopDump()
8278
8279         * sdcc_vc.h: define PREFIX as "\\sdcc"
8280
8281 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
8282         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
8283
8284 2002-06-22  Scott Dattalo <scott AT dattalo.com>
8285         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
8286         - Rewrote the register banking algorithm.
8287         - Added pCode live-range analysis to registers (for now, only non-used and
8288         singly-used registers optimized away)
8289
8290         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
8291
8292         * 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.
8293
8294 2002-05-10  Scott Dattalo <scott AT dattalo.com>
8295         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
8296
8297 2002-04-22  Michael Hope  <michaelh AT vroom>
8298
8299         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
8300
8301         * configure.in (DD_COPT): Added include support required for gbdk.
8302
8303         * .version: Bumped version number just to increase it.
8304
8305         * src/SDCCmain.c: Added -nostdinc to the default options.
8306
8307 2002-04-15  Michael Hope  <michaelh AT vroom>
8308
8309         * device/lib/z80/printf.c (sprintf): Added.
8310
8311         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
8312
8313         * src/z80/peeph.def: Added transpose redundent load rule.
8314
8315         * src/z80/main.c: Added force callee saves for jaune.
8316
8317         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
8318
8319         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
8320
8321 2002-03-28  Johan Knol  <johan AT balder>
8322
8323         * src/SDCCval.c: fixed bug #532436
8324
8325 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8326         * /src/port.h:
8327         Added "char *Processor" field to the port structure.
8328
8329         * /src/SDCCmain.c:
8330         Added -p option. Allows port dependent processor to be specified.
8331
8332         * all ports:
8333         Initialized the new field char *Processor field to NULL in all ports
8334
8335         * /src/pic/*:
8336         Compiler generated registers for interrupt context saving
8337         were not getting allocated.
8338
8339 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
8340
8341         * /src/SDCCast.c:
8342         Fixed left shift. Will promote the left side of a left shift
8343         if a) left shifting more than size of operand or b) when assigned
8344         to something size > size of left side
8345
8346 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8347         * src/pic/*
8348         tons of changes. Register allocation has been
8349         rewritten. Added customization for the various PICs. Flow
8350         analysis is restructured. ...
8351
8352         * src/pic/device.h:
8353         Added
8354
8355         * src/pic/device.c:
8356         Added. device.c is a PIC port hack to accomodate variations
8357         in PIC devices.
8358
8359 2002-03-13  Michael Hope  <michaelh AT vroom>
8360
8361         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
8362
8363 2002-03-04  johanknol  <johanknol AT manik>
8364
8365         * /src/SDCCval.c: fixed
8366
8367         const unsigned char arr[][2] = { { 0, 1 } };
8368         t18.c:1: error: Initializer element is not constant
8369
8370 2002-03-04  bela  <bela AT manik>
8371
8372         * /device/include/mcs51reg.h:
8373         ds89c420 register definition update
8374
8375 2002-03-03    <johan AT FRIJA>
8376
8377         * support/Util/SDCCerr.c: did something, but don't no why anymore
8378
8379         * support/regression/tests/bug-524691.c: made it a little less shy
8380
8381         * src/SDCCast.c (decorateType): fixed bug #524697
8382
8383         * src/SDCCast.c: made some lineno improvements
8384
8385         * src/SDCCval.c (getNelements): changed warning to error
8386
8387         * src/SDCCglue.c (printIvalArray): changed warning to error
8388
8389         * src/SDCCicode.c: fixed a warning for mingw
8390
8391         * src/SDCCast.c (decorateType): fixed the << promotion for ops
8392
8393         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
8394
8395 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
8396
8397         * src/ds390/peeph.def:
8398         Added some more peephole rules
8399
8400         * src/ds390/gen.c: Various fixes & enhancements
8401
8402         * src/SDCClrange.c, src/SDCClrange.h:
8403         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
8404
8405         * src/ds390/ralloc.c:
8406         various fixes & enhancements (ds390) specific
8407
8408         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
8409         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
8410         from rallocs.
8411
8412         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
8413
8414 2002-03-02    <johan AT FRIJA>
8415
8416         * src/SDCCast.c (decorateType): fixed bug #524708
8417
8418         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
8419
8420         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
8421
8422 2002-03-01  Michael Hope  <michaelh AT vroom>
8423
8424         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
8425
8426         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
8427
8428 2002-03-01    <johan AT FRIJA>
8429
8430         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
8431
8432         * src/SDCCast.c (decorateType): fixed bug #524209
8433
8434         * src/SDCCval.c (valNot): fixed bug #524195
8435
8436 2002-02-26    <johan AT balder>
8437
8438         * src/xa51/gen.c: fixed a warning
8439
8440         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
8441
8442         * src/SDCCast.c (decorateType): fixed bug #522534
8443
8444 2002-02-23    <johan AT balder>
8445
8446         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
8447
8448 2002-02-22    <johan AT balder>
8449
8450         * src/SDCCast.c: fixed bug #514865
8451
8452         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
8453
8454 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
8455
8456         * sdcc/src/SDCCloop.c:
8457         Previous fix was not good. basic blocks that have "break" or "return" are
8458         not really partof a loop , but live ranges used in these blocks should
8459         be live thru the entire loop, so set partOfLoop but don't add them to
8460         loop region
8461
8462 2002-02-21    <johan AT FRIJA>
8463
8464         * src/SDCCcse.c: fixed bug #514308
8465
8466 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
8467
8468         * src/SDCCloop.c:
8469         Fixed BUG #519583. If a conditional block ended in a return/break
8470         statement inside a loop, it was not being considered part of the loop.
8471
8472         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
8473
8474 2002-02-10  Karl Bongers <karl AT turbobit.com>
8475
8476         * debugger/*:
8477         Fixed up SDCDB debugger somewhat.  Updated debugger/README
8478         with lots of comments and notes.
8479
8480         * device/examples/test2.c:
8481         Fix bug, "red" variable not being initialized(compiler complained).
8482
8483         * device/examples/Makefile, examples/test3.c:
8484         Add Makefile in device/examples folder, compiles test3.c
8485         for use as a multiple module SDCDB test case.
8486
8487         * sim/ucsim/cmd.src/cmdset.cc:
8488         Took out debug printfs in ucsim "next" command.
8489
8490         * sim/ucsim/xa.src:
8491         Karl and Johan start ucsim XA support.  Most dissassembly working,
8492         about 75% emulation done(plenty of work remaining).
8493
8494         * sim/ucsim/z80.src:
8495         Add Z80 support to ucsim, add test-ucz80 regression test,
8496         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
8497         Notice z80 compiler fails on examples/test3.c/crc code.
8498
8499 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
8500
8501         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
8502         Added support for --parms-in-bank1
8503
8504         * src/ds390/peeph.def:
8505         added a few more peephole optimzations
8506
8507         * src/ds390/main.c:
8508         1) added __builtin_inp & __builtin_outp used to read in data of given length
8509            from a memory mapped port
8510         2) added __builtin_memcmp
8511         3) added __builtin_swapw swap bytes of a short
8512
8513         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
8514         1) handle multiple send & receives from register bank1
8515         2) ralloc can now allocate DPTR1 to some liveRanges
8516
8517         * src/SDCCsymt.c, src/SDCCsymt.h:
8518         changes to handle multiple sends & receives
8519
8520         * src/SDCCptropt.h:
8521         added some pointer arithmetic optimization
8522
8523         * src/SDCCptropt.c:
8524         added some pointer arithmetic optimizations but not stable yet so not
8525         called from anywhere (will get this working shortly)
8526
8527         * src/SDCCopt.c: fixed for multiple sends & receives
8528
8529         * src/SDCCmain.c:
8530         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
8531         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
8532            set preprocessor defines (depending on options)
8533
8534         * src/SDCCicode.c, src/SDCCicode.h:
8535         changes made to handle multiple sends & receives
8536
8537         * src/SDCCglobl.h:
8538         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
8539
8540         * src/SDCCcse.c, src/SDCCcse.h:
8541         added function findbackward def (to be used in upcoming optimization)
8542
8543         * src/SDCCcflow.c, src/SDCCcflow.h:
8544         added function returnAtEnd - to determine if a basic block terminates with
8545         a RETURN iCode
8546
8547         * src/SDCCast.c, src/SDCCast.h:
8548         added option parms-in-bank1
8549
8550         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
8551         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
8552         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
8553         adjusted for --parms-in-bank1 option
8554
8555         * device/include/string.h:
8556         donot redefine "reentrant" keyword
8557
8558         * device/include/ds80c390.h: Added some more SFRs
8559
8560 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
8561
8562         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
8563
8564 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
8565
8566         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
8567
8568 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
8569
8570         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
8571
8572 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
8573
8574         * Added --xram-movc option
8575
8576 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
8577
8578         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
8579
8580 2002-01-11  Johan Knol
8581
8582         * Added math lib of Jesus Calvino-Fraga
8583
8584 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
8585
8586         * src/SDCCmain.c (processFile): fix processing of ../../src.c
8587         * support/regression/Makefile: new target test-mcs51-stack-auto
8588         * support/regression/ports/mcs51-stack-auto/spec.mk: added
8589
8590 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
8591
8592         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
8593
8594 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
8595
8596         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
8597
8598 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
8599
8600         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
8601
8602         * src/SDCCglue.h: add definition for printIvalChar()
8603
8604 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
8605
8606         * src/SDCCast.c: fix #498138 by Johan
8607
8608         * src/SDCCglue.c: fix #498138 by Johan
8609
8610 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
8611
8612         * support/regression/Makefile: fix clean
8613
8614         * support/regression/ports/ds390/support.c: fix transmission of last character
8615
8616 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
8617
8618         * /sdcc/src/ds390/gen.c:
8619         a) improved computing address of stack variable
8620         b) took out some #if 0 code
8621         c) improved parmBytes adjustment
8622         d) improved genPlusIncr & genMinusIncr
8623         e) genCmp could generate bad code (when left assigned to DPTR)
8624         f) Fixed bug in hasInc
8625
8626         * /sdcc/src/ds390/ralloc.c:
8627         a) packRegsForSupport could mess up live information (Fixed)
8628         b) packRegsDPTRuse could be incorrect for left & right shift
8629
8630         * /sdcc/src/mcs51/ralloc.c:
8631         packRegsForSupport could mess up the live information (Fixed)
8632
8633         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
8634
8635         * /sdcc/src/SDCCast.c:
8636         can reverse a loop even if function call is present as long
8637         as the loop control variable is local & is not passed as parameter
8638
8639 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
8640
8641         * /sdcc/ChangeLog: *** empty log message ***
8642
8643         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
8644         More builtin function additions for TININative
8645
8646         * /sdcc/src/ds390/ralloc.c:
8647         Had broken the regression testsuite
8648
8649         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
8650
8651         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
8652         Added funcattr hasStackParms will be set for reentrant functions when there
8653         are paramteres on the stack, this helps in minimizing frame pointer generation
8654         typeFromStr can handle function pointers now
8655
8656         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
8657         *** empty log message ***
8658
8659 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
8660
8661         * /src/ds390/gen.c, /src/ds390/main.c:
8662         More builtin function additions for TININative
8663
8664         * /src/ds390/ralloc.c:
8665         Had broken the regression testsuite
8666
8667         * /src/SDCCast.c: Fixed a bug in dumptree
8668
8669         * /src/SDCCsymt.c, /src/SDCCsymt.h:
8670         Added funcattr hasStackParms will be set for reentrant functions when there
8671         are paramteres on the stack, this helps in minimizing frame pointer generation
8672         typeFromStr can handle function pointers now
8673
8674         * /doc/builtins.txt, /doc/TININative.txt:
8675         *** empty log message ***
8676
8677
8678 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
8679
8680         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
8681         ALPHA version for -mTININative
8682
8683         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
8684         updated to reflect changes in the port structure
8685
8686         * /src/port.h:
8687         added function do_assemble (similar to do_link) if non-null this function
8688         will be called to do assembly (-mTININative) requires a multi command
8689         assembly
8690         added function genAssemblerEnd will be called to generate assembler Epilogue
8691
8692         * /src/SDCCsymt.c:
8693         added _JavaNative to debug info printing
8694
8695         * /src/SDCCmain.c: added option --tini-libid
8696         added port->do_assemble function (-mTININative) has a multi command assemble
8697
8698         * /src/SDCCglue.c: Disabled "constExpr" check
8699         added port->genAssemblerEnd function
8700
8701         * /src/SDCCglobl.h: Added option --tini-libid value
8702
8703         * /src/SDCCast.h:
8704         tookout optimizeCompare from the header (has no external references)
8705
8706         * /src/SDCCast.c: made one more function "static"
8707
8708 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
8709
8710         * src/z80/mappings.i: Added z80asm support.
8711
8712         * src/z80/main.c: Added z80asm support on --asm=z80asm
8713
8714         * src/z80/gen.c: Fixed asm portability issues.
8715
8716         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
8717
8718         * src/SDCCglue.c (printExterns): Added global/extern split.
8719
8720 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
8721
8722         * support/regression/Makefile: added test for mcs51 model large
8723
8724         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
8725
8726         * support/regression/ports/gbz80/spec.mk: added -mgbz80
8727
8728 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
8729
8730         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
8731
8732 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
8733
8734         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
8735
8736         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
8737
8738 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
8739
8740         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
8741
8742         * support/regression/tests/simplefloat.c: Port to mcs51.
8743
8744 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
8745         * support/regression/tests/bug-485362.c: Added.
8746
8747         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
8748
8749         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
8750
8751         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
8752
8753         * src/z80/gen.c (aopDump): Added a dump function.
8754
8755 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
8756         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
8757
8758         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
8759
8760         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
8761
8762         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
8763
8764         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
8765
8766         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
8767
8768         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
8769
8770         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
8771
8772         * support/regression/ports/ds390/support.c: Use tinibios.
8773
8774         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
8775
8776 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
8777
8778         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
8779         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
8780
8781         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
8782
8783         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
8784
8785 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
8786
8787         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
8788
8789         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
8790         (packRegsForIYUse): Created and optimised.
8791
8792 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
8793
8794         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
8795 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
8796
8797         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
8798
8799         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
8800
8801         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
8802
8803 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
8804
8805         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
8806
8807         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
8808
8809 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
8810
8811         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
8812
8813         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
8814
8815         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
8816
8817 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
8818
8819         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
8820         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
8821         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
8822
8823         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
8824
8825         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
8826         (genNotFloat): Added.
8827         (genUminusFloat): Added.
8828
8829         * device/lib/z80/Makefile: Added floating pt stubs.
8830
8831         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
8832
8833         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
8834
8835         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
8836
8837 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
8838
8839         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
8840
8841         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
8842
8843         * sdcc/support/regression/Makefile: Add port ds390.
8844
8845         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
8846
8847         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
8848
8849         * sdcc/support/regression/ports/ds390/spec.mk: Added.
8850
8851         * sdcc/support/regression/ports/ds390/support.c: Added.
8852
8853         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
8854
8855         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
8856
8857         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
8858
8859 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
8860
8861         * device/include/malloc.h: Added z80 and gbz80 support.
8862
8863         * device/lib/gbz80/heap.s: Added.
8864
8865         * device/lib/z80/heap.s: Added.
8866
8867         * device/lib/malloc.c: Added z80 and gbz80 support.
8868
8869         * support/regression/tests/malloc.c (testMalloc): Added.
8870
8871         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
8872
8873         * support/regression/tests/bug-478094.c: Added.
8874
8875         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
8876
8877 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
8878
8879         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
8880
8881         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
8882
8883         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
8884
8885         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
8886
8887         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
8888
8889 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
8890
8891         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
8892
8893 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
8894
8895         * support/regression/tests/bug-477927.c: Added.
8896
8897         * src/z80/peeph.def: Added minor rules.
8898
8899         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
8900
8901         * src/z80/peeph.def: Added jump optimisation modification.
8902
8903 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
8904
8905         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
8906
8907 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
8908
8909         * support/regression/tests/funptrs.c: Added.
8910
8911 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
8912
8913         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
8914
8915 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
8916
8917         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
8918
8919         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
8920
8921         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
8922         (movLeft2ResultLong): Created.
8923
8924         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
8925         (joinPushes): Added.  Joins two char pushes into a word push.
8926
8927 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
8928
8929         * support/cpp2/Makefile.in (install): Added creation of dest dir.
8930
8931         * support/makebin/Makefile (install): Added creation of dest dir.
8932
8933 2001-10-24 Karl Bongers <karl AT turbobit.com>
8934
8935         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
8936
8937 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
8938
8939         * src/z80/ralloc.c: Turned off faulty pack for one use.
8940
8941         * src/z80/peeph-gbz80.def: Removed redundent restart options.
8942
8943         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
8944
8945 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
8946
8947         * support/regression/Makefile: Improved clean
8948
8949         * support/regression/ports/gbz80/spec.mk: Added clean
8950
8951         * support/regression/ports/host/spec.mk: Added clean
8952
8953         * support/regression/ports/z80/spec.mk: Added clean
8954
8955         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
8956
8957         * support/regression/ports/mcs51/timeout.c: little improvements
8958
8959 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
8960
8961         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
8962
8963         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
8964
8965         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
8966
8967 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
8968
8969         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
8970
8971         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
8972
8973 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
8974         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
8975
8976         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
8977
8978         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
8979
8980         * src/mcs51/main.c (_linkCmd): Added bin path to command.
8981
8982         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
8983
8984         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
8985
8986         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
8987
8988         * support/regression/tests/longor.c: Added.
8989
8990 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
8991
8992         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
8993
8994         * as/mcs51/aslink.h: define PATH_MAX
8995
8996         * as/mcs51/asm.h: define PATH_MAX
8997
8998         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
8999
9000         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
9001
9002         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
9003
9004         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
9005
9006         * src/SDCCglobl.h: define PATH_MAX
9007
9008         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
9009
9010         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
9011
9012 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
9013
9014         * src/z80/gen.c (gencjneshort): Fixed
9015
9016         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
9017
9018 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
9019
9020         * support/regression/tests/bug-469671.c: Added.
9021
9022         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
9023
9024 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
9025
9026         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
9027
9028         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
9029
9030 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
9031
9032         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
9033
9034         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
9035
9036         * src/device/lib/_mullong.c : removed hint: nooverlay bug
9037
9038         * src/device/lib/_divuint.c : removed hint: nooverlay bug
9039
9040         * src/device/lib/_divulong.c: removed hint: nooverlay bug
9041
9042         * src/device/lib/_moduint.c : removed hint: nooverlay bug
9043
9044         * src/device/lib/_modulong.c: removed hint: nooverlay bug
9045
9046 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
9047
9048         * 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.
9049
9050         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
9051
9052         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
9053
9054 2001-10-07    <johan AT FRIJA>
9055
9056         * device/lib/gets.c (gets): fixed the return value.
9057
9058 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
9059         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
9060
9061         * 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.
9062
9063         * 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.
9064
9065         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
9066
9067         * src/pic/gen.c: Removed Safe_strdup.
9068
9069         * configure.in: Added option to enable libgc support.
9070
9071         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
9072         (bitVectUnion): Optimised.
9073         (bitVectIntersect): Optimised.
9074         (bitVectBitsInCommon): Optimised.
9075         (bitVectCplAnd): Optimised.
9076
9077         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
9078
9079 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9080
9081         * src/SDCCmain.c: distinguish between assembler debug and plain options
9082
9083         * src/avr/main.c:   remove standard assembler options
9084
9085         * src/ds390/main.c: remove standard assembler options
9086
9087         * src/mcs51/main.c: remove standard assembler options
9088
9089         * src/port.h: removed "PENDING" comment
9090
9091 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9092
9093         * src/device/lib/_mulint.c  : new, with assember functions
9094
9095         * src/device/lib/_mullong.c : new, with assember functions
9096
9097         * src/device/lib/_divuint.c : with assember functions
9098
9099         * src/device/lib/_divsint.c : with assember functions
9100
9101         * src/device/lib/_divulong.c: with assember functions
9102
9103         * src/device/lib/_divslong.c: with assember functions
9104
9105         * src/device/lib/_moduint.c : with assember functions
9106
9107         * src/device/lib/_modsint.c : with assember functions
9108
9109         * src/device/lib/_modulong.c: with assember functions
9110
9111         * src/device/lib/_modslong.c: with assember functions
9112
9113         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
9114
9115         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
9116
9117         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
9118                                       replaced _mululong.c and _mulslong.c by _mullong.c
9119
9120 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9121
9122         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
9123
9124 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9125
9126         * src/SDCCglue.c: test, if win32api is available for MINGW
9127
9128 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9129
9130         * src/SDCCsymt.c: no more _modifier in printTypeChain()
9131         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
9132         * support/regression/ports/gbz80/spec.mk: removed GENERIC
9133         * support/regression/ports/host/spec.mk: removed GENERIC
9134         * support/regression/ports/mcs51/spec.mk: removed GENERIC
9135         * support/regression/ports/z80/spec.mk: removed GENERIC
9136
9137 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
9138
9139         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
9140
9141         * support/regression/tests/bug-467035.c: Created.
9142
9143 2001-10-01    <johan AT FRIJA>
9144
9145         * src/SDCC.y: fixed bug #466586 part 1
9146
9147 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
9148
9149         * SDCCicode.c: z80 has no generic pointers
9150         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
9151
9152 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
9153
9154         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
9155
9156 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
9157
9158         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
9159
9160         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
9161
9162 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
9163
9164         * configure.in: Fixed up so that ucsim is only configured once.
9165
9166         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
9167
9168         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
9169         (getPathDifference): As above.
9170
9171         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
9172
9173         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
9174
9175 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
9176         * .version: Updated to 2.3.1
9177
9178         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
9179         Added copyright header.
9180
9181         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
9182         (assemble): Added support for macro based assembler commands.
9183         (linkEdit): Added support for macro based linker commands.
9184         (preProcess): Changed the pre-processor to use macros.
9185         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
9186         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
9187
9188         * device/lib/z80/crt0.s: Added module name for debugging.
9189
9190 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
9191
9192         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9193
9194         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
9195
9196         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
9197
9198         * src/Makefile.in: Added SDCCmacro and SDCCutil
9199
9200 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
9201
9202         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9203
9204 2001-09-16    <johan AT FRIJA>
9205
9206         * 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.
9207
9208 2001-09-15    <johan AT FRIJA>
9209
9210         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
9211         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
9212
9213 2001-09-11    <johan AT FRIJA>
9214
9215         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
9216
9217 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
9218
9219         * support/regression/tests/bug-460444.c: Added test case.
9220
9221         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
9222         (genCast): Added justification for all of the asserts.
9223
9224 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
9225
9226         * support/regression/support.c: _xdata replaced by xdata
9227
9228         * support/regression/spec.mk: removed _generic
9229
9230 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
9231
9232         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
9233
9234         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
9235         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
9236
9237         * src/z80/peeph.def: Added a rule to optimise shift then compare.
9238
9239         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
9240
9241         * support/regression/tests/bug-460010.c: Added test case.
9242
9243         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
9244
9245 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
9246
9247         * support/regression/Makefile: inter-port-clean adjusted for mcs51
9248
9249         * support/regression/testfwk.c: removed workaround for bug #436344
9250
9251         * support/regression/tests/bp.c: use less memory with mcs51
9252
9253         * support/regression/tests/bug-441448.c: use less memory
9254
9255         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
9256
9257         * support/regression/collate-results.py: typo
9258
9259 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
9260
9261         * support/regression/tests/fetchoverlap.c: Added new test case.
9262
9263         * support/regression/tests/bp.c: Added new test case.
9264
9265         * support/regression/tests/bug-448984.c: Added new test case.
9266
9267         * support/regression/tests/pow2shifts.c: Added new test case.
9268
9269         * src/z80/gen.c: Turned off the noise it normally generates for the release.
9270         (genlshTwo): Fixed right shift for count > 8.
9271
9272         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
9273
9274 2001-09-08    <johan AT FRIJA>
9275
9276         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
9277
9278 2001-09-07    <johan AT FRIJA>
9279
9280         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
9281
9282         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
9283
9284 2001-09-06    <johan AT FRIJA>
9285
9286         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
9287         * bernhard noted me at this: "() equals to (void)" (1.38)
9288
9289 2001-09-05    <johan AT FRIJA>
9290
9291         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
9292
9293 2001-09-04    <johan AT FRIJA>
9294
9295         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
9296
9297
9298 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
9299
9300         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
9301
9302 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
9303
9304         * link/z80/aslink.h: Fixed path for PATH_MAX
9305
9306 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
9307
9308         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
9309
9310         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
9311
9312         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
9313
9314         * 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.
9315
9316 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
9317
9318         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
9319         (genCmp): Fixed up genCmp for the GB with longs.
9320
9321         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
9322
9323         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
9324
9325         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
9326
9327         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
9328
9329 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
9330
9331         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
9332
9333 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
9334
9335         * 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.
9336
9337         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
9338
9339 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
9340
9341         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
9342
9343         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
9344
9345 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
9346
9347   * sim/ucsim/configure:    little improvement of Cygwin-detection
9348   * sim/ucsim/configure.in: little improvement of Cygwin-detection
9349   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
9350   * support/regression/tests/bug-221100.c: small changes for mcs51
9351   * support/regression/tests/bug-221168.c: small changes for mcs51
9352   * support/regression/tests/bug-227710.c: small changes for mcs51
9353   * support/regression/tests/staticinit.c: small changes for mcs51
9354   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
9355   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9356   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9357
9358 $Revision$