* device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
[fw/sdcc] / ChangeLog
1 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
2
3         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
4
5 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
6
7         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
8
9 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10
11         * device/include/mcs51/at89c51ed2.h: added.
12
13 2005-07-23 Raphael Neider <rneider AT web.de>
14
15         * src/pic/gen.h: added emitpcode macro for debugging
16         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
17           and replace by macro adding debug information on demand
18         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
19         * (gencjne): tried to fix; replaced with correct (slower) code
20         * (gen{Unp,P}ackBits): fixed single bit access
21         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
22         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
23           previous instruction
24         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
25           register has to be handled with care (forbidding movement
26           of assignments/uses, removing assignments completely, ...)
27         * (pCodeOptime2pCodes): make use of regIsSpecial
28         * added lots of debugging output (commented out)
29         * src/pic/rallloc.c (deassignLRs): prevent operand registers
30           from being reused as result UNLESS it is known to work
31
32 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
33
34         * support/Util/dbuf.h: include <stddef.h> for size_t
35         * .version: changed to version 2.5.2
36
37 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
38
39         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
40
41 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
42
43         * src/hc08/gen.c (genMinus): fixed bug #1241835,
44           (genModOneByte): removed needless psha/pula
45
46 2005-07-22 Raphael Neider <rneider AT web.de>
47
48         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
49           have PIC14 handled like PIC16, fixes broken pic14 linker calls
50         * src/pic/gen.c (resolveIfx): do not "invent" labels
51         * (genSkipc): changed to positive logic
52         * (genSkipCond): removed as no longer needed
53         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
54           backport from PIC16
55         * (genLeftShift): check operands are in different registers
56         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
57           INCF does not update CARRY...
58         * src/pic/main.c: fixed _linkCmd
59         * src/pic/pcode.c (unlinkpCode): added inactive code
60         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
61           alive (do not assign result and operand overlapping registers)
62
63 2005-07-22 Raphael Neider <rneider AT web.de>
64
65         * src/pic/device.c (dump_sfr): replaced register declaration with
66           call to emitSymbolToFile() to avoid duplicate symbols
67         * (assignRelocatableRegisters): do not declare external symbols
68         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
69           right (take size of type, not etype)
70         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
71         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
72         * (packRegsForAccUse): disabled assignment of WREG as
73           the result reg to prevent occurence of just fixed #1235003,
74           fixes #1242954
75         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
76           symbols (avoids duplicate symbols in .asm file)
77         * (pic14emitRegularMap): use emitSymbolToFile()
78         * src/pic/gen.c (aopOp): fixed spillLocation handling
79         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
80         * (genDataPointerSet): removed unneccessary variables/output
81
82 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
83
84         * as/mcs51/lkarea.c: enlarged codemap for banked memory
85         * device/lib/mcs51/crtbank.asm: added # to 0x0F
86
87 2005-07-21 Raphael Neider <rneider AT web.de>
88
89         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
90           architecture cannot handle them efficiently, fixes bug #1235003
91         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
92           check for empty sets before using them (fixes bug #1232190)
93
94 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
95
96         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
97           (lnksect2): generate warnings for memory overlap
98         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
99           constseg to set the name of these segments so you can instruct the linker
100           to place them in banks
101         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
102         * src/SDCCglobl.h: added MODEL_HUGE to enum,
103           added code_seg and const_seg to options
104         * src/SDCCglue.c (emitMaps): use options.const_seg,
105           (createInterruptVect): put interrupt vectors in segment HOME,
106           (glue): put HOME before static segment and put the main glue in HOME,
107           (glue): use options.code_seg
108         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
109         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
110           these segments so you can instruct the linker to place them in banks
111           (linkEdit): use code_loc for HOME segment which should be the first
112           segment in code memory now
113         * src/SDCCmem.c: fixed more stuff like bug 1238386
114         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
115           (changePointer): don't change function pointers to code pointers for
116           banked functions,
117           (compareType): added exceptional check for banked function pointers
118         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
119         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
120           after static in code memory
121         * src/mcs51/gen.c: added aopLiteralLong prototype,
122           (aopForSym): use getSize for functions,
123           (genCall): generate banked calls over one trampoline __sdcc_banked_call
124           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
125           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
126           the segment,
127           (genPcall): use call for literal function pointers and generate banked
128           calls over the one trampoline so there's only one place for the user to
129           modify according to his/hers hardware,
130           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
131           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
132         * src/mcs51/main.c: added keyword banked,
133           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
134         * support/Util/SDCCerr.c,
135         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
136           needed for passing the bank and address to the trampoline
137         * device/lib/mcs51/crtbank.asm: added for bankswitching
138         * device/lib/mcs51/Makefile: added crtbank
139
140 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
141
142         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
143           for fields at offset 0 of a struct or union as reported
144           on 2005-07-07 in the developer mailing list.
145
146 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
147
148         * src/SDCCmem.c: fixed bug 1238386
149
150 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
151
152         * src/mcs51/peeph.def: added labelrefcounting for peepholes
153           (patch #1144962), added peephole 300, enabled 259.x
154         * doc/sdccman.lyx: removed screenshot and provided link instead
155
156 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
157
158         * doc/sdccman.lyx: added section about debugging with ddd
159         * doc/figures/ddd_example.eps: screenshot of debugging session
160
161 2005-07-04 Raphael Neider <rneider AT web.de>
162
163         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
164           like CODE pointers, fixes #1115683
165         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
166           call, fixes bugs #1232211, #1228110,
167           fixed wrong casts to pCodeFlow from pCodeInstructions
168
169 2005-07-04 Raphael Neider <rneider AT web.de>
170
171         * src/pic/gen.c (popGet): changed assert to allow for
172           bit operands
173         * (popGetAddr): changed signature to provide
174           an additional index, patched all call sites
175         * (genCmpEq): handle literal-like operands correctly
176         * (genAddrOf): added sanity checks on __code/__data pointers
177         * (genAssign): added handling of symbols from __code section
178         * (gencjne): do not generate code for comparisons whose result
179           is neither stored nor used, fixes bug #1171114
180         * (AccLsh, AccRsh): operate on operand instead of WREG
181         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
182           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
183           by known count
184         * rewrote complete shift-by-literal logic, commented unused
185           functions out
186         * (genConstPointerGet): get multiple bytes (if result size > 1),
187           fixed handling of non-immediate addresses
188         * (genPointerGet): handle CODE pointers like CONST pointers
189         * (genpic14Code): insert C-SRC lines as Cource-pCodes
190         * ({aop,op}_isLitLike): NEW, single place to decide whether an
191           operand is to be treated as a literal or not
192         * (mov2w,genPcall,genCmpEq),
193           src/pic/genarith.c: use aop_isLitLike() to decide between
194           literal/register contents
195         * (addSign): added missing offset
196         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
197           only emit comment in debug-mode,
198           use {aop,op}_isLitLike throughout the file
199         * src/pic/glue.c: fix initializers for pointers (work in progress)
200         * src/pic/pcode.c (get_op): honor index on _const symbols
201         * ({reset,dump}pCodeStatistics): NEW, estimate code size
202         * (dumppBlock): added pCode size estimation
203         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
204           check for IS_SYMOP before OP_SYMBOL'ing
205         * fixed indentation, compacted switch-statements
206         * (allocReg): find free register and allocate it instead of
207           allocating new registers all the time
208         * (deassignLRs): prevent POINTER_GET's from being assigned the same
209           registers as its operands (necessary only for multibyte GETs)
210
211 2005-07-01 Raphael Neider <rneider AT web.de>
212
213         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
214           debugging .asm-output macros FENTRY + FEXIT
215         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
216           way... I wonder...
217         * (emitpComment): NEW, printf to pCode
218         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
219           offset handling
220         * (popGetAddr): NEW, variant of popGet to access an immediates
221           high(er) bytes instead of the n'th byte of memory they reference,
222           replaced popGet with popGetAddr where neccessary
223         * (genDataPointerGet): reactivated and fixed implementation
224         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
225           accesses
226         * (genDataPointerSet): fixed multibyte assignments
227         * (genpic14Code): fixed --i-code-in-asm handling
228         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
229         * (genPlus): fixed index-out-of-bounds error
230         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
231         * src/pic/ralloc.c: added debugging output macro FENTRY2
232         * (spillThis): fixed indentation, enbraced for-body for clarity
233         * (rematStr): commented out as now unused
234         * (regTypeNum): commented out special spill case (overwrites
235           arbitrary values)
236         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
237
238 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
239
240         * doc/sdccman.lyx: documented sfr16/sfr32,
241           added example for using storage class with function pointers
242         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
243
244 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
245
246         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
247         * device/lib/_itoa.c,
248         * device/lib/_ltoa.c: optimized codesize
249         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
250           but don't know how to suppress the double warning.
251         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
252         * support/Util/SDCCerr.c,
253         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
254
255 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
256
257         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
258           fixed old K&R prototypes
259         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
260         * device/lib/_gptrget.c,
261         * device/lib/_gptrgetc.c,
262         * device/lib/_gptrput.c: changed versions for new memory indicator values,
263           also new versions for small generic pointers and banked generic pointers
264         * src/port.h: added const_name
265         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
266         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
267         * src/SDCCcse.c (findPrevIc): check all associative operators
268         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
269         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
270         * src/SDCCmem.c: updated comments,
271           set far-space to 0 for pdata, results in optimized code
272         * src/SDCCmem.h: added macro CONST_NAME
273         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
274           moving the info into the highest bits, see also gptrget/gptrput
275         * src/src.dsp: added sdcc.ico to project files
276         * src/avr/gen.c (genCast): fixed bug 0x%d
277         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
278         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
279           relation between ptr_type and DCL_TYPE,
280           (genCast): fixed bug 0x%d
281         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
282           (CODE)" for const_name
283         * src/hc08/gen.c (genCast): fixed bug 0x%d
284         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
285           (hc08_port): added "CONST (CODE)" for const_name
286         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
287           (aopForRemat, adjustArithmeticResult): disconnected direct relation
288           between ptr_type and DCL_TYPE,
289           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
290           operand* and took AOP() inside function so sfr-ness can be checked,
291           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
292           new prototype,
293           (genFunction, genEndFunction): optimized stack setup,
294           (genMinus): optimized for literals with ending zeroes (in bytes),
295           (genCast): fixed bug 0x%d
296         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
297           (mcs51_port): added "CONST (CODE)" for const_name
298         * src/mcs51/peeph.def: made rule 226 more generic
299         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
300         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
301         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
302         * src/z80/main.c (z80_port): added NULL for const_name,
303           (gbz80_port): added NULL for const_name
304         * support/regression/tests/bug663539.c,
305         * support/regression/tests/sfr16.c: new tests
306
307 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
308
309         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
310
311 2005-06-24 Raphael Neider <rneider AT web.de>
312
313         * device/lib/pic16/libdev/pic18f[68][567]20.c:
314           corrected typos...
315         * device/include/pic16/signal.h: added USBIF
316           and SIG_USB
317
318 2005-06-24 Raphael Neider <rneider AT web.de>
319
320         * device/lib/pic16/libdev/pic18f2455.c,
321           device/include/pic16/pic18f2455.h: NEW
322         * device/include/pic16/pic18fregs.h,
323           device/lib/pic16/pics.all,
324           src/pic16/device.c: added 18f2455
325         * device/lib/pic16/libdev/pic18f[68][567]20.c,
326           device/include/pic16/{pic18f[68][567].h,usart.h}:
327           replaced MULTIPLE_USARTS define with more relaible
328           compatibility sfrs (for USART access)
329
330 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
331
332         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
333           and the output asm file line is printed on two lines.
334
335 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
336
337         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
338           BGT, BLE, BHI, and BLS instructions
339         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
340           genCmpEq): removed
341         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
342           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
343           fixes bug #1216342
344         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
345
346 2005-06-15 Raphael Neider <rneider AT web.de>
347
348         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
349         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
350         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
351           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
352           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
353
354 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
355
356         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
357           Marcel Telka in bug #1215704
358
359 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
360
361         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
362           located in shared memory bank.
363
364 2005-05-31 Raphael Neider <rneider AT web.de>
365
366         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
367           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
368           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
369
370 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
371
372         * device/lib/_strncpy.c: fixed the fix
373
374 2005-05-26 Raphael Neider <rneider AT web.de>
375
376         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
377           initializers with \0, bug #1208187
378         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
379           intializers with \0, bug #1208187
380
381 2005-05-26 Raphael Neider <rneider AT web.de>
382
383         * src/pic16/glue.c (pic16_printIvalChar): fixed string
384           initializers with \0, bug #1208187
385         * src/pic16/main.c (_process_pragma): added sanity checks
386           for stack position and size, emit warnings when appropriate
387
388 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
389
390         * device/lib/_strncpy.c: fixed not filling with \0
391
392 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
393
394         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
395           createFunction),
396         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
397           compound_statement),
398         * src/SDCCsymt.h,
399         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
400
401 2005-05-24 Raphael Neider <rneider AT web.de>
402
403         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
404
405 2005-05-24 Raphael Neider <rneider AT web.de>
406
407         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
408           TRISE definitions, closes bug #1162453
409
410 2005-05-22 Raphael Neider <rneider AT web.de>
411
412         * src/pic16/main.c (_process_pragma): check for missing
413           arguments to pragmas code and udata
414         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
415           consistency fixes to match other headers (thanks to Jim Paris)
416         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
417
418 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
419
420         * src/SDCCicode.c (isOperandEqual): fixed missing ;
421
422 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
423
424         * support/regression/tests/bug1198642.c: new test
425         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
426         * src/SDCCcse.c (findPrevIc): added comment, please have a look
427         * support/scripts/resource.h,
428         * support/scripts/resource.rc,
429         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
430         * support/scripts/sdcc.ico: added 32x32 icon
431
432 2005-05-18 Raphael Neider <rneider AT web.de>
433
434         * device/lib/pic16/libdev/pic18f*.c,
435         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
436           keywords to "__sfr" and "__at (X)"
437         * device/include/pic16/pic18fregs.h: added pic18f4520
438         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
439           #1203088 (MPLAB compatibility)
440
441 2005-05-17 Raphael Neider <rneider AT web.de>
442
443         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
444         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
445         * device/lib/pic16/pics.all: added new devices
446         * src/pic16/device.c: added support for pic18f4520
447
448 2005-05-16 Raphael Neider <rneider AT web.de>
449         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
450         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
451         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
452           convenience function for bit access
453
454 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
455
456         * device/lib/printf_large.c: fixed bug 1193299
457         * support/regression/tests/bug1057979.c: added test %3.3s
458
459 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
460
461         * device/include/mcs51/8051.h,
462         * device/include/mcs51/8052.h: made parseable with lint
463         * device/include/mcs51/lint.h: added include file for (sp)lint
464         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
465         * doc/cdbfileformat.lyx,
466         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
467
468 2005-05-14 Raphael Neider <rneider AT web.de>
469
470         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
471         * device/lib/pic16/libc/stdlib/itoa.c (new)
472         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
473         * device/lib/pic16/libio/Makefile: exclude subdir according to
474           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
475         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
476         * src/pic16/gen.c (genFunction): prevent annoying warning
477         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
478           nameclashes on BeOS
479         * support/cpp2/cppmain.c (cpp_output_string): new
480         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
481           fixes bug 1116802
482
483 2005-05-13 Borut Razem <borut.razem AT siol.net>
484
485         * src/SDCCmain.c (linkEdit): fixed bug 1195202
486
487 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
488
489         * .version: changed to version 2.5.1; back to bleeding edge development
490
491 2005-05-11 Borut Razem <borut.razem AT siol.net>
492
493         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
494           generate PDF version 1.3 documents
495
496 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
497
498         * .version: changed to version 2.5.0
499
500 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
501
502         * doc/sdccman.lyx: updated weblinks, index and smaller updates
503
504 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
505
506         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
507         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
508         well as many smaller updates.
509         * .version: changed to version 2.5.0-pre1
510
511 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
512
513         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
514
515 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
516
517         * support/regression/tests/bug1185672.c: added
518         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
519           bug 1185672
520         * src/mcs51/gen.c (genCall): added comments, made it look safer
521         * src/mcs51/gen.c (genEndFunction): simplified
522
523 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
524
525         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
526
527 2005-04-14 Borut Razem <borut.razem AT siol.net>
528
529         * fixed bug 1045046 - SIGSEGV with really simple code?:
530           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
531           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
532
533 2005-04-14 Borut Razem <borut.razem AT siol.net>
534
535         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
536           src/pic16/device.h: temporarily disabled experimental #inline pragma
537           for 2.5.0 release
538
539 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
540
541         * device/include/z80/stdio.h,
542         * device/include/z80/string.h: removed these highly incomplete files so
543           SDCC can use the default ones in device/include/
544
545 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
546
547         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
548         gcc warning.
549         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
550         fix sdcpp warnings.
551
552 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
553
554         * device/include/malloc.h: removed redundant __reentrant prototypes
555         * device/lib/_mullong.c: added working xstack variant in asm (C version
556           doesn't pass regression tests)
557         * device/lib/bpx.c: used __data and made bpx char for mcs51
558         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
559           (createFunction): fixed bug with xstackPtr
560         * src/SDCCcse.c: corrected comments
561         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
562           (killDeadCode, eBBlockFromiCode): removed unused code
563         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
564           corrected comments
565         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
566           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
567           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
568           (genModOneByte): fixed warning in MSVC
569         * src/mcs51/main.c (): added comments
570         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
571
572 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
573
574         * src/SDCCmain.c (linkEdit): oops, changed one line too many
575
576 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
577
578         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
579
580 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
581
582         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
583         characters arrays of larger size than the declared one.
584
585 2005-04-10 Borut Razem <borut.razem AT siol.net>
586
587         * src/pic/gen.c (genInline),
588           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
589           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
590           (findNextInstruction), (findPrevInstruction),
591           (findInstructionUsingLabel),
592           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
593         * src/pic/pcode.c (findLabel): added missing '\n'
594         * src/src.dsp: added SDCCdwarf2.c to the project
595
596 2005-04-09 Borut Razem <borut.razem AT siol.net>
597
598         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
599
600 2005-04-08 Raphael Neider <rneider AT web.de>
601
602         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
603           into the chain after a given one) and mergeDefmapSymbols (combine
604           defmap entries for each symbol per pcode)
605         * (createDefmap): have defmap entries merged in the end
606         * (defmapReplaceSymRef): split defmap entries covering two accesses to
607           a symbol before replacing one access type's symbol, merge symbols in
608           the end (replacement symbol might already have an entry)
609         * (assignValnums): keep reference to written WREG intact
610
611 2005-04-08 Raphael Neider <rneider AT web.de>
612
613         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
614           Alpha)
615
616 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
617
618         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
619         bytes
620
621 2005-04-07 Raphael Neider <rneider AT web.de>
622
623         * device/include/pic16/usart.h: added compatibility defines for
624           devices with more than one USART
625         * device/include/pic16/pic18f[68][567]20.h: activated above defines
626
627 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
628
629         * device/lib/Makefile.in: updated for port specific include
630
631 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
632
633         * support/regression/ports/mcs51/spec.mk: added mcs51 include
634
635 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
636
637         * device/include/8051.h,
638         * device/include/8052.h,
639         * device/include/at89S8252.h,
640         * device/include/at89c55.h,
641         * device/include/at89x051.h,
642         * device/include/at89x51.h,
643         * device/include/at89x52.h,
644         * device/include/mcs51reg.h,
645         * device/include/reg51.h,
646         * device/include/reg764.h,
647         * device/include/regc515c.h,
648         * device/include/sab80515.h: (re)moved these 12 files
649         * device/include/mcs51/8051.h,
650         * device/include/mcs51/8052.h,
651         * device/include/mcs51/at89S8252.h,
652         * device/include/mcs51/at89c55.h,
653         * device/include/mcs51/at89x051.h,
654         * device/include/mcs51/at89x51.h,
655         * device/include/mcs51/at89x52.h,
656         * device/include/mcs51/mcs51reg.h,
657         * device/include/mcs51/reg51.h,
658         * device/include/mcs51/reg764.h,
659         * device/include/mcs51/regc515c.h,
660         * device/include/mcs51/sab80515.h: and added them here
661
662 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
663
664         * device/include/stdarg.h: changed SDCC specific keywords to double
665           underlined form.
666         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
667           mcs51 and ds390.
668         * device/include/hc08/mc68hc908gp32.h,
669         * device/include/hc08/mc68hc908jb8.h,
670         * device/include/hc08/mc68hc908jkjl.h,
671         * device/include/hc08/mc68hc908qy.h: fixed comments
672         * device/include/mcs51/README: updated
673         * device/include/mcs51/c8051f120.h: added PINRSF
674         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
675         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
676           amidst code. Also inline is not supported.
677
678 2005-04-06 Raphael Neider <rneider AT web.de>
679
680         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
681         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
682           callers stack/frame pointers
683
684 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
685
686         * device/include/pic16/usart.h: added, missing in previous commit,
687         * device/include/pic16/adc.h: fixed typo,
688         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
689         commit,
690         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
691         <p18fxxx.inc>
692         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
693         uninitialized because a bug appears with gplink
694         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
695         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
696         complains for unrecognised option
697
698 2005-04-05 Raphael Neider <rneider AT web.de>
699
700         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
701           structs as well (using memcpy)
702         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
703           on ISRs (GOTO has no label)
704         * src/pic16/device.h: added OF_OPTIMIZE_DF
705         * src/pic16/main.c: added compiler switch --optimize-df to enable the
706           new data flow analysis/optimization
707         * src/pic16/pcode.c: added (prototypes for and implementation of)
708           dataflow analysis functions, fixed pCodeInstructions' inCond and
709           outCond values, made RCALL a branch instruction
710         * (pic16_unlinkpCode): keep C line if possible
711         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
712           C line moved if possible
713         * (pic16_getRegFrompCodeOp): NEW, improved version of...
714         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
715           to use new pic16_getRegFrompCodeOp (works for more SFRs)
716         * (pic16_BuildFlow): fixed skip instructions with label (did not start
717           new flow)
718         * (pic16_getJumptabpCode): NEW, needed in...
719         * (LinkFlow): fixed handling of jumptables, calls and conditional
720           branches
721         * (pic16_InsertCommentAfter): NEW
722         * (pic16_pCodeReplace): made verbose and flow preserving
723         * (AnalyzeFlow): added call to data flow analysis
724         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
725         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
726         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
727
728 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
729
730         * src/SDCCast.c (decorateType): fixed bug #1105626
731
732 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
733
734         * device/include/asm/pic16/features.h,
735         * pic18f*.h headers,
736         * device/include/pic16/adc.h,
737         * device/include/pic16/delay.h,
738         * device/include/pic16/i2c.h,
739         * device/include/pic16/malloc.h,
740         * device/include/pic16/stdio.h,
741         * device/include/pic16/stdlib.h,
742         * device/include/pic16/string.h,
743         * device/lib/pic16/libc/stdio/printf_tiny.c,
744         * device/lib/pic16/libc/stdio/printf_small.c,
745         * device/lib/pic16/libc/stdio/strmgpsim.c,
746         * device/lib/pic16/libc/stdio/strmmssp.c,
747         * device/lib/pic16/libc/stdio/strmusart.c,
748         * device/lib/pic16/libc/stdio/vfprintf.c,
749         * device/lib/pic16/libc/stdlib/ltoa.c,
750         * device/lib/pic16/libc/stdlib/putchar.c,
751         * device/lib/pic16/libc/stdlib/x_ftoa.c,
752         * device/lib/pic16/libc/stdlib/memchrpgm.c,
753         * device/lib/pic16/libc/stdlib/memchrram.c,
754         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
755         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
756         * device/lib/pic16/libio/adc/adcbusy.c,
757         * device/lib/pic16/libio/adc/adcread.c,
758         * device/lib/pic16/libio/adc/adcsetch.c,
759         * device/lib/pic16/libio/usart/ubaud.c,
760         * device/lib/pic16/libio/usart/ubusy.c,
761         * device/lib/pic16/libio/usart/udrdy.c,
762         * device/lib/pic16/libio/usart/uopen.c,
763         * device/lib/pic16/libio/usart/uputc.c,
764         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
765         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
766         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
767         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
768         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
769         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
770         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
771         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
772         specific keywords to double underlined form,
773         * device/lib/pic16/libc/Makefile.rules,
774         * device/lib/pic16/libsdcc/Makefile.rules,
775         * device/lib/pic16/libm/Makefile,
776         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
777         to compile with C standard set in Makefile.common
778         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
779         rand.c and crc.c in compilation process,
780         * device/lib/pic16/libsdcc/int/divuint.c,
781         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
782         `c' from signed to unsigned,
783         * device/lib/pic16/startup/crt0.c,
784         * device/lib/pic16/startup/crt0i.c,
785         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
786         keywords to double underlined form, bug fixes in _do_cinit function
787         which prevented the correct initialization of the .idata segment,
788         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
789         core to enter a infinite loop
790         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
791
792 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
793
794         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
795
796 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
797
798         * device/include/Makefile.in: add support for hc08 subdirectory
799         * device/include/hc08/: new subdirectory
800         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
801         Lucas Loizaga, thanks!
802         * device/include/hc08/mc68hc908qy.h,
803         * device/include/hc08/mc68hc908gp32.h,
804         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
805         their own directory. Changed internal macro names to use the compiler
806         reserved namespace. Changed SDCC specific keywords to double
807         underlined form.
808         * device/include/math.h,
809         * device/include/malloc.h,
810         * device/include/stdarg.h,
811         * device/include/stdbool.h
812         * device/include/string.h,
813         * device/include/tinibios.h,
814         * device/include/ds400rom.h,
815         * device/include/8051.h,
816         * device/include/8052.h,
817         * device/include/80c51xa.h,
818         * device/include/at89c55.h,
819         * device/include/at89S8252.h,
820         * device/include/at89x51.h,
821         * device/include/at89x52.h,
822         * device/include/ds80c390.h,
823         * device/include/reg764.h,
824         * device/include/regc515c.h,
825         * device/include/sab80515.h,
826         * device/include/mcs51/c8051f000.h,
827         * device/include/mcs51/c8051f018.h,
828         * device/include/mcs51/c8051f020.h,
829         * device/include/mcs51/c8051f040.h,
830         * device/include/mcs51/c8051f060.h,
831         * device/include/mcs51/c8051f120.h,
832         * device/include/mcs51/c8051f300.h,
833         * device/include/mcs51/c8051f310.h,
834         * device/include/mcs51/c8051f320.h,
835         * device/include/mcs51/c8051f330.h,
836         * device/include/mcs51/c8051f350.h,
837         * device/include/z180.h: Changed SDCC specific keywords to double
838         underlined form.
839
840 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
841
842         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
843         18F4455,
844         * (pic16_assignConfigWordValue): disable testing of configuration
845         register value with config mask,
846         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
847         function with port->fun_prefix,
848         * (genFunction): when generating a naked interrupt function never
849         create an absolute segment placed in interrupt vector address, place
850         the actual interrupt function at IVA instead, when an interrupt
851         function is generated with unspecified interrupt then do not create
852         the absolute section,
853         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
854         code for generating a call to generic pointer get/put function with
855         a call to function pic16_callGenericPointer(),
856         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
857         the call to the generic pointer get/put functions with prefixing the
858         function name with port->fun_prefix,
859         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
860         * src/pic16/main.c (_process_pragma): prefix function with
861         port->fun_prefix,
862         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
863         calling assembler, old 18Fxxxx macro is deprecated,
864         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
865         PC_ASMDIR in while condition,
866         * (findInstruction): add PC_ASMDIR in while condition,
867         * (buildCallTree): prefix main with port->fun_prefix,
868         * (pic16_pCode2str): fixed bug that didn't emit the memory access
869         identifier for variable with banked access in instructions BTFSS,
870         BTFSC, BCF, BSF, BTG
871         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
872         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
873         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
874         perform optimization when enviroment variable NO_REG_OPT is set,
875         * (insideLRBlock): NEW, return 1 if register is inside an
876         INF_LOCALREGS block,
877         * (RemoveRegFromLRBlock): remove a register that is completely
878         eliminated by register optimization, but it is still left in local
879         register store/restore in/from stack block,
880         * (Remove2pcodes): after removing register, check to see if it
881         should be removed from local register store/restore in/from stack
882         block,
883         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
884         DUMMY_READ_VOLATILE,
885
886         * device/include/pic16/adc.h: minor prototype modifications and
887         update,
888         * device/include/pic16/malloc.h: added GPL notice various
889         modifications,
890         * device/include/pic16/stdint.h: NEW, standard header for ints
891         * device/include/pic16/delay.h: NEW, header for delay functions,
892         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
893         delay1mtcy,
894         * device/include/pic16/signal.h: NEW, header providing helper macros
895         for implementing signal handlers,
896         * device/include/pic16/stdio.h: added prototypes for functions,
897         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
898         prototypes for stdin and stdout, added macro PUTCHAR to
899         automatically implement putchar function prototype,
900         * device/include/pic16/usart.h: modified and updated USART library,
901         * device/lib/pic16/libio/adc/,
902         * device/lib/pic16/libio/i2c: some modifications to improve library
903         performance,
904         * device/lib/pic16/libc/stdio/: modifications for the new printf*
905         family of functions,
906         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
907         family of functions and other sources,
908         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
909         of the PIC18Fxx[28] devices,
910         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
911         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
912         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
913         _do_cinit function, because the previous failed when local variables
914         where not placed in the same memory bank,
915         * device/lib/pic16/libsdcc/char/: various modifications to improve
916         library performance,
917         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
918         information on the new functions of the c library and more...
919
920 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
921
922         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
923
924 2005-03-26 Raphael Neider <rneider AT web.de>
925
926         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
927           if condition == CARRY)
928         * (genCmp): adapted to new genSkipc semantics
929         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
930           on rIfx (genCmp was broken)
931
932 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
933
934         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
935         * src/z80/main.c (_keywords[]),
936         * src/SDCCglobal.h (struct options),
937         * src/SDCC.y,
938         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
939         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
940         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
941         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
942         always available in leading double underscore form. The C99 support is
943         mostly missing, but it's a start.
944         * support/regression/tests/bug-227710.c: fixed nonconforming use of
945         reserved identifier "__data".
946
947 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
948
949         * src/mcs51/peeph.def: fixed bug 1170013
950
951 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
952
953         * device/include/mcs51reg.h: fixed bug 842007
954
955 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
956
957         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
958         last time.
959
960 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
961
962         * src/port.h (struct PORT),
963         * src/avr/ralloc.c (avr_assignRegisters),
964         * src/avr/main.c,
965         * src/ds390/ralloc.c (ds390_assignRegisters),
966         * src/ds390/main.c,
967         * src/hc08/ralloc.c (hc08_assignRegisters),
968         * src/hc08/main.c,
969         * src/mcs51/ralloc.c (mcs51_assignRegisters),
970         * src/mcs51/main.c,
971         * src/pic/ralloc.c (pic14_assignRegisters),
972         * src/pic/main.c,
973         * src/pic16/ralloc.c (pic16_assignRegisters),
974         * src/pic16/main.c,
975         * src/xa51/ralloc.c (xa51_assignRegisters),
976         * src/xa51/main.c,
977         * src/z80/ralloc.c (z80_assignRegisters),
978         * src/z80/ralloc.h,
979         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
980         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
981         * src/SDCCcse.h,
982         * src/SDCCdflow.c (computeDataFlow),
983         * src/SDCCdflow.h,
984         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
985         * src/SDCCloop.h,
986         * src/SDCCcflow.c (*),
987         * src/SDCCcflow.h,
988         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
989         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
990         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
991         immedDom() returning wrong block; probably fixes bug #1160833)
992
993 2005-03-20 Borut Razem <borut.razem AT siol.net>
994
995         * support/scripts/inc2h.pl: WIN32 port
996
997 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
998
999         * device/lib/makefile.in: added abs.c and labs.c
1000
1001 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
1002
1003         * device/include/stdint.h: added
1004         * device/lib/abs.c: added
1005         * device/lib/labs.c: added
1006         * device/include/stdlib.h: added abs() and labs() prototypes
1007         * device/lib/libsdcc.lib: added abs and labs
1008         * device/include/float.h,
1009         * device/lib/_fsmul.c,
1010         * device/lib/printf_fast.c,
1011         * device/lib/printf_tiny.c: updated comments
1012
1013 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1014
1015         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
1016         bug #1164313
1017
1018 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1019
1020         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
1021         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
1022
1023 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
1024
1025         * device/lib/printf_large.c: removed inline assembly for portability and
1026           readability. Use printf_fast if speed or size are more important.
1027         * src/pic16/gen.c: removed conditions around use of DEBUGpc
1028         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
1029
1030 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
1031
1032         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
1033         prevent compiler warning
1034
1035 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
1036
1037         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
1038         moved to level 0 and declared as static. Also they are explicit
1039         placed in access bank. This was necessery because some times they
1040         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
1041         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
1042         optimizations. Currently only compare to unsigned char is implemented,
1043         * src/pic16/gen.c: added fReturnIdx array,
1044         * (struct resolvedIfx) is moved to gen.h and made public,
1045         * (struct _G): added sregsAlloc and sregsAllocSet fields,
1046         * (aopForSym): added an optimization to directly store in stack of
1047         the operand of a SEND iCode,
1048         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
1049         but as registers instead (AOP_REG) using the fReturnIdx array,
1050         * (pic16_freeAsmop): remove the freed register from the
1051         _G.sregsAlloc field,
1052         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
1053         a compare of 'WREG',
1054         * (pic16_popGetTempRegCond): changed function prototype, now
1055         function takes also a bitVector argument v which holds the current
1056         set of registers that are allocated for stack access by aopForSym,
1057         registers allocated in aopForSym for accessing stack symbols are not
1058         any more part of the functions usedRegs field,
1059         * (genCall): some times aopOp is called for a stack variable to be
1060         send, aopForSym might perform the push, if this is true make sure
1061         that genCall doesn't push the variable twice by testing _G.resDirect,
1062         * (genFunction): changed testing for unspecified interrupt number
1063         from 256 to INTNO_UNSPEC,
1064         * modified selection scheme of frame pointer generation. Previously
1065         if function did use local registers a frame pointer was generated,
1066         now a frame pointer is generated only if function has arguments
1067         (that need PLUSW2 register access), or has stack arguments, or the
1068         compiler is not instructed to omit the frame pointer,
1069         * (genEndFunction): before restoring local registers that were saved
1070         in the function preamble, also restore the registers that *might*
1071         have been allocated for stack access,
1072         * (genRet): removed some old comments,
1073         * (genCmp, the active (RN's) version): added a call to the
1074         pic16_genCmp_special function to perform the compare with a more
1075         robust and optimized way,
1076         * (genInline): a feature has been added in inline code generation,
1077         which allows a wildcard variable substitution when writing inline
1078         assembly. Code is incomplete and experimental therefore undocumented,
1079         * (genCast): changed order of aopOp for result and right to allow
1080         aopForSym to directly load the result if possible,
1081         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
1082         perform an optimized compare on some selected special occasions,
1083         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
1084         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
1085         generate an IVT any more,
1086         * src/pic16/main.c (pic16_optionsTable): added command line option
1087         --optimize-cmp,
1088         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
1089         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
1090         macros,
1091         * src/pic16/NOTES: Raphael Neider added in list of active developers
1092         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
1093         jumptable_end to prevent bug #,
1094         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
1095         inCond and outCond fields,
1096         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
1097         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
1098         turn off register spilling,
1099         * (packRegsForOneUse): synced with other ports' versions although it
1100         is not used currently,
1101         * (pic16_packRegisters): added an optimization while reading
1102         structure bitfields, some registers may be saved (malloc code is
1103         decreased by 80 bytes)
1104
1105 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
1106
1107         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
1108         left is a bitfield, if yes, then don't optimize assignment. Perhaps
1109         this can be optimized more?
1110
1111 2005-03-10 Raphael Neider <rneider AT web.de>
1112
1113         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
1114           genNearPointerGet): (hopefully) fixed access to bitfields via
1115           pointers (p->bitN = x; and x = p->bitN; failed)
1116
1117 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
1118
1119         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
1120
1121 2005-03-09 Raphael Neider <rneider AT web.de>
1122
1123         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
1124
1125 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
1126
1127         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
1128         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
1129           (regTypeNum): set REG_BIT type if necessary
1130         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
1131         * support/regression/tests/critical.c: check bug 1144613
1132
1133 2005-03-02 Raphael Neider <rneider AT web.de>
1134
1135         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
1136
1137 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1138
1139         * src/avr/ralloc.c (serialRegAssign),
1140         * src/ds390/ralloc.c (serialRegAssign),
1141         * src/hc08/ralloc.c (serialRegAssign),
1142         * src/mcs51/ralloc.c (serialRegAssign),
1143         * src/pic/ralloc.c (serialRegAssign),
1144         * src/pic16/ralloc.c (serialRegAssign),
1145         * src/xa51/ralloc.c (serialRegAssign),
1146         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
1147
1148 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
1149
1150         * src/SDCCast.c (decorateType): fixed bug 1124787
1151
1152 2005-02-20 Hubert Sack <sack AT digiplan.de>
1153         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1154
1155         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
1156         patch #1121755
1157
1158 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1159
1160         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
1161         to keep the correct label reference count when adding/removing references
1162         to labels. A peephole file using this is appended to patch #1144962.
1163
1164 2005-02-14 Raphael Neider <rneider AT web.de>
1165
1166         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
1167         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
1168         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
1169           retrievals of result operand's value on assignment
1170
1171 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
1172
1173         * device/include/pic16/string.h: modified prototype for memccpy()
1174         to memccpy(void *, void *, char, size_t)
1175         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
1176         check whether to omit frame pointer or not,
1177         * (genInline): convert all occurences of "\n" to LF in inline
1178         assembler blocks, this helps formatting the inline text,
1179         * (pic16_loadFSR0): modified prototype,
1180         * (genNearPointerGet, genNearPointerSet): reorganization of code,
1181         removed some 8051 legacy code,
1182         * (genPackBits): enabled handling bitfields exceeding one byte in size,
1183         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
1184         before allocating temporary registers in functions,
1185
1186 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1187
1188         * support/regression/tests/bitvars.c: corrected the "fix"
1189
1190 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1191
1192         * support/regression/tests/bitvars.c,
1193         * support/regression/tests/bitwise.c,
1194         * support/regression/tests/rotate.c: "fixed" problems on Alpha
1195
1196 2005-02-10 Raphael Neider <rneider AT web.de>
1197
1198         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
1199           different size for Alpha
1200         * src/pic16/gen.c (genCmpEq) : improved compare with 0
1201
1202 2005-02-09 Raphael Neider <rneider AT web.de>
1203
1204         * src/SDCC.lex(doPragma) : save and restore warning options as well
1205           (also added new stack plus clone- and copyAndFreeSDCCERRG())
1206         * have #pragma less_pedantic set the errorlevel to WARNING
1207           (fixes #1117001)
1208         * (cloneOptimize) : fixed wrong malloc's size
1209         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
1210           facilitate correct handling of #pragma (save|restore)
1211
1212 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1213
1214         * src/mcs51/gen.c: removed non-standard C nameless struct/union
1215
1216 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
1217
1218         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
1219
1220 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
1221
1222         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
1223
1224 2005-02-02 Raphael Neider <rneider AT web.de>
1225
1226         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
1227         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
1228         * (pic16_storeForReturn): fixed to allow returning function pointers
1229         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
1230         * device/include/pic16/{stddef.h,stdbool.h}: added
1231
1232 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
1233
1234         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
1235
1236 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
1237
1238         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
1239         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
1240          appeared to be required
1241
1242 2005-01-31 Borut Razem <borut.razem AT siol.net>
1243
1244         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
1245           include/mcs51 and include/z80 directories to the package
1246
1247 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1248
1249         * src/hc08/gen.c (genFunction): fixed bug #1112752
1250
1251 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1252
1253         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
1254
1255 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1256
1257         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
1258
1259 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
1260
1261         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
1262
1263 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
1264
1265         * device/include/c8051fxxx.h: removed these 6 files
1266         * device/include/mcs51/c8051fxxx.h: added these 11 new files
1267
1268 2005-01-26 Raphael Neider <rneider AT web.de>
1269
1270         * src/pic16/gen.c (genAssign): fixed assignment from longs
1271           in codespace (were cut to three bytes)
1272         * (genDummyRead): implemented (except for CODESPACE...),
1273           fixed bug #1108575
1274         * src/pic16/glue.c (emitStatistics): beautified
1275         * device/lib/pic16/libm/Makefile: added include path
1276
1277 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1278
1279         * src/z80/gen.c (aopPut): fixed bug #1103902
1280
1281 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1282
1283         * device/lib/expf.c: fixed bug #1095792
1284
1285 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
1286
1287         * device/lib/pic16/libm: added Math library sources
1288
1289 2005-01-24 Raphael Neider <rneider AT web.de>
1290
1291         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
1292           to enable upcast to pCodeOpReg2 (there is no type tag to
1293           differenciate the two and pic16_popGet2p cast into PCOR2)
1294         * src/pic16/main.c (_process_pragma): fixed another malloc bug
1295           (sizeof(sectNames) changed to sizeof(sectName))
1296           Both patches fix segfaults under MinGW.
1297
1298 2005-01-23 Raphael Neider <rneider AT web.de>
1299
1300         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
1301           Safe_[mc]?alloc()'ed variables
1302         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
1303           of (byte sized) temporaries (assign them to WREG for now)
1304         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
1305           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
1306           this might fix SIGSEGVs on MinGW...
1307         * src/SDCCopt.c (killDeadCode): restored original behaviour
1308           (volatile operands might get thrown away though)
1309
1310 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
1311
1312         * src/pic16/gen.c: fixed bug #1106975,
1313         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
1314         pointer update, INTCON is saved, global interrupts are disabled and
1315         restored after updateing TOS.
1316         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
1317         * added function attribute 'shadowregs' to take advantage of shadow
1318         registers,
1319         * added function attribute 'wparam' as an alternative to the wparam
1320         pragma,
1321         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
1322         user declares a non-ISR function as 'shadowregs',
1323         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
1324
1325 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
1326
1327         * .version: bumped version number to 2.4.8
1328         * device/lib/pic16/pics.all: list of PIC18F devices supported by
1329         pic16 port,
1330         * device/lib/pic16/libio/i2c/: I2C module support library,
1331         * device/include/pic16/i2c.h: I2C support library header,
1332         * device/lib/pic16/libc/stdio/: standard IO support sources,
1333         * (printf_small.c): printf_small() source, supports float print,
1334         * (printf_tiny.c): printf_tiny() source, does not support floats,
1335         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
1336         enable global optimizations for entire library source, other
1337         Makefiles in the source tree are also modified to reflect this,
1338         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
1339         function,
1340         * doc/sdccman.lyx: updated to reflect new changes,
1341         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
1342         sym->onStack if-case,
1343         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
1344         sbit, idata, _idata, xdata, _xdata,
1345         * added pragma library, to link an external library, (see doc),
1346         * removed command line options, --pomit-config-words, --pomit-ivt,
1347         --pleave-reset-vector,
1348         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
1349         when calling assembler to reflect memory model used, also define
1350         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
1351         reflect stack model used,
1352         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
1353         on stack return NULL,
1354
1355 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1356
1357         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
1358           of the operands is volatile. Fixes #1020220
1359
1360 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1361
1362         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
1363         * (OptimizeRegUsage): make sure that there is really no other flow where
1364           the first pCode is used
1365
1366 2005-01-22 Raphael Neider <rneider AT web.de>
1367
1368         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
1369           to fix #1106967 (pCode->seq are not set up correctly)
1370
1371 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1372
1373         * src/SDCCglue.c (glue): make sure code area is declared before the
1374         static initialization area.
1375
1376 2005-01-21 Raphael Neider <rneider AT web.de>
1377
1378         * device/lib/Makefile.in: fixed test for pic16 install dir
1379         * device/lib/pic16/*/Makefile*: modified compile flags to enable
1380           optimizations
1381         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
1382           added --optimize-goto compiler switch and pragma wparam documentation
1383         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
1384         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
1385           and PRODH closing bug #1071770 (peephole optimizer)
1386
1387 2005-01-19 Raphael Neider <rneider AT web.de>
1388
1389         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
1390           cmdLine buffers (used when calling sdcpp...) are large enough
1391           (MAX_PATH=256 truncates arguments leading to system halts when
1392           used in MinGW...)
1393         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
1394         * (genUminus): rewritten to for efficiency
1395         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
1396           used uninitialized in some cases)
1397         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
1398           copy the third byte from the int -- now assumes 0x80 (data memory)
1399         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
1400           operands (genAddLit expects the iCode's operands to swapped as
1401           well), fixed leftover bytes (crashed for short left operands)
1402         * (pic16_genMinusDec): performance improvements, removed false
1403           PIC14 emitSKPNCs
1404         * (pic16_genMinus): fixed to cope with differently sized operands
1405         * src/pic16/glue.c (pic16_glue): added new banksel optimization
1406           for --obanksel > 1
1407         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
1408         * src/pic16/graph.[ch]: implementation of directed graphs, used by
1409           new banksel optimization
1410         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
1411           analysis for temporary registers (segfaults...)
1412         * src/pic16/peeph.def: added rule
1413
1414 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
1415
1416         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
1417         which converts a float number to its ASCII representation
1418         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
1419         functions to convert the fractional and integer part of a float to ASCII,
1420         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
1421         realloc.c): added _MALLOC_SPEC to explicit place variables in data
1422         ram
1423         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
1424         _STATMEM macros,
1425         * device/include/pic16/adc.h: added GPL info,
1426         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
1427         a pCodeOp as tested operand,
1428         * (genNearPointerGet): optimized bit testing, does not use
1429         intermediate register for bit value, test directly instead with
1430         BTFSS, BTFSC, works only for single bits,
1431         * (genpic16Code): dump the name of the iCode in the asm,
1432         * src/pic16/ralloc.c (decodeOp): removed static declaration and
1433         renamed to pic16_decodeOp,
1434         * (serialRegAssign): do not allocate a temporary register for iCode
1435         sequences that test a single bit for 1/0
1436
1437 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
1438
1439         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
1440         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
1441         access stack and frame pointers. They are initially assigned to
1442         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
1443         accessing SFRs. Updated all occurences of modification of stack or
1444         frame pointer in gen.c and pcode.c,
1445         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
1446         assigning of a literal value to pointers,
1447         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
1448         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
1449         selected
1450
1451 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
1452
1453         * doc/sdccman.lyx: update documentation about stack pragma, added
1454         some info for stack memory models
1455
1456 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1457
1458         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
1459
1460 2005-01-08 Raphael Neider <rneider AT web.de>
1461
1462         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
1463           udata sections to fix bug #1097823
1464
1465 2005-01-05 Raphael Neider <rneider AT web.de>
1466
1467         * src/pic16/gen.c (genGenericShift): added handling of differently
1468           sized left operand and result
1469
1470 2005-01-04 Raphael Neider <rneider AT web.de>
1471
1472         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
1473         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
1474           to hold the condition bit)
1475         * added new version of genCmp (old code available via #define)
1476         * added new version of genShiftLeft/genShiftRight in a generic
1477           way, now supports shifting by negative values
1478         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
1479           shiftCount (expected by genGenericShift)
1480         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
1481         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
1482           dump
1483         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
1484           is an invalid literal too...)
1485
1486 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
1487
1488         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
1489         from Raphael Neider,
1490         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
1491         for 8-bit literals. This fixes some literal operands which are sign
1492         extended to 16-bits ints when instruction needs only 8-bits.
1493
1494 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
1495
1496         * device/lib/logf.c: added mcs51 assembly version
1497         * device/lib/expf.c: added mcs51 assembly version
1498         * device/lib/_logexpf.c: new shared asm code for expf and logf
1499         * device/include/math.h: add defines for assembly math library
1500         * device/lib/Makefile.in: build new _logexpf.c
1501         * device/lib/libfloat.lib: use new _logexpf.c
1502
1503 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
1504
1505         * src/pic/device.c
1506         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
1507           device types which have less than 0x7f registers.
1508
1509 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
1510
1511         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
1512
1513 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
1514
1515         * device/lib/printf_fast.c: only build on supported arch.
1516         * device/lib/printf_tiny.c: only build on supported arch.
1517         * device/lib/printf_fast_f.c: only build if asm float lib
1518         * device/lib/_fsget1arg.c: only build if asm float lib
1519         * device/lib/_fsget2args.c: only build if asm float lib
1520         * device/lib/_fsnormalize.c: only build if asm float lib
1521         * device/lib/_fsreturnval.c: only build if asm float lib
1522         * device/lib/_fsrshift.c: only build if asm float lib
1523         * device/lib/_fsswapargs.c: only build if asm float lib
1524         * device/include/stdio.h: don't provide print_fast,
1525           print_fast_f, print_tiny prototypes if --xstack used
1526
1527 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
1528
1529         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
1530         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
1531           to the SOURCES
1532
1533 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
1534
1535         * device/lib/printf_fast_f.c: same as printf_fast, but
1536           with floating point enabled
1537         * device/lib/printf_fast.c: minor tweaks
1538         * device/include/stdio.h: add printf_fast_f
1539
1540 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
1541
1542         * src/SDCCmain.c: make --float-reent default for mcs51
1543         * device/lib/_fsadd.c: added mcs51 assembly version
1544         * device/lib/_fssub.c: added mcs51 assembly version
1545         * device/lib/_fsmul.c: added mcs51 assembly version
1546         * device/lib/_fsdiv.c: added mcs51 assembly version
1547         * device/lib/_fseq.c: added mcs51 assembly version
1548         * device/lib/_fsneq.c: added mcs51 assembly version
1549         * device/lib/_fsgt.c: added mcs51 assembly version
1550         * device/lib/_fslt.c: added mcs51 assembly version
1551         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
1552         * device/lib/Makefile.in: add _fscmp to build
1553         * device/lib/libfloat.lib: add _fscmp to build
1554
1555 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
1556
1557         * device/lib/_fs2slong.c: added mcs51 assembly version
1558         * device/lib/_fs2sint.c: added mcs51 assembly version
1559         * device/lib/_fs2schar.c: added mcs51 assembly version
1560         * device/lib/_fs2ulong.c: added mcs51 assembly version
1561         * device/lib/_fs2uint.c: added mcs51 assembly version
1562         * device/lib/_fs2uchar.c: added mcs51 assembly version
1563         * device/lib/_slong2fs.c: added mcs51 assembly version
1564         * device/lib/_sint2fs.c: added mcs51 assembly version
1565         * device/lib/_schar2fs.c: added mcs51 assembly version
1566         * device/lib/_ulong2fs.c: added mcs51 assembly version
1567         * device/lib/_uint2fs.c: added mcs51 assembly version
1568         * device/lib/_uchar2fs.c: added mcs51 assembly version
1569         * device/include/float.h: added #define to select asm vs c
1570
1571 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
1572
1573         * device/lib/printf_fast.c: improvements to float output
1574         * device/include/float.h: add defines for assembly float library
1575         * device/lib/_fsget1arg.c: receive 1 float arg
1576         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
1577         * device/lib/_fsnormalize.c: normalize a float
1578         * device/lib/_fsreturnval.c: return float, various helper routines
1579         * device/lib/_fsrshift.c: right shift a float's mantissa
1580         * device/lib/_fsswapargs.c: swap 2 floats
1581         * device/lib/Makefile.in: build these 6 new files for mcs51
1582         * device/lib/libfloat.lib: add these 6 files to the library
1583
1584 2004-12-26 Borut Razem <borut.razem AT siol.net>
1585
1586         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
1587           built by gcc 3.4.2
1588
1589 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
1590
1591         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
1592           and fully reentrant and register bank neutral.
1593         * device/lib/printf_fast.c: added float (not enabled by default),
1594           added compact/slower integer (also not enabled by default),
1595           improved size/speed of fast integer code, other minor changes
1596         * device/include/stdio.h, device/lib/Makefile.in,
1597           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
1598
1599 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
1600
1601         * src/pic16/pcode.c: declaring variables other than at the start of a
1602           block is not supported in C by VC6.
1603
1604 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
1605
1606         * applied a previous patch from Raphael Neider that wasn't included
1607         in the previous commits, which fixes infinite loops within jumptable
1608         improvements,
1609         * made some fixes that previous patches introduced
1610
1611 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
1612
1613         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
1614         that fixes an issue with AOP_PCODE asmop's offset,
1615         * (pic16_popCopyReg): update instance field too,
1616         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
1617         function of pic port,
1618         * (genCmp, genAnd, genAssign),
1619         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
1620
1621 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
1622
1623         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
1624         variables initial values to idata section,
1625         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
1626         variables in some functions. This utilizes parmBytes field of iCode
1627         structure to hold the offset of the variable in stack. (might be
1628         able to use the stack field too?)
1629         * applied patch from Raphael Neider # ### , # ###
1630         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
1631         variable initial values in idata section,
1632         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
1633         for static variables with initial value
1634         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
1635         applied fix in while loop from Raphael Neider.
1636
1637 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
1638
1639         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
1640         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
1641         * src/ds390/ralloc.c (serialRegAssign): spill bits
1642         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
1643         * support/Util/SDCCerr.c,
1644         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
1645         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
1646         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
1647
1648 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
1649
1650         * device/include/sdcc-lib.h: inserted LGPL, added includes
1651           asm/ds390/features.h and asm/mcs51/features.h
1652         * device/include/asm/default/features.h,
1653         * device/include/asm/gbz80/features.h,
1654         * device/include/asm/z80/features.h: added empty _AUTOMEM
1655           and _STATMEM
1656         * device/include/asm/ds390/features.h,
1657         * device/include/asm/mcs51/features.h: added files with defines for
1658           _AUTOMEM and _STATMEM indicating automatic and static storage class
1659         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
1660         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
1661         * src/SDCCicode.c (geniCodeCast),
1662         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
1663         * src/SDCCloop.c (loopInduction): removed unused variable lr
1664         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
1665           to convertToFcall to include char modulo (RFE 1065037), added check
1666           if left operand is unsigned and use abs of literal value
1667         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
1668           as it doesn't work after conversion from peephole.def to peephole.rul
1669         * src/mcs51/gen.c (toBoolean): added check for size,
1670           (genModOneByte): optimized code for signed char modulo a literal
1671           power of 2 (thanks to Hubert Sack),
1672           (genRRC): removed unnecessary "clr c",
1673           (genRLC): replaced "add a,acc" with cheaper "rlc a"
1674         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
1675           jump optimization,
1676           swapped rules 256.c and 256.d,
1677           extended 256.d by using new multiple checks (thanks Erik),
1678           added rules 256.e and 256.f,
1679           updated rule 261.a and 261.b to new generated code
1680         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
1681
1682 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1683
1684         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
1685           induction related bugs, including first part of bug #1074377
1686
1687 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
1688
1689         * applied patch from bug-report #1076292,
1690         * applied patches for genAnd and Goto-optimizations for Raphael
1691         Neider,
1692         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
1693         dump a less iCode information,
1694         * src/pic16/device.h (pic16_options_t): added field debgen,
1695         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
1696         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
1697         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
1698         puclic,
1699         * (various functions): added macros FENTRY and FENTRY2 to functions,
1700         to emit function prologue,
1701         * (various functions): fixed indentation,
1702         * (genNearPointerGet): fixed loading of FSR0,
1703         * (genPackBits): applied patch from Raphael Neider to fix updating
1704         of FSR0 and touching only the modified bits,
1705         * src/pic16/genarith.c (various functions): added macros FENTRY to
1706         emit function prologue in comments,
1707         * src/pic16/pcode.h: added functions debugf2, debugf3,
1708         * src/pic16/ralloc.c: partial fix for packForPush caused
1709         segmentation fault,
1710
1711 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1712
1713         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
1714           <stsp AT users.sourceforge.net> with reversed byte order
1715         * support/regression/tests/rotate.c: added (ds390 skips some tests)
1716
1717 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1718
1719         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
1720           bug #1074377
1721         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
1722         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
1723
1724 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
1725
1726         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
1727
1728 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1729
1730         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
1731           conditions,
1732           (setFromConditionArgs): friendly operand parser for peephole rules,
1733           (operandBaseName, operandsNotRelated): new peephole condition
1734           "operandsNotRelated" -- similar to "operandsNotSame", but takes
1735           architecture specific register naming into account, handles n-way
1736           comparisons, and supports quoted literals
1737         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
1738
1739 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1740
1741         * src/mcs51/peeph.def: fixed bug #1076940
1742
1743 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
1744
1745         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
1746
1747 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1748
1749         Adding support for replacing ljmps with sjmps in jumptables
1750         generated for switch statements. For now you need to set the
1751         environment variable SDCC_SJMP_JUMPTABLE to enable this.
1752         Now 4 algorithms for mcs51 jumptable generation are used:
1753         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
1754         addresses loaded pc-relative for up to 112 cases and stack-pushing
1755         target addresses loaded with offset from dptr for up to 256 cases.
1756
1757         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
1758         * src/mcs51/main.c: adapted constants for switch table generation
1759         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
1760
1761 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
1762
1763         * device/lib/printf_large.c (_print_format): fixed bug 1073386
1764         * support/regression/tests/bug1057979.c: added test for bug 1073386
1765
1766 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
1767
1768         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
1769         compilers
1770
1771 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
1772
1773         * src/pic16/device.h,
1774         * src/pic16/genarith.c,
1775         * src/pic16/glue.c,
1776         * src/pic16/main.c,
1777         * src/pic16/pcode.c: applied patches #1068154 and #1070213
1778
1779 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
1780
1781         Large cummulative patch for pic16 port.
1782         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
1783         to call when a stack overflow occurs,
1784         * (malloc.h): added CVS Id tag,
1785         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
1786         variable,
1787         * added libc directory. The current version of LibC contains string
1788         functions, ctype functions and macros and some functions of the
1789         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
1790         be extensively tested in the future. Standard disclaimer here.
1791         Library is not automatically build yet. But one can build it by
1792         invoking 'make' inside the libc directory.
1793         * added ADC library under libio. Preliminary version yet.
1794
1795         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
1796         * src/pic16/gen.c (aopForRemat): asmop size is filled by
1797         aopForRemat() now and not by pic16_aopOp(),
1798         * (pic16_popGetTempReg): removed warning messgae when allocating
1799         temporary registers, its a buggy feature and will be removed,
1800         * (pic16_popGet): set register instance field in AOP_CRY,
1801         * (pic16_outBitC): fixed for results in size greater than 1,
1802         * (genUminusFloat): fixed for pic16, ported code from mcs51,
1803         * (pic16_storeForReturn): optimized return of 0,
1804         * (genCmp): experimental code for new genCmp which uses PIC18's
1805         special compare&skip instructions. Initial tests fail some times
1806         with variables grater than 1 byte in size, so new code is disabled,
1807         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
1808         a single bit,
1809         * (genCast): began a fix to optimize the casting of a bit to another
1810         bit, now assigning a bitfield to another bitfield will fail, sorry,
1811         * src/pic16/main.c: disabled the use of lr-support feature,
1812         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
1813         * added some function prototypes, added function _debugf prototype,
1814         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
1815         bits with offset (case PO_GPR_BIT),
1816         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
1817         command line,
1818         * (isBankInstruction): modified to return 0 for no banking instruction,
1819         and 1 for banking instruction,
1820         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
1821         caused stop processing pCodes after a inline assembly block,
1822         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
1823         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
1824         registers when it shouldn't,
1825         * src/pic16/ralloc.c (allocReg): add preliminary support for
1826         supporting a limited set of temporary registers,
1827
1828 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1829
1830         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
1831           genDataPointerSet): ensure assignments always copy in MSB to LSB
1832           order,
1833           (loadRegFromAop): recognize CLRH optimization,
1834           (genFunction): optimize RECEIVE iCodes in reentrant functions
1835
1836 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1837
1838         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
1839           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
1840           selected.
1841         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
1842         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
1843           contiguous with data
1844
1845 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1846
1847         * device/lib/_gptrget.c (_gptrget),
1848         * device/lib/_gptrgetc.c (_gptrgetc),
1849         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
1850           instead of sjmp to ret
1851         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
1852           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
1853
1854 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
1855
1856         * .version: bumped version to 2.4.7
1857         * device/lib/_gptrget.c (_gptrget): is now _naked
1858         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
1859         * device/lib/_gptrput.c (_gptrput): is now _naked
1860         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
1861           (createFunction): fixed xstack
1862         * src/SDCCglue.c (emitMaps): set allocation required for bit area
1863         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
1864           or bit either,
1865           (geniCodeCritical): store original interrupt state in an iTemp bit
1866           var unless stack-auto
1867         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
1868         * src/SDCCmain.c (setIncludePath): added include/target to search path
1869         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
1870         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
1871           prototype,
1872           (processFuncArgs): put bit vars in bit area
1873         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
1874           unsaveRBank): fixed xstack,
1875           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
1876           (genFunction, genEndFunction): fixed xstack,
1877           (genAssign): optimization don't walk backwards through mem
1878         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
1879         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
1880         * support/regression/Makefile: also make library (for stack-auto) when
1881           making "all" and added "test-mcs51-xstack-auto"
1882         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
1883         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
1884         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
1885         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
1886         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
1887           make-library by MAKE_LIBRARY
1888         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
1889           regression tests for xstack
1890         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
1891         * support/regression/tests/critical.c: test for critical on mcs51
1892
1893 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1894
1895         * support/regression/ports/ucz80/spec.mk: use include and lib files from
1896           built version of sdcc instead of installed version
1897
1898 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
1899
1900         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
1901         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
1902           vprintf.c now
1903         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
1904         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
1905           WARNING: remove device/lib/build/z80/printf.o by hand when
1906           updating from previous build!
1907         * device/lib/z80/printf.c: updated comment
1908         * support/regression/tests/bug1057979.c: test all ports now
1909         * support/regression/tests/bug1065458.c: file added
1910
1911 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1912
1913         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
1914           *_start and *_end symbols for static functions
1915
1916 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
1917
1918         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
1919           and search crt0.o in all library paths,
1920           (setIncludePath): proper handling of --nostdinc,
1921           (setLibPath): proper handling of --nostdlib
1922         * support/regression/Makefile,
1923         * support/regression/ports/ds390/spec.mk,
1924         * support/regression/ports/gbz80/spec.mk,
1925         * support/regression/ports/hc08/spec.mk,
1926         * support/regression/ports/mcs51/spec.mk,
1927         * support/regression/ports/mcs51-large/spec.mk,
1928         * support/regression/ports/mcs51-stack-auto/spec.mk,
1929         * support/regression/ports/z80/spec.mk: use include and lib files from
1930           built version of sdcc instead of installed version
1931         * doc/sdccman.lyx: fixed typo in --nostdinc
1932
1933 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
1934
1935         * src/pic/pcode.c,
1936         * src/pic/device.c,
1937         * src/pic/ralloc.c,
1938         * src/pic/gen.c : added support to generate code for struct bit fields.
1939
1940 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
1941
1942         * as/xa51/xa_version.h,
1943         * device/include/errno.h,
1944         * device/include/regc515c.h,
1945         * device/lib/_itoa.c,
1946         * device/lib/_ltoa.c,
1947         * device/lib/ser_ir_cts_rts.c,
1948         * sim/ucsim/xa.src/glob.cc,
1949         * sim/ucsim/xa.src/inst_gen.cc,
1950         * sim/ucsim/xa.src/xa_bit.cc,
1951         * sim/ucsim/xa.src/xa_sfr.cc,
1952         * sim/ucsim/z80.src/inst_dd.cc,
1953         * sim/ucsim/z80.src/inst_fdcb.cc,
1954         * support/scripts/keil2sdcc.pl,
1955         * src/pic16/pic16.dsp,
1956         * src/pic16/pic16a.dsp: corrected cvs line endings
1957         * device/lib/printf_large.c: fixed bug 1057979
1958         * src/pic16/gen.c: fixed non-C standard code
1959         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
1960         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
1961         * support/regression/ports/mcs51/support.c: reload T1 asap
1962         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
1963           pdata use and clear idata startup behaviour
1964         * support/regression/tests/bug1057979.c: added
1965
1966 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
1967
1968         * device/examples/ds390/ow390/ad26.h,
1969         * device/examples/ds390/ow390/cnt1d.h,
1970         * device/examples/ds390/ow390/crcutil.c,
1971         * device/examples/ds390/ow390/ownet.h,
1972         * device/examples/ds390/ow390/owsesu.c,
1973         * device/examples/ds390/ow390/swt12.h,
1974         * device/examples/ds390/ow390/swtoper.c,
1975         * device/examples/ds390/ow390/temp10.h,
1976         * device/examples/ds390/ow390/thermodl.c,
1977         * device/examples/ds390/tinitalk/tinitalk.dsp,
1978         * device/examples/ds390/tinitalk/tinitalk.dsw,
1979         * device/examples/mcs51/clock/hw.h,
1980         * device/examples/mcs51/simple2/go.bat,
1981         * device/examples/serialcomm/windows/serial.h,
1982         * device/examples/xa51/dummy.c,
1983         * device/examples/xa51/hello.c,
1984         * device/include/80c51xa.h,
1985         * device/include/at89x051.h: corrected cvs line endings
1986
1987 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
1988
1989         * src/pic16/main.c (options): added command line --gstack, to trace
1990         stack over/under flows,
1991         * added pragma 'wparam' to allow passing first byte of function
1992         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
1993         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
1994         call to __gstack_test function and sets up the symbol as extern,
1995         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
1996         * popaop): added call to pic16_testStackOverflow,
1997         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
1998         wparamList list,
1999         * (genCall, genPcall): now all parameters are passed via stack
2000         except in functions that are pass to wparam pragma in which WREG is
2001         used too,
2002         * (genPcall): REENTRANT flag is checked to see if variable prototype
2003         contains reentrant keyword, don't call a non-reentrant function, via
2004         a reentrant function pointer or vice versa, functions are never
2005         passed via WREG,
2006         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
2007         D.Winkler,
2008         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
2009         SIGSEGV when accessing a NULL register stucture,
2010         * (pic16_printGPointerType): modified to handle UPPER modifier for
2011         function initializers, changed prototype of function to simpler one,
2012         * (pic16_printIvalFuncPtr): check to see if function is already
2013         added in externs list,
2014         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
2015         optimized a move from W to SFR with a move to the same register
2016         later after a CALL,
2017         * device/lib/pic16/debug: NEW directory, contains debug features
2018         which are enabled when linking with libdebug.lib, currently command
2019         line option --gstack enables stack pointer tracing for over/under
2020         flow, corresponding sources are in debug/gstack
2021
2022 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
2023
2024         * doc/sdccman.lyx: updated SDCC version,
2025         * (PIC16 port): update list of command line options,
2026         * src/pic16/device.h (structure pic16_options_t): added field gstack
2027         to enable stack overflow tracing on push/pops,
2028         * src/pic16/device.c (statistics structure): added statistics
2029         structure,
2030         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
2031         pic16_dump_int_registers): increase statistics counters for each
2032         * variable which is encountered
2033         * (pic16_dump_usection): emit each .udata variable to its own udata
2034         section,
2035         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
2036         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
2037         parameters via stack, otherwise use old scheme,
2038         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
2039         assembler output file,
2040         * src/pic16/main.c: added command line options --gstack to enable
2041         push/pop tracing for stack overflow,
2042         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
2043         instructions): added size of each instruction,
2044         * (pic16_countInstruction): estimate size of instructions in
2045         the_pFile list, inline assembly blocks are not counted,
2046         * (pic16_FixRegisterBanking): trace previous register usage, when
2047         banksel optimizations is greater than 0, don't emit a redudant
2048         banksel directive,
2049
2050 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
2051
2052         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
2053         * src/pic16/ralloc.c : applied same fix for pic16.
2054         * src/pic/gen.c : tidied it up a little.
2055
2056 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2057
2058         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
2059         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
2060
2061 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2062
2063         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
2064
2065 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2066
2067         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
2068         non-reentrant function __modsint in the interrupt function (thus
2069         corrupting math operations during serial I/O)
2070         * device/lib/ser_ir.c: as above, changed buffersize
2071         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
2072         256.c,d for zeroing
2073         * doc/Makefile: added option -t for rsync
2074
2075 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2076
2077         * src/SDCCast.h (struct ast),
2078         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
2079
2080 2004-10-20 Borut Razem <borut.razem AT siol.net>
2081
2082         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
2083         package
2084
2085 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
2086
2087         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
2088         makefile targets,
2089         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
2090         support functions to replace long sequences of MOVFF's from access
2091         bank registers to stack and vice versa,
2092         * src/pic16/device.h: added new field opt_flags, where optimization
2093         flags can be set to enable certain features,
2094         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
2095         * pBlock, (genFunction, genEndFunction): surroung loop for
2096         saving/loading used registers in stack with PC_INFO pCodes,
2097         INF_LREGS. Code in between can then be optimized by pCode optimizer
2098         to support function calls,
2099         * (genDataPointerSet): fixed bug which loaded float fields in
2100         structures with corrupt data,
2101         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
2102         in a standard way debug info on stderr. Feature used for developing
2103         and debugging only,
2104         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
2105         obsolete chunks of code,
2106         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
2107         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
2108         * pic16/src/pcode.c (pic16_newpCodeInfo,
2109         * (pic16_newpCodeOpLocalRegs),
2110         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
2111         feature,
2112         * (pic16_pCodeConstString): printing of the initial value of a
2113         symbol as a comment is inhibited since parsing was already done by
2114         copyStr and output is corrupt,
2115         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
2116
2117 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2118
2119         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
2120
2121 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
2122
2123         * as/mcs51/lkarea.c: removed old K&R style,
2124           (lnksect): changed check on boundary error,
2125           (lnksect2): changed check on boundary error,
2126           (lnksect2): extend XSTK to end of page if size = 1
2127         * as/mcs51/lkmain.c: removed old K&R style,
2128           (Areas51): create l_IRAM symbol
2129         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
2130         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
2131           model-mcs51-stack-auto, added model-mcs51-xstack-auto
2132         * device/lib/_mullong.c: added version to be compiled with xstack
2133         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
2134         * device/lib/mcs51/crtxclear.asm: clear pdata as well
2135         * device/lib/mcs51/crtxstack.asm: fixed comment
2136         * src/SDCCglue.c: maxInterrupts defaults to 0,
2137           (emitMaps): added pdata,
2138           (createInterruptVect): (re)moved default,
2139           (glue): added pdata,
2140           (glue): moved __start__xstack to XSTK with default size 1
2141         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
2142           and options.float_rent when options.stackAuto is set,
2143           (linkEdit): only write XDATA_NAME if provided on command line
2144         * src/SDCCmem.h,
2145         * src/SDCCmem.c: added pdata
2146         * src/port.h: added pdata_name to PORT
2147         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
2148           (saveRegisters, unsaveRegisters): removed usage of B,
2149           (genMinus): fixed accumulator clash,
2150           (genJumpTab): added comment, this needs another look
2151         * src/mcs51/gen.c: added check for "B in use" paranoia,
2152           added pushB() and popB()
2153         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
2154           chance
2155         * src/avr/main.c,
2156         * src/ds390/main.c,
2157         * src/hc08/main.c,
2158         * src/mcs51/main.c,
2159         * src/pic/main.c,
2160         * src/pic16/main.c,
2161         * src/xa51/main.c,
2162         * src/z80/main.c: (reset_regparms) made void parameter explicit and
2163           added PSEG (PAG,XDATA) or NULL to port specifier
2164         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
2165         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
2166           (_mcs51_genInitStartup): removed __start__xstack equ,
2167           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
2168         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
2169         * src/z80/gen.c (_rleAppend): fixed warnings
2170         * support/regression/tests/zeropad.c: added pdata test
2171         * .version: bumped to 2.4.6
2172
2173 2004-10-17 Borut Razem <borut.razem AT siol.net>
2174
2175         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
2176         as a part of nightly build
2177
2178 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
2179
2180         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
2181         WREG holds the first byte function parameters,
2182         * (aopForSym): take special case for symbols which are in FARSPACE
2183         but in CODESPACE too,
2184         * (assignResultValue): modified to take into account _G.useWreg,
2185         * (genCall): don't use wreg for parameter passing when function is
2186         declared as reentrant, too, added optimization INCF to stack
2187         pointer when stack parameter count is 1,
2188         * (genFunction, genEndFunction): refurnished and fixed to not using
2189         wreg for passing parameters when function has varargs or is
2190         reentrant, fixed bug with symbol name compare for generating
2191         functions in absolute address,
2192         * (pic16_storeForReturn): refurnished,
2193         * (genCmp): began writing a new version of the function, not ready
2194         yet, therefore it is disabled,
2195         * (genAssign): do not read code memory when assigning a function to
2196         a pointer function,
2197         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
2198         array of characters, not pointer,
2199         * (pic16initialComments): in debug mode emit an .ident directive for
2200         the assembler,
2201         * (_process_pragma): emit a new warning type (internal to pic16)
2202         when setting stack to default length, emit a similar warning when
2203         placing a function at absolute address and address is not word aligned
2204         * (_pic16_parseOptions): added 'return TRUE' statement,
2205         * (_pic16_linkEdit): if compiling a source, then add the source's
2206         file object, first in the list of objects to link,
2207
2208 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
2209
2210         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
2211         * src/pic/main.c : removed VC warning.
2212         * src/pic/gen.c : changed comment.
2213
2214 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
2215
2216         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
2217         reference to a deprecated symbol _GPTRREG was causing failure to
2218         link. Thanks G. M. Gallant for the info.
2219
2220 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
2221
2222         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
2223         comments for Bugs item #954788.
2224
2225 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
2226
2227         * src/pic16/device.c (pic16_dump_gsection,
2228         * pic16_groupRegistersInSection): handle symbols declared to be in
2229         access bank differently,
2230         * src/pic16/gen.c (struct _G): added field resDirect,
2231         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
2232         send values read from stack directly to result and don't allocate
2233         temporary values,
2234         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
2235         same registers,
2236         * (pic16_sameRegsOfs): NEW,
2237         * (freeAsmop): if _G.resDirect is set then do not mark registers as
2238         free because they were not allocated from temporary pool,
2239         * pic16_popRegFromString): workaround to fix a problem with
2240         allocating variables twice or never,
2241         * (genGenPointerGet): using PRODL instead of FSR0H,
2242         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
2243         instead of FSR0H,
2244         * (genAssign): take advantage of the _G.resDirect flag,
2245         * (genCast): around line 11844, use mov2f instead of directly
2246         MOVFF'ing between operands to account for literal values,
2247         * src/pic16/genutils.c: some new debug functions for gpsim have been
2248         added,
2249         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
2250         float with integer part only,
2251         * src/pic16/main.c (_process_pragma): handle pragma udata access to
2252         place variables in access bank
2253         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
2254         updated sources to reflect recent changes in gen.c
2255
2256 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
2257
2258         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
2259         sources that searched for headers in installation path, now the
2260         device/include/pic16 is used,
2261         * src/pic16/glue.c (pic16glue),
2262         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
2263         .line directives if not in debug mode, this suppresses assembler's
2264         warnings for ignored directives
2265
2266 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
2267
2268         * src/port.h: made reset_regparms prototype void parameter explicit.
2269         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
2270         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
2271         * doc/sdccman.lyx: documented warning disabling and how to use
2272           printf_large to make it print floats.
2273         * device/include/stdbool.h: NEW
2274         * device/lib/_atof.c,
2275         * device/lib/_divuint.c,
2276         * device/lib/_divulong.c,
2277         * device/lib/expf.c,
2278         * device/lib/printf_large.c,
2279         * device/lib/sincosf.c,
2280         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
2281         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
2282           a completely reentrant lib.
2283
2284 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
2285
2286         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
2287         * device/include/pic16/stdio.h: fixed bug with colon
2288
2289 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
2290
2291         * device/include/pic16/stdio.h,
2292         * device/include/pic16/stdlib.h,
2293         * device/include/pic16/math.h: NEW
2294         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
2295         declared as _naked to reduce overhead
2296         * device/lib/Makefile.in (target port-specific-objects-pic16):
2297         changed * to *.* so to ignore the CVS directory,
2298         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
2299         stacked variables back in stack,
2300         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
2301         corruption
2302
2303 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
2304
2305         * .version: bumped version number to 2.4.5
2306         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
2307         * support/Util/SDCCerr.c (messages structure): added entry for
2308         W_POSSBUG2
2309
2310         Large cumulative patch for pic16 port and libraries.
2311         * device/include/pic16/sdcc-lib.h,
2312         * device/include/pic16/stdarg.h,
2313         * device/include/asm/pic16/features.h,
2314         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
2315         * device/include/pic16/float.h: changes reentrant keyword with
2316         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
2317         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
2318         updated target build-libraries to include objects from gptr,
2319         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
2320         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
2321         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
2322         all function headings,
2323         * src/SDCCmain.c: added global parameter userIncDirsSet,
2324         * (parseCmdLine): when option -I is encountered add directory to
2325         userIncDirsSet too,
2326         * src/version.awk: added space between control and long,
2327         * src/pic16/NOTES: added some notes for the port,
2328         * src/pic16/gen.c: added prototype for mov2fp function,
2329         * (fReturnpic16[]): properly named return value registers,
2330         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
2331         * (aopForSym): added code to handle symbols with onStack flag set,
2332         symbols onStack are allocated PTRSIZE bytes,
2333         * (aopFreeAsmop): handles special case where asmops are stack objects,
2334         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
2335         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
2336         added argument lock to trace flaws in allocating temporary registers
2337         when developing port,
2338         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
2339         * (pic16_popRegFromString): reenabled allocating a direct register
2340         from string,
2341         * (assignResultValue): various beautifications,
2342         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
2343         referenced function argument,
2344         * (genIpush): reenabled to allow stacked arguments, handles only
2345         ic->parmPush iCodes,
2346         * (genCall, genPcall): major changes to allow for variable argument
2347         functions, fixed a bug with falsely restoring stack pointer after
2348         returning from call,
2349         * (genFunction): pending code for critical function,
2350         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
2351         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
2352         * (genNearPointerGet): fixed bug with indirect reading, was always
2353         reading from INDF0
2354         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
2355         pointers,
2356         * (genAddrOf): rewrote code to take address of a stacked function parameter
2357         * (genCast): fixed casting to generic pointer type,
2358         * src/pic16/gen.h: added AOP_STA,
2359         * (struct asmop): added field stk,
2360         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
2361         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
2362         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
2363         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
2364         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
2365         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
2366         generic pointers,
2367         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
2368         and library paths,
2369         * (pic16_port structure): generic pointer size is set to 3,
2370         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
2371         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
2372         compiler warning,
2373         * src/pic16/ralloc.c (allocReg): prevent allocating register when
2374         operand is an iTemp,
2375
2376 2004-09-24 Martin Helmling <mh AT octo-soft.de>
2377
2378         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
2379         * debugger/mcs51/simi.c: addapt new syntax of s51
2380
2381 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
2382
2383         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
2384         * src/pic16/pcode.c: commented out some calls to free() in order to
2385         fix bug #989576,
2386
2387 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2388
2389         * src/SDCCicode.h,
2390         * src/SDCCicode.c (isiCodeInFunctionCall),
2391         * src/avr/ralloc.c (selectSpil),
2392         * src/pic/ralloc.c (selectSpil),
2393         * src/pic16/ralloc.c (selectSpil),
2394         * src/ds390/ralloc.c (selectSpil),
2395         * src/hc08/ralloc.c (selectSpil),
2396         * src/xa51/ralloc.c (selectSpil),
2397         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
2398         stack in the middle of a function call sequence (fixes bug #1020268)
2399         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
2400         costs associated with the minimum switch case.
2401
2402 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2403
2404         * src/SDCC.lex: fixed bug #1030549
2405
2406 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2407
2408         * src/SDCCcse.h (struct cseDef),
2409         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
2410         over a function call if the CSE is derived from a symbol whose
2411         address has been taken (fixes bug #1029883)
2412         * support/regression/tests/bug-1029883: a new regression test for
2413         this bug
2414
2415 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2416
2417         * src/hc08/gen.c (emitinline): fixed bug #1029778
2418         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
2419         to a cast object is no longer a syntax error ("fixes" bug #1030006,
2420         and starts toward RFE #905167)
2421
2422 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
2423
2424         * src/pic16/gen.c (mov2f): New function to move an operand to
2425         another without considering if it is a literal or a register,
2426         * (pic16_sameRegs): don't check if they are both AOP_REG,
2427         * (AccRsh): removed andmask=0 lines,
2428         * (genLeftShift): duplicated to be improved in future versions,
2429         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
2430         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
2431         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
2432         * (pic16initMnemonics): added initialization for POC_INFSNZW,
2433         * (insertBankSwitch): fixed inserting banksel directives algorithm
2434         for instructions that follow a skip instruction, this fixes a report
2435         for broken subtraction code generation,
2436         * src/pic16/ralloc.c (deassignLRs): do not free register if current
2437         iCode is a left op, just in case result and right share the same
2438         registers
2439
2440 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2441
2442         * src/hc08/main.c,
2443         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
2444         preservation of HX
2445         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
2446         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
2447         on 2004-09-12; it was buggy
2448
2449 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
2450
2451         * src/SDCCsymt.h: removed RESULT_CHECK
2452         * src/SDCCast.c,
2453         * src/SDCCglue.c,
2454         * src/SDCCval.c,
2455         * src/pic/glue.c,
2456         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
2457
2458 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
2459
2460         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
2461         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
2462         configuration values no more rejected by compiler, they are assigned
2463         to configuration registers with a warning message instead,
2464         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
2465         the for-loop so last conf register is emitted too,
2466         * (_pic16_initPaths): link library libsdcc.lib by default,
2467         * (_hasNativeMulFor): modified test for multiplication according to
2468         Raphael Neider's remarks. Integer multiplication is also done with
2469         support functions,
2470         * device/include/pic16/pic18fregs.h: corrected type error in while
2471         testing and including 18f6720 header file
2472
2473 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
2474
2475         * src/pic16/device.h (pic16_options): removed field use_crt,
2476         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
2477         until an optimization to handle single bits is added,
2478         * (pic16_loadFSR0): moved before genUnpackBits,
2479         * (genAnd): some white lines removed,
2480         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
2481         leave_reset flags in pic16_options when using crt modules,
2482
2483 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
2484
2485         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
2486           for bugs 898889 & 979599. Also used some safer print instructions.
2487
2488 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
2489
2490         * src/pic16/device.h (pic16_options_t): added field use_crt,
2491         crt_name, no_crt,
2492         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
2493         catch a probable future bug,
2494         * src/pic16/gen.c: aopIdx function commented out,
2495         * (genAssign): commented out old code which used aopIdx,
2496         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
2497         code, added if conditionals to take into account the --use-crt
2498         command line options,
2499         * src/pic16/main.c (pic16_optionsTable): added new command line
2500         options, --use-crt= and --no-crt,
2501         * (_pic16_linkEdit): now the proper crt object is added in the
2502         linker command line except than when --no-crt is specified,
2503         * src/pic16/pcode.c,
2504         * src/pic16/pcode.h: added some structures and functions for a new
2505         optimization scheme to compansate for instruction overhead between
2506         same iCodes, this scheme is currently under development and is not
2507         working in any way,
2508         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
2509         to && operator,
2510         * device/lib/pic16/startup/crt0i.c,
2511         * device/lib/pic16/startup/crt0iz.c: added global char variable
2512         __uflags to force the generation of an idata section
2513
2514 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
2515
2516         * doc/Makefile,
2517         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
2518         * doc/sdccman.lyx: updated sdcc version to 2.4.4
2519
2520 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2521
2522         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
2523         Frieder) and clarified the default code optimization mode
2524
2525 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2526
2527         * src/SDCC.lex (doPragma, process_pragma),
2528         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
2529         "opt_code_size", and "opt_code_balanced"
2530         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
2531         regrouped options by category, added support for category headers
2532         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
2533         and "--opt-code-size"
2534         * doc/sdccman.lyx: documented these new options and pragmas
2535         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
2536         preference into account
2537
2538 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2539
2540         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
2541           geniCodePreDec): Fixed bug 904237 by generating a warning
2542         * src/SDCCerr.h,
2543         * src/SDCCerr.c: added warning W_SIZEOF_VOID
2544
2545 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
2546
2547         * src/pic/device.c : When no max ram set validate full memory range.
2548         * src/pic/pcode.c,
2549         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
2550
2551 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2552
2553         * device/lib/_gptrget.c,
2554         * device/lib/_gptrput.c: updated comment
2555         * device/lib/calloc.c,
2556         * device/lib/free.c,
2557         * device/lib/malloc.c,
2558         * device/lib/realloc.c: added LGPL, made them reentrant-safe
2559         * src/SDCCcse.c (cseBBlock),
2560         * src/SDCCicode.c (printOperand, geniCodeArray),
2561         * src/SDCCicode.h (struct operand): fixed bug 868103
2562         * support/regression/tests/bug-868103.c: added
2563         * src/SDCCast.c (searchLitOp),
2564         * src/SDCCcse.h (struct cseDef),
2565         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
2566         * src/SDCCicode.h (struct operand),
2567         * src/SDCCsymt.h (struct sym_link),
2568         * src/avr/gen.c (hasInc),
2569         * src/ds390/gen.c (hasInc),
2570         * src/hc08/gen.c (genPlusIncr, hasInc),
2571         * src/mcs51/gen.c (hasInc),
2572         * src/pic16/glue.c (pic16_printIvalChar),
2573         * src/pic16/ralloc.c (regWithIdx),
2574         * src/xa51/gen.c (hasInc) : removed warnings
2575         * src/SDCCast.c (createBlock): added comment ???
2576         * src/hc08/ralloc.c: updated comments
2577
2578 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2579
2580         * doc/sdccman.lyx: updated section on switch statements, added
2581         section about semaphore locking
2582         * doc/Makefile: added option -info for latex2html
2583         * device/lib/_gptrget.c,
2584         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
2585
2586 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
2587
2588         * src/pic/device.h,
2589         * src/pic/device.c,
2590         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
2591          maxram is less than 0x100.
2592
2593 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
2594
2595         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
2596
2597 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2598
2599         * src/port.h,
2600         * src/mcs51/main.c,
2601         * src/ds390/main.c,
2602         * src/z80/main.c,
2603         * src/hc08/main.c,
2604         * src/pic/main.c,
2605         * src/pic16/main.c,
2606         * src/avr/main.c,
2607         * src/xa51/main.c
2608         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
2609         a jump table is the best form for a switch statement, including
2610         automatic insertion of missing cases to make the case range
2611         continuous. Developed in collaboration with Frieder Ferlemann.
2612
2613 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2614
2615         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
2616         accumulator result if it needs sign extension
2617
2618 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2619
2620         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
2621
2622 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2623
2624         * device/lib/gbz80/printf.c,
2625         * device/lib/z80/printf.c: removed define for NULL
2626
2627 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2628
2629         * as/xa51/xa_link.c,
2630         * device/examples/ds390/ow390/ad26.c,
2631         * device/examples/ds390/ow390/cnt1d.c,
2632         * device/examples/ds390/ow390/counter.c,
2633         * device/examples/ds390/ow390/ds2480.h,
2634         * device/examples/ds390/ow390/ds2480ut.c,
2635         * device/examples/ds390/ow390/findtype.c,
2636         * device/examples/ds390/ow390/gethumd.c,
2637         * device/examples/ds390/ow390/owllu.c,
2638         * device/examples/ds390/ow390/ownetu.c,
2639         * device/examples/ds390/ow390/swt12.c,
2640         * device/examples/ds390/ow390/swtloop.c,
2641         * device/examples/ds390/ow390/temp.c,
2642         * device/examples/ds390/ow390/temp10.c,
2643         * device/examples/ds390/ow390/thermo21.c,
2644         * device/examples/ds390/ow390/tinilnk.c,
2645         * device/examples/ds390/ow390/tstfind.c,
2646         * device/examples/serialcomm/windows/serial.cpp,
2647         * device/examples/serialcomm/windows/test_serialcomm.cpp,
2648         * device/include/reg51.h: fixed line endings for cvs
2649
2650 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2651
2652         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
2653         packRegsForAccUse, packRegisters): new accumulator register
2654         packing algorithm
2655         * support/regression/ports/hc08/support.c (_putchar): suppress
2656         warning of unused variable
2657         * src/SDCCicode.c: added SWAP entry to codeTable
2658
2659 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
2660
2661         * device/lib/sprintf.c: forgot to add this file before previous commit
2662
2663 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
2664
2665         * src/pic16/gen.c (genPackBits): added operand right in function
2666         parameters, load result directly if p_type is POINTER (that is
2667         called by genNearPointerSet)
2668         * (genUnPackBits): added operand left in function parameters,
2669         * (genNearPointerGet, genNearPointerSet): prevent the loading of
2670         FSR0 if accessing bitfields,
2671
2672 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
2673
2674         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
2675           _print_format; updated printf, sprintf, vsprintf
2676         * device/include/asm/default/features.h: corrected comment/define
2677         * device/lib/Makefile.in: added sprintf.c
2678         * device/lib/libsdcc.lib: added sprintf module
2679         * device/lib/printf_large.c,
2680         * device/lib/vprintf.c,
2681         * device/lib/sprintf.c: totally refactored printf_large and vprintf
2682           into these 3 files
2683         * support/regression/Makefile: changed ALL_PORTS into a usefull default
2684         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
2685         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
2686           hc08 test
2687         * support/regression/tests/zeropad.c: define idata as data for hc08
2688
2689 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2690
2691         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
2692         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
2693         labels are referenced at least once (even if a reference is not found)
2694         * src/hc08/gen.c (emitcode): set isComment flag for comments
2695         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
2696         loads), rules 6a..6b (optimize jumps to return)
2697
2698 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2699
2700         * device/lib/acosf.c (acosf),
2701         * device/lib/asinf.c (asinf),
2702         * device/lib/atanf.c (atanf),
2703         * device/lib/ceilf.c (ceilf),
2704         * device/lib/cosf.c (cosf),
2705         * device/lib/coshf.c (coshf),
2706         * device/lib/cotf.c (cotf),
2707         * device/lib/fabsf.c (fabsf),
2708         * device/lib/floorf.c (floorf),
2709         * device/lib/log10f.c (log10f),
2710         * device/lib/logf.c (logf),
2711         * device/lib/sinf.c (sinf),
2712         * device/lib/sinhf.c (sinhf),
2713         * device/lib/sqrtf.c (sqrtf),
2714         * device/lib/tanf.c (tanf),
2715         * device/lib/tanhf.c (tanhf),
2716         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
2717         replaced all instances of "reentrant" in the library functions
2718         defined in math.h with this macro.
2719         * support/regression/tests/float_trans.c: reenabled test for hc08
2720
2721 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
2722
2723         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
2724         erroneously deleted
2725
2726 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2727
2728         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
2729         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
2730         multi-byte volatile operands are used
2731         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
2732         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
2733         initialization to area GSINIT0 so that it would always precede
2734         any static initializers in GSINIT
2735         * support/regression/tests/zeropad.c: fixed idata define for hc08
2736         * support/regression/tests/bug-927659.c,
2737         * support/regression/tests/float_trans.c: disabled tests for hc08
2738         pending missing library routines
2739         * .version: increased version number to 2.4.4 - hc08 port now passes
2740         regression tests
2741
2742
2743 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
2744
2745         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
2746         * Makefile.common.in,
2747         * as/Makefile,
2748         * as/hc08/Makefile.in,
2749         * as/mcs51/Makefile.in,
2750         * as/z80/Makefile.in,
2751         * debugger/mcs51/Makefile.in,
2752         * device/include/Makefile.in,
2753         * device/lib/Makefile.in,
2754         * doc/Makefile,
2755         * link/Makefile,
2756         * link/z80/Makefile.in,
2757         * packihx/Makefile.in,
2758         * sim/ucsim/main_in.mk,
2759         * sim/ucsim/avr.src/Makefile.in,
2760         * sim/ucsim/doc/Makefile.in,
2761         * sim/ucsim/gui.src/serio.src/Makefile.in,
2762         * sim/ucsim/hc08.src/Makefile.in,
2763         * sim/ucsim/s51.src/Makefile.in,
2764         * sim/ucsim/xa.src/Makefile.in,
2765         * sim/ucsim/z80.src/Makefile.in,
2766         * src/Makefile.in,
2767         * support/cpp2/Makefile.in,
2768         * support/librarian/Makefile,
2769         * support/makebin/Makefile: added DESTDIR to the install path proposed
2770         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
2771         * doc/sdccman.lyx: added DESTDIR documentation
2772
2773 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
2774
2775         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
2776         instruction for interrupt handlers, use fast returns when returning
2777         from high priority interrupts
2778
2779 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2780
2781         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
2782         code generation
2783         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
2784         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
2785         bugs, ported much of Bernhard's code from mcs51
2786         * src/mcs51/gen.c (genSend),
2787         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
2788         than one when calling a reentrant function
2789         * device/lib/_mullong.c: defined an alternate struct layout for big
2790         endian ports (hc08)
2791
2792 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2793
2794         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
2795         test
2796
2797 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2798
2799         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
2800         are sane and complete before asking the port its prefered parameter
2801         passing method (fixes bug #1017633)
2802         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
2803         and _ret3
2804
2805 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2806
2807         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
2808         problem in bitfields >= 8 bits.
2809
2810 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
2811
2812         * src/SDCCsymt.c: undid changes that were not meant to be committed
2813
2814 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
2815
2816         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
2817
2818 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
2819
2820         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
2821           copied and wrong bit got inverted
2822
2823 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2824
2825         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
2826         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
2827         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
2828         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
2829         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
2830         assignments to bitfields at known addresses
2831         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
2832         reads from bitfields at known addresses
2833         * src/hc08/ralloc.c (packRegisters),
2834         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
2835         genhc08Code): optimize pointer get values used as conditionals
2836         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
2837         and branch
2838
2839 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2840
2841         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
2842         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
2843         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
2844         as conditionals
2845
2846 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2847
2848         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
2849
2850 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2851
2852         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
2853         related problems
2854
2855 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
2856
2857         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
2858
2859 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2860
2861         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
2862         mcs51 port
2863
2864 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
2865
2866         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
2867
2868 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2869
2870         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
2871         cases use more compact code.
2872
2873 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
2874
2875         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
2876
2877 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2878
2879         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
2880
2881 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2882
2883         * src/SDCCsymt.h,
2884         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
2885         parameter of changePointer() from symbol* to sym_link*
2886         * src/SDCCast.c (decorateType): call changePointer() for CAST op
2887         * src/SDCCsymt.c (compareType): void* type is castable to other
2888         pointers, but not necesarily an exact match.
2889         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
2890         is no longer blindly treated as an exact match.
2891         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
2892
2893 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
2894
2895         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
2896
2897 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
2898
2899         * src/pic/gen.c,
2900         * src/pic/pcode.c,
2901         * src/pic/ralloc.h,
2902         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
2903
2904 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
2905
2906         * src/pic/device.c,
2907         * src/pic/device.h,
2908         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
2909
2910 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2911
2912         * src/mcs51/gen.c (emitcode): fixed bug #992819
2913
2914 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
2915
2916         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
2917           there's no need to make it worse
2918
2919 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2920
2921         * src/mcs51/ralloc.c (deassignLR),
2922         * src/ds390/ralloc.c (deassignLR),
2923         * src/hc08/ralloc.c (deassignLR),
2924         * src/z80/ralloc.c (deassignLR),
2925         * src/pic/ralloc.c (deassignLR),
2926         * src/pic16/ralloc.c (deassignLR),
2927         * src/avr/ralloc.c (deassignLR),
2928         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
2929         rlivePoint): fixed another part of bug #971834
2930
2931 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2932
2933         * src/z80/main.c: enabled "critical" keyword
2934         * src/z80/mappings.i,
2935         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
2936         functions (fixes bug #979646)
2937         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
2938
2939 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2940
2941         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
2942           such as c:\mydir.
2943
2944 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
2945
2946         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
2947           doesn't disable too much optimizations
2948
2949 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
2950
2951         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
2952
2953 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
2954
2955         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
2956
2957 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
2958
2959         * src/pic/gen.c tidied up tabs
2960         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
2961         * src/pic/main.c tidied up tabs
2962         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
2963         * src/pic/pcoderegs.c tidied up tabs
2964         * src/pic/ralloc.c tidied up tabs
2965
2966 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
2967
2968         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
2969         to S_FIXED for pic16 port and when symbol is not in level 0,
2970         allocate for S_REGISTER storage class and pic16 port, too,
2971         * src/pic16/device.h: prototype for checkSym,
2972         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
2973         * (pic16_assignConfigWordValue): test the value and the mask to
2974         validate that the value is suitable for the configuration word,
2975         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
2976         collect extern declared symbols, don't emit symbol twice, check
2977         first if symbol is in publics set first,
2978         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
2979         * added command line '--fstack' which enables an experimental
2980         feature for stack access, too buggy to be used yet...
2981         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
2982         * (pic16_allocDirReg): when register has storage class S_REGISTER
2983         allocate in pic16_dynAccessRegs,
2984         * device/include/pic16/pic18f????.h: modified configuration word
2985         naming convention, words started as CONFIG0H but should be CONFIG1H
2986
2987 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
2988
2989         * device/include/mcs51reg.h: fixed bug 970993
2990
2991 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
2992
2993         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
2994         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
2995         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
2996         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
2997         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
2998         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
2999           error/warning numbers,
3000           added function setWarningDisabled()
3001         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
3002         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
3003           _memcmp.c _memmove.c calloc.c realloc.c free.c
3004         * support/regression/tests/malloc.c: added tests for new functionality
3005         * support/regression/tests/zeropad.c: added tests for truncated initializers
3006           and initialized char arrays starting with '\x0'
3007         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
3008
3009 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
3010
3011         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
3012
3013 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3014
3015         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
3016         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
3017         peephole 177.e. Thanks to anonymous
3018
3019 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
3020
3021         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
3022         function isn't used in the source but referenced as a
3023         variable initializer then declare it as extern in .asm file
3024
3025 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
3026
3027         * .version: increased version number to 2.4.3
3028
3029         Adding version extension according to ChangeLog CVS revision
3030         * src/Makefile.in (target all): added dependency 'version.h'
3031         * (rule version.h): added rule to create version.h from ChangeLog,
3032         * (rule dep): added dependency version.h,
3033         * src/version.awk: AWK script to create version.h
3034         * src/SDCCdwarf2.c (dwWriteModule),
3035         * src/SDCCglue.c (initialComments),
3036         * src/SDCCmain.c (printVersionInfo): modified to write after
3037         version string the version extension number,
3038         * src/SDCCutil.c: included "version.h"
3039         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
3040         number,
3041         * src/SDCCutil.h: added prototype for getBuildNumber
3042
3043         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
3044         includeDirsSet, too,
3045         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
3046         const char [] is found in function prototype...
3047
3048         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
3049         moving to WREG with source is already in WREG,
3050         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
3051         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
3052         * (aopForSym): stack'ed symbols are partially supported, added
3053         if-clause to support symbols in FARSPACE,
3054         * (sameRegs): added test for AOP_ACC to see if registers are same,
3055         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
3056         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
3057         * (pic16_popRegFromString): will not allocate a new register if it
3058         doesn't find one by name, bug may have introduced...
3059         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
3060         * (genIpush): revived to use pic16 port's stack,
3061         * (genAddrOf): added incomplete case for stack'ed operand,
3062         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
3063         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
3064         can handle multibyte operands,
3065         * src/pic16/glue.c (pic16_printIval*): some debug info added,
3066         * (pic16initialComments): added message for MPLAB compatibility
3067         mode enabled,
3068         * src/pic16/main.h: prototype for pic16_mplab_comp,
3069         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
3070         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
3071         * (_pic16_linkEdit): NEW, handles link stage, transferred here
3072         because of increased complexity of procedure,
3073         * (_process_pragma): stack pragma changed to format 'stack pos len',
3074         emit symbol '_stack_end' to conform with gplink,
3075         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
3076         to search for register,
3077         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
3078         PO_GPR_REGISTER,
3079         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
3080         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
3081         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
3082         case for PO_GPR_REGISTER,
3083         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
3084         dies, the new era is ahead !...
3085         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
3086         pic16_dynInternalRegs,
3087         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
3088         * (pic16_allocDirReg): minor optimizations and bug fixes,
3089         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
3090
3091         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
3092         load stack and frame pointer with address of 'stack_end' symbol
3093
3094 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
3095
3096         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
3097         without source code but only variable initializers
3098
3099 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
3100
3101         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
3102         external are not declared as extern to reduce overhead while linking
3103
3104 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
3105
3106         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
3107
3108 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
3109
3110         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
3111           Yee Keat for the patch
3112         * src/SDCCast.c (decorateType): fixed bug #979599
3113         * src/ds390/gen.h: removed local fReturnSizeDS390
3114         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
3115         * src/ds390/gen.c (genAnd, genOr, genXor),
3116         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
3117
3118 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
3119
3120         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
3121         add relFilesSet to $3, manipulate $2 to handle linking of object
3122         files without source files in command line,
3123         * device/include/pic16 (all headers): added ID location macros,
3124         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
3125         entries for ID location bytes,
3126         * (pic16_assignIdByteValue): NEW,
3127         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
3128         added field dumpcalltree to pic16_options_t,
3129         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
3130         is used instead of pic16_Gstack_base_addr, check if (ifx) before
3131         emitting rFalseIfx label after check_carry label,
3132         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
3133         pic16_emitDIRegs), NEW
3134         * (pic16glue): dump .calltree file when option --calltree found,
3135         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
3136         * (_pic16_genAssemblerPreamble): emit ID locations after
3137         configuration registers,
3138         * (pic16_linkCmd): modifications of the link command,
3139         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
3140         * (pic16_pCodeInitRegisters): don't init stack registers,
3141         * (pic16_findPrevInstruction): fixed bug,
3142         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
3143         bug with immediate registers,
3144         * (buildCallTree): traces stack push and pop,
3145         * (pct2): dump also stack usage for each function,
3146         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
3147         * (pic16_allocDirReg): various modifications,
3148         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
3149         fixed to 1,
3150
3151 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
3152
3153         * src/pic16/pcode.c: removed buggy double colon
3154
3155 2004-07-01 Borut Razem <borut.razem AT siol.net>
3156
3157         * support/scripts/sdcc.nsi: added include/pic16 to setup
3158
3159 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
3160
3161         * device/lib/Makefile.in: fixed bug in target objects-pic16,
3162         * device/lib/pic16/Makefile: prefixed with dash (-) command under
3163         target 'clean',
3164         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
3165         specific command line arguments. Also added sample lkr script
3166         for placing a variable at a specific memory bank.
3167         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
3168         at a specific memory bank,
3169         * (pic16_dump_isection): fixed bug which caused string literals to
3170         be omitted when dumping idata section,
3171         * (pic16_groupRegistersInSection): added code to handle registers
3172         in specific memory banks,
3173         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
3174         public, all references are renamed too,
3175         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
3176         AOP_DPTR2,
3177         * (pic16_storeForReturn): added case to handle when dest is WREG,
3178         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
3179         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
3180         pic16_rel_udata, check to see if that register is marked as being
3181         a member of a specific memory bank,
3182         * (pic16_printIvalCharPtr): added code to add string literals either
3183         to code or the idata sections,
3184         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
3185         also accept the 'udata' pragma,
3186         * src/pic16/main.h: new structure types sectName and sectSym
3187         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
3188         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
3189         * (pic16_findPrevInstruction): fixed, it returned nothing,
3190         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
3191         instruction combinations,
3192         * (pic16_FixRegisterBanking): heavily reorganised,
3193         * (pic16_AnalyzeBanking): if generating banksel directives is
3194         disabled, then don't call FixRegisterBanking at all,
3195         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
3196         completely removed,
3197         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
3198
3199 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
3200
3201         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
3202         Phuah Yee Keat <yk.phuah AT nestac.com>
3203
3204 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3205
3206         * src/pic16/glue.c (pic16createInterruptVect): function now emits
3207         correctly the IVT even if it is relocated to some other location
3208
3209 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3210
3211         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
3212         * device/include/pic16/pic18f2220.h: NEW,
3213         * device/lib/pic16/libdev/pic18f2220.c: NEW,
3214         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
3215         * src/pic16/device.c (struct Pics16): added info for 18f2220,
3216         * src/pic16/device.h (struct pic16_options): added ivt_loc and
3217         nodefaultlibs, ivt_loc is the location of the interrupt vector
3218         table, and nodefaultlibs signs that default libraries should not be
3219         linked in link stage,
3220         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
3221         according to --ivt-loc argument,
3222         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
3223         when pragma stack is found,
3224
3225 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3226
3227         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
3228         256 (range check), 257 (do while), 258.a-f (bit banging
3229         f.e. on 3-wire SPI bus)
3230
3231 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3232
3233         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
3234         variables used exclusively within a loop
3235
3236 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
3237
3238         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
3239
3240 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3241
3242         * src/SDCClrange.c (computeClash): fixed bug #971834
3243
3244 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3245
3246         * src/mcs51/gen.c (genCmp): fixed bug #975903
3247         * src/hc08/gen.c (operandsEqu),
3248         * src/ds390/gen.c (operandsEqu),
3249         * src/z80/gen.c (operandsEqu),
3250         * src/pic/gen.c (operandsEqu),
3251         * src/pic16/gen.c (operandsEqu),
3252         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
3253         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
3254
3255 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3256
3257         * src/SDCCcse.c (cseBBlock): fixed bug #966963
3258
3259 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
3260
3261         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
3262         default case in switch statement,
3263         * glue.c (pic16_initPointer): expr is initialised via decoarteType
3264         to eliminate problem with initialisation of pointers, but problem
3265         still exists,
3266         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
3267         * (emitStaticSegment): removed various lines emitting debug info,
3268         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
3269         added processor registers for utilizing EEPROM,
3270         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
3271         configurable and set 8
3272
3273 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
3274
3275         * .version: increased version number to 2.4.2,
3276
3277         Cumulative patch for pic16 port
3278         * src/pic16/device.c: changed scheme to dump initial values for
3279         variables in idata segment, all print_idata* functions were removed,
3280         now the pic16_printIval* will be called,
3281         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
3282         * _pic16_printPointerType, pic16_printPointerType,
3283         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
3284         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
3285         NEW, similar to the respective functions in SDCCglue.c,
3286         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
3287         way, emitting hex bytes,
3288         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
3289
3290 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3291
3292         * src/avr/ralloc.c (serialRegAssign),
3293         * src/xa51/ralloc.c (serialRegAssign),
3294         * src/pic/ralloc.c (serialRegAssign),
3295         * src/pic16/ralloc.c (serialRegAssign),
3296         * src/hc08/ralloc.c (serialRegAssign),
3297         * src/z80/ralloc.c (serialRegAssign),
3298         * src/ds390/ralloc.c (serialRegAssign),
3299         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
3300
3301 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3302
3303         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
3304         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
3305
3306 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
3307
3308         Cumulative patch for pic16 port:
3309         * src/pic16/device.h (typedef PIC16_device) modified fields for
3310         defining microcontrollers,
3311         * src/pic16/device.c: added new info for all devices in Pics16 array,
3312         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
3313         to be optimised out by the pCode optimiser,
3314         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
3315         specially, bug reported by G.M. Gallant,
3316         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
3317         as force'd so that cannot be optimised out by pCode optimiser,
3318         * src/pic16/pcode.c,
3319         * src/pic16/pcodepeeph.c,
3320         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
3321         they are disabled by default, but can be enabled explicit with
3322         command argument --denable-peeps, for testing,
3323         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
3324         --pomit-ivt in COMPILE_FLAGS
3325
3326 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3327
3328         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
3329           compilation on MSVC
3330
3331 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3332
3333         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
3334
3335 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3336
3337         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
3338         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
3339
3340 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
3341
3342         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
3343         would only assign 0x300001 register.
3344
3345 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
3346
3347         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
3348         in COMPILE_FLAGS. Thanks to G. Gallant for report.
3349
3350 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3351
3352         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
3353         for ds80c400
3354         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
3355         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
3356         added peephole 254 (left shift), 255 (jump table)
3357
3358 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
3359
3360         * device/lib/Makefile.in: removed comment line with model-pic16,
3361         * (target port-specific-objects-pic16): the libraries and objects
3362         are copied to the build directory form the device/lib/pic16/bin
3363         directory
3364
3365         Cumulative patch concerning pic16 port:
3366         * library directory has been re-organized,
3367         * added support for PIC18F1220,
3368         * added headers and library sources for chips 18f1220,18f6520,
3369         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
3370
3371         * configuration registers setting has changed, now each supported
3372         device has a complete description of the registers it uses,
3373         * all initialisations are moved to idata sections, these section
3374         can be absolute or relocatable,
3375         * fixed initialisation of codespace variables,
3376         * fixed warning about PCLATU and gpsim,
3377         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
3378         * (genAssign): use table reads when assigning from variables in codespace,
3379         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
3380         char/int variables placed in codespace,
3381         * (pic16_emitConfigRegs): NEW, emits a list with configuration
3382         registers set in .asm file, no need for --pomit-config-words anymore,
3383         * (pic16glue): some 8051 legacy segments are commented out
3384         (to be removed completely),
3385         * added support for alternative assembler and linker with --asm=
3386         and --link= command line arguments,
3387         * peepholes are disabled automatically in the port, no need to
3388         specify on command line,
3389         * port supports natively char/int/long multiplication, but converts
3390         all divisions to support functions,
3391         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
3392         to the file set in variable $2,
3393         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
3394         strings in ASCII format and not in hex,
3395         * ralloc.c (serialRegAssign): added a triplet of conditional calls
3396         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
3397         allocate proper register if iCodes aren't temporary,
3398
3399 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
3400
3401         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
3402
3403 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
3404
3405         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
3406         is commented out
3407
3408 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3409
3410         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
3411         computed address is reused
3412         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
3413         multi-byte bitfields
3414
3415 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3416
3417         * src/z80/gen.c: (genArrayInit): must check for pointers too
3418
3419 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3420
3421         * support/regression/tests/zeropad.c: never meant to commit the
3422           nestedstruct test: removed, added check for GCC version
3423
3424 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
3425
3426         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
3427         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
3428         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
3429           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
3430           bugs 928906 and 954082 half-empty initializers
3431         * src/SDCCsymt.h,
3432         * src/SDCCsymt.c (getAllocSize): added for above fix
3433         * src/z80/gen.c (genArrayInit): fixed bug 741044
3434         * support/regression/tests/zeropad.c: added tests
3435
3436 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
3437
3438         * src/pic16/device.c (pic16_dump_section): corrected bug which
3439         caused some symbols of the libraries to be misplaced
3440
3441 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3442
3443         * src/pic16/glue.c,
3444         * src/pic16/ralloc.h,
3445         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
3446         to fix conflict with pic port
3447
3448 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3449
3450         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
3451         externs configuration variables,
3452         * src/pic16/ralloc.h,
3453         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
3454         prototype in header, commented out some debug messages
3455
3456 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
3457
3458         * src/pic16/glue.c,
3459         * src/pic16/main.c,
3460         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
3461         for gpasm COFF object generation. Thanks to D. Hawkins for
3462         his patch info
3463
3464 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3465
3466         * src/ds390/main.c,
3467         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
3468         Brock for spotting this)
3469         * src/ds390/gen.c (genEndFunction),
3470         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
3471         interrupt handler and critical. Disable push/pop optimizations when
3472         peephole optimizations disabled.
3473
3474 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
3475
3476         Updated pic16 library sources and headers.
3477         * device/lib/pic16/pic18f*/ ,
3478         * device/include/pic16/*.h: modified to handle structured SFR
3479         definitions
3480
3481 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
3482
3483         * src/port.h (PORT structure): added hook initPaths, now each
3484         port can declare its own default search paths,
3485         which can been seen with the --print-search-dirs option,
3486         see pic16 port for example,
3487         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
3488         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
3489         * (doPrintSearchDirs): NEW, replaces in a central manner the
3490         printing of search dirs which was split in set*Paths functions,
3491         * (main): added call to port->initPaths and doPrintSearchDirs,
3492         * src/avr/main.c,
3493         * src/ds390/main.c,
3494         * src/hc08/main.c,
3495         * src/izt/i186.c,
3496         * src/izt/tlcs900h.c,
3497         * src/mcs51/main.c,
3498         * src/pic/main.c,
3499         * src/pic16/main.c: modified port structures to reflect addition of
3500         initPaths hook,
3501
3502         * src/pic16/device.c (regCompare): registers are finally sorted by name,
3503         * (pic16_dump_section): for registers in same address reserve memory once,
3504         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
3505         to no_banksel,
3506         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
3507         result is greater in size than right or left,
3508         * (pic16_genUMult8X8_8): there are some cases where the result can
3509         be 16 bits size, so handle these,
3510         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
3511         * (pic16_outBitC): modified to emit pcodes,
3512         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
3513         or not,
3514         * (genDivOneByte): implemented algorithm to divide 8-bits,
3515         * (genCmp): uncommented goto, but issues still exist,
3516         * (genAnd): fixed a bug with variables >8bits,
3517         * (genPackBits): optimization added that uses BCF/BSF to change a
3518         single bit,
3519         * (genAssign): fixed bug when assigning floating point literals,
3520         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
3521         __sdcc_gsinit_startup label,
3522         * src/pic16/main.c (_pic16_init): removed search directory
3523         initialisations,
3524         * (_pic16_initPaths): NEW, used to initialise search directories,
3525         * (_hasNativeMulFor): support functions for all except char/int
3526         multiplication, and char division,
3527         * (PIC16_port struct): modified entry for native mul support,
3528         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
3529         no_banksel option,
3530         * (buildCallTree): call to register_usage is ifdef'ed out,
3531
3532 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3533
3534         * device/include/string.h: applied Stas Sergeev's patch to make this
3535         header file compatible with the preprocessor -Wundef option
3536         * src/SDCCmain.c (main): abort compilation if preprocessor reports
3537         failure (fixes bug #941458)
3538
3539 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3540
3541         * src/SDCCopt.c (killDeadCode): fixed bug #907733
3542         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
3543         that the variable, not the function, should be static
3544         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
3545         to be consistent with non-literal case
3546
3547 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3548
3549         * src/SDCCast.c (isConformingBody): fixed bug #949967
3550         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
3551         convilong): fixed bug #952086
3552
3553 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3554
3555         * src/SDCCmem.c (allocVariables): fixed bug #955321
3556
3557 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3558
3559         * src/hc08/main.c (_hc08_genAssemblerEnd),
3560         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
3561         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
3562         completely eliminated the use of a temporary file
3563         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
3564         when more than one file linked
3565         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
3566
3567 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3568
3569         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
3570         which fixes bug #543481
3571         * support/regression/tests/bug-751703.c: fixed comments left from a
3572         cut and paste error
3573         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
3574         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
3575         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
3576         scopes
3577         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
3578         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
3579         are now changed to underscores in moduleName
3580
3581 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3582
3583         * as/mcs51/lkmem.c: better fix for bug #954173
3584
3585 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
3586         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3587
3588         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
3589         * device/include/c8051f000.h,
3590         * device/include/c8051f120.h,
3591         * device/include/c8051f300.h,
3592         * device/include/c8051f310.h,
3593         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
3594         PWM16) and detab'ed
3595
3596 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3597
3598         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
3599         and mailing lists, doc'ed --no-peep-comments, removed reference
3600         to knoppix (newest version has no LyX/LaTeX), other minor changes
3601         * src/SDCCglue.c (glue): save 2 bytes stack space with
3602         option --main-return. The ljmp could probably be avoided too
3603
3604 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3605
3606         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
3607
3608 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3609
3610         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
3611         * src/SDCCopt.c (isLocalWithoutDef),
3612         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
3613         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
3614         (credit to Maarten Brock for patch #949363, on which this is based)
3615         * support/regression/tests/bug-751703.c: some test cases of extern used
3616         within inner scopes.
3617
3618 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3619
3620         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
3621         SPEC_STRUCT
3622         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
3623         struct definitions
3624         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
3625         dwWriteLabel): fix to create valid debugger symbols even when
3626         the module name has non-alphanumeric symbols in it
3627         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
3628         when a variable's allocation has been optimized away
3629
3630
3631 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3632
3633         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
3634         * src/hc08/main.c,
3635         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
3636         * src/mcs51/main.c,
3637         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
3638         * src/ds390/main.c,
3639         * src/z80/gen.c (z80_emitDebuggerSymbol),
3640         * src/z80/main.c,
3641         * src/pic/gen.c (pic14_emitDebuggerSymbol),
3642         * src/pic/main.c,
3643         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
3644         * src/pic16/main.c,
3645         * src/avr/gen.c (avr_emitDebuggerSymbol),
3646         * src/avr/main.c,
3647         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
3648         * src/xa51/main.c,
3649         * src/SDCCdebug.c (emitDebuggerSymbol),
3650         * src/SDCCdebug.h,
3651         * src/port.h: added a debugger struct to the port struct. Added a
3652         callback for defining debugger symbols
3653
3654         * src/SDCCast.c (createLabel),
3655         * src/SDCC.y (labeled_statement): mark all compiler generated labels
3656         with isitmp = 1
3657         * src/SDCCicode.h,
3658         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
3659         iCode back to the ast for the function
3660
3661         * src/hc08/ralloc.c (hc08_assignRegisters),
3662         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
3663         unneeded fields from the regs struct.
3664         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
3665         pushReg() & pullReg() functions instead of emitcode()
3666
3667         * src/hc08/gen.c (genLabel, genhc08Code),
3668         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
3669
3670         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
3671         debugger hooks
3672
3673         * src/hc08/gen.c (genEndFunction, genhc08Code),
3674         * src/hc08/gen.h,
3675         * src/mcs51/gen.c (genEndFunction, gen51Code),
3676         * src/mcs51/gen.h,
3677         * src/ds390/gen.c (genEndFunction, gen390Code),
3678         * src/ds390/gen.h,
3679         * src/z80/gen.c (genEndFunction, genZ80Code),
3680         * src/z80/gen.h,
3681         * src/z80/z80.h,
3682         * src/pic/gen.c (genEndFunction, genpic14Code),
3683         * src/pic/gen.h,
3684         * src/pic16/gen.c (genEndFunction, genpic16Code),
3685         * src/pic16/gen.h,
3686         * src/avr/gen.c (genEndFunction, genAVRCode),
3687         * src/avr/gen.h,
3688         * src/xa51/gen.c (genEndFunction, genXA51Code),
3689         * src/xa51/gen.h,
3690         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
3691         specific code to cdbFile.c and out of the backend code generators
3692
3693         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
3694         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
3695         starting address is now 0
3696
3697         * as/hc08/asm.h,
3698         * as/hc08/m08pst.c,
3699         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
3700         assembler directive for DWARF support
3701         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
3702
3703         * src/src.dsp,
3704         * src/Makefile.in,
3705         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
3706
3707 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3708
3709         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
3710         and inappropriate peephole optimization in jump tables
3711
3712 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3713
3714         * as/hc08/m08pst.c,
3715         * src/SDCCglue.c: sdccopt works for the hc08 port now
3716
3717 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
3718
3719         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
3720
3721 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3722
3723         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
3724
3725 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3726
3727         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
3728         rules
3729         * src/SDCCmain.c,
3730         * src/SDCCglobl.h,
3731         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
3732         comments from the peephole optimizer replacement rules
3733         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
3734         symbols
3735         * src/SDCCcse.c (updateSpillLocation),
3736         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
3737         equivalents
3738         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
3739         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
3740         objects far pointers
3741
3742 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3743
3744         * src/SDCCsymt.h: a missing part of my last change
3745         * src/pic/ralloc.c (regTypeNum),
3746         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
3747
3748 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3749
3750         * src/SDCCicode.h,
3751         * src/SDCCicode.c (aggrToPtrDclType),
3752         * src/SDCCptropt.h,
3753         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
3754         ptrPseudoSymConvert),
3755         * src/pic/ralloc.c (regTypeNum),
3756         * src/pic16/ralloc.c (regTypeNum),
3757         * src/hc08/ralloc.c (regTypeNum),
3758         * src/ds390/ralloc.c (regTypeNum),
3759         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
3760         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
3761
3762 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3763
3764         * link/z80/lkmain.c (afile),
3765         * as/hc08/lkmain.c (afile),
3766         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
3767         prevent a pointer problem when a filename has no directory and
3768         no extension specified.
3769
3770 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3771
3772         * link/z80/lkmain.c (afile): allow periods in directory names
3773         * link/z80/lkmain.c (afile),
3774         * as/mcs51/lkmain.c (afile),
3775         * as/hc08/lkmain.c (afile): allow linker script file to have an
3776         extension other than ".lnk"
3777         * link/z80/lklex.c (getfid),
3778         * link/z80/lkmain.c (parse),
3779         * as/mcs51/lklex.c (getfid),
3780         * as/mcs51/lkmain.c (parse),
3781         * as/hc08/lklex.c (getfid),
3782         * as/hc08/lkmain.c (parse): Support comments in the linker script
3783         file on lines by themselves and after filenames
3784
3785 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3786
3787         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
3788
3789 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3790
3791         * src/z80/peeph-z80.def: removed some peephole rules that don't
3792         work with multibyte arithmetic (fixed bug #937126)
3793         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
3794         to registers and not global variables
3795         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
3796         geniCodePreInc, geniCodePostDec, geniCodePreDec,
3797         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
3798         checking for assignments not internally generated (fixed bug #931895)
3799         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
3800         structure member (fixed bug #930072)
3801
3802 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3803
3804         * src/SDCCmain.c (linkEdit),
3805         * src/hc08/main.c (_hc08_parseOptions),
3806         * as/hc08/Makefile.in,
3807         * as/hc08/aslink.h,
3808         * as/hc08/asm.h,
3809         * as/hc08/m08pst.c,
3810         * as/hc08/lkrloc.c (relr, rele),
3811         * as/hc08/lkarea.c (lnkarea)
3812         * as/hc08/lkmain.c (afile, parse),
3813         * as/hc08/lkelf.c: support for ELF output
3814         * as/hc08/lks19.c (s19),
3815         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
3816
3817 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3818
3819         * as/mcs51/lkihx.c: Fixed bug #899105.
3820
3821 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3822
3823         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
3824         .dsp files from Unix to DOS.
3825
3826 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3827
3828         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
3829         function pointers; we have been compliant for several months now.
3830         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
3831         change that was accidently commented out
3832         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
3833         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
3834         bug #922319
3835
3836 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3837
3838         * src/hc08/gen.c: output of all of the internal debugging information
3839         is now controlled by the D() macro; it is disabled by default
3840
3841 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3842
3843         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
3844         harder to keep the same registers during a CAST iCode
3845         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
3846         long via int can be done in a single cast, if the signedness is
3847         correct.
3848         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
3849         putchar() in tinibios.c in ds390's library
3850
3851 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
3852
3853         * src/SDCCast.c (decorateType): fixed bug #898889,
3854         cast result of a literal complement too
3855         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
3856         fixed check for bitfields
3857
3858 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
3859
3860         * src/SDCCicode.c (geniCodeLogic): made it static,
3861         (geniCodeLogicAndOr): added in order to fix bug #905492,
3862         (ast2iCode): fixed bug #905492
3863         * support/regression/tests/bug-905492.c: added
3864         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
3865         (processParms): fixed bug #927659: don't copy parms, this will clear
3866         decorated flag
3867         * support/regression/tests/bug-927659.c: added
3868
3869 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
3870
3871         * src/SDCCast.c (addCast): don't cast float to char
3872         * device/lib/libsdcc.lib: added _memmove
3873
3874 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
3875
3876         * device/lib/large/Makefile: fixed parallel execution by
3877         replacing `make` by `$(MAKE)`
3878
3879 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3880
3881         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
3882         offsets (fixes bug #923936)
3883
3884 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
3885
3886         * device/lib/small/Makefile: fixed parallel execution by
3887         replacing `make` by `$(MAKE)`
3888
3889 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
3890
3891         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
3892
3893 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
3894
3895         * src/pic/gen.c (genCpl): multi-byte complements were not working.
3896         * src/regression/Makefile: Regression test was not running.
3897
3898 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
3899
3900         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
3901         complement if possible
3902         * src/SDCCval.c (valComplement),
3903         * src/SDCCicode.c (operandOperation): fixed complement of literal
3904         * support/regression/tests/onebyte.c (testComplement): added
3905
3906 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
3907
3908         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
3909         return an optimized tree; actually replace actParm with the new tree
3910         * src/SDCCast.h: added some parantheses to remove side effects
3911         * support/regression/tests/bug-920866.c
3912
3913 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
3914         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
3915         Bit operands were not being handled properly in the pic14 port.
3916         (now src/regression/add.c passes again).
3917
3918 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3919
3920         * src/SDCC.y (labeled_statement): case and default no longer require
3921         a following statement (RFE #893037)
3922
3923 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3924
3925         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
3926         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
3927         disabled (fixes bug #916294)
3928         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
3929         "mov a,acc"; patch provided by Lenny Story
3930         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
3931
3932 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3933
3934         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
3935         functions
3936         * src/ds390/gen.c (genFunction, genEndFunction),
3937         * src/ds390/ralloc.c (ds390_assignRegisters),
3938         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
3939         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
3940         pushed if there are parameters passed on the stack. Also, a cleaner
3941         way to decide if r0/r1 should be pushed/popped. (Together they fix
3942         bug #918693)
3943
3944 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3945
3946         * doc/sdccman.lyx,
3947         * device/lib/mcs51/crtpagesfr.asm,
3948         * device/lib/mcs51/crtxinit.asm,
3949         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
3950         to avoid confusion with Si Lab's SFRPAGE register.
3951
3952 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3953
3954         * src/SDCCglue.c (emitMaps): allow public sfr variables
3955         * src/SDCCglue.c (initialComments): include compiler build date
3956         with compiler version and put the timestamp of the generated
3957         assembly file on a serperate line to be less confusing.
3958         * src/port.h: added genInitStartup hook
3959         * src/avr/main.c,
3960         * src/ds390/main.c,
3961         * src/hc08/main.c,
3962         * src/pic/main.c,
3963         * src/pic16/main.c,
3964         * src/xa51/main.c,
3965         * src/z80/main.c: genInitStartup initialize as NULL (default to
3966         historical behaviour)
3967         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
3968         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
3969         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
3970         library instead of hard coding it into the compiler.
3971         * support/regression/ports/mcs51-stack-auto/spec.mk,
3972         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
3973         * device/lib/mcs51/Makefile,
3974         * device/lib/small/Makefile,
3975         * device/lib/large/Makefile,
3976         * device/lib/mcs51/crtpagesfr.asm,
3977         * device/lib/mcs51/crtstart.asm,
3978         * device/lib/mcs51/crtxclear.asm,
3979         * device/lib/mcs51/crtxinit.asm,
3980         * device/lib/mcs51/crtclear.asm,
3981         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
3982         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
3983         and into user configurable files.
3984         * device/lib/clean.mk: clean mcs51 directory too
3985         * support/regression/tests/longlit.c: added static to T1 declaration
3986         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
3987         accesses in the initialization code
3988
3989 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3990
3991         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
3992         OSCTRIMVAL as noted in bug #916008
3993
3994 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3995
3996         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
3997         in loops with multiple exits (reported as incorrect registers
3998         used by Martin Helmling in Sdcc-user list)
3999
4000 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4001
4002         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
4003         made ds390 register extensions look less like error messages
4004
4005 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4006
4007         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
4008         reported by Adam Wozniak in Sdcc-user list
4009
4010 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
4011
4012         * src/SDCCast.c (decorateType): fixed with bug and promotion in
4013         arithmetic optimizations, added debug output
4014
4015 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
4016
4017         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
4018         * sdcc.spec: updated and split sdcc into 3 rpms
4019         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
4020         needed for literals of LEFT_OP and '+'
4021         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
4022         introduced RESULT_TYPE_NOPROM
4023         (geniCodeMultiply): fixed logic for decision if mul is optimized to
4024         left shift
4025         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
4026         limited promotion to int only for '*'
4027         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
4028
4029 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
4030
4031         * src/pic16/gen.c (genSkip),
4032         (genc16bit2lit), (gencjneshort): commented out
4033         (is_LitOp): new helper function, checks operand type
4034         (genCmpEq): rewritten
4035
4036 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
4037
4038         * support/regression/tests/bug-908454.c: added
4039
4040 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
4041
4042         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
4043         * src/SDCCicode.c (usualBinaryConversions): op needs int type
4044         (geniCodeCast): cosmetic, don't preserve bit storage class
4045         (geniCodeLeftShift): added promotion
4046         (geniCodeLogic): fixed regression
4047         * src/SDCCsymt.c (computeTypeOr): accept bits too
4048         (compareType): 2nd part of fix for bug #908454, needed for bitfields
4049
4050 2004-03-07  Borut Razem <borut.razem AT siol.net>
4051
4052         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
4053
4054 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
4055
4056         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
4057         version of pic16_genPackRegisters which does not check if ic is a
4058         CAST operator,
4059         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
4060         function cause string1.c regression test fails
4061
4062 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
4063
4064         * sim/ucsim/configure.in,
4065         * sim/ucsim/configure,
4066         * sim/ucsim/doc/Makefile.in: use docdir
4067         * src/SDCC.y: fixed sbit atrributes
4068         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
4069         * src/SDCCast.c (decorateType): |^& need special promotion handling
4070         * src/SDCCast.h,
4071         * src/SDCCsymt.h: moved definition of RESULT_TYPE
4072         * src/SDCCsymt.h (computeType),
4073         * src/SDCCicode.c: computeType() needs op
4074         * src/SDCCsymt.c (checkTypeSanity),
4075         * doc/sddman.lyx: "plain" bitfields are unsigned
4076         * src/SDCCsymt.c (computeTypeOr): added
4077         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
4078         |^& ops
4079         * src/SDCCval.c (val*): computeType() needs op
4080         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
4081         * support/regression/tests/onebyte.c: added tests for |^&
4082
4083 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
4084
4085         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
4086         for writing icode into asm output.
4087
4088 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
4089
4090         * src/pic16/device.c: added some debug lines enabled
4091         with macro DEBUG_CHECK,
4092         * src/pic16/genarith.c: more debug in genPlus,
4093         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
4094         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
4095         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
4096         * (aopForSym): onStack symbols are re-placed in data memspace,
4097         and onStack flag is cleared,
4098         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
4099         copy temporary pcodeop,
4100         * (genPcall): added warning for not updating PCLATU,
4101         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
4102         always true for pic16 port,
4103         * (genMultOneWord): NEW, supports integer multiplication,
4104         * (genMult): modified to call genMultOneWord,
4105         * (ifxForOp): added warning when return NULL,
4106         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
4107         flag is set before call to operandFromSymbol for implicit
4108         added structures,
4109         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
4110         options.intlong_rent are set by default,
4111         * (_hasNativeMulFor): modified to allow port generation of integer
4112         multiplication,
4113         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
4114         set regtype to REG_SFR for all registers, restricting seting the
4115         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
4116
4117 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4118
4119         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
4120         more than 500 times in the regression tests
4121
4122 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4123
4124         * support/Util/SDCCerr.h,
4125         * support/Util/SDCCerr.c,
4126         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4127         enumerator_list),
4128         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
4129         for symbol conflicts.
4130         * support/valdiags/tests/enum.c,
4131         * support/valdiags/tests/tentdecl.c,
4132         * support/valdiags/tests/struct.c: expect possible error messages
4133         referring to original symbol definitions.
4134         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
4135         * src/SDCCsymt.h,
4136         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
4137
4138 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
4139
4140         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
4141
4142 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
4143
4144         * src/pic16/ralloc.c (newReg): fixed bug #908929
4145
4146 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4147
4148         * src/ds390/gen.c: added missing #include "main.h"
4149
4150 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
4151
4152         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
4153         checking if symbol is already in set,
4154         * src/pic16/device.h: prototype for checkAddSym,
4155         * src/pic16/gen.c: (_G): added entry interruptvector,
4156         * (assignResultValue): removed some commented out lines,
4157         * (genFunction): check for ISR via sym->type, absolute section for
4158         interrupt code is created via a new pBlock, the goto instruction is
4159         placed now correctly at the interrupt vector position, changed all
4160         references from ivec to _G.interruptvector,
4161         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
4162         is the interrupt is a high priority one, same for return from ISR,
4163         * src/pic16/glue.c: changed all calls of addSetHead for publics and
4164         externs to calls of checkAddSym,
4165         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
4166         pic16_pcode_verbose flag is set,
4167         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
4168         * src/pic16/pcoderegs.c: message about how many registers are saved
4169         will only be emitted if pic16_pcode_verbose flag is set,
4170
4171 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4172
4173         * src/ds390/ralloc.h,
4174         * src/ds390/ralloc.c (ds390_regWithIdx),
4175         * src/ds390/gen.c (emitcode),
4176         * src/ds390/main.h,
4177         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
4178         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4179         ds390operandCompare, getRegsRead, getRegsWritten,
4180         initializeAsmLineNode): customized instruction size calculation for
4181         ds390, started basis for some register optimizations
4182         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
4183         corresponding assembly output
4184         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
4185         missing push/pop of r0/r1. Optimized push/pops
4186
4187 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4188
4189         * src/mcs51/main.c (instructionSize): fixed ACALL size
4190         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
4191
4192 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
4193
4194         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
4195         the sorting of rlist with NULL elements
4196         * (print_idataType, print_idata): NEW to create idata sections
4197         * src/pic16/device.h: idataSymSet new variable
4198         * src/pic16/gen.c (genFunction): fixed some bugs in string
4199         comparing, improved the absolute section creation for ISRs,
4200         added FSR0L/FSR0H in registers that are saved in an ISR,
4201         * (genInline): fixed the processing of inline snippets,
4202         now they undergo no process by the peephole optimizer
4203         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
4204         are placed in idataSymSet,
4205         * (pic16emitStaticSeg): extern symbols are added in externs,
4206         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
4207         switching when aboslute variables are placed in access bank memory
4208         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
4209         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
4210         commented out with #if,
4211         * (pic16_packRegisters): reintroduce the check for CAST because some
4212         symbols are not correctly handled,
4213         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
4214         pCodeInstruction instead of pCode,
4215         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
4216         pCodeAsmDir definition,
4217         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
4218         directive, then the argument directive is emitted without the leading
4219         tab, hack for inline labels which must be in the first column,
4220         * (compareLabel,pic16_findNextInstruction),
4221         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
4222         * (insertBankSwitch): modified for the new pCodeAsmDir,
4223
4224 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4225         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
4226
4227         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
4228         instance,
4229         * (pushSide): commented out with #if,
4230         * (assignResultValue): fixed some typos in saving
4231         registers,
4232         * (genPcall): FIXED and sync'ed with genCall,
4233         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
4234         * (genNearPointerGet): fixed to handle some more cases,
4235         implementation scheme via table reads,
4236         * (genConstPointerGet): modified to access code memory correct,
4237         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
4238         and improved to handle some cases
4239         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
4240         instead of "RETLW" for init data
4241         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
4242         not IN_DIRSPACE, work around to reduce bank switching when aboslute
4243         variables are placed in access bank memory (<0x80 and >=0xf80),
4244         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
4245         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
4246         TBLWT_POSTDEC,TBLWT_PREINC
4247         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
4248         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
4249         directives
4250         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
4251         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
4252         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
4253         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
4254
4255 2004-02-29  Borut Razem <borut.razem AT siol.net>
4256
4257         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
4258         support/Util/findme.h, support/Util/system.h: enhance binary relative
4259         search for lib and include by using findProgramPath()
4260
4261 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4262
4263         * src/SDCCpeeph.h,
4264         * src/SDCCpeeph.c (pcDistance),
4265         * src/port.h,
4266         * src/mcs51/ralloc.h,
4267         * src/mcs51/ralloc.c (mcs51_regWithIdx),
4268         * src/mcs51/main.h,
4269         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
4270         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4271         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
4272         size calculation port specific, started basis for some register
4273         optimizations
4274         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
4275         missing push/pop of r0/r1. Optimized push/pops
4276         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
4277         * device/lib/_modsint.c (_modsint),
4278         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
4279         and stack version so regression tests pass
4280
4281 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
4282
4283         * src/Makefile.in (dep): include SLIBOBJS in dependency check
4284         * src/SDCCast.c (decorateType): catch another small optimization
4285         with '?' operator
4286         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
4287         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
4288         modified to finally use computeType() all over SDCC,
4289         see Feature Request #877103
4290         * src/SDCCval.h: cosmetic
4291         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
4292         valCompare(); regression tested in muldiv.c
4293         * support/regression/tests/muldiv.c (testMod): mod sign follows
4294         dividend only
4295
4296 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
4297
4298         * src/SDCCast.c (decorateType): fixed bug #902362
4299         * doc/INSTALL.txt: fixed install instructions for win32
4300
4301 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
4302
4303         * device/include/Makefile.in (install): fixed by replacing spaces
4304         by tabs
4305         * doc/README.txt,
4306         * doc/INSTALL.txt: updated for release
4307         * doc/sdccman.lyx: added warning for --xstack being buggy
4308
4309 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
4310
4311         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
4312         to eliminate build warnings.
4313         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
4314
4315 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
4316            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4317
4318         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
4319         removed -penable-stack, added comment for stack pragma, added
4320         warning for not initializing the stack/frame registers, removed
4321         comment at interrupts section
4322
4323         Stack is made permanent, there is no ability to disable stack usage.
4324         * src/pic16/device.h,
4325         * src/pic16/device.c: removed all references to USE_STACK macro,
4326         * src/pic16/device.c (pic16_dump_section): when no elements in
4327         rlist, free rlist before return,
4328         * (pic16_dump_int_registers): NEW, internal registers are a new set
4329         of general purpose registers reused by each function,
4330         * (checkAddReg): returns 1 if registers is added to set,
4331         * (pic16_groupRegistersInSection): when a registers is of type
4332         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
4333         * src/pic16/device.h: memRange and Assigned Memory are deleted,
4334         SRCASECMP macro is moved here from device.c
4335         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
4336         PO_PCLATU, PO_PRODL, PO_PRODH,
4337         * (pic16_pCodeOpType, genMinus,
4338         changed compares to "a" register, with AOP_ACC,
4339         * (pic16_genPlus): fixed some bugs and indented properly,
4340         * (pic16_addSign): changed size to size+offset in the MOVWF
4341         instruction,
4342         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
4343         multiply 8-bit operand by literal, result is 8-bit,
4344         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
4345         multiply 2 8-bit operand, result is 8-bit,
4346         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
4347         genUMult8X*_16,
4348         * src/pic16/gen.c: changed accUse to contain WREG only,
4349         * (pic16_emitcomment): renamed to pic16_emitpcomment,
4350         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
4351         true, do not use immediate addressing any more unless sym is a
4352         pointer in codespace,
4353         * (aopForRemat): do not use immediate addressing when symbol not in
4354         codespace and when symbol's address is requested,
4355         * (aopOp): for-loop in if(sym->accUse) is modified for the new
4356         accUse size (= 1),
4357         * (aopGet): added case for AOP_ACC and don't return "accumulator
4358         bug" but WREG instead,
4359         * (popGetTempReg): pushes contents of temporary register in stack,
4360         * (popReleaseTempReg): pops contents of temporary register from
4361         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
4362         * (pic16_popGet): separated case AOP_ACC to return register WREG
4363         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
4364         or PO_IMMEDIATE and initializes their instance/offset appropriately,
4365         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
4366         the use of immediate pointers to certain cases only.
4367
4368         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
4369         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
4370         * (assignResultValue, genCall, genRet): modified to use the new
4371         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
4372         genPcall is still broken,
4373         * (genFunction): added code to create 'A' type pBlocks when
4374         interrupt functions are generated, code not extensively tested yet,
4375         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
4376         * (genEndFunction): modified so ISRs pop stored registers from stack,
4377         * (genMultOneByte): cleanup,
4378         * (AccRsh): added flag andmask, to and result with appropriate mask,
4379         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
4380         * (genDataPointerGet): fixed and reenabled its use,
4381         * (genNearDataPointerGet): bugs fixed,
4382         * (genDataPointerSet): bugs fixed,
4383         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
4384         pic16_DumpSymbol, pic16_DumpOp,
4385         * src/pic16/genutils.h: function prototypes for the above functions,
4386         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
4387         pointers,
4388         * (pic16emitRegularMap): many many many improvements, but needs a
4389         major cleanup,
4390         * src/pic16/main.c: enable_stack in pic16_options is removed,
4391         * (_pic16_parseOptions): removed command line options -penable-stack,
4392         * (_process_pragma): emit stack symbol only when stack pragma is
4393         processed,
4394         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
4395         redirected to FSR0L/FSR0H pair,
4396         * (pic16_get_op, pic16_get_op2): modifications and improvements,
4397         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4398         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
4399         for immediates,
4400         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
4401         * (dumpPicOptype): NEW,
4402         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
4403         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
4404         with movff instruction,
4405         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
4406         added pic16_int_regs, some packRegsFor* functions are commented out,
4407         because produce errors,
4408         * src/pic16/NOTES: minor modifications
4409
4410 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4411
4412         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
4413         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
4414         --pack-iram.
4415         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
4416         * as/mcs51/lkaomf51.c: fixed bug #895763
4417
4418 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
4419
4420         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
4421
4422 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4423
4424         * doc/sdccman.lyx: added details about the HC08 storage classes and
4425         interrupts, fixed the register usage info for z80 & gbz80
4426
4427 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
4428
4429         * doc/sdccman.lyx: added more pic16 port documentation
4430         * device/include/pic16/: added header pic18fregs.h
4431
4432 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
4433
4434         * doc/sdccman.lyx: added Vangelis' contribution
4435
4436 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4437
4438         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
4439         extend to the next CALL or PCALL, not just to the next CALL.
4440
4441 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
4442
4443         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
4444
4445 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4446
4447         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
4448         bug #895752 and a better fix for bug #716790
4449
4450 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4451
4452         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
4453
4454 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4455
4456         * doc/sdccman.lyx: minor changes, minor changed
4457
4458 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
4459
4460         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
4461         which can't handle SDCC_NEWONEBYTEOPS,
4462         (geniCodeMultiply): removed conversion from mult to shift for pic14
4463         and pic16
4464
4465 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4466
4467         * src/hc08/gen.h,
4468         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
4469         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
4470         thus fixing bug #895406
4471
4472 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
4473
4474         * device/lib/_modsint.c,
4475         * device/lib/_modslong.c: sign follows divisor only
4476         * src/hc08/gen.c (genMultOneByte): if result size is 1,
4477         signs or signedness can be ignored
4478         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
4479         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
4480         added optimization for IFX,
4481         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
4482         arguments;
4483         reenabled optimization for IFX, which was removed on 2004-01-11
4484         * src/SDCCast.h: added return type IFX
4485         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
4486         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
4487         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
4488         SDCC_OLDONEBYTEOPS selects the old behaviour
4489         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
4490         changed again and commented promotion rule
4491         * src/SDCCval.c (valDiv): promotion no longer necessary
4492         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
4493         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
4494         rewritten
4495         * support/regression/tests/onebyte.c: added
4496
4497 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
4498
4499         * gen.c (genInline): reverted to old code for assemnling inline
4500         code because of bug reported James Chadd
4501
4502 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
4503
4504         * ralloc.h: missing declarations from previous patch,
4505         seems that patch for ralloc.h was never applied, fixed
4506
4507 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4508            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
4509
4510         * pcode.c,
4511         * pcode.h,
4512         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
4513         indirect addressing. Marked FSR0 as deprecated
4514         * gen.c (pointerCode): commented out, not needed now
4515         (pic16_popGet2p): new MOVFF helper function
4516         (genGenPointerGet),
4517         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
4518         (shiftRLong): removed duplicate debugging info
4519
4520 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4521
4522         * src/ds390/gen.c (genNearPointerGet),
4523         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
4524         optimization with bits, but not bitfields.
4525         * src/ds390/ralloc.c (packRegisters),
4526         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
4527
4528 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
4529
4530         * src/SDCCcse.c (algebraicOpts): copy operands before modification
4531
4532 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4533
4534         * src/SDCCsymt.h,
4535         * src/SDCCicode.c (operandFromSymbol),
4536         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
4537         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
4538         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
4539         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
4540         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
4541         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
4542         bug #892038
4543         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
4544         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
4545         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
4546         * src/SDCCsymt.c (newSymbol),
4547         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4548         enumerator_list),
4549         * src/SDCCval.h,
4550         * src/SDCCval.c (newiList): fixed bug #885705
4551
4552 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4553
4554         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
4555         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
4556
4557 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4558
4559         * device/include/c8051f120.h,
4560         * device/include/c8051f300.h,
4561         * device/include/c8051f310.h: added/updated header files for Silicon
4562         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
4563         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
4564         in new section Submitting patches
4565
4566 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4567
4568         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
4569         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4570         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4571         genGenPointerSet),
4572         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
4573         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4574         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4575         genGenPointerSet),
4576         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
4577         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4578         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4579         genGenPointerSet),
4580         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
4581         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4582         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4583         genGenPointerSet): fixed bug #892400
4584         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
4585         to eliminate build warnings.
4586         * src/SDCCast.c (processParms),
4587         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
4588         fixed bug 751859
4589         * support/valdiag/valdiag.py: added GCC to the list of defines active
4590         when compiling with gcc
4591
4592 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4593
4594         * support/Util/SDCCerr.h,
4595         * support/Util/SDCCerr.c,
4596         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
4597         with an incomplete type (fixed bug #883734)
4598         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
4599
4600 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4601
4602         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
4603
4604 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4605
4606         * src/SDCCast.c (decorateType),
4607         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
4608         function pointer implementation
4609         * support/regression/tests/funptrs.c: added tests to verify both forms
4610         of function pointers work correctly. Added tests to verify parameters
4611         are passed in the correct order.
4612
4613 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
4614
4615         * device.c (regCompare): registers are sorted by ascending
4616         address and increasing size,
4617         * main.c (_pic16_finaliseOptions): removed the declaration
4618         of compiler macro MCU. Now a macro of the format pic18fxxxx
4619         will be defined from the command line
4620
4621 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4622             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
4623
4624         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
4625         PCOP_RLCF was overwritten!
4626         * gen.c (genSkip): commented out calls to pic16_emitcode,
4627         * (genCmpEQ): fixed "long" compares, only high word did get compared,
4628         * (genlshTwo),
4629         * (genRRC): added debugging info,
4630         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
4631         overwritten while shifting,
4632         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
4633         overwritten while shifting,
4634         * (AccLsh),
4635         * (AccRsh),
4636         * (shiftLLeftOrResult),
4637         * (shiftRLeftOrResult),
4638         * (shiftRLong),
4639         * (shiftLLong): Implemented with pic16_emitpcode
4640         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
4641         * (genLeftShift): Fixed bug, operand for shift by variable always
4642         was "and"ed with 0x0f,
4643         * (genLeftShiftLiteral),
4644         * (genrshTwo),
4645         * (genRightShiftLiteral): added debugging info,
4646         * (genrshFour): added comment,
4647         * (genRightShift): determined signedness from operand "left"
4648         instead of "result"
4649
4650 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4651
4652         * src/SDCCicode.c (geniCodeParms),
4653         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
4654         function pointers, fixed function pointer bugs #861242 and #861896
4655
4656 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4657
4658         * device/include/c8051f000.h,
4659         * device/include/c8051f120.h,
4660         * device/include/c8051f300.h: added header files for Silicon
4661         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
4662
4663 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
4664
4665         * src/SDCCast.c (processParams): added new type flow and restructured
4666         (gatherAutoInit): added new type flow
4667         (addCast): cosmetic changes
4668         (getLeftResultType): added new type flow for array indices, patch
4669         provided by Stas, see FR #877103
4670         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
4671         array index patch by Stas
4672         * src/SDCCast.h: added prototype getResultTypeFromType()
4673         * src/SDCCval.h,
4674         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
4675         * src/pic/glue.c (pic14emitStaticSeg),
4676         * src/pic16/glue.c (pic16emitStaticSeg),
4677         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
4678         for initialization of symbols
4679         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
4680         * support/Util/SDCCerr.h:
4681         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
4682         * .version: bumped version number to 2.3.8
4683         * device/include/Makefile.in (install),
4684         * doc/Makefile (install): changed to 'rm `find ...`' construct to
4685         avoid warnings
4686
4687 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
4688
4689         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
4690         Slade Rich fixed an optimization bug
4691         * src/pic/pcodepeep.c,
4692         * src/pic/pcoderegs.c
4693         * doc/Makefile (install): added test for directory
4694
4695 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4696
4697         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
4698         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
4699         * src/pic/ralloc.c (getRegPtr, getRegGpr),
4700         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
4701         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
4702         * as/mcs51/asexpr.c (term),
4703         * as/hc08/asexpr.c (term): fixed bug #887146
4704
4705 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4706
4707         * src/z80/gen.c (genMult): handle single byte result product
4708         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
4709         DUMMY_READ_VOLATILE (fixed bug #886367)
4710
4711 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
4712
4713         * support/regression/tests/libmullong.c: fixed logic, on little endian
4714         hosts we ended without a mullong_wrapper()
4715
4716 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4717
4718         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
4719         virus/worm forged address usage.
4720
4721 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
4722
4723         Fixed promotion, it should be done on AST level:
4724         * src/SDCCast.c (addCast): added promotion to int
4725         (decorateType): updated call to upCast()
4726         * src/SDCCicode.c (geniCodeLeftShift): removed call to
4727         usualUnaryConversions()
4728
4729 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
4730
4731         * support/regression/tests/literalop.c (mulWrapper): Added a
4732         wrapper to remove integer overflow warnings.
4733
4734         * support/regression/tests/float_trans.c: Made work on host.
4735
4736         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
4737         location of sz80.
4738
4739         * support/regression/generate-cases.py (main): Changed from inline
4740         to a main method.
4741
4742         * doc/Makefile (install): Changed to depth first to get rid of
4743         missing directory install warning.
4744
4745         * as/Makefile (install-doc): Made work on Mac.
4746
4747 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
4748
4749         * src/SDCCast.c: added an additional type flow in decorateType() of
4750         opposite direction, see feature request #860006; it's enabled at runtime
4751         by setting the environment variable SDCC_NEWTYPEFLOW
4752         * src/SDCCast.h: changed prototype of decorateType()
4753         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
4754         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
4755         'char' to 'int' can be omitted, if both operands are 'unsigned char';
4756         see feature request #877103
4757         * src/SDCCval.c: updated call of decorateType()
4758         (valBitwise): fixed bug #882876
4759         (valMinus): added promotion
4760         (valLogicAndOr): result is unsigned
4761         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
4762         * src/SDCCsymt.c (computeType),
4763         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
4764         must not cause an unsigned operation
4765         * src/pic/glue (pic14emitRegularMap),
4766         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
4767
4768 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
4769
4770         * src/pic/pcode.c (PCodeID): commented out left over debug code
4771
4772 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
4773
4774         * support/valdiag/tests/overflow.c: added shift tests
4775         * src/pic/device.c,
4776         * src/pic/gen.c,
4777         * src/pic/gen.h,
4778         * src/pic/glue.c,
4779         * src/pic/main.c,
4780         * src/pic/pcode.c,
4781         * src/pic/pcode.h,
4782         * src/pic/pcodepeep.c,
4783         * src/pic/pcoderegs.c,
4784         * src/pic/ralloc.c,
4785         * src/pic/ralloc.h: applied patch from Slade Rich;
4786         added support for multiple code pages and multiple RAM banks on the
4787         PIC 14 port. The ASM files now no longer simply assume all the
4788         code / RAM are in the same page / bank. This means the linker can
4789         safely allocate code/RAM of separate ASM files to different pages/banks.
4790         * doc/sdccman.lyx: added Slade's tips
4791         * src/mcs51/peeph.def: fixed bug #880768
4792
4793 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4794
4795         * src/hc08/ralloc.c (rematStr): fixed bug #879282
4796         * src/SDCCast.c (decorateType): fixed bug #880197
4797
4798 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
4799
4800         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
4801         getopt.h.
4802
4803         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
4804         strtof is not part of C89 and isn't included with Mac OS X.
4805
4806 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4807
4808         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
4809         shiftL2Left2Result): fixed bug #879326
4810         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
4811         (genMultOneByte): fixed bug in signed vs unsigned multiplication
4812         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
4813         address fetch for clr instruction
4814         * device/lib/hc08/_mulint.c: created optimized assembly version
4815         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
4816
4817 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
4818
4819         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
4820         proposed in FR #877103
4821
4822 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
4823
4824         * src/SDCCval.c (cheapestVal): added missing checks
4825         * src/SDCCicode.c (usualBinaryConversions): fixed condition
4826         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
4827
4828 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
4829
4830         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
4831         equal operands
4832
4833 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
4834
4835         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
4836         loaded with the linker search paths (-L arguments) and the libraries
4837         to be linked with the current source (-l arguments). Changes
4838         currently will affect only the pic16 port.
4839         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
4840         include path the port specific paths and port specific libraries,
4841         * gplink command now contains the $3 argument,
4842         * src/pic16/device.h,
4843         * src/pic16/device.c,: structure PIC_device is made public and
4844         renamed to PIC16_device, the same for variable Pics which is renamed
4845         to Pics16. Updated all references to them.
4846         * src/pic16/glue.c (pic16glue): corrected bug with code
4847         initialization which bypassed the variable initializations block.
4848
4849         * device/lib/pic16/Makefile.rules: removed --penable-stack from
4850         COMPILE_FLAGS and added the --nostdinc option
4851
4852 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4853
4854         * device/include/mc68hc908jb8.h: Register defs for another member
4855         of the hc08 family. Contributed by Bjorn Bringert - thanks!
4856
4857 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
4858
4859         Documenting changes from previous commits.
4860         * configure.in (version 1.56),
4861         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
4862         when generating output files to configure the pic16 library,
4863         but now I've commented it out, since gputils aren't installed in the
4864         SF compile farm, so library won't compile
4865
4866         * device/lib/Makefile.in (version 1.56): initially I've added in
4867         target 'all' the prerequestive 'model-pic16' so it compiled the
4868         pic16 library, but now I've commented it out for the same reasons
4869         above,
4870         * added targets 'model-pic16' and 'objects-pic16' to compile the
4871         library
4872         * added target 'port-specific-objects-pic16' to handle the
4873         generated libraries and copy them into the build/ directory
4874         * added target 'clean-intermediate-pic16' to clean intermediate
4875         files into pic16 directory
4876         * in target 'installdirs' added line to create directory pic16 in
4877         the installation path
4878
4879         * device/include/Makefile.in (version 1.11): in target 'install'
4880         added lines to copy all header files to installation path,
4881         * in target 'installdirs' added line create directory for pic16
4882         headers in the installation path
4883
4884 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
4885
4886         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
4887          a function call
4888
4889 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
4890
4891         * configure,
4892         * device/lib/configure.in,
4893         * device/lib/configure: fixed for autoconf 2.57
4894
4895 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4896
4897         * src/z80/main.c (_parseOptions): fixed the portmode= command line
4898         option so that it actually works. Made it specific to the z80, since
4899         the gbz80 doesn't have these kinds of I/O ports.
4900
4901 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4902
4903         * device/include/z180.h,
4904         * device/lib/_memcpy.c,
4905         * device/lib/_memmove.c,
4906         * device/lib/_mulint.c,
4907         * device/lib/ser_ir.c,
4908         * device/lib/ser_ir_cts_rts.c,
4909         * device/lib/_strcmp.c,
4910         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
4911         * src/z80/main.c (_process_pragma): add support for pragmas bank and
4912         portmode; added deprecation warning for bank= and protmode= forms.
4913         Also, guard against buffer overflow.
4914         * src/z80/gen.c (aopGet): generate better code for sfr banked read
4915
4916 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4917
4918         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
4919         changed interrupt vector table generation to only emit declared vectors.
4920         * device/include/Makefile.in: added missing backslash
4921         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
4922
4923 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
4924
4925         Mainly changes to support compilation of the device libraries
4926         * src/pic16/device.c: stack is allocated via symbol and not
4927         via literal number. The symbol is placed in the corresponding
4928         position of the data ram
4929         * (pic16_dump_section): relocatable and absolute uninitialized
4930         data are now emitted in sorted order to reduce section naming,
4931         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
4932         weren't marked as being in the access bank,
4933
4934 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
4935
4936         Added portion of GNU PIC Library under the directory
4937         device/include/pic16 and device/lib/pic16. These files
4938         contain the declarations of SFRs for the PIC18Fxx2 devices.
4939         The directory is initialized via configure from toplevel.
4940
4941 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
4942
4943         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
4944         the spilllocations to be compared correctly
4945
4946 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
4947
4948         * src/SDCCast.c (decorateType): fixed bug introduced today
4949
4950 2004-01-12  Borut Razem <borut.razem AT siol.net>
4951
4952         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
4953         doc/sdccman.lyx: upper case pragmas are deprecated
4954
4955 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
4956
4957         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
4958         in simpler and even better code
4959
4960 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
4961
4962         * src/SDCCicode.c (operandOperation): fixed bug #874819
4963         * src/SDCCast.c (decorateType): fixed
4964         char foo (unsigned long ul) { return ul > 0; }
4965
4966 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4967
4968         * doc/sdccman.lyx: Moved and added some sections, small changes
4969         all over. Telling LaTeX to be less strict with word spacing
4970         to better keep the right margin. Changed some notes about
4971         maintainance of the ports in section 3.2.1 - is it OK like this?
4972
4973 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
4974
4975         SDCC source changes:
4976         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
4977         convilong): modified to inform the pic16 port that builtin functions
4978         are external
4979
4980         PIC16 PORT specific changes:
4981         * src/pic16/device.c pic16_dump_equates() added,
4982         processor registers declared internally by the port are emitted in
4983         the translation as equates,
4984         * src/pic16/gen.c: inline code is passed unprocessed to the
4985         translation,
4986         * (pic16_popGetLit2): fnuction modified to take second operand as
4987         pCodeOp pointer and not as literal,
4988         * (popRegFromIdx): prefixed with pic16_,
4989         * (pic16_popCombine2): modified to receive already allocated pCode
4990         operands,
4991         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
4992         * (genFunction): initializes local stack frame and pushes on stack
4993         all the registers used by this function,
4994         * (genEndFunction): restores all registers from stack and restores
4995         stack frame,
4996         * src/pic16/glue.c (pic16emitRegularMap): various changes and
4997         improvements,
4998         * (pic16glue): changed the program startup sequence,
4999         * added new dbName code 'A' for functions placed in absolute section
5000         * src/pic16/main.c: added function attribute _naked,
5001         * added pragma 'code' to place a fnuction at an absolute address,
5002         * added command line arguments --debug-ralloc and --pcode-verbose,
5003         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
5004         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
5005         * (pic16_newpCodeOpLit2): modified to take the second operand as
5006         pCodeOp pointer,
5007         * (pic16_printpBlock): modified to emit each function in a separate
5008         section,
5009         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
5010         UPPER for immediate operands,
5011         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
5012         instruction,
5013         * src/pic16/peeph.def: all peepholes with movff are commented out,
5014         because there is a problem in the pcode peep optimizer,
5015         * src/pic16/ralloc.c: the register allocator can now reuse local
5016         function symbols for another function. This saves register usage.
5017         * src/pic16/ralloc.h: added flag isLocal in structure regs,
5018
5019         Added file src/pic16/NOTES with information about program writing on
5020         the current port version.
5021
5022 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5023
5024         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
5025         and peephole 252 (array access)
5026
5027 2004-01-09  Borut Razem <borut.razem AT siol.net>
5028
5029         * src/SDCCmain.c : fixed #872250: -l command line defined library
5030           files are scanned before standard library files
5031
5032 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5033
5034         * src/SDCCast.c (decorateType): fixed bug #874046
5035
5036 2004-01-09  Borut Razem <borut.razem AT siol.net>
5037
5038         * support/scripts/sdcc.nsi: remove previous installation
5039
5040 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5041
5042         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
5043         bytes for last interrupt vector (mcs51)
5044         * sdcc.spec: fixed typo
5045
5046 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5047
5048         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
5049         gen51Code): more efficient parameter receive for --model-large
5050         ("bug" #845294)
5051
5052 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5053
5054         * src/ds390/main.c,
5055         * src/z80/main.c: added missed needLinkerScript flags (more than
5056         one port structure defined in these file)
5057         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
5058         bug #795325
5059
5060 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
5061
5062         * src/SDCCmain.c: removed various references to DEFAULT_PORT
5063         * src/port.h: added flag needLinkerScript in port->linker
5064         structure to inform whether to create a .lnk file or not,
5065         * src/avr/main.c,
5066         * src/ds390/main.c,
5067         * src/hc08/main.c,
5068         * src/mcs51/main.c,
5069         * src/pic/main.c,
5070         * src/pic16/main.c,
5071         * src/xa51/main.c,
5072         * src/z80/main.c: changed appropriately to configure
5073         needLinkerScript flag
5074         * src/pic/gen.c,
5075         * src/pic16/gen.c (genAddrOf): fixed bug #863624
5076         * src/pic/glue.c: added variable udata_section_name to
5077         override default uninitialized data segment definition for
5078         devices only with SHAREBANK memory (reported from Erik Epetrich)
5079         * (pic14emitOverlay): modified to emit a commented overlay segment
5080         directive when no overlay data exist
5081         * (picglue): modified to emit uninitialized data segment
5082         according to udata_section_name
5083         * src/pic/main.c (_pic14_parseOptions): added command line
5084         options --udata-section-name=[name] to override default
5085         udata definition name
5086         * modified _linkCmd and _asmCmd to include compiler passed
5087         arguments via -W option
5088         * src/pic16/main.c: added $l in _asmCmd, changed extension for
5089         object file from '.rel' to '.o' in port->linker structure,
5090         changed size of fptr from 2 to 3 in port structure
5091
5092 2004-01-07  Borut Razem <borut.razem AT siol.net>
5093
5094         * support/scripts/sdcc.nsi: update PATH
5095         * support/scripts/sdcc.ico: craeted
5096
5097 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
5098
5099         * device/include/Makefile.in: fix install
5100         * doc/Makefile: fix install
5101
5102 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5103
5104         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
5105         in bug #860505
5106         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
5107         how the function variable allocation summary is displayed; also
5108         include information about variables allocated to the overlay
5109         segment
5110
5111 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5112
5113         * as/mcs51/lkmain.c: Help about -Y option
5114         * as/mcs51/lkarea.c: Fixed gcc warnings
5115
5116 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5117
5118         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
5119         fixed warning
5120         * support/valdiag/tests/overflow.c: added
5121         * src/SDCCast.c (decorateType),
5122         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
5123         LEFT_OP (left shift)
5124
5125 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5126
5127         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
5128         (default behaviour).
5129
5130 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5131
5132         A python script to validate compiler diagnostic messages. It can be
5133         used to verify that sdcc complains about bad c source code and
5134         gives a good location of the error.
5135         * support/valdiag/Makefile,
5136         * support/valdiag/valdiag.py,
5137         * support/valdiag/tests/*
5138
5139 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5140
5141         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
5142         * src/SDCCsymt.c (newEnumType),
5143         * src/SDCCsymt.h
5144         * support/Util/SDCCerr.c,
5145         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
5146         enum related bugs.
5147         * support/regression/tests/enum.c: added test for enum values that
5148         require at least 2 bytes of storage.
5149
5150 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5151
5152         * src/common.h: added ifndef/define/endif macros
5153         around the header file.
5154         Bug reported from Jesus Calvino-Fraga
5155
5156 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5157
5158         * sdcc.spec: updated
5159         * device/include/Makefile.in: don't install CVS directories
5160         * device/lib/Makefile.in: added removal of CVS directories after install
5161         * doc/Makefile: fixed install, added local_icons
5162         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
5163         * src/mcs51/gen.c (genRightShift): fixed bug #870788
5164         * src/ds390/gen.c (genRightShift): fixed bug #870788
5165         * src/SDCCast.c (decorateType): fixed bug #870781
5166
5167 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5168
5169         PIC16 port related changes:
5170         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
5171         added variable stackPos,
5172
5173         * gen.c: genCall, assignResultValue: added support for
5174         pushing/retrieving function parameters to/from stack,
5175         genFunction,genEndFunction: setup stack frame for the
5176         generated function,
5177         genAddrOf: will be changed according to bug 863624
5178
5179         * added files genutils.c and genutils.h which contain gen*
5180         debugged and optimised functions extracted from gen.c
5181
5182         * glue.c: added variable 'externs' which holds extern symbols,
5183         pic16emitRegularMap: is modified to properly handle relocatable
5184          symbols under the new scheme,
5185         pic16createInterruptVect: is modified
5186         pic16printPublics: is modified to emit 'global' assembler directives,
5187         added pic16_printExterns to print extern symbols,
5188         pic16glue: initializes stack/frame pointer in the beginning of
5189         the assembly output. Temporary hack, will be corrected later,
5190         because gplink yet does not support stack and SDCC does not
5191         yet support a type of crt0.o object to create the final binary.
5192
5193         * Removed many lines that contain 8051 legacy code.
5194         * The code is finally placed under a 'code' directive.
5195         * Added port specific options.
5196
5197         * _process_pragma: simplified since now we do not need *special*
5198         include file to define SFR registers. But a separate header
5199         will be needed. This will be developed later.
5200         * _pic16_parseOptions: added, parses port specific options:
5201         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
5202         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
5203         --preplace-udata-with=
5204
5205         * _pic16_setDefaultOptions: modified to initialize section names,
5206         but hack is temporarly out of order since it needs improvement.
5207         * _pic16_genAssemblerPreamble: configuration words are emitted by
5208         their address instead of their name. This part is incomplete and
5209         supports only the 18Fxx2 devices. Other devices will emit an error
5210         during assembly since they do not contain the same set of config
5211         registers
5212         * _pic16_genIVT: is modified,
5213
5214         * pcode.c: added definitions for some hardware registers that are needed
5215         for stack support
5216         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
5217         All PCI entries are updated. Now LFSR is supported.
5218         * Removed pic16_pciTRIS is mentioned by mdubuc in source
5219         * added pic16_newpCodeOpLit2 to support instructions with
5220         two literal arguments
5221         * pic16_pCode2str: corrected code that emits assembler instructions
5222         with two literal operands and those that have an access bit modifier
5223         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
5224         this fixes a bug which caused some labels to be lost, when an
5225         assembler directive was added, i.e. banksel,
5226         * pic16_FixRegisterBanking: improved logic that causes the insertion
5227         of bank switching,
5228         * InlineFunction: functions that are called once, are not any more
5229         inlined. This can be a port option in the future,
5230
5231         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
5232
5233         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
5234         hold the corresponding uninitialized symbols,
5235         * pic16_allocProcessorRegister: registers have explicit marked the
5236         accessBank field,
5237         * pic16_allocInternalRegister: registers are explicit marked as
5238         not used,
5239         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
5240         processing list, so bit registers were lost,
5241         *
5242
5243         * ralloc.h: added field 'accessBank' and original symbol operand
5244         in register definition,
5245         * removed the field isMapped from register definition,
5246
5247         ** Several functions have been removed from various sources:
5248         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
5249         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
5250         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
5251         pic16_assignRelocatableRegisters
5252
5253         ** others have been introduced:
5254         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
5255         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
5256
5257 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
5258
5259         * support/scripts/inc2h.pl: changed definition of BIT_AT
5260         to emit 'sbit at' instead of 'bit at'. This was a request.
5261
5262         PIC16 port related preliminary changes:
5263         * gen.c: prefixed function popRegFromString with
5264         pic16_ and all references to it corrected
5265         * pcode.c: all pic16_pc_* hardware registers prefixed
5266         with underscore (_),
5267         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
5268         * ralloc.c: newReg(): when register is REG_SFR then
5269         set address to rIdx,
5270         pic16_allocProcessorRegister(): marks register wasUsed=0
5271         pic16_writeUsedRegs(): added a call to assign processor
5272         registers via pic16_assignFixedRegisters
5273
5274 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5275
5276         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
5277         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
5278         variables in unused register banks.  Also the SSEG is placed
5279         wherever there is enough space for it, and IDATA can be anywhere
5280         in internal RAM.  For now compile using -Wl-Y[stack_size].
5281         The mem file is different for this option as well, since it
5282         makes no sense of talking about DSEG lenght.
5283
5284 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
5285
5286         * src/SDCClrange.c: fixed bug 869095 that caused segfault
5287         in certain cases, e.g. when ROM assignment, patch provided
5288         from Albert den Haan.
5289
5290 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
5291
5292         Many signedness and type propagation fixes:
5293         * src/SDCCicode.c: made geniCodeCast() static
5294         replaced SPEC_ by IS_ (cosmetic)
5295         (operandOperation): fixed div and mod operation
5296         (usualBinaryConversions): added support for promotion of char
5297         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
5298         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
5299         (geniCodeAdd): an array index will stay unsigned, even if promoted
5300         from char to int
5301         (geniCodeArray): ditto
5302         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
5303         * src/SDCCsymt.c (computeType): added more support for char;
5304         promotion of char is selectable by promoteCharToInt, fixed signedness
5305         for all cases
5306         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5307         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5308         * src/SDCCval (val*): replaced signedness calculation by
5309         computeType()
5310         rearranged if-branches (cosmetic)
5311         (valShift): added warning W_SHIFT_CHANGED
5312         (valCompare): fixed problem with different types
5313         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
5314         * support/regression/tests/literalop.c: added many cases
5315         * support/regression/tests/ast_constant_folding.c: changed finally to
5316         'unsigned int'
5317         * .version: new year, new version: 2.3.7
5318         * src/SDCCmain.c (main): applied patch #866468
5319         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
5320         provided by Scott Bronson
5321         * doc/sdccman.lyx: updated documentation for sdcdb
5322         updated and added chapter tips
5323
5324 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5325
5326         * src/SDCCsymt.h: missing from yesterday's commits
5327
5328 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5329
5330         * src/SDCC.y (struct_or_union_specifier),
5331         * support/Util/SDCCerr.c,
5332         * support/Util/SDCCerr.h: verify that struct & union tags are used
5333         as declared.
5334
5335 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5336
5337         * src/SDCCglobl.h: missing from yesterday's commits
5338
5339 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5340
5341         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
5342         sft_attributes, struct_declaration, parameter_declaration,
5343         type_name, start_block, declaration_list),
5344         * src/SDCC.lex (check_type): support redefinition of typedef names
5345
5346 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5347
5348         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
5349         aligned xdata arrays. Erik helped me with the if clause.
5350
5351 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5352
5353         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
5354         warning
5355
5356 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5357
5358         * src/SDCCast.h,
5359         * src/SDCCast.c (newAst_),
5360         * src/SDCCicode.h,
5361         * src/SDCCicode.c (ast2iCode, newiCode),
5362         * src/SDCCglobl.h,
5363         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
5364         expr, statement, expression_statement, selection_statement,
5365         iteration_statement, expr_opt, jump_statement): foundation for tracking
5366         sequence points
5367         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
5368         point code too)
5369
5370 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5371
5372         * support/Util/SDCCerr.c,
5373         * src/SDCCast.h,
5374         * src/SDCCast.c (createCase, createDefault, decorateType),
5375         * src/SDCClabel.c (labelUnreach),
5376         * src/SDCC.y (labeled_statement, jump_statement): More improvements
5377         to error messages.
5378         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
5379         (with thanks to Stas Sergeev)
5380         * device/include/time.h,
5381         * device/lib/time.c (CheckTime): suppress unreachable code warning
5382
5383 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5384
5385         * src/SDCCast.c (createIvalCharPtr),
5386         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
5387         bug #753752)
5388         * support/regression/tests/nullstring.c: tests for these two bugs
5389
5390 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5391
5392         * support/Util/SDCCerr.h,
5393         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
5394         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
5395         about storage class and 'at' used inside struct or union
5396         * src/SDCCBBlock.c (iCodeFromeBBlock),
5397         * src/SDCCcse.c (ifxOptimize),
5398         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
5399         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
5400         printIval, emitStaticSeg, emitOverlay),
5401         * src/SDCClabel.c (deleteIfx),
5402         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
5403         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
5404         gatherAutoInit, processParms),
5405         * support/Util/SDCCerr.h,
5406         * support/Util/SDCCerr.c (werrorfl): Support for better error location
5407         reporting for post-parse errors.
5408
5409 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5410
5411         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
5412         implicit casts via union; they don't work on big endian systems
5413         (possible fix for bug #861138)
5414
5415 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5416
5417         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
5418         * src/mcs51/main.c: fixed the fix for bug #737001
5419
5420 2003-12-15  Borut Razem <borut.razem AT siol.net>
5421
5422         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
5423
5424 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5425
5426         * support/makebin/makebin.c: put output in binary mode
5427
5428 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5429
5430         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
5431         xdata and data memory on startup. Set the environment variable
5432         SDCC_NOGENRAMCLEAR to disable this.
5433         * src/mcs51/peephole.def,
5434         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
5435         (allows non-interrupt and interrupt code to safely compete for a resource
5436         without the non-interrupt code having to disable interrupts)
5437
5438 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5439
5440         * src/SDCCicode.c (geniCodeAdd),
5441         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
5442         with valFromType if type might be a pointer and host is big endian).
5443         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
5444         types, not just integer types.
5445         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
5446         multiply defined with mismatching "at" address.
5447
5448 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5449
5450         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
5451         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
5452         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
5453         with embedded nulls (fixed bug #753752)
5454
5455 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5456
5457         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
5458         Apparently this did not see much testing (endless loop)
5459
5460 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5461
5462         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
5463
5464 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5465
5466         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
5467         gracefully handle NULL memmap pointers
5468
5469 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5470
5471         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
5472         instead of deleting the iCode when an operand is volatile
5473         * src/z80/gen.c (genDummyRead),
5474         * src/mcs51/gen.c (genDummyRead),
5475         * src/ds390/gen.c (genDummyRead),
5476         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
5477         not just IC_RIGHT
5478         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
5479         * src/SDCC.y: fixed bug #850420
5480
5481 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5482
5483         Applied z80 i/o port patch from Peter Townson and fixed some operators
5484         to better handle operands in A register.
5485         * device/include/z180.h
5486         * src/SDCC.y
5487         * src/SDCCglue.c
5488         * src/z80/gen.c
5489         * src/z80/gen.h
5490         * src/z80/main.c
5491         * src/z80/peeph-z80.def
5492         * src/z80/peeph.def
5493         * src/z80/z80.h
5494
5495 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5496
5497         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
5498
5499 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5500
5501         * device/lib/hc08/_mullong.c: Removed extra #endif
5502
5503 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5504
5505         * sim/ucsim/hc08.src/inst.cc,
5506         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
5507         carries from x to h
5508         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
5509         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
5510         * device/include/stdarg.h: fixed varargs for hc08
5511         * device/lib/Makefile.in,
5512         * device/lib/hc08/Makefile,
5513         * device/lib/hc08/_mulint.c,
5514         * device/lib/hc08/_mullong.c: fixed some endian problems
5515
5516 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5517
5518         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
5519         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
5520         * device/lib/_gptrget.c,
5521         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
5522
5523 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5524
5525         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
5526         * src/SDCCast.c (astErrors): fixed bug #846007
5527         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
5528
5529 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5530
5531         * src/SDCCast.c (decorateType): disabled a transformation I added in
5532         revision 1.188 (access to fields of a structure at an absolute address);
5533         it breaks with bitfields, extern declarations, and gcse analysis.
5534         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
5535         could be assigned through a pointer, so don't complain.
5536         * src/SDCCast.c (astErrors),
5537         * src/SDCCast.h,
5538         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
5539
5540 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
5541
5542         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
5543         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
5544         output of __config directives, since gpasm now supports them
5545         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
5546         pre-processor macro, i.e. -DMCU=p18f452
5547         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
5548         and modified to handle 'cast' icode similarly to '=' icode
5549         * src/pic16/device.h (typedef struct PIC_device): added field
5550         'extMIface' to indicate that chip has external memory interface
5551         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
5552         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
5553         18F8720
5554
5555 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5556
5557         * src/SDCC.y (pointer): fixed bug #846006
5558         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
5559         * src/SDCCast.c (decorateType): fixed bug #846009
5560         * src/ds390/peeph.def,
5561         * src/ds390/gen.c (genAnd, genOr),
5562         * src/mcs51/peeph.def,
5563         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
5564
5565 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5566
5567         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
5568         * src/SDCCdflow.c
5569         * src/SDCCcse.c
5570         * src/SDCCcse.h
5571         * src/SDCCBBlock.h
5572         * src/SDCCBBlock.c
5573
5574 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
5575
5576         fixed bug #845089
5577         * src/SDCCbitv.h,
5578         * src/SDCCbitv.c: added function to free a bitvector
5579         * src/SDCClrange.h,
5580         * src/SDCClrange.c: added function to recompute the liveranges
5581         * src/avr/ralloc.c,
5582         * src/ds390/ralloc.c,
5583         * src/hc08/ralloc.c,
5584         * src/mcs51/ralloc.c,
5585         * src/pic/ralloc.c,
5586         * src/pic16/ralloc.c,
5587         * src/xa51/ralloc.c,
5588         * src/z80/ralloc.c: recompute the liveranges after register packing
5589
5590 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
5591
5592         * src/SDCCloop.c (newInduction): fixed bug #845630
5593
5594 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5595
5596         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
5597         inadvertantly left behind from my 2003-11-12 change
5598
5599 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5600
5601         Updated headers I neglected to commit yesterday.
5602         * src/SDCClrange.h,
5603         * src/SDCCicode.h
5604
5605 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5606
5607         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
5608         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
5609         * src/SDCCopt.c (eBBlockFromiCode),
5610         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
5611         the creation of the key hash table from the sequencing so it can be used
5612         earlier (for some GCSE bug fixes still pending)
5613
5614 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5615
5616         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
5617         * support/regression/tests/addsub.c: testing genPlus shortcut
5618
5619 2003-11-15  Borut Razem <borut.razem AT siol.net>
5620
5621         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
5622
5623 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5624
5625         * src/SDCCcse.c (cseBBlock): fixed bug #527779
5626         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
5627         ordering is immaterial.
5628         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
5629
5630 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5631
5632         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
5633         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
5634         (SIGSEV) of bug #840381
5635         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
5636         unlink new file before rename if new and old filenames are the same)
5637
5638 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5639
5640         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
5641         uninitialized variables) for the mcs51. Set environment variable
5642         SDCC_GENRAMCLEAR to test.
5643         xdata initialization slightly shorter
5644
5645 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5646
5647         * src/SDCCsymt.h,
5648         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
5649         #838241 & 780691 (basicly the same bug)
5650         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
5651         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
5652
5653 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
5654
5655         * src/SDCCmain.c (linkEdit): "fix" #834252
5656
5657 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5658
5659         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
5660         * src/SDCCast.h,
5661         * src/SDCC.y: fixed bug #819403
5662
5663 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5664
5665         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
5666         the reentrant attribute.
5667         * src/hc08/gen.c (genPackBits): added missing stack readjustment
5668         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
5669         simulation
5670         * src/SDCCast.c (decorateType): fixed bug with storage class not being
5671         updated during pointer dereference; f.e. ~(((char *)1)*) was being
5672         erroneously reduced to a literal.
5673         * src/hc08/ralloc.c (packRegisters, rematStr),
5674         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
5675         some cases
5676
5677 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5678
5679         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
5680         * doc/sdccman.lyx: changed from 'article' to 'book'
5681         * doc/Makefile: readded test_suite_spec and cdbfileformat
5682
5683 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
5684
5685         * device/include/stdlib.h: include malloc.h to comply with ANSI
5686         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
5687
5688 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5689
5690         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
5691         * doc/clean.mk: also remove *.out files
5692         * doc/sdccman.lyx: some additions, larger top/bottom margins
5693
5694 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5695
5696         * src/SDCC.y: fixed bug #837365
5697         * support/regression/tests/bitopcse.c
5698         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
5699         a symbol (might be valop instead)
5700         * device/lib/Makefile.in: added errno.c to HC08SOURCES
5701         * device/lib/clean.mk: added hc08 to the cleaning list
5702
5703 2003-11-04  Borut Razem <borut.razem AT siol.net>
5704
5705         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
5706           made 2003-11-04
5707         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
5708           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
5709           malloc is declared in standard stdlib.h
5710
5711 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5712
5713         * device/lib/hc08/Makefile: need to clean .rel not .o files
5714         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
5715
5716 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5717
5718         * src/port.h,
5719         * src/hc08/main.c,
5720         * src/mcs51/main.c,
5721         * src/ds390/main.c,
5722         * src/z80/main.c,
5723         * src/avr/main.c,
5724         * src/pic/main.c,
5725         * src/pic16/main.c,
5726         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
5727         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
5728         tests (which uses the port's oclsExpense function)
5729         * src/SDCC.y,
5730         * src/SDCCast.c,
5731         * src/SDCCicode.c,
5732         * src/hc08/gen.c,
5733         * src/ds390/gen.c,
5734         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
5735
5736 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5737
5738         * src/SDCCcse.c (ifxOptimize),
5739         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
5740         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
5741         deleting the IFX iCode.
5742         * src/hc08/ralloc.c: reduced unneeded slocs
5743         * src/hc08/gen.c: fixed bug in asmopToBoolean
5744
5745 2003-11-04  Borut Razem <borut.razem AT siol.net>
5746
5747         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
5748           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
5749           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
5750           transferred to configure
5751
5752 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
5753
5754         Use headers defined in the C[++] standards:
5755         * sim/ucsim/gui.src/serio.src/fileio.cc
5756         * sim/ucsim/gui.src/serio.src/frontend.cc
5757         * sim/ucsim/gui.src/serio.src/main.cc
5758         * sim/ucsim/gui.src/serio.src/posix_signal.cc
5759         * support/Util/NewAlloc.c
5760         * as/hc08/lklibr.c
5761         * as/mcs51/lklibr.c
5762         * as/z80/aslist.c
5763         * as/z80/assym.c
5764
5765 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5766
5767         * Added MSVC projects for hc08 assembler and linker:
5768         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
5769         /as/hc08/link_hc08.dsp
5770
5771 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
5772
5773         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
5774
5775 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
5776
5777         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
5778
5779 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5780
5781         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
5782
5783 2003-10-31  Borut Razem <borut.razem AT siol.net>
5784
5785         * support/cpp2/cpplib.h,
5786           support/cpp2/cpplib.c,
5787           support/cpp2/cpplex.c,
5788           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
5789           to switch _asm block preprocessing on / off. Default is
5790           #pragma preproc_asm +
5791
5792 2003-10-31  Borut Razem <borut.razem AT siol.net>
5793
5794         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
5795           when outputting comment blocks (when executed with -C option) and
5796           _asm (SDCPP specific) blocks
5797
5798 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5799
5800         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
5801
5802 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
5803
5804         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
5805
5806 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
5807
5808         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
5809         * src/SDCCast.c (decorateType): fixed bug #832664
5810
5811 2003-10-31  Borut Razem <borut.razem AT siol.net>
5812
5813         * support\cpp2\cpplex.c: fixed for SDCPP:
5814           comments(when executed with -C option) and _asm blocks
5815           were included even if they where in skipped #if block.
5816           Applied solution from GCC cpp 3.3.2
5817
5818 2003-10-31  Borut Razem <borut.razem AT siol.net>
5819
5820         * src/SDCC.lex: sdcc now understands both formats:
5821           '# <line_number> <file_name>' and
5822           '#line <line_number> <file_name>'
5823         * support/cpp2/cppmain.c: sdcpp now generates the standard
5824           '# <line_number> <file_name>' instead of former
5825           '#line <line_number> <file_name>'
5826
5827 2003-10-30  Borut Razem <borut.razem AT siol.net>
5828
5829         * support/cpp2/cpphash.h,
5830         * support/cpp2/cpplib.h
5831         * support/cpp2/cpplex.c,
5832         * support/cpp2/cppmain.c,
5833         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
5834
5835 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5836
5837         Fixed a number of problems revealed by bug #827883.
5838         * src/SDCCloop.c (loopInvariants): Spill location of the
5839         result operand should be recomputed if extracted from
5840         a loop. Also, don't extract assignments of an iTemp
5841         from a literal.
5842         * src/SDCCast.c (isConformingBody): loop reversal should
5843         not occur if the control variable is involved with a
5844         relational operator.
5845
5846 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
5847
5848         * .version: bumped to 2.3.6 to reflect the big improvements
5849         made by Erik and Klaus. Thanks!
5850
5851 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
5852
5853         Replaced the livrange code.
5854         * src/SDCClrange.c: added new LR code
5855         * src/SDCCloop.c,
5856         * src/SDCCBBlock.h: removed remainig parts from old LR code
5857         * src/ds390/ralloc.c,
5858         * src/ds390/gen.c: minor fixes to make it work with new code
5859
5860 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5861
5862         * as/hc08/asm.h,
5863         * as/hc08/lkrloc.c,
5864         * src/hc08/gen.c,
5865         * src/hc08/ralloc.c: Fix various warnings related to the hc08
5866         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
5867         (tweaked fix for bug #818696)
5868
5869 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5870
5871         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
5872
5873 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5874
5875         * src/SDCCmain.c,
5876         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
5877         * src/mcs51/gen.c (gencjneshort),
5878         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
5879         more efficient (per Scott Bronson's suggestion)
5880
5881 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5882
5883         Extended the semantics of the critical keyword to include
5884         individual statements. See RFE #827755 and #799831
5885         * src/SDCC.y
5886         * src/SDCCicode.c
5887         * src/SDCCopt.c
5888         * src/SDCCast.c
5889         * support/Util/SDCCerr.c
5890         * support/Util/SDCCerr.h
5891         * src/mcs51/gen.c
5892         * src/ds390/gen.c
5893         * src/hc08/gen.c
5894
5895 2003-10-19  Borut Razem <borut.razem AT siol.net>
5896
5897         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
5898
5899 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5900
5901         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
5902         Fixed bug #818696
5903         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
5904         and predecrement operand is displayed
5905
5906 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
5907
5908         * src/SDCCval.c (valMinus): fixed bug #826041
5909
5910 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5911
5912         Some hc08 related updates that I missed earlier
5913         * sim/ucsim/stypes.h
5914         * support/regression/ports/hc08/spec.mk
5915
5916 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5917
5918         New target "hc08" for the Motorola 68hc08 family of micros
5919
5920         * configure
5921         * configure.in
5922         * Makefile
5923         * src/hc08/*
5924         * src/SDCCmain.c
5925         * src/port.h
5926         * sim/ucsim/hc08.src/*
5927         * sim/ucsim/configure.in
5928         * src/ucsim/configure
5929         * sim/ucsim/packages_in.mk
5930         * as/hc08/*
5931         * as/Makefile
5932         * device/include/mc68hc908qy.h
5933         * device/lib/hc08/*
5934         * device/lib/Makefile.in
5935         * support/regression/ports/hc08/*
5936         * support/regression/Makefile
5937
5938 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5939
5940         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
5941         regression test
5942         * src/ds390/gen.c (genCast): fixed bug #821957
5943
5944 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
5945
5946         * device/lib/logf.c: "fixed" overlay bug
5947         * support/regression/ports/host/spec.mk: added m library
5948         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
5949         * support/regression/tests/float_trans: added (for Eric)
5950
5951 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
5952
5953         * src/mcs51/gen.c (genCpl): fixed bug
5954         http://sf.net/mailarchive/message.php?msg_id=6263915
5955
5956 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
5957
5958         * src/SDCCast.c (decorateType): added extended constant folding
5959         * src/SDCCsymt.c (computeType): cleanup
5960         * src/SDCCval.c (valShift): minor optimization
5961         * support/regression/tests/ast_constant_folding.c: added
5962
5963 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5964
5965         * src/SDCCmain.c: removed some unintended changes
5966
5967 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5968
5969         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
5970         * src/z80/gen.c: fixed part of bug #817589
5971         * src/SDCCsymt.c (checkFunction): fixed bug #817895
5972
5973 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
5974
5975         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
5976         * src/SDCCcflow.c
5977         * src/SDCCcse.c
5978         * src/SDCCdflow.c
5979         * src/SDCClabel.c
5980         * src/SDCClrange.c
5981         * src/SDCCmem.c
5982         * src/SDCCopt.c
5983         * src/SDCCpeeph.c
5984         * src/SDCCset.c
5985         * src/avr/ralloc.c
5986         * src/ds390/ralloc.c
5987         * src/izt/ralloc.c
5988         * src/mcs51/ralloc.c
5989         * src/pic/ralloc.c
5990         * src/pic16/ralloc.c
5991         * src/xa51/ralloc.c
5992         * src/z80/ralloc.c
5993         * src/z80/gen.c: removed unused label "release:"
5994
5995 2003-10-06  Borut Razem <borut.razem AT siol.net>
5996
5997         * src/SDCC.lex: removed definition of unused variables
5998           save_optimize and save_options
5999
6000 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
6001
6002         * clean.mk: removed '=' in "-maxdepth=1"
6003         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
6004         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
6005
6006 2003-10-06  Borut Razem <borut.razem AT siol.net>
6007
6008         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
6009           my_unput() replaced by unput()
6010
6011 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
6012
6013         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
6014         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
6015         type-punned pointer will break strict-aliasing rules"
6016         Old LR behaviour is again default; Klaus' LR can be choosen by
6017         defining the environment variable LRKLAUS
6018         * src/SDCCBBlock.h
6019         * src/SDCCloop.c
6020         * src/SDCClrange.c
6021         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
6022         * clean.mk: fixed removal of files in bin/CVS/
6023         * device/lib/clean.mk: fixed removal of directories small and large
6024         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
6025         * src/SDCCicode.c,
6026         * src/SDCCval.c: removed superflous test for pedantic
6027
6028 2003-10-05  Borut Razem <borut.razem AT siol.net>
6029
6030         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
6031           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
6032           message "unmatched #pragma SAVE and #pragma RESTORE"
6033
6034 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6035
6036         * doc/sdccman.lyx: various additions and updates (interrupts, inline
6037           assembly, critical functions, atomic, nojtbound)
6038
6039 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
6040
6041         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
6042         * src/SDCCBBlock.h
6043         * src/SDCCloop.c
6044         * src/SDCCloop.h
6045         * src/SDCClrange.c
6046
6047 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6048
6049         * src/z80/gen.h,
6050         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6051         * src/mcs51/gen.h
6052         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6053         * src/ds390/gen.h
6054         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6055         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
6056         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
6057
6058 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6059
6060         * src/z80/gen.c (genRet): fixed bug #524753
6061         * src/z80/gen.c (genCast): fixed internal error on cast from
6062         pointer to long
6063         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
6064         fix for bug #477835 to the z80
6065         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
6066         for tracking iCodes in the peephole optimizer for z80
6067
6068 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6069
6070         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
6071         the other part of bug #814548
6072         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
6073
6074 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
6075
6076         * src/SDCCcse.c: fixed part of bug #814548
6077
6078 2003-09-28  Borut Razem <borut.razem AT siol.net>
6079
6080         * src/asm.c: rewrite of printILine() to use temporary file instead
6081           a pipe
6082         * src/xa51/main.c: commented out declaration of int rewinds
6083
6084 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6085
6086         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
6087
6088 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6089
6090         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
6091         * src/asm.c (printILine): Fixed bug #811015
6092
6093 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6094
6095         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
6096         freeing.
6097
6098 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6099
6100         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
6101         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
6102         to correctly handle general case of AOP_PAIRPTR
6103         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
6104
6105 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6106
6107         * src/mcs51/ralloc.c (fillGaps),
6108         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
6109         register positioning bug)
6110
6111 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
6112
6113         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
6114
6115 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6116
6117         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
6118         genCodePointerGet, genGenPointerGet, genFarPointerSet,
6119         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
6120         (ralloc doesn't intentionally do this now, but perhaps later)
6121         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
6122         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
6123         register positioning bugs (Fixed bug #762602 and #795325)
6124         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
6125         (Fixed bug #808779)
6126         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
6127         lines that --i-code-in-asm generates
6128
6129 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6130
6131         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
6132         trying to fclose a FILE* that was already closed.
6133
6134 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6135
6136         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
6137         of const struct should be treated as if const themselves)
6138
6139 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
6140
6141         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
6142
6143 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6144
6145         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
6146         Unix (/n) and DOS (/r/n) line terminations.
6147
6148 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6149
6150         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
6151         bug #613775
6152
6153 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6154
6155         * src/mcs51/gen.c (genFunction, genEndFunction),
6156         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
6157         and restore of EA so that stack offsets to parameters are
6158         correct when using both critical and reentrant/stack-auto.
6159         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
6160         size (can be triggered in error if sloc is shared between
6161         different sized objects)
6162         * device/include/float.h: fixed macros to explicitly use
6163         unsigned long where needed
6164
6165 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
6166
6167         Feature req. 799831: added code to allow nesting of critical functions
6168         * src/mcs51/gen.c (genFunction, genEndFunction)
6169         * src/ds390/gen.c (genFunction, genEndFunction)
6170
6171 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6172
6173         * src/SDCCsymt.c (sclsFromPtr),
6174         * src/SDCCsymt.h,
6175         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
6176         support for standard C idiom of memory mapped variables; for
6177         example, *((xdata int*)0x1234) = 1 is now internally equivalent
6178         to xdata int at 0x1234 tempvar = 1.
6179         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
6180         provided by Akiya ISHIDA
6181
6182 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
6183
6184         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
6185         * src/SDCCval.c (constVal): added reduction from int to char
6186         * src/SDCCval.c (valMult, valDiv): fixed sign handling
6187         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
6188         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
6189         to ignore the sign
6190         * support/regression/tests/shifts.c: fixed
6191
6192 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6193
6194         * src/z80/gen.c (genXor): Fixed bug #805445
6195
6196 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6197
6198         Fixed bug #621531 (const & volatile confusion in the type chain).
6199         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
6200         refer to the const or volatile state of the pointer itself.
6201
6202         * src/SDCCast.c
6203         * src/SDCCglue.c
6204         * src/SDCCicode.c
6205         * src/SDCCsymt.c
6206         * src/SDCCval.c
6207         * src/SDCC.y
6208         * src/SDCCsymt.h
6209         * src/pic/gen.c
6210         * src/pic/ralloc.c
6211         * src/pic16/gen.c
6212         * src/pic16/ralloc.c
6213         * support/regression/tests/const.c
6214
6215 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6216
6217         When checking for duplicated modules, use absolute paths
6218         instead of relative paths.  Files changed:
6219
6220         * as/mcs51/lklib.c
6221         * link/z80/lklib.c
6222
6223 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6224
6225         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
6226
6227 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6228
6229         * device/include/string.h: added size_t typedef, changed
6230         prototypes to use size_t, eliminated separate reentrant and
6231         non-reentrant declarations, added _memmove declaration
6232         * device/lib/_memcpy.c: changed to use size_t instead of int,
6233         changed /4 to >>2 to avoid division library call
6234         * device/lib/_memcmp.c,
6235         * device/lib/_memset.c,
6236         * device/lib/_strncat.c,
6237         * device/lib/_strncpy.c,
6238         * device/lib/_strncmp.c: changed to use size_t instead of int
6239         * device/lib/_memmove.c: new file (fixed bug #772294)
6240         * device/lib/Makefile.in: added _memmove.c
6241         * device/lib/z80/asm_strings.s: fixed bug #772290
6242         * support/regression/tests/bitfields.c: attempt to fix host assertion
6243         failure on amd64-unknown-linux2.2
6244
6245 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6246
6247         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
6248         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
6249         * as/z80/asmain.c (main): fixed bug #801766
6250
6251 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
6252
6253         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
6254         compilers
6255
6256 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6257
6258         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
6259         reported in bug #800609
6260
6261 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
6262
6263         * Top header beautifications in src/pic16 directory:
6264           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
6265           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
6266           pcoderegs.h, ralloc.c, ralloc.h
6267         * main.c: added top header and GPL license notice
6268         * pcode.c: fixed the if-conditional warning
6269
6270 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
6271
6272         * device/lib/_mullong.c: replaced int by short for gcc
6273
6274 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6275
6276         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
6277         and JUMPTABLE iCodes properly now (worked by accident before)
6278         * src/mcs51/gen.c (leftRightUseAcc),
6279         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
6280         iCode properly now. Use getSize instead of nRegs since a & b
6281         aren't part of the nRegs tally.
6282
6283 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
6284
6285         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
6286         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
6287           before instructions that use the _STATUS register
6288
6289 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
6290
6291         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
6292         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
6293         fetching of the pointer
6294         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
6295         copied from genNearPointerSet()
6296         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
6297         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
6298         If they pop r0/r1 they must be called in the opposite order than aopOp().
6299         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
6300         (resp. --stack-auto), prepared for --xstack
6301
6302 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6303
6304         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
6305
6306 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
6307
6308         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
6309         these ports have their own __sdcc_external_start()
6310
6311 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
6312
6313         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6314         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
6315         type for bits was changed. It resulted in bit variables becoming
6316         global, which is not permitted in PIC 14 assembly output.
6317
6318 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6319
6320         * doc/sdccman.lyx: various additions and updates. Rearranged sections
6321
6322 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6323
6324         Z80 and MCS51 linkers complaint if a public symbol is defined
6325         in more than one library module:
6326
6327         * as/mcs51/lklib.c
6328         * link/z80/lklib.c
6329         * as/mcs51/Makefile.in
6330
6331 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6332
6333         A few small changes that speed up the peephole optimizer.
6334
6335         * src/SDCCpeeph.c
6336
6337 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6338
6339         Try to make the peephole optimizer smarter by maintaining
6340         an association between the assembly source code and the
6341         iCodes that originated them. Put this information to use
6342         with a new peephole rule condition "notVolatile" so that
6343         the rules can be aggressive yet still safe.
6344
6345         * src/SDCCpeeph.c
6346         * src/SDCCpeeph.h
6347         * src/mcs51/gen.c
6348         * src/mcs51/peeph.def
6349
6350 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6351
6352         Fixed bug #741761
6353
6354         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
6355         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
6356         if the left or right operand symbols have the accuse flag set.
6357
6358 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6359
6360         Changed the type of the result of the ! (NOT) operator to char;
6361         previously it returned the same type as the source. This allows
6362         us to eliminate all the genFloatNot functions (all of its target
6363         implementations were very buggy) since !float can use the same
6364         code as !long now.
6365
6366         * src/SDCCicode.c (ast2iCode): ! returns char
6367         * src/mcs51/gen.c (genNot, genNotFloat),
6368         * src/ds390/gen.c (genNot, genNotFloat),
6369         * src/z80/gen.c (genNot, genNotFloat),
6370         * src/pic/gen.c (genNot, genNotFloat),
6371         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
6372
6373 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
6374
6375         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6376         1. Interrupt would not compile properly. Ensure PCLATH register is saved
6377            during interrupts. Ensure WSAVE is located at a shared bank address.
6378         2. Fixed page selection in some places
6379         3. Fixed BTFSS/C to where necessary use registers directly and not simply
6380            the registers name strings.
6381         4. Fixed "signed / unsigned compare" compiler warnings.
6382         5. The PIC port manages its own allocation of the general purpose
6383            registers, but makes no attempt to reuse them. As a result when
6384            compiling it soon runs out of general purpose registers. Some
6385            additional code was added to the files pcode.c and device.c to walk
6386            through the function call tree and rename the registers so that they
6387            get reused.
6388
6389         * src/pic/device.c
6390         * src/pic/gen.c
6391         * src/pic/glue.c
6392         * src/pic/pcode.c
6393         * src/pic/pcode.h
6394         * src/pic/ralloc.c
6395         * src/pic/ralloc.h
6396         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
6397         genPlus() & genMinus() when the result is the same as left or right
6398
6399 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6400
6401         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
6402
6403 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6404
6405         Made bitfield a distinct type from bit so that bitfields
6406         convert as per ANSI C and bits retain their traditional
6407         boolean style behaviour. Implemented bitfield support in
6408         the z80 port.
6409
6410         * src/SDCCsymt.h,
6411         * src/SDCCsymt.c,
6412         * src/SDCCast.c,
6413         * src/cdbFile.c,
6414         * src/mcs51/gen.c,
6415         * src/ds390/gen.c: bit v bitfield split
6416         * src/z80/gen.c: New support for bitfields
6417         * support/regression/tests/bitfields.c: reenabled z80,
6418         added more tests
6419
6420 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6421
6422         Rules 246.x, 247.x relate to bitfields, the others speed up
6423         access to xdata mapped I/O devices.
6424
6425         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
6426
6427 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6428
6429         Cleaned up genPackBits and genUnpackBits and added two helper
6430         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
6431         for literal assignments in genPackBits (thanks to Frieder for
6432         reminding me).
6433
6434         * src/mcs51/gen.c
6435         * src/ds390/gen.c
6436
6437 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6438
6439         Fixed bug #748310 (pointer to function type mishandled when the
6440         function name is omitted). Also fixed a SIGSEGV when a function
6441         attribute (reentrant, etc) is used on a non-function or on a
6442         function but misplaced before the parameter list.
6443
6444         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
6445         bug #748310
6446         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
6447         * support/Util/SDCCerr.h,
6448         * support/Util/SDCCerr.c: Added func attr misuse error msg
6449
6450 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
6451
6452         Fixed bug #787649 by anonymous
6453         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
6454         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
6455
6456 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6457
6458         Fixed numerous bitfield problems.
6459
6460         * src/SDCC.y: More bitfield related error checking
6461         * src/SDCCsymt.h,
6462         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
6463         * support/Util/SDCCerr.h,
6464         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
6465         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
6466         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
6467         * support/regression/tests/bitfields.c: tests added
6468
6469 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6470
6471         Made the constant following the "interrupt" keyword optional. If
6472         omitted, the function will not automatically be given an entry
6473         in the interrupt vector table (similar to #pragma NOIV, but
6474         less syntacticly kludgy). The interrupt number is also now
6475         range checked. Also fixed a bug in the high order bit example
6476         in the manual.
6477
6478         * src/SDCC.y
6479         * src/SDCCmem.c
6480         * src/SDCCglue.c
6481         * src/SDCCsymt.h
6482         * support/Util/SDCCerr.c
6483         * support/Util/SDCCerr.h
6484         * doc/sdccman.lyx
6485
6486 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
6487
6488         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
6489         * src/SDCCicode.c (operandOperation): rewritten some ops
6490         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
6491         * src/SDCCsymt.c (computeType): literals are handled the same way as any
6492         other type
6493         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
6494         be re-activated by defining REDUCE_LITERALS)
6495         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
6496         unsigned, but are signed by default
6497         * src/SDCCval.c (constVal): rearranged
6498         * src/SDCCval.c (valMod): preliminary fix
6499         * src/SDCCval.c (valCastLiteral): use TYPE_* types
6500         * support/regression/literalop.c: added, work in progress
6501
6502 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6503
6504         Generate warnings for useless declarations like "char data;"
6505         that don't do what new users expect.
6506
6507         * src/SDCC.y
6508         * support/Util/SDCCerr.h
6509         * support/Util/SDCCerr.c
6510
6511 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
6512
6513         * src/SDCCval.c (valMult): fix overflow detection of negative int
6514
6515 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6516
6517         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
6518
6519         Changes to support big endian targets:
6520
6521         * src/ports.h
6522         * src/SDCCglue.c
6523         * src/avr/main.c
6524         * src/ds390/main.c
6525         * src/izt/i186.c
6526         * src/mcs51/main.c
6527         * src/pic/main.c
6528         * src/pic16/main.c
6529         * src/xa51/main.c
6530         * src/z80/main.c
6531
6532 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
6533
6534         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
6535         * device/lib/time.c: fixed warning "integer overflow in expression"
6536
6537 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
6538
6539         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
6540         * src/SDCCval.c (constVal): changed default to signed; hex and octal
6541         constants are unsigned; added recognition of "u" flag for unsigned
6542         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
6543         * src/SDCCval.c (valDiv, valMod): fixed signdness
6544         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
6545         signedness of modulo, left and right shift
6546         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
6547         * support/Util/SDCCerr.h: added warning W_INT_OVL
6548         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
6549         * src/SDCCast.c (ast_print): improved output of constants
6550
6551 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6552
6553         Fixed some warnings when building with MSVC:
6554
6555         * as\mcs51\asdata.c
6556         * as\z80\asdata.c
6557         * as\mcs51\asm.h
6558         * as\z80\asm.h
6559         * link\z80\aslink.h
6560         * link\z80\lkdata.c
6561         * link\z80\lkeval.c
6562         * link\z80\lkgb.c
6563         * link\z80\lkihx.c
6564         * link\z80\lks19.c
6565         * link\z80\lksym.c
6566         * support\cpp2\cpplib.c
6567         * src\ds390\gen.c
6568         * src\mcs51\gen.c
6569
6570 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
6571
6572         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
6573
6574 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6575
6576         * support\librarian\clean.mk: Do not remove Makefile.
6577         * support\librarian\Makefile: added.
6578
6579 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6580
6581         Added librarian to MSVC build:
6582         * all.dsp
6583         * sdcc.dsw
6584         * support\librarian\librarian.dsp
6585
6586         'configure' not needed for librarian, removed:
6587         * support\librarian\configure
6588         * support\librarian\configure.in
6589         * support\librarian\config_in.h
6590         * support\librarian\Makefile.in
6591
6592         Hopefully these ones built the librarian and the rest of sdcc properly:
6593         * Makefile
6594         * Makefile.common.in
6595
6596         Messed up 'configure', so revert to previous version:
6597         * configure
6598         * configure.in
6599
6600 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
6601
6602         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
6603         there, while the mantissa of a double is "only" 53 bits wide.
6604
6605 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6606
6607         Adding sdcclib to the build.  MSVC project coming soon.
6608         Files added/changed:
6609
6610         * support\librarian\clean.mk
6611         * support\librarian\configure
6612         * support\librarian\configure.in
6613         * support\librarian\config_in.h
6614         * support\librarian\Makefile.bcc
6615         * support\librarian\Makefile.in
6616         * support\librarian\sdcclib.c
6617         * Makefile.bcc
6618         * Makefile
6619         * Makefile.common.in
6620         * configure
6621         * configure.in
6622
6623 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6624
6625         Linker now complaints if linked modules have conflicting options, for
6626         example, one compiled using --model-large and another one compiled with
6627         --model-small.  The following files were modified:
6628
6629         * as\mcs51\asdata.c
6630         * as\mcs51\aslink.h
6631         * as\mcs51\asm.h
6632         * as\mcs51\asmain.c
6633         * as\mcs51\asout.c
6634         * as\mcs51\i51pst.c
6635         * as\mcs51\lkdata.c
6636         * as\mcs51\lklibr.c
6637         * as\mcs51\lkmain.c
6638         * as\z80\asdata.c
6639         * as\z80\asm.h
6640         * as\z80\asmain.c
6641         * as\z80\asout.c
6642         * as\z80\z80pst.c
6643         * link\z80\aslink.h
6644         * link\z80\lkdata.c
6645         * link\z80\lklibr.c
6646         * link\z80\lkmain.c
6647         * src\SDCCglue.c
6648
6649 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6650
6651         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
6652         as/mcs51/lklibr.c: Generate a warning when a library is not found.
6653
6654 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
6655
6656         * src/z80/mappings.i: fix _mul[us][int,long] entries
6657
6658 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6659
6660         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
6661
6662 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
6663
6664         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
6665         * support/regression/tests/bitopcse.c: added
6666         fixed warning:
6667         * src/avr/gen.c:
6668         * src/pic/gen.c:
6669         * src/pic16/gen.c:
6670         * src/z80/gen.c:
6671         * src/xa51/gen.c:
6672
6673 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6674
6675         added support for new library format to z80, gbz80 linkers:
6676         *link/z80/aslink.h
6677         *link/z80/lklex.c
6678         *link/z80/lklib.c
6679         *link/z80/lklist.c
6680
6681 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
6682
6683         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
6684         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
6685
6686 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
6687
6688         added DUMMY_READ_VOLATILE:
6689         * src/SDCC.y:
6690         * src/avr/gen.c:
6691         * src/xa51/gen.c:
6692         * src/z80/gen.c:
6693         * src/pic/gen.c:
6694         * src/pic16/gen.c:
6695         * src/mcs51/gen.c:
6696         * src/ds390/gen.c:
6697         * src/SDCCcse.c (algebraicOpts): many improvements
6698         * src/SDCCcse.h: removed algebraicOpts()
6699         * src/SDCCicode.c (picDummyRead): added
6700
6701 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6702
6703         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
6704         "Insufficient space in data memory".
6705
6706 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6707
6708         * src/mcs51/gen.c: fixed bug #771358
6709         * src/z80/gen.c: fixed bug #759087
6710
6711 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
6712
6713         * src/pic16/glue.c: minor cleanup by Vangelis
6714
6715 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6716
6717         * device/include/regc515c.h: fixed #758477
6718         * device/lib/_gptrget.c: saving some cycles in generic pointer get
6719         * device/lib/_gptrput.c: saved a few bytes
6720         * my tab spacing is 8, yours too?)
6721         * device/lib/_ser.c: process RX bytes earlier than TX bytes
6722         * device/lib/serial.c: process RX bytes earlier than TX bytes
6723         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
6724
6725 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6726
6727         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
6728
6729 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6730
6731     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
6732
6733 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
6734
6735         * device/lib/Makefile.in: bad fix, reverted to 1.43
6736
6737 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
6738
6739         * device/lib/Makefile.in: added missing z80 object files
6740
6741 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
6742
6743         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
6744         pic16 progress by Vangelis:
6745         * src/SDCCglobl.h:
6746         * src/SDCCmain.c:
6747         * src/pic/Makefile:
6748         * src/pic:
6749         * pic/Makefile:
6750         * pic16/device.c:
6751         * pic16/device.h:
6752         * pic16/gen.c:
6753         * pic16/gen.h:
6754         * pic16/genarith.c:
6755         * pic16/glue.c:
6756         * pic16/main.c:
6757         * pic16/pcode.c:
6758         * pic16/pcode.h:
6759         * pic16/pcodepeep.c:
6760         * pic16/peeph.def:
6761
6762 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6763
6764     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
6765
6766 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6767
6768     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
6769     added gbz80 build to MSVC project.
6770     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
6771     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
6772     from 8051 stuff and setup so it links using a .lnk file.
6773
6774 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6775
6776     * support/librarian/sdcclib.c: sdcc librarian.
6777     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
6778     with sdcclib.
6779
6780 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6781
6782     * as/mcs51/lkmain.c: properly handle extensions in function afile.
6783
6784 2003-07-02  Borut Razem <borut.razem AT siol.net>
6785
6786         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
6787         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
6788         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
6789         src/xa51/main.c, src/z80/main.c:
6790         virtualization of glue() function: each port has it's own glue function,
6791         which is accessed by do_glue function pointer in PORT.general structure
6792
6793 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
6794
6795         * DS800C400 fun, improved ROM interface and tinibios.
6796
6797 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
6798
6799         * More support for DS80C400. Now includes beginning of interface to ROM.
6800
6801 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
6802
6803         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
6804
6805 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6806
6807         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
6808
6809 2003-06-19  Borut Razem <borut.razem AT siol.net>
6810
6811         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
6812
6813 2003-06-19  Borut Razem <borut.razem AT siol.net>
6814
6815         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
6816         fixed Z80 port - crt0.o: cannot open.
6817
6818 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
6819
6820         * support/Util/MySystem.c (merge_command): revert bad fix
6821
6822 2003-06-18  Borut Razem <borut.razem AT siol.net>
6823
6824         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
6825
6826 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6827
6828         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
6829         option --use-stdout sends errors to stdout instead of stderr.
6830
6831 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
6832
6833         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
6834
6835 2003-06-15  Borut Razem <borut.razem AT siol.net>
6836
6837         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
6838         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
6839         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
6840         fixed width array of pointers replaced with sets;
6841         multiple include and lib paths ared transferred to preprocessor and linker
6842         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
6843         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
6844         fixed width array of pointers
6845         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
6846         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
6847         fixupPath(), getPathDifference()
6848         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
6849         fixed width array of pointers
6850
6851 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
6852
6853         * src/pic16/ralloc.c: fix warnings
6854         * src/pic16/pcode.c: fix warning
6855
6856 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
6857
6858          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
6859         know all the details, but essentially this set of changes enable
6860         the pic16 port to generate movff instructions and generate assembler
6861         directives,
6862         * src/SDCCmain.c:
6863         * src/pic16/gen.c:
6864         * src/pic16/glue.c:
6865         * src/pic16/pcode.c:
6866         * src/pic16/device.c:
6867         * src/pic16/main.c:
6868         * src/pic16/pcode.h:
6869         * src/pic16/pcoderegs.c:
6870         * src/pic16/ralloc.c:
6871         * src/pic16/ralloc.h:
6872
6873 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6874
6875         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
6876         added option --vc, so sdcc errors and warnings are compatible with
6877         Microsoft Visual Studio.
6878
6879 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6880
6881         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
6882           device/lib/libfloat.lib: added atof function.
6883
6884 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
6885
6886         * doc/sdccman.lyx: updated to Lyx 1.3
6887         * doc/cdbfileformat.lyx: updated to Lyx 1.3
6888         * doc/test_suite_spec.lyx: updated to Lyx 1.3
6889         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
6890
6891 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
6892
6893         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
6894
6895 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6896
6897         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
6898           additions to the "related tools/documentation" section
6899
6900 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
6901
6902         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
6903
6904 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
6905
6906         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
6907         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
6908
6909 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
6910
6911         * doc/sdccman.lyx: fix double dash and other minor things
6912         * doc/Makefile: fix double dash
6913
6914 2003-05-28  Karl Bongers(patches from Martin Helmling)
6915         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
6916           condition and ignore commands.
6917
6918 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6919
6920         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
6921           is in parts still quite out of date, I did changes as far as I felt makes sense
6922           for a non-native english speaker.
6923           Please feel free to add to the manual or to correct my changes.
6924         * doc/Makefile: undid touching the date of intermediate tex files.
6925
6926 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6927
6928         * doc/sdccman.lyx: Manual has an index now
6929
6930 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
6931
6932         Finalize muluint/mulsint and mululong/mulslong merging:
6933         * device/lib/_mulint.c
6934         * device/lib/_mullong.c
6935         * device/lib/gbz80/mul.s
6936         * device/lib/gbz80/stubs.s
6937         * device/lib/z80/mul.s
6938         * device/lib/z80/stubs.s
6939         * src/SDCCsymt.c (initCSupport)
6940
6941 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6942
6943         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
6944         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
6945           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
6946           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
6947           instead of /Zm500.
6948
6949 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6950
6951         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
6952           the regression tests I'm not brave enough to enable 245.b, 245.c
6953         * doc/sdccman.lyx: added latex preamble for hyperref package.
6954           Using pdflatex this will give you a hyperlinked pdf file with
6955           bookmarks. (prepend '%' before /usepackage if this breaks something)
6956
6957 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6958
6959          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
6960
6961 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
6962
6963         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
6964
6965 2003-05-21    <johan AT balder>
6966
6967         * src/SDCCglue.c (printIval): fixed bug #739934
6968
6969 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
6970
6971         Applied patch from bug 737905 (renamed yylineo to mylineno):
6972         * src/altlex.c
6973         * src/SDCCast.c
6974         * src/SDCglobl.h
6975         * src/SDCC.lex
6976         * src/SDCCsymt.c
6977         * src/SDCCval.c
6978         * src/pic16/pcode.c: Cleaned warnings
6979         * src/pic16/pcodeflow.c: Cleaned warnings
6980         * src/pic16/pcoderegs.c: Cleaned warnings
6981
6982 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
6983
6984         * src/pic16/pcode.c: Cleaned warnings
6985         * src/pic16/pcodepeep.c: Cleaned warnings
6986         * src/pic16/ralloc.c: Cleaned warnings
6987
6988 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
6989
6990         * doc/sdccman.lyx: fixed bug 739745
6991         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
6992
6993 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
6994
6995         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
6996         it can be defined with CFLAGS when running configure
6997         * src/SDCCmain.c: fixed compiling + linking with object files
6998
6999 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
7000
7001         * configure.in: configure for pic16 port,
7002             added --disable-pic16-port
7003         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
7004         * src/SDCCmain.c: linkOptions is changed to set *,
7005             added if/endif conditional macros to remove options help
7006             messages from optionsTable when a port is not configured, added
7007             support for the PIc16 port in the ports table, when executing
7008             the compiler with no port specified on command line, a default
7009             port is selected with the new macro DEFAULT_PORT which is
7010             defined in port.h, in setDefaultOptions() linkOptions is removed
7011             from initialization assignment, since now it is a set,
7012             parseCmdLine uses setParseWithComma for linkOptions, in
7013             linkEdit() linkOptions are accessed with new function indexSet()
7014             which returns the i'th item of a set variable. See SDCCset.c, in
7015             linkEdit() when calling buildCmdLine(), added linkOptions as
7016             last argument. Now users can pass arguments to gplink via the
7017             -Wl option, main() uses pic16glue() to glue up pic16 programs
7018         * src/SDCCpeeph.c: various changes to support pic16
7019         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
7020             return the i'th item of the set
7021         * src/SDCCset.h: added function prototype for indexSet()
7022         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
7023         * src/clean.mk: added pic16 in CLEANALLPORTS variable
7024         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
7025             added macro DEFAULT_PORT
7026         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
7027         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
7028             generated
7029         * src/pic16/glue.c: commented out some error producing lines
7030         * src/pic16/main.c: __config directives are commented out to stop
7031             gpasm complaining and test the linkage with gplink, _linkCmd and
7032             _asmCmd changed to be more gplink and gpasm friendly
7033         * src/pic16/peeph.def: peep rule 3 is commented out, since it
7034             produced an error when parsed, peep rule 12 is added to utilize
7035             movff, but it is commented out since the pCode does not support
7036             yet a command with 2 address arguments
7037
7038 2003-05-18    <johan AT balder>
7039
7040         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7041         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7042 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
7043
7044         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
7045   Added feature to script commands from file.
7046
7047 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
7048
7049         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
7050         * src/SDCCutil.c: include ctype.h for win32
7051
7052 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
7053
7054         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
7055
7056 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
7057
7058         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
7059   Fixed so you can set breakpoints prior to run, run does not stop
7060   on entry now.  Add tbreak.  Other enhancements and fixes for use
7061   with ddd.
7062
7063 2003-05-12  Borut Razem <borut.razem AT siol.net>
7064
7065         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
7066
7067 2003-05-11  Borut Razem <borut.razem AT siol.net>
7068
7069         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
7070         the path of bin directory, so that PATH is the only env. variable, which has to be set
7071         in case of standard installation.
7072         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
7073         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
7074         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
7075
7076 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7077
7078         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
7079         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
7080         temp files are in the port dir; clean the gen/test directory when
7081         generating new test.c
7082         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
7083         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
7084         * support/regression/tests/zeropad.c: added
7085
7086 2003-05-09    <johan AT balder>
7087
7088         * src/SDCCglue.c: fixed bug #597940
7089
7090 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
7091
7092         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7093   cache sfr, optimize next,step, fix off by one sourceline,
7094   support ddd list function.
7095         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
7096
7097 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7098
7099         * support/regression/HTMLgen.py: added compare_s2f()
7100         * support/regression/Makefile: redo 1.27
7101         * support/regression/generate-cases.py: redo 1.5
7102
7103 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
7104
7105         * support/regression/tests/float.c: workaround 33 bit hex constant
7106         * support/regression/tests/simplefloat.c: fix division for host
7107
7108 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
7109
7110         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
7111         that tame's the PIC's over-aggressive optimizer.
7112
7113 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7114
7115          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
7116          support for MSVC.
7117
7118 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
7119
7120         Initial support for DS80C400. "Hello world" runs on TINIm400
7121         (with polled I/O).
7122
7123 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
7124
7125          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7126          * Some notes on ddd usage added in debugger/README
7127          Martin Helmling adding more features and fixes for ddd GUI debugger.
7128          Code added for nexti, stepi, up, down, and other adjustments.
7129
7130 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
7131
7132         * src/pic/pCodepeep.c non-wildcard asmops are now handled
7133         * src/pic/peeph.def Added two rules to optimize carry manipulation
7134         * src/pic/* removed debug printfs
7135
7136 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
7137
7138         * debugger/mcs51/cmd.c: added header newalloc.h
7139
7140 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
7141
7142         * as/Makefile: new EXEEXT
7143         * as/z80/Makefile: remove trailing slash of BUILDIR
7144         * as/z80/clean.mk: new EXEEXT
7145         * Makefile.common.in: add to CFLAGS (and others), don't replace it
7146         * support/cpp2/Makefile.in: new EXEEXT
7147         * src/pic/glue.c (pic14emitRegularMap): fixed warning
7148
7149 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
7150
7151         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
7152         EXEEXT was introduced to fix all related problems with targets
7153         "clean", "install" and "uninstall"; a couple of further flaws
7154         especially with "clean" have been fixed too
7155         * as/mcs51/Makefile.in
7156         * as/mcs51/clean.mk
7157         * as/z80/Makefile
7158         * Makefile
7159         * clean.mk
7160         * debugger/mcs51/Makefile.in
7161         * debugger/mcs51/clean.mk
7162         * link/z80/Makefile
7163         * link/z80/Makefile.in
7164         * link/z80/clean.mk
7165         * link/Makefile
7166         * packihx/Makefile.in
7167         * packihx/clean.mk
7168         * sim/ucsim/Makefile
7169         * sim/ucsim/clean.mk
7170         * sim/ucsim/avr.src/Makefile.in
7171         * sim/ucsim/avr.src/clean.mk
7172         * sim/ucsim/s51.src/Makefile.in
7173         * sim/ucsim/s51.src/clean.mk
7174         * sim/ucsim/xa.src/Makefile.in
7175         * sim/ucsim/xa.src/clean.mk
7176         * sim/ucsim/z80.src/Makefile.in
7177         * sim/ucsim/z80.src/clean.mk
7178         * sim/ucsim/main_in.mk
7179         * sim/ucsim/packages_in.mk
7180         * sim/ucsim/gui.src/Makefile.in
7181         * sim/ucsim/gui.src/serio.src/Makefile.in
7182         * sim/ucsim/gui.src/serio.src/clean.mk
7183         * src/Makefile.in
7184         * src/clean.mk
7185         * support/cpp2/Makefile.in
7186         * support/cpp2/clean.mk
7187         * support/makebin/Makefile
7188         * support/makebin/clean.mk
7189         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
7190         * doc/sdccman.lyx: --program-suffix no longer needed
7191
7192 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
7193
7194          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
7195          Martin Helmling added support for ddd GUI debugger.
7196          Code added to display assembly, set variables, and other commands
7197          to interface to ddd.
7198
7199 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
7200
7201         * as/Makefile: fix target clean
7202         * as/clean.mk: fix target clean
7203         * as/z80/clean.mk: fix target clean
7204
7205 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
7206
7207         * Makefile.common.in: added  AT EXEEXT AT
7208         * configure.in: removed all mingw32 stuff
7209         * configure: rebuilt from configure.in
7210         * doc/sdccman.lyx: updated section "installation"
7211         * support/scripts/sdcc_mingw32: adapted to configure
7212         * support/scripts/sdcc_cygwin_mingw32: added
7213
7214 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
7215
7216         * src/pic Added object file support for the PIC port
7217         * src/pic Applied patch from Craig Franklin (this started the object file support)
7218         * src/regression Updated the PIC regression tests for object files
7219
7220 2003-04-20  Borut Razem <borut.razem AT siol.net>
7221
7222         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
7223           lklex.c: In function `getfid':
7224           lklex.c:203: warning: array subscript has type `char'
7225         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
7226           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
7227         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
7228           stack handling macros
7229
7230 2003-04-19  Borut Razem <borut.razem AT siol.net>
7231
7232         * "handling space characters in file path" task:
7233         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
7234         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
7235         * support/Util/MySystem.h: make it self-sufficient
7236         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
7237           src/z80/main.c, sdcc/as/mcs51/lklex.c:
7238           handling space characters in file path
7239         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
7240           (it will be used by assemblers, which have their own includes, e.g. gpasm)
7241         * support/Util/MySystem.c: handling space characters in executable's path
7242
7243 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
7244
7245         * as/z80/Makefile: fix permanent rebuild of z80
7246         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
7247         * support/regression/tests/bitfields.c: added Johan's bitfields.c
7248
7249 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
7250
7251         * src/SDCCopt.c: add special case optimization to replace modulo by
7252           a power of two with a bitwise AND.
7253
7254 2003-04-18    <johan AT balder>
7255
7256         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
7257
7258 2003-04-17    <johan AT balder>
7259
7260         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
7261         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
7262
7263 2003-04-13  Borut Razem <borut.razem AT siol.net>
7264
7265         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
7266         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
7267           fixed mingw problem in adl_NORMALIZE_PATH
7268
7269 2003-04-12  Borut Razem <borut.razem AT siol.net>
7270
7271         * fixed "#pragma SAVE/RESTORE can not be nested":
7272         * src/SDCC.lex: reworked pragma handling functions
7273         * sdcc/src/SDCCglobl.h: reworked stack handling macros
7274         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
7275
7276 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7277
7278         * src/SDCCutil.c (pathEquivalent): defined but not used
7279         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
7280         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
7281         * configure: rebuilt from configure.in
7282         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7283         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7284         * device/include/Makefile.in: replace sdcc_datadir
7285         * device/lib/Makefile.in: replace sdcc_datadir
7286         * Makefile.common.in: add LDFLAGS from configure
7287         * packihx/Makefile.in: use LDFLAGS
7288         * src/Makefile.in: use LDFLAGS
7289         * support/cpp2/Makefile.in: add LDFLAGS from configure
7290         * support/makebin/Makefile: use LDFLAGS
7291         * .version: bumped version number to 2.3.5
7292
7293 2003-04-12  Borut Razem <borut.razem AT siol.net>
7294
7295         * completed "different paths" task:
7296         * src/SDCCmacro.c: fixed bug in handling quotes
7297         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
7298         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
7299
7300 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7301
7302         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
7303
7304 2003-04-11 kevin Vigor <kevin AT vigor.nu>
7305
7306         * ds390/gen.c ds390/peeph.def: fix bug 706781
7307
7308 2003-04-11  Borut Razem <borut.razem AT siol.net>
7309
7310         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
7311
7312 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
7313
7314         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
7315         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
7316          set - this bit used to not be set...).
7317         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
7318           bad code in PIC Port
7319         * src/regression/and2.c added to test bug 609268
7320         * src/regression/Makefile added and2.c to regression test
7321
7322
7323 2003-04-08    <johan AT CP255758-A>
7324
7325         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
7326         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
7327         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
7328
7329 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
7330
7331         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
7332         fix bug #487815
7333         * support/cpp2/Makefile.in: fix bug #487815
7334         * configure: rebuilt from configure.in
7335         * Makefile.common.in: docdir changed, new path suffixes
7336         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7337         * sdcc_vc_in.h: reflect changes from sdccconf.h
7338         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
7339         * src/SDCCutil.h: remove BINDIR hack
7340         * doc/sdccman.lyx: update new path hierarchy
7341
7342 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7343
7344         * src/SDCCpeeph.c: added okToRemoveSLOC test
7345
7346 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7347
7348         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
7349
7350 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7351
7352         * src/SDCCpeeph.c: added labelIsReturnOnly test
7353         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
7354
7355 2003-04-05    <johan AT balder>
7356
7357         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
7358         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
7359         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
7360         * src/SDCCast.c: fixed a warning
7361         * src/SDCCast.h: fixed a warning
7362         * src/SDCCicode.c (operandFromAst): fixed a warning
7363
7364 2003-04-04    <johan AT balder>
7365
7366         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
7367         * src/SDCCast.c (decorateType): fixed bug #715076
7368         * src/SDCC.y: fixed bug #702907
7369
7370 2003-04-03    <johan AT balder>
7371
7372         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
7373         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
7374         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
7375         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
7376         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
7377
7378 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
7379
7380         * _decdptr.c: fix return values
7381         * _gptrget.c: fix return values
7382         * _gptrgetc.c: fix return values
7383         * _gptrput.c: fix return values
7384         * _mulint.c: fix return values
7385         * as/z80/Makefile: fix 'make -j' problem
7386
7387 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
7388
7389         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
7390         * configure.in: big cleanup, updated to autoconf 2.5x
7391         * configure: rebuilt from configure.in
7392         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7393         * sdcc_vc_in.h: reflect changes from sdccconf.h
7394         * doc/Makefile: fixed a flaw in "make install"
7395
7396 2003-04-02    <johan AT balder>
7397
7398         * src/ds390/gen.c (genCmp): no comments
7399         * src/mcs51/gen.c (genCmp): no comments
7400         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
7401         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
7402
7403 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
7404
7405         * support/regression/generate-cases.py: place generated file in given sub directory
7406         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
7407         * support/regression/Makefile: improvements for 'make -j';
7408         side effect: it's simpler and faster now
7409
7410 2003-03-31  Borut Razem <borut.razem AT siol.net>
7411
7412         * src/z80/main.c: link-{port} and as-{port} defined without path
7413         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
7414
7415 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
7416
7417         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
7418
7419 2003-03-30  Borut Razem <borut.razem AT siol.net>
7420
7421         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
7422           changed type of list parameter to set
7423         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
7424         * src/port.h: changed type of do_assemble() parameter to set
7425         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
7426           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
7427           definition of "cppoutfilename" macro with NULL value in preProcess()
7428         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
7429         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
7430         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
7431           replaced with set *binPathSet
7432         * shash_add() deallocates the item, if allready exsists, before adding the new one
7433         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
7434
7435 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
7436
7437         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
7438           a nested for loop bug in the PIC port
7439         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
7440           for loops
7441
7442 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
7443
7444         * support/Util/dbuf.h: remove C++ stuff to make it portable
7445
7446 2003-03-28  Borut Razem <borut.razem AT siol.net>
7447
7448         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
7449           literal strings in stringLiteral()
7450         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
7451         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
7452           to the project
7453
7454 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
7455
7456         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
7457
7458 2003-03-26    <johan AT balder>
7459
7460         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
7461         * src/ds390/gen.c (saveRegisters): catched symbol abuse
7462         * src/SDCCast.c (decorateType): fixed " -v < 3"
7463
7464 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
7465
7466         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
7467         Added Lenny Story's debug infrastructure changes:
7468         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
7469         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
7470         * src/cdbFile.c: added
7471         * src/SDCCdebug.c: added
7472         * src/SDCCdebug.h: added
7473         * src/SDCCast.c (createFunction)
7474         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
7475         * src/SDCCmain.c (parseCmdLine, main)
7476         * src/SDCCmem.c (redoStackOffsets)
7477         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
7478         * src/SDCCsymt.h
7479         * src/common.h
7480         * src/avr/gen.c (genAVRCode)
7481         * src/ds390/gen.c (gen390Code)
7482         * src/mcs51/gen.c (gen51Code)
7483         * src/pic/gen.c (genpic14Code)
7484         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
7485         * src/xa51/gen.c (genXA51Code)
7486         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
7487
7488 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7489
7490         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
7491         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
7492
7493 2003-03-22    <johan AT balder>
7494
7495         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
7496
7497 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
7498
7499         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
7500         * doc/cdbfileformat.lyx: added, written by Lenny Story
7501         * doc/Makefile: added cdbfileformat.lyx
7502         * doc/clean.mk: added cdbfileformat.lyx
7503
7504 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
7505
7506         * src/mcs51/peeph.def: fix bug #705773
7507
7508 2003-03-20    <johan AT balder>
7509
7510         An sfr/sbit can have an "at #" AND an initializer
7511         * src/SDCCsymt.c (checkSClass):
7512         * src/SDCCmem.c (allocGlobal):
7513         * src/SDCCmem.c (allocLocal):
7514         * src/SDCCast.c (createBlock):
7515
7516 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
7517
7518         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
7519
7520 2003-03-16    <johan AT balder>
7521
7522         Undid the hackup of const and volatile, the problem is much bigger
7523         * src/SDCC.y:1.65
7524         * src/SDCCast.c:1.171
7525         * src/SDCCglue.c:1.138
7526         * src/SDCCicode.c:1.146
7527         * src/SDCCsymt.c:1.150
7528         * src/SDCCval.c:1.65
7529
7530 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
7531
7532         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
7533         * src/ds390/gen.c (genAddrOf): fixed bug #704087
7534
7535 2003-03-13    <johan AT balder>
7536
7537         Hackup const and volatile modifiers in type chains a bit:
7538         * src/SDCC.y:1.63
7539         * src/SDCCast.c:1.169
7540         * src/SDCCglue.c:1.136
7541         * src/SDCCicode.c:1.143
7542         * src/SDCCsymt.c1.146
7543         * src/SDCCsymt.h1.59
7544         * src/SDCCval.c:1.63
7545
7546 2003-03-12    <johan AT balder>
7547
7548         * src/SDCCBBlock.h: more LRH debugging junk
7549         * src/SDCCcflow.h: more LRH debugging junk
7550         * src/SDCCloop.c: more LRH debugging junk
7551         * src/SDCC.y (struct_declaration): fixed bug #697590
7552         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
7553         * src/ds390/gen.c (aopForRemat): fixed bug #700031
7554         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
7555
7556 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7557         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
7558         test function names must now match exactly).
7559         * src/SDCCcse.c: added special case in findCheaperOp to allow
7560         extending a short integer. Makes less awful code for bug 700121 test case.
7561
7562 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7563
7564         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
7565         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
7566
7567 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7568
7569         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
7570         actually called (operandsNotEqual() was called for all
7571         operandsNotEqualX tests).
7572
7573 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7574
7575         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
7576         with shorter literals. Fixes bug 700121.
7577
7578 2003-03-11    <johan AT balder>
7579
7580         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
7581
7582 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
7583
7584         * src/SDCCloop.c (mergeRegions): an evil beast is dead
7585         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
7586
7587 2003-03-10  Borut Razem <borut.razem AT siol.net>
7588
7589         * src/SDCCmain.c: pipe preprocessor's output
7590         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
7591         * sdcc_vc_in.h: define pclose as _pclose for WIN32
7592         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
7593         which closes all pipes in pipeSet set
7594         * src/SDCCset.c: free deleted item in function deleteSetItem()
7595         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
7596         moved from z80 to src subproject
7597         * .version: increased version number to 2.3.4
7598
7599 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
7600
7601         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
7602         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
7603         * support/regression/ports/xa51/spec.mk: fix typo
7604
7605 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
7606
7607         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
7608
7609 2003-03-09  Borut Razem <borut.razem AT siol.net>
7610
7611         * src/SDCCmain.c: pipe preprocessor's output
7612         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
7613         * sdcc_vc_in.h: define pclose as _pclose for WIN32
7614         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
7615         which closes all pipes in pipeSet set
7616         * src/SDCCset.c: free deleted item in function deleteSetItem()
7617         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
7618         moved from z80 to src subproject
7619
7620 2003-03-09  Borut Razem <borut.razem AT siol.net>
7621
7622         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
7623         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
7624         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
7625         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
7626         * src/SDCCglobl.h: unification of WIN32 native definitions
7627
7628 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7629
7630         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
7631
7632 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
7633
7634         * src/configure.in:   check for endianess (even while cross-compiling)
7635         * src/configure:      check for endianess (even while cross-compiling)
7636         * src/configure_in.h: check for endianess (even while cross-compiling)
7637         * src/avr/gen.c:        remove old endianess stuff
7638         * src/mcs51/gen.c:      remove old endianess stuff
7639         * src/ds390/gen.c:      remove old endianess stuff
7640         * src/pic/gen.c:        remove old endianess stuff
7641         * src/pic/genarith.c:   remove old endianess stuff
7642         * src/pic/glue.c:       fix endianess check
7643         * src/pic16/gen.c:      remove old endianess stuff
7644         * src/pic16/genarith.c: remove old endianess stuff
7645         * src/pic16/glue.c:     fix endianess check
7646         * src/xa51/gen.c:       remove old endianess stuff
7647         * src/z80/gen.c:        fix endianess check
7648         * src/SDCCglue.c:       fix endianess check
7649         * src/ds390/peeph.def: fix bug 700036
7650
7651 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
7652
7653         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
7654         * src/configure: find appropriate data-types on host for SDCC's int and long
7655         * src/configure.in: find appropriate data-types on host for SDCC's int and long
7656         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
7657         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
7658
7659 2003-03-07    <johan AT balder>
7660
7661         Just a big NOOP:
7662                 some minor cleanups before the big shot
7663                 OP_DEFS and OP_USES now use Kevin's protection
7664                 new option --nolabelopt
7665
7666         * src/SDCCBBlock.c:
7667         * src/SDCCast.c,:
7668         * src/SDCCcflow.c:
7669         * src/SDCCcse.c:
7670         * src/SDCCicode.c:
7671         * src/SDCCicode.h:
7672         * src/SDCClabel.c:
7673         * src/SDCCloop.c:
7674         * src/SDCCmain.c:
7675         * src/ds390/ralloc.c:
7676         * src/mcs51/ralloc.c:
7677         * src/pic/ralloc.c:
7678         * src/xa51/ralloc.c:
7679         * src/z80/ralloc.c:
7680
7681 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
7682
7683         * src/pic/pcode.c (get_op): fix 64 bit warnings
7684         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
7685         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
7686         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
7687         * support/regression/tests/malloc.c: fix 64 bit warnings
7688
7689 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
7690
7691         * src/mcs51/gen.c (genMinus): fixed bug 696436
7692
7693 2003-03-02  Borut Razem <borut.razem AT siol.net>
7694
7695         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
7696
7697 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
7698
7699         * configure.in: test for mkstemp
7700         * sdccconf_in.h: add HAVE_MKSTEMP
7701
7702 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
7703
7704         * device/include/ctype.h: removed warning while using --stack-auto
7705         * device/include/malloc.h: removed warning while using --stack-auto
7706         * device/include/string.h: removed warning while using --stack-auto
7707
7708 2003-02-23  Borut Razem <borut.razem AT siol.net>
7709
7710         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
7711         because NDEBUG is defined (see man assert)
7712         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
7713
7714 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7715
7716         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
7717         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
7718
7719 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7720
7721         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
7722         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
7723
7724 2003-02-18    <johan AT balder>
7725
7726         * as/mcs51/asmain.c (asmbl): module can start with a digit
7727         * as/z80/asmain.c (asmbl): module can start with a digit
7728
7729 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
7730
7731         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
7732         * src/asm.c: fix pipe() for Mingw32
7733
7734 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
7735
7736         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
7737         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
7738         make -V work again; --c1mode reads now from stdin
7739         * doc/sdccman.lyx: added --c1mode
7740         * support/Util/SDCCerr.c: new messages for c1 mode
7741         * support/Util/SDCCerr.h: new messages for c1 mode
7742         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
7743
7744 2003-02-15    <johan AT balder>
7745
7746         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
7747
7748 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
7749
7750         * doc/sdccman.lyx: Environment variables, -o and other minor things
7751
7752 2003-02-14    <johan AT balder>
7753
7754         * src/xa51/main.c: before anyone really tries to use it :)
7755
7756         * Install doc's in share/sdcc/doc
7757         * removed some obsolete files
7758         * Do a proper make distclean and uninstall
7759         M Makefile.common.in
7760         R sdccbuild.sh
7761         M as/Makefile
7762         M device/include/Makefile.in
7763         M device/lib/Makefile.in
7764         M doc/sdccman.lyx
7765         M link/Makefile
7766         M sim/ucsim/doc/Makefile.in
7767         M src/clean.mk
7768         R src/avr/peeph.rul
7769         R src/xa51/peeph.rul
7770         M support/cpp2/Makefile.in
7771         M support/makebin/Makefile
7772
7773
7774 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
7775
7776         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
7777
7778 2003-02-10  Borut Razem <borut.razem AT siol.net>
7779
7780         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
7781         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
7782         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
7783         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
7784         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
7785         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
7786         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
7787         src/z80/Makefile.bcc: Borland Makefile cleanup
7788         * as/z80/Makefile.bcc: Added Borland Makefile
7789         * support/cpp2/borland.h: Removed
7790
7791 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
7792
7793         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
7794         * src/SDCC.lex: new pragma NOIV
7795         * src/SDCCglobl.h: new pragma NOIV
7796         * src/SDCCmem.c: new pragma NOIV
7797
7798 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
7799
7800         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
7801
7802 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
7803
7804         * src/SDCCmain.c: signal handling is switched off by --debug
7805         * doc/Makefile: small fix for install; use clean.mk again
7806         * doc/clean.mk: clean *.pdf and *.html too
7807
7808 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
7809
7810         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
7811         * device/lib/printfl.c: fix a ds390 bug by making it portable
7812         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
7813         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
7814         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
7815         * debugger/mcs51/cmd.c: converted multi-line string literals
7816         * sim/ucsim/globals.cc: converted multi-line string literals
7817         * src/SDCCmain.c: introduced signal handler to remove temp files
7818         * doc/Makefile: small tweaks, implement clean
7819         * doc: removed generated files
7820
7821 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7822
7823         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
7824         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
7825         Address Record is not correctly generated for DS390."
7826
7827 2003-02-02  Borut Razem <borut.razem AT siol.net>
7828
7829         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
7830         * as/mcs51/asm.h: fixed compilation with Borland C
7831         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
7832         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
7833         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
7834         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
7835         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
7836         src/z80/Makefile.bcc: delete $(LIB) only if exist
7837         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
7838
7839 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
7840
7841         * device/include/malloc.h: introduced NULL
7842         * device/include/string.h: introduced NULL
7843         * device/include/stdlib.h: introduced NULL
7844         * device/lib/_memcpy.c: removed NULL
7845         * device/lib/_strcat.c: removed NULL
7846         * device/lib/_strchr.c: removed NULL
7847         * device/lib/_strcmp.c: removed NULL
7848         * device/lib/_strcpy.c: removed NULL
7849         * device/lib/_strcspn.c: removed NULL
7850         * device/lib/_strlen.c: removed NULL
7851         * device/lib/_strncat.c: removed NULL
7852         * device/lib/_strncmp.c: removed NULL
7853         * device/lib/_strncpy.c: removed NULL
7854         * device/lib/_strpbrk.c: removed NULL
7855         * device/lib/_strrchr.c: removed NULL
7856         * device/lib/_strspn.c: removed NULL
7857         * device/lib/_strstr.c: removed NULL
7858         * device/lib/_strtok.c: removed NULL
7859         * device/lib/malloc.c: removed NULL, include own header
7860
7861 2003-02-02    <johan AT balder>
7862
7863         * 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
7864         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
7865         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
7866         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
7867         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
7868         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
7869
7870 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7871
7872         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
7873         area 'DATA'"
7874
7875 2003-02-01    <johan AT balder>
7876
7877         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
7878
7879 2003-01-31    <johan AT CP255758-A>
7880
7881         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
7882
7883 2003-01-30    <johan AT balder>
7884
7885         * src/SDCCBBlock.c: automatic bug detection
7886         * src/SDCCicode.c: automatic bug detection
7887
7888 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7889
7890         * src/SDCCglobl.h:   now --xram-size 0 works
7891         * src/SDCCmain.c:    now --xram-size 0 works
7892
7893 2003-01-29    <johan AT balder>
7894
7895         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
7896
7897 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7898
7899         * as/mcs51/aslink.h: Added options --xram-size and --code-size
7900         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
7901         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
7902         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
7903         * src/SDCCglobl.h:   Added options --xram-size and --code-size
7904         * src/SDCCmain.c:    Added options --xram-size and --code-size
7905
7906 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
7907
7908         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
7909         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
7910
7911 2003-01-27    <johan AT balder>
7912
7913         * src/SDCC.y: fixed bug #613764
7914
7915 2003-01-26    <johan AT balder>
7916
7917         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
7918         * src/SDCCsymt.h: fixed bug #673374
7919         * src/SDCCglue.c: fixed bug #661910
7920         * src/SDCCast.c: fixed bug #458099 and 673374
7921
7922 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
7923
7924         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
7925         * as/mcs51/strcmpi.h: added
7926         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
7927         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
7928         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
7929         * as/mcs51/assym.c: strcmpi -> as_strcmpi
7930         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
7931         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
7932         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
7933         * as/mcs51/Makefile.aslink: new module strcmpi
7934         * as/mcs51/Makefile.asx8051: new module strcmpi
7935         * as/mcs51/Makefil.bcc: new module strcmpi
7936         * as/mcs51/Makefile.in: new module strcmpi
7937         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
7938
7939 2003-01-26    <johan AT balder>
7940
7941         * src/SDCCglue.c: reverted back to 1.124
7942         * src/SDCCast.c: reverted back to 1.156
7943         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
7944
7945 2003-01-25    <johan AT balder>
7946
7947         * src/SDCCglue.c: A better fix for bug #661910
7948         * src/SDCCast.c: A better fix for bug #661910
7949         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
7950
7951 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
7952
7953         * src/Makefile.in: remove spawn.o
7954         * src/SDCCmain.c: remove spawn.h
7955         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
7956         * src/spawn.c: removed
7957         * src/spawn.h: removed
7958         * support/regression/ports/ds390/spec.mk: link with -r
7959
7960 2003-01-24    <johan AT CP255758-A>
7961
7962         * src/ds390/gen.c (aopOp): fixed bug #667458
7963         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
7964         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
7965         (createIvalCharPtr): an ival doesn't always have a storage class anymore
7966
7967 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
7968
7969         * src/mcs51/peeph.def: better assembler identation by Frieder
7970         * src/mcs51/gen.c: better assembler identation by Frieder
7971
7972 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
7973
7974         * as/z80/string.h: removed for gcc 3.2
7975         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
7976         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
7977
7978 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
7979
7980         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
7981         * src/SDCCpeeph.c (replaceRule): fix bug #663503
7982         * support/regression/Makefile: separate temp files for ports
7983         * support/regression/generate-cases.py: separate temp files for ports
7984         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
7985         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
7986
7987 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
7988
7989         * moved tinitalk to device/examples/ds390
7990
7991 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
7992
7993         * as/mcs51/lkmem.c: rflag is for DS390
7994         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
7995         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
7996                          (linkEdit): move mem- and map-files the same way as ihx-files
7997         * src/z80/main.c (_setDefaultOptions): removed --generic
7998         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
7999         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
8000         * src/pic/glue.c (picglue): --c1mode works again
8001         * src/pic16/glue.c (pic16glue): --c1mode works again
8002         * src/asm.c (printCLine): fix #660034
8003
8004 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
8005
8006         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
8007         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
8008         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
8009         * as/mcs51/lkmem (summary): better fix for sp problem
8010         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
8011         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
8012         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
8013                                               remove --stack-after-data
8014
8015 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
8016
8017         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
8018         * src/SDCCutil.c (join): ugly bug: missing '\0'
8019         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
8020
8021 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8022
8023         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
8024         * src/port.h: typo
8025         * src/pic/main.c (_asmCmd): gpasm supports -o
8026         * src/z80/main.c: more general macros
8027         * device/lib/Makefile.in: remove intermediate files
8028
8029 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8030
8031         * .version: Bumped version number to 2.3.3
8032         * src/SDCCBBlock.c: new option -o
8033         * src/SDCCglobl.h: new option -o
8034         * src/SDCCglue.c: new option -o
8035         * src/SDCCmain.c: new option -o
8036         * src/asm.c: new option -o
8037         * src/ds390/main.c: new option -o
8038         * src/pic/glue.c: new option -o
8039         * src/pic/pcode.c: new option -o
8040         * src/pic/ralloc.c: new option -o
8041         * src/pic16/glue.c: new option -o
8042         * src/pic16/pcode.c: new option -o
8043         * src/pic16/ralloc.c: new option -o
8044         * src/z80/main.c: new option -o
8045         * device/lib/Makefile.in: use -o
8046         * support/regression/ports/ds390/spec.mk: use -o
8047         * support/regression/ports/gbz80/spec.mk: use -o
8048         * support/regression/ports/mcs51/spec.mk: use -o
8049         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
8050         * support/regression/ports/z80/spec.mk: use -o
8051         * support/regression/ports/ucz80/spec.mk: use -o
8052         * support/regression/ports/xa51/spec.mk: use -o
8053         * support/regression/fwk/lib/timeout.c: fix usage string
8054
8055 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
8056         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
8057
8058 2003-01-07    <johan AT balder>
8059
8060         * src/SDCCast.c (decorateType): fixed bug #600035
8061
8062 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
8063         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
8064         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
8065         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
8066         * src/pic/pcode.c: outcommented unused variable to remove warnings
8067         * src/pic/ralloc.c: outcommented unused variable to remove warnings
8068
8069 2003-01-06    <karl AT turbobit.com>
8070         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
8071    regression tests.
8072
8073 2003-01-06    <johan AT balder>
8074
8075         * src/SDCCicode.c: fixed array add
8076
8077 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
8078         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
8079         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
8080
8081 2003-01-04    <johan AT balder>
8082
8083         * src/SDCCval.c (getNelements): fixed the initialized array of structures
8084
8085 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8086         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
8087
8088 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8089         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
8090         * support/regression/tests/bug-524697.c: fit mem usage into 8032
8091
8092 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8093         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
8094
8095 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
8096         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
8097
8098 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
8099         * src/mcs51/main.c: removed {bindir}{sep} from aslink
8100
8101 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8102
8103     * in \sdcc\as\mcs51\ changed these files in order to create an
8104     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
8105     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
8106     following files to include the previous two files: aslink.dsp,
8107     Makefile.aslink, Makefile.bcc, and Makefile.in.
8108
8109     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
8110     .adb instead of .cdb
8111
8112 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8113
8114         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
8115         value from option --iram-size.
8116
8117 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8118
8119         * \sdcc\as\mcs51\lklist.c: added boundary check before using
8120         dram[] array.
8121
8122 2002-09-18    <wiml AT hhhh.org>
8123
8124         * SDCClrange.h: exposed setFromRange() and setToRange()
8125         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
8126           packRegsForAccUse() (bug 542397)
8127         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
8128           multiple times and emitting the fetch operations more than once
8129           added aopGetUsesAcc() function to allow binary operators to
8130           fetch their operands in the correct order; made genMinus() emit
8131           compact code for X = LITERAL - Y
8132
8133 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8134         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
8135         sprintf() in line 1267.
8136
8137 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8138         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
8139         like ports.
8140
8141 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8142         Changes to aslink (All the changes are marked with 'JCF'):
8143
8144         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
8145         summary().
8146
8147         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
8148         area BSEG.  Also moves, if possible, the DATA area down into the internal
8149         ram so more space is available.
8150
8151         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
8152         sflag.
8153
8154         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
8155         not bytes.  Function summary() which creates a memory usage summary
8156         file with extension .mem.  Reports of overlaping stack and small stack
8157         size.  If the space for the stack is less than 16 bytes aslink trows a
8158         warning.
8159
8160         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
8161         the 8051.  Option 'y' for memory summary output file.
8162
8163         Changes to sdcc (All the changes are marked with 'JCF'):
8164
8165         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
8166
8167         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
8168         overlaying area for it (uses RegBankUsed[4]).
8169
8170         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
8171         bank zero as used by default.  By default aslink locates the stack
8172         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
8173         the creation of the .mem file.  Delegates the allocation of data area
8174         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
8175         the begining of the stack area to aslink.
8176
8177         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
8178         glue() in SDCCglue.c creates an area for it.
8179
8180 2002-09-03  Borut Razem <borut.razem AT siol.net>
8181         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
8182         sdcc/src/pic/glue.c:
8183         introduced atexit() handler for teporay files removal in case of
8184         errors, assertions, ...
8185
8186 2002-08-29  Borut Razem <borut.razem AT siol.net>
8187         * sdcc/support/cpp2/auto-host_vc_in.h:
8188         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
8189         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
8190         Maybe there is a similar problem with BORLANDC? It should be checked!
8191
8192         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
8193         corrected improper use of assert: the assignment to clr variable was done inside the assert.
8194         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
8195         was not executed, and the compiler (cl) launched a warning:
8196         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
8197
8198 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8199         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
8200
8201 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
8202         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
8203
8204         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8205           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
8206           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
8207           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8208           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
8209           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
8210           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
8211         - added Release configuration in VS projects
8212         - review of compiler an linker options
8213         - VC .exe files are generated in bin_vc directory, not to interfere
8214           with binaries generated from other projects (cygwin, mingw, bcc ...)
8215
8216         * sdcc/src/yacc.dsp: added
8217
8218         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
8219         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
8220         and insert the version number definitions from .version
8221
8222         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
8223
8224         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
8225         added - genarate auto-host.h using auto-host_vc_in.h as template
8226
8227         * sdcc/sdcc_vc.h,
8228         removed from CVS, generated automatically
8229
8230 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
8231         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
8232
8233 2002-08-11  Borut Razem <borut.razem AT siol.net>
8234         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
8235
8236 2002-08-10  Borut Razem <borut.razem AT siol.net>
8237         * src/SDCCmain.c (main):
8238         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
8239         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
8240         The consequence was that some temporary files were not removed.
8241
8242         * src/SDCCglue.c:
8243         unification of code in functions tempfilename() and tempfile():
8244         function tempnam() is defined in Visual Studio 6.0 and .NET
8245
8246         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
8247
8248         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8249           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
8250         - removed compiler command line option /WX: Treats all warnings as errors
8251         - update a list of source files, included into the project
8252
8253         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8254           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
8255         changed project type to Generic Project so that can be correcly converted to VS.NET project
8256
8257         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
8258
8259         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
8260
8261         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
8262
8263         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
8264         added return 0 statements after assert() to make compiler happy
8265
8266         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
8267         added newline in the def file to keep MSC compiler satisfied
8268
8269         * sdcc/src/z80/gen.c:
8270         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
8271           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
8272         - solved MSC error in function aopDump()
8273
8274         * sdcc_vc.h: define PREFIX as "\\sdcc"
8275
8276 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
8277         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
8278
8279 2002-06-22  Scott Dattalo <scott AT dattalo.com>
8280         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
8281         - Rewrote the register banking algorithm.
8282         - Added pCode live-range analysis to registers (for now, only non-used and
8283         singly-used registers optimized away)
8284
8285         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
8286
8287         * 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.
8288
8289 2002-05-10  Scott Dattalo <scott AT dattalo.com>
8290         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
8291
8292 2002-04-22  Michael Hope  <michaelh AT vroom>
8293
8294         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
8295
8296         * configure.in (DD_COPT): Added include support required for gbdk.
8297
8298         * .version: Bumped version number just to increase it.
8299
8300         * src/SDCCmain.c: Added -nostdinc to the default options.
8301
8302 2002-04-15  Michael Hope  <michaelh AT vroom>
8303
8304         * device/lib/z80/printf.c (sprintf): Added.
8305
8306         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
8307
8308         * src/z80/peeph.def: Added transpose redundent load rule.
8309
8310         * src/z80/main.c: Added force callee saves for jaune.
8311
8312         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
8313
8314         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
8315
8316 2002-03-28  Johan Knol  <johan AT balder>
8317
8318         * src/SDCCval.c: fixed bug #532436
8319
8320 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8321         * /src/port.h:
8322         Added "char *Processor" field to the port structure.
8323
8324         * /src/SDCCmain.c:
8325         Added -p option. Allows port dependent processor to be specified.
8326
8327         * all ports:
8328         Initialized the new field char *Processor field to NULL in all ports
8329
8330         * /src/pic/*:
8331         Compiler generated registers for interrupt context saving
8332         were not getting allocated.
8333
8334 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
8335
8336         * /src/SDCCast.c:
8337         Fixed left shift. Will promote the left side of a left shift
8338         if a) left shifting more than size of operand or b) when assigned
8339         to something size > size of left side
8340
8341 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8342         * src/pic/*
8343         tons of changes. Register allocation has been
8344         rewritten. Added customization for the various PICs. Flow
8345         analysis is restructured. ...
8346
8347         * src/pic/device.h:
8348         Added
8349
8350         * src/pic/device.c:
8351         Added. device.c is a PIC port hack to accomodate variations
8352         in PIC devices.
8353
8354 2002-03-13  Michael Hope  <michaelh AT vroom>
8355
8356         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
8357
8358 2002-03-04  johanknol  <johanknol AT manik>
8359
8360         * /src/SDCCval.c: fixed
8361
8362         const unsigned char arr[][2] = { { 0, 1 } };
8363         t18.c:1: error: Initializer element is not constant
8364
8365 2002-03-04  bela  <bela AT manik>
8366
8367         * /device/include/mcs51reg.h:
8368         ds89c420 register definition update
8369
8370 2002-03-03    <johan AT FRIJA>
8371
8372         * support/Util/SDCCerr.c: did something, but don't no why anymore
8373
8374         * support/regression/tests/bug-524691.c: made it a little less shy
8375
8376         * src/SDCCast.c (decorateType): fixed bug #524697
8377
8378         * src/SDCCast.c: made some lineno improvements
8379
8380         * src/SDCCval.c (getNelements): changed warning to error
8381
8382         * src/SDCCglue.c (printIvalArray): changed warning to error
8383
8384         * src/SDCCicode.c: fixed a warning for mingw
8385
8386         * src/SDCCast.c (decorateType): fixed the << promotion for ops
8387
8388         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
8389
8390 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
8391
8392         * src/ds390/peeph.def:
8393         Added some more peephole rules
8394
8395         * src/ds390/gen.c: Various fixes & enhancements
8396
8397         * src/SDCClrange.c, src/SDCClrange.h:
8398         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
8399
8400         * src/ds390/ralloc.c:
8401         various fixes & enhancements (ds390) specific
8402
8403         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
8404         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
8405         from rallocs.
8406
8407         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
8408
8409 2002-03-02    <johan AT FRIJA>
8410
8411         * src/SDCCast.c (decorateType): fixed bug #524708
8412
8413         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
8414
8415         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
8416
8417 2002-03-01  Michael Hope  <michaelh AT vroom>
8418
8419         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
8420
8421         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
8422
8423 2002-03-01    <johan AT FRIJA>
8424
8425         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
8426
8427         * src/SDCCast.c (decorateType): fixed bug #524209
8428
8429         * src/SDCCval.c (valNot): fixed bug #524195
8430
8431 2002-02-26    <johan AT balder>
8432
8433         * src/xa51/gen.c: fixed a warning
8434
8435         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
8436
8437         * src/SDCCast.c (decorateType): fixed bug #522534
8438
8439 2002-02-23    <johan AT balder>
8440
8441         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
8442
8443 2002-02-22    <johan AT balder>
8444
8445         * src/SDCCast.c: fixed bug #514865
8446
8447         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
8448
8449 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
8450
8451         * sdcc/src/SDCCloop.c:
8452         Previous fix was not good. basic blocks that have "break" or "return" are
8453         not really partof a loop , but live ranges used in these blocks should
8454         be live thru the entire loop, so set partOfLoop but don't add them to
8455         loop region
8456
8457 2002-02-21    <johan AT FRIJA>
8458
8459         * src/SDCCcse.c: fixed bug #514308
8460
8461 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
8462
8463         * src/SDCCloop.c:
8464         Fixed BUG #519583. If a conditional block ended in a return/break
8465         statement inside a loop, it was not being considered part of the loop.
8466
8467         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
8468
8469 2002-02-10  Karl Bongers <karl AT turbobit.com>
8470
8471         * debugger/*:
8472         Fixed up SDCDB debugger somewhat.  Updated debugger/README
8473         with lots of comments and notes.
8474
8475         * device/examples/test2.c:
8476         Fix bug, "red" variable not being initialized(compiler complained).
8477
8478         * device/examples/Makefile, examples/test3.c:
8479         Add Makefile in device/examples folder, compiles test3.c
8480         for use as a multiple module SDCDB test case.
8481
8482         * sim/ucsim/cmd.src/cmdset.cc:
8483         Took out debug printfs in ucsim "next" command.
8484
8485         * sim/ucsim/xa.src:
8486         Karl and Johan start ucsim XA support.  Most dissassembly working,
8487         about 75% emulation done(plenty of work remaining).
8488
8489         * sim/ucsim/z80.src:
8490         Add Z80 support to ucsim, add test-ucz80 regression test,
8491         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
8492         Notice z80 compiler fails on examples/test3.c/crc code.
8493
8494 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
8495
8496         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
8497         Added support for --parms-in-bank1
8498
8499         * src/ds390/peeph.def:
8500         added a few more peephole optimzations
8501
8502         * src/ds390/main.c:
8503         1) added __builtin_inp & __builtin_outp used to read in data of given length
8504            from a memory mapped port
8505         2) added __builtin_memcmp
8506         3) added __builtin_swapw swap bytes of a short
8507
8508         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
8509         1) handle multiple send & receives from register bank1
8510         2) ralloc can now allocate DPTR1 to some liveRanges
8511
8512         * src/SDCCsymt.c, src/SDCCsymt.h:
8513         changes to handle multiple sends & receives
8514
8515         * src/SDCCptropt.h:
8516         added some pointer arithmetic optimization
8517
8518         * src/SDCCptropt.c:
8519         added some pointer arithmetic optimizations but not stable yet so not
8520         called from anywhere (will get this working shortly)
8521
8522         * src/SDCCopt.c: fixed for multiple sends & receives
8523
8524         * src/SDCCmain.c:
8525         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
8526         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
8527            set preprocessor defines (depending on options)
8528
8529         * src/SDCCicode.c, src/SDCCicode.h:
8530         changes made to handle multiple sends & receives
8531
8532         * src/SDCCglobl.h:
8533         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
8534
8535         * src/SDCCcse.c, src/SDCCcse.h:
8536         added function findbackward def (to be used in upcoming optimization)
8537
8538         * src/SDCCcflow.c, src/SDCCcflow.h:
8539         added function returnAtEnd - to determine if a basic block terminates with
8540         a RETURN iCode
8541
8542         * src/SDCCast.c, src/SDCCast.h:
8543         added option parms-in-bank1
8544
8545         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
8546         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
8547         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
8548         adjusted for --parms-in-bank1 option
8549
8550         * device/include/string.h:
8551         donot redefine "reentrant" keyword
8552
8553         * device/include/ds80c390.h: Added some more SFRs
8554
8555 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
8556
8557         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
8558
8559 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
8560
8561         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
8562
8563 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
8564
8565         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
8566
8567 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
8568
8569         * Added --xram-movc option
8570
8571 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
8572
8573         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
8574
8575 2002-01-11  Johan Knol
8576
8577         * Added math lib of Jesus Calvino-Fraga
8578
8579 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
8580
8581         * src/SDCCmain.c (processFile): fix processing of ../../src.c
8582         * support/regression/Makefile: new target test-mcs51-stack-auto
8583         * support/regression/ports/mcs51-stack-auto/spec.mk: added
8584
8585 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
8586
8587         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
8588
8589 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
8590
8591         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
8592
8593 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
8594
8595         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
8596
8597         * src/SDCCglue.h: add definition for printIvalChar()
8598
8599 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
8600
8601         * src/SDCCast.c: fix #498138 by Johan
8602
8603         * src/SDCCglue.c: fix #498138 by Johan
8604
8605 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
8606
8607         * support/regression/Makefile: fix clean
8608
8609         * support/regression/ports/ds390/support.c: fix transmission of last character
8610
8611 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
8612
8613         * /sdcc/src/ds390/gen.c:
8614         a) improved computing address of stack variable
8615         b) took out some #if 0 code
8616         c) improved parmBytes adjustment
8617         d) improved genPlusIncr & genMinusIncr
8618         e) genCmp could generate bad code (when left assigned to DPTR)
8619         f) Fixed bug in hasInc
8620
8621         * /sdcc/src/ds390/ralloc.c:
8622         a) packRegsForSupport could mess up live information (Fixed)
8623         b) packRegsDPTRuse could be incorrect for left & right shift
8624
8625         * /sdcc/src/mcs51/ralloc.c:
8626         packRegsForSupport could mess up the live information (Fixed)
8627
8628         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
8629
8630         * /sdcc/src/SDCCast.c:
8631         can reverse a loop even if function call is present as long
8632         as the loop control variable is local & is not passed as parameter
8633
8634 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
8635
8636         * /sdcc/ChangeLog: *** empty log message ***
8637
8638         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
8639         More builtin function additions for TININative
8640
8641         * /sdcc/src/ds390/ralloc.c:
8642         Had broken the regression testsuite
8643
8644         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
8645
8646         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
8647         Added funcattr hasStackParms will be set for reentrant functions when there
8648         are paramteres on the stack, this helps in minimizing frame pointer generation
8649         typeFromStr can handle function pointers now
8650
8651         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
8652         *** empty log message ***
8653
8654 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
8655
8656         * /src/ds390/gen.c, /src/ds390/main.c:
8657         More builtin function additions for TININative
8658
8659         * /src/ds390/ralloc.c:
8660         Had broken the regression testsuite
8661
8662         * /src/SDCCast.c: Fixed a bug in dumptree
8663
8664         * /src/SDCCsymt.c, /src/SDCCsymt.h:
8665         Added funcattr hasStackParms will be set for reentrant functions when there
8666         are paramteres on the stack, this helps in minimizing frame pointer generation
8667         typeFromStr can handle function pointers now
8668
8669         * /doc/builtins.txt, /doc/TININative.txt:
8670         *** empty log message ***
8671
8672
8673 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
8674
8675         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
8676         ALPHA version for -mTININative
8677
8678         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
8679         updated to reflect changes in the port structure
8680
8681         * /src/port.h:
8682         added function do_assemble (similar to do_link) if non-null this function
8683         will be called to do assembly (-mTININative) requires a multi command
8684         assembly
8685         added function genAssemblerEnd will be called to generate assembler Epilogue
8686
8687         * /src/SDCCsymt.c:
8688         added _JavaNative to debug info printing
8689
8690         * /src/SDCCmain.c: added option --tini-libid
8691         added port->do_assemble function (-mTININative) has a multi command assemble
8692
8693         * /src/SDCCglue.c: Disabled "constExpr" check
8694         added port->genAssemblerEnd function
8695
8696         * /src/SDCCglobl.h: Added option --tini-libid value
8697
8698         * /src/SDCCast.h:
8699         tookout optimizeCompare from the header (has no external references)
8700
8701         * /src/SDCCast.c: made one more function "static"
8702
8703 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
8704
8705         * src/z80/mappings.i: Added z80asm support.
8706
8707         * src/z80/main.c: Added z80asm support on --asm=z80asm
8708
8709         * src/z80/gen.c: Fixed asm portability issues.
8710
8711         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
8712
8713         * src/SDCCglue.c (printExterns): Added global/extern split.
8714
8715 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
8716
8717         * support/regression/Makefile: added test for mcs51 model large
8718
8719         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
8720
8721         * support/regression/ports/gbz80/spec.mk: added -mgbz80
8722
8723 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
8724
8725         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
8726
8727 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
8728
8729         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
8730
8731         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
8732
8733 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
8734
8735         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
8736
8737         * support/regression/tests/simplefloat.c: Port to mcs51.
8738
8739 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
8740         * support/regression/tests/bug-485362.c: Added.
8741
8742         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
8743
8744         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
8745
8746         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
8747
8748         * src/z80/gen.c (aopDump): Added a dump function.
8749
8750 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
8751         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
8752
8753         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
8754
8755         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
8756
8757         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
8758
8759         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
8760
8761         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
8762
8763         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
8764
8765         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
8766
8767         * support/regression/ports/ds390/support.c: Use tinibios.
8768
8769         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
8770
8771 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
8772
8773         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
8774         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
8775
8776         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
8777
8778         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
8779
8780 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
8781
8782         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
8783
8784         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
8785         (packRegsForIYUse): Created and optimised.
8786
8787 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
8788
8789         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
8790 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
8791
8792         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
8793
8794         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
8795
8796         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
8797
8798 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
8799
8800         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
8801
8802         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
8803
8804 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
8805
8806         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
8807
8808         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
8809
8810         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
8811
8812 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
8813
8814         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
8815         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
8816         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
8817
8818         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
8819
8820         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
8821         (genNotFloat): Added.
8822         (genUminusFloat): Added.
8823
8824         * device/lib/z80/Makefile: Added floating pt stubs.
8825
8826         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
8827
8828         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
8829
8830         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
8831
8832 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
8833
8834         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
8835
8836         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
8837
8838         * sdcc/support/regression/Makefile: Add port ds390.
8839
8840         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
8841
8842         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
8843
8844         * sdcc/support/regression/ports/ds390/spec.mk: Added.
8845
8846         * sdcc/support/regression/ports/ds390/support.c: Added.
8847
8848         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
8849
8850         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
8851
8852         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
8853
8854 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
8855
8856         * device/include/malloc.h: Added z80 and gbz80 support.
8857
8858         * device/lib/gbz80/heap.s: Added.
8859
8860         * device/lib/z80/heap.s: Added.
8861
8862         * device/lib/malloc.c: Added z80 and gbz80 support.
8863
8864         * support/regression/tests/malloc.c (testMalloc): Added.
8865
8866         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
8867
8868         * support/regression/tests/bug-478094.c: Added.
8869
8870         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
8871
8872 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
8873
8874         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
8875
8876         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
8877
8878         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
8879
8880         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
8881
8882         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
8883
8884 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
8885
8886         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
8887
8888 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
8889
8890         * support/regression/tests/bug-477927.c: Added.
8891
8892         * src/z80/peeph.def: Added minor rules.
8893
8894         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
8895
8896         * src/z80/peeph.def: Added jump optimisation modification.
8897
8898 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
8899
8900         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
8901
8902 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
8903
8904         * support/regression/tests/funptrs.c: Added.
8905
8906 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
8907
8908         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
8909
8910 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
8911
8912         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
8913
8914         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
8915
8916         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
8917         (movLeft2ResultLong): Created.
8918
8919         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
8920         (joinPushes): Added.  Joins two char pushes into a word push.
8921
8922 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
8923
8924         * support/cpp2/Makefile.in (install): Added creation of dest dir.
8925
8926         * support/makebin/Makefile (install): Added creation of dest dir.
8927
8928 2001-10-24 Karl Bongers <karl AT turbobit.com>
8929
8930         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
8931
8932 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
8933
8934         * src/z80/ralloc.c: Turned off faulty pack for one use.
8935
8936         * src/z80/peeph-gbz80.def: Removed redundent restart options.
8937
8938         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
8939
8940 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
8941
8942         * support/regression/Makefile: Improved clean
8943
8944         * support/regression/ports/gbz80/spec.mk: Added clean
8945
8946         * support/regression/ports/host/spec.mk: Added clean
8947
8948         * support/regression/ports/z80/spec.mk: Added clean
8949
8950         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
8951
8952         * support/regression/ports/mcs51/timeout.c: little improvements
8953
8954 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
8955
8956         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
8957
8958         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
8959
8960         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
8961
8962 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
8963
8964         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
8965
8966         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
8967
8968 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
8969         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
8970
8971         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
8972
8973         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
8974
8975         * src/mcs51/main.c (_linkCmd): Added bin path to command.
8976
8977         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
8978
8979         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
8980
8981         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
8982
8983         * support/regression/tests/longor.c: Added.
8984
8985 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
8986
8987         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
8988
8989         * as/mcs51/aslink.h: define PATH_MAX
8990
8991         * as/mcs51/asm.h: define PATH_MAX
8992
8993         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
8994
8995         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
8996
8997         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
8998
8999         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
9000
9001         * src/SDCCglobl.h: define PATH_MAX
9002
9003         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
9004
9005         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
9006
9007 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
9008
9009         * src/z80/gen.c (gencjneshort): Fixed
9010
9011         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
9012
9013 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
9014
9015         * support/regression/tests/bug-469671.c: Added.
9016
9017         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
9018
9019 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
9020
9021         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
9022
9023         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
9024
9025 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
9026
9027         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
9028
9029         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
9030
9031         * src/device/lib/_mullong.c : removed hint: nooverlay bug
9032
9033         * src/device/lib/_divuint.c : removed hint: nooverlay bug
9034
9035         * src/device/lib/_divulong.c: removed hint: nooverlay bug
9036
9037         * src/device/lib/_moduint.c : removed hint: nooverlay bug
9038
9039         * src/device/lib/_modulong.c: removed hint: nooverlay bug
9040
9041 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
9042
9043         * 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.
9044
9045         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
9046
9047         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
9048
9049 2001-10-07    <johan AT FRIJA>
9050
9051         * device/lib/gets.c (gets): fixed the return value.
9052
9053 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
9054         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
9055
9056         * 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.
9057
9058         * 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.
9059
9060         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
9061
9062         * src/pic/gen.c: Removed Safe_strdup.
9063
9064         * configure.in: Added option to enable libgc support.
9065
9066         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
9067         (bitVectUnion): Optimised.
9068         (bitVectIntersect): Optimised.
9069         (bitVectBitsInCommon): Optimised.
9070         (bitVectCplAnd): Optimised.
9071
9072         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
9073
9074 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9075
9076         * src/SDCCmain.c: distinguish between assembler debug and plain options
9077
9078         * src/avr/main.c:   remove standard assembler options
9079
9080         * src/ds390/main.c: remove standard assembler options
9081
9082         * src/mcs51/main.c: remove standard assembler options
9083
9084         * src/port.h: removed "PENDING" comment
9085
9086 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9087
9088         * src/device/lib/_mulint.c  : new, with assember functions
9089
9090         * src/device/lib/_mullong.c : new, with assember functions
9091
9092         * src/device/lib/_divuint.c : with assember functions
9093
9094         * src/device/lib/_divsint.c : with assember functions
9095
9096         * src/device/lib/_divulong.c: with assember functions
9097
9098         * src/device/lib/_divslong.c: with assember functions
9099
9100         * src/device/lib/_moduint.c : with assember functions
9101
9102         * src/device/lib/_modsint.c : with assember functions
9103
9104         * src/device/lib/_modulong.c: with assember functions
9105
9106         * src/device/lib/_modslong.c: with assember functions
9107
9108         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
9109
9110         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
9111
9112         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
9113                                       replaced _mululong.c and _mulslong.c by _mullong.c
9114
9115 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9116
9117         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
9118
9119 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9120
9121         * src/SDCCglue.c: test, if win32api is available for MINGW
9122
9123 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9124
9125         * src/SDCCsymt.c: no more _modifier in printTypeChain()
9126         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
9127         * support/regression/ports/gbz80/spec.mk: removed GENERIC
9128         * support/regression/ports/host/spec.mk: removed GENERIC
9129         * support/regression/ports/mcs51/spec.mk: removed GENERIC
9130         * support/regression/ports/z80/spec.mk: removed GENERIC
9131
9132 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
9133
9134         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
9135
9136         * support/regression/tests/bug-467035.c: Created.
9137
9138 2001-10-01    <johan AT FRIJA>
9139
9140         * src/SDCC.y: fixed bug #466586 part 1
9141
9142 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
9143
9144         * SDCCicode.c: z80 has no generic pointers
9145         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
9146
9147 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
9148
9149         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
9150
9151 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
9152
9153         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
9154
9155         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
9156
9157 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
9158
9159         * configure.in: Fixed up so that ucsim is only configured once.
9160
9161         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
9162
9163         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
9164         (getPathDifference): As above.
9165
9166         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
9167
9168         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
9169
9170 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
9171         * .version: Updated to 2.3.1
9172
9173         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
9174         Added copyright header.
9175
9176         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
9177         (assemble): Added support for macro based assembler commands.
9178         (linkEdit): Added support for macro based linker commands.
9179         (preProcess): Changed the pre-processor to use macros.
9180         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
9181         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
9182
9183         * device/lib/z80/crt0.s: Added module name for debugging.
9184
9185 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
9186
9187         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9188
9189         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
9190
9191         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
9192
9193         * src/Makefile.in: Added SDCCmacro and SDCCutil
9194
9195 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
9196
9197         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9198
9199 2001-09-16    <johan AT FRIJA>
9200
9201         * 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.
9202
9203 2001-09-15    <johan AT FRIJA>
9204
9205         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
9206         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
9207
9208 2001-09-11    <johan AT FRIJA>
9209
9210         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
9211
9212 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
9213
9214         * support/regression/tests/bug-460444.c: Added test case.
9215
9216         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
9217         (genCast): Added justification for all of the asserts.
9218
9219 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
9220
9221         * support/regression/support.c: _xdata replaced by xdata
9222
9223         * support/regression/spec.mk: removed _generic
9224
9225 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
9226
9227         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
9228
9229         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
9230         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
9231
9232         * src/z80/peeph.def: Added a rule to optimise shift then compare.
9233
9234         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
9235
9236         * support/regression/tests/bug-460010.c: Added test case.
9237
9238         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
9239
9240 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
9241
9242         * support/regression/Makefile: inter-port-clean adjusted for mcs51
9243
9244         * support/regression/testfwk.c: removed workaround for bug #436344
9245
9246         * support/regression/tests/bp.c: use less memory with mcs51
9247
9248         * support/regression/tests/bug-441448.c: use less memory
9249
9250         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
9251
9252         * support/regression/collate-results.py: typo
9253
9254 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
9255
9256         * support/regression/tests/fetchoverlap.c: Added new test case.
9257
9258         * support/regression/tests/bp.c: Added new test case.
9259
9260         * support/regression/tests/bug-448984.c: Added new test case.
9261
9262         * support/regression/tests/pow2shifts.c: Added new test case.
9263
9264         * src/z80/gen.c: Turned off the noise it normally generates for the release.
9265         (genlshTwo): Fixed right shift for count > 8.
9266
9267         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
9268
9269 2001-09-08    <johan AT FRIJA>
9270
9271         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
9272
9273 2001-09-07    <johan AT FRIJA>
9274
9275         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
9276
9277         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
9278
9279 2001-09-06    <johan AT FRIJA>
9280
9281         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
9282         * bernhard noted me at this: "() equals to (void)" (1.38)
9283
9284 2001-09-05    <johan AT FRIJA>
9285
9286         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
9287
9288 2001-09-04    <johan AT FRIJA>
9289
9290         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
9291
9292
9293 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
9294
9295         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
9296
9297 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
9298
9299         * link/z80/aslink.h: Fixed path for PATH_MAX
9300
9301 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
9302
9303         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
9304
9305         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
9306
9307         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
9308
9309         * 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.
9310
9311 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
9312
9313         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
9314         (genCmp): Fixed up genCmp for the GB with longs.
9315
9316         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
9317
9318         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
9319
9320         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
9321
9322         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
9323
9324 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
9325
9326         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
9327
9328 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
9329
9330         * 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.
9331
9332         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
9333
9334 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
9335
9336         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
9337
9338         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
9339
9340 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
9341
9342   * sim/ucsim/configure:    little improvement of Cygwin-detection
9343   * sim/ucsim/configure.in: little improvement of Cygwin-detection
9344   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
9345   * support/regression/tests/bug-221100.c: small changes for mcs51
9346   * support/regression/tests/bug-221168.c: small changes for mcs51
9347   * support/regression/tests/bug-227710.c: small changes for mcs51
9348   * support/regression/tests/staticinit.c: small changes for mcs51
9349   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
9350   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9351   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9352
9353 $Revision$