at89c51ed2.h, p89v51rd2.h, at89s53.h: GNU Lesser License
[fw/sdcc] / ChangeLog
1 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2
3         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
4           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
5           License
6
7 2005-08-04 Borut Razem <borut.razem AT siol.net>
8
9         * configure.in: pic16 libraries build 2nd try - enable running
10           configure in device/lib/pic16
11         * configure: regenerated from configure.in
12         * device/lib/Makefile.in: create $(PORT)/bin directory
13
14 2005-08-03 Raphael Neider <rneider AT web.de>
15
16         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
17           to get/set values via pointers
18         * (genUnpackBits,genPackBits): changed detection of
19           ptr->bitfield vs. sym.bitfield, fixed access via generic
20           pointers, removed dead (wrong) code for multibyte bitfields
21         * (genNearPointerGet, genGenPointerGet): removed useless code,
22           fixed bitfield detection, fixes #1250594
23         * (genNearPointerSet): removed useless code
24         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
25           and introduced macro pic16_emitpcode that conditionally emits
26           the origin of the following pCode (useful for debugging SDCC)
27         * src/pic16/pcode.c: changed (and disabled) some debug outputs
28         * (createDefmap): fixed handling of LFSR for --optimize-df
29
30 2005-08-02 Borut Razem <borut.razem AT siol.net>
31
32         * device/lib/Makefile.in: pic16 libraries build enabled since
33           gputils-0.13.2 are now localy installed at sourceforge's compile farm
34
35 2005-08-02 Raphael Neider <rneider AT web.de>
36
37         * src/pic16/gen.c (genPackBits): removed deprecated warning
38         * (genGenPointerSet): fixed bitfield detection
39
40 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
41
42         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
43
44 2005-07-31 Raphael Neider <rneider AT web.de>
45
46         * device/lib/pic16/libdev/pic18f458.c,
47           device/include/pic16/pic18f458.h: added missing T0CONbits
48
49 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
50
51         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
52
53 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
54
55         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
56
57 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
58
59         * device/include/mcs51/at89c51ed2.h: added.
60
61 2005-07-23 Raphael Neider <rneider AT web.de>
62
63         * src/pic/gen.h: added emitpcode macro for debugging
64         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
65           and replace by macro adding debug information on demand
66         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
67         * (gencjne): tried to fix; replaced with correct (slower) code
68         * (gen{Unp,P}ackBits): fixed single bit access
69         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
70         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
71           previous instruction
72         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
73           register has to be handled with care (forbidding movement
74           of assignments/uses, removing assignments completely, ...)
75         * (pCodeOptime2pCodes): make use of regIsSpecial
76         * added lots of debugging output (commented out)
77         * src/pic/rallloc.c (deassignLRs): prevent operand registers
78           from being reused as result UNLESS it is known to work
79
80 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
81
82         * support/Util/dbuf.h: include <stddef.h> for size_t
83         * .version: changed to version 2.5.2
84
85 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
86
87         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
88
89 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
90
91         * src/hc08/gen.c (genMinus): fixed bug #1241835,
92           (genModOneByte): removed needless psha/pula
93
94 2005-07-22 Raphael Neider <rneider AT web.de>
95
96         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
97           have PIC14 handled like PIC16, fixes broken pic14 linker calls
98         * src/pic/gen.c (resolveIfx): do not "invent" labels
99         * (genSkipc): changed to positive logic
100         * (genSkipCond): removed as no longer needed
101         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
102           backport from PIC16
103         * (genLeftShift): check operands are in different registers
104         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
105           INCF does not update CARRY...
106         * src/pic/main.c: fixed _linkCmd
107         * src/pic/pcode.c (unlinkpCode): added inactive code
108         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
109           alive (do not assign result and operand overlapping registers)
110
111 2005-07-22 Raphael Neider <rneider AT web.de>
112
113         * src/pic/device.c (dump_sfr): replaced register declaration with
114           call to emitSymbolToFile() to avoid duplicate symbols
115         * (assignRelocatableRegisters): do not declare external symbols
116         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
117           right (take size of type, not etype)
118         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
119         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
120         * (packRegsForAccUse): disabled assignment of WREG as
121           the result reg to prevent occurence of just fixed #1235003,
122           fixes #1242954
123         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
124           symbols (avoids duplicate symbols in .asm file)
125         * (pic14emitRegularMap): use emitSymbolToFile()
126         * src/pic/gen.c (aopOp): fixed spillLocation handling
127         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
128         * (genDataPointerSet): removed unneccessary variables/output
129
130 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
131
132         * as/mcs51/lkarea.c: enlarged codemap for banked memory
133         * device/lib/mcs51/crtbank.asm: added # to 0x0F
134
135 2005-07-21 Raphael Neider <rneider AT web.de>
136
137         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
138           architecture cannot handle them efficiently, fixes bug #1235003
139         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
140           check for empty sets before using them (fixes bug #1232190)
141
142 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
143
144         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
145           (lnksect2): generate warnings for memory overlap
146         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
147           constseg to set the name of these segments so you can instruct the linker
148           to place them in banks
149         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
150         * src/SDCCglobl.h: added MODEL_HUGE to enum,
151           added code_seg and const_seg to options
152         * src/SDCCglue.c (emitMaps): use options.const_seg,
153           (createInterruptVect): put interrupt vectors in segment HOME,
154           (glue): put HOME before static segment and put the main glue in HOME,
155           (glue): use options.code_seg
156         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
157         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
158           these segments so you can instruct the linker to place them in banks
159           (linkEdit): use code_loc for HOME segment which should be the first
160           segment in code memory now
161         * src/SDCCmem.c: fixed more stuff like bug 1238386
162         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
163           (changePointer): don't change function pointers to code pointers for
164           banked functions,
165           (compareType): added exceptional check for banked function pointers
166         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
167         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
168           after static in code memory
169         * src/mcs51/gen.c: added aopLiteralLong prototype,
170           (aopForSym): use getSize for functions,
171           (genCall): generate banked calls over one trampoline __sdcc_banked_call
172           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
173           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
174           the segment,
175           (genPcall): use call for literal function pointers and generate banked
176           calls over the one trampoline so there's only one place for the user to
177           modify according to his/hers hardware,
178           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
179           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
180         * src/mcs51/main.c: added keyword banked,
181           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
182         * support/Util/SDCCerr.c,
183         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
184           needed for passing the bank and address to the trampoline
185         * device/lib/mcs51/crtbank.asm: added for bankswitching
186         * device/lib/mcs51/Makefile: added crtbank
187
188 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
189
190         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
191           for fields at offset 0 of a struct or union as reported
192           on 2005-07-07 in the developer mailing list.
193
194 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
195
196         * src/SDCCmem.c: fixed bug 1238386
197
198 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
199
200         * src/mcs51/peeph.def: added labelrefcounting for peepholes
201           (patch #1144962), added peephole 300, enabled 259.x
202         * doc/sdccman.lyx: removed screenshot and provided link instead
203
204 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
205
206         * doc/sdccman.lyx: added section about debugging with ddd
207         * doc/figures/ddd_example.eps: screenshot of debugging session
208
209 2005-07-04 Raphael Neider <rneider AT web.de>
210
211         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
212           like CODE pointers, fixes #1115683
213         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
214           call, fixes bugs #1232211, #1228110,
215           fixed wrong casts to pCodeFlow from pCodeInstructions
216
217 2005-07-04 Raphael Neider <rneider AT web.de>
218
219         * src/pic/gen.c (popGet): changed assert to allow for
220           bit operands
221         * (popGetAddr): changed signature to provide
222           an additional index, patched all call sites
223         * (genCmpEq): handle literal-like operands correctly
224         * (genAddrOf): added sanity checks on __code/__data pointers
225         * (genAssign): added handling of symbols from __code section
226         * (gencjne): do not generate code for comparisons whose result
227           is neither stored nor used, fixes bug #1171114
228         * (AccLsh, AccRsh): operate on operand instead of WREG
229         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
230           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
231           by known count
232         * rewrote complete shift-by-literal logic, commented unused
233           functions out
234         * (genConstPointerGet): get multiple bytes (if result size > 1),
235           fixed handling of non-immediate addresses
236         * (genPointerGet): handle CODE pointers like CONST pointers
237         * (genpic14Code): insert C-SRC lines as Cource-pCodes
238         * ({aop,op}_isLitLike): NEW, single place to decide whether an
239           operand is to be treated as a literal or not
240         * (mov2w,genPcall,genCmpEq),
241           src/pic/genarith.c: use aop_isLitLike() to decide between
242           literal/register contents
243         * (addSign): added missing offset
244         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
245           only emit comment in debug-mode,
246           use {aop,op}_isLitLike throughout the file
247         * src/pic/glue.c: fix initializers for pointers (work in progress)
248         * src/pic/pcode.c (get_op): honor index on _const symbols
249         * ({reset,dump}pCodeStatistics): NEW, estimate code size
250         * (dumppBlock): added pCode size estimation
251         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
252           check for IS_SYMOP before OP_SYMBOL'ing
253         * fixed indentation, compacted switch-statements
254         * (allocReg): find free register and allocate it instead of
255           allocating new registers all the time
256         * (deassignLRs): prevent POINTER_GET's from being assigned the same
257           registers as its operands (necessary only for multibyte GETs)
258
259 2005-07-01 Raphael Neider <rneider AT web.de>
260
261         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
262           debugging .asm-output macros FENTRY + FEXIT
263         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
264           way... I wonder...
265         * (emitpComment): NEW, printf to pCode
266         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
267           offset handling
268         * (popGetAddr): NEW, variant of popGet to access an immediates
269           high(er) bytes instead of the n'th byte of memory they reference,
270           replaced popGet with popGetAddr where neccessary
271         * (genDataPointerGet): reactivated and fixed implementation
272         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
273           accesses
274         * (genDataPointerSet): fixed multibyte assignments
275         * (genpic14Code): fixed --i-code-in-asm handling
276         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
277         * (genPlus): fixed index-out-of-bounds error
278         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
279         * src/pic/ralloc.c: added debugging output macro FENTRY2
280         * (spillThis): fixed indentation, enbraced for-body for clarity
281         * (rematStr): commented out as now unused
282         * (regTypeNum): commented out special spill case (overwrites
283           arbitrary values)
284         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
285
286 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
287
288         * doc/sdccman.lyx: documented sfr16/sfr32,
289           added example for using storage class with function pointers
290         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
291
292 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
293
294         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
295         * device/lib/_itoa.c,
296         * device/lib/_ltoa.c: optimized codesize
297         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
298           but don't know how to suppress the double warning.
299         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
300         * support/Util/SDCCerr.c,
301         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
302
303 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
304
305         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
306           fixed old K&R prototypes
307         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
308         * device/lib/_gptrget.c,
309         * device/lib/_gptrgetc.c,
310         * device/lib/_gptrput.c: changed versions for new memory indicator values,
311           also new versions for small generic pointers and banked generic pointers
312         * src/port.h: added const_name
313         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
314         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
315         * src/SDCCcse.c (findPrevIc): check all associative operators
316         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
317         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
318         * src/SDCCmem.c: updated comments,
319           set far-space to 0 for pdata, results in optimized code
320         * src/SDCCmem.h: added macro CONST_NAME
321         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
322           moving the info into the highest bits, see also gptrget/gptrput
323         * src/src.dsp: added sdcc.ico to project files
324         * src/avr/gen.c (genCast): fixed bug 0x%d
325         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
326         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
327           relation between ptr_type and DCL_TYPE,
328           (genCast): fixed bug 0x%d
329         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
330           (CODE)" for const_name
331         * src/hc08/gen.c (genCast): fixed bug 0x%d
332         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
333           (hc08_port): added "CONST (CODE)" for const_name
334         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
335           (aopForRemat, adjustArithmeticResult): disconnected direct relation
336           between ptr_type and DCL_TYPE,
337           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
338           operand* and took AOP() inside function so sfr-ness can be checked,
339           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
340           new prototype,
341           (genFunction, genEndFunction): optimized stack setup,
342           (genMinus): optimized for literals with ending zeroes (in bytes),
343           (genCast): fixed bug 0x%d
344         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
345           (mcs51_port): added "CONST (CODE)" for const_name
346         * src/mcs51/peeph.def: made rule 226 more generic
347         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
348         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
349         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
350         * src/z80/main.c (z80_port): added NULL for const_name,
351           (gbz80_port): added NULL for const_name
352         * support/regression/tests/bug663539.c,
353         * support/regression/tests/sfr16.c: new tests
354
355 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
356
357         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
358
359 2005-06-24 Raphael Neider <rneider AT web.de>
360
361         * device/lib/pic16/libdev/pic18f[68][567]20.c:
362           corrected typos...
363         * device/include/pic16/signal.h: added USBIF
364           and SIG_USB
365
366 2005-06-24 Raphael Neider <rneider AT web.de>
367
368         * device/lib/pic16/libdev/pic18f2455.c,
369           device/include/pic16/pic18f2455.h: NEW
370         * device/include/pic16/pic18fregs.h,
371           device/lib/pic16/pics.all,
372           src/pic16/device.c: added 18f2455
373         * device/lib/pic16/libdev/pic18f[68][567]20.c,
374           device/include/pic16/{pic18f[68][567].h,usart.h}:
375           replaced MULTIPLE_USARTS define with more relaible
376           compatibility sfrs (for USART access)
377
378 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
379
380         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
381           and the output asm file line is printed on two lines.
382
383 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
384
385         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
386           BGT, BLE, BHI, and BLS instructions
387         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
388           genCmpEq): removed
389         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
390           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
391           fixes bug #1216342
392         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
393
394 2005-06-15 Raphael Neider <rneider AT web.de>
395
396         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
397         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
398         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
399           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
400           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
401
402 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
403
404         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
405           Marcel Telka in bug #1215704
406
407 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
408
409         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
410           located in shared memory bank.
411
412 2005-05-31 Raphael Neider <rneider AT web.de>
413
414         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
415           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
416           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
417
418 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
419
420         * device/lib/_strncpy.c: fixed the fix
421
422 2005-05-26 Raphael Neider <rneider AT web.de>
423
424         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
425           initializers with \0, bug #1208187
426         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
427           intializers with \0, bug #1208187
428
429 2005-05-26 Raphael Neider <rneider AT web.de>
430
431         * src/pic16/glue.c (pic16_printIvalChar): fixed string
432           initializers with \0, bug #1208187
433         * src/pic16/main.c (_process_pragma): added sanity checks
434           for stack position and size, emit warnings when appropriate
435
436 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
437
438         * device/lib/_strncpy.c: fixed not filling with \0
439
440 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
441
442         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
443           createFunction),
444         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
445           compound_statement),
446         * src/SDCCsymt.h,
447         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
448
449 2005-05-24 Raphael Neider <rneider AT web.de>
450
451         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
452
453 2005-05-24 Raphael Neider <rneider AT web.de>
454
455         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
456           TRISE definitions, closes bug #1162453
457
458 2005-05-22 Raphael Neider <rneider AT web.de>
459
460         * src/pic16/main.c (_process_pragma): check for missing
461           arguments to pragmas code and udata
462         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
463           consistency fixes to match other headers (thanks to Jim Paris)
464         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
465
466 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
467
468         * src/SDCCicode.c (isOperandEqual): fixed missing ;
469
470 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
471
472         * support/regression/tests/bug1198642.c: new test
473         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
474         * src/SDCCcse.c (findPrevIc): added comment, please have a look
475         * support/scripts/resource.h,
476         * support/scripts/resource.rc,
477         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
478         * support/scripts/sdcc.ico: added 32x32 icon
479
480 2005-05-18 Raphael Neider <rneider AT web.de>
481
482         * device/lib/pic16/libdev/pic18f*.c,
483         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
484           keywords to "__sfr" and "__at (X)"
485         * device/include/pic16/pic18fregs.h: added pic18f4520
486         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
487           #1203088 (MPLAB compatibility)
488
489 2005-05-17 Raphael Neider <rneider AT web.de>
490
491         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
492         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
493         * device/lib/pic16/pics.all: added new devices
494         * src/pic16/device.c: added support for pic18f4520
495
496 2005-05-16 Raphael Neider <rneider AT web.de>
497         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
498         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
499         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
500           convenience function for bit access
501
502 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
503
504         * device/lib/printf_large.c: fixed bug 1193299
505         * support/regression/tests/bug1057979.c: added test %3.3s
506
507 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
508
509         * device/include/mcs51/8051.h,
510         * device/include/mcs51/8052.h: made parseable with lint
511         * device/include/mcs51/lint.h: added include file for (sp)lint
512         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
513         * doc/cdbfileformat.lyx,
514         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
515
516 2005-05-14 Raphael Neider <rneider AT web.de>
517
518         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
519         * device/lib/pic16/libc/stdlib/itoa.c (new)
520         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
521         * device/lib/pic16/libio/Makefile: exclude subdir according to
522           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
523         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
524         * src/pic16/gen.c (genFunction): prevent annoying warning
525         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
526           nameclashes on BeOS
527         * support/cpp2/cppmain.c (cpp_output_string): new
528         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
529           fixes bug 1116802
530
531 2005-05-13 Borut Razem <borut.razem AT siol.net>
532
533         * src/SDCCmain.c (linkEdit): fixed bug 1195202
534
535 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
536
537         * .version: changed to version 2.5.1; back to bleeding edge development
538
539 2005-05-11 Borut Razem <borut.razem AT siol.net>
540
541         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
542           generate PDF version 1.3 documents
543
544 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
545
546         * .version: changed to version 2.5.0
547
548 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
549
550         * doc/sdccman.lyx: updated weblinks, index and smaller updates
551
552 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
553
554         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
555         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
556         well as many smaller updates.
557         * .version: changed to version 2.5.0-pre1
558
559 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
560
561         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
562
563 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
564
565         * support/regression/tests/bug1185672.c: added
566         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
567           bug 1185672
568         * src/mcs51/gen.c (genCall): added comments, made it look safer
569         * src/mcs51/gen.c (genEndFunction): simplified
570
571 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
572
573         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
574
575 2005-04-14 Borut Razem <borut.razem AT siol.net>
576
577         * fixed bug 1045046 - SIGSEGV with really simple code?:
578           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
579           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
580
581 2005-04-14 Borut Razem <borut.razem AT siol.net>
582
583         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
584           src/pic16/device.h: temporarily disabled experimental #inline pragma
585           for 2.5.0 release
586
587 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
588
589         * device/include/z80/stdio.h,
590         * device/include/z80/string.h: removed these highly incomplete files so
591           SDCC can use the default ones in device/include/
592
593 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
594
595         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
596         gcc warning.
597         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
598         fix sdcpp warnings.
599
600 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
601
602         * device/include/malloc.h: removed redundant __reentrant prototypes
603         * device/lib/_mullong.c: added working xstack variant in asm (C version
604           doesn't pass regression tests)
605         * device/lib/bpx.c: used __data and made bpx char for mcs51
606         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
607           (createFunction): fixed bug with xstackPtr
608         * src/SDCCcse.c: corrected comments
609         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
610           (killDeadCode, eBBlockFromiCode): removed unused code
611         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
612           corrected comments
613         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
614           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
615           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
616           (genModOneByte): fixed warning in MSVC
617         * src/mcs51/main.c (): added comments
618         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
619
620 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
621
622         * src/SDCCmain.c (linkEdit): oops, changed one line too many
623
624 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
625
626         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
627
628 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
629
630         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
631         characters arrays of larger size than the declared one.
632
633 2005-04-10 Borut Razem <borut.razem AT siol.net>
634
635         * src/pic/gen.c (genInline),
636           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
637           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
638           (findNextInstruction), (findPrevInstruction),
639           (findInstructionUsingLabel),
640           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
641         * src/pic/pcode.c (findLabel): added missing '\n'
642         * src/src.dsp: added SDCCdwarf2.c to the project
643
644 2005-04-09 Borut Razem <borut.razem AT siol.net>
645
646         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
647
648 2005-04-08 Raphael Neider <rneider AT web.de>
649
650         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
651           into the chain after a given one) and mergeDefmapSymbols (combine
652           defmap entries for each symbol per pcode)
653         * (createDefmap): have defmap entries merged in the end
654         * (defmapReplaceSymRef): split defmap entries covering two accesses to
655           a symbol before replacing one access type's symbol, merge symbols in
656           the end (replacement symbol might already have an entry)
657         * (assignValnums): keep reference to written WREG intact
658
659 2005-04-08 Raphael Neider <rneider AT web.de>
660
661         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
662           Alpha)
663
664 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
665
666         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
667         bytes
668
669 2005-04-07 Raphael Neider <rneider AT web.de>
670
671         * device/include/pic16/usart.h: added compatibility defines for
672           devices with more than one USART
673         * device/include/pic16/pic18f[68][567]20.h: activated above defines
674
675 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
676
677         * device/lib/Makefile.in: updated for port specific include
678
679 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
680
681         * support/regression/ports/mcs51/spec.mk: added mcs51 include
682
683 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
684
685         * device/include/8051.h,
686         * device/include/8052.h,
687         * device/include/at89S8252.h,
688         * device/include/at89c55.h,
689         * device/include/at89x051.h,
690         * device/include/at89x51.h,
691         * device/include/at89x52.h,
692         * device/include/mcs51reg.h,
693         * device/include/reg51.h,
694         * device/include/reg764.h,
695         * device/include/regc515c.h,
696         * device/include/sab80515.h: (re)moved these 12 files
697         * device/include/mcs51/8051.h,
698         * device/include/mcs51/8052.h,
699         * device/include/mcs51/at89S8252.h,
700         * device/include/mcs51/at89c55.h,
701         * device/include/mcs51/at89x051.h,
702         * device/include/mcs51/at89x51.h,
703         * device/include/mcs51/at89x52.h,
704         * device/include/mcs51/mcs51reg.h,
705         * device/include/mcs51/reg51.h,
706         * device/include/mcs51/reg764.h,
707         * device/include/mcs51/regc515c.h,
708         * device/include/mcs51/sab80515.h: and added them here
709
710 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
711
712         * device/include/stdarg.h: changed SDCC specific keywords to double
713           underlined form.
714         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
715           mcs51 and ds390.
716         * device/include/hc08/mc68hc908gp32.h,
717         * device/include/hc08/mc68hc908jb8.h,
718         * device/include/hc08/mc68hc908jkjl.h,
719         * device/include/hc08/mc68hc908qy.h: fixed comments
720         * device/include/mcs51/README: updated
721         * device/include/mcs51/c8051f120.h: added PINRSF
722         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
723         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
724           amidst code. Also inline is not supported.
725
726 2005-04-06 Raphael Neider <rneider AT web.de>
727
728         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
729         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
730           callers stack/frame pointers
731
732 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
733
734         * device/include/pic16/usart.h: added, missing in previous commit,
735         * device/include/pic16/adc.h: fixed typo,
736         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
737         commit,
738         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
739         <p18fxxx.inc>
740         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
741         uninitialized because a bug appears with gplink
742         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
743         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
744         complains for unrecognised option
745
746 2005-04-05 Raphael Neider <rneider AT web.de>
747
748         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
749           structs as well (using memcpy)
750         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
751           on ISRs (GOTO has no label)
752         * src/pic16/device.h: added OF_OPTIMIZE_DF
753         * src/pic16/main.c: added compiler switch --optimize-df to enable the
754           new data flow analysis/optimization
755         * src/pic16/pcode.c: added (prototypes for and implementation of)
756           dataflow analysis functions, fixed pCodeInstructions' inCond and
757           outCond values, made RCALL a branch instruction
758         * (pic16_unlinkpCode): keep C line if possible
759         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
760           C line moved if possible
761         * (pic16_getRegFrompCodeOp): NEW, improved version of...
762         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
763           to use new pic16_getRegFrompCodeOp (works for more SFRs)
764         * (pic16_BuildFlow): fixed skip instructions with label (did not start
765           new flow)
766         * (pic16_getJumptabpCode): NEW, needed in...
767         * (LinkFlow): fixed handling of jumptables, calls and conditional
768           branches
769         * (pic16_InsertCommentAfter): NEW
770         * (pic16_pCodeReplace): made verbose and flow preserving
771         * (AnalyzeFlow): added call to data flow analysis
772         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
773         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
774         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
775
776 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
777
778         * src/SDCCast.c (decorateType): fixed bug #1105626
779
780 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
781
782         * device/include/asm/pic16/features.h,
783         * pic18f*.h headers,
784         * device/include/pic16/adc.h,
785         * device/include/pic16/delay.h,
786         * device/include/pic16/i2c.h,
787         * device/include/pic16/malloc.h,
788         * device/include/pic16/stdio.h,
789         * device/include/pic16/stdlib.h,
790         * device/include/pic16/string.h,
791         * device/lib/pic16/libc/stdio/printf_tiny.c,
792         * device/lib/pic16/libc/stdio/printf_small.c,
793         * device/lib/pic16/libc/stdio/strmgpsim.c,
794         * device/lib/pic16/libc/stdio/strmmssp.c,
795         * device/lib/pic16/libc/stdio/strmusart.c,
796         * device/lib/pic16/libc/stdio/vfprintf.c,
797         * device/lib/pic16/libc/stdlib/ltoa.c,
798         * device/lib/pic16/libc/stdlib/putchar.c,
799         * device/lib/pic16/libc/stdlib/x_ftoa.c,
800         * device/lib/pic16/libc/stdlib/memchrpgm.c,
801         * device/lib/pic16/libc/stdlib/memchrram.c,
802         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
803         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
804         * device/lib/pic16/libio/adc/adcbusy.c,
805         * device/lib/pic16/libio/adc/adcread.c,
806         * device/lib/pic16/libio/adc/adcsetch.c,
807         * device/lib/pic16/libio/usart/ubaud.c,
808         * device/lib/pic16/libio/usart/ubusy.c,
809         * device/lib/pic16/libio/usart/udrdy.c,
810         * device/lib/pic16/libio/usart/uopen.c,
811         * device/lib/pic16/libio/usart/uputc.c,
812         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
813         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
814         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
815         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
816         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
817         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
818         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
819         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
820         specific keywords to double underlined form,
821         * device/lib/pic16/libc/Makefile.rules,
822         * device/lib/pic16/libsdcc/Makefile.rules,
823         * device/lib/pic16/libm/Makefile,
824         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
825         to compile with C standard set in Makefile.common
826         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
827         rand.c and crc.c in compilation process,
828         * device/lib/pic16/libsdcc/int/divuint.c,
829         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
830         `c' from signed to unsigned,
831         * device/lib/pic16/startup/crt0.c,
832         * device/lib/pic16/startup/crt0i.c,
833         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
834         keywords to double underlined form, bug fixes in _do_cinit function
835         which prevented the correct initialization of the .idata segment,
836         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
837         core to enter a infinite loop
838         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
839
840 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
841
842         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
843
844 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
845
846         * device/include/Makefile.in: add support for hc08 subdirectory
847         * device/include/hc08/: new subdirectory
848         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
849         Lucas Loizaga, thanks!
850         * device/include/hc08/mc68hc908qy.h,
851         * device/include/hc08/mc68hc908gp32.h,
852         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
853         their own directory. Changed internal macro names to use the compiler
854         reserved namespace. Changed SDCC specific keywords to double
855         underlined form.
856         * device/include/math.h,
857         * device/include/malloc.h,
858         * device/include/stdarg.h,
859         * device/include/stdbool.h
860         * device/include/string.h,
861         * device/include/tinibios.h,
862         * device/include/ds400rom.h,
863         * device/include/8051.h,
864         * device/include/8052.h,
865         * device/include/80c51xa.h,
866         * device/include/at89c55.h,
867         * device/include/at89S8252.h,
868         * device/include/at89x51.h,
869         * device/include/at89x52.h,
870         * device/include/ds80c390.h,
871         * device/include/reg764.h,
872         * device/include/regc515c.h,
873         * device/include/sab80515.h,
874         * device/include/mcs51/c8051f000.h,
875         * device/include/mcs51/c8051f018.h,
876         * device/include/mcs51/c8051f020.h,
877         * device/include/mcs51/c8051f040.h,
878         * device/include/mcs51/c8051f060.h,
879         * device/include/mcs51/c8051f120.h,
880         * device/include/mcs51/c8051f300.h,
881         * device/include/mcs51/c8051f310.h,
882         * device/include/mcs51/c8051f320.h,
883         * device/include/mcs51/c8051f330.h,
884         * device/include/mcs51/c8051f350.h,
885         * device/include/z180.h: Changed SDCC specific keywords to double
886         underlined form.
887
888 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
889
890         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
891         18F4455,
892         * (pic16_assignConfigWordValue): disable testing of configuration
893         register value with config mask,
894         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
895         function with port->fun_prefix,
896         * (genFunction): when generating a naked interrupt function never
897         create an absolute segment placed in interrupt vector address, place
898         the actual interrupt function at IVA instead, when an interrupt
899         function is generated with unspecified interrupt then do not create
900         the absolute section,
901         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
902         code for generating a call to generic pointer get/put function with
903         a call to function pic16_callGenericPointer(),
904         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
905         the call to the generic pointer get/put functions with prefixing the
906         function name with port->fun_prefix,
907         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
908         * src/pic16/main.c (_process_pragma): prefix function with
909         port->fun_prefix,
910         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
911         calling assembler, old 18Fxxxx macro is deprecated,
912         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
913         PC_ASMDIR in while condition,
914         * (findInstruction): add PC_ASMDIR in while condition,
915         * (buildCallTree): prefix main with port->fun_prefix,
916         * (pic16_pCode2str): fixed bug that didn't emit the memory access
917         identifier for variable with banked access in instructions BTFSS,
918         BTFSC, BCF, BSF, BTG
919         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
920         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
921         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
922         perform optimization when enviroment variable NO_REG_OPT is set,
923         * (insideLRBlock): NEW, return 1 if register is inside an
924         INF_LOCALREGS block,
925         * (RemoveRegFromLRBlock): remove a register that is completely
926         eliminated by register optimization, but it is still left in local
927         register store/restore in/from stack block,
928         * (Remove2pcodes): after removing register, check to see if it
929         should be removed from local register store/restore in/from stack
930         block,
931         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
932         DUMMY_READ_VOLATILE,
933
934         * device/include/pic16/adc.h: minor prototype modifications and
935         update,
936         * device/include/pic16/malloc.h: added GPL notice various
937         modifications,
938         * device/include/pic16/stdint.h: NEW, standard header for ints
939         * device/include/pic16/delay.h: NEW, header for delay functions,
940         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
941         delay1mtcy,
942         * device/include/pic16/signal.h: NEW, header providing helper macros
943         for implementing signal handlers,
944         * device/include/pic16/stdio.h: added prototypes for functions,
945         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
946         prototypes for stdin and stdout, added macro PUTCHAR to
947         automatically implement putchar function prototype,
948         * device/include/pic16/usart.h: modified and updated USART library,
949         * device/lib/pic16/libio/adc/,
950         * device/lib/pic16/libio/i2c: some modifications to improve library
951         performance,
952         * device/lib/pic16/libc/stdio/: modifications for the new printf*
953         family of functions,
954         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
955         family of functions and other sources,
956         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
957         of the PIC18Fxx[28] devices,
958         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
959         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
960         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
961         _do_cinit function, because the previous failed when local variables
962         where not placed in the same memory bank,
963         * device/lib/pic16/libsdcc/char/: various modifications to improve
964         library performance,
965         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
966         information on the new functions of the c library and more...
967
968 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
969
970         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
971
972 2005-03-26 Raphael Neider <rneider AT web.de>
973
974         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
975           if condition == CARRY)
976         * (genCmp): adapted to new genSkipc semantics
977         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
978           on rIfx (genCmp was broken)
979
980 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
981
982         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
983         * src/z80/main.c (_keywords[]),
984         * src/SDCCglobal.h (struct options),
985         * src/SDCC.y,
986         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
987         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
988         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
989         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
990         always available in leading double underscore form. The C99 support is
991         mostly missing, but it's a start.
992         * support/regression/tests/bug-227710.c: fixed nonconforming use of
993         reserved identifier "__data".
994
995 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
996
997         * src/mcs51/peeph.def: fixed bug 1170013
998
999 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
1000
1001         * device/include/mcs51reg.h: fixed bug 842007
1002
1003 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1004
1005         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
1006         last time.
1007
1008 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1009
1010         * src/port.h (struct PORT),
1011         * src/avr/ralloc.c (avr_assignRegisters),
1012         * src/avr/main.c,
1013         * src/ds390/ralloc.c (ds390_assignRegisters),
1014         * src/ds390/main.c,
1015         * src/hc08/ralloc.c (hc08_assignRegisters),
1016         * src/hc08/main.c,
1017         * src/mcs51/ralloc.c (mcs51_assignRegisters),
1018         * src/mcs51/main.c,
1019         * src/pic/ralloc.c (pic14_assignRegisters),
1020         * src/pic/main.c,
1021         * src/pic16/ralloc.c (pic16_assignRegisters),
1022         * src/pic16/main.c,
1023         * src/xa51/ralloc.c (xa51_assignRegisters),
1024         * src/xa51/main.c,
1025         * src/z80/ralloc.c (z80_assignRegisters),
1026         * src/z80/ralloc.h,
1027         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
1028         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
1029         * src/SDCCcse.h,
1030         * src/SDCCdflow.c (computeDataFlow),
1031         * src/SDCCdflow.h,
1032         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
1033         * src/SDCCloop.h,
1034         * src/SDCCcflow.c (*),
1035         * src/SDCCcflow.h,
1036         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
1037         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
1038         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
1039         immedDom() returning wrong block; probably fixes bug #1160833)
1040
1041 2005-03-20 Borut Razem <borut.razem AT siol.net>
1042
1043         * support/scripts/inc2h.pl: WIN32 port
1044
1045 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
1046
1047         * device/lib/makefile.in: added abs.c and labs.c
1048
1049 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
1050
1051         * device/include/stdint.h: added
1052         * device/lib/abs.c: added
1053         * device/lib/labs.c: added
1054         * device/include/stdlib.h: added abs() and labs() prototypes
1055         * device/lib/libsdcc.lib: added abs and labs
1056         * device/include/float.h,
1057         * device/lib/_fsmul.c,
1058         * device/lib/printf_fast.c,
1059         * device/lib/printf_tiny.c: updated comments
1060
1061 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1062
1063         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
1064         bug #1164313
1065
1066 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1067
1068         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
1069         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
1070
1071 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
1072
1073         * device/lib/printf_large.c: removed inline assembly for portability and
1074           readability. Use printf_fast if speed or size are more important.
1075         * src/pic16/gen.c: removed conditions around use of DEBUGpc
1076         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
1077
1078 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
1079
1080         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
1081         prevent compiler warning
1082
1083 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
1084
1085         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
1086         moved to level 0 and declared as static. Also they are explicit
1087         placed in access bank. This was necessery because some times they
1088         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
1089         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
1090         optimizations. Currently only compare to unsigned char is implemented,
1091         * src/pic16/gen.c: added fReturnIdx array,
1092         * (struct resolvedIfx) is moved to gen.h and made public,
1093         * (struct _G): added sregsAlloc and sregsAllocSet fields,
1094         * (aopForSym): added an optimization to directly store in stack of
1095         the operand of a SEND iCode,
1096         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
1097         but as registers instead (AOP_REG) using the fReturnIdx array,
1098         * (pic16_freeAsmop): remove the freed register from the
1099         _G.sregsAlloc field,
1100         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
1101         a compare of 'WREG',
1102         * (pic16_popGetTempRegCond): changed function prototype, now
1103         function takes also a bitVector argument v which holds the current
1104         set of registers that are allocated for stack access by aopForSym,
1105         registers allocated in aopForSym for accessing stack symbols are not
1106         any more part of the functions usedRegs field,
1107         * (genCall): some times aopOp is called for a stack variable to be
1108         send, aopForSym might perform the push, if this is true make sure
1109         that genCall doesn't push the variable twice by testing _G.resDirect,
1110         * (genFunction): changed testing for unspecified interrupt number
1111         from 256 to INTNO_UNSPEC,
1112         * modified selection scheme of frame pointer generation. Previously
1113         if function did use local registers a frame pointer was generated,
1114         now a frame pointer is generated only if function has arguments
1115         (that need PLUSW2 register access), or has stack arguments, or the
1116         compiler is not instructed to omit the frame pointer,
1117         * (genEndFunction): before restoring local registers that were saved
1118         in the function preamble, also restore the registers that *might*
1119         have been allocated for stack access,
1120         * (genRet): removed some old comments,
1121         * (genCmp, the active (RN's) version): added a call to the
1122         pic16_genCmp_special function to perform the compare with a more
1123         robust and optimized way,
1124         * (genInline): a feature has been added in inline code generation,
1125         which allows a wildcard variable substitution when writing inline
1126         assembly. Code is incomplete and experimental therefore undocumented,
1127         * (genCast): changed order of aopOp for result and right to allow
1128         aopForSym to directly load the result if possible,
1129         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
1130         perform an optimized compare on some selected special occasions,
1131         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
1132         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
1133         generate an IVT any more,
1134         * src/pic16/main.c (pic16_optionsTable): added command line option
1135         --optimize-cmp,
1136         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
1137         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
1138         macros,
1139         * src/pic16/NOTES: Raphael Neider added in list of active developers
1140         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
1141         jumptable_end to prevent bug #,
1142         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
1143         inCond and outCond fields,
1144         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
1145         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
1146         turn off register spilling,
1147         * (packRegsForOneUse): synced with other ports' versions although it
1148         is not used currently,
1149         * (pic16_packRegisters): added an optimization while reading
1150         structure bitfields, some registers may be saved (malloc code is
1151         decreased by 80 bytes)
1152
1153 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
1154
1155         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
1156         left is a bitfield, if yes, then don't optimize assignment. Perhaps
1157         this can be optimized more?
1158
1159 2005-03-10 Raphael Neider <rneider AT web.de>
1160
1161         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
1162           genNearPointerGet): (hopefully) fixed access to bitfields via
1163           pointers (p->bitN = x; and x = p->bitN; failed)
1164
1165 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
1166
1167         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
1168
1169 2005-03-09 Raphael Neider <rneider AT web.de>
1170
1171         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
1172
1173 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
1174
1175         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
1176         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
1177           (regTypeNum): set REG_BIT type if necessary
1178         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
1179         * support/regression/tests/critical.c: check bug 1144613
1180
1181 2005-03-02 Raphael Neider <rneider AT web.de>
1182
1183         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
1184
1185 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1186
1187         * src/avr/ralloc.c (serialRegAssign),
1188         * src/ds390/ralloc.c (serialRegAssign),
1189         * src/hc08/ralloc.c (serialRegAssign),
1190         * src/mcs51/ralloc.c (serialRegAssign),
1191         * src/pic/ralloc.c (serialRegAssign),
1192         * src/pic16/ralloc.c (serialRegAssign),
1193         * src/xa51/ralloc.c (serialRegAssign),
1194         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
1195
1196 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
1197
1198         * src/SDCCast.c (decorateType): fixed bug 1124787
1199
1200 2005-02-20 Hubert Sack <sack AT digiplan.de>
1201         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1202
1203         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
1204         patch #1121755
1205
1206 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1207
1208         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
1209         to keep the correct label reference count when adding/removing references
1210         to labels. A peephole file using this is appended to patch #1144962.
1211
1212 2005-02-14 Raphael Neider <rneider AT web.de>
1213
1214         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
1215         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
1216         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
1217           retrievals of result operand's value on assignment
1218
1219 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
1220
1221         * device/include/pic16/string.h: modified prototype for memccpy()
1222         to memccpy(void *, void *, char, size_t)
1223         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
1224         check whether to omit frame pointer or not,
1225         * (genInline): convert all occurences of "\n" to LF in inline
1226         assembler blocks, this helps formatting the inline text,
1227         * (pic16_loadFSR0): modified prototype,
1228         * (genNearPointerGet, genNearPointerSet): reorganization of code,
1229         removed some 8051 legacy code,
1230         * (genPackBits): enabled handling bitfields exceeding one byte in size,
1231         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
1232         before allocating temporary registers in functions,
1233
1234 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1235
1236         * support/regression/tests/bitvars.c: corrected the "fix"
1237
1238 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1239
1240         * support/regression/tests/bitvars.c,
1241         * support/regression/tests/bitwise.c,
1242         * support/regression/tests/rotate.c: "fixed" problems on Alpha
1243
1244 2005-02-10 Raphael Neider <rneider AT web.de>
1245
1246         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
1247           different size for Alpha
1248         * src/pic16/gen.c (genCmpEq) : improved compare with 0
1249
1250 2005-02-09 Raphael Neider <rneider AT web.de>
1251
1252         * src/SDCC.lex(doPragma) : save and restore warning options as well
1253           (also added new stack plus clone- and copyAndFreeSDCCERRG())
1254         * have #pragma less_pedantic set the errorlevel to WARNING
1255           (fixes #1117001)
1256         * (cloneOptimize) : fixed wrong malloc's size
1257         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
1258           facilitate correct handling of #pragma (save|restore)
1259
1260 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1261
1262         * src/mcs51/gen.c: removed non-standard C nameless struct/union
1263
1264 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
1265
1266         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
1267
1268 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
1269
1270         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
1271
1272 2005-02-02 Raphael Neider <rneider AT web.de>
1273
1274         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
1275         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
1276         * (pic16_storeForReturn): fixed to allow returning function pointers
1277         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
1278         * device/include/pic16/{stddef.h,stdbool.h}: added
1279
1280 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
1281
1282         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
1283
1284 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
1285
1286         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
1287         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
1288          appeared to be required
1289
1290 2005-01-31 Borut Razem <borut.razem AT siol.net>
1291
1292         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
1293           include/mcs51 and include/z80 directories to the package
1294
1295 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1296
1297         * src/hc08/gen.c (genFunction): fixed bug #1112752
1298
1299 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1300
1301         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
1302
1303 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1304
1305         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
1306
1307 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
1308
1309         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
1310
1311 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
1312
1313         * device/include/c8051fxxx.h: removed these 6 files
1314         * device/include/mcs51/c8051fxxx.h: added these 11 new files
1315
1316 2005-01-26 Raphael Neider <rneider AT web.de>
1317
1318         * src/pic16/gen.c (genAssign): fixed assignment from longs
1319           in codespace (were cut to three bytes)
1320         * (genDummyRead): implemented (except for CODESPACE...),
1321           fixed bug #1108575
1322         * src/pic16/glue.c (emitStatistics): beautified
1323         * device/lib/pic16/libm/Makefile: added include path
1324
1325 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1326
1327         * src/z80/gen.c (aopPut): fixed bug #1103902
1328
1329 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1330
1331         * device/lib/expf.c: fixed bug #1095792
1332
1333 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
1334
1335         * device/lib/pic16/libm: added Math library sources
1336
1337 2005-01-24 Raphael Neider <rneider AT web.de>
1338
1339         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
1340           to enable upcast to pCodeOpReg2 (there is no type tag to
1341           differenciate the two and pic16_popGet2p cast into PCOR2)
1342         * src/pic16/main.c (_process_pragma): fixed another malloc bug
1343           (sizeof(sectNames) changed to sizeof(sectName))
1344           Both patches fix segfaults under MinGW.
1345
1346 2005-01-23 Raphael Neider <rneider AT web.de>
1347
1348         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
1349           Safe_[mc]?alloc()'ed variables
1350         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
1351           of (byte sized) temporaries (assign them to WREG for now)
1352         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
1353           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
1354           this might fix SIGSEGVs on MinGW...
1355         * src/SDCCopt.c (killDeadCode): restored original behaviour
1356           (volatile operands might get thrown away though)
1357
1358 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
1359
1360         * src/pic16/gen.c: fixed bug #1106975,
1361         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
1362         pointer update, INTCON is saved, global interrupts are disabled and
1363         restored after updateing TOS.
1364         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
1365         * added function attribute 'shadowregs' to take advantage of shadow
1366         registers,
1367         * added function attribute 'wparam' as an alternative to the wparam
1368         pragma,
1369         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
1370         user declares a non-ISR function as 'shadowregs',
1371         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
1372
1373 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
1374
1375         * .version: bumped version number to 2.4.8
1376         * device/lib/pic16/pics.all: list of PIC18F devices supported by
1377         pic16 port,
1378         * device/lib/pic16/libio/i2c/: I2C module support library,
1379         * device/include/pic16/i2c.h: I2C support library header,
1380         * device/lib/pic16/libc/stdio/: standard IO support sources,
1381         * (printf_small.c): printf_small() source, supports float print,
1382         * (printf_tiny.c): printf_tiny() source, does not support floats,
1383         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
1384         enable global optimizations for entire library source, other
1385         Makefiles in the source tree are also modified to reflect this,
1386         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
1387         function,
1388         * doc/sdccman.lyx: updated to reflect new changes,
1389         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
1390         sym->onStack if-case,
1391         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
1392         sbit, idata, _idata, xdata, _xdata,
1393         * added pragma library, to link an external library, (see doc),
1394         * removed command line options, --pomit-config-words, --pomit-ivt,
1395         --pleave-reset-vector,
1396         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
1397         when calling assembler to reflect memory model used, also define
1398         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
1399         reflect stack model used,
1400         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
1401         on stack return NULL,
1402
1403 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1404
1405         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
1406           of the operands is volatile. Fixes #1020220
1407
1408 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1409
1410         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
1411         * (OptimizeRegUsage): make sure that there is really no other flow where
1412           the first pCode is used
1413
1414 2005-01-22 Raphael Neider <rneider AT web.de>
1415
1416         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
1417           to fix #1106967 (pCode->seq are not set up correctly)
1418
1419 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1420
1421         * src/SDCCglue.c (glue): make sure code area is declared before the
1422         static initialization area.
1423
1424 2005-01-21 Raphael Neider <rneider AT web.de>
1425
1426         * device/lib/Makefile.in: fixed test for pic16 install dir
1427         * device/lib/pic16/*/Makefile*: modified compile flags to enable
1428           optimizations
1429         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
1430           added --optimize-goto compiler switch and pragma wparam documentation
1431         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
1432         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
1433           and PRODH closing bug #1071770 (peephole optimizer)
1434
1435 2005-01-19 Raphael Neider <rneider AT web.de>
1436
1437         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
1438           cmdLine buffers (used when calling sdcpp...) are large enough
1439           (MAX_PATH=256 truncates arguments leading to system halts when
1440           used in MinGW...)
1441         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
1442         * (genUminus): rewritten to for efficiency
1443         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
1444           used uninitialized in some cases)
1445         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
1446           copy the third byte from the int -- now assumes 0x80 (data memory)
1447         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
1448           operands (genAddLit expects the iCode's operands to swapped as
1449           well), fixed leftover bytes (crashed for short left operands)
1450         * (pic16_genMinusDec): performance improvements, removed false
1451           PIC14 emitSKPNCs
1452         * (pic16_genMinus): fixed to cope with differently sized operands
1453         * src/pic16/glue.c (pic16_glue): added new banksel optimization
1454           for --obanksel > 1
1455         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
1456         * src/pic16/graph.[ch]: implementation of directed graphs, used by
1457           new banksel optimization
1458         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
1459           analysis for temporary registers (segfaults...)
1460         * src/pic16/peeph.def: added rule
1461
1462 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
1463
1464         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
1465         which converts a float number to its ASCII representation
1466         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
1467         functions to convert the fractional and integer part of a float to ASCII,
1468         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
1469         realloc.c): added _MALLOC_SPEC to explicit place variables in data
1470         ram
1471         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
1472         _STATMEM macros,
1473         * device/include/pic16/adc.h: added GPL info,
1474         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
1475         a pCodeOp as tested operand,
1476         * (genNearPointerGet): optimized bit testing, does not use
1477         intermediate register for bit value, test directly instead with
1478         BTFSS, BTFSC, works only for single bits,
1479         * (genpic16Code): dump the name of the iCode in the asm,
1480         * src/pic16/ralloc.c (decodeOp): removed static declaration and
1481         renamed to pic16_decodeOp,
1482         * (serialRegAssign): do not allocate a temporary register for iCode
1483         sequences that test a single bit for 1/0
1484
1485 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
1486
1487         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
1488         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
1489         access stack and frame pointers. They are initially assigned to
1490         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
1491         accessing SFRs. Updated all occurences of modification of stack or
1492         frame pointer in gen.c and pcode.c,
1493         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
1494         assigning of a literal value to pointers,
1495         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
1496         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
1497         selected
1498
1499 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
1500
1501         * doc/sdccman.lyx: update documentation about stack pragma, added
1502         some info for stack memory models
1503
1504 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1505
1506         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
1507
1508 2005-01-08 Raphael Neider <rneider AT web.de>
1509
1510         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
1511           udata sections to fix bug #1097823
1512
1513 2005-01-05 Raphael Neider <rneider AT web.de>
1514
1515         * src/pic16/gen.c (genGenericShift): added handling of differently
1516           sized left operand and result
1517
1518 2005-01-04 Raphael Neider <rneider AT web.de>
1519
1520         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
1521         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
1522           to hold the condition bit)
1523         * added new version of genCmp (old code available via #define)
1524         * added new version of genShiftLeft/genShiftRight in a generic
1525           way, now supports shifting by negative values
1526         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
1527           shiftCount (expected by genGenericShift)
1528         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
1529         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
1530           dump
1531         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
1532           is an invalid literal too...)
1533
1534 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
1535
1536         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
1537         from Raphael Neider,
1538         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
1539         for 8-bit literals. This fixes some literal operands which are sign
1540         extended to 16-bits ints when instruction needs only 8-bits.
1541
1542 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
1543
1544         * device/lib/logf.c: added mcs51 assembly version
1545         * device/lib/expf.c: added mcs51 assembly version
1546         * device/lib/_logexpf.c: new shared asm code for expf and logf
1547         * device/include/math.h: add defines for assembly math library
1548         * device/lib/Makefile.in: build new _logexpf.c
1549         * device/lib/libfloat.lib: use new _logexpf.c
1550
1551 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
1552
1553         * src/pic/device.c
1554         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
1555           device types which have less than 0x7f registers.
1556
1557 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
1558
1559         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
1560
1561 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
1562
1563         * device/lib/printf_fast.c: only build on supported arch.
1564         * device/lib/printf_tiny.c: only build on supported arch.
1565         * device/lib/printf_fast_f.c: only build if asm float lib
1566         * device/lib/_fsget1arg.c: only build if asm float lib
1567         * device/lib/_fsget2args.c: only build if asm float lib
1568         * device/lib/_fsnormalize.c: only build if asm float lib
1569         * device/lib/_fsreturnval.c: only build if asm float lib
1570         * device/lib/_fsrshift.c: only build if asm float lib
1571         * device/lib/_fsswapargs.c: only build if asm float lib
1572         * device/include/stdio.h: don't provide print_fast,
1573           print_fast_f, print_tiny prototypes if --xstack used
1574
1575 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
1576
1577         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
1578         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
1579           to the SOURCES
1580
1581 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
1582
1583         * device/lib/printf_fast_f.c: same as printf_fast, but
1584           with floating point enabled
1585         * device/lib/printf_fast.c: minor tweaks
1586         * device/include/stdio.h: add printf_fast_f
1587
1588 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
1589
1590         * src/SDCCmain.c: make --float-reent default for mcs51
1591         * device/lib/_fsadd.c: added mcs51 assembly version
1592         * device/lib/_fssub.c: added mcs51 assembly version
1593         * device/lib/_fsmul.c: added mcs51 assembly version
1594         * device/lib/_fsdiv.c: added mcs51 assembly version
1595         * device/lib/_fseq.c: added mcs51 assembly version
1596         * device/lib/_fsneq.c: added mcs51 assembly version
1597         * device/lib/_fsgt.c: added mcs51 assembly version
1598         * device/lib/_fslt.c: added mcs51 assembly version
1599         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
1600         * device/lib/Makefile.in: add _fscmp to build
1601         * device/lib/libfloat.lib: add _fscmp to build
1602
1603 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
1604
1605         * device/lib/_fs2slong.c: added mcs51 assembly version
1606         * device/lib/_fs2sint.c: added mcs51 assembly version
1607         * device/lib/_fs2schar.c: added mcs51 assembly version
1608         * device/lib/_fs2ulong.c: added mcs51 assembly version
1609         * device/lib/_fs2uint.c: added mcs51 assembly version
1610         * device/lib/_fs2uchar.c: added mcs51 assembly version
1611         * device/lib/_slong2fs.c: added mcs51 assembly version
1612         * device/lib/_sint2fs.c: added mcs51 assembly version
1613         * device/lib/_schar2fs.c: added mcs51 assembly version
1614         * device/lib/_ulong2fs.c: added mcs51 assembly version
1615         * device/lib/_uint2fs.c: added mcs51 assembly version
1616         * device/lib/_uchar2fs.c: added mcs51 assembly version
1617         * device/include/float.h: added #define to select asm vs c
1618
1619 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
1620
1621         * device/lib/printf_fast.c: improvements to float output
1622         * device/include/float.h: add defines for assembly float library
1623         * device/lib/_fsget1arg.c: receive 1 float arg
1624         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
1625         * device/lib/_fsnormalize.c: normalize a float
1626         * device/lib/_fsreturnval.c: return float, various helper routines
1627         * device/lib/_fsrshift.c: right shift a float's mantissa
1628         * device/lib/_fsswapargs.c: swap 2 floats
1629         * device/lib/Makefile.in: build these 6 new files for mcs51
1630         * device/lib/libfloat.lib: add these 6 files to the library
1631
1632 2004-12-26 Borut Razem <borut.razem AT siol.net>
1633
1634         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
1635           built by gcc 3.4.2
1636
1637 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
1638
1639         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
1640           and fully reentrant and register bank neutral.
1641         * device/lib/printf_fast.c: added float (not enabled by default),
1642           added compact/slower integer (also not enabled by default),
1643           improved size/speed of fast integer code, other minor changes
1644         * device/include/stdio.h, device/lib/Makefile.in,
1645           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
1646
1647 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
1648
1649         * src/pic16/pcode.c: declaring variables other than at the start of a
1650           block is not supported in C by VC6.
1651
1652 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
1653
1654         * applied a previous patch from Raphael Neider that wasn't included
1655         in the previous commits, which fixes infinite loops within jumptable
1656         improvements,
1657         * made some fixes that previous patches introduced
1658
1659 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
1660
1661         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
1662         that fixes an issue with AOP_PCODE asmop's offset,
1663         * (pic16_popCopyReg): update instance field too,
1664         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
1665         function of pic port,
1666         * (genCmp, genAnd, genAssign),
1667         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
1668
1669 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
1670
1671         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
1672         variables initial values to idata section,
1673         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
1674         variables in some functions. This utilizes parmBytes field of iCode
1675         structure to hold the offset of the variable in stack. (might be
1676         able to use the stack field too?)
1677         * applied patch from Raphael Neider # ### , # ###
1678         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
1679         variable initial values in idata section,
1680         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
1681         for static variables with initial value
1682         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
1683         applied fix in while loop from Raphael Neider.
1684
1685 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
1686
1687         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
1688         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
1689         * src/ds390/ralloc.c (serialRegAssign): spill bits
1690         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
1691         * support/Util/SDCCerr.c,
1692         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
1693         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
1694         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
1695
1696 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
1697
1698         * device/include/sdcc-lib.h: inserted LGPL, added includes
1699           asm/ds390/features.h and asm/mcs51/features.h
1700         * device/include/asm/default/features.h,
1701         * device/include/asm/gbz80/features.h,
1702         * device/include/asm/z80/features.h: added empty _AUTOMEM
1703           and _STATMEM
1704         * device/include/asm/ds390/features.h,
1705         * device/include/asm/mcs51/features.h: added files with defines for
1706           _AUTOMEM and _STATMEM indicating automatic and static storage class
1707         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
1708         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
1709         * src/SDCCicode.c (geniCodeCast),
1710         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
1711         * src/SDCCloop.c (loopInduction): removed unused variable lr
1712         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
1713           to convertToFcall to include char modulo (RFE 1065037), added check
1714           if left operand is unsigned and use abs of literal value
1715         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
1716           as it doesn't work after conversion from peephole.def to peephole.rul
1717         * src/mcs51/gen.c (toBoolean): added check for size,
1718           (genModOneByte): optimized code for signed char modulo a literal
1719           power of 2 (thanks to Hubert Sack),
1720           (genRRC): removed unnecessary "clr c",
1721           (genRLC): replaced "add a,acc" with cheaper "rlc a"
1722         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
1723           jump optimization,
1724           swapped rules 256.c and 256.d,
1725           extended 256.d by using new multiple checks (thanks Erik),
1726           added rules 256.e and 256.f,
1727           updated rule 261.a and 261.b to new generated code
1728         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
1729
1730 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1731
1732         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
1733           induction related bugs, including first part of bug #1074377
1734
1735 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
1736
1737         * applied patch from bug-report #1076292,
1738         * applied patches for genAnd and Goto-optimizations for Raphael
1739         Neider,
1740         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
1741         dump a less iCode information,
1742         * src/pic16/device.h (pic16_options_t): added field debgen,
1743         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
1744         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
1745         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
1746         puclic,
1747         * (various functions): added macros FENTRY and FENTRY2 to functions,
1748         to emit function prologue,
1749         * (various functions): fixed indentation,
1750         * (genNearPointerGet): fixed loading of FSR0,
1751         * (genPackBits): applied patch from Raphael Neider to fix updating
1752         of FSR0 and touching only the modified bits,
1753         * src/pic16/genarith.c (various functions): added macros FENTRY to
1754         emit function prologue in comments,
1755         * src/pic16/pcode.h: added functions debugf2, debugf3,
1756         * src/pic16/ralloc.c: partial fix for packForPush caused
1757         segmentation fault,
1758
1759 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1760
1761         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
1762           <stsp AT users.sourceforge.net> with reversed byte order
1763         * support/regression/tests/rotate.c: added (ds390 skips some tests)
1764
1765 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1766
1767         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
1768           bug #1074377
1769         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
1770         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
1771
1772 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
1773
1774         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
1775
1776 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1777
1778         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
1779           conditions,
1780           (setFromConditionArgs): friendly operand parser for peephole rules,
1781           (operandBaseName, operandsNotRelated): new peephole condition
1782           "operandsNotRelated" -- similar to "operandsNotSame", but takes
1783           architecture specific register naming into account, handles n-way
1784           comparisons, and supports quoted literals
1785         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
1786
1787 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1788
1789         * src/mcs51/peeph.def: fixed bug #1076940
1790
1791 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
1792
1793         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
1794
1795 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1796
1797         Adding support for replacing ljmps with sjmps in jumptables
1798         generated for switch statements. For now you need to set the
1799         environment variable SDCC_SJMP_JUMPTABLE to enable this.
1800         Now 4 algorithms for mcs51 jumptable generation are used:
1801         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
1802         addresses loaded pc-relative for up to 112 cases and stack-pushing
1803         target addresses loaded with offset from dptr for up to 256 cases.
1804
1805         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
1806         * src/mcs51/main.c: adapted constants for switch table generation
1807         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
1808
1809 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
1810
1811         * device/lib/printf_large.c (_print_format): fixed bug 1073386
1812         * support/regression/tests/bug1057979.c: added test for bug 1073386
1813
1814 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
1815
1816         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
1817         compilers
1818
1819 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
1820
1821         * src/pic16/device.h,
1822         * src/pic16/genarith.c,
1823         * src/pic16/glue.c,
1824         * src/pic16/main.c,
1825         * src/pic16/pcode.c: applied patches #1068154 and #1070213
1826
1827 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
1828
1829         Large cummulative patch for pic16 port.
1830         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
1831         to call when a stack overflow occurs,
1832         * (malloc.h): added CVS Id tag,
1833         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
1834         variable,
1835         * added libc directory. The current version of LibC contains string
1836         functions, ctype functions and macros and some functions of the
1837         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
1838         be extensively tested in the future. Standard disclaimer here.
1839         Library is not automatically build yet. But one can build it by
1840         invoking 'make' inside the libc directory.
1841         * added ADC library under libio. Preliminary version yet.
1842
1843         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
1844         * src/pic16/gen.c (aopForRemat): asmop size is filled by
1845         aopForRemat() now and not by pic16_aopOp(),
1846         * (pic16_popGetTempReg): removed warning messgae when allocating
1847         temporary registers, its a buggy feature and will be removed,
1848         * (pic16_popGet): set register instance field in AOP_CRY,
1849         * (pic16_outBitC): fixed for results in size greater than 1,
1850         * (genUminusFloat): fixed for pic16, ported code from mcs51,
1851         * (pic16_storeForReturn): optimized return of 0,
1852         * (genCmp): experimental code for new genCmp which uses PIC18's
1853         special compare&skip instructions. Initial tests fail some times
1854         with variables grater than 1 byte in size, so new code is disabled,
1855         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
1856         a single bit,
1857         * (genCast): began a fix to optimize the casting of a bit to another
1858         bit, now assigning a bitfield to another bitfield will fail, sorry,
1859         * src/pic16/main.c: disabled the use of lr-support feature,
1860         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
1861         * added some function prototypes, added function _debugf prototype,
1862         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
1863         bits with offset (case PO_GPR_BIT),
1864         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
1865         command line,
1866         * (isBankInstruction): modified to return 0 for no banking instruction,
1867         and 1 for banking instruction,
1868         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
1869         caused stop processing pCodes after a inline assembly block,
1870         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
1871         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
1872         registers when it shouldn't,
1873         * src/pic16/ralloc.c (allocReg): add preliminary support for
1874         supporting a limited set of temporary registers,
1875
1876 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1877
1878         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
1879           genDataPointerSet): ensure assignments always copy in MSB to LSB
1880           order,
1881           (loadRegFromAop): recognize CLRH optimization,
1882           (genFunction): optimize RECEIVE iCodes in reentrant functions
1883
1884 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1885
1886         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
1887           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
1888           selected.
1889         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
1890         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
1891           contiguous with data
1892
1893 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1894
1895         * device/lib/_gptrget.c (_gptrget),
1896         * device/lib/_gptrgetc.c (_gptrgetc),
1897         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
1898           instead of sjmp to ret
1899         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
1900           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
1901
1902 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
1903
1904         * .version: bumped version to 2.4.7
1905         * device/lib/_gptrget.c (_gptrget): is now _naked
1906         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
1907         * device/lib/_gptrput.c (_gptrput): is now _naked
1908         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
1909           (createFunction): fixed xstack
1910         * src/SDCCglue.c (emitMaps): set allocation required for bit area
1911         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
1912           or bit either,
1913           (geniCodeCritical): store original interrupt state in an iTemp bit
1914           var unless stack-auto
1915         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
1916         * src/SDCCmain.c (setIncludePath): added include/target to search path
1917         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
1918         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
1919           prototype,
1920           (processFuncArgs): put bit vars in bit area
1921         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
1922           unsaveRBank): fixed xstack,
1923           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
1924           (genFunction, genEndFunction): fixed xstack,
1925           (genAssign): optimization don't walk backwards through mem
1926         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
1927         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
1928         * support/regression/Makefile: also make library (for stack-auto) when
1929           making "all" and added "test-mcs51-xstack-auto"
1930         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
1931         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
1932         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
1933         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
1934         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
1935           make-library by MAKE_LIBRARY
1936         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
1937           regression tests for xstack
1938         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
1939         * support/regression/tests/critical.c: test for critical on mcs51
1940
1941 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1942
1943         * support/regression/ports/ucz80/spec.mk: use include and lib files from
1944           built version of sdcc instead of installed version
1945
1946 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
1947
1948         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
1949         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
1950           vprintf.c now
1951         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
1952         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
1953           WARNING: remove device/lib/build/z80/printf.o by hand when
1954           updating from previous build!
1955         * device/lib/z80/printf.c: updated comment
1956         * support/regression/tests/bug1057979.c: test all ports now
1957         * support/regression/tests/bug1065458.c: file added
1958
1959 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1960
1961         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
1962           *_start and *_end symbols for static functions
1963
1964 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
1965
1966         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
1967           and search crt0.o in all library paths,
1968           (setIncludePath): proper handling of --nostdinc,
1969           (setLibPath): proper handling of --nostdlib
1970         * support/regression/Makefile,
1971         * support/regression/ports/ds390/spec.mk,
1972         * support/regression/ports/gbz80/spec.mk,
1973         * support/regression/ports/hc08/spec.mk,
1974         * support/regression/ports/mcs51/spec.mk,
1975         * support/regression/ports/mcs51-large/spec.mk,
1976         * support/regression/ports/mcs51-stack-auto/spec.mk,
1977         * support/regression/ports/z80/spec.mk: use include and lib files from
1978           built version of sdcc instead of installed version
1979         * doc/sdccman.lyx: fixed typo in --nostdinc
1980
1981 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
1982
1983         * src/pic/pcode.c,
1984         * src/pic/device.c,
1985         * src/pic/ralloc.c,
1986         * src/pic/gen.c : added support to generate code for struct bit fields.
1987
1988 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
1989
1990         * as/xa51/xa_version.h,
1991         * device/include/errno.h,
1992         * device/include/regc515c.h,
1993         * device/lib/_itoa.c,
1994         * device/lib/_ltoa.c,
1995         * device/lib/ser_ir_cts_rts.c,
1996         * sim/ucsim/xa.src/glob.cc,
1997         * sim/ucsim/xa.src/inst_gen.cc,
1998         * sim/ucsim/xa.src/xa_bit.cc,
1999         * sim/ucsim/xa.src/xa_sfr.cc,
2000         * sim/ucsim/z80.src/inst_dd.cc,
2001         * sim/ucsim/z80.src/inst_fdcb.cc,
2002         * support/scripts/keil2sdcc.pl,
2003         * src/pic16/pic16.dsp,
2004         * src/pic16/pic16a.dsp: corrected cvs line endings
2005         * device/lib/printf_large.c: fixed bug 1057979
2006         * src/pic16/gen.c: fixed non-C standard code
2007         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
2008         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
2009         * support/regression/ports/mcs51/support.c: reload T1 asap
2010         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
2011           pdata use and clear idata startup behaviour
2012         * support/regression/tests/bug1057979.c: added
2013
2014 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
2015
2016         * device/examples/ds390/ow390/ad26.h,
2017         * device/examples/ds390/ow390/cnt1d.h,
2018         * device/examples/ds390/ow390/crcutil.c,
2019         * device/examples/ds390/ow390/ownet.h,
2020         * device/examples/ds390/ow390/owsesu.c,
2021         * device/examples/ds390/ow390/swt12.h,
2022         * device/examples/ds390/ow390/swtoper.c,
2023         * device/examples/ds390/ow390/temp10.h,
2024         * device/examples/ds390/ow390/thermodl.c,
2025         * device/examples/ds390/tinitalk/tinitalk.dsp,
2026         * device/examples/ds390/tinitalk/tinitalk.dsw,
2027         * device/examples/mcs51/clock/hw.h,
2028         * device/examples/mcs51/simple2/go.bat,
2029         * device/examples/serialcomm/windows/serial.h,
2030         * device/examples/xa51/dummy.c,
2031         * device/examples/xa51/hello.c,
2032         * device/include/80c51xa.h,
2033         * device/include/at89x051.h: corrected cvs line endings
2034
2035 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
2036
2037         * src/pic16/main.c (options): added command line --gstack, to trace
2038         stack over/under flows,
2039         * added pragma 'wparam' to allow passing first byte of function
2040         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
2041         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
2042         call to __gstack_test function and sets up the symbol as extern,
2043         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
2044         * popaop): added call to pic16_testStackOverflow,
2045         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
2046         wparamList list,
2047         * (genCall, genPcall): now all parameters are passed via stack
2048         except in functions that are pass to wparam pragma in which WREG is
2049         used too,
2050         * (genPcall): REENTRANT flag is checked to see if variable prototype
2051         contains reentrant keyword, don't call a non-reentrant function, via
2052         a reentrant function pointer or vice versa, functions are never
2053         passed via WREG,
2054         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
2055         D.Winkler,
2056         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
2057         SIGSEGV when accessing a NULL register stucture,
2058         * (pic16_printGPointerType): modified to handle UPPER modifier for
2059         function initializers, changed prototype of function to simpler one,
2060         * (pic16_printIvalFuncPtr): check to see if function is already
2061         added in externs list,
2062         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
2063         optimized a move from W to SFR with a move to the same register
2064         later after a CALL,
2065         * device/lib/pic16/debug: NEW directory, contains debug features
2066         which are enabled when linking with libdebug.lib, currently command
2067         line option --gstack enables stack pointer tracing for over/under
2068         flow, corresponding sources are in debug/gstack
2069
2070 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
2071
2072         * doc/sdccman.lyx: updated SDCC version,
2073         * (PIC16 port): update list of command line options,
2074         * src/pic16/device.h (structure pic16_options_t): added field gstack
2075         to enable stack overflow tracing on push/pops,
2076         * src/pic16/device.c (statistics structure): added statistics
2077         structure,
2078         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
2079         pic16_dump_int_registers): increase statistics counters for each
2080         * variable which is encountered
2081         * (pic16_dump_usection): emit each .udata variable to its own udata
2082         section,
2083         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
2084         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
2085         parameters via stack, otherwise use old scheme,
2086         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
2087         assembler output file,
2088         * src/pic16/main.c: added command line options --gstack to enable
2089         push/pop tracing for stack overflow,
2090         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
2091         instructions): added size of each instruction,
2092         * (pic16_countInstruction): estimate size of instructions in
2093         the_pFile list, inline assembly blocks are not counted,
2094         * (pic16_FixRegisterBanking): trace previous register usage, when
2095         banksel optimizations is greater than 0, don't emit a redudant
2096         banksel directive,
2097
2098 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
2099
2100         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
2101         * src/pic16/ralloc.c : applied same fix for pic16.
2102         * src/pic/gen.c : tidied it up a little.
2103
2104 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2105
2106         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
2107         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
2108
2109 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2110
2111         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
2112
2113 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2114
2115         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
2116         non-reentrant function __modsint in the interrupt function (thus
2117         corrupting math operations during serial I/O)
2118         * device/lib/ser_ir.c: as above, changed buffersize
2119         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
2120         256.c,d for zeroing
2121         * doc/Makefile: added option -t for rsync
2122
2123 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2124
2125         * src/SDCCast.h (struct ast),
2126         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
2127
2128 2004-10-20 Borut Razem <borut.razem AT siol.net>
2129
2130         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
2131         package
2132
2133 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
2134
2135         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
2136         makefile targets,
2137         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
2138         support functions to replace long sequences of MOVFF's from access
2139         bank registers to stack and vice versa,
2140         * src/pic16/device.h: added new field opt_flags, where optimization
2141         flags can be set to enable certain features,
2142         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
2143         * pBlock, (genFunction, genEndFunction): surroung loop for
2144         saving/loading used registers in stack with PC_INFO pCodes,
2145         INF_LREGS. Code in between can then be optimized by pCode optimizer
2146         to support function calls,
2147         * (genDataPointerSet): fixed bug which loaded float fields in
2148         structures with corrupt data,
2149         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
2150         in a standard way debug info on stderr. Feature used for developing
2151         and debugging only,
2152         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
2153         obsolete chunks of code,
2154         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
2155         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
2156         * pic16/src/pcode.c (pic16_newpCodeInfo,
2157         * (pic16_newpCodeOpLocalRegs),
2158         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
2159         feature,
2160         * (pic16_pCodeConstString): printing of the initial value of a
2161         symbol as a comment is inhibited since parsing was already done by
2162         copyStr and output is corrupt,
2163         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
2164
2165 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2166
2167         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
2168
2169 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
2170
2171         * as/mcs51/lkarea.c: removed old K&R style,
2172           (lnksect): changed check on boundary error,
2173           (lnksect2): changed check on boundary error,
2174           (lnksect2): extend XSTK to end of page if size = 1
2175         * as/mcs51/lkmain.c: removed old K&R style,
2176           (Areas51): create l_IRAM symbol
2177         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
2178         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
2179           model-mcs51-stack-auto, added model-mcs51-xstack-auto
2180         * device/lib/_mullong.c: added version to be compiled with xstack
2181         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
2182         * device/lib/mcs51/crtxclear.asm: clear pdata as well
2183         * device/lib/mcs51/crtxstack.asm: fixed comment
2184         * src/SDCCglue.c: maxInterrupts defaults to 0,
2185           (emitMaps): added pdata,
2186           (createInterruptVect): (re)moved default,
2187           (glue): added pdata,
2188           (glue): moved __start__xstack to XSTK with default size 1
2189         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
2190           and options.float_rent when options.stackAuto is set,
2191           (linkEdit): only write XDATA_NAME if provided on command line
2192         * src/SDCCmem.h,
2193         * src/SDCCmem.c: added pdata
2194         * src/port.h: added pdata_name to PORT
2195         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
2196           (saveRegisters, unsaveRegisters): removed usage of B,
2197           (genMinus): fixed accumulator clash,
2198           (genJumpTab): added comment, this needs another look
2199         * src/mcs51/gen.c: added check for "B in use" paranoia,
2200           added pushB() and popB()
2201         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
2202           chance
2203         * src/avr/main.c,
2204         * src/ds390/main.c,
2205         * src/hc08/main.c,
2206         * src/mcs51/main.c,
2207         * src/pic/main.c,
2208         * src/pic16/main.c,
2209         * src/xa51/main.c,
2210         * src/z80/main.c: (reset_regparms) made void parameter explicit and
2211           added PSEG (PAG,XDATA) or NULL to port specifier
2212         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
2213         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
2214           (_mcs51_genInitStartup): removed __start__xstack equ,
2215           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
2216         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
2217         * src/z80/gen.c (_rleAppend): fixed warnings
2218         * support/regression/tests/zeropad.c: added pdata test
2219         * .version: bumped to 2.4.6
2220
2221 2004-10-17 Borut Razem <borut.razem AT siol.net>
2222
2223         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
2224         as a part of nightly build
2225
2226 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
2227
2228         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
2229         WREG holds the first byte function parameters,
2230         * (aopForSym): take special case for symbols which are in FARSPACE
2231         but in CODESPACE too,
2232         * (assignResultValue): modified to take into account _G.useWreg,
2233         * (genCall): don't use wreg for parameter passing when function is
2234         declared as reentrant, too, added optimization INCF to stack
2235         pointer when stack parameter count is 1,
2236         * (genFunction, genEndFunction): refurnished and fixed to not using
2237         wreg for passing parameters when function has varargs or is
2238         reentrant, fixed bug with symbol name compare for generating
2239         functions in absolute address,
2240         * (pic16_storeForReturn): refurnished,
2241         * (genCmp): began writing a new version of the function, not ready
2242         yet, therefore it is disabled,
2243         * (genAssign): do not read code memory when assigning a function to
2244         a pointer function,
2245         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
2246         array of characters, not pointer,
2247         * (pic16initialComments): in debug mode emit an .ident directive for
2248         the assembler,
2249         * (_process_pragma): emit a new warning type (internal to pic16)
2250         when setting stack to default length, emit a similar warning when
2251         placing a function at absolute address and address is not word aligned
2252         * (_pic16_parseOptions): added 'return TRUE' statement,
2253         * (_pic16_linkEdit): if compiling a source, then add the source's
2254         file object, first in the list of objects to link,
2255
2256 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
2257
2258         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
2259         * src/pic/main.c : removed VC warning.
2260         * src/pic/gen.c : changed comment.
2261
2262 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
2263
2264         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
2265         reference to a deprecated symbol _GPTRREG was causing failure to
2266         link. Thanks G. M. Gallant for the info.
2267
2268 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
2269
2270         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
2271         comments for Bugs item #954788.
2272
2273 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
2274
2275         * src/pic16/device.c (pic16_dump_gsection,
2276         * pic16_groupRegistersInSection): handle symbols declared to be in
2277         access bank differently,
2278         * src/pic16/gen.c (struct _G): added field resDirect,
2279         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
2280         send values read from stack directly to result and don't allocate
2281         temporary values,
2282         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
2283         same registers,
2284         * (pic16_sameRegsOfs): NEW,
2285         * (freeAsmop): if _G.resDirect is set then do not mark registers as
2286         free because they were not allocated from temporary pool,
2287         * pic16_popRegFromString): workaround to fix a problem with
2288         allocating variables twice or never,
2289         * (genGenPointerGet): using PRODL instead of FSR0H,
2290         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
2291         instead of FSR0H,
2292         * (genAssign): take advantage of the _G.resDirect flag,
2293         * (genCast): around line 11844, use mov2f instead of directly
2294         MOVFF'ing between operands to account for literal values,
2295         * src/pic16/genutils.c: some new debug functions for gpsim have been
2296         added,
2297         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
2298         float with integer part only,
2299         * src/pic16/main.c (_process_pragma): handle pragma udata access to
2300         place variables in access bank
2301         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
2302         updated sources to reflect recent changes in gen.c
2303
2304 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
2305
2306         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
2307         sources that searched for headers in installation path, now the
2308         device/include/pic16 is used,
2309         * src/pic16/glue.c (pic16glue),
2310         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
2311         .line directives if not in debug mode, this suppresses assembler's
2312         warnings for ignored directives
2313
2314 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
2315
2316         * src/port.h: made reset_regparms prototype void parameter explicit.
2317         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
2318         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
2319         * doc/sdccman.lyx: documented warning disabling and how to use
2320           printf_large to make it print floats.
2321         * device/include/stdbool.h: NEW
2322         * device/lib/_atof.c,
2323         * device/lib/_divuint.c,
2324         * device/lib/_divulong.c,
2325         * device/lib/expf.c,
2326         * device/lib/printf_large.c,
2327         * device/lib/sincosf.c,
2328         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
2329         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
2330           a completely reentrant lib.
2331
2332 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
2333
2334         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
2335         * device/include/pic16/stdio.h: fixed bug with colon
2336
2337 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
2338
2339         * device/include/pic16/stdio.h,
2340         * device/include/pic16/stdlib.h,
2341         * device/include/pic16/math.h: NEW
2342         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
2343         declared as _naked to reduce overhead
2344         * device/lib/Makefile.in (target port-specific-objects-pic16):
2345         changed * to *.* so to ignore the CVS directory,
2346         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
2347         stacked variables back in stack,
2348         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
2349         corruption
2350
2351 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
2352
2353         * .version: bumped version number to 2.4.5
2354         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
2355         * support/Util/SDCCerr.c (messages structure): added entry for
2356         W_POSSBUG2
2357
2358         Large cumulative patch for pic16 port and libraries.
2359         * device/include/pic16/sdcc-lib.h,
2360         * device/include/pic16/stdarg.h,
2361         * device/include/asm/pic16/features.h,
2362         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
2363         * device/include/pic16/float.h: changes reentrant keyword with
2364         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
2365         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
2366         updated target build-libraries to include objects from gptr,
2367         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
2368         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
2369         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
2370         all function headings,
2371         * src/SDCCmain.c: added global parameter userIncDirsSet,
2372         * (parseCmdLine): when option -I is encountered add directory to
2373         userIncDirsSet too,
2374         * src/version.awk: added space between control and long,
2375         * src/pic16/NOTES: added some notes for the port,
2376         * src/pic16/gen.c: added prototype for mov2fp function,
2377         * (fReturnpic16[]): properly named return value registers,
2378         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
2379         * (aopForSym): added code to handle symbols with onStack flag set,
2380         symbols onStack are allocated PTRSIZE bytes,
2381         * (aopFreeAsmop): handles special case where asmops are stack objects,
2382         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
2383         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
2384         added argument lock to trace flaws in allocating temporary registers
2385         when developing port,
2386         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
2387         * (pic16_popRegFromString): reenabled allocating a direct register
2388         from string,
2389         * (assignResultValue): various beautifications,
2390         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
2391         referenced function argument,
2392         * (genIpush): reenabled to allow stacked arguments, handles only
2393         ic->parmPush iCodes,
2394         * (genCall, genPcall): major changes to allow for variable argument
2395         functions, fixed a bug with falsely restoring stack pointer after
2396         returning from call,
2397         * (genFunction): pending code for critical function,
2398         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
2399         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
2400         * (genNearPointerGet): fixed bug with indirect reading, was always
2401         reading from INDF0
2402         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
2403         pointers,
2404         * (genAddrOf): rewrote code to take address of a stacked function parameter
2405         * (genCast): fixed casting to generic pointer type,
2406         * src/pic16/gen.h: added AOP_STA,
2407         * (struct asmop): added field stk,
2408         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
2409         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
2410         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
2411         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
2412         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
2413         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
2414         generic pointers,
2415         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
2416         and library paths,
2417         * (pic16_port structure): generic pointer size is set to 3,
2418         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
2419         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
2420         compiler warning,
2421         * src/pic16/ralloc.c (allocReg): prevent allocating register when
2422         operand is an iTemp,
2423
2424 2004-09-24 Martin Helmling <mh AT octo-soft.de>
2425
2426         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
2427         * debugger/mcs51/simi.c: addapt new syntax of s51
2428
2429 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
2430
2431         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
2432         * src/pic16/pcode.c: commented out some calls to free() in order to
2433         fix bug #989576,
2434
2435 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2436
2437         * src/SDCCicode.h,
2438         * src/SDCCicode.c (isiCodeInFunctionCall),
2439         * src/avr/ralloc.c (selectSpil),
2440         * src/pic/ralloc.c (selectSpil),
2441         * src/pic16/ralloc.c (selectSpil),
2442         * src/ds390/ralloc.c (selectSpil),
2443         * src/hc08/ralloc.c (selectSpil),
2444         * src/xa51/ralloc.c (selectSpil),
2445         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
2446         stack in the middle of a function call sequence (fixes bug #1020268)
2447         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
2448         costs associated with the minimum switch case.
2449
2450 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2451
2452         * src/SDCC.lex: fixed bug #1030549
2453
2454 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2455
2456         * src/SDCCcse.h (struct cseDef),
2457         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
2458         over a function call if the CSE is derived from a symbol whose
2459         address has been taken (fixes bug #1029883)
2460         * support/regression/tests/bug-1029883: a new regression test for
2461         this bug
2462
2463 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2464
2465         * src/hc08/gen.c (emitinline): fixed bug #1029778
2466         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
2467         to a cast object is no longer a syntax error ("fixes" bug #1030006,
2468         and starts toward RFE #905167)
2469
2470 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
2471
2472         * src/pic16/gen.c (mov2f): New function to move an operand to
2473         another without considering if it is a literal or a register,
2474         * (pic16_sameRegs): don't check if they are both AOP_REG,
2475         * (AccRsh): removed andmask=0 lines,
2476         * (genLeftShift): duplicated to be improved in future versions,
2477         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
2478         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
2479         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
2480         * (pic16initMnemonics): added initialization for POC_INFSNZW,
2481         * (insertBankSwitch): fixed inserting banksel directives algorithm
2482         for instructions that follow a skip instruction, this fixes a report
2483         for broken subtraction code generation,
2484         * src/pic16/ralloc.c (deassignLRs): do not free register if current
2485         iCode is a left op, just in case result and right share the same
2486         registers
2487
2488 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2489
2490         * src/hc08/main.c,
2491         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
2492         preservation of HX
2493         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
2494         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
2495         on 2004-09-12; it was buggy
2496
2497 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
2498
2499         * src/SDCCsymt.h: removed RESULT_CHECK
2500         * src/SDCCast.c,
2501         * src/SDCCglue.c,
2502         * src/SDCCval.c,
2503         * src/pic/glue.c,
2504         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
2505
2506 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
2507
2508         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
2509         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
2510         configuration values no more rejected by compiler, they are assigned
2511         to configuration registers with a warning message instead,
2512         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
2513         the for-loop so last conf register is emitted too,
2514         * (_pic16_initPaths): link library libsdcc.lib by default,
2515         * (_hasNativeMulFor): modified test for multiplication according to
2516         Raphael Neider's remarks. Integer multiplication is also done with
2517         support functions,
2518         * device/include/pic16/pic18fregs.h: corrected type error in while
2519         testing and including 18f6720 header file
2520
2521 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
2522
2523         * src/pic16/device.h (pic16_options): removed field use_crt,
2524         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
2525         until an optimization to handle single bits is added,
2526         * (pic16_loadFSR0): moved before genUnpackBits,
2527         * (genAnd): some white lines removed,
2528         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
2529         leave_reset flags in pic16_options when using crt modules,
2530
2531 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
2532
2533         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
2534           for bugs 898889 & 979599. Also used some safer print instructions.
2535
2536 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
2537
2538         * src/pic16/device.h (pic16_options_t): added field use_crt,
2539         crt_name, no_crt,
2540         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
2541         catch a probable future bug,
2542         * src/pic16/gen.c: aopIdx function commented out,
2543         * (genAssign): commented out old code which used aopIdx,
2544         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
2545         code, added if conditionals to take into account the --use-crt
2546         command line options,
2547         * src/pic16/main.c (pic16_optionsTable): added new command line
2548         options, --use-crt= and --no-crt,
2549         * (_pic16_linkEdit): now the proper crt object is added in the
2550         linker command line except than when --no-crt is specified,
2551         * src/pic16/pcode.c,
2552         * src/pic16/pcode.h: added some structures and functions for a new
2553         optimization scheme to compansate for instruction overhead between
2554         same iCodes, this scheme is currently under development and is not
2555         working in any way,
2556         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
2557         to && operator,
2558         * device/lib/pic16/startup/crt0i.c,
2559         * device/lib/pic16/startup/crt0iz.c: added global char variable
2560         __uflags to force the generation of an idata section
2561
2562 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
2563
2564         * doc/Makefile,
2565         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
2566         * doc/sdccman.lyx: updated sdcc version to 2.4.4
2567
2568 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2569
2570         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
2571         Frieder) and clarified the default code optimization mode
2572
2573 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2574
2575         * src/SDCC.lex (doPragma, process_pragma),
2576         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
2577         "opt_code_size", and "opt_code_balanced"
2578         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
2579         regrouped options by category, added support for category headers
2580         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
2581         and "--opt-code-size"
2582         * doc/sdccman.lyx: documented these new options and pragmas
2583         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
2584         preference into account
2585
2586 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2587
2588         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
2589           geniCodePreDec): Fixed bug 904237 by generating a warning
2590         * src/SDCCerr.h,
2591         * src/SDCCerr.c: added warning W_SIZEOF_VOID
2592
2593 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
2594
2595         * src/pic/device.c : When no max ram set validate full memory range.
2596         * src/pic/pcode.c,
2597         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
2598
2599 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2600
2601         * device/lib/_gptrget.c,
2602         * device/lib/_gptrput.c: updated comment
2603         * device/lib/calloc.c,
2604         * device/lib/free.c,
2605         * device/lib/malloc.c,
2606         * device/lib/realloc.c: added LGPL, made them reentrant-safe
2607         * src/SDCCcse.c (cseBBlock),
2608         * src/SDCCicode.c (printOperand, geniCodeArray),
2609         * src/SDCCicode.h (struct operand): fixed bug 868103
2610         * support/regression/tests/bug-868103.c: added
2611         * src/SDCCast.c (searchLitOp),
2612         * src/SDCCcse.h (struct cseDef),
2613         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
2614         * src/SDCCicode.h (struct operand),
2615         * src/SDCCsymt.h (struct sym_link),
2616         * src/avr/gen.c (hasInc),
2617         * src/ds390/gen.c (hasInc),
2618         * src/hc08/gen.c (genPlusIncr, hasInc),
2619         * src/mcs51/gen.c (hasInc),
2620         * src/pic16/glue.c (pic16_printIvalChar),
2621         * src/pic16/ralloc.c (regWithIdx),
2622         * src/xa51/gen.c (hasInc) : removed warnings
2623         * src/SDCCast.c (createBlock): added comment ???
2624         * src/hc08/ralloc.c: updated comments
2625
2626 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2627
2628         * doc/sdccman.lyx: updated section on switch statements, added
2629         section about semaphore locking
2630         * doc/Makefile: added option -info for latex2html
2631         * device/lib/_gptrget.c,
2632         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
2633
2634 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
2635
2636         * src/pic/device.h,
2637         * src/pic/device.c,
2638         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
2639          maxram is less than 0x100.
2640
2641 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
2642
2643         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
2644
2645 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2646
2647         * src/port.h,
2648         * src/mcs51/main.c,
2649         * src/ds390/main.c,
2650         * src/z80/main.c,
2651         * src/hc08/main.c,
2652         * src/pic/main.c,
2653         * src/pic16/main.c,
2654         * src/avr/main.c,
2655         * src/xa51/main.c
2656         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
2657         a jump table is the best form for a switch statement, including
2658         automatic insertion of missing cases to make the case range
2659         continuous. Developed in collaboration with Frieder Ferlemann.
2660
2661 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2662
2663         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
2664         accumulator result if it needs sign extension
2665
2666 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2667
2668         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
2669
2670 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2671
2672         * device/lib/gbz80/printf.c,
2673         * device/lib/z80/printf.c: removed define for NULL
2674
2675 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2676
2677         * as/xa51/xa_link.c,
2678         * device/examples/ds390/ow390/ad26.c,
2679         * device/examples/ds390/ow390/cnt1d.c,
2680         * device/examples/ds390/ow390/counter.c,
2681         * device/examples/ds390/ow390/ds2480.h,
2682         * device/examples/ds390/ow390/ds2480ut.c,
2683         * device/examples/ds390/ow390/findtype.c,
2684         * device/examples/ds390/ow390/gethumd.c,
2685         * device/examples/ds390/ow390/owllu.c,
2686         * device/examples/ds390/ow390/ownetu.c,
2687         * device/examples/ds390/ow390/swt12.c,
2688         * device/examples/ds390/ow390/swtloop.c,
2689         * device/examples/ds390/ow390/temp.c,
2690         * device/examples/ds390/ow390/temp10.c,
2691         * device/examples/ds390/ow390/thermo21.c,
2692         * device/examples/ds390/ow390/tinilnk.c,
2693         * device/examples/ds390/ow390/tstfind.c,
2694         * device/examples/serialcomm/windows/serial.cpp,
2695         * device/examples/serialcomm/windows/test_serialcomm.cpp,
2696         * device/include/reg51.h: fixed line endings for cvs
2697
2698 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2699
2700         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
2701         packRegsForAccUse, packRegisters): new accumulator register
2702         packing algorithm
2703         * support/regression/ports/hc08/support.c (_putchar): suppress
2704         warning of unused variable
2705         * src/SDCCicode.c: added SWAP entry to codeTable
2706
2707 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
2708
2709         * device/lib/sprintf.c: forgot to add this file before previous commit
2710
2711 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
2712
2713         * src/pic16/gen.c (genPackBits): added operand right in function
2714         parameters, load result directly if p_type is POINTER (that is
2715         called by genNearPointerSet)
2716         * (genUnPackBits): added operand left in function parameters,
2717         * (genNearPointerGet, genNearPointerSet): prevent the loading of
2718         FSR0 if accessing bitfields,
2719
2720 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
2721
2722         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
2723           _print_format; updated printf, sprintf, vsprintf
2724         * device/include/asm/default/features.h: corrected comment/define
2725         * device/lib/Makefile.in: added sprintf.c
2726         * device/lib/libsdcc.lib: added sprintf module
2727         * device/lib/printf_large.c,
2728         * device/lib/vprintf.c,
2729         * device/lib/sprintf.c: totally refactored printf_large and vprintf
2730           into these 3 files
2731         * support/regression/Makefile: changed ALL_PORTS into a usefull default
2732         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
2733         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
2734           hc08 test
2735         * support/regression/tests/zeropad.c: define idata as data for hc08
2736
2737 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2738
2739         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
2740         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
2741         labels are referenced at least once (even if a reference is not found)
2742         * src/hc08/gen.c (emitcode): set isComment flag for comments
2743         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
2744         loads), rules 6a..6b (optimize jumps to return)
2745
2746 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2747
2748         * device/lib/acosf.c (acosf),
2749         * device/lib/asinf.c (asinf),
2750         * device/lib/atanf.c (atanf),
2751         * device/lib/ceilf.c (ceilf),
2752         * device/lib/cosf.c (cosf),
2753         * device/lib/coshf.c (coshf),
2754         * device/lib/cotf.c (cotf),
2755         * device/lib/fabsf.c (fabsf),
2756         * device/lib/floorf.c (floorf),
2757         * device/lib/log10f.c (log10f),
2758         * device/lib/logf.c (logf),
2759         * device/lib/sinf.c (sinf),
2760         * device/lib/sinhf.c (sinhf),
2761         * device/lib/sqrtf.c (sqrtf),
2762         * device/lib/tanf.c (tanf),
2763         * device/lib/tanhf.c (tanhf),
2764         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
2765         replaced all instances of "reentrant" in the library functions
2766         defined in math.h with this macro.
2767         * support/regression/tests/float_trans.c: reenabled test for hc08
2768
2769 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
2770
2771         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
2772         erroneously deleted
2773
2774 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2775
2776         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
2777         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
2778         multi-byte volatile operands are used
2779         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
2780         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
2781         initialization to area GSINIT0 so that it would always precede
2782         any static initializers in GSINIT
2783         * support/regression/tests/zeropad.c: fixed idata define for hc08
2784         * support/regression/tests/bug-927659.c,
2785         * support/regression/tests/float_trans.c: disabled tests for hc08
2786         pending missing library routines
2787         * .version: increased version number to 2.4.4 - hc08 port now passes
2788         regression tests
2789
2790
2791 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
2792
2793         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
2794         * Makefile.common.in,
2795         * as/Makefile,
2796         * as/hc08/Makefile.in,
2797         * as/mcs51/Makefile.in,
2798         * as/z80/Makefile.in,
2799         * debugger/mcs51/Makefile.in,
2800         * device/include/Makefile.in,
2801         * device/lib/Makefile.in,
2802         * doc/Makefile,
2803         * link/Makefile,
2804         * link/z80/Makefile.in,
2805         * packihx/Makefile.in,
2806         * sim/ucsim/main_in.mk,
2807         * sim/ucsim/avr.src/Makefile.in,
2808         * sim/ucsim/doc/Makefile.in,
2809         * sim/ucsim/gui.src/serio.src/Makefile.in,
2810         * sim/ucsim/hc08.src/Makefile.in,
2811         * sim/ucsim/s51.src/Makefile.in,
2812         * sim/ucsim/xa.src/Makefile.in,
2813         * sim/ucsim/z80.src/Makefile.in,
2814         * src/Makefile.in,
2815         * support/cpp2/Makefile.in,
2816         * support/librarian/Makefile,
2817         * support/makebin/Makefile: added DESTDIR to the install path proposed
2818         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
2819         * doc/sdccman.lyx: added DESTDIR documentation
2820
2821 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
2822
2823         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
2824         instruction for interrupt handlers, use fast returns when returning
2825         from high priority interrupts
2826
2827 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2828
2829         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
2830         code generation
2831         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
2832         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
2833         bugs, ported much of Bernhard's code from mcs51
2834         * src/mcs51/gen.c (genSend),
2835         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
2836         than one when calling a reentrant function
2837         * device/lib/_mullong.c: defined an alternate struct layout for big
2838         endian ports (hc08)
2839
2840 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2841
2842         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
2843         test
2844
2845 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2846
2847         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
2848         are sane and complete before asking the port its prefered parameter
2849         passing method (fixes bug #1017633)
2850         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
2851         and _ret3
2852
2853 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2854
2855         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
2856         problem in bitfields >= 8 bits.
2857
2858 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
2859
2860         * src/SDCCsymt.c: undid changes that were not meant to be committed
2861
2862 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
2863
2864         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
2865
2866 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
2867
2868         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
2869           copied and wrong bit got inverted
2870
2871 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2872
2873         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
2874         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
2875         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
2876         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
2877         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
2878         assignments to bitfields at known addresses
2879         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
2880         reads from bitfields at known addresses
2881         * src/hc08/ralloc.c (packRegisters),
2882         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
2883         genhc08Code): optimize pointer get values used as conditionals
2884         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
2885         and branch
2886
2887 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2888
2889         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
2890         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
2891         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
2892         as conditionals
2893
2894 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2895
2896         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
2897
2898 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2899
2900         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
2901         related problems
2902
2903 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
2904
2905         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
2906
2907 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2908
2909         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
2910         mcs51 port
2911
2912 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
2913
2914         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
2915
2916 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2917
2918         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
2919         cases use more compact code.
2920
2921 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
2922
2923         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
2924
2925 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2926
2927         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
2928
2929 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2930
2931         * src/SDCCsymt.h,
2932         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
2933         parameter of changePointer() from symbol* to sym_link*
2934         * src/SDCCast.c (decorateType): call changePointer() for CAST op
2935         * src/SDCCsymt.c (compareType): void* type is castable to other
2936         pointers, but not necesarily an exact match.
2937         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
2938         is no longer blindly treated as an exact match.
2939         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
2940
2941 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
2942
2943         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
2944
2945 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
2946
2947         * src/pic/gen.c,
2948         * src/pic/pcode.c,
2949         * src/pic/ralloc.h,
2950         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
2951
2952 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
2953
2954         * src/pic/device.c,
2955         * src/pic/device.h,
2956         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
2957
2958 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2959
2960         * src/mcs51/gen.c (emitcode): fixed bug #992819
2961
2962 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
2963
2964         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
2965           there's no need to make it worse
2966
2967 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2968
2969         * src/mcs51/ralloc.c (deassignLR),
2970         * src/ds390/ralloc.c (deassignLR),
2971         * src/hc08/ralloc.c (deassignLR),
2972         * src/z80/ralloc.c (deassignLR),
2973         * src/pic/ralloc.c (deassignLR),
2974         * src/pic16/ralloc.c (deassignLR),
2975         * src/avr/ralloc.c (deassignLR),
2976         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
2977         rlivePoint): fixed another part of bug #971834
2978
2979 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2980
2981         * src/z80/main.c: enabled "critical" keyword
2982         * src/z80/mappings.i,
2983         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
2984         functions (fixes bug #979646)
2985         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
2986
2987 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2988
2989         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
2990           such as c:\mydir.
2991
2992 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
2993
2994         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
2995           doesn't disable too much optimizations
2996
2997 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
2998
2999         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
3000
3001 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
3002
3003         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
3004
3005 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3006
3007         * src/pic/gen.c tidied up tabs
3008         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
3009         * src/pic/main.c tidied up tabs
3010         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
3011         * src/pic/pcoderegs.c tidied up tabs
3012         * src/pic/ralloc.c tidied up tabs
3013
3014 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
3015
3016         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
3017         to S_FIXED for pic16 port and when symbol is not in level 0,
3018         allocate for S_REGISTER storage class and pic16 port, too,
3019         * src/pic16/device.h: prototype for checkSym,
3020         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
3021         * (pic16_assignConfigWordValue): test the value and the mask to
3022         validate that the value is suitable for the configuration word,
3023         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
3024         collect extern declared symbols, don't emit symbol twice, check
3025         first if symbol is in publics set first,
3026         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
3027         * added command line '--fstack' which enables an experimental
3028         feature for stack access, too buggy to be used yet...
3029         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
3030         * (pic16_allocDirReg): when register has storage class S_REGISTER
3031         allocate in pic16_dynAccessRegs,
3032         * device/include/pic16/pic18f????.h: modified configuration word
3033         naming convention, words started as CONFIG0H but should be CONFIG1H
3034
3035 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
3036
3037         * device/include/mcs51reg.h: fixed bug 970993
3038
3039 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
3040
3041         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
3042         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
3043         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
3044         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
3045         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
3046         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
3047           error/warning numbers,
3048           added function setWarningDisabled()
3049         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
3050         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
3051           _memcmp.c _memmove.c calloc.c realloc.c free.c
3052         * support/regression/tests/malloc.c: added tests for new functionality
3053         * support/regression/tests/zeropad.c: added tests for truncated initializers
3054           and initialized char arrays starting with '\x0'
3055         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
3056
3057 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
3058
3059         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
3060
3061 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3062
3063         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
3064         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
3065         peephole 177.e. Thanks to anonymous
3066
3067 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
3068
3069         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
3070         function isn't used in the source but referenced as a
3071         variable initializer then declare it as extern in .asm file
3072
3073 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
3074
3075         * .version: increased version number to 2.4.3
3076
3077         Adding version extension according to ChangeLog CVS revision
3078         * src/Makefile.in (target all): added dependency 'version.h'
3079         * (rule version.h): added rule to create version.h from ChangeLog,
3080         * (rule dep): added dependency version.h,
3081         * src/version.awk: AWK script to create version.h
3082         * src/SDCCdwarf2.c (dwWriteModule),
3083         * src/SDCCglue.c (initialComments),
3084         * src/SDCCmain.c (printVersionInfo): modified to write after
3085         version string the version extension number,
3086         * src/SDCCutil.c: included "version.h"
3087         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
3088         number,
3089         * src/SDCCutil.h: added prototype for getBuildNumber
3090
3091         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
3092         includeDirsSet, too,
3093         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
3094         const char [] is found in function prototype...
3095
3096         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
3097         moving to WREG with source is already in WREG,
3098         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
3099         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
3100         * (aopForSym): stack'ed symbols are partially supported, added
3101         if-clause to support symbols in FARSPACE,
3102         * (sameRegs): added test for AOP_ACC to see if registers are same,
3103         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
3104         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
3105         * (pic16_popRegFromString): will not allocate a new register if it
3106         doesn't find one by name, bug may have introduced...
3107         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
3108         * (genIpush): revived to use pic16 port's stack,
3109         * (genAddrOf): added incomplete case for stack'ed operand,
3110         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
3111         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
3112         can handle multibyte operands,
3113         * src/pic16/glue.c (pic16_printIval*): some debug info added,
3114         * (pic16initialComments): added message for MPLAB compatibility
3115         mode enabled,
3116         * src/pic16/main.h: prototype for pic16_mplab_comp,
3117         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
3118         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
3119         * (_pic16_linkEdit): NEW, handles link stage, transferred here
3120         because of increased complexity of procedure,
3121         * (_process_pragma): stack pragma changed to format 'stack pos len',
3122         emit symbol '_stack_end' to conform with gplink,
3123         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
3124         to search for register,
3125         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
3126         PO_GPR_REGISTER,
3127         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
3128         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
3129         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
3130         case for PO_GPR_REGISTER,
3131         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
3132         dies, the new era is ahead !...
3133         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
3134         pic16_dynInternalRegs,
3135         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
3136         * (pic16_allocDirReg): minor optimizations and bug fixes,
3137         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
3138
3139         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
3140         load stack and frame pointer with address of 'stack_end' symbol
3141
3142 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
3143
3144         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
3145         without source code but only variable initializers
3146
3147 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
3148
3149         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
3150         external are not declared as extern to reduce overhead while linking
3151
3152 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
3153
3154         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
3155
3156 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
3157
3158         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
3159           Yee Keat for the patch
3160         * src/SDCCast.c (decorateType): fixed bug #979599
3161         * src/ds390/gen.h: removed local fReturnSizeDS390
3162         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
3163         * src/ds390/gen.c (genAnd, genOr, genXor),
3164         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
3165
3166 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
3167
3168         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
3169         add relFilesSet to $3, manipulate $2 to handle linking of object
3170         files without source files in command line,
3171         * device/include/pic16 (all headers): added ID location macros,
3172         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
3173         entries for ID location bytes,
3174         * (pic16_assignIdByteValue): NEW,
3175         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
3176         added field dumpcalltree to pic16_options_t,
3177         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
3178         is used instead of pic16_Gstack_base_addr, check if (ifx) before
3179         emitting rFalseIfx label after check_carry label,
3180         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
3181         pic16_emitDIRegs), NEW
3182         * (pic16glue): dump .calltree file when option --calltree found,
3183         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
3184         * (_pic16_genAssemblerPreamble): emit ID locations after
3185         configuration registers,
3186         * (pic16_linkCmd): modifications of the link command,
3187         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
3188         * (pic16_pCodeInitRegisters): don't init stack registers,
3189         * (pic16_findPrevInstruction): fixed bug,
3190         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
3191         bug with immediate registers,
3192         * (buildCallTree): traces stack push and pop,
3193         * (pct2): dump also stack usage for each function,
3194         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
3195         * (pic16_allocDirReg): various modifications,
3196         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
3197         fixed to 1,
3198
3199 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
3200
3201         * src/pic16/pcode.c: removed buggy double colon
3202
3203 2004-07-01 Borut Razem <borut.razem AT siol.net>
3204
3205         * support/scripts/sdcc.nsi: added include/pic16 to setup
3206
3207 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
3208
3209         * device/lib/Makefile.in: fixed bug in target objects-pic16,
3210         * device/lib/pic16/Makefile: prefixed with dash (-) command under
3211         target 'clean',
3212         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
3213         specific command line arguments. Also added sample lkr script
3214         for placing a variable at a specific memory bank.
3215         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
3216         at a specific memory bank,
3217         * (pic16_dump_isection): fixed bug which caused string literals to
3218         be omitted when dumping idata section,
3219         * (pic16_groupRegistersInSection): added code to handle registers
3220         in specific memory banks,
3221         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
3222         public, all references are renamed too,
3223         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
3224         AOP_DPTR2,
3225         * (pic16_storeForReturn): added case to handle when dest is WREG,
3226         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
3227         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
3228         pic16_rel_udata, check to see if that register is marked as being
3229         a member of a specific memory bank,
3230         * (pic16_printIvalCharPtr): added code to add string literals either
3231         to code or the idata sections,
3232         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
3233         also accept the 'udata' pragma,
3234         * src/pic16/main.h: new structure types sectName and sectSym
3235         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
3236         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
3237         * (pic16_findPrevInstruction): fixed, it returned nothing,
3238         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
3239         instruction combinations,
3240         * (pic16_FixRegisterBanking): heavily reorganised,
3241         * (pic16_AnalyzeBanking): if generating banksel directives is
3242         disabled, then don't call FixRegisterBanking at all,
3243         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
3244         completely removed,
3245         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
3246
3247 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
3248
3249         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
3250         Phuah Yee Keat <yk.phuah AT nestac.com>
3251
3252 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3253
3254         * src/pic16/glue.c (pic16createInterruptVect): function now emits
3255         correctly the IVT even if it is relocated to some other location
3256
3257 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3258
3259         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
3260         * device/include/pic16/pic18f2220.h: NEW,
3261         * device/lib/pic16/libdev/pic18f2220.c: NEW,
3262         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
3263         * src/pic16/device.c (struct Pics16): added info for 18f2220,
3264         * src/pic16/device.h (struct pic16_options): added ivt_loc and
3265         nodefaultlibs, ivt_loc is the location of the interrupt vector
3266         table, and nodefaultlibs signs that default libraries should not be
3267         linked in link stage,
3268         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
3269         according to --ivt-loc argument,
3270         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
3271         when pragma stack is found,
3272
3273 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3274
3275         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
3276         256 (range check), 257 (do while), 258.a-f (bit banging
3277         f.e. on 3-wire SPI bus)
3278
3279 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3280
3281         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
3282         variables used exclusively within a loop
3283
3284 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
3285
3286         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
3287
3288 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3289
3290         * src/SDCClrange.c (computeClash): fixed bug #971834
3291
3292 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3293
3294         * src/mcs51/gen.c (genCmp): fixed bug #975903
3295         * src/hc08/gen.c (operandsEqu),
3296         * src/ds390/gen.c (operandsEqu),
3297         * src/z80/gen.c (operandsEqu),
3298         * src/pic/gen.c (operandsEqu),
3299         * src/pic16/gen.c (operandsEqu),
3300         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
3301         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
3302
3303 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3304
3305         * src/SDCCcse.c (cseBBlock): fixed bug #966963
3306
3307 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
3308
3309         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
3310         default case in switch statement,
3311         * glue.c (pic16_initPointer): expr is initialised via decoarteType
3312         to eliminate problem with initialisation of pointers, but problem
3313         still exists,
3314         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
3315         * (emitStaticSegment): removed various lines emitting debug info,
3316         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
3317         added processor registers for utilizing EEPROM,
3318         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
3319         configurable and set 8
3320
3321 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
3322
3323         * .version: increased version number to 2.4.2,
3324
3325         Cumulative patch for pic16 port
3326         * src/pic16/device.c: changed scheme to dump initial values for
3327         variables in idata segment, all print_idata* functions were removed,
3328         now the pic16_printIval* will be called,
3329         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
3330         * _pic16_printPointerType, pic16_printPointerType,
3331         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
3332         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
3333         NEW, similar to the respective functions in SDCCglue.c,
3334         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
3335         way, emitting hex bytes,
3336         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
3337
3338 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3339
3340         * src/avr/ralloc.c (serialRegAssign),
3341         * src/xa51/ralloc.c (serialRegAssign),
3342         * src/pic/ralloc.c (serialRegAssign),
3343         * src/pic16/ralloc.c (serialRegAssign),
3344         * src/hc08/ralloc.c (serialRegAssign),
3345         * src/z80/ralloc.c (serialRegAssign),
3346         * src/ds390/ralloc.c (serialRegAssign),
3347         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
3348
3349 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3350
3351         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
3352         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
3353
3354 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
3355
3356         Cumulative patch for pic16 port:
3357         * src/pic16/device.h (typedef PIC16_device) modified fields for
3358         defining microcontrollers,
3359         * src/pic16/device.c: added new info for all devices in Pics16 array,
3360         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
3361         to be optimised out by the pCode optimiser,
3362         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
3363         specially, bug reported by G.M. Gallant,
3364         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
3365         as force'd so that cannot be optimised out by pCode optimiser,
3366         * src/pic16/pcode.c,
3367         * src/pic16/pcodepeeph.c,
3368         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
3369         they are disabled by default, but can be enabled explicit with
3370         command argument --denable-peeps, for testing,
3371         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
3372         --pomit-ivt in COMPILE_FLAGS
3373
3374 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3375
3376         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
3377           compilation on MSVC
3378
3379 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3380
3381         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
3382
3383 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3384
3385         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
3386         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
3387
3388 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
3389
3390         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
3391         would only assign 0x300001 register.
3392
3393 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
3394
3395         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
3396         in COMPILE_FLAGS. Thanks to G. Gallant for report.
3397
3398 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3399
3400         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
3401         for ds80c400
3402         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
3403         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
3404         added peephole 254 (left shift), 255 (jump table)
3405
3406 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
3407
3408         * device/lib/Makefile.in: removed comment line with model-pic16,
3409         * (target port-specific-objects-pic16): the libraries and objects
3410         are copied to the build directory form the device/lib/pic16/bin
3411         directory
3412
3413         Cumulative patch concerning pic16 port:
3414         * library directory has been re-organized,
3415         * added support for PIC18F1220,
3416         * added headers and library sources for chips 18f1220,18f6520,
3417         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
3418
3419         * configuration registers setting has changed, now each supported
3420         device has a complete description of the registers it uses,
3421         * all initialisations are moved to idata sections, these section
3422         can be absolute or relocatable,
3423         * fixed initialisation of codespace variables,
3424         * fixed warning about PCLATU and gpsim,
3425         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
3426         * (genAssign): use table reads when assigning from variables in codespace,
3427         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
3428         char/int variables placed in codespace,
3429         * (pic16_emitConfigRegs): NEW, emits a list with configuration
3430         registers set in .asm file, no need for --pomit-config-words anymore,
3431         * (pic16glue): some 8051 legacy segments are commented out
3432         (to be removed completely),
3433         * added support for alternative assembler and linker with --asm=
3434         and --link= command line arguments,
3435         * peepholes are disabled automatically in the port, no need to
3436         specify on command line,
3437         * port supports natively char/int/long multiplication, but converts
3438         all divisions to support functions,
3439         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
3440         to the file set in variable $2,
3441         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
3442         strings in ASCII format and not in hex,
3443         * ralloc.c (serialRegAssign): added a triplet of conditional calls
3444         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
3445         allocate proper register if iCodes aren't temporary,
3446
3447 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
3448
3449         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
3450
3451 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
3452
3453         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
3454         is commented out
3455
3456 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3457
3458         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
3459         computed address is reused
3460         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
3461         multi-byte bitfields
3462
3463 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3464
3465         * src/z80/gen.c: (genArrayInit): must check for pointers too
3466
3467 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3468
3469         * support/regression/tests/zeropad.c: never meant to commit the
3470           nestedstruct test: removed, added check for GCC version
3471
3472 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
3473
3474         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
3475         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
3476         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
3477           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
3478           bugs 928906 and 954082 half-empty initializers
3479         * src/SDCCsymt.h,
3480         * src/SDCCsymt.c (getAllocSize): added for above fix
3481         * src/z80/gen.c (genArrayInit): fixed bug 741044
3482         * support/regression/tests/zeropad.c: added tests
3483
3484 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
3485
3486         * src/pic16/device.c (pic16_dump_section): corrected bug which
3487         caused some symbols of the libraries to be misplaced
3488
3489 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3490
3491         * src/pic16/glue.c,
3492         * src/pic16/ralloc.h,
3493         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
3494         to fix conflict with pic port
3495
3496 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3497
3498         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
3499         externs configuration variables,
3500         * src/pic16/ralloc.h,
3501         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
3502         prototype in header, commented out some debug messages
3503
3504 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
3505
3506         * src/pic16/glue.c,
3507         * src/pic16/main.c,
3508         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
3509         for gpasm COFF object generation. Thanks to D. Hawkins for
3510         his patch info
3511
3512 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3513
3514         * src/ds390/main.c,
3515         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
3516         Brock for spotting this)
3517         * src/ds390/gen.c (genEndFunction),
3518         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
3519         interrupt handler and critical. Disable push/pop optimizations when
3520         peephole optimizations disabled.
3521
3522 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
3523
3524         Updated pic16 library sources and headers.
3525         * device/lib/pic16/pic18f*/ ,
3526         * device/include/pic16/*.h: modified to handle structured SFR
3527         definitions
3528
3529 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
3530
3531         * src/port.h (PORT structure): added hook initPaths, now each
3532         port can declare its own default search paths,
3533         which can been seen with the --print-search-dirs option,
3534         see pic16 port for example,
3535         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
3536         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
3537         * (doPrintSearchDirs): NEW, replaces in a central manner the
3538         printing of search dirs which was split in set*Paths functions,
3539         * (main): added call to port->initPaths and doPrintSearchDirs,
3540         * src/avr/main.c,
3541         * src/ds390/main.c,
3542         * src/hc08/main.c,
3543         * src/izt/i186.c,
3544         * src/izt/tlcs900h.c,
3545         * src/mcs51/main.c,
3546         * src/pic/main.c,
3547         * src/pic16/main.c: modified port structures to reflect addition of
3548         initPaths hook,
3549
3550         * src/pic16/device.c (regCompare): registers are finally sorted by name,
3551         * (pic16_dump_section): for registers in same address reserve memory once,
3552         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
3553         to no_banksel,
3554         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
3555         result is greater in size than right or left,
3556         * (pic16_genUMult8X8_8): there are some cases where the result can
3557         be 16 bits size, so handle these,
3558         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
3559         * (pic16_outBitC): modified to emit pcodes,
3560         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
3561         or not,
3562         * (genDivOneByte): implemented algorithm to divide 8-bits,
3563         * (genCmp): uncommented goto, but issues still exist,
3564         * (genAnd): fixed a bug with variables >8bits,
3565         * (genPackBits): optimization added that uses BCF/BSF to change a
3566         single bit,
3567         * (genAssign): fixed bug when assigning floating point literals,
3568         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
3569         __sdcc_gsinit_startup label,
3570         * src/pic16/main.c (_pic16_init): removed search directory
3571         initialisations,
3572         * (_pic16_initPaths): NEW, used to initialise search directories,
3573         * (_hasNativeMulFor): support functions for all except char/int
3574         multiplication, and char division,
3575         * (PIC16_port struct): modified entry for native mul support,
3576         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
3577         no_banksel option,
3578         * (buildCallTree): call to register_usage is ifdef'ed out,
3579
3580 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3581
3582         * device/include/string.h: applied Stas Sergeev's patch to make this
3583         header file compatible with the preprocessor -Wundef option
3584         * src/SDCCmain.c (main): abort compilation if preprocessor reports
3585         failure (fixes bug #941458)
3586
3587 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3588
3589         * src/SDCCopt.c (killDeadCode): fixed bug #907733
3590         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
3591         that the variable, not the function, should be static
3592         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
3593         to be consistent with non-literal case
3594
3595 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3596
3597         * src/SDCCast.c (isConformingBody): fixed bug #949967
3598         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
3599         convilong): fixed bug #952086
3600
3601 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3602
3603         * src/SDCCmem.c (allocVariables): fixed bug #955321
3604
3605 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3606
3607         * src/hc08/main.c (_hc08_genAssemblerEnd),
3608         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
3609         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
3610         completely eliminated the use of a temporary file
3611         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
3612         when more than one file linked
3613         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
3614
3615 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3616
3617         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
3618         which fixes bug #543481
3619         * support/regression/tests/bug-751703.c: fixed comments left from a
3620         cut and paste error
3621         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
3622         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
3623         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
3624         scopes
3625         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
3626         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
3627         are now changed to underscores in moduleName
3628
3629 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3630
3631         * as/mcs51/lkmem.c: better fix for bug #954173
3632
3633 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
3634         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3635
3636         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
3637         * device/include/c8051f000.h,
3638         * device/include/c8051f120.h,
3639         * device/include/c8051f300.h,
3640         * device/include/c8051f310.h,
3641         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
3642         PWM16) and detab'ed
3643
3644 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3645
3646         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
3647         and mailing lists, doc'ed --no-peep-comments, removed reference
3648         to knoppix (newest version has no LyX/LaTeX), other minor changes
3649         * src/SDCCglue.c (glue): save 2 bytes stack space with
3650         option --main-return. The ljmp could probably be avoided too
3651
3652 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3653
3654         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
3655
3656 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3657
3658         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
3659         * src/SDCCopt.c (isLocalWithoutDef),
3660         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
3661         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
3662         (credit to Maarten Brock for patch #949363, on which this is based)
3663         * support/regression/tests/bug-751703.c: some test cases of extern used
3664         within inner scopes.
3665
3666 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3667
3668         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
3669         SPEC_STRUCT
3670         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
3671         struct definitions
3672         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
3673         dwWriteLabel): fix to create valid debugger symbols even when
3674         the module name has non-alphanumeric symbols in it
3675         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
3676         when a variable's allocation has been optimized away
3677
3678
3679 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3680
3681         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
3682         * src/hc08/main.c,
3683         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
3684         * src/mcs51/main.c,
3685         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
3686         * src/ds390/main.c,
3687         * src/z80/gen.c (z80_emitDebuggerSymbol),
3688         * src/z80/main.c,
3689         * src/pic/gen.c (pic14_emitDebuggerSymbol),
3690         * src/pic/main.c,
3691         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
3692         * src/pic16/main.c,
3693         * src/avr/gen.c (avr_emitDebuggerSymbol),
3694         * src/avr/main.c,
3695         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
3696         * src/xa51/main.c,
3697         * src/SDCCdebug.c (emitDebuggerSymbol),
3698         * src/SDCCdebug.h,
3699         * src/port.h: added a debugger struct to the port struct. Added a
3700         callback for defining debugger symbols
3701
3702         * src/SDCCast.c (createLabel),
3703         * src/SDCC.y (labeled_statement): mark all compiler generated labels
3704         with isitmp = 1
3705         * src/SDCCicode.h,
3706         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
3707         iCode back to the ast for the function
3708
3709         * src/hc08/ralloc.c (hc08_assignRegisters),
3710         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
3711         unneeded fields from the regs struct.
3712         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
3713         pushReg() & pullReg() functions instead of emitcode()
3714
3715         * src/hc08/gen.c (genLabel, genhc08Code),
3716         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
3717
3718         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
3719         debugger hooks
3720
3721         * src/hc08/gen.c (genEndFunction, genhc08Code),
3722         * src/hc08/gen.h,
3723         * src/mcs51/gen.c (genEndFunction, gen51Code),
3724         * src/mcs51/gen.h,
3725         * src/ds390/gen.c (genEndFunction, gen390Code),
3726         * src/ds390/gen.h,
3727         * src/z80/gen.c (genEndFunction, genZ80Code),
3728         * src/z80/gen.h,
3729         * src/z80/z80.h,
3730         * src/pic/gen.c (genEndFunction, genpic14Code),
3731         * src/pic/gen.h,
3732         * src/pic16/gen.c (genEndFunction, genpic16Code),
3733         * src/pic16/gen.h,
3734         * src/avr/gen.c (genEndFunction, genAVRCode),
3735         * src/avr/gen.h,
3736         * src/xa51/gen.c (genEndFunction, genXA51Code),
3737         * src/xa51/gen.h,
3738         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
3739         specific code to cdbFile.c and out of the backend code generators
3740
3741         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
3742         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
3743         starting address is now 0
3744
3745         * as/hc08/asm.h,
3746         * as/hc08/m08pst.c,
3747         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
3748         assembler directive for DWARF support
3749         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
3750
3751         * src/src.dsp,
3752         * src/Makefile.in,
3753         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
3754
3755 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3756
3757         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
3758         and inappropriate peephole optimization in jump tables
3759
3760 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3761
3762         * as/hc08/m08pst.c,
3763         * src/SDCCglue.c: sdccopt works for the hc08 port now
3764
3765 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
3766
3767         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
3768
3769 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3770
3771         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
3772
3773 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3774
3775         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
3776         rules
3777         * src/SDCCmain.c,
3778         * src/SDCCglobl.h,
3779         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
3780         comments from the peephole optimizer replacement rules
3781         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
3782         symbols
3783         * src/SDCCcse.c (updateSpillLocation),
3784         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
3785         equivalents
3786         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
3787         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
3788         objects far pointers
3789
3790 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3791
3792         * src/SDCCsymt.h: a missing part of my last change
3793         * src/pic/ralloc.c (regTypeNum),
3794         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
3795
3796 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3797
3798         * src/SDCCicode.h,
3799         * src/SDCCicode.c (aggrToPtrDclType),
3800         * src/SDCCptropt.h,
3801         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
3802         ptrPseudoSymConvert),
3803         * src/pic/ralloc.c (regTypeNum),
3804         * src/pic16/ralloc.c (regTypeNum),
3805         * src/hc08/ralloc.c (regTypeNum),
3806         * src/ds390/ralloc.c (regTypeNum),
3807         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
3808         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
3809
3810 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3811
3812         * link/z80/lkmain.c (afile),
3813         * as/hc08/lkmain.c (afile),
3814         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
3815         prevent a pointer problem when a filename has no directory and
3816         no extension specified.
3817
3818 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3819
3820         * link/z80/lkmain.c (afile): allow periods in directory names
3821         * link/z80/lkmain.c (afile),
3822         * as/mcs51/lkmain.c (afile),
3823         * as/hc08/lkmain.c (afile): allow linker script file to have an
3824         extension other than ".lnk"
3825         * link/z80/lklex.c (getfid),
3826         * link/z80/lkmain.c (parse),
3827         * as/mcs51/lklex.c (getfid),
3828         * as/mcs51/lkmain.c (parse),
3829         * as/hc08/lklex.c (getfid),
3830         * as/hc08/lkmain.c (parse): Support comments in the linker script
3831         file on lines by themselves and after filenames
3832
3833 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3834
3835         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
3836
3837 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3838
3839         * src/z80/peeph-z80.def: removed some peephole rules that don't
3840         work with multibyte arithmetic (fixed bug #937126)
3841         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
3842         to registers and not global variables
3843         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
3844         geniCodePreInc, geniCodePostDec, geniCodePreDec,
3845         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
3846         checking for assignments not internally generated (fixed bug #931895)
3847         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
3848         structure member (fixed bug #930072)
3849
3850 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3851
3852         * src/SDCCmain.c (linkEdit),
3853         * src/hc08/main.c (_hc08_parseOptions),
3854         * as/hc08/Makefile.in,
3855         * as/hc08/aslink.h,
3856         * as/hc08/asm.h,
3857         * as/hc08/m08pst.c,
3858         * as/hc08/lkrloc.c (relr, rele),
3859         * as/hc08/lkarea.c (lnkarea)
3860         * as/hc08/lkmain.c (afile, parse),
3861         * as/hc08/lkelf.c: support for ELF output
3862         * as/hc08/lks19.c (s19),
3863         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
3864
3865 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3866
3867         * as/mcs51/lkihx.c: Fixed bug #899105.
3868
3869 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3870
3871         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
3872         .dsp files from Unix to DOS.
3873
3874 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3875
3876         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
3877         function pointers; we have been compliant for several months now.
3878         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
3879         change that was accidently commented out
3880         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
3881         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
3882         bug #922319
3883
3884 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3885
3886         * src/hc08/gen.c: output of all of the internal debugging information
3887         is now controlled by the D() macro; it is disabled by default
3888
3889 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3890
3891         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
3892         harder to keep the same registers during a CAST iCode
3893         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
3894         long via int can be done in a single cast, if the signedness is
3895         correct.
3896         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
3897         putchar() in tinibios.c in ds390's library
3898
3899 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
3900
3901         * src/SDCCast.c (decorateType): fixed bug #898889,
3902         cast result of a literal complement too
3903         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
3904         fixed check for bitfields
3905
3906 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
3907
3908         * src/SDCCicode.c (geniCodeLogic): made it static,
3909         (geniCodeLogicAndOr): added in order to fix bug #905492,
3910         (ast2iCode): fixed bug #905492
3911         * support/regression/tests/bug-905492.c: added
3912         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
3913         (processParms): fixed bug #927659: don't copy parms, this will clear
3914         decorated flag
3915         * support/regression/tests/bug-927659.c: added
3916
3917 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
3918
3919         * src/SDCCast.c (addCast): don't cast float to char
3920         * device/lib/libsdcc.lib: added _memmove
3921
3922 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
3923
3924         * device/lib/large/Makefile: fixed parallel execution by
3925         replacing `make` by `$(MAKE)`
3926
3927 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3928
3929         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
3930         offsets (fixes bug #923936)
3931
3932 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
3933
3934         * device/lib/small/Makefile: fixed parallel execution by
3935         replacing `make` by `$(MAKE)`
3936
3937 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
3938
3939         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
3940
3941 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
3942
3943         * src/pic/gen.c (genCpl): multi-byte complements were not working.
3944         * src/regression/Makefile: Regression test was not running.
3945
3946 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
3947
3948         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
3949         complement if possible
3950         * src/SDCCval.c (valComplement),
3951         * src/SDCCicode.c (operandOperation): fixed complement of literal
3952         * support/regression/tests/onebyte.c (testComplement): added
3953
3954 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
3955
3956         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
3957         return an optimized tree; actually replace actParm with the new tree
3958         * src/SDCCast.h: added some parantheses to remove side effects
3959         * support/regression/tests/bug-920866.c
3960
3961 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
3962         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
3963         Bit operands were not being handled properly in the pic14 port.
3964         (now src/regression/add.c passes again).
3965
3966 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3967
3968         * src/SDCC.y (labeled_statement): case and default no longer require
3969         a following statement (RFE #893037)
3970
3971 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3972
3973         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
3974         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
3975         disabled (fixes bug #916294)
3976         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
3977         "mov a,acc"; patch provided by Lenny Story
3978         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
3979
3980 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3981
3982         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
3983         functions
3984         * src/ds390/gen.c (genFunction, genEndFunction),
3985         * src/ds390/ralloc.c (ds390_assignRegisters),
3986         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
3987         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
3988         pushed if there are parameters passed on the stack. Also, a cleaner
3989         way to decide if r0/r1 should be pushed/popped. (Together they fix
3990         bug #918693)
3991
3992 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3993
3994         * doc/sdccman.lyx,
3995         * device/lib/mcs51/crtpagesfr.asm,
3996         * device/lib/mcs51/crtxinit.asm,
3997         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
3998         to avoid confusion with Si Lab's SFRPAGE register.
3999
4000 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4001
4002         * src/SDCCglue.c (emitMaps): allow public sfr variables
4003         * src/SDCCglue.c (initialComments): include compiler build date
4004         with compiler version and put the timestamp of the generated
4005         assembly file on a serperate line to be less confusing.
4006         * src/port.h: added genInitStartup hook
4007         * src/avr/main.c,
4008         * src/ds390/main.c,
4009         * src/hc08/main.c,
4010         * src/pic/main.c,
4011         * src/pic16/main.c,
4012         * src/xa51/main.c,
4013         * src/z80/main.c: genInitStartup initialize as NULL (default to
4014         historical behaviour)
4015         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
4016         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
4017         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
4018         library instead of hard coding it into the compiler.
4019         * support/regression/ports/mcs51-stack-auto/spec.mk,
4020         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
4021         * device/lib/mcs51/Makefile,
4022         * device/lib/small/Makefile,
4023         * device/lib/large/Makefile,
4024         * device/lib/mcs51/crtpagesfr.asm,
4025         * device/lib/mcs51/crtstart.asm,
4026         * device/lib/mcs51/crtxclear.asm,
4027         * device/lib/mcs51/crtxinit.asm,
4028         * device/lib/mcs51/crtclear.asm,
4029         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
4030         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
4031         and into user configurable files.
4032         * device/lib/clean.mk: clean mcs51 directory too
4033         * support/regression/tests/longlit.c: added static to T1 declaration
4034         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
4035         accesses in the initialization code
4036
4037 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4038
4039         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
4040         OSCTRIMVAL as noted in bug #916008
4041
4042 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4043
4044         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
4045         in loops with multiple exits (reported as incorrect registers
4046         used by Martin Helmling in Sdcc-user list)
4047
4048 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4049
4050         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
4051         made ds390 register extensions look less like error messages
4052
4053 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4054
4055         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
4056         reported by Adam Wozniak in Sdcc-user list
4057
4058 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
4059
4060         * src/SDCCast.c (decorateType): fixed with bug and promotion in
4061         arithmetic optimizations, added debug output
4062
4063 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
4064
4065         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
4066         * sdcc.spec: updated and split sdcc into 3 rpms
4067         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
4068         needed for literals of LEFT_OP and '+'
4069         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
4070         introduced RESULT_TYPE_NOPROM
4071         (geniCodeMultiply): fixed logic for decision if mul is optimized to
4072         left shift
4073         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
4074         limited promotion to int only for '*'
4075         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
4076
4077 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
4078
4079         * src/pic16/gen.c (genSkip),
4080         (genc16bit2lit), (gencjneshort): commented out
4081         (is_LitOp): new helper function, checks operand type
4082         (genCmpEq): rewritten
4083
4084 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
4085
4086         * support/regression/tests/bug-908454.c: added
4087
4088 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
4089
4090         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
4091         * src/SDCCicode.c (usualBinaryConversions): op needs int type
4092         (geniCodeCast): cosmetic, don't preserve bit storage class
4093         (geniCodeLeftShift): added promotion
4094         (geniCodeLogic): fixed regression
4095         * src/SDCCsymt.c (computeTypeOr): accept bits too
4096         (compareType): 2nd part of fix for bug #908454, needed for bitfields
4097
4098 2004-03-07  Borut Razem <borut.razem AT siol.net>
4099
4100         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
4101
4102 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
4103
4104         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
4105         version of pic16_genPackRegisters which does not check if ic is a
4106         CAST operator,
4107         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
4108         function cause string1.c regression test fails
4109
4110 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
4111
4112         * sim/ucsim/configure.in,
4113         * sim/ucsim/configure,
4114         * sim/ucsim/doc/Makefile.in: use docdir
4115         * src/SDCC.y: fixed sbit atrributes
4116         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
4117         * src/SDCCast.c (decorateType): |^& need special promotion handling
4118         * src/SDCCast.h,
4119         * src/SDCCsymt.h: moved definition of RESULT_TYPE
4120         * src/SDCCsymt.h (computeType),
4121         * src/SDCCicode.c: computeType() needs op
4122         * src/SDCCsymt.c (checkTypeSanity),
4123         * doc/sddman.lyx: "plain" bitfields are unsigned
4124         * src/SDCCsymt.c (computeTypeOr): added
4125         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
4126         |^& ops
4127         * src/SDCCval.c (val*): computeType() needs op
4128         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
4129         * support/regression/tests/onebyte.c: added tests for |^&
4130
4131 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
4132
4133         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
4134         for writing icode into asm output.
4135
4136 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
4137
4138         * src/pic16/device.c: added some debug lines enabled
4139         with macro DEBUG_CHECK,
4140         * src/pic16/genarith.c: more debug in genPlus,
4141         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
4142         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
4143         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
4144         * (aopForSym): onStack symbols are re-placed in data memspace,
4145         and onStack flag is cleared,
4146         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
4147         copy temporary pcodeop,
4148         * (genPcall): added warning for not updating PCLATU,
4149         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
4150         always true for pic16 port,
4151         * (genMultOneWord): NEW, supports integer multiplication,
4152         * (genMult): modified to call genMultOneWord,
4153         * (ifxForOp): added warning when return NULL,
4154         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
4155         flag is set before call to operandFromSymbol for implicit
4156         added structures,
4157         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
4158         options.intlong_rent are set by default,
4159         * (_hasNativeMulFor): modified to allow port generation of integer
4160         multiplication,
4161         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
4162         set regtype to REG_SFR for all registers, restricting seting the
4163         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
4164
4165 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4166
4167         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
4168         more than 500 times in the regression tests
4169
4170 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4171
4172         * support/Util/SDCCerr.h,
4173         * support/Util/SDCCerr.c,
4174         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4175         enumerator_list),
4176         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
4177         for symbol conflicts.
4178         * support/valdiags/tests/enum.c,
4179         * support/valdiags/tests/tentdecl.c,
4180         * support/valdiags/tests/struct.c: expect possible error messages
4181         referring to original symbol definitions.
4182         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
4183         * src/SDCCsymt.h,
4184         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
4185
4186 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
4187
4188         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
4189
4190 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
4191
4192         * src/pic16/ralloc.c (newReg): fixed bug #908929
4193
4194 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4195
4196         * src/ds390/gen.c: added missing #include "main.h"
4197
4198 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
4199
4200         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
4201         checking if symbol is already in set,
4202         * src/pic16/device.h: prototype for checkAddSym,
4203         * src/pic16/gen.c: (_G): added entry interruptvector,
4204         * (assignResultValue): removed some commented out lines,
4205         * (genFunction): check for ISR via sym->type, absolute section for
4206         interrupt code is created via a new pBlock, the goto instruction is
4207         placed now correctly at the interrupt vector position, changed all
4208         references from ivec to _G.interruptvector,
4209         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
4210         is the interrupt is a high priority one, same for return from ISR,
4211         * src/pic16/glue.c: changed all calls of addSetHead for publics and
4212         externs to calls of checkAddSym,
4213         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
4214         pic16_pcode_verbose flag is set,
4215         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
4216         * src/pic16/pcoderegs.c: message about how many registers are saved
4217         will only be emitted if pic16_pcode_verbose flag is set,
4218
4219 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4220
4221         * src/ds390/ralloc.h,
4222         * src/ds390/ralloc.c (ds390_regWithIdx),
4223         * src/ds390/gen.c (emitcode),
4224         * src/ds390/main.h,
4225         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
4226         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4227         ds390operandCompare, getRegsRead, getRegsWritten,
4228         initializeAsmLineNode): customized instruction size calculation for
4229         ds390, started basis for some register optimizations
4230         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
4231         corresponding assembly output
4232         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
4233         missing push/pop of r0/r1. Optimized push/pops
4234
4235 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4236
4237         * src/mcs51/main.c (instructionSize): fixed ACALL size
4238         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
4239
4240 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
4241
4242         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
4243         the sorting of rlist with NULL elements
4244         * (print_idataType, print_idata): NEW to create idata sections
4245         * src/pic16/device.h: idataSymSet new variable
4246         * src/pic16/gen.c (genFunction): fixed some bugs in string
4247         comparing, improved the absolute section creation for ISRs,
4248         added FSR0L/FSR0H in registers that are saved in an ISR,
4249         * (genInline): fixed the processing of inline snippets,
4250         now they undergo no process by the peephole optimizer
4251         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
4252         are placed in idataSymSet,
4253         * (pic16emitStaticSeg): extern symbols are added in externs,
4254         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
4255         switching when aboslute variables are placed in access bank memory
4256         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
4257         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
4258         commented out with #if,
4259         * (pic16_packRegisters): reintroduce the check for CAST because some
4260         symbols are not correctly handled,
4261         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
4262         pCodeInstruction instead of pCode,
4263         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
4264         pCodeAsmDir definition,
4265         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
4266         directive, then the argument directive is emitted without the leading
4267         tab, hack for inline labels which must be in the first column,
4268         * (compareLabel,pic16_findNextInstruction),
4269         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
4270         * (insertBankSwitch): modified for the new pCodeAsmDir,
4271
4272 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4273         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
4274
4275         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
4276         instance,
4277         * (pushSide): commented out with #if,
4278         * (assignResultValue): fixed some typos in saving
4279         registers,
4280         * (genPcall): FIXED and sync'ed with genCall,
4281         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
4282         * (genNearPointerGet): fixed to handle some more cases,
4283         implementation scheme via table reads,
4284         * (genConstPointerGet): modified to access code memory correct,
4285         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
4286         and improved to handle some cases
4287         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
4288         instead of "RETLW" for init data
4289         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
4290         not IN_DIRSPACE, work around to reduce bank switching when aboslute
4291         variables are placed in access bank memory (<0x80 and >=0xf80),
4292         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
4293         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
4294         TBLWT_POSTDEC,TBLWT_PREINC
4295         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
4296         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
4297         directives
4298         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
4299         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
4300         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
4301         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
4302
4303 2004-02-29  Borut Razem <borut.razem AT siol.net>
4304
4305         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
4306         support/Util/findme.h, support/Util/system.h: enhance binary relative
4307         search for lib and include by using findProgramPath()
4308
4309 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4310
4311         * src/SDCCpeeph.h,
4312         * src/SDCCpeeph.c (pcDistance),
4313         * src/port.h,
4314         * src/mcs51/ralloc.h,
4315         * src/mcs51/ralloc.c (mcs51_regWithIdx),
4316         * src/mcs51/main.h,
4317         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
4318         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4319         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
4320         size calculation port specific, started basis for some register
4321         optimizations
4322         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
4323         missing push/pop of r0/r1. Optimized push/pops
4324         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
4325         * device/lib/_modsint.c (_modsint),
4326         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
4327         and stack version so regression tests pass
4328
4329 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
4330
4331         * src/Makefile.in (dep): include SLIBOBJS in dependency check
4332         * src/SDCCast.c (decorateType): catch another small optimization
4333         with '?' operator
4334         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
4335         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
4336         modified to finally use computeType() all over SDCC,
4337         see Feature Request #877103
4338         * src/SDCCval.h: cosmetic
4339         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
4340         valCompare(); regression tested in muldiv.c
4341         * support/regression/tests/muldiv.c (testMod): mod sign follows
4342         dividend only
4343
4344 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
4345
4346         * src/SDCCast.c (decorateType): fixed bug #902362
4347         * doc/INSTALL.txt: fixed install instructions for win32
4348
4349 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
4350
4351         * device/include/Makefile.in (install): fixed by replacing spaces
4352         by tabs
4353         * doc/README.txt,
4354         * doc/INSTALL.txt: updated for release
4355         * doc/sdccman.lyx: added warning for --xstack being buggy
4356
4357 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
4358
4359         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
4360         to eliminate build warnings.
4361         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
4362
4363 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
4364            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4365
4366         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
4367         removed -penable-stack, added comment for stack pragma, added
4368         warning for not initializing the stack/frame registers, removed
4369         comment at interrupts section
4370
4371         Stack is made permanent, there is no ability to disable stack usage.
4372         * src/pic16/device.h,
4373         * src/pic16/device.c: removed all references to USE_STACK macro,
4374         * src/pic16/device.c (pic16_dump_section): when no elements in
4375         rlist, free rlist before return,
4376         * (pic16_dump_int_registers): NEW, internal registers are a new set
4377         of general purpose registers reused by each function,
4378         * (checkAddReg): returns 1 if registers is added to set,
4379         * (pic16_groupRegistersInSection): when a registers is of type
4380         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
4381         * src/pic16/device.h: memRange and Assigned Memory are deleted,
4382         SRCASECMP macro is moved here from device.c
4383         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
4384         PO_PCLATU, PO_PRODL, PO_PRODH,
4385         * (pic16_pCodeOpType, genMinus,
4386         changed compares to "a" register, with AOP_ACC,
4387         * (pic16_genPlus): fixed some bugs and indented properly,
4388         * (pic16_addSign): changed size to size+offset in the MOVWF
4389         instruction,
4390         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
4391         multiply 8-bit operand by literal, result is 8-bit,
4392         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
4393         multiply 2 8-bit operand, result is 8-bit,
4394         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
4395         genUMult8X*_16,
4396         * src/pic16/gen.c: changed accUse to contain WREG only,
4397         * (pic16_emitcomment): renamed to pic16_emitpcomment,
4398         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
4399         true, do not use immediate addressing any more unless sym is a
4400         pointer in codespace,
4401         * (aopForRemat): do not use immediate addressing when symbol not in
4402         codespace and when symbol's address is requested,
4403         * (aopOp): for-loop in if(sym->accUse) is modified for the new
4404         accUse size (= 1),
4405         * (aopGet): added case for AOP_ACC and don't return "accumulator
4406         bug" but WREG instead,
4407         * (popGetTempReg): pushes contents of temporary register in stack,
4408         * (popReleaseTempReg): pops contents of temporary register from
4409         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
4410         * (pic16_popGet): separated case AOP_ACC to return register WREG
4411         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
4412         or PO_IMMEDIATE and initializes their instance/offset appropriately,
4413         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
4414         the use of immediate pointers to certain cases only.
4415
4416         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
4417         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
4418         * (assignResultValue, genCall, genRet): modified to use the new
4419         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
4420         genPcall is still broken,
4421         * (genFunction): added code to create 'A' type pBlocks when
4422         interrupt functions are generated, code not extensively tested yet,
4423         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
4424         * (genEndFunction): modified so ISRs pop stored registers from stack,
4425         * (genMultOneByte): cleanup,
4426         * (AccRsh): added flag andmask, to and result with appropriate mask,
4427         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
4428         * (genDataPointerGet): fixed and reenabled its use,
4429         * (genNearDataPointerGet): bugs fixed,
4430         * (genDataPointerSet): bugs fixed,
4431         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
4432         pic16_DumpSymbol, pic16_DumpOp,
4433         * src/pic16/genutils.h: function prototypes for the above functions,
4434         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
4435         pointers,
4436         * (pic16emitRegularMap): many many many improvements, but needs a
4437         major cleanup,
4438         * src/pic16/main.c: enable_stack in pic16_options is removed,
4439         * (_pic16_parseOptions): removed command line options -penable-stack,
4440         * (_process_pragma): emit stack symbol only when stack pragma is
4441         processed,
4442         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
4443         redirected to FSR0L/FSR0H pair,
4444         * (pic16_get_op, pic16_get_op2): modifications and improvements,
4445         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4446         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
4447         for immediates,
4448         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
4449         * (dumpPicOptype): NEW,
4450         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
4451         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
4452         with movff instruction,
4453         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
4454         added pic16_int_regs, some packRegsFor* functions are commented out,
4455         because produce errors,
4456         * src/pic16/NOTES: minor modifications
4457
4458 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4459
4460         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
4461         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
4462         --pack-iram.
4463         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
4464         * as/mcs51/lkaomf51.c: fixed bug #895763
4465
4466 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
4467
4468         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
4469
4470 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4471
4472         * doc/sdccman.lyx: added details about the HC08 storage classes and
4473         interrupts, fixed the register usage info for z80 & gbz80
4474
4475 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
4476
4477         * doc/sdccman.lyx: added more pic16 port documentation
4478         * device/include/pic16/: added header pic18fregs.h
4479
4480 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
4481
4482         * doc/sdccman.lyx: added Vangelis' contribution
4483
4484 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4485
4486         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
4487         extend to the next CALL or PCALL, not just to the next CALL.
4488
4489 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
4490
4491         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
4492
4493 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4494
4495         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
4496         bug #895752 and a better fix for bug #716790
4497
4498 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4499
4500         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
4501
4502 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4503
4504         * doc/sdccman.lyx: minor changes, minor changed
4505
4506 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
4507
4508         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
4509         which can't handle SDCC_NEWONEBYTEOPS,
4510         (geniCodeMultiply): removed conversion from mult to shift for pic14
4511         and pic16
4512
4513 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4514
4515         * src/hc08/gen.h,
4516         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
4517         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
4518         thus fixing bug #895406
4519
4520 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
4521
4522         * device/lib/_modsint.c,
4523         * device/lib/_modslong.c: sign follows divisor only
4524         * src/hc08/gen.c (genMultOneByte): if result size is 1,
4525         signs or signedness can be ignored
4526         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
4527         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
4528         added optimization for IFX,
4529         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
4530         arguments;
4531         reenabled optimization for IFX, which was removed on 2004-01-11
4532         * src/SDCCast.h: added return type IFX
4533         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
4534         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
4535         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
4536         SDCC_OLDONEBYTEOPS selects the old behaviour
4537         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
4538         changed again and commented promotion rule
4539         * src/SDCCval.c (valDiv): promotion no longer necessary
4540         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
4541         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
4542         rewritten
4543         * support/regression/tests/onebyte.c: added
4544
4545 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
4546
4547         * gen.c (genInline): reverted to old code for assemnling inline
4548         code because of bug reported James Chadd
4549
4550 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
4551
4552         * ralloc.h: missing declarations from previous patch,
4553         seems that patch for ralloc.h was never applied, fixed
4554
4555 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4556            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
4557
4558         * pcode.c,
4559         * pcode.h,
4560         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
4561         indirect addressing. Marked FSR0 as deprecated
4562         * gen.c (pointerCode): commented out, not needed now
4563         (pic16_popGet2p): new MOVFF helper function
4564         (genGenPointerGet),
4565         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
4566         (shiftRLong): removed duplicate debugging info
4567
4568 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4569
4570         * src/ds390/gen.c (genNearPointerGet),
4571         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
4572         optimization with bits, but not bitfields.
4573         * src/ds390/ralloc.c (packRegisters),
4574         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
4575
4576 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
4577
4578         * src/SDCCcse.c (algebraicOpts): copy operands before modification
4579
4580 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4581
4582         * src/SDCCsymt.h,
4583         * src/SDCCicode.c (operandFromSymbol),
4584         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
4585         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
4586         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
4587         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
4588         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
4589         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
4590         bug #892038
4591         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
4592         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
4593         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
4594         * src/SDCCsymt.c (newSymbol),
4595         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4596         enumerator_list),
4597         * src/SDCCval.h,
4598         * src/SDCCval.c (newiList): fixed bug #885705
4599
4600 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4601
4602         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
4603         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
4604
4605 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4606
4607         * device/include/c8051f120.h,
4608         * device/include/c8051f300.h,
4609         * device/include/c8051f310.h: added/updated header files for Silicon
4610         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
4611         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
4612         in new section Submitting patches
4613
4614 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4615
4616         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
4617         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4618         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4619         genGenPointerSet),
4620         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
4621         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4622         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4623         genGenPointerSet),
4624         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
4625         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4626         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4627         genGenPointerSet),
4628         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
4629         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4630         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4631         genGenPointerSet): fixed bug #892400
4632         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
4633         to eliminate build warnings.
4634         * src/SDCCast.c (processParms),
4635         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
4636         fixed bug 751859
4637         * support/valdiag/valdiag.py: added GCC to the list of defines active
4638         when compiling with gcc
4639
4640 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4641
4642         * support/Util/SDCCerr.h,
4643         * support/Util/SDCCerr.c,
4644         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
4645         with an incomplete type (fixed bug #883734)
4646         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
4647
4648 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4649
4650         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
4651
4652 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4653
4654         * src/SDCCast.c (decorateType),
4655         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
4656         function pointer implementation
4657         * support/regression/tests/funptrs.c: added tests to verify both forms
4658         of function pointers work correctly. Added tests to verify parameters
4659         are passed in the correct order.
4660
4661 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
4662
4663         * device.c (regCompare): registers are sorted by ascending
4664         address and increasing size,
4665         * main.c (_pic16_finaliseOptions): removed the declaration
4666         of compiler macro MCU. Now a macro of the format pic18fxxxx
4667         will be defined from the command line
4668
4669 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4670             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
4671
4672         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
4673         PCOP_RLCF was overwritten!
4674         * gen.c (genSkip): commented out calls to pic16_emitcode,
4675         * (genCmpEQ): fixed "long" compares, only high word did get compared,
4676         * (genlshTwo),
4677         * (genRRC): added debugging info,
4678         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
4679         overwritten while shifting,
4680         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
4681         overwritten while shifting,
4682         * (AccLsh),
4683         * (AccRsh),
4684         * (shiftLLeftOrResult),
4685         * (shiftRLeftOrResult),
4686         * (shiftRLong),
4687         * (shiftLLong): Implemented with pic16_emitpcode
4688         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
4689         * (genLeftShift): Fixed bug, operand for shift by variable always
4690         was "and"ed with 0x0f,
4691         * (genLeftShiftLiteral),
4692         * (genrshTwo),
4693         * (genRightShiftLiteral): added debugging info,
4694         * (genrshFour): added comment,
4695         * (genRightShift): determined signedness from operand "left"
4696         instead of "result"
4697
4698 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4699
4700         * src/SDCCicode.c (geniCodeParms),
4701         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
4702         function pointers, fixed function pointer bugs #861242 and #861896
4703
4704 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4705
4706         * device/include/c8051f000.h,
4707         * device/include/c8051f120.h,
4708         * device/include/c8051f300.h: added header files for Silicon
4709         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
4710
4711 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
4712
4713         * src/SDCCast.c (processParams): added new type flow and restructured
4714         (gatherAutoInit): added new type flow
4715         (addCast): cosmetic changes
4716         (getLeftResultType): added new type flow for array indices, patch
4717         provided by Stas, see FR #877103
4718         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
4719         array index patch by Stas
4720         * src/SDCCast.h: added prototype getResultTypeFromType()
4721         * src/SDCCval.h,
4722         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
4723         * src/pic/glue.c (pic14emitStaticSeg),
4724         * src/pic16/glue.c (pic16emitStaticSeg),
4725         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
4726         for initialization of symbols
4727         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
4728         * support/Util/SDCCerr.h:
4729         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
4730         * .version: bumped version number to 2.3.8
4731         * device/include/Makefile.in (install),
4732         * doc/Makefile (install): changed to 'rm `find ...`' construct to
4733         avoid warnings
4734
4735 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
4736
4737         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
4738         Slade Rich fixed an optimization bug
4739         * src/pic/pcodepeep.c,
4740         * src/pic/pcoderegs.c
4741         * doc/Makefile (install): added test for directory
4742
4743 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4744
4745         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
4746         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
4747         * src/pic/ralloc.c (getRegPtr, getRegGpr),
4748         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
4749         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
4750         * as/mcs51/asexpr.c (term),
4751         * as/hc08/asexpr.c (term): fixed bug #887146
4752
4753 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4754
4755         * src/z80/gen.c (genMult): handle single byte result product
4756         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
4757         DUMMY_READ_VOLATILE (fixed bug #886367)
4758
4759 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
4760
4761         * support/regression/tests/libmullong.c: fixed logic, on little endian
4762         hosts we ended without a mullong_wrapper()
4763
4764 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4765
4766         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
4767         virus/worm forged address usage.
4768
4769 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
4770
4771         Fixed promotion, it should be done on AST level:
4772         * src/SDCCast.c (addCast): added promotion to int
4773         (decorateType): updated call to upCast()
4774         * src/SDCCicode.c (geniCodeLeftShift): removed call to
4775         usualUnaryConversions()
4776
4777 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
4778
4779         * support/regression/tests/literalop.c (mulWrapper): Added a
4780         wrapper to remove integer overflow warnings.
4781
4782         * support/regression/tests/float_trans.c: Made work on host.
4783
4784         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
4785         location of sz80.
4786
4787         * support/regression/generate-cases.py (main): Changed from inline
4788         to a main method.
4789
4790         * doc/Makefile (install): Changed to depth first to get rid of
4791         missing directory install warning.
4792
4793         * as/Makefile (install-doc): Made work on Mac.
4794
4795 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
4796
4797         * src/SDCCast.c: added an additional type flow in decorateType() of
4798         opposite direction, see feature request #860006; it's enabled at runtime
4799         by setting the environment variable SDCC_NEWTYPEFLOW
4800         * src/SDCCast.h: changed prototype of decorateType()
4801         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
4802         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
4803         'char' to 'int' can be omitted, if both operands are 'unsigned char';
4804         see feature request #877103
4805         * src/SDCCval.c: updated call of decorateType()
4806         (valBitwise): fixed bug #882876
4807         (valMinus): added promotion
4808         (valLogicAndOr): result is unsigned
4809         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
4810         * src/SDCCsymt.c (computeType),
4811         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
4812         must not cause an unsigned operation
4813         * src/pic/glue (pic14emitRegularMap),
4814         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
4815
4816 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
4817
4818         * src/pic/pcode.c (PCodeID): commented out left over debug code
4819
4820 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
4821
4822         * support/valdiag/tests/overflow.c: added shift tests
4823         * src/pic/device.c,
4824         * src/pic/gen.c,
4825         * src/pic/gen.h,
4826         * src/pic/glue.c,
4827         * src/pic/main.c,
4828         * src/pic/pcode.c,
4829         * src/pic/pcode.h,
4830         * src/pic/pcodepeep.c,
4831         * src/pic/pcoderegs.c,
4832         * src/pic/ralloc.c,
4833         * src/pic/ralloc.h: applied patch from Slade Rich;
4834         added support for multiple code pages and multiple RAM banks on the
4835         PIC 14 port. The ASM files now no longer simply assume all the
4836         code / RAM are in the same page / bank. This means the linker can
4837         safely allocate code/RAM of separate ASM files to different pages/banks.
4838         * doc/sdccman.lyx: added Slade's tips
4839         * src/mcs51/peeph.def: fixed bug #880768
4840
4841 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4842
4843         * src/hc08/ralloc.c (rematStr): fixed bug #879282
4844         * src/SDCCast.c (decorateType): fixed bug #880197
4845
4846 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
4847
4848         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
4849         getopt.h.
4850
4851         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
4852         strtof is not part of C89 and isn't included with Mac OS X.
4853
4854 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4855
4856         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
4857         shiftL2Left2Result): fixed bug #879326
4858         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
4859         (genMultOneByte): fixed bug in signed vs unsigned multiplication
4860         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
4861         address fetch for clr instruction
4862         * device/lib/hc08/_mulint.c: created optimized assembly version
4863         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
4864
4865 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
4866
4867         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
4868         proposed in FR #877103
4869
4870 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
4871
4872         * src/SDCCval.c (cheapestVal): added missing checks
4873         * src/SDCCicode.c (usualBinaryConversions): fixed condition
4874         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
4875
4876 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
4877
4878         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
4879         equal operands
4880
4881 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
4882
4883         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
4884         loaded with the linker search paths (-L arguments) and the libraries
4885         to be linked with the current source (-l arguments). Changes
4886         currently will affect only the pic16 port.
4887         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
4888         include path the port specific paths and port specific libraries,
4889         * gplink command now contains the $3 argument,
4890         * src/pic16/device.h,
4891         * src/pic16/device.c,: structure PIC_device is made public and
4892         renamed to PIC16_device, the same for variable Pics which is renamed
4893         to Pics16. Updated all references to them.
4894         * src/pic16/glue.c (pic16glue): corrected bug with code
4895         initialization which bypassed the variable initializations block.
4896
4897         * device/lib/pic16/Makefile.rules: removed --penable-stack from
4898         COMPILE_FLAGS and added the --nostdinc option
4899
4900 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4901
4902         * device/include/mc68hc908jb8.h: Register defs for another member
4903         of the hc08 family. Contributed by Bjorn Bringert - thanks!
4904
4905 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
4906
4907         Documenting changes from previous commits.
4908         * configure.in (version 1.56),
4909         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
4910         when generating output files to configure the pic16 library,
4911         but now I've commented it out, since gputils aren't installed in the
4912         SF compile farm, so library won't compile
4913
4914         * device/lib/Makefile.in (version 1.56): initially I've added in
4915         target 'all' the prerequestive 'model-pic16' so it compiled the
4916         pic16 library, but now I've commented it out for the same reasons
4917         above,
4918         * added targets 'model-pic16' and 'objects-pic16' to compile the
4919         library
4920         * added target 'port-specific-objects-pic16' to handle the
4921         generated libraries and copy them into the build/ directory
4922         * added target 'clean-intermediate-pic16' to clean intermediate
4923         files into pic16 directory
4924         * in target 'installdirs' added line to create directory pic16 in
4925         the installation path
4926
4927         * device/include/Makefile.in (version 1.11): in target 'install'
4928         added lines to copy all header files to installation path,
4929         * in target 'installdirs' added line create directory for pic16
4930         headers in the installation path
4931
4932 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
4933
4934         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
4935          a function call
4936
4937 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
4938
4939         * configure,
4940         * device/lib/configure.in,
4941         * device/lib/configure: fixed for autoconf 2.57
4942
4943 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4944
4945         * src/z80/main.c (_parseOptions): fixed the portmode= command line
4946         option so that it actually works. Made it specific to the z80, since
4947         the gbz80 doesn't have these kinds of I/O ports.
4948
4949 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4950
4951         * device/include/z180.h,
4952         * device/lib/_memcpy.c,
4953         * device/lib/_memmove.c,
4954         * device/lib/_mulint.c,
4955         * device/lib/ser_ir.c,
4956         * device/lib/ser_ir_cts_rts.c,
4957         * device/lib/_strcmp.c,
4958         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
4959         * src/z80/main.c (_process_pragma): add support for pragmas bank and
4960         portmode; added deprecation warning for bank= and protmode= forms.
4961         Also, guard against buffer overflow.
4962         * src/z80/gen.c (aopGet): generate better code for sfr banked read
4963
4964 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4965
4966         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
4967         changed interrupt vector table generation to only emit declared vectors.
4968         * device/include/Makefile.in: added missing backslash
4969         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
4970
4971 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
4972
4973         Mainly changes to support compilation of the device libraries
4974         * src/pic16/device.c: stack is allocated via symbol and not
4975         via literal number. The symbol is placed in the corresponding
4976         position of the data ram
4977         * (pic16_dump_section): relocatable and absolute uninitialized
4978         data are now emitted in sorted order to reduce section naming,
4979         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
4980         weren't marked as being in the access bank,
4981
4982 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
4983
4984         Added portion of GNU PIC Library under the directory
4985         device/include/pic16 and device/lib/pic16. These files
4986         contain the declarations of SFRs for the PIC18Fxx2 devices.
4987         The directory is initialized via configure from toplevel.
4988
4989 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
4990
4991         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
4992         the spilllocations to be compared correctly
4993
4994 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
4995
4996         * src/SDCCast.c (decorateType): fixed bug introduced today
4997
4998 2004-01-12  Borut Razem <borut.razem AT siol.net>
4999
5000         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
5001         doc/sdccman.lyx: upper case pragmas are deprecated
5002
5003 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5004
5005         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
5006         in simpler and even better code
5007
5008 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
5009
5010         * src/SDCCicode.c (operandOperation): fixed bug #874819
5011         * src/SDCCast.c (decorateType): fixed
5012         char foo (unsigned long ul) { return ul > 0; }
5013
5014 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5015
5016         * doc/sdccman.lyx: Moved and added some sections, small changes
5017         all over. Telling LaTeX to be less strict with word spacing
5018         to better keep the right margin. Changed some notes about
5019         maintainance of the ports in section 3.2.1 - is it OK like this?
5020
5021 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
5022
5023         SDCC source changes:
5024         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
5025         convilong): modified to inform the pic16 port that builtin functions
5026         are external
5027
5028         PIC16 PORT specific changes:
5029         * src/pic16/device.c pic16_dump_equates() added,
5030         processor registers declared internally by the port are emitted in
5031         the translation as equates,
5032         * src/pic16/gen.c: inline code is passed unprocessed to the
5033         translation,
5034         * (pic16_popGetLit2): fnuction modified to take second operand as
5035         pCodeOp pointer and not as literal,
5036         * (popRegFromIdx): prefixed with pic16_,
5037         * (pic16_popCombine2): modified to receive already allocated pCode
5038         operands,
5039         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
5040         * (genFunction): initializes local stack frame and pushes on stack
5041         all the registers used by this function,
5042         * (genEndFunction): restores all registers from stack and restores
5043         stack frame,
5044         * src/pic16/glue.c (pic16emitRegularMap): various changes and
5045         improvements,
5046         * (pic16glue): changed the program startup sequence,
5047         * added new dbName code 'A' for functions placed in absolute section
5048         * src/pic16/main.c: added function attribute _naked,
5049         * added pragma 'code' to place a fnuction at an absolute address,
5050         * added command line arguments --debug-ralloc and --pcode-verbose,
5051         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
5052         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
5053         * (pic16_newpCodeOpLit2): modified to take the second operand as
5054         pCodeOp pointer,
5055         * (pic16_printpBlock): modified to emit each function in a separate
5056         section,
5057         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
5058         UPPER for immediate operands,
5059         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
5060         instruction,
5061         * src/pic16/peeph.def: all peepholes with movff are commented out,
5062         because there is a problem in the pcode peep optimizer,
5063         * src/pic16/ralloc.c: the register allocator can now reuse local
5064         function symbols for another function. This saves register usage.
5065         * src/pic16/ralloc.h: added flag isLocal in structure regs,
5066
5067         Added file src/pic16/NOTES with information about program writing on
5068         the current port version.
5069
5070 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5071
5072         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
5073         and peephole 252 (array access)
5074
5075 2004-01-09  Borut Razem <borut.razem AT siol.net>
5076
5077         * src/SDCCmain.c : fixed #872250: -l command line defined library
5078           files are scanned before standard library files
5079
5080 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5081
5082         * src/SDCCast.c (decorateType): fixed bug #874046
5083
5084 2004-01-09  Borut Razem <borut.razem AT siol.net>
5085
5086         * support/scripts/sdcc.nsi: remove previous installation
5087
5088 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5089
5090         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
5091         bytes for last interrupt vector (mcs51)
5092         * sdcc.spec: fixed typo
5093
5094 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5095
5096         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
5097         gen51Code): more efficient parameter receive for --model-large
5098         ("bug" #845294)
5099
5100 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5101
5102         * src/ds390/main.c,
5103         * src/z80/main.c: added missed needLinkerScript flags (more than
5104         one port structure defined in these file)
5105         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
5106         bug #795325
5107
5108 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
5109
5110         * src/SDCCmain.c: removed various references to DEFAULT_PORT
5111         * src/port.h: added flag needLinkerScript in port->linker
5112         structure to inform whether to create a .lnk file or not,
5113         * src/avr/main.c,
5114         * src/ds390/main.c,
5115         * src/hc08/main.c,
5116         * src/mcs51/main.c,
5117         * src/pic/main.c,
5118         * src/pic16/main.c,
5119         * src/xa51/main.c,
5120         * src/z80/main.c: changed appropriately to configure
5121         needLinkerScript flag
5122         * src/pic/gen.c,
5123         * src/pic16/gen.c (genAddrOf): fixed bug #863624
5124         * src/pic/glue.c: added variable udata_section_name to
5125         override default uninitialized data segment definition for
5126         devices only with SHAREBANK memory (reported from Erik Epetrich)
5127         * (pic14emitOverlay): modified to emit a commented overlay segment
5128         directive when no overlay data exist
5129         * (picglue): modified to emit uninitialized data segment
5130         according to udata_section_name
5131         * src/pic/main.c (_pic14_parseOptions): added command line
5132         options --udata-section-name=[name] to override default
5133         udata definition name
5134         * modified _linkCmd and _asmCmd to include compiler passed
5135         arguments via -W option
5136         * src/pic16/main.c: added $l in _asmCmd, changed extension for
5137         object file from '.rel' to '.o' in port->linker structure,
5138         changed size of fptr from 2 to 3 in port structure
5139
5140 2004-01-07  Borut Razem <borut.razem AT siol.net>
5141
5142         * support/scripts/sdcc.nsi: update PATH
5143         * support/scripts/sdcc.ico: craeted
5144
5145 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
5146
5147         * device/include/Makefile.in: fix install
5148         * doc/Makefile: fix install
5149
5150 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5151
5152         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
5153         in bug #860505
5154         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
5155         how the function variable allocation summary is displayed; also
5156         include information about variables allocated to the overlay
5157         segment
5158
5159 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5160
5161         * as/mcs51/lkmain.c: Help about -Y option
5162         * as/mcs51/lkarea.c: Fixed gcc warnings
5163
5164 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5165
5166         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
5167         fixed warning
5168         * support/valdiag/tests/overflow.c: added
5169         * src/SDCCast.c (decorateType),
5170         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
5171         LEFT_OP (left shift)
5172
5173 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5174
5175         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
5176         (default behaviour).
5177
5178 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5179
5180         A python script to validate compiler diagnostic messages. It can be
5181         used to verify that sdcc complains about bad c source code and
5182         gives a good location of the error.
5183         * support/valdiag/Makefile,
5184         * support/valdiag/valdiag.py,
5185         * support/valdiag/tests/*
5186
5187 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5188
5189         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
5190         * src/SDCCsymt.c (newEnumType),
5191         * src/SDCCsymt.h
5192         * support/Util/SDCCerr.c,
5193         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
5194         enum related bugs.
5195         * support/regression/tests/enum.c: added test for enum values that
5196         require at least 2 bytes of storage.
5197
5198 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5199
5200         * src/common.h: added ifndef/define/endif macros
5201         around the header file.
5202         Bug reported from Jesus Calvino-Fraga
5203
5204 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5205
5206         * sdcc.spec: updated
5207         * device/include/Makefile.in: don't install CVS directories
5208         * device/lib/Makefile.in: added removal of CVS directories after install
5209         * doc/Makefile: fixed install, added local_icons
5210         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
5211         * src/mcs51/gen.c (genRightShift): fixed bug #870788
5212         * src/ds390/gen.c (genRightShift): fixed bug #870788
5213         * src/SDCCast.c (decorateType): fixed bug #870781
5214
5215 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5216
5217         PIC16 port related changes:
5218         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
5219         added variable stackPos,
5220
5221         * gen.c: genCall, assignResultValue: added support for
5222         pushing/retrieving function parameters to/from stack,
5223         genFunction,genEndFunction: setup stack frame for the
5224         generated function,
5225         genAddrOf: will be changed according to bug 863624
5226
5227         * added files genutils.c and genutils.h which contain gen*
5228         debugged and optimised functions extracted from gen.c
5229
5230         * glue.c: added variable 'externs' which holds extern symbols,
5231         pic16emitRegularMap: is modified to properly handle relocatable
5232          symbols under the new scheme,
5233         pic16createInterruptVect: is modified
5234         pic16printPublics: is modified to emit 'global' assembler directives,
5235         added pic16_printExterns to print extern symbols,
5236         pic16glue: initializes stack/frame pointer in the beginning of
5237         the assembly output. Temporary hack, will be corrected later,
5238         because gplink yet does not support stack and SDCC does not
5239         yet support a type of crt0.o object to create the final binary.
5240
5241         * Removed many lines that contain 8051 legacy code.
5242         * The code is finally placed under a 'code' directive.
5243         * Added port specific options.
5244
5245         * _process_pragma: simplified since now we do not need *special*
5246         include file to define SFR registers. But a separate header
5247         will be needed. This will be developed later.
5248         * _pic16_parseOptions: added, parses port specific options:
5249         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
5250         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
5251         --preplace-udata-with=
5252
5253         * _pic16_setDefaultOptions: modified to initialize section names,
5254         but hack is temporarly out of order since it needs improvement.
5255         * _pic16_genAssemblerPreamble: configuration words are emitted by
5256         their address instead of their name. This part is incomplete and
5257         supports only the 18Fxx2 devices. Other devices will emit an error
5258         during assembly since they do not contain the same set of config
5259         registers
5260         * _pic16_genIVT: is modified,
5261
5262         * pcode.c: added definitions for some hardware registers that are needed
5263         for stack support
5264         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
5265         All PCI entries are updated. Now LFSR is supported.
5266         * Removed pic16_pciTRIS is mentioned by mdubuc in source
5267         * added pic16_newpCodeOpLit2 to support instructions with
5268         two literal arguments
5269         * pic16_pCode2str: corrected code that emits assembler instructions
5270         with two literal operands and those that have an access bit modifier
5271         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
5272         this fixes a bug which caused some labels to be lost, when an
5273         assembler directive was added, i.e. banksel,
5274         * pic16_FixRegisterBanking: improved logic that causes the insertion
5275         of bank switching,
5276         * InlineFunction: functions that are called once, are not any more
5277         inlined. This can be a port option in the future,
5278
5279         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
5280
5281         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
5282         hold the corresponding uninitialized symbols,
5283         * pic16_allocProcessorRegister: registers have explicit marked the
5284         accessBank field,
5285         * pic16_allocInternalRegister: registers are explicit marked as
5286         not used,
5287         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
5288         processing list, so bit registers were lost,
5289         *
5290
5291         * ralloc.h: added field 'accessBank' and original symbol operand
5292         in register definition,
5293         * removed the field isMapped from register definition,
5294
5295         ** Several functions have been removed from various sources:
5296         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
5297         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
5298         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
5299         pic16_assignRelocatableRegisters
5300
5301         ** others have been introduced:
5302         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
5303         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
5304
5305 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
5306
5307         * support/scripts/inc2h.pl: changed definition of BIT_AT
5308         to emit 'sbit at' instead of 'bit at'. This was a request.
5309
5310         PIC16 port related preliminary changes:
5311         * gen.c: prefixed function popRegFromString with
5312         pic16_ and all references to it corrected
5313         * pcode.c: all pic16_pc_* hardware registers prefixed
5314         with underscore (_),
5315         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
5316         * ralloc.c: newReg(): when register is REG_SFR then
5317         set address to rIdx,
5318         pic16_allocProcessorRegister(): marks register wasUsed=0
5319         pic16_writeUsedRegs(): added a call to assign processor
5320         registers via pic16_assignFixedRegisters
5321
5322 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5323
5324         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
5325         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
5326         variables in unused register banks.  Also the SSEG is placed
5327         wherever there is enough space for it, and IDATA can be anywhere
5328         in internal RAM.  For now compile using -Wl-Y[stack_size].
5329         The mem file is different for this option as well, since it
5330         makes no sense of talking about DSEG lenght.
5331
5332 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
5333
5334         * src/SDCClrange.c: fixed bug 869095 that caused segfault
5335         in certain cases, e.g. when ROM assignment, patch provided
5336         from Albert den Haan.
5337
5338 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
5339
5340         Many signedness and type propagation fixes:
5341         * src/SDCCicode.c: made geniCodeCast() static
5342         replaced SPEC_ by IS_ (cosmetic)
5343         (operandOperation): fixed div and mod operation
5344         (usualBinaryConversions): added support for promotion of char
5345         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
5346         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
5347         (geniCodeAdd): an array index will stay unsigned, even if promoted
5348         from char to int
5349         (geniCodeArray): ditto
5350         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
5351         * src/SDCCsymt.c (computeType): added more support for char;
5352         promotion of char is selectable by promoteCharToInt, fixed signedness
5353         for all cases
5354         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5355         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5356         * src/SDCCval (val*): replaced signedness calculation by
5357         computeType()
5358         rearranged if-branches (cosmetic)
5359         (valShift): added warning W_SHIFT_CHANGED
5360         (valCompare): fixed problem with different types
5361         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
5362         * support/regression/tests/literalop.c: added many cases
5363         * support/regression/tests/ast_constant_folding.c: changed finally to
5364         'unsigned int'
5365         * .version: new year, new version: 2.3.7
5366         * src/SDCCmain.c (main): applied patch #866468
5367         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
5368         provided by Scott Bronson
5369         * doc/sdccman.lyx: updated documentation for sdcdb
5370         updated and added chapter tips
5371
5372 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5373
5374         * src/SDCCsymt.h: missing from yesterday's commits
5375
5376 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5377
5378         * src/SDCC.y (struct_or_union_specifier),
5379         * support/Util/SDCCerr.c,
5380         * support/Util/SDCCerr.h: verify that struct & union tags are used
5381         as declared.
5382
5383 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5384
5385         * src/SDCCglobl.h: missing from yesterday's commits
5386
5387 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5388
5389         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
5390         sft_attributes, struct_declaration, parameter_declaration,
5391         type_name, start_block, declaration_list),
5392         * src/SDCC.lex (check_type): support redefinition of typedef names
5393
5394 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5395
5396         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
5397         aligned xdata arrays. Erik helped me with the if clause.
5398
5399 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5400
5401         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
5402         warning
5403
5404 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5405
5406         * src/SDCCast.h,
5407         * src/SDCCast.c (newAst_),
5408         * src/SDCCicode.h,
5409         * src/SDCCicode.c (ast2iCode, newiCode),
5410         * src/SDCCglobl.h,
5411         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
5412         expr, statement, expression_statement, selection_statement,
5413         iteration_statement, expr_opt, jump_statement): foundation for tracking
5414         sequence points
5415         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
5416         point code too)
5417
5418 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5419
5420         * support/Util/SDCCerr.c,
5421         * src/SDCCast.h,
5422         * src/SDCCast.c (createCase, createDefault, decorateType),
5423         * src/SDCClabel.c (labelUnreach),
5424         * src/SDCC.y (labeled_statement, jump_statement): More improvements
5425         to error messages.
5426         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
5427         (with thanks to Stas Sergeev)
5428         * device/include/time.h,
5429         * device/lib/time.c (CheckTime): suppress unreachable code warning
5430
5431 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5432
5433         * src/SDCCast.c (createIvalCharPtr),
5434         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
5435         bug #753752)
5436         * support/regression/tests/nullstring.c: tests for these two bugs
5437
5438 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5439
5440         * support/Util/SDCCerr.h,
5441         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
5442         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
5443         about storage class and 'at' used inside struct or union
5444         * src/SDCCBBlock.c (iCodeFromeBBlock),
5445         * src/SDCCcse.c (ifxOptimize),
5446         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
5447         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
5448         printIval, emitStaticSeg, emitOverlay),
5449         * src/SDCClabel.c (deleteIfx),
5450         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
5451         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
5452         gatherAutoInit, processParms),
5453         * support/Util/SDCCerr.h,
5454         * support/Util/SDCCerr.c (werrorfl): Support for better error location
5455         reporting for post-parse errors.
5456
5457 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5458
5459         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
5460         implicit casts via union; they don't work on big endian systems
5461         (possible fix for bug #861138)
5462
5463 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5464
5465         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
5466         * src/mcs51/main.c: fixed the fix for bug #737001
5467
5468 2003-12-15  Borut Razem <borut.razem AT siol.net>
5469
5470         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
5471
5472 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5473
5474         * support/makebin/makebin.c: put output in binary mode
5475
5476 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5477
5478         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
5479         xdata and data memory on startup. Set the environment variable
5480         SDCC_NOGENRAMCLEAR to disable this.
5481         * src/mcs51/peephole.def,
5482         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
5483         (allows non-interrupt and interrupt code to safely compete for a resource
5484         without the non-interrupt code having to disable interrupts)
5485
5486 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5487
5488         * src/SDCCicode.c (geniCodeAdd),
5489         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
5490         with valFromType if type might be a pointer and host is big endian).
5491         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
5492         types, not just integer types.
5493         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
5494         multiply defined with mismatching "at" address.
5495
5496 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5497
5498         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
5499         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
5500         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
5501         with embedded nulls (fixed bug #753752)
5502
5503 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5504
5505         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
5506         Apparently this did not see much testing (endless loop)
5507
5508 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5509
5510         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
5511
5512 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5513
5514         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
5515         gracefully handle NULL memmap pointers
5516
5517 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5518
5519         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
5520         instead of deleting the iCode when an operand is volatile
5521         * src/z80/gen.c (genDummyRead),
5522         * src/mcs51/gen.c (genDummyRead),
5523         * src/ds390/gen.c (genDummyRead),
5524         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
5525         not just IC_RIGHT
5526         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
5527         * src/SDCC.y: fixed bug #850420
5528
5529 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5530
5531         Applied z80 i/o port patch from Peter Townson and fixed some operators
5532         to better handle operands in A register.
5533         * device/include/z180.h
5534         * src/SDCC.y
5535         * src/SDCCglue.c
5536         * src/z80/gen.c
5537         * src/z80/gen.h
5538         * src/z80/main.c
5539         * src/z80/peeph-z80.def
5540         * src/z80/peeph.def
5541         * src/z80/z80.h
5542
5543 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5544
5545         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
5546
5547 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5548
5549         * device/lib/hc08/_mullong.c: Removed extra #endif
5550
5551 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5552
5553         * sim/ucsim/hc08.src/inst.cc,
5554         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
5555         carries from x to h
5556         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
5557         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
5558         * device/include/stdarg.h: fixed varargs for hc08
5559         * device/lib/Makefile.in,
5560         * device/lib/hc08/Makefile,
5561         * device/lib/hc08/_mulint.c,
5562         * device/lib/hc08/_mullong.c: fixed some endian problems
5563
5564 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5565
5566         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
5567         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
5568         * device/lib/_gptrget.c,
5569         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
5570
5571 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5572
5573         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
5574         * src/SDCCast.c (astErrors): fixed bug #846007
5575         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
5576
5577 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5578
5579         * src/SDCCast.c (decorateType): disabled a transformation I added in
5580         revision 1.188 (access to fields of a structure at an absolute address);
5581         it breaks with bitfields, extern declarations, and gcse analysis.
5582         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
5583         could be assigned through a pointer, so don't complain.
5584         * src/SDCCast.c (astErrors),
5585         * src/SDCCast.h,
5586         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
5587
5588 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
5589
5590         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
5591         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
5592         output of __config directives, since gpasm now supports them
5593         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
5594         pre-processor macro, i.e. -DMCU=p18f452
5595         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
5596         and modified to handle 'cast' icode similarly to '=' icode
5597         * src/pic16/device.h (typedef struct PIC_device): added field
5598         'extMIface' to indicate that chip has external memory interface
5599         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
5600         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
5601         18F8720
5602
5603 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5604
5605         * src/SDCC.y (pointer): fixed bug #846006
5606         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
5607         * src/SDCCast.c (decorateType): fixed bug #846009
5608         * src/ds390/peeph.def,
5609         * src/ds390/gen.c (genAnd, genOr),
5610         * src/mcs51/peeph.def,
5611         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
5612
5613 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5614
5615         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
5616         * src/SDCCdflow.c
5617         * src/SDCCcse.c
5618         * src/SDCCcse.h
5619         * src/SDCCBBlock.h
5620         * src/SDCCBBlock.c
5621
5622 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
5623
5624         fixed bug #845089
5625         * src/SDCCbitv.h,
5626         * src/SDCCbitv.c: added function to free a bitvector
5627         * src/SDCClrange.h,
5628         * src/SDCClrange.c: added function to recompute the liveranges
5629         * src/avr/ralloc.c,
5630         * src/ds390/ralloc.c,
5631         * src/hc08/ralloc.c,
5632         * src/mcs51/ralloc.c,
5633         * src/pic/ralloc.c,
5634         * src/pic16/ralloc.c,
5635         * src/xa51/ralloc.c,
5636         * src/z80/ralloc.c: recompute the liveranges after register packing
5637
5638 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
5639
5640         * src/SDCCloop.c (newInduction): fixed bug #845630
5641
5642 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5643
5644         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
5645         inadvertantly left behind from my 2003-11-12 change
5646
5647 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5648
5649         Updated headers I neglected to commit yesterday.
5650         * src/SDCClrange.h,
5651         * src/SDCCicode.h
5652
5653 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5654
5655         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
5656         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
5657         * src/SDCCopt.c (eBBlockFromiCode),
5658         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
5659         the creation of the key hash table from the sequencing so it can be used
5660         earlier (for some GCSE bug fixes still pending)
5661
5662 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5663
5664         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
5665         * support/regression/tests/addsub.c: testing genPlus shortcut
5666
5667 2003-11-15  Borut Razem <borut.razem AT siol.net>
5668
5669         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
5670
5671 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5672
5673         * src/SDCCcse.c (cseBBlock): fixed bug #527779
5674         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
5675         ordering is immaterial.
5676         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
5677
5678 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5679
5680         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
5681         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
5682         (SIGSEV) of bug #840381
5683         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
5684         unlink new file before rename if new and old filenames are the same)
5685
5686 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5687
5688         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
5689         uninitialized variables) for the mcs51. Set environment variable
5690         SDCC_GENRAMCLEAR to test.
5691         xdata initialization slightly shorter
5692
5693 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5694
5695         * src/SDCCsymt.h,
5696         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
5697         #838241 & 780691 (basicly the same bug)
5698         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
5699         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
5700
5701 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
5702
5703         * src/SDCCmain.c (linkEdit): "fix" #834252
5704
5705 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5706
5707         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
5708         * src/SDCCast.h,
5709         * src/SDCC.y: fixed bug #819403
5710
5711 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5712
5713         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
5714         the reentrant attribute.
5715         * src/hc08/gen.c (genPackBits): added missing stack readjustment
5716         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
5717         simulation
5718         * src/SDCCast.c (decorateType): fixed bug with storage class not being
5719         updated during pointer dereference; f.e. ~(((char *)1)*) was being
5720         erroneously reduced to a literal.
5721         * src/hc08/ralloc.c (packRegisters, rematStr),
5722         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
5723         some cases
5724
5725 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5726
5727         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
5728         * doc/sdccman.lyx: changed from 'article' to 'book'
5729         * doc/Makefile: readded test_suite_spec and cdbfileformat
5730
5731 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
5732
5733         * device/include/stdlib.h: include malloc.h to comply with ANSI
5734         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
5735
5736 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5737
5738         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
5739         * doc/clean.mk: also remove *.out files
5740         * doc/sdccman.lyx: some additions, larger top/bottom margins
5741
5742 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5743
5744         * src/SDCC.y: fixed bug #837365
5745         * support/regression/tests/bitopcse.c
5746         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
5747         a symbol (might be valop instead)
5748         * device/lib/Makefile.in: added errno.c to HC08SOURCES
5749         * device/lib/clean.mk: added hc08 to the cleaning list
5750
5751 2003-11-04  Borut Razem <borut.razem AT siol.net>
5752
5753         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
5754           made 2003-11-04
5755         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
5756           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
5757           malloc is declared in standard stdlib.h
5758
5759 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5760
5761         * device/lib/hc08/Makefile: need to clean .rel not .o files
5762         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
5763
5764 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5765
5766         * src/port.h,
5767         * src/hc08/main.c,
5768         * src/mcs51/main.c,
5769         * src/ds390/main.c,
5770         * src/z80/main.c,
5771         * src/avr/main.c,
5772         * src/pic/main.c,
5773         * src/pic16/main.c,
5774         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
5775         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
5776         tests (which uses the port's oclsExpense function)
5777         * src/SDCC.y,
5778         * src/SDCCast.c,
5779         * src/SDCCicode.c,
5780         * src/hc08/gen.c,
5781         * src/ds390/gen.c,
5782         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
5783
5784 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5785
5786         * src/SDCCcse.c (ifxOptimize),
5787         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
5788         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
5789         deleting the IFX iCode.
5790         * src/hc08/ralloc.c: reduced unneeded slocs
5791         * src/hc08/gen.c: fixed bug in asmopToBoolean
5792
5793 2003-11-04  Borut Razem <borut.razem AT siol.net>
5794
5795         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
5796           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
5797           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
5798           transferred to configure
5799
5800 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
5801
5802         Use headers defined in the C[++] standards:
5803         * sim/ucsim/gui.src/serio.src/fileio.cc
5804         * sim/ucsim/gui.src/serio.src/frontend.cc
5805         * sim/ucsim/gui.src/serio.src/main.cc
5806         * sim/ucsim/gui.src/serio.src/posix_signal.cc
5807         * support/Util/NewAlloc.c
5808         * as/hc08/lklibr.c
5809         * as/mcs51/lklibr.c
5810         * as/z80/aslist.c
5811         * as/z80/assym.c
5812
5813 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5814
5815         * Added MSVC projects for hc08 assembler and linker:
5816         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
5817         /as/hc08/link_hc08.dsp
5818
5819 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
5820
5821         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
5822
5823 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
5824
5825         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
5826
5827 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5828
5829         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
5830
5831 2003-10-31  Borut Razem <borut.razem AT siol.net>
5832
5833         * support/cpp2/cpplib.h,
5834           support/cpp2/cpplib.c,
5835           support/cpp2/cpplex.c,
5836           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
5837           to switch _asm block preprocessing on / off. Default is
5838           #pragma preproc_asm +
5839
5840 2003-10-31  Borut Razem <borut.razem AT siol.net>
5841
5842         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
5843           when outputting comment blocks (when executed with -C option) and
5844           _asm (SDCPP specific) blocks
5845
5846 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5847
5848         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
5849
5850 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
5851
5852         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
5853
5854 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
5855
5856         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
5857         * src/SDCCast.c (decorateType): fixed bug #832664
5858
5859 2003-10-31  Borut Razem <borut.razem AT siol.net>
5860
5861         * support\cpp2\cpplex.c: fixed for SDCPP:
5862           comments(when executed with -C option) and _asm blocks
5863           were included even if they where in skipped #if block.
5864           Applied solution from GCC cpp 3.3.2
5865
5866 2003-10-31  Borut Razem <borut.razem AT siol.net>
5867
5868         * src/SDCC.lex: sdcc now understands both formats:
5869           '# <line_number> <file_name>' and
5870           '#line <line_number> <file_name>'
5871         * support/cpp2/cppmain.c: sdcpp now generates the standard
5872           '# <line_number> <file_name>' instead of former
5873           '#line <line_number> <file_name>'
5874
5875 2003-10-30  Borut Razem <borut.razem AT siol.net>
5876
5877         * support/cpp2/cpphash.h,
5878         * support/cpp2/cpplib.h
5879         * support/cpp2/cpplex.c,
5880         * support/cpp2/cppmain.c,
5881         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
5882
5883 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5884
5885         Fixed a number of problems revealed by bug #827883.
5886         * src/SDCCloop.c (loopInvariants): Spill location of the
5887         result operand should be recomputed if extracted from
5888         a loop. Also, don't extract assignments of an iTemp
5889         from a literal.
5890         * src/SDCCast.c (isConformingBody): loop reversal should
5891         not occur if the control variable is involved with a
5892         relational operator.
5893
5894 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
5895
5896         * .version: bumped to 2.3.6 to reflect the big improvements
5897         made by Erik and Klaus. Thanks!
5898
5899 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
5900
5901         Replaced the livrange code.
5902         * src/SDCClrange.c: added new LR code
5903         * src/SDCCloop.c,
5904         * src/SDCCBBlock.h: removed remainig parts from old LR code
5905         * src/ds390/ralloc.c,
5906         * src/ds390/gen.c: minor fixes to make it work with new code
5907
5908 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5909
5910         * as/hc08/asm.h,
5911         * as/hc08/lkrloc.c,
5912         * src/hc08/gen.c,
5913         * src/hc08/ralloc.c: Fix various warnings related to the hc08
5914         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
5915         (tweaked fix for bug #818696)
5916
5917 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5918
5919         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
5920
5921 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5922
5923         * src/SDCCmain.c,
5924         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
5925         * src/mcs51/gen.c (gencjneshort),
5926         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
5927         more efficient (per Scott Bronson's suggestion)
5928
5929 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5930
5931         Extended the semantics of the critical keyword to include
5932         individual statements. See RFE #827755 and #799831
5933         * src/SDCC.y
5934         * src/SDCCicode.c
5935         * src/SDCCopt.c
5936         * src/SDCCast.c
5937         * support/Util/SDCCerr.c
5938         * support/Util/SDCCerr.h
5939         * src/mcs51/gen.c
5940         * src/ds390/gen.c
5941         * src/hc08/gen.c
5942
5943 2003-10-19  Borut Razem <borut.razem AT siol.net>
5944
5945         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
5946
5947 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5948
5949         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
5950         Fixed bug #818696
5951         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
5952         and predecrement operand is displayed
5953
5954 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
5955
5956         * src/SDCCval.c (valMinus): fixed bug #826041
5957
5958 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5959
5960         Some hc08 related updates that I missed earlier
5961         * sim/ucsim/stypes.h
5962         * support/regression/ports/hc08/spec.mk
5963
5964 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5965
5966         New target "hc08" for the Motorola 68hc08 family of micros
5967
5968         * configure
5969         * configure.in
5970         * Makefile
5971         * src/hc08/*
5972         * src/SDCCmain.c
5973         * src/port.h
5974         * sim/ucsim/hc08.src/*
5975         * sim/ucsim/configure.in
5976         * src/ucsim/configure
5977         * sim/ucsim/packages_in.mk
5978         * as/hc08/*
5979         * as/Makefile
5980         * device/include/mc68hc908qy.h
5981         * device/lib/hc08/*
5982         * device/lib/Makefile.in
5983         * support/regression/ports/hc08/*
5984         * support/regression/Makefile
5985
5986 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5987
5988         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
5989         regression test
5990         * src/ds390/gen.c (genCast): fixed bug #821957
5991
5992 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
5993
5994         * device/lib/logf.c: "fixed" overlay bug
5995         * support/regression/ports/host/spec.mk: added m library
5996         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
5997         * support/regression/tests/float_trans: added (for Eric)
5998
5999 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
6000
6001         * src/mcs51/gen.c (genCpl): fixed bug
6002         http://sf.net/mailarchive/message.php?msg_id=6263915
6003
6004 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
6005
6006         * src/SDCCast.c (decorateType): added extended constant folding
6007         * src/SDCCsymt.c (computeType): cleanup
6008         * src/SDCCval.c (valShift): minor optimization
6009         * support/regression/tests/ast_constant_folding.c: added
6010
6011 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6012
6013         * src/SDCCmain.c: removed some unintended changes
6014
6015 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6016
6017         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
6018         * src/z80/gen.c: fixed part of bug #817589
6019         * src/SDCCsymt.c (checkFunction): fixed bug #817895
6020
6021 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
6022
6023         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
6024         * src/SDCCcflow.c
6025         * src/SDCCcse.c
6026         * src/SDCCdflow.c
6027         * src/SDCClabel.c
6028         * src/SDCClrange.c
6029         * src/SDCCmem.c
6030         * src/SDCCopt.c
6031         * src/SDCCpeeph.c
6032         * src/SDCCset.c
6033         * src/avr/ralloc.c
6034         * src/ds390/ralloc.c
6035         * src/izt/ralloc.c
6036         * src/mcs51/ralloc.c
6037         * src/pic/ralloc.c
6038         * src/pic16/ralloc.c
6039         * src/xa51/ralloc.c
6040         * src/z80/ralloc.c
6041         * src/z80/gen.c: removed unused label "release:"
6042
6043 2003-10-06  Borut Razem <borut.razem AT siol.net>
6044
6045         * src/SDCC.lex: removed definition of unused variables
6046           save_optimize and save_options
6047
6048 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
6049
6050         * clean.mk: removed '=' in "-maxdepth=1"
6051         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
6052         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
6053
6054 2003-10-06  Borut Razem <borut.razem AT siol.net>
6055
6056         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
6057           my_unput() replaced by unput()
6058
6059 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
6060
6061         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
6062         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
6063         type-punned pointer will break strict-aliasing rules"
6064         Old LR behaviour is again default; Klaus' LR can be choosen by
6065         defining the environment variable LRKLAUS
6066         * src/SDCCBBlock.h
6067         * src/SDCCloop.c
6068         * src/SDCClrange.c
6069         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
6070         * clean.mk: fixed removal of files in bin/CVS/
6071         * device/lib/clean.mk: fixed removal of directories small and large
6072         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
6073         * src/SDCCicode.c,
6074         * src/SDCCval.c: removed superflous test for pedantic
6075
6076 2003-10-05  Borut Razem <borut.razem AT siol.net>
6077
6078         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
6079           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
6080           message "unmatched #pragma SAVE and #pragma RESTORE"
6081
6082 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6083
6084         * doc/sdccman.lyx: various additions and updates (interrupts, inline
6085           assembly, critical functions, atomic, nojtbound)
6086
6087 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
6088
6089         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
6090         * src/SDCCBBlock.h
6091         * src/SDCCloop.c
6092         * src/SDCCloop.h
6093         * src/SDCClrange.c
6094
6095 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6096
6097         * src/z80/gen.h,
6098         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6099         * src/mcs51/gen.h
6100         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6101         * src/ds390/gen.h
6102         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6103         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
6104         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
6105
6106 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6107
6108         * src/z80/gen.c (genRet): fixed bug #524753
6109         * src/z80/gen.c (genCast): fixed internal error on cast from
6110         pointer to long
6111         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
6112         fix for bug #477835 to the z80
6113         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
6114         for tracking iCodes in the peephole optimizer for z80
6115
6116 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6117
6118         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
6119         the other part of bug #814548
6120         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
6121
6122 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
6123
6124         * src/SDCCcse.c: fixed part of bug #814548
6125
6126 2003-09-28  Borut Razem <borut.razem AT siol.net>
6127
6128         * src/asm.c: rewrite of printILine() to use temporary file instead
6129           a pipe
6130         * src/xa51/main.c: commented out declaration of int rewinds
6131
6132 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6133
6134         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
6135
6136 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6137
6138         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
6139         * src/asm.c (printILine): Fixed bug #811015
6140
6141 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6142
6143         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
6144         freeing.
6145
6146 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6147
6148         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
6149         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
6150         to correctly handle general case of AOP_PAIRPTR
6151         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
6152
6153 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6154
6155         * src/mcs51/ralloc.c (fillGaps),
6156         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
6157         register positioning bug)
6158
6159 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
6160
6161         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
6162
6163 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6164
6165         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
6166         genCodePointerGet, genGenPointerGet, genFarPointerSet,
6167         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
6168         (ralloc doesn't intentionally do this now, but perhaps later)
6169         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
6170         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
6171         register positioning bugs (Fixed bug #762602 and #795325)
6172         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
6173         (Fixed bug #808779)
6174         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
6175         lines that --i-code-in-asm generates
6176
6177 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6178
6179         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
6180         trying to fclose a FILE* that was already closed.
6181
6182 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6183
6184         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
6185         of const struct should be treated as if const themselves)
6186
6187 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
6188
6189         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
6190
6191 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6192
6193         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
6194         Unix (/n) and DOS (/r/n) line terminations.
6195
6196 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6197
6198         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
6199         bug #613775
6200
6201 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6202
6203         * src/mcs51/gen.c (genFunction, genEndFunction),
6204         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
6205         and restore of EA so that stack offsets to parameters are
6206         correct when using both critical and reentrant/stack-auto.
6207         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
6208         size (can be triggered in error if sloc is shared between
6209         different sized objects)
6210         * device/include/float.h: fixed macros to explicitly use
6211         unsigned long where needed
6212
6213 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
6214
6215         Feature req. 799831: added code to allow nesting of critical functions
6216         * src/mcs51/gen.c (genFunction, genEndFunction)
6217         * src/ds390/gen.c (genFunction, genEndFunction)
6218
6219 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6220
6221         * src/SDCCsymt.c (sclsFromPtr),
6222         * src/SDCCsymt.h,
6223         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
6224         support for standard C idiom of memory mapped variables; for
6225         example, *((xdata int*)0x1234) = 1 is now internally equivalent
6226         to xdata int at 0x1234 tempvar = 1.
6227         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
6228         provided by Akiya ISHIDA
6229
6230 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
6231
6232         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
6233         * src/SDCCval.c (constVal): added reduction from int to char
6234         * src/SDCCval.c (valMult, valDiv): fixed sign handling
6235         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
6236         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
6237         to ignore the sign
6238         * support/regression/tests/shifts.c: fixed
6239
6240 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6241
6242         * src/z80/gen.c (genXor): Fixed bug #805445
6243
6244 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6245
6246         Fixed bug #621531 (const & volatile confusion in the type chain).
6247         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
6248         refer to the const or volatile state of the pointer itself.
6249
6250         * src/SDCCast.c
6251         * src/SDCCglue.c
6252         * src/SDCCicode.c
6253         * src/SDCCsymt.c
6254         * src/SDCCval.c
6255         * src/SDCC.y
6256         * src/SDCCsymt.h
6257         * src/pic/gen.c
6258         * src/pic/ralloc.c
6259         * src/pic16/gen.c
6260         * src/pic16/ralloc.c
6261         * support/regression/tests/const.c
6262
6263 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6264
6265         When checking for duplicated modules, use absolute paths
6266         instead of relative paths.  Files changed:
6267
6268         * as/mcs51/lklib.c
6269         * link/z80/lklib.c
6270
6271 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6272
6273         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
6274
6275 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6276
6277         * device/include/string.h: added size_t typedef, changed
6278         prototypes to use size_t, eliminated separate reentrant and
6279         non-reentrant declarations, added _memmove declaration
6280         * device/lib/_memcpy.c: changed to use size_t instead of int,
6281         changed /4 to >>2 to avoid division library call
6282         * device/lib/_memcmp.c,
6283         * device/lib/_memset.c,
6284         * device/lib/_strncat.c,
6285         * device/lib/_strncpy.c,
6286         * device/lib/_strncmp.c: changed to use size_t instead of int
6287         * device/lib/_memmove.c: new file (fixed bug #772294)
6288         * device/lib/Makefile.in: added _memmove.c
6289         * device/lib/z80/asm_strings.s: fixed bug #772290
6290         * support/regression/tests/bitfields.c: attempt to fix host assertion
6291         failure on amd64-unknown-linux2.2
6292
6293 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6294
6295         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
6296         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
6297         * as/z80/asmain.c (main): fixed bug #801766
6298
6299 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
6300
6301         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
6302         compilers
6303
6304 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6305
6306         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
6307         reported in bug #800609
6308
6309 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
6310
6311         * Top header beautifications in src/pic16 directory:
6312           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
6313           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
6314           pcoderegs.h, ralloc.c, ralloc.h
6315         * main.c: added top header and GPL license notice
6316         * pcode.c: fixed the if-conditional warning
6317
6318 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
6319
6320         * device/lib/_mullong.c: replaced int by short for gcc
6321
6322 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6323
6324         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
6325         and JUMPTABLE iCodes properly now (worked by accident before)
6326         * src/mcs51/gen.c (leftRightUseAcc),
6327         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
6328         iCode properly now. Use getSize instead of nRegs since a & b
6329         aren't part of the nRegs tally.
6330
6331 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
6332
6333         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
6334         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
6335           before instructions that use the _STATUS register
6336
6337 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
6338
6339         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
6340         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
6341         fetching of the pointer
6342         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
6343         copied from genNearPointerSet()
6344         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
6345         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
6346         If they pop r0/r1 they must be called in the opposite order than aopOp().
6347         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
6348         (resp. --stack-auto), prepared for --xstack
6349
6350 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6351
6352         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
6353
6354 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
6355
6356         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
6357         these ports have their own __sdcc_external_start()
6358
6359 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
6360
6361         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6362         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
6363         type for bits was changed. It resulted in bit variables becoming
6364         global, which is not permitted in PIC 14 assembly output.
6365
6366 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6367
6368         * doc/sdccman.lyx: various additions and updates. Rearranged sections
6369
6370 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6371
6372         Z80 and MCS51 linkers complaint if a public symbol is defined
6373         in more than one library module:
6374
6375         * as/mcs51/lklib.c
6376         * link/z80/lklib.c
6377         * as/mcs51/Makefile.in
6378
6379 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6380
6381         A few small changes that speed up the peephole optimizer.
6382
6383         * src/SDCCpeeph.c
6384
6385 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6386
6387         Try to make the peephole optimizer smarter by maintaining
6388         an association between the assembly source code and the
6389         iCodes that originated them. Put this information to use
6390         with a new peephole rule condition "notVolatile" so that
6391         the rules can be aggressive yet still safe.
6392
6393         * src/SDCCpeeph.c
6394         * src/SDCCpeeph.h
6395         * src/mcs51/gen.c
6396         * src/mcs51/peeph.def
6397
6398 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6399
6400         Fixed bug #741761
6401
6402         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
6403         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
6404         if the left or right operand symbols have the accuse flag set.
6405
6406 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6407
6408         Changed the type of the result of the ! (NOT) operator to char;
6409         previously it returned the same type as the source. This allows
6410         us to eliminate all the genFloatNot functions (all of its target
6411         implementations were very buggy) since !float can use the same
6412         code as !long now.
6413
6414         * src/SDCCicode.c (ast2iCode): ! returns char
6415         * src/mcs51/gen.c (genNot, genNotFloat),
6416         * src/ds390/gen.c (genNot, genNotFloat),
6417         * src/z80/gen.c (genNot, genNotFloat),
6418         * src/pic/gen.c (genNot, genNotFloat),
6419         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
6420
6421 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
6422
6423         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6424         1. Interrupt would not compile properly. Ensure PCLATH register is saved
6425            during interrupts. Ensure WSAVE is located at a shared bank address.
6426         2. Fixed page selection in some places
6427         3. Fixed BTFSS/C to where necessary use registers directly and not simply
6428            the registers name strings.
6429         4. Fixed "signed / unsigned compare" compiler warnings.
6430         5. The PIC port manages its own allocation of the general purpose
6431            registers, but makes no attempt to reuse them. As a result when
6432            compiling it soon runs out of general purpose registers. Some
6433            additional code was added to the files pcode.c and device.c to walk
6434            through the function call tree and rename the registers so that they
6435            get reused.
6436
6437         * src/pic/device.c
6438         * src/pic/gen.c
6439         * src/pic/glue.c
6440         * src/pic/pcode.c
6441         * src/pic/pcode.h
6442         * src/pic/ralloc.c
6443         * src/pic/ralloc.h
6444         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
6445         genPlus() & genMinus() when the result is the same as left or right
6446
6447 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6448
6449         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
6450
6451 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6452
6453         Made bitfield a distinct type from bit so that bitfields
6454         convert as per ANSI C and bits retain their traditional
6455         boolean style behaviour. Implemented bitfield support in
6456         the z80 port.
6457
6458         * src/SDCCsymt.h,
6459         * src/SDCCsymt.c,
6460         * src/SDCCast.c,
6461         * src/cdbFile.c,
6462         * src/mcs51/gen.c,
6463         * src/ds390/gen.c: bit v bitfield split
6464         * src/z80/gen.c: New support for bitfields
6465         * support/regression/tests/bitfields.c: reenabled z80,
6466         added more tests
6467
6468 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6469
6470         Rules 246.x, 247.x relate to bitfields, the others speed up
6471         access to xdata mapped I/O devices.
6472
6473         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
6474
6475 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6476
6477         Cleaned up genPackBits and genUnpackBits and added two helper
6478         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
6479         for literal assignments in genPackBits (thanks to Frieder for
6480         reminding me).
6481
6482         * src/mcs51/gen.c
6483         * src/ds390/gen.c
6484
6485 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6486
6487         Fixed bug #748310 (pointer to function type mishandled when the
6488         function name is omitted). Also fixed a SIGSEGV when a function
6489         attribute (reentrant, etc) is used on a non-function or on a
6490         function but misplaced before the parameter list.
6491
6492         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
6493         bug #748310
6494         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
6495         * support/Util/SDCCerr.h,
6496         * support/Util/SDCCerr.c: Added func attr misuse error msg
6497
6498 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
6499
6500         Fixed bug #787649 by anonymous
6501         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
6502         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
6503
6504 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6505
6506         Fixed numerous bitfield problems.
6507
6508         * src/SDCC.y: More bitfield related error checking
6509         * src/SDCCsymt.h,
6510         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
6511         * support/Util/SDCCerr.h,
6512         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
6513         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
6514         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
6515         * support/regression/tests/bitfields.c: tests added
6516
6517 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6518
6519         Made the constant following the "interrupt" keyword optional. If
6520         omitted, the function will not automatically be given an entry
6521         in the interrupt vector table (similar to #pragma NOIV, but
6522         less syntacticly kludgy). The interrupt number is also now
6523         range checked. Also fixed a bug in the high order bit example
6524         in the manual.
6525
6526         * src/SDCC.y
6527         * src/SDCCmem.c
6528         * src/SDCCglue.c
6529         * src/SDCCsymt.h
6530         * support/Util/SDCCerr.c
6531         * support/Util/SDCCerr.h
6532         * doc/sdccman.lyx
6533
6534 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
6535
6536         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
6537         * src/SDCCicode.c (operandOperation): rewritten some ops
6538         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
6539         * src/SDCCsymt.c (computeType): literals are handled the same way as any
6540         other type
6541         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
6542         be re-activated by defining REDUCE_LITERALS)
6543         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
6544         unsigned, but are signed by default
6545         * src/SDCCval.c (constVal): rearranged
6546         * src/SDCCval.c (valMod): preliminary fix
6547         * src/SDCCval.c (valCastLiteral): use TYPE_* types
6548         * support/regression/literalop.c: added, work in progress
6549
6550 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6551
6552         Generate warnings for useless declarations like "char data;"
6553         that don't do what new users expect.
6554
6555         * src/SDCC.y
6556         * support/Util/SDCCerr.h
6557         * support/Util/SDCCerr.c
6558
6559 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
6560
6561         * src/SDCCval.c (valMult): fix overflow detection of negative int
6562
6563 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6564
6565         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
6566
6567         Changes to support big endian targets:
6568
6569         * src/ports.h
6570         * src/SDCCglue.c
6571         * src/avr/main.c
6572         * src/ds390/main.c
6573         * src/izt/i186.c
6574         * src/mcs51/main.c
6575         * src/pic/main.c
6576         * src/pic16/main.c
6577         * src/xa51/main.c
6578         * src/z80/main.c
6579
6580 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
6581
6582         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
6583         * device/lib/time.c: fixed warning "integer overflow in expression"
6584
6585 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
6586
6587         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
6588         * src/SDCCval.c (constVal): changed default to signed; hex and octal
6589         constants are unsigned; added recognition of "u" flag for unsigned
6590         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
6591         * src/SDCCval.c (valDiv, valMod): fixed signdness
6592         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
6593         signedness of modulo, left and right shift
6594         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
6595         * support/Util/SDCCerr.h: added warning W_INT_OVL
6596         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
6597         * src/SDCCast.c (ast_print): improved output of constants
6598
6599 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6600
6601         Fixed some warnings when building with MSVC:
6602
6603         * as\mcs51\asdata.c
6604         * as\z80\asdata.c
6605         * as\mcs51\asm.h
6606         * as\z80\asm.h
6607         * link\z80\aslink.h
6608         * link\z80\lkdata.c
6609         * link\z80\lkeval.c
6610         * link\z80\lkgb.c
6611         * link\z80\lkihx.c
6612         * link\z80\lks19.c
6613         * link\z80\lksym.c
6614         * support\cpp2\cpplib.c
6615         * src\ds390\gen.c
6616         * src\mcs51\gen.c
6617
6618 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
6619
6620         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
6621
6622 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6623
6624         * support\librarian\clean.mk: Do not remove Makefile.
6625         * support\librarian\Makefile: added.
6626
6627 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6628
6629         Added librarian to MSVC build:
6630         * all.dsp
6631         * sdcc.dsw
6632         * support\librarian\librarian.dsp
6633
6634         'configure' not needed for librarian, removed:
6635         * support\librarian\configure
6636         * support\librarian\configure.in
6637         * support\librarian\config_in.h
6638         * support\librarian\Makefile.in
6639
6640         Hopefully these ones built the librarian and the rest of sdcc properly:
6641         * Makefile
6642         * Makefile.common.in
6643
6644         Messed up 'configure', so revert to previous version:
6645         * configure
6646         * configure.in
6647
6648 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
6649
6650         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
6651         there, while the mantissa of a double is "only" 53 bits wide.
6652
6653 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6654
6655         Adding sdcclib to the build.  MSVC project coming soon.
6656         Files added/changed:
6657
6658         * support\librarian\clean.mk
6659         * support\librarian\configure
6660         * support\librarian\configure.in
6661         * support\librarian\config_in.h
6662         * support\librarian\Makefile.bcc
6663         * support\librarian\Makefile.in
6664         * support\librarian\sdcclib.c
6665         * Makefile.bcc
6666         * Makefile
6667         * Makefile.common.in
6668         * configure
6669         * configure.in
6670
6671 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6672
6673         Linker now complaints if linked modules have conflicting options, for
6674         example, one compiled using --model-large and another one compiled with
6675         --model-small.  The following files were modified:
6676
6677         * as\mcs51\asdata.c
6678         * as\mcs51\aslink.h
6679         * as\mcs51\asm.h
6680         * as\mcs51\asmain.c
6681         * as\mcs51\asout.c
6682         * as\mcs51\i51pst.c
6683         * as\mcs51\lkdata.c
6684         * as\mcs51\lklibr.c
6685         * as\mcs51\lkmain.c
6686         * as\z80\asdata.c
6687         * as\z80\asm.h
6688         * as\z80\asmain.c
6689         * as\z80\asout.c
6690         * as\z80\z80pst.c
6691         * link\z80\aslink.h
6692         * link\z80\lkdata.c
6693         * link\z80\lklibr.c
6694         * link\z80\lkmain.c
6695         * src\SDCCglue.c
6696
6697 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6698
6699         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
6700         as/mcs51/lklibr.c: Generate a warning when a library is not found.
6701
6702 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
6703
6704         * src/z80/mappings.i: fix _mul[us][int,long] entries
6705
6706 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6707
6708         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
6709
6710 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
6711
6712         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
6713         * support/regression/tests/bitopcse.c: added
6714         fixed warning:
6715         * src/avr/gen.c:
6716         * src/pic/gen.c:
6717         * src/pic16/gen.c:
6718         * src/z80/gen.c:
6719         * src/xa51/gen.c:
6720
6721 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6722
6723         added support for new library format to z80, gbz80 linkers:
6724         *link/z80/aslink.h
6725         *link/z80/lklex.c
6726         *link/z80/lklib.c
6727         *link/z80/lklist.c
6728
6729 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
6730
6731         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
6732         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
6733
6734 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
6735
6736         added DUMMY_READ_VOLATILE:
6737         * src/SDCC.y:
6738         * src/avr/gen.c:
6739         * src/xa51/gen.c:
6740         * src/z80/gen.c:
6741         * src/pic/gen.c:
6742         * src/pic16/gen.c:
6743         * src/mcs51/gen.c:
6744         * src/ds390/gen.c:
6745         * src/SDCCcse.c (algebraicOpts): many improvements
6746         * src/SDCCcse.h: removed algebraicOpts()
6747         * src/SDCCicode.c (picDummyRead): added
6748
6749 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6750
6751         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
6752         "Insufficient space in data memory".
6753
6754 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6755
6756         * src/mcs51/gen.c: fixed bug #771358
6757         * src/z80/gen.c: fixed bug #759087
6758
6759 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
6760
6761         * src/pic16/glue.c: minor cleanup by Vangelis
6762
6763 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6764
6765         * device/include/regc515c.h: fixed #758477
6766         * device/lib/_gptrget.c: saving some cycles in generic pointer get
6767         * device/lib/_gptrput.c: saved a few bytes
6768         * my tab spacing is 8, yours too?)
6769         * device/lib/_ser.c: process RX bytes earlier than TX bytes
6770         * device/lib/serial.c: process RX bytes earlier than TX bytes
6771         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
6772
6773 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6774
6775         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
6776
6777 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6778
6779     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
6780
6781 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
6782
6783         * device/lib/Makefile.in: bad fix, reverted to 1.43
6784
6785 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
6786
6787         * device/lib/Makefile.in: added missing z80 object files
6788
6789 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
6790
6791         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
6792         pic16 progress by Vangelis:
6793         * src/SDCCglobl.h:
6794         * src/SDCCmain.c:
6795         * src/pic/Makefile:
6796         * src/pic:
6797         * pic/Makefile:
6798         * pic16/device.c:
6799         * pic16/device.h:
6800         * pic16/gen.c:
6801         * pic16/gen.h:
6802         * pic16/genarith.c:
6803         * pic16/glue.c:
6804         * pic16/main.c:
6805         * pic16/pcode.c:
6806         * pic16/pcode.h:
6807         * pic16/pcodepeep.c:
6808         * pic16/peeph.def:
6809
6810 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6811
6812     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
6813
6814 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6815
6816     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
6817     added gbz80 build to MSVC project.
6818     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
6819     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
6820     from 8051 stuff and setup so it links using a .lnk file.
6821
6822 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6823
6824     * support/librarian/sdcclib.c: sdcc librarian.
6825     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
6826     with sdcclib.
6827
6828 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6829
6830     * as/mcs51/lkmain.c: properly handle extensions in function afile.
6831
6832 2003-07-02  Borut Razem <borut.razem AT siol.net>
6833
6834         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
6835         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
6836         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
6837         src/xa51/main.c, src/z80/main.c:
6838         virtualization of glue() function: each port has it's own glue function,
6839         which is accessed by do_glue function pointer in PORT.general structure
6840
6841 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
6842
6843         * DS800C400 fun, improved ROM interface and tinibios.
6844
6845 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
6846
6847         * More support for DS80C400. Now includes beginning of interface to ROM.
6848
6849 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
6850
6851         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
6852
6853 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6854
6855         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
6856
6857 2003-06-19  Borut Razem <borut.razem AT siol.net>
6858
6859         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
6860
6861 2003-06-19  Borut Razem <borut.razem AT siol.net>
6862
6863         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
6864         fixed Z80 port - crt0.o: cannot open.
6865
6866 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
6867
6868         * support/Util/MySystem.c (merge_command): revert bad fix
6869
6870 2003-06-18  Borut Razem <borut.razem AT siol.net>
6871
6872         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
6873
6874 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6875
6876         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
6877         option --use-stdout sends errors to stdout instead of stderr.
6878
6879 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
6880
6881         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
6882
6883 2003-06-15  Borut Razem <borut.razem AT siol.net>
6884
6885         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
6886         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
6887         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
6888         fixed width array of pointers replaced with sets;
6889         multiple include and lib paths ared transferred to preprocessor and linker
6890         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
6891         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
6892         fixed width array of pointers
6893         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
6894         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
6895         fixupPath(), getPathDifference()
6896         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
6897         fixed width array of pointers
6898
6899 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
6900
6901         * src/pic16/ralloc.c: fix warnings
6902         * src/pic16/pcode.c: fix warning
6903
6904 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
6905
6906          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
6907         know all the details, but essentially this set of changes enable
6908         the pic16 port to generate movff instructions and generate assembler
6909         directives,
6910         * src/SDCCmain.c:
6911         * src/pic16/gen.c:
6912         * src/pic16/glue.c:
6913         * src/pic16/pcode.c:
6914         * src/pic16/device.c:
6915         * src/pic16/main.c:
6916         * src/pic16/pcode.h:
6917         * src/pic16/pcoderegs.c:
6918         * src/pic16/ralloc.c:
6919         * src/pic16/ralloc.h:
6920
6921 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6922
6923         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
6924         added option --vc, so sdcc errors and warnings are compatible with
6925         Microsoft Visual Studio.
6926
6927 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6928
6929         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
6930           device/lib/libfloat.lib: added atof function.
6931
6932 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
6933
6934         * doc/sdccman.lyx: updated to Lyx 1.3
6935         * doc/cdbfileformat.lyx: updated to Lyx 1.3
6936         * doc/test_suite_spec.lyx: updated to Lyx 1.3
6937         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
6938
6939 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
6940
6941         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
6942
6943 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6944
6945         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
6946           additions to the "related tools/documentation" section
6947
6948 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
6949
6950         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
6951
6952 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
6953
6954         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
6955         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
6956
6957 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
6958
6959         * doc/sdccman.lyx: fix double dash and other minor things
6960         * doc/Makefile: fix double dash
6961
6962 2003-05-28  Karl Bongers(patches from Martin Helmling)
6963         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
6964           condition and ignore commands.
6965
6966 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6967
6968         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
6969           is in parts still quite out of date, I did changes as far as I felt makes sense
6970           for a non-native english speaker.
6971           Please feel free to add to the manual or to correct my changes.
6972         * doc/Makefile: undid touching the date of intermediate tex files.
6973
6974 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6975
6976         * doc/sdccman.lyx: Manual has an index now
6977
6978 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
6979
6980         Finalize muluint/mulsint and mululong/mulslong merging:
6981         * device/lib/_mulint.c
6982         * device/lib/_mullong.c
6983         * device/lib/gbz80/mul.s
6984         * device/lib/gbz80/stubs.s
6985         * device/lib/z80/mul.s
6986         * device/lib/z80/stubs.s
6987         * src/SDCCsymt.c (initCSupport)
6988
6989 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6990
6991         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
6992         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
6993           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
6994           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
6995           instead of /Zm500.
6996
6997 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6998
6999         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
7000           the regression tests I'm not brave enough to enable 245.b, 245.c
7001         * doc/sdccman.lyx: added latex preamble for hyperref package.
7002           Using pdflatex this will give you a hyperlinked pdf file with
7003           bookmarks. (prepend '%' before /usepackage if this breaks something)
7004
7005 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7006
7007          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
7008
7009 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
7010
7011         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
7012
7013 2003-05-21    <johan AT balder>
7014
7015         * src/SDCCglue.c (printIval): fixed bug #739934
7016
7017 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7018
7019         Applied patch from bug 737905 (renamed yylineo to mylineno):
7020         * src/altlex.c
7021         * src/SDCCast.c
7022         * src/SDCglobl.h
7023         * src/SDCC.lex
7024         * src/SDCCsymt.c
7025         * src/SDCCval.c
7026         * src/pic16/pcode.c: Cleaned warnings
7027         * src/pic16/pcodeflow.c: Cleaned warnings
7028         * src/pic16/pcoderegs.c: Cleaned warnings
7029
7030 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
7031
7032         * src/pic16/pcode.c: Cleaned warnings
7033         * src/pic16/pcodepeep.c: Cleaned warnings
7034         * src/pic16/ralloc.c: Cleaned warnings
7035
7036 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7037
7038         * doc/sdccman.lyx: fixed bug 739745
7039         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
7040
7041 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
7042
7043         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
7044         it can be defined with CFLAGS when running configure
7045         * src/SDCCmain.c: fixed compiling + linking with object files
7046
7047 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
7048
7049         * configure.in: configure for pic16 port,
7050             added --disable-pic16-port
7051         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
7052         * src/SDCCmain.c: linkOptions is changed to set *,
7053             added if/endif conditional macros to remove options help
7054             messages from optionsTable when a port is not configured, added
7055             support for the PIc16 port in the ports table, when executing
7056             the compiler with no port specified on command line, a default
7057             port is selected with the new macro DEFAULT_PORT which is
7058             defined in port.h, in setDefaultOptions() linkOptions is removed
7059             from initialization assignment, since now it is a set,
7060             parseCmdLine uses setParseWithComma for linkOptions, in
7061             linkEdit() linkOptions are accessed with new function indexSet()
7062             which returns the i'th item of a set variable. See SDCCset.c, in
7063             linkEdit() when calling buildCmdLine(), added linkOptions as
7064             last argument. Now users can pass arguments to gplink via the
7065             -Wl option, main() uses pic16glue() to glue up pic16 programs
7066         * src/SDCCpeeph.c: various changes to support pic16
7067         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
7068             return the i'th item of the set
7069         * src/SDCCset.h: added function prototype for indexSet()
7070         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
7071         * src/clean.mk: added pic16 in CLEANALLPORTS variable
7072         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
7073             added macro DEFAULT_PORT
7074         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
7075         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
7076             generated
7077         * src/pic16/glue.c: commented out some error producing lines
7078         * src/pic16/main.c: __config directives are commented out to stop
7079             gpasm complaining and test the linkage with gplink, _linkCmd and
7080             _asmCmd changed to be more gplink and gpasm friendly
7081         * src/pic16/peeph.def: peep rule 3 is commented out, since it
7082             produced an error when parsed, peep rule 12 is added to utilize
7083             movff, but it is commented out since the pCode does not support
7084             yet a command with 2 address arguments
7085
7086 2003-05-18    <johan AT balder>
7087
7088         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7089         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7090 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
7091
7092         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
7093   Added feature to script commands from file.
7094
7095 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
7096
7097         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
7098         * src/SDCCutil.c: include ctype.h for win32
7099
7100 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
7101
7102         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
7103
7104 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
7105
7106         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
7107   Fixed so you can set breakpoints prior to run, run does not stop
7108   on entry now.  Add tbreak.  Other enhancements and fixes for use
7109   with ddd.
7110
7111 2003-05-12  Borut Razem <borut.razem AT siol.net>
7112
7113         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
7114
7115 2003-05-11  Borut Razem <borut.razem AT siol.net>
7116
7117         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
7118         the path of bin directory, so that PATH is the only env. variable, which has to be set
7119         in case of standard installation.
7120         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
7121         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
7122         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
7123
7124 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7125
7126         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
7127         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
7128         temp files are in the port dir; clean the gen/test directory when
7129         generating new test.c
7130         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
7131         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
7132         * support/regression/tests/zeropad.c: added
7133
7134 2003-05-09    <johan AT balder>
7135
7136         * src/SDCCglue.c: fixed bug #597940
7137
7138 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
7139
7140         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7141   cache sfr, optimize next,step, fix off by one sourceline,
7142   support ddd list function.
7143         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
7144
7145 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7146
7147         * support/regression/HTMLgen.py: added compare_s2f()
7148         * support/regression/Makefile: redo 1.27
7149         * support/regression/generate-cases.py: redo 1.5
7150
7151 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
7152
7153         * support/regression/tests/float.c: workaround 33 bit hex constant
7154         * support/regression/tests/simplefloat.c: fix division for host
7155
7156 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
7157
7158         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
7159         that tame's the PIC's over-aggressive optimizer.
7160
7161 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7162
7163          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
7164          support for MSVC.
7165
7166 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
7167
7168         Initial support for DS80C400. "Hello world" runs on TINIm400
7169         (with polled I/O).
7170
7171 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
7172
7173          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7174          * Some notes on ddd usage added in debugger/README
7175          Martin Helmling adding more features and fixes for ddd GUI debugger.
7176          Code added for nexti, stepi, up, down, and other adjustments.
7177
7178 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
7179
7180         * src/pic/pCodepeep.c non-wildcard asmops are now handled
7181         * src/pic/peeph.def Added two rules to optimize carry manipulation
7182         * src/pic/* removed debug printfs
7183
7184 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
7185
7186         * debugger/mcs51/cmd.c: added header newalloc.h
7187
7188 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
7189
7190         * as/Makefile: new EXEEXT
7191         * as/z80/Makefile: remove trailing slash of BUILDIR
7192         * as/z80/clean.mk: new EXEEXT
7193         * Makefile.common.in: add to CFLAGS (and others), don't replace it
7194         * support/cpp2/Makefile.in: new EXEEXT
7195         * src/pic/glue.c (pic14emitRegularMap): fixed warning
7196
7197 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
7198
7199         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
7200         EXEEXT was introduced to fix all related problems with targets
7201         "clean", "install" and "uninstall"; a couple of further flaws
7202         especially with "clean" have been fixed too
7203         * as/mcs51/Makefile.in
7204         * as/mcs51/clean.mk
7205         * as/z80/Makefile
7206         * Makefile
7207         * clean.mk
7208         * debugger/mcs51/Makefile.in
7209         * debugger/mcs51/clean.mk
7210         * link/z80/Makefile
7211         * link/z80/Makefile.in
7212         * link/z80/clean.mk
7213         * link/Makefile
7214         * packihx/Makefile.in
7215         * packihx/clean.mk
7216         * sim/ucsim/Makefile
7217         * sim/ucsim/clean.mk
7218         * sim/ucsim/avr.src/Makefile.in
7219         * sim/ucsim/avr.src/clean.mk
7220         * sim/ucsim/s51.src/Makefile.in
7221         * sim/ucsim/s51.src/clean.mk
7222         * sim/ucsim/xa.src/Makefile.in
7223         * sim/ucsim/xa.src/clean.mk
7224         * sim/ucsim/z80.src/Makefile.in
7225         * sim/ucsim/z80.src/clean.mk
7226         * sim/ucsim/main_in.mk
7227         * sim/ucsim/packages_in.mk
7228         * sim/ucsim/gui.src/Makefile.in
7229         * sim/ucsim/gui.src/serio.src/Makefile.in
7230         * sim/ucsim/gui.src/serio.src/clean.mk
7231         * src/Makefile.in
7232         * src/clean.mk
7233         * support/cpp2/Makefile.in
7234         * support/cpp2/clean.mk
7235         * support/makebin/Makefile
7236         * support/makebin/clean.mk
7237         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
7238         * doc/sdccman.lyx: --program-suffix no longer needed
7239
7240 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
7241
7242          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
7243          Martin Helmling added support for ddd GUI debugger.
7244          Code added to display assembly, set variables, and other commands
7245          to interface to ddd.
7246
7247 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
7248
7249         * as/Makefile: fix target clean
7250         * as/clean.mk: fix target clean
7251         * as/z80/clean.mk: fix target clean
7252
7253 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
7254
7255         * Makefile.common.in: added  AT EXEEXT AT
7256         * configure.in: removed all mingw32 stuff
7257         * configure: rebuilt from configure.in
7258         * doc/sdccman.lyx: updated section "installation"
7259         * support/scripts/sdcc_mingw32: adapted to configure
7260         * support/scripts/sdcc_cygwin_mingw32: added
7261
7262 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
7263
7264         * src/pic Added object file support for the PIC port
7265         * src/pic Applied patch from Craig Franklin (this started the object file support)
7266         * src/regression Updated the PIC regression tests for object files
7267
7268 2003-04-20  Borut Razem <borut.razem AT siol.net>
7269
7270         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
7271           lklex.c: In function `getfid':
7272           lklex.c:203: warning: array subscript has type `char'
7273         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
7274           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
7275         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
7276           stack handling macros
7277
7278 2003-04-19  Borut Razem <borut.razem AT siol.net>
7279
7280         * "handling space characters in file path" task:
7281         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
7282         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
7283         * support/Util/MySystem.h: make it self-sufficient
7284         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
7285           src/z80/main.c, sdcc/as/mcs51/lklex.c:
7286           handling space characters in file path
7287         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
7288           (it will be used by assemblers, which have their own includes, e.g. gpasm)
7289         * support/Util/MySystem.c: handling space characters in executable's path
7290
7291 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
7292
7293         * as/z80/Makefile: fix permanent rebuild of z80
7294         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
7295         * support/regression/tests/bitfields.c: added Johan's bitfields.c
7296
7297 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
7298
7299         * src/SDCCopt.c: add special case optimization to replace modulo by
7300           a power of two with a bitwise AND.
7301
7302 2003-04-18    <johan AT balder>
7303
7304         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
7305
7306 2003-04-17    <johan AT balder>
7307
7308         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
7309         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
7310
7311 2003-04-13  Borut Razem <borut.razem AT siol.net>
7312
7313         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
7314         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
7315           fixed mingw problem in adl_NORMALIZE_PATH
7316
7317 2003-04-12  Borut Razem <borut.razem AT siol.net>
7318
7319         * fixed "#pragma SAVE/RESTORE can not be nested":
7320         * src/SDCC.lex: reworked pragma handling functions
7321         * sdcc/src/SDCCglobl.h: reworked stack handling macros
7322         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
7323
7324 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7325
7326         * src/SDCCutil.c (pathEquivalent): defined but not used
7327         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
7328         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
7329         * configure: rebuilt from configure.in
7330         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7331         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7332         * device/include/Makefile.in: replace sdcc_datadir
7333         * device/lib/Makefile.in: replace sdcc_datadir
7334         * Makefile.common.in: add LDFLAGS from configure
7335         * packihx/Makefile.in: use LDFLAGS
7336         * src/Makefile.in: use LDFLAGS
7337         * support/cpp2/Makefile.in: add LDFLAGS from configure
7338         * support/makebin/Makefile: use LDFLAGS
7339         * .version: bumped version number to 2.3.5
7340
7341 2003-04-12  Borut Razem <borut.razem AT siol.net>
7342
7343         * completed "different paths" task:
7344         * src/SDCCmacro.c: fixed bug in handling quotes
7345         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
7346         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
7347
7348 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7349
7350         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
7351
7352 2003-04-11 kevin Vigor <kevin AT vigor.nu>
7353
7354         * ds390/gen.c ds390/peeph.def: fix bug 706781
7355
7356 2003-04-11  Borut Razem <borut.razem AT siol.net>
7357
7358         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
7359
7360 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
7361
7362         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
7363         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
7364          set - this bit used to not be set...).
7365         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
7366           bad code in PIC Port
7367         * src/regression/and2.c added to test bug 609268
7368         * src/regression/Makefile added and2.c to regression test
7369
7370
7371 2003-04-08    <johan AT CP255758-A>
7372
7373         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
7374         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
7375         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
7376
7377 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
7378
7379         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
7380         fix bug #487815
7381         * support/cpp2/Makefile.in: fix bug #487815
7382         * configure: rebuilt from configure.in
7383         * Makefile.common.in: docdir changed, new path suffixes
7384         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7385         * sdcc_vc_in.h: reflect changes from sdccconf.h
7386         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
7387         * src/SDCCutil.h: remove BINDIR hack
7388         * doc/sdccman.lyx: update new path hierarchy
7389
7390 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7391
7392         * src/SDCCpeeph.c: added okToRemoveSLOC test
7393
7394 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7395
7396         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
7397
7398 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7399
7400         * src/SDCCpeeph.c: added labelIsReturnOnly test
7401         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
7402
7403 2003-04-05    <johan AT balder>
7404
7405         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
7406         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
7407         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
7408         * src/SDCCast.c: fixed a warning
7409         * src/SDCCast.h: fixed a warning
7410         * src/SDCCicode.c (operandFromAst): fixed a warning
7411
7412 2003-04-04    <johan AT balder>
7413
7414         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
7415         * src/SDCCast.c (decorateType): fixed bug #715076
7416         * src/SDCC.y: fixed bug #702907
7417
7418 2003-04-03    <johan AT balder>
7419
7420         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
7421         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
7422         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
7423         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
7424         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
7425
7426 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
7427
7428         * _decdptr.c: fix return values
7429         * _gptrget.c: fix return values
7430         * _gptrgetc.c: fix return values
7431         * _gptrput.c: fix return values
7432         * _mulint.c: fix return values
7433         * as/z80/Makefile: fix 'make -j' problem
7434
7435 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
7436
7437         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
7438         * configure.in: big cleanup, updated to autoconf 2.5x
7439         * configure: rebuilt from configure.in
7440         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7441         * sdcc_vc_in.h: reflect changes from sdccconf.h
7442         * doc/Makefile: fixed a flaw in "make install"
7443
7444 2003-04-02    <johan AT balder>
7445
7446         * src/ds390/gen.c (genCmp): no comments
7447         * src/mcs51/gen.c (genCmp): no comments
7448         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
7449         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
7450
7451 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
7452
7453         * support/regression/generate-cases.py: place generated file in given sub directory
7454         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
7455         * support/regression/Makefile: improvements for 'make -j';
7456         side effect: it's simpler and faster now
7457
7458 2003-03-31  Borut Razem <borut.razem AT siol.net>
7459
7460         * src/z80/main.c: link-{port} and as-{port} defined without path
7461         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
7462
7463 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
7464
7465         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
7466
7467 2003-03-30  Borut Razem <borut.razem AT siol.net>
7468
7469         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
7470           changed type of list parameter to set
7471         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
7472         * src/port.h: changed type of do_assemble() parameter to set
7473         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
7474           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
7475           definition of "cppoutfilename" macro with NULL value in preProcess()
7476         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
7477         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
7478         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
7479           replaced with set *binPathSet
7480         * shash_add() deallocates the item, if allready exsists, before adding the new one
7481         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
7482
7483 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
7484
7485         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
7486           a nested for loop bug in the PIC port
7487         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
7488           for loops
7489
7490 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
7491
7492         * support/Util/dbuf.h: remove C++ stuff to make it portable
7493
7494 2003-03-28  Borut Razem <borut.razem AT siol.net>
7495
7496         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
7497           literal strings in stringLiteral()
7498         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
7499         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
7500           to the project
7501
7502 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
7503
7504         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
7505
7506 2003-03-26    <johan AT balder>
7507
7508         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
7509         * src/ds390/gen.c (saveRegisters): catched symbol abuse
7510         * src/SDCCast.c (decorateType): fixed " -v < 3"
7511
7512 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
7513
7514         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
7515         Added Lenny Story's debug infrastructure changes:
7516         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
7517         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
7518         * src/cdbFile.c: added
7519         * src/SDCCdebug.c: added
7520         * src/SDCCdebug.h: added
7521         * src/SDCCast.c (createFunction)
7522         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
7523         * src/SDCCmain.c (parseCmdLine, main)
7524         * src/SDCCmem.c (redoStackOffsets)
7525         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
7526         * src/SDCCsymt.h
7527         * src/common.h
7528         * src/avr/gen.c (genAVRCode)
7529         * src/ds390/gen.c (gen390Code)
7530         * src/mcs51/gen.c (gen51Code)
7531         * src/pic/gen.c (genpic14Code)
7532         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
7533         * src/xa51/gen.c (genXA51Code)
7534         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
7535
7536 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7537
7538         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
7539         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
7540
7541 2003-03-22    <johan AT balder>
7542
7543         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
7544
7545 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
7546
7547         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
7548         * doc/cdbfileformat.lyx: added, written by Lenny Story
7549         * doc/Makefile: added cdbfileformat.lyx
7550         * doc/clean.mk: added cdbfileformat.lyx
7551
7552 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
7553
7554         * src/mcs51/peeph.def: fix bug #705773
7555
7556 2003-03-20    <johan AT balder>
7557
7558         An sfr/sbit can have an "at #" AND an initializer
7559         * src/SDCCsymt.c (checkSClass):
7560         * src/SDCCmem.c (allocGlobal):
7561         * src/SDCCmem.c (allocLocal):
7562         * src/SDCCast.c (createBlock):
7563
7564 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
7565
7566         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
7567
7568 2003-03-16    <johan AT balder>
7569
7570         Undid the hackup of const and volatile, the problem is much bigger
7571         * src/SDCC.y:1.65
7572         * src/SDCCast.c:1.171
7573         * src/SDCCglue.c:1.138
7574         * src/SDCCicode.c:1.146
7575         * src/SDCCsymt.c:1.150
7576         * src/SDCCval.c:1.65
7577
7578 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
7579
7580         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
7581         * src/ds390/gen.c (genAddrOf): fixed bug #704087
7582
7583 2003-03-13    <johan AT balder>
7584
7585         Hackup const and volatile modifiers in type chains a bit:
7586         * src/SDCC.y:1.63
7587         * src/SDCCast.c:1.169
7588         * src/SDCCglue.c:1.136
7589         * src/SDCCicode.c:1.143
7590         * src/SDCCsymt.c1.146
7591         * src/SDCCsymt.h1.59
7592         * src/SDCCval.c:1.63
7593
7594 2003-03-12    <johan AT balder>
7595
7596         * src/SDCCBBlock.h: more LRH debugging junk
7597         * src/SDCCcflow.h: more LRH debugging junk
7598         * src/SDCCloop.c: more LRH debugging junk
7599         * src/SDCC.y (struct_declaration): fixed bug #697590
7600         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
7601         * src/ds390/gen.c (aopForRemat): fixed bug #700031
7602         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
7603
7604 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7605         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
7606         test function names must now match exactly).
7607         * src/SDCCcse.c: added special case in findCheaperOp to allow
7608         extending a short integer. Makes less awful code for bug 700121 test case.
7609
7610 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7611
7612         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
7613         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
7614
7615 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7616
7617         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
7618         actually called (operandsNotEqual() was called for all
7619         operandsNotEqualX tests).
7620
7621 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7622
7623         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
7624         with shorter literals. Fixes bug 700121.
7625
7626 2003-03-11    <johan AT balder>
7627
7628         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
7629
7630 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
7631
7632         * src/SDCCloop.c (mergeRegions): an evil beast is dead
7633         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
7634
7635 2003-03-10  Borut Razem <borut.razem AT siol.net>
7636
7637         * src/SDCCmain.c: pipe preprocessor's output
7638         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
7639         * sdcc_vc_in.h: define pclose as _pclose for WIN32
7640         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
7641         which closes all pipes in pipeSet set
7642         * src/SDCCset.c: free deleted item in function deleteSetItem()
7643         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
7644         moved from z80 to src subproject
7645         * .version: increased version number to 2.3.4
7646
7647 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
7648
7649         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
7650         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
7651         * support/regression/ports/xa51/spec.mk: fix typo
7652
7653 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
7654
7655         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
7656
7657 2003-03-09  Borut Razem <borut.razem AT siol.net>
7658
7659         * src/SDCCmain.c: pipe preprocessor's output
7660         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
7661         * sdcc_vc_in.h: define pclose as _pclose for WIN32
7662         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
7663         which closes all pipes in pipeSet set
7664         * src/SDCCset.c: free deleted item in function deleteSetItem()
7665         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
7666         moved from z80 to src subproject
7667
7668 2003-03-09  Borut Razem <borut.razem AT siol.net>
7669
7670         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
7671         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
7672         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
7673         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
7674         * src/SDCCglobl.h: unification of WIN32 native definitions
7675
7676 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7677
7678         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
7679
7680 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
7681
7682         * src/configure.in:   check for endianess (even while cross-compiling)
7683         * src/configure:      check for endianess (even while cross-compiling)
7684         * src/configure_in.h: check for endianess (even while cross-compiling)
7685         * src/avr/gen.c:        remove old endianess stuff
7686         * src/mcs51/gen.c:      remove old endianess stuff
7687         * src/ds390/gen.c:      remove old endianess stuff
7688         * src/pic/gen.c:        remove old endianess stuff
7689         * src/pic/genarith.c:   remove old endianess stuff
7690         * src/pic/glue.c:       fix endianess check
7691         * src/pic16/gen.c:      remove old endianess stuff
7692         * src/pic16/genarith.c: remove old endianess stuff
7693         * src/pic16/glue.c:     fix endianess check
7694         * src/xa51/gen.c:       remove old endianess stuff
7695         * src/z80/gen.c:        fix endianess check
7696         * src/SDCCglue.c:       fix endianess check
7697         * src/ds390/peeph.def: fix bug 700036
7698
7699 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
7700
7701         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
7702         * src/configure: find appropriate data-types on host for SDCC's int and long
7703         * src/configure.in: find appropriate data-types on host for SDCC's int and long
7704         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
7705         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
7706
7707 2003-03-07    <johan AT balder>
7708
7709         Just a big NOOP:
7710                 some minor cleanups before the big shot
7711                 OP_DEFS and OP_USES now use Kevin's protection
7712                 new option --nolabelopt
7713
7714         * src/SDCCBBlock.c:
7715         * src/SDCCast.c,:
7716         * src/SDCCcflow.c:
7717         * src/SDCCcse.c:
7718         * src/SDCCicode.c:
7719         * src/SDCCicode.h:
7720         * src/SDCClabel.c:
7721         * src/SDCCloop.c:
7722         * src/SDCCmain.c:
7723         * src/ds390/ralloc.c:
7724         * src/mcs51/ralloc.c:
7725         * src/pic/ralloc.c:
7726         * src/xa51/ralloc.c:
7727         * src/z80/ralloc.c:
7728
7729 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
7730
7731         * src/pic/pcode.c (get_op): fix 64 bit warnings
7732         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
7733         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
7734         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
7735         * support/regression/tests/malloc.c: fix 64 bit warnings
7736
7737 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
7738
7739         * src/mcs51/gen.c (genMinus): fixed bug 696436
7740
7741 2003-03-02  Borut Razem <borut.razem AT siol.net>
7742
7743         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
7744
7745 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
7746
7747         * configure.in: test for mkstemp
7748         * sdccconf_in.h: add HAVE_MKSTEMP
7749
7750 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
7751
7752         * device/include/ctype.h: removed warning while using --stack-auto
7753         * device/include/malloc.h: removed warning while using --stack-auto
7754         * device/include/string.h: removed warning while using --stack-auto
7755
7756 2003-02-23  Borut Razem <borut.razem AT siol.net>
7757
7758         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
7759         because NDEBUG is defined (see man assert)
7760         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
7761
7762 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7763
7764         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
7765         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
7766
7767 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7768
7769         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
7770         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
7771
7772 2003-02-18    <johan AT balder>
7773
7774         * as/mcs51/asmain.c (asmbl): module can start with a digit
7775         * as/z80/asmain.c (asmbl): module can start with a digit
7776
7777 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
7778
7779         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
7780         * src/asm.c: fix pipe() for Mingw32
7781
7782 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
7783
7784         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
7785         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
7786         make -V work again; --c1mode reads now from stdin
7787         * doc/sdccman.lyx: added --c1mode
7788         * support/Util/SDCCerr.c: new messages for c1 mode
7789         * support/Util/SDCCerr.h: new messages for c1 mode
7790         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
7791
7792 2003-02-15    <johan AT balder>
7793
7794         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
7795
7796 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
7797
7798         * doc/sdccman.lyx: Environment variables, -o and other minor things
7799
7800 2003-02-14    <johan AT balder>
7801
7802         * src/xa51/main.c: before anyone really tries to use it :)
7803
7804         * Install doc's in share/sdcc/doc
7805         * removed some obsolete files
7806         * Do a proper make distclean and uninstall
7807         M Makefile.common.in
7808         R sdccbuild.sh
7809         M as/Makefile
7810         M device/include/Makefile.in
7811         M device/lib/Makefile.in
7812         M doc/sdccman.lyx
7813         M link/Makefile
7814         M sim/ucsim/doc/Makefile.in
7815         M src/clean.mk
7816         R src/avr/peeph.rul
7817         R src/xa51/peeph.rul
7818         M support/cpp2/Makefile.in
7819         M support/makebin/Makefile
7820
7821
7822 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
7823
7824         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
7825
7826 2003-02-10  Borut Razem <borut.razem AT siol.net>
7827
7828         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
7829         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
7830         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
7831         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
7832         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
7833         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
7834         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
7835         src/z80/Makefile.bcc: Borland Makefile cleanup
7836         * as/z80/Makefile.bcc: Added Borland Makefile
7837         * support/cpp2/borland.h: Removed
7838
7839 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
7840
7841         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
7842         * src/SDCC.lex: new pragma NOIV
7843         * src/SDCCglobl.h: new pragma NOIV
7844         * src/SDCCmem.c: new pragma NOIV
7845
7846 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
7847
7848         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
7849
7850 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
7851
7852         * src/SDCCmain.c: signal handling is switched off by --debug
7853         * doc/Makefile: small fix for install; use clean.mk again
7854         * doc/clean.mk: clean *.pdf and *.html too
7855
7856 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
7857
7858         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
7859         * device/lib/printfl.c: fix a ds390 bug by making it portable
7860         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
7861         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
7862         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
7863         * debugger/mcs51/cmd.c: converted multi-line string literals
7864         * sim/ucsim/globals.cc: converted multi-line string literals
7865         * src/SDCCmain.c: introduced signal handler to remove temp files
7866         * doc/Makefile: small tweaks, implement clean
7867         * doc: removed generated files
7868
7869 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7870
7871         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
7872         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
7873         Address Record is not correctly generated for DS390."
7874
7875 2003-02-02  Borut Razem <borut.razem AT siol.net>
7876
7877         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
7878         * as/mcs51/asm.h: fixed compilation with Borland C
7879         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
7880         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
7881         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
7882         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
7883         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
7884         src/z80/Makefile.bcc: delete $(LIB) only if exist
7885         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
7886
7887 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
7888
7889         * device/include/malloc.h: introduced NULL
7890         * device/include/string.h: introduced NULL
7891         * device/include/stdlib.h: introduced NULL
7892         * device/lib/_memcpy.c: removed NULL
7893         * device/lib/_strcat.c: removed NULL
7894         * device/lib/_strchr.c: removed NULL
7895         * device/lib/_strcmp.c: removed NULL
7896         * device/lib/_strcpy.c: removed NULL
7897         * device/lib/_strcspn.c: removed NULL
7898         * device/lib/_strlen.c: removed NULL
7899         * device/lib/_strncat.c: removed NULL
7900         * device/lib/_strncmp.c: removed NULL
7901         * device/lib/_strncpy.c: removed NULL
7902         * device/lib/_strpbrk.c: removed NULL
7903         * device/lib/_strrchr.c: removed NULL
7904         * device/lib/_strspn.c: removed NULL
7905         * device/lib/_strstr.c: removed NULL
7906         * device/lib/_strtok.c: removed NULL
7907         * device/lib/malloc.c: removed NULL, include own header
7908
7909 2003-02-02    <johan AT balder>
7910
7911         * 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
7912         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
7913         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
7914         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
7915         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
7916         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
7917
7918 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7919
7920         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
7921         area 'DATA'"
7922
7923 2003-02-01    <johan AT balder>
7924
7925         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
7926
7927 2003-01-31    <johan AT CP255758-A>
7928
7929         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
7930
7931 2003-01-30    <johan AT balder>
7932
7933         * src/SDCCBBlock.c: automatic bug detection
7934         * src/SDCCicode.c: automatic bug detection
7935
7936 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7937
7938         * src/SDCCglobl.h:   now --xram-size 0 works
7939         * src/SDCCmain.c:    now --xram-size 0 works
7940
7941 2003-01-29    <johan AT balder>
7942
7943         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
7944
7945 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7946
7947         * as/mcs51/aslink.h: Added options --xram-size and --code-size
7948         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
7949         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
7950         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
7951         * src/SDCCglobl.h:   Added options --xram-size and --code-size
7952         * src/SDCCmain.c:    Added options --xram-size and --code-size
7953
7954 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
7955
7956         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
7957         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
7958
7959 2003-01-27    <johan AT balder>
7960
7961         * src/SDCC.y: fixed bug #613764
7962
7963 2003-01-26    <johan AT balder>
7964
7965         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
7966         * src/SDCCsymt.h: fixed bug #673374
7967         * src/SDCCglue.c: fixed bug #661910
7968         * src/SDCCast.c: fixed bug #458099 and 673374
7969
7970 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
7971
7972         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
7973         * as/mcs51/strcmpi.h: added
7974         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
7975         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
7976         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
7977         * as/mcs51/assym.c: strcmpi -> as_strcmpi
7978         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
7979         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
7980         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
7981         * as/mcs51/Makefile.aslink: new module strcmpi
7982         * as/mcs51/Makefile.asx8051: new module strcmpi
7983         * as/mcs51/Makefil.bcc: new module strcmpi
7984         * as/mcs51/Makefile.in: new module strcmpi
7985         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
7986
7987 2003-01-26    <johan AT balder>
7988
7989         * src/SDCCglue.c: reverted back to 1.124
7990         * src/SDCCast.c: reverted back to 1.156
7991         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
7992
7993 2003-01-25    <johan AT balder>
7994
7995         * src/SDCCglue.c: A better fix for bug #661910
7996         * src/SDCCast.c: A better fix for bug #661910
7997         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
7998
7999 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8000
8001         * src/Makefile.in: remove spawn.o
8002         * src/SDCCmain.c: remove spawn.h
8003         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
8004         * src/spawn.c: removed
8005         * src/spawn.h: removed
8006         * support/regression/ports/ds390/spec.mk: link with -r
8007
8008 2003-01-24    <johan AT CP255758-A>
8009
8010         * src/ds390/gen.c (aopOp): fixed bug #667458
8011         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
8012         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
8013         (createIvalCharPtr): an ival doesn't always have a storage class anymore
8014
8015 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8016
8017         * src/mcs51/peeph.def: better assembler identation by Frieder
8018         * src/mcs51/gen.c: better assembler identation by Frieder
8019
8020 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
8021
8022         * as/z80/string.h: removed for gcc 3.2
8023         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
8024         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
8025
8026 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8027
8028         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
8029         * src/SDCCpeeph.c (replaceRule): fix bug #663503
8030         * support/regression/Makefile: separate temp files for ports
8031         * support/regression/generate-cases.py: separate temp files for ports
8032         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8033         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8034
8035 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8036
8037         * moved tinitalk to device/examples/ds390
8038
8039 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
8040
8041         * as/mcs51/lkmem.c: rflag is for DS390
8042         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
8043         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
8044                          (linkEdit): move mem- and map-files the same way as ihx-files
8045         * src/z80/main.c (_setDefaultOptions): removed --generic
8046         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
8047         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
8048         * src/pic/glue.c (picglue): --c1mode works again
8049         * src/pic16/glue.c (pic16glue): --c1mode works again
8050         * src/asm.c (printCLine): fix #660034
8051
8052 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
8053
8054         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
8055         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
8056         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
8057         * as/mcs51/lkmem (summary): better fix for sp problem
8058         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
8059         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
8060         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
8061                                               remove --stack-after-data
8062
8063 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
8064
8065         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
8066         * src/SDCCutil.c (join): ugly bug: missing '\0'
8067         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
8068
8069 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8070
8071         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
8072         * src/port.h: typo
8073         * src/pic/main.c (_asmCmd): gpasm supports -o
8074         * src/z80/main.c: more general macros
8075         * device/lib/Makefile.in: remove intermediate files
8076
8077 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8078
8079         * .version: Bumped version number to 2.3.3
8080         * src/SDCCBBlock.c: new option -o
8081         * src/SDCCglobl.h: new option -o
8082         * src/SDCCglue.c: new option -o
8083         * src/SDCCmain.c: new option -o
8084         * src/asm.c: new option -o
8085         * src/ds390/main.c: new option -o
8086         * src/pic/glue.c: new option -o
8087         * src/pic/pcode.c: new option -o
8088         * src/pic/ralloc.c: new option -o
8089         * src/pic16/glue.c: new option -o
8090         * src/pic16/pcode.c: new option -o
8091         * src/pic16/ralloc.c: new option -o
8092         * src/z80/main.c: new option -o
8093         * device/lib/Makefile.in: use -o
8094         * support/regression/ports/ds390/spec.mk: use -o
8095         * support/regression/ports/gbz80/spec.mk: use -o
8096         * support/regression/ports/mcs51/spec.mk: use -o
8097         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
8098         * support/regression/ports/z80/spec.mk: use -o
8099         * support/regression/ports/ucz80/spec.mk: use -o
8100         * support/regression/ports/xa51/spec.mk: use -o
8101         * support/regression/fwk/lib/timeout.c: fix usage string
8102
8103 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
8104         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
8105
8106 2003-01-07    <johan AT balder>
8107
8108         * src/SDCCast.c (decorateType): fixed bug #600035
8109
8110 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
8111         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
8112         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
8113         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
8114         * src/pic/pcode.c: outcommented unused variable to remove warnings
8115         * src/pic/ralloc.c: outcommented unused variable to remove warnings
8116
8117 2003-01-06    <karl AT turbobit.com>
8118         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
8119    regression tests.
8120
8121 2003-01-06    <johan AT balder>
8122
8123         * src/SDCCicode.c: fixed array add
8124
8125 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
8126         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
8127         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
8128
8129 2003-01-04    <johan AT balder>
8130
8131         * src/SDCCval.c (getNelements): fixed the initialized array of structures
8132
8133 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8134         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
8135
8136 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8137         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
8138         * support/regression/tests/bug-524697.c: fit mem usage into 8032
8139
8140 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8141         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
8142
8143 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
8144         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
8145
8146 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
8147         * src/mcs51/main.c: removed {bindir}{sep} from aslink
8148
8149 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8150
8151     * in \sdcc\as\mcs51\ changed these files in order to create an
8152     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
8153     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
8154     following files to include the previous two files: aslink.dsp,
8155     Makefile.aslink, Makefile.bcc, and Makefile.in.
8156
8157     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
8158     .adb instead of .cdb
8159
8160 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8161
8162         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
8163         value from option --iram-size.
8164
8165 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8166
8167         * \sdcc\as\mcs51\lklist.c: added boundary check before using
8168         dram[] array.
8169
8170 2002-09-18    <wiml AT hhhh.org>
8171
8172         * SDCClrange.h: exposed setFromRange() and setToRange()
8173         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
8174           packRegsForAccUse() (bug 542397)
8175         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
8176           multiple times and emitting the fetch operations more than once
8177           added aopGetUsesAcc() function to allow binary operators to
8178           fetch their operands in the correct order; made genMinus() emit
8179           compact code for X = LITERAL - Y
8180
8181 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8182         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
8183         sprintf() in line 1267.
8184
8185 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8186         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
8187         like ports.
8188
8189 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8190         Changes to aslink (All the changes are marked with 'JCF'):
8191
8192         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
8193         summary().
8194
8195         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
8196         area BSEG.  Also moves, if possible, the DATA area down into the internal
8197         ram so more space is available.
8198
8199         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
8200         sflag.
8201
8202         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
8203         not bytes.  Function summary() which creates a memory usage summary
8204         file with extension .mem.  Reports of overlaping stack and small stack
8205         size.  If the space for the stack is less than 16 bytes aslink trows a
8206         warning.
8207
8208         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
8209         the 8051.  Option 'y' for memory summary output file.
8210
8211         Changes to sdcc (All the changes are marked with 'JCF'):
8212
8213         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
8214
8215         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
8216         overlaying area for it (uses RegBankUsed[4]).
8217
8218         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
8219         bank zero as used by default.  By default aslink locates the stack
8220         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
8221         the creation of the .mem file.  Delegates the allocation of data area
8222         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
8223         the begining of the stack area to aslink.
8224
8225         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
8226         glue() in SDCCglue.c creates an area for it.
8227
8228 2002-09-03  Borut Razem <borut.razem AT siol.net>
8229         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
8230         sdcc/src/pic/glue.c:
8231         introduced atexit() handler for teporay files removal in case of
8232         errors, assertions, ...
8233
8234 2002-08-29  Borut Razem <borut.razem AT siol.net>
8235         * sdcc/support/cpp2/auto-host_vc_in.h:
8236         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
8237         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
8238         Maybe there is a similar problem with BORLANDC? It should be checked!
8239
8240         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
8241         corrected improper use of assert: the assignment to clr variable was done inside the assert.
8242         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
8243         was not executed, and the compiler (cl) launched a warning:
8244         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
8245
8246 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8247         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
8248
8249 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
8250         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
8251
8252         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8253           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
8254           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
8255           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8256           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
8257           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
8258           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
8259         - added Release configuration in VS projects
8260         - review of compiler an linker options
8261         - VC .exe files are generated in bin_vc directory, not to interfere
8262           with binaries generated from other projects (cygwin, mingw, bcc ...)
8263
8264         * sdcc/src/yacc.dsp: added
8265
8266         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
8267         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
8268         and insert the version number definitions from .version
8269
8270         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
8271
8272         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
8273         added - genarate auto-host.h using auto-host_vc_in.h as template
8274
8275         * sdcc/sdcc_vc.h,
8276         removed from CVS, generated automatically
8277
8278 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
8279         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
8280
8281 2002-08-11  Borut Razem <borut.razem AT siol.net>
8282         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
8283
8284 2002-08-10  Borut Razem <borut.razem AT siol.net>
8285         * src/SDCCmain.c (main):
8286         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
8287         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
8288         The consequence was that some temporary files were not removed.
8289
8290         * src/SDCCglue.c:
8291         unification of code in functions tempfilename() and tempfile():
8292         function tempnam() is defined in Visual Studio 6.0 and .NET
8293
8294         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
8295
8296         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8297           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
8298         - removed compiler command line option /WX: Treats all warnings as errors
8299         - update a list of source files, included into the project
8300
8301         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8302           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
8303         changed project type to Generic Project so that can be correcly converted to VS.NET project
8304
8305         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
8306
8307         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
8308
8309         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
8310
8311         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
8312         added return 0 statements after assert() to make compiler happy
8313
8314         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
8315         added newline in the def file to keep MSC compiler satisfied
8316
8317         * sdcc/src/z80/gen.c:
8318         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
8319           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
8320         - solved MSC error in function aopDump()
8321
8322         * sdcc_vc.h: define PREFIX as "\\sdcc"
8323
8324 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
8325         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
8326
8327 2002-06-22  Scott Dattalo <scott AT dattalo.com>
8328         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
8329         - Rewrote the register banking algorithm.
8330         - Added pCode live-range analysis to registers (for now, only non-used and
8331         singly-used registers optimized away)
8332
8333         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
8334
8335         * 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.
8336
8337 2002-05-10  Scott Dattalo <scott AT dattalo.com>
8338         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
8339
8340 2002-04-22  Michael Hope  <michaelh AT vroom>
8341
8342         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
8343
8344         * configure.in (DD_COPT): Added include support required for gbdk.
8345
8346         * .version: Bumped version number just to increase it.
8347
8348         * src/SDCCmain.c: Added -nostdinc to the default options.
8349
8350 2002-04-15  Michael Hope  <michaelh AT vroom>
8351
8352         * device/lib/z80/printf.c (sprintf): Added.
8353
8354         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
8355
8356         * src/z80/peeph.def: Added transpose redundent load rule.
8357
8358         * src/z80/main.c: Added force callee saves for jaune.
8359
8360         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
8361
8362         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
8363
8364 2002-03-28  Johan Knol  <johan AT balder>
8365
8366         * src/SDCCval.c: fixed bug #532436
8367
8368 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8369         * /src/port.h:
8370         Added "char *Processor" field to the port structure.
8371
8372         * /src/SDCCmain.c:
8373         Added -p option. Allows port dependent processor to be specified.
8374
8375         * all ports:
8376         Initialized the new field char *Processor field to NULL in all ports
8377
8378         * /src/pic/*:
8379         Compiler generated registers for interrupt context saving
8380         were not getting allocated.
8381
8382 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
8383
8384         * /src/SDCCast.c:
8385         Fixed left shift. Will promote the left side of a left shift
8386         if a) left shifting more than size of operand or b) when assigned
8387         to something size > size of left side
8388
8389 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8390         * src/pic/*
8391         tons of changes. Register allocation has been
8392         rewritten. Added customization for the various PICs. Flow
8393         analysis is restructured. ...
8394
8395         * src/pic/device.h:
8396         Added
8397
8398         * src/pic/device.c:
8399         Added. device.c is a PIC port hack to accomodate variations
8400         in PIC devices.
8401
8402 2002-03-13  Michael Hope  <michaelh AT vroom>
8403
8404         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
8405
8406 2002-03-04  johanknol  <johanknol AT manik>
8407
8408         * /src/SDCCval.c: fixed
8409
8410         const unsigned char arr[][2] = { { 0, 1 } };
8411         t18.c:1: error: Initializer element is not constant
8412
8413 2002-03-04  bela  <bela AT manik>
8414
8415         * /device/include/mcs51reg.h:
8416         ds89c420 register definition update
8417
8418 2002-03-03    <johan AT FRIJA>
8419
8420         * support/Util/SDCCerr.c: did something, but don't no why anymore
8421
8422         * support/regression/tests/bug-524691.c: made it a little less shy
8423
8424         * src/SDCCast.c (decorateType): fixed bug #524697
8425
8426         * src/SDCCast.c: made some lineno improvements
8427
8428         * src/SDCCval.c (getNelements): changed warning to error
8429
8430         * src/SDCCglue.c (printIvalArray): changed warning to error
8431
8432         * src/SDCCicode.c: fixed a warning for mingw
8433
8434         * src/SDCCast.c (decorateType): fixed the << promotion for ops
8435
8436         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
8437
8438 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
8439
8440         * src/ds390/peeph.def:
8441         Added some more peephole rules
8442
8443         * src/ds390/gen.c: Various fixes & enhancements
8444
8445         * src/SDCClrange.c, src/SDCClrange.h:
8446         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
8447
8448         * src/ds390/ralloc.c:
8449         various fixes & enhancements (ds390) specific
8450
8451         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
8452         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
8453         from rallocs.
8454
8455         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
8456
8457 2002-03-02    <johan AT FRIJA>
8458
8459         * src/SDCCast.c (decorateType): fixed bug #524708
8460
8461         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
8462
8463         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
8464
8465 2002-03-01  Michael Hope  <michaelh AT vroom>
8466
8467         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
8468
8469         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
8470
8471 2002-03-01    <johan AT FRIJA>
8472
8473         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
8474
8475         * src/SDCCast.c (decorateType): fixed bug #524209
8476
8477         * src/SDCCval.c (valNot): fixed bug #524195
8478
8479 2002-02-26    <johan AT balder>
8480
8481         * src/xa51/gen.c: fixed a warning
8482
8483         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
8484
8485         * src/SDCCast.c (decorateType): fixed bug #522534
8486
8487 2002-02-23    <johan AT balder>
8488
8489         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
8490
8491 2002-02-22    <johan AT balder>
8492
8493         * src/SDCCast.c: fixed bug #514865
8494
8495         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
8496
8497 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
8498
8499         * sdcc/src/SDCCloop.c:
8500         Previous fix was not good. basic blocks that have "break" or "return" are
8501         not really partof a loop , but live ranges used in these blocks should
8502         be live thru the entire loop, so set partOfLoop but don't add them to
8503         loop region
8504
8505 2002-02-21    <johan AT FRIJA>
8506
8507         * src/SDCCcse.c: fixed bug #514308
8508
8509 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
8510
8511         * src/SDCCloop.c:
8512         Fixed BUG #519583. If a conditional block ended in a return/break
8513         statement inside a loop, it was not being considered part of the loop.
8514
8515         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
8516
8517 2002-02-10  Karl Bongers <karl AT turbobit.com>
8518
8519         * debugger/*:
8520         Fixed up SDCDB debugger somewhat.  Updated debugger/README
8521         with lots of comments and notes.
8522
8523         * device/examples/test2.c:
8524         Fix bug, "red" variable not being initialized(compiler complained).
8525
8526         * device/examples/Makefile, examples/test3.c:
8527         Add Makefile in device/examples folder, compiles test3.c
8528         for use as a multiple module SDCDB test case.
8529
8530         * sim/ucsim/cmd.src/cmdset.cc:
8531         Took out debug printfs in ucsim "next" command.
8532
8533         * sim/ucsim/xa.src:
8534         Karl and Johan start ucsim XA support.  Most dissassembly working,
8535         about 75% emulation done(plenty of work remaining).
8536
8537         * sim/ucsim/z80.src:
8538         Add Z80 support to ucsim, add test-ucz80 regression test,
8539         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
8540         Notice z80 compiler fails on examples/test3.c/crc code.
8541
8542 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
8543
8544         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
8545         Added support for --parms-in-bank1
8546
8547         * src/ds390/peeph.def:
8548         added a few more peephole optimzations
8549
8550         * src/ds390/main.c:
8551         1) added __builtin_inp & __builtin_outp used to read in data of given length
8552            from a memory mapped port
8553         2) added __builtin_memcmp
8554         3) added __builtin_swapw swap bytes of a short
8555
8556         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
8557         1) handle multiple send & receives from register bank1
8558         2) ralloc can now allocate DPTR1 to some liveRanges
8559
8560         * src/SDCCsymt.c, src/SDCCsymt.h:
8561         changes to handle multiple sends & receives
8562
8563         * src/SDCCptropt.h:
8564         added some pointer arithmetic optimization
8565
8566         * src/SDCCptropt.c:
8567         added some pointer arithmetic optimizations but not stable yet so not
8568         called from anywhere (will get this working shortly)
8569
8570         * src/SDCCopt.c: fixed for multiple sends & receives
8571
8572         * src/SDCCmain.c:
8573         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
8574         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
8575            set preprocessor defines (depending on options)
8576
8577         * src/SDCCicode.c, src/SDCCicode.h:
8578         changes made to handle multiple sends & receives
8579
8580         * src/SDCCglobl.h:
8581         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
8582
8583         * src/SDCCcse.c, src/SDCCcse.h:
8584         added function findbackward def (to be used in upcoming optimization)
8585
8586         * src/SDCCcflow.c, src/SDCCcflow.h:
8587         added function returnAtEnd - to determine if a basic block terminates with
8588         a RETURN iCode
8589
8590         * src/SDCCast.c, src/SDCCast.h:
8591         added option parms-in-bank1
8592
8593         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
8594         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
8595         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
8596         adjusted for --parms-in-bank1 option
8597
8598         * device/include/string.h:
8599         donot redefine "reentrant" keyword
8600
8601         * device/include/ds80c390.h: Added some more SFRs
8602
8603 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
8604
8605         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
8606
8607 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
8608
8609         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
8610
8611 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
8612
8613         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
8614
8615 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
8616
8617         * Added --xram-movc option
8618
8619 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
8620
8621         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
8622
8623 2002-01-11  Johan Knol
8624
8625         * Added math lib of Jesus Calvino-Fraga
8626
8627 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
8628
8629         * src/SDCCmain.c (processFile): fix processing of ../../src.c
8630         * support/regression/Makefile: new target test-mcs51-stack-auto
8631         * support/regression/ports/mcs51-stack-auto/spec.mk: added
8632
8633 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
8634
8635         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
8636
8637 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
8638
8639         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
8640
8641 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
8642
8643         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
8644
8645         * src/SDCCglue.h: add definition for printIvalChar()
8646
8647 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
8648
8649         * src/SDCCast.c: fix #498138 by Johan
8650
8651         * src/SDCCglue.c: fix #498138 by Johan
8652
8653 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
8654
8655         * support/regression/Makefile: fix clean
8656
8657         * support/regression/ports/ds390/support.c: fix transmission of last character
8658
8659 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
8660
8661         * /sdcc/src/ds390/gen.c:
8662         a) improved computing address of stack variable
8663         b) took out some #if 0 code
8664         c) improved parmBytes adjustment
8665         d) improved genPlusIncr & genMinusIncr
8666         e) genCmp could generate bad code (when left assigned to DPTR)
8667         f) Fixed bug in hasInc
8668
8669         * /sdcc/src/ds390/ralloc.c:
8670         a) packRegsForSupport could mess up live information (Fixed)
8671         b) packRegsDPTRuse could be incorrect for left & right shift
8672
8673         * /sdcc/src/mcs51/ralloc.c:
8674         packRegsForSupport could mess up the live information (Fixed)
8675
8676         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
8677
8678         * /sdcc/src/SDCCast.c:
8679         can reverse a loop even if function call is present as long
8680         as the loop control variable is local & is not passed as parameter
8681
8682 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
8683
8684         * /sdcc/ChangeLog: *** empty log message ***
8685
8686         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
8687         More builtin function additions for TININative
8688
8689         * /sdcc/src/ds390/ralloc.c:
8690         Had broken the regression testsuite
8691
8692         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
8693
8694         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
8695         Added funcattr hasStackParms will be set for reentrant functions when there
8696         are paramteres on the stack, this helps in minimizing frame pointer generation
8697         typeFromStr can handle function pointers now
8698
8699         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
8700         *** empty log message ***
8701
8702 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
8703
8704         * /src/ds390/gen.c, /src/ds390/main.c:
8705         More builtin function additions for TININative
8706
8707         * /src/ds390/ralloc.c:
8708         Had broken the regression testsuite
8709
8710         * /src/SDCCast.c: Fixed a bug in dumptree
8711
8712         * /src/SDCCsymt.c, /src/SDCCsymt.h:
8713         Added funcattr hasStackParms will be set for reentrant functions when there
8714         are paramteres on the stack, this helps in minimizing frame pointer generation
8715         typeFromStr can handle function pointers now
8716
8717         * /doc/builtins.txt, /doc/TININative.txt:
8718         *** empty log message ***
8719
8720
8721 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
8722
8723         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
8724         ALPHA version for -mTININative
8725
8726         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
8727         updated to reflect changes in the port structure
8728
8729         * /src/port.h:
8730         added function do_assemble (similar to do_link) if non-null this function
8731         will be called to do assembly (-mTININative) requires a multi command
8732         assembly
8733         added function genAssemblerEnd will be called to generate assembler Epilogue
8734
8735         * /src/SDCCsymt.c:
8736         added _JavaNative to debug info printing
8737
8738         * /src/SDCCmain.c: added option --tini-libid
8739         added port->do_assemble function (-mTININative) has a multi command assemble
8740
8741         * /src/SDCCglue.c: Disabled "constExpr" check
8742         added port->genAssemblerEnd function
8743
8744         * /src/SDCCglobl.h: Added option --tini-libid value
8745
8746         * /src/SDCCast.h:
8747         tookout optimizeCompare from the header (has no external references)
8748
8749         * /src/SDCCast.c: made one more function "static"
8750
8751 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
8752
8753         * src/z80/mappings.i: Added z80asm support.
8754
8755         * src/z80/main.c: Added z80asm support on --asm=z80asm
8756
8757         * src/z80/gen.c: Fixed asm portability issues.
8758
8759         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
8760
8761         * src/SDCCglue.c (printExterns): Added global/extern split.
8762
8763 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
8764
8765         * support/regression/Makefile: added test for mcs51 model large
8766
8767         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
8768
8769         * support/regression/ports/gbz80/spec.mk: added -mgbz80
8770
8771 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
8772
8773         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
8774
8775 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
8776
8777         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
8778
8779         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
8780
8781 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
8782
8783         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
8784
8785         * support/regression/tests/simplefloat.c: Port to mcs51.
8786
8787 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
8788         * support/regression/tests/bug-485362.c: Added.
8789
8790         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
8791
8792         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
8793
8794         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
8795
8796         * src/z80/gen.c (aopDump): Added a dump function.
8797
8798 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
8799         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
8800
8801         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
8802
8803         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
8804
8805         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
8806
8807         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
8808
8809         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
8810
8811         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
8812
8813         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
8814
8815         * support/regression/ports/ds390/support.c: Use tinibios.
8816
8817         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
8818
8819 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
8820
8821         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
8822         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
8823
8824         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
8825
8826         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
8827
8828 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
8829
8830         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
8831
8832         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
8833         (packRegsForIYUse): Created and optimised.
8834
8835 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
8836
8837         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
8838 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
8839
8840         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
8841
8842         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
8843
8844         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
8845
8846 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
8847
8848         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
8849
8850         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
8851
8852 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
8853
8854         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
8855
8856         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
8857
8858         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
8859
8860 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
8861
8862         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
8863         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
8864         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
8865
8866         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
8867
8868         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
8869         (genNotFloat): Added.
8870         (genUminusFloat): Added.
8871
8872         * device/lib/z80/Makefile: Added floating pt stubs.
8873
8874         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
8875
8876         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
8877
8878         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
8879
8880 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
8881
8882         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
8883
8884         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
8885
8886         * sdcc/support/regression/Makefile: Add port ds390.
8887
8888         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
8889
8890         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
8891
8892         * sdcc/support/regression/ports/ds390/spec.mk: Added.
8893
8894         * sdcc/support/regression/ports/ds390/support.c: Added.
8895
8896         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
8897
8898         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
8899
8900         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
8901
8902 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
8903
8904         * device/include/malloc.h: Added z80 and gbz80 support.
8905
8906         * device/lib/gbz80/heap.s: Added.
8907
8908         * device/lib/z80/heap.s: Added.
8909
8910         * device/lib/malloc.c: Added z80 and gbz80 support.
8911
8912         * support/regression/tests/malloc.c (testMalloc): Added.
8913
8914         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
8915
8916         * support/regression/tests/bug-478094.c: Added.
8917
8918         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
8919
8920 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
8921
8922         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
8923
8924         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
8925
8926         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
8927
8928         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
8929
8930         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
8931
8932 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
8933
8934         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
8935
8936 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
8937
8938         * support/regression/tests/bug-477927.c: Added.
8939
8940         * src/z80/peeph.def: Added minor rules.
8941
8942         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
8943
8944         * src/z80/peeph.def: Added jump optimisation modification.
8945
8946 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
8947
8948         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
8949
8950 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
8951
8952         * support/regression/tests/funptrs.c: Added.
8953
8954 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
8955
8956         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
8957
8958 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
8959
8960         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
8961
8962         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
8963
8964         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
8965         (movLeft2ResultLong): Created.
8966
8967         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
8968         (joinPushes): Added.  Joins two char pushes into a word push.
8969
8970 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
8971
8972         * support/cpp2/Makefile.in (install): Added creation of dest dir.
8973
8974         * support/makebin/Makefile (install): Added creation of dest dir.
8975
8976 2001-10-24 Karl Bongers <karl AT turbobit.com>
8977
8978         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
8979
8980 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
8981
8982         * src/z80/ralloc.c: Turned off faulty pack for one use.
8983
8984         * src/z80/peeph-gbz80.def: Removed redundent restart options.
8985
8986         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
8987
8988 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
8989
8990         * support/regression/Makefile: Improved clean
8991
8992         * support/regression/ports/gbz80/spec.mk: Added clean
8993
8994         * support/regression/ports/host/spec.mk: Added clean
8995
8996         * support/regression/ports/z80/spec.mk: Added clean
8997
8998         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
8999
9000         * support/regression/ports/mcs51/timeout.c: little improvements
9001
9002 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
9003
9004         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
9005
9006         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
9007
9008         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
9009
9010 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
9011
9012         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
9013
9014         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
9015
9016 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
9017         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
9018
9019         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
9020
9021         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
9022
9023         * src/mcs51/main.c (_linkCmd): Added bin path to command.
9024
9025         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
9026
9027         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
9028
9029         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
9030
9031         * support/regression/tests/longor.c: Added.
9032
9033 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
9034
9035         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
9036
9037         * as/mcs51/aslink.h: define PATH_MAX
9038
9039         * as/mcs51/asm.h: define PATH_MAX
9040
9041         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
9042
9043         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
9044
9045         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
9046
9047         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
9048
9049         * src/SDCCglobl.h: define PATH_MAX
9050
9051         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
9052
9053         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
9054
9055 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
9056
9057         * src/z80/gen.c (gencjneshort): Fixed
9058
9059         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
9060
9061 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
9062
9063         * support/regression/tests/bug-469671.c: Added.
9064
9065         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
9066
9067 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
9068
9069         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
9070
9071         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
9072
9073 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
9074
9075         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
9076
9077         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
9078
9079         * src/device/lib/_mullong.c : removed hint: nooverlay bug
9080
9081         * src/device/lib/_divuint.c : removed hint: nooverlay bug
9082
9083         * src/device/lib/_divulong.c: removed hint: nooverlay bug
9084
9085         * src/device/lib/_moduint.c : removed hint: nooverlay bug
9086
9087         * src/device/lib/_modulong.c: removed hint: nooverlay bug
9088
9089 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
9090
9091         * 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.
9092
9093         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
9094
9095         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
9096
9097 2001-10-07    <johan AT FRIJA>
9098
9099         * device/lib/gets.c (gets): fixed the return value.
9100
9101 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
9102         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
9103
9104         * 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.
9105
9106         * 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.
9107
9108         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
9109
9110         * src/pic/gen.c: Removed Safe_strdup.
9111
9112         * configure.in: Added option to enable libgc support.
9113
9114         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
9115         (bitVectUnion): Optimised.
9116         (bitVectIntersect): Optimised.
9117         (bitVectBitsInCommon): Optimised.
9118         (bitVectCplAnd): Optimised.
9119
9120         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
9121
9122 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9123
9124         * src/SDCCmain.c: distinguish between assembler debug and plain options
9125
9126         * src/avr/main.c:   remove standard assembler options
9127
9128         * src/ds390/main.c: remove standard assembler options
9129
9130         * src/mcs51/main.c: remove standard assembler options
9131
9132         * src/port.h: removed "PENDING" comment
9133
9134 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9135
9136         * src/device/lib/_mulint.c  : new, with assember functions
9137
9138         * src/device/lib/_mullong.c : new, with assember functions
9139
9140         * src/device/lib/_divuint.c : with assember functions
9141
9142         * src/device/lib/_divsint.c : with assember functions
9143
9144         * src/device/lib/_divulong.c: with assember functions
9145
9146         * src/device/lib/_divslong.c: with assember functions
9147
9148         * src/device/lib/_moduint.c : with assember functions
9149
9150         * src/device/lib/_modsint.c : with assember functions
9151
9152         * src/device/lib/_modulong.c: with assember functions
9153
9154         * src/device/lib/_modslong.c: with assember functions
9155
9156         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
9157
9158         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
9159
9160         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
9161                                       replaced _mululong.c and _mulslong.c by _mullong.c
9162
9163 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9164
9165         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
9166
9167 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9168
9169         * src/SDCCglue.c: test, if win32api is available for MINGW
9170
9171 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9172
9173         * src/SDCCsymt.c: no more _modifier in printTypeChain()
9174         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
9175         * support/regression/ports/gbz80/spec.mk: removed GENERIC
9176         * support/regression/ports/host/spec.mk: removed GENERIC
9177         * support/regression/ports/mcs51/spec.mk: removed GENERIC
9178         * support/regression/ports/z80/spec.mk: removed GENERIC
9179
9180 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
9181
9182         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
9183
9184         * support/regression/tests/bug-467035.c: Created.
9185
9186 2001-10-01    <johan AT FRIJA>
9187
9188         * src/SDCC.y: fixed bug #466586 part 1
9189
9190 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
9191
9192         * SDCCicode.c: z80 has no generic pointers
9193         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
9194
9195 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
9196
9197         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
9198
9199 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
9200
9201         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
9202
9203         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
9204
9205 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
9206
9207         * configure.in: Fixed up so that ucsim is only configured once.
9208
9209         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
9210
9211         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
9212         (getPathDifference): As above.
9213
9214         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
9215
9216         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
9217
9218 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
9219         * .version: Updated to 2.3.1
9220
9221         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
9222         Added copyright header.
9223
9224         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
9225         (assemble): Added support for macro based assembler commands.
9226         (linkEdit): Added support for macro based linker commands.
9227         (preProcess): Changed the pre-processor to use macros.
9228         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
9229         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
9230
9231         * device/lib/z80/crt0.s: Added module name for debugging.
9232
9233 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
9234
9235         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9236
9237         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
9238
9239         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
9240
9241         * src/Makefile.in: Added SDCCmacro and SDCCutil
9242
9243 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
9244
9245         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9246
9247 2001-09-16    <johan AT FRIJA>
9248
9249         * 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.
9250
9251 2001-09-15    <johan AT FRIJA>
9252
9253         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
9254         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
9255
9256 2001-09-11    <johan AT FRIJA>
9257
9258         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
9259
9260 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
9261
9262         * support/regression/tests/bug-460444.c: Added test case.
9263
9264         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
9265         (genCast): Added justification for all of the asserts.
9266
9267 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
9268
9269         * support/regression/support.c: _xdata replaced by xdata
9270
9271         * support/regression/spec.mk: removed _generic
9272
9273 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
9274
9275         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
9276
9277         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
9278         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
9279
9280         * src/z80/peeph.def: Added a rule to optimise shift then compare.
9281
9282         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
9283
9284         * support/regression/tests/bug-460010.c: Added test case.
9285
9286         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
9287
9288 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
9289
9290         * support/regression/Makefile: inter-port-clean adjusted for mcs51
9291
9292         * support/regression/testfwk.c: removed workaround for bug #436344
9293
9294         * support/regression/tests/bp.c: use less memory with mcs51
9295
9296         * support/regression/tests/bug-441448.c: use less memory
9297
9298         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
9299
9300         * support/regression/collate-results.py: typo
9301
9302 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
9303
9304         * support/regression/tests/fetchoverlap.c: Added new test case.
9305
9306         * support/regression/tests/bp.c: Added new test case.
9307
9308         * support/regression/tests/bug-448984.c: Added new test case.
9309
9310         * support/regression/tests/pow2shifts.c: Added new test case.
9311
9312         * src/z80/gen.c: Turned off the noise it normally generates for the release.
9313         (genlshTwo): Fixed right shift for count > 8.
9314
9315         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
9316
9317 2001-09-08    <johan AT FRIJA>
9318
9319         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
9320
9321 2001-09-07    <johan AT FRIJA>
9322
9323         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
9324
9325         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
9326
9327 2001-09-06    <johan AT FRIJA>
9328
9329         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
9330         * bernhard noted me at this: "() equals to (void)" (1.38)
9331
9332 2001-09-05    <johan AT FRIJA>
9333
9334         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
9335
9336 2001-09-04    <johan AT FRIJA>
9337
9338         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
9339
9340
9341 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
9342
9343         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
9344
9345 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
9346
9347         * link/z80/aslink.h: Fixed path for PATH_MAX
9348
9349 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
9350
9351         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
9352
9353         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
9354
9355         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
9356
9357         * 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.
9358
9359 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
9360
9361         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
9362         (genCmp): Fixed up genCmp for the GB with longs.
9363
9364         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
9365
9366         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
9367
9368         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
9369
9370         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
9371
9372 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
9373
9374         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
9375
9376 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
9377
9378         * 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.
9379
9380         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
9381
9382 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
9383
9384         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
9385
9386         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
9387
9388 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
9389
9390   * sim/ucsim/configure:    little improvement of Cygwin-detection
9391   * sim/ucsim/configure.in: little improvement of Cygwin-detection
9392   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
9393   * support/regression/tests/bug-221100.c: small changes for mcs51
9394   * support/regression/tests/bug-221168.c: small changes for mcs51
9395   * support/regression/tests/bug-227710.c: small changes for mcs51
9396   * support/regression/tests/staticinit.c: small changes for mcs51
9397   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
9398   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9399   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9400
9401 $Revision$