* src/SDCCloop.c (loopInvariants): fixed bug #1234048
[fw/sdcc] / ChangeLog
1 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2
3         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
4
5 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6
7         * src/hc08/gen.c (genMinus): fixed bug #1241835,
8           (genModOneByte): removed needless psha/pula
9
10 2005-07-22 Raphael Neider <rneider AT web.de>
11
12         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
13           have PIC14 handled like PIC16, fixes broken pic14 linker calls
14         * src/pic/gen.c (resolveIfx): do not "invent" labels
15         * (genSkipc): changed to positive logic
16         * (genSkipCond): removed as no longer needed
17         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
18           backport from PIC16
19         * (genLeftShift): check operands are in different registers
20         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
21           INCF does not update CARRY...
22         * src/pic/main.c: fixed _linkCmd
23         * src/pic/pcode.c (unlinkpCode): added inactive code
24         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
25           alive (do not assign result and operand overlapping registers)
26
27 2005-07-22 Raphael Neider <rneider AT web.de>
28
29         * src/pic/device.c (dump_sfr): replaced register declaration with
30           call to emitSymbolToFile() to avoid duplicate symbols
31         * (assignRelocatableRegisters): do not declare external symbols
32         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
33           right (take size of type, not etype)
34         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
35         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
36         * (packRegsForAccUse): disabled assignment of WREG as
37           the result reg to prevent occurence of just fixed #1235003,
38           fixes #1242954
39         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
40           symbols (avoids duplicate symbols in .asm file)
41         * (pic14emitRegularMap): use emitSymbolToFile()
42         * src/pic/gen.c (aopOp): fixed spillLocation handling
43         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
44         * (genDataPointerSet): removed unneccessary variables/output
45
46 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
47         * as/mcs51/lkarea.c: enlarged codemap for banked memory
48         * device/lib/mcs51/crtbank.asm: added # to 0x0F
49
50 2005-07-21 Raphael Neider <rneider AT web.de>
51
52         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
53           architecture cannot handle them efficiently, fixes bug #1235003
54         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
55           check for empty sets before using them (fixes bug #1232190)
56
57 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
58
59         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
60           (lnksect2): generate warnings for memory overlap
61         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
62           constseg to set the name of these segments so you can instruct the linker
63           to place them in banks
64         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
65         * src/SDCCglobl.h: added MODEL_HUGE to enum,
66           added code_seg and const_seg to options
67         * src/SDCCglue.c (emitMaps): use options.const_seg,
68           (createInterruptVect): put interrupt vectors in segment HOME,
69           (glue): put HOME before static segment and put the main glue in HOME,
70           (glue): use options.code_seg
71         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
72         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
73           these segments so you can instruct the linker to place them in banks
74           (linkEdit): use code_loc for HOME segment which should be the first
75           segment in code memory now
76         * src/SDCCmem.c: fixed more stuff like bug 1238386
77         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
78           (changePointer): don't change function pointers to code pointers for
79           banked functions,
80           (compareType): added exceptional check for banked function pointers
81         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
82         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
83           after static in code memory
84         * src/mcs51/gen.c: added aopLiteralLong prototype,
85           (aopForSym): use getSize for functions,
86           (genCall): generate banked calls over one trampoline __sdcc_banked_call
87           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
88           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
89           the segment,
90           (genPcall): use call for literal function pointers and generate banked
91           calls over the one trampoline so there's only one place for the user to
92           modify according to his/hers hardware,
93           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
94           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
95         * src/mcs51/main.c: added keyword banked,
96           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
97         * support/Util/SDCCerr.c,
98         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
99           needed for passing the bank and address to the trampoline
100         * device/lib/mcs51/crtbank.asm: added for bankswitching
101         * device/lib/mcs51/Makefile: added crtbank
102
103 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
104
105         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
106           for fields at offset 0 of a struct or union as reported
107           on 2005-07-07 in the developer mailing list.
108
109 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
110
111         * src/SDCCmem.c: fixed bug 1238386
112
113 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
114
115         * src/mcs51/peeph.def: added labelrefcounting for peepholes
116           (patch #1144962), added peephole 300, enabled 259.x
117         * doc/sdccman.lyx: removed screenshot and provided link instead
118
119 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
120
121         * doc/sdccman.lyx: added section about debugging with ddd
122         * doc/figures/ddd_example.eps: screenshot of debugging session
123
124 2005-07-04 Raphael Neider <rneider AT web.de>
125
126         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
127           like CODE pointers, fixes #1115683
128         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
129           call, fixes bugs #1232211, #1228110,
130           fixed wrong casts to pCodeFlow from pCodeInstructions
131
132 2005-07-04 Raphael Neider <rneider AT web.de>
133
134         * src/pic/gen.c (popGet): changed assert to allow for
135           bit operands
136         * (popGetAddr): changed signature to provide
137           an additional index, patched all call sites
138         * (genCmpEq): handle literal-like operands correctly
139         * (genAddrOf): added sanity checks on __code/__data pointers
140         * (genAssign): added handling of symbols from __code section
141         * (gencjne): do not generate code for comparisons whose result
142           is neither stored nor used, fixes bug #1171114
143         * (AccLsh, AccRsh): operate on operand instead of WREG
144         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
145           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
146           by known count
147         * rewrote complete shift-by-literal logic, commented unused
148           functions out
149         * (genConstPointerGet): get multiple bytes (if result size > 1),
150           fixed handling of non-immediate addresses
151         * (genPointerGet): handle CODE pointers like CONST pointers
152         * (genpic14Code): insert C-SRC lines as Cource-pCodes
153         * ({aop,op}_isLitLike): NEW, single place to decide whether an
154           operand is to be treated as a literal or not
155         * (mov2w,genPcall,genCmpEq),
156           src/pic/genarith.c: use aop_isLitLike() to decide between
157           literal/register contents
158         * (addSign): added missing offset
159         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
160           only emit comment in debug-mode,
161           use {aop,op}_isLitLike throughout the file
162         * src/pic/glue.c: fix initializers for pointers (work in progress)
163         * src/pic/pcode.c (get_op): honor index on _const symbols
164         * ({reset,dump}pCodeStatistics): NEW, estimate code size
165         * (dumppBlock): added pCode size estimation
166         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
167           check for IS_SYMOP before OP_SYMBOL'ing
168         * fixed indentation, compacted switch-statements
169         * (allocReg): find free register and allocate it instead of
170           allocating new registers all the time
171         * (deassignLRs): prevent POINTER_GET's from being assigned the same
172           registers as its operands (necessary only for multibyte GETs)
173
174 2005-07-01 Raphael Neider <rneider AT web.de>
175
176         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
177           debugging .asm-output macros FENTRY + FEXIT
178         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
179           way... I wonder...
180         * (emitpComment): NEW, printf to pCode
181         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
182           offset handling
183         * (popGetAddr): NEW, variant of popGet to access an immediates
184           high(er) bytes instead of the n'th byte of memory they reference,
185           replaced popGet with popGetAddr where neccessary
186         * (genDataPointerGet): reactivated and fixed implementation
187         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
188           accesses
189         * (genDataPointerSet): fixed multibyte assignments
190         * (genpic14Code): fixed --i-code-in-asm handling
191         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
192         * (genPlus): fixed index-out-of-bounds error
193         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
194         * src/pic/ralloc.c: added debugging output macro FENTRY2
195         * (spillThis): fixed indentation, enbraced for-body for clarity
196         * (rematStr): commented out as now unused
197         * (regTypeNum): commented out special spill case (overwrites
198           arbitrary values)
199         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
200
201 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
202
203         * doc/sdccman.lyx: documented sfr16/sfr32,
204           added example for using storage class with function pointers
205         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
206
207 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
208
209         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
210         * device/lib/_itoa.c,
211         * device/lib/_ltoa.c: optimized codesize
212         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
213           but don't know how to suppress the double warning.
214         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
215         * support/Util/SDCCerr.c,
216         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
217
218 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
219
220         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
221           fixed old K&R prototypes
222         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
223         * device/lib/_gptrget.c,
224         * device/lib/_gptrgetc.c,
225         * device/lib/_gptrput.c: changed versions for new memory indicator values,
226           also new versions for small generic pointers and banked generic pointers
227         * src/port.h: added const_name
228         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
229         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
230         * src/SDCCcse.c (findPrevIc): check all associative operators
231         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
232         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
233         * src/SDCCmem.c: updated comments,
234           set far-space to 0 for pdata, results in optimized code
235         * src/SDCCmem.h: added macro CONST_NAME
236         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
237           moving the info into the highest bits, see also gptrget/gptrput
238         * src/src.dsp: added sdcc.ico to project files
239         * src/avr/gen.c (genCast): fixed bug 0x%d
240         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
241         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
242           relation between ptr_type and DCL_TYPE,
243           (genCast): fixed bug 0x%d
244         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
245           (CODE)" for const_name
246         * src/hc08/gen.c (genCast): fixed bug 0x%d
247         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
248           (hc08_port): added "CONST (CODE)" for const_name
249         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
250           (aopForRemat, adjustArithmeticResult): disconnected direct relation
251           between ptr_type and DCL_TYPE,
252           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
253           operand* and took AOP() inside function so sfr-ness can be checked,
254           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
255           new prototype,
256           (genFunction, genEndFunction): optimized stack setup,
257           (genMinus): optimized for literals with ending zeroes (in bytes),
258           (genCast): fixed bug 0x%d
259         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
260           (mcs51_port): added "CONST (CODE)" for const_name
261         * src/mcs51/peeph.def: made rule 226 more generic
262         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
263         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
264         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
265         * src/z80/main.c (z80_port): added NULL for const_name,
266           (gbz80_port): added NULL for const_name
267         * support/regression/tests/bug663539.c,
268         * support/regression/tests/sfr16.c: new tests
269
270 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
271
272         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
273
274 2005-06-24 Raphael Neider <rneider AT web.de>
275
276         * device/lib/pic16/libdev/pic18f[68][567]20.c:
277           corrected typos...
278         * device/include/pic16/signal.h: added USBIF
279           and SIG_USB
280
281 2005-06-24 Raphael Neider <rneider AT web.de>
282
283         * device/lib/pic16/libdev/pic18f2455.c,
284           device/include/pic16/pic18f2455.h: NEW
285         * device/include/pic16/pic18fregs.h,
286           device/lib/pic16/pics.all,
287           src/pic16/device.c: added 18f2455
288         * device/lib/pic16/libdev/pic18f[68][567]20.c,
289           device/include/pic16/{pic18f[68][567].h,usart.h}:
290           replaced MULTIPLE_USARTS define with more relaible
291           compatibility sfrs (for USART access)
292
293 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
294
295         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
296           and the output asm file line is printed on two lines.
297
298 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
299
300         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
301           BGT, BLE, BHI, and BLS instructions
302         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
303           genCmpEq): removed
304         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
305           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
306           fixes bug #1216342
307         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
308
309 2005-06-15 Raphael Neider <rneider AT web.de>
310
311         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
312         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
313         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
314           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
315           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
316
317 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
318
319         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
320           Marcel Telka in bug #1215704
321
322 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
323
324         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
325           located in shared memory bank.
326
327 2005-05-31 Raphael Neider <rneider AT web.de>
328
329         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
330           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
331           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
332
333 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
334
335         * device/lib/_strncpy.c: fixed the fix
336
337 2005-05-26 Raphael Neider <rneider AT web.de>
338
339         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
340           initializers with \0, bug #1208187
341         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
342           intializers with \0, bug #1208187
343
344 2005-05-26 Raphael Neider <rneider AT web.de>
345
346         * src/pic16/glue.c (pic16_printIvalChar): fixed string
347           initializers with \0, bug #1208187
348         * src/pic16/main.c (_process_pragma): added sanity checks
349           for stack position and size, emit warnings when appropriate
350
351 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
352
353         * device/lib/_strncpy.c: fixed not filling with \0
354
355 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
356
357         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
358           createFunction),
359         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
360           compound_statement),
361         * src/SDCCsymt.h,
362         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
363
364 2005-05-24 Raphael Neider <rneider AT web.de>
365
366         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
367
368 2005-05-24 Raphael Neider <rneider AT web.de>
369
370         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
371           TRISE definitions, closes bug #1162453
372
373 2005-05-22 Raphael Neider <rneider AT web.de>
374
375         * src/pic16/main.c (_process_pragma): check for missing
376           arguments to pragmas code and udata
377         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
378           consistency fixes to match other headers (thanks to Jim Paris)
379         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
380
381 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
382
383         * src/SDCCicode.c (isOperandEqual): fixed missing ;
384
385 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
386
387         * support/regression/tests/bug1198642.c: new test
388         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
389         * src/SDCCcse.c (findPrevIc): added comment, please have a look
390         * support/scripts/resource.h,
391         * support/scripts/resource.rc,
392         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
393         * support/scripts/sdcc.ico: added 32x32 icon
394
395 2005-05-18 Raphael Neider <rneider AT web.de>
396
397         * device/lib/pic16/libdev/pic18f*.c,
398         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
399           keywords to "__sfr" and "__at (X)"
400         * device/include/pic16/pic18fregs.h: added pic18f4520
401         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
402           #1203088 (MPLAB compatibility)
403
404 2005-05-17 Raphael Neider <rneider AT web.de>
405
406         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
407         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
408         * device/lib/pic16/pics.all: added new devices
409         * src/pic16/device.c: added support for pic18f4520
410
411 2005-05-16 Raphael Neider <rneider AT web.de>
412         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
413         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
414         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
415           convenience function for bit access
416
417 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
418
419         * device/lib/printf_large.c: fixed bug 1193299
420         * support/regression/tests/bug1057979.c: added test %3.3s
421
422 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
423
424         * device/include/mcs51/8051.h,
425         * device/include/mcs51/8052.h: made parseable with lint
426         * device/include/mcs51/lint.h: added include file for (sp)lint
427         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
428         * doc/cdbfileformat.lyx,
429         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
430
431 2005-05-14 Raphael Neider <rneider AT web.de>
432
433         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
434         * device/lib/pic16/libc/stdlib/itoa.c (new)
435         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
436         * device/lib/pic16/libio/Makefile: exclude subdir according to
437           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
438         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
439         * src/pic16/gen.c (genFunction): prevent annoying warning
440         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
441           nameclashes on BeOS
442         * support/cpp2/cppmain.c (cpp_output_string): new
443         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
444           fixes bug 1116802
445
446 2005-05-13 Borut Razem <borut.razem AT siol.net>
447
448         * src/SDCCmain.c (linkEdit): fixed bug 1195202
449
450 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
451
452         * .version: changed to version 2.5.1; back to bleeding edge development
453
454 2005-05-11 Borut Razem <borut.razem AT siol.net>
455
456         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
457           generate PDF version 1.3 documents
458
459 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
460
461         * .version: changed to version 2.5.0
462
463 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
464
465         * doc/sdccman.lyx: updated weblinks, index and smaller updates
466
467 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
468
469         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
470         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
471         well as many smaller updates.
472         * .version: changed to version 2.5.0-pre1
473
474 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
475
476         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
477
478 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
479
480         * support/regression/tests/bug1185672.c: added
481         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
482           bug 1185672
483         * src/mcs51/gen.c (genCall): added comments, made it look safer
484         * src/mcs51/gen.c (genEndFunction): simplified
485
486 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
487
488         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
489
490 2005-04-14 Borut Razem <borut.razem AT siol.net>
491
492         * fixed bug 1045046 - SIGSEGV with really simple code?:
493           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
494           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
495
496 2005-04-14 Borut Razem <borut.razem AT siol.net>
497
498         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
499           src/pic16/device.h: temporarily disabled experimental #inline pragma
500           for 2.5.0 release
501
502 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
503
504         * device/include/z80/stdio.h,
505         * device/include/z80/string.h: removed these highly incomplete files so
506           SDCC can use the default ones in device/include/
507
508 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
509
510         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
511         gcc warning.
512         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
513         fix sdcpp warnings.
514
515 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
516
517         * device/include/malloc.h: removed redundant __reentrant prototypes
518         * device/lib/_mullong.c: added working xstack variant in asm (C version
519           doesn't pass regression tests)
520         * device/lib/bpx.c: used __data and made bpx char for mcs51
521         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
522           (createFunction): fixed bug with xstackPtr
523         * src/SDCCcse.c: corrected comments
524         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
525           (killDeadCode, eBBlockFromiCode): removed unused code
526         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
527           corrected comments
528         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
529           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
530           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
531           (genModOneByte): fixed warning in MSVC
532         * src/mcs51/main.c (): added comments
533         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
534
535 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
536
537         * src/SDCCmain.c (linkEdit): oops, changed one line too many
538
539 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
540
541         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
542
543 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
544
545         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
546         characters arrays of larger size than the declared one.
547
548 2005-04-10 Borut Razem <borut.razem AT siol.net>
549
550         * src/pic/gen.c (genInline),
551           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
552           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
553           (findNextInstruction), (findPrevInstruction),
554           (findInstructionUsingLabel),
555           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
556         * src/pic/pcode.c (findLabel): added missing '\n'
557         * src/src.dsp: added SDCCdwarf2.c to the project
558
559 2005-04-09 Borut Razem <borut.razem AT siol.net>
560
561         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
562
563 2005-04-08 Raphael Neider <rneider AT web.de>
564
565         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
566           into the chain after a given one) and mergeDefmapSymbols (combine
567           defmap entries for each symbol per pcode)
568         * (createDefmap): have defmap entries merged in the end
569         * (defmapReplaceSymRef): split defmap entries covering two accesses to
570           a symbol before replacing one access type's symbol, merge symbols in
571           the end (replacement symbol might already have an entry)
572         * (assignValnums): keep reference to written WREG intact
573
574 2005-04-08 Raphael Neider <rneider AT web.de>
575
576         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
577           Alpha)
578
579 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
580
581         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
582         bytes
583
584 2005-04-07 Raphael Neider <rneider AT web.de>
585
586         * device/include/pic16/usart.h: added compatibility defines for
587           devices with more than one USART
588         * device/include/pic16/pic18f[68][567]20.h: activated above defines
589
590 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
591
592         * device/lib/Makefile.in: updated for port specific include
593
594 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
595
596         * support/regression/ports/mcs51/spec.mk: added mcs51 include
597
598 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
599
600         * device/include/8051.h,
601         * device/include/8052.h,
602         * device/include/at89S8252.h,
603         * device/include/at89c55.h,
604         * device/include/at89x051.h,
605         * device/include/at89x51.h,
606         * device/include/at89x52.h,
607         * device/include/mcs51reg.h,
608         * device/include/reg51.h,
609         * device/include/reg764.h,
610         * device/include/regc515c.h,
611         * device/include/sab80515.h: (re)moved these 12 files
612         * device/include/mcs51/8051.h,
613         * device/include/mcs51/8052.h,
614         * device/include/mcs51/at89S8252.h,
615         * device/include/mcs51/at89c55.h,
616         * device/include/mcs51/at89x051.h,
617         * device/include/mcs51/at89x51.h,
618         * device/include/mcs51/at89x52.h,
619         * device/include/mcs51/mcs51reg.h,
620         * device/include/mcs51/reg51.h,
621         * device/include/mcs51/reg764.h,
622         * device/include/mcs51/regc515c.h,
623         * device/include/mcs51/sab80515.h: and added them here
624
625 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
626
627         * device/include/stdarg.h: changed SDCC specific keywords to double
628           underlined form.
629         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
630           mcs51 and ds390.
631         * device/include/hc08/mc68hc908gp32.h,
632         * device/include/hc08/mc68hc908jb8.h,
633         * device/include/hc08/mc68hc908jkjl.h,
634         * device/include/hc08/mc68hc908qy.h: fixed comments
635         * device/include/mcs51/README: updated
636         * device/include/mcs51/c8051f120.h: added PINRSF
637         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
638         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
639           amidst code. Also inline is not supported.
640
641 2005-04-06 Raphael Neider <rneider AT web.de>
642
643         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
644         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
645           callers stack/frame pointers
646
647 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
648
649         * device/include/pic16/usart.h: added, missing in previous commit,
650         * device/include/pic16/adc.h: fixed typo,
651         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
652         commit,
653         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
654         <p18fxxx.inc>
655         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
656         uninitialized because a bug appears with gplink
657         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
658         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
659         complains for unrecognised option
660
661 2005-04-05 Raphael Neider <rneider AT web.de>
662
663         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
664           structs as well (using memcpy)
665         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
666           on ISRs (GOTO has no label)
667         * src/pic16/device.h: added OF_OPTIMIZE_DF
668         * src/pic16/main.c: added compiler switch --optimize-df to enable the
669           new data flow analysis/optimization
670         * src/pic16/pcode.c: added (prototypes for and implementation of)
671           dataflow analysis functions, fixed pCodeInstructions' inCond and
672           outCond values, made RCALL a branch instruction
673         * (pic16_unlinkpCode): keep C line if possible
674         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
675           C line moved if possible
676         * (pic16_getRegFrompCodeOp): NEW, improved version of...
677         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
678           to use new pic16_getRegFrompCodeOp (works for more SFRs)
679         * (pic16_BuildFlow): fixed skip instructions with label (did not start
680           new flow)
681         * (pic16_getJumptabpCode): NEW, needed in...
682         * (LinkFlow): fixed handling of jumptables, calls and conditional
683           branches
684         * (pic16_InsertCommentAfter): NEW
685         * (pic16_pCodeReplace): made verbose and flow preserving
686         * (AnalyzeFlow): added call to data flow analysis
687         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
688         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
689         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
690
691 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
692
693         * src/SDCCast.c (decorateType): fixed bug #1105626
694
695 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
696
697         * device/include/asm/pic16/features.h,
698         * pic18f*.h headers,
699         * device/include/pic16/adc.h,
700         * device/include/pic16/delay.h,
701         * device/include/pic16/i2c.h,
702         * device/include/pic16/malloc.h,
703         * device/include/pic16/stdio.h,
704         * device/include/pic16/stdlib.h,
705         * device/include/pic16/string.h,
706         * device/lib/pic16/libc/stdio/printf_tiny.c,
707         * device/lib/pic16/libc/stdio/printf_small.c,
708         * device/lib/pic16/libc/stdio/strmgpsim.c,
709         * device/lib/pic16/libc/stdio/strmmssp.c,
710         * device/lib/pic16/libc/stdio/strmusart.c,
711         * device/lib/pic16/libc/stdio/vfprintf.c,
712         * device/lib/pic16/libc/stdlib/ltoa.c,
713         * device/lib/pic16/libc/stdlib/putchar.c,
714         * device/lib/pic16/libc/stdlib/x_ftoa.c,
715         * device/lib/pic16/libc/stdlib/memchrpgm.c,
716         * device/lib/pic16/libc/stdlib/memchrram.c,
717         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
718         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
719         * device/lib/pic16/libio/adc/adcbusy.c,
720         * device/lib/pic16/libio/adc/adcread.c,
721         * device/lib/pic16/libio/adc/adcsetch.c,
722         * device/lib/pic16/libio/usart/ubaud.c,
723         * device/lib/pic16/libio/usart/ubusy.c,
724         * device/lib/pic16/libio/usart/udrdy.c,
725         * device/lib/pic16/libio/usart/uopen.c,
726         * device/lib/pic16/libio/usart/uputc.c,
727         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
728         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
729         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
730         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
731         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
732         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
733         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
734         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
735         specific keywords to double underlined form,
736         * device/lib/pic16/libc/Makefile.rules,
737         * device/lib/pic16/libsdcc/Makefile.rules,
738         * device/lib/pic16/libm/Makefile,
739         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
740         to compile with C standard set in Makefile.common
741         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
742         rand.c and crc.c in compilation process,
743         * device/lib/pic16/libsdcc/int/divuint.c,
744         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
745         `c' from signed to unsigned,
746         * device/lib/pic16/startup/crt0.c,
747         * device/lib/pic16/startup/crt0i.c,
748         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
749         keywords to double underlined form, bug fixes in _do_cinit function
750         which prevented the correct initialization of the .idata segment,
751         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
752         core to enter a infinite loop
753         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
754
755 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
756
757         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
758
759 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
760
761         * device/include/Makefile.in: add support for hc08 subdirectory
762         * device/include/hc08/: new subdirectory
763         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
764         Lucas Loizaga, thanks!
765         * device/include/hc08/mc68hc908qy.h,
766         * device/include/hc08/mc68hc908gp32.h,
767         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
768         their own directory. Changed internal macro names to use the compiler
769         reserved namespace. Changed SDCC specific keywords to double
770         underlined form.
771         * device/include/math.h,
772         * device/include/malloc.h,
773         * device/include/stdarg.h,
774         * device/include/stdbool.h
775         * device/include/string.h,
776         * device/include/tinibios.h,
777         * device/include/ds400rom.h,
778         * device/include/8051.h,
779         * device/include/8052.h,
780         * device/include/80c51xa.h,
781         * device/include/at89c55.h,
782         * device/include/at89S8252.h,
783         * device/include/at89x51.h,
784         * device/include/at89x52.h,
785         * device/include/ds80c390.h,
786         * device/include/reg764.h,
787         * device/include/regc515c.h,
788         * device/include/sab80515.h,
789         * device/include/mcs51/c8051f000.h,
790         * device/include/mcs51/c8051f018.h,
791         * device/include/mcs51/c8051f020.h,
792         * device/include/mcs51/c8051f040.h,
793         * device/include/mcs51/c8051f060.h,
794         * device/include/mcs51/c8051f120.h,
795         * device/include/mcs51/c8051f300.h,
796         * device/include/mcs51/c8051f310.h,
797         * device/include/mcs51/c8051f320.h,
798         * device/include/mcs51/c8051f330.h,
799         * device/include/mcs51/c8051f350.h,
800         * device/include/z180.h: Changed SDCC specific keywords to double
801         underlined form.
802
803 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
804
805         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
806         18F4455,
807         * (pic16_assignConfigWordValue): disable testing of configuration
808         register value with config mask,
809         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
810         function with port->fun_prefix,
811         * (genFunction): when generating a naked interrupt function never
812         create an absolute segment placed in interrupt vector address, place
813         the actual interrupt function at IVA instead, when an interrupt
814         function is generated with unspecified interrupt then do not create
815         the absolute section,
816         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
817         code for generating a call to generic pointer get/put function with
818         a call to function pic16_callGenericPointer(),
819         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
820         the call to the generic pointer get/put functions with prefixing the
821         function name with port->fun_prefix,
822         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
823         * src/pic16/main.c (_process_pragma): prefix function with
824         port->fun_prefix,
825         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
826         calling assembler, old 18Fxxxx macro is deprecated,
827         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
828         PC_ASMDIR in while condition,
829         * (findInstruction): add PC_ASMDIR in while condition,
830         * (buildCallTree): prefix main with port->fun_prefix,
831         * (pic16_pCode2str): fixed bug that didn't emit the memory access
832         identifier for variable with banked access in instructions BTFSS,
833         BTFSC, BCF, BSF, BTG
834         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
835         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
836         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
837         perform optimization when enviroment variable NO_REG_OPT is set,
838         * (insideLRBlock): NEW, return 1 if register is inside an
839         INF_LOCALREGS block,
840         * (RemoveRegFromLRBlock): remove a register that is completely
841         eliminated by register optimization, but it is still left in local
842         register store/restore in/from stack block,
843         * (Remove2pcodes): after removing register, check to see if it
844         should be removed from local register store/restore in/from stack
845         block,
846         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
847         DUMMY_READ_VOLATILE,
848
849         * device/include/pic16/adc.h: minor prototype modifications and
850         update,
851         * device/include/pic16/malloc.h: added GPL notice various
852         modifications,
853         * device/include/pic16/stdint.h: NEW, standard header for ints
854         * device/include/pic16/delay.h: NEW, header for delay functions,
855         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
856         delay1mtcy,
857         * device/include/pic16/signal.h: NEW, header providing helper macros
858         for implementing signal handlers,
859         * device/include/pic16/stdio.h: added prototypes for functions,
860         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
861         prototypes for stdin and stdout, added macro PUTCHAR to
862         automatically implement putchar function prototype,
863         * device/include/pic16/usart.h: modified and updated USART library,
864         * device/lib/pic16/libio/adc/,
865         * device/lib/pic16/libio/i2c: some modifications to improve library
866         performance,
867         * device/lib/pic16/libc/stdio/: modifications for the new printf*
868         family of functions,
869         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
870         family of functions and other sources,
871         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
872         of the PIC18Fxx[28] devices,
873         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
874         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
875         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
876         _do_cinit function, because the previous failed when local variables
877         where not placed in the same memory bank,
878         * device/lib/pic16/libsdcc/char/: various modifications to improve
879         library performance,
880         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
881         information on the new functions of the c library and more...
882
883 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
884
885         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
886
887 2005-03-26 Raphael Neider <rneider AT web.de>
888
889         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
890           if condition == CARRY)
891         * (genCmp): adapted to new genSkipc semantics
892         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
893           on rIfx (genCmp was broken)
894
895 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
896
897         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
898         * src/z80/main.c (_keywords[]),
899         * src/SDCCglobal.h (struct options),
900         * src/SDCC.y,
901         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
902         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
903         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
904         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
905         always available in leading double underscore form. The C99 support is
906         mostly missing, but it's a start.
907         * support/regression/tests/bug-227710.c: fixed nonconforming use of
908         reserved identifier "__data".
909
910 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
911
912         * src/mcs51/peeph.def: fixed bug 1170013
913
914 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
915
916         * device/include/mcs51reg.h: fixed bug 842007
917
918 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
919
920         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
921         last time.
922
923 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
924
925         * src/port.h (struct PORT),
926         * src/avr/ralloc.c (avr_assignRegisters),
927         * src/avr/main.c,
928         * src/ds390/ralloc.c (ds390_assignRegisters),
929         * src/ds390/main.c,
930         * src/hc08/ralloc.c (hc08_assignRegisters),
931         * src/hc08/main.c,
932         * src/mcs51/ralloc.c (mcs51_assignRegisters),
933         * src/mcs51/main.c,
934         * src/pic/ralloc.c (pic14_assignRegisters),
935         * src/pic/main.c,
936         * src/pic16/ralloc.c (pic16_assignRegisters),
937         * src/pic16/main.c,
938         * src/xa51/ralloc.c (xa51_assignRegisters),
939         * src/xa51/main.c,
940         * src/z80/ralloc.c (z80_assignRegisters),
941         * src/z80/ralloc.h,
942         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
943         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
944         * src/SDCCcse.h,
945         * src/SDCCdflow.c (computeDataFlow),
946         * src/SDCCdflow.h,
947         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
948         * src/SDCCloop.h,
949         * src/SDCCcflow.c (*),
950         * src/SDCCcflow.h,
951         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
952         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
953         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
954         immedDom() returning wrong block; probably fixes bug #1160833)
955
956 2005-03-20 Borut Razem <borut.razem AT siol.net>
957
958         * support/scripts/inc2h.pl: WIN32 port
959
960 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
961
962         * device/lib/makefile.in: added abs.c and labs.c
963
964 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
965
966         * device/include/stdint.h: added
967         * device/lib/abs.c: added
968         * device/lib/labs.c: added
969         * device/include/stdlib.h: added abs() and labs() prototypes
970         * device/lib/libsdcc.lib: added abs and labs
971         * device/include/float.h,
972         * device/lib/_fsmul.c,
973         * device/lib/printf_fast.c,
974         * device/lib/printf_tiny.c: updated comments
975
976 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
977
978         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
979         bug #1164313
980
981 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
982
983         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
984         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
985
986 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
987
988         * device/lib/printf_large.c: removed inline assembly for portability and
989           readability. Use printf_fast if speed or size are more important.
990         * src/pic16/gen.c: removed conditions around use of DEBUGpc
991         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
992
993 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
994
995         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
996         prevent compiler warning
997
998 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
999
1000         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
1001         moved to level 0 and declared as static. Also they are explicit
1002         placed in access bank. This was necessery because some times they
1003         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
1004         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
1005         optimizations. Currently only compare to unsigned char is implemented,
1006         * src/pic16/gen.c: added fReturnIdx array,
1007         * (struct resolvedIfx) is moved to gen.h and made public,
1008         * (struct _G): added sregsAlloc and sregsAllocSet fields,
1009         * (aopForSym): added an optimization to directly store in stack of
1010         the operand of a SEND iCode,
1011         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
1012         but as registers instead (AOP_REG) using the fReturnIdx array,
1013         * (pic16_freeAsmop): remove the freed register from the
1014         _G.sregsAlloc field,
1015         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
1016         a compare of 'WREG',
1017         * (pic16_popGetTempRegCond): changed function prototype, now
1018         function takes also a bitVector argument v which holds the current
1019         set of registers that are allocated for stack access by aopForSym,
1020         registers allocated in aopForSym for accessing stack symbols are not
1021         any more part of the functions usedRegs field,
1022         * (genCall): some times aopOp is called for a stack variable to be
1023         send, aopForSym might perform the push, if this is true make sure
1024         that genCall doesn't push the variable twice by testing _G.resDirect,
1025         * (genFunction): changed testing for unspecified interrupt number
1026         from 256 to INTNO_UNSPEC,
1027         * modified selection scheme of frame pointer generation. Previously
1028         if function did use local registers a frame pointer was generated,
1029         now a frame pointer is generated only if function has arguments
1030         (that need PLUSW2 register access), or has stack arguments, or the
1031         compiler is not instructed to omit the frame pointer,
1032         * (genEndFunction): before restoring local registers that were saved
1033         in the function preamble, also restore the registers that *might*
1034         have been allocated for stack access,
1035         * (genRet): removed some old comments,
1036         * (genCmp, the active (RN's) version): added a call to the
1037         pic16_genCmp_special function to perform the compare with a more
1038         robust and optimized way,
1039         * (genInline): a feature has been added in inline code generation,
1040         which allows a wildcard variable substitution when writing inline
1041         assembly. Code is incomplete and experimental therefore undocumented,
1042         * (genCast): changed order of aopOp for result and right to allow
1043         aopForSym to directly load the result if possible,
1044         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
1045         perform an optimized compare on some selected special occasions,
1046         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
1047         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
1048         generate an IVT any more,
1049         * src/pic16/main.c (pic16_optionsTable): added command line option
1050         --optimize-cmp,
1051         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
1052         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
1053         macros,
1054         * src/pic16/NOTES: Raphael Neider added in list of active developers
1055         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
1056         jumptable_end to prevent bug #,
1057         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
1058         inCond and outCond fields,
1059         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
1060         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
1061         turn off register spilling,
1062         * (packRegsForOneUse): synced with other ports' versions although it
1063         is not used currently,
1064         * (pic16_packRegisters): added an optimization while reading
1065         structure bitfields, some registers may be saved (malloc code is
1066         decreased by 80 bytes)
1067
1068 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
1069
1070         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
1071         left is a bitfield, if yes, then don't optimize assignment. Perhaps
1072         this can be optimized more?
1073
1074 2005-03-10 Raphael Neider <rneider AT web.de>
1075
1076         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
1077           genNearPointerGet): (hopefully) fixed access to bitfields via
1078           pointers (p->bitN = x; and x = p->bitN; failed)
1079
1080 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
1081
1082         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
1083
1084 2005-03-09 Raphael Neider <rneider AT web.de>
1085
1086         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
1087
1088 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
1089
1090         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
1091         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
1092           (regTypeNum): set REG_BIT type if necessary
1093         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
1094         * support/regression/tests/critical.c: check bug 1144613
1095
1096 2005-03-02 Raphael Neider <rneider AT web.de>
1097
1098         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
1099
1100 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1101
1102         * src/avr/ralloc.c (serialRegAssign),
1103         * src/ds390/ralloc.c (serialRegAssign),
1104         * src/hc08/ralloc.c (serialRegAssign),
1105         * src/mcs51/ralloc.c (serialRegAssign),
1106         * src/pic/ralloc.c (serialRegAssign),
1107         * src/pic16/ralloc.c (serialRegAssign),
1108         * src/xa51/ralloc.c (serialRegAssign),
1109         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
1110
1111 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
1112
1113         * src/SDCCast.c (decorateType): fixed bug 1124787
1114
1115 2005-02-20 Hubert Sack <sack AT digiplan.de>
1116         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1117
1118         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
1119         patch #1121755
1120
1121 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1122
1123         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
1124         to keep the correct label reference count when adding/removing references
1125         to labels. A peephole file using this is appended to patch #1144962.
1126
1127 2005-02-14 Raphael Neider <rneider AT web.de>
1128
1129         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
1130         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
1131         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
1132           retrievals of result operand's value on assignment
1133
1134 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
1135
1136         * device/include/pic16/string.h: modified prototype for memccpy()
1137         to memccpy(void *, void *, char, size_t)
1138         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
1139         check whether to omit frame pointer or not,
1140         * (genInline): convert all occurences of "\n" to LF in inline
1141         assembler blocks, this helps formatting the inline text,
1142         * (pic16_loadFSR0): modified prototype,
1143         * (genNearPointerGet, genNearPointerSet): reorganization of code,
1144         removed some 8051 legacy code,
1145         * (genPackBits): enabled handling bitfields exceeding one byte in size,
1146         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
1147         before allocating temporary registers in functions,
1148
1149 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1150
1151         * support/regression/tests/bitvars.c: corrected the "fix"
1152
1153 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1154
1155         * support/regression/tests/bitvars.c,
1156         * support/regression/tests/bitwise.c,
1157         * support/regression/tests/rotate.c: "fixed" problems on Alpha
1158
1159 2005-02-10 Raphael Neider <rneider AT web.de>
1160
1161         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
1162           different size for Alpha
1163         * src/pic16/gen.c (genCmpEq) : improved compare with 0
1164
1165 2005-02-09 Raphael Neider <rneider AT web.de>
1166
1167         * src/SDCC.lex(doPragma) : save and restore warning options as well
1168           (also added new stack plus clone- and copyAndFreeSDCCERRG())
1169         * have #pragma less_pedantic set the errorlevel to WARNING
1170           (fixes #1117001)
1171         * (cloneOptimize) : fixed wrong malloc's size
1172         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
1173           facilitate correct handling of #pragma (save|restore)
1174
1175 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1176
1177         * src/mcs51/gen.c: removed non-standard C nameless struct/union
1178
1179 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
1180
1181         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
1182
1183 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
1184
1185         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
1186
1187 2005-02-02 Raphael Neider <rneider AT web.de>
1188
1189         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
1190         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
1191         * (pic16_storeForReturn): fixed to allow returning function pointers
1192         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
1193         * device/include/pic16/{stddef.h,stdbool.h}: added
1194
1195 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
1196
1197         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
1198
1199 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
1200
1201         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
1202         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
1203          appeared to be required
1204
1205 2005-01-31 Borut Razem <borut.razem AT siol.net>
1206
1207         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
1208           include/mcs51 and include/z80 directories to the package
1209
1210 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1211
1212         * src/hc08/gen.c (genFunction): fixed bug #1112752
1213
1214 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1215
1216         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
1217
1218 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1219
1220         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
1221
1222 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
1223
1224         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
1225
1226 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
1227
1228         * device/include/c8051fxxx.h: removed these 6 files
1229         * device/include/mcs51/c8051fxxx.h: added these 11 new files
1230
1231 2005-01-26 Raphael Neider <rneider AT web.de>
1232
1233         * src/pic16/gen.c (genAssign): fixed assignment from longs
1234           in codespace (were cut to three bytes)
1235         * (genDummyRead): implemented (except for CODESPACE...),
1236           fixed bug #1108575
1237         * src/pic16/glue.c (emitStatistics): beautified
1238         * device/lib/pic16/libm/Makefile: added include path
1239
1240 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1241
1242         * src/z80/gen.c (aopPut): fixed bug #1103902
1243
1244 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1245
1246         * device/lib/expf.c: fixed bug #1095792
1247
1248 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
1249
1250         * device/lib/pic16/libm: added Math library sources
1251
1252 2005-01-24 Raphael Neider <rneider AT web.de>
1253
1254         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
1255           to enable upcast to pCodeOpReg2 (there is no type tag to
1256           differenciate the two and pic16_popGet2p cast into PCOR2)
1257         * src/pic16/main.c (_process_pragma): fixed another malloc bug
1258           (sizeof(sectNames) changed to sizeof(sectName))
1259           Both patches fix segfaults under MinGW.
1260
1261 2005-01-23 Raphael Neider <rneider AT web.de>
1262
1263         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
1264           Safe_[mc]?alloc()'ed variables
1265         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
1266           of (byte sized) temporaries (assign them to WREG for now)
1267         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
1268           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
1269           this might fix SIGSEGVs on MinGW...
1270         * src/SDCCopt.c (killDeadCode): restored original behaviour
1271           (volatile operands might get thrown away though)
1272
1273 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
1274
1275         * src/pic16/gen.c: fixed bug #1106975,
1276         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
1277         pointer update, INTCON is saved, global interrupts are disabled and
1278         restored after updateing TOS.
1279         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
1280         * added function attribute 'shadowregs' to take advantage of shadow
1281         registers,
1282         * added function attribute 'wparam' as an alternative to the wparam
1283         pragma,
1284         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
1285         user declares a non-ISR function as 'shadowregs',
1286         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
1287
1288 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
1289
1290         * .version: bumped version number to 2.4.8
1291         * device/lib/pic16/pics.all: list of PIC18F devices supported by
1292         pic16 port,
1293         * device/lib/pic16/libio/i2c/: I2C module support library,
1294         * device/include/pic16/i2c.h: I2C support library header,
1295         * device/lib/pic16/libc/stdio/: standard IO support sources,
1296         * (printf_small.c): printf_small() source, supports float print,
1297         * (printf_tiny.c): printf_tiny() source, does not support floats,
1298         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
1299         enable global optimizations for entire library source, other
1300         Makefiles in the source tree are also modified to reflect this,
1301         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
1302         function,
1303         * doc/sdccman.lyx: updated to reflect new changes,
1304         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
1305         sym->onStack if-case,
1306         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
1307         sbit, idata, _idata, xdata, _xdata,
1308         * added pragma library, to link an external library, (see doc),
1309         * removed command line options, --pomit-config-words, --pomit-ivt,
1310         --pleave-reset-vector,
1311         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
1312         when calling assembler to reflect memory model used, also define
1313         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
1314         reflect stack model used,
1315         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
1316         on stack return NULL,
1317
1318 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1319
1320         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
1321           of the operands is volatile. Fixes #1020220
1322
1323 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1324
1325         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
1326         * (OptimizeRegUsage): make sure that there is really no other flow where
1327           the first pCode is used
1328
1329 2005-01-22 Raphael Neider <rneider AT web.de>
1330
1331         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
1332           to fix #1106967 (pCode->seq are not set up correctly)
1333
1334 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1335
1336         * src/SDCCglue.c (glue): make sure code area is declared before the
1337         static initialization area.
1338
1339 2005-01-21 Raphael Neider <rneider AT web.de>
1340
1341         * device/lib/Makefile.in: fixed test for pic16 install dir
1342         * device/lib/pic16/*/Makefile*: modified compile flags to enable
1343           optimizations
1344         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
1345           added --optimize-goto compiler switch and pragma wparam documentation
1346         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
1347         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
1348           and PRODH closing bug #1071770 (peephole optimizer)
1349
1350 2005-01-19 Raphael Neider <rneider AT web.de>
1351
1352         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
1353           cmdLine buffers (used when calling sdcpp...) are large enough
1354           (MAX_PATH=256 truncates arguments leading to system halts when
1355           used in MinGW...)
1356         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
1357         * (genUminus): rewritten to for efficiency
1358         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
1359           used uninitialized in some cases)
1360         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
1361           copy the third byte from the int -- now assumes 0x80 (data memory)
1362         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
1363           operands (genAddLit expects the iCode's operands to swapped as
1364           well), fixed leftover bytes (crashed for short left operands)
1365         * (pic16_genMinusDec): performance improvements, removed false
1366           PIC14 emitSKPNCs
1367         * (pic16_genMinus): fixed to cope with differently sized operands
1368         * src/pic16/glue.c (pic16_glue): added new banksel optimization
1369           for --obanksel > 1
1370         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
1371         * src/pic16/graph.[ch]: implementation of directed graphs, used by
1372           new banksel optimization
1373         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
1374           analysis for temporary registers (segfaults...)
1375         * src/pic16/peeph.def: added rule
1376
1377 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
1378
1379         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
1380         which converts a float number to its ASCII representation
1381         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
1382         functions to convert the fractional and integer part of a float to ASCII,
1383         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
1384         realloc.c): added _MALLOC_SPEC to explicit place variables in data
1385         ram
1386         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
1387         _STATMEM macros,
1388         * device/include/pic16/adc.h: added GPL info,
1389         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
1390         a pCodeOp as tested operand,
1391         * (genNearPointerGet): optimized bit testing, does not use
1392         intermediate register for bit value, test directly instead with
1393         BTFSS, BTFSC, works only for single bits,
1394         * (genpic16Code): dump the name of the iCode in the asm,
1395         * src/pic16/ralloc.c (decodeOp): removed static declaration and
1396         renamed to pic16_decodeOp,
1397         * (serialRegAssign): do not allocate a temporary register for iCode
1398         sequences that test a single bit for 1/0
1399
1400 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
1401
1402         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
1403         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
1404         access stack and frame pointers. They are initially assigned to
1405         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
1406         accessing SFRs. Updated all occurences of modification of stack or
1407         frame pointer in gen.c and pcode.c,
1408         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
1409         assigning of a literal value to pointers,
1410         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
1411         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
1412         selected
1413
1414 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
1415
1416         * doc/sdccman.lyx: update documentation about stack pragma, added
1417         some info for stack memory models
1418
1419 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1420
1421         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
1422
1423 2005-01-08 Raphael Neider <rneider AT web.de>
1424
1425         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
1426           udata sections to fix bug #1097823
1427
1428 2005-01-05 Raphael Neider <rneider AT web.de>
1429
1430         * src/pic16/gen.c (genGenericShift): added handling of differently
1431           sized left operand and result
1432
1433 2005-01-04 Raphael Neider <rneider AT web.de>
1434
1435         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
1436         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
1437           to hold the condition bit)
1438         * added new version of genCmp (old code available via #define)
1439         * added new version of genShiftLeft/genShiftRight in a generic
1440           way, now supports shifting by negative values
1441         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
1442           shiftCount (expected by genGenericShift)
1443         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
1444         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
1445           dump
1446         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
1447           is an invalid literal too...)
1448
1449 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
1450
1451         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
1452         from Raphael Neider,
1453         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
1454         for 8-bit literals. This fixes some literal operands which are sign
1455         extended to 16-bits ints when instruction needs only 8-bits.
1456
1457 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
1458
1459         * device/lib/logf.c: added mcs51 assembly version
1460         * device/lib/expf.c: added mcs51 assembly version
1461         * device/lib/_logexpf.c: new shared asm code for expf and logf
1462         * device/include/math.h: add defines for assembly math library
1463         * device/lib/Makefile.in: build new _logexpf.c
1464         * device/lib/libfloat.lib: use new _logexpf.c
1465
1466 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
1467
1468         * src/pic/device.c
1469         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
1470           device types which have less than 0x7f registers.
1471
1472 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
1473
1474         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
1475
1476 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
1477
1478         * device/lib/printf_fast.c: only build on supported arch.
1479         * device/lib/printf_tiny.c: only build on supported arch.
1480         * device/lib/printf_fast_f.c: only build if asm float lib
1481         * device/lib/_fsget1arg.c: only build if asm float lib
1482         * device/lib/_fsget2args.c: only build if asm float lib
1483         * device/lib/_fsnormalize.c: only build if asm float lib
1484         * device/lib/_fsreturnval.c: only build if asm float lib
1485         * device/lib/_fsrshift.c: only build if asm float lib
1486         * device/lib/_fsswapargs.c: only build if asm float lib
1487         * device/include/stdio.h: don't provide print_fast,
1488           print_fast_f, print_tiny prototypes if --xstack used
1489
1490 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
1491
1492         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
1493         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
1494           to the SOURCES
1495
1496 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
1497
1498         * device/lib/printf_fast_f.c: same as printf_fast, but
1499           with floating point enabled
1500         * device/lib/printf_fast.c: minor tweaks
1501         * device/include/stdio.h: add printf_fast_f
1502
1503 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
1504
1505         * src/SDCCmain.c: make --float-reent default for mcs51
1506         * device/lib/_fsadd.c: added mcs51 assembly version
1507         * device/lib/_fssub.c: added mcs51 assembly version
1508         * device/lib/_fsmul.c: added mcs51 assembly version
1509         * device/lib/_fsdiv.c: added mcs51 assembly version
1510         * device/lib/_fseq.c: added mcs51 assembly version
1511         * device/lib/_fsneq.c: added mcs51 assembly version
1512         * device/lib/_fsgt.c: added mcs51 assembly version
1513         * device/lib/_fslt.c: added mcs51 assembly version
1514         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
1515         * device/lib/Makefile.in: add _fscmp to build
1516         * device/lib/libfloat.lib: add _fscmp to build
1517
1518 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
1519
1520         * device/lib/_fs2slong.c: added mcs51 assembly version
1521         * device/lib/_fs2sint.c: added mcs51 assembly version
1522         * device/lib/_fs2schar.c: added mcs51 assembly version
1523         * device/lib/_fs2ulong.c: added mcs51 assembly version
1524         * device/lib/_fs2uint.c: added mcs51 assembly version
1525         * device/lib/_fs2uchar.c: added mcs51 assembly version
1526         * device/lib/_slong2fs.c: added mcs51 assembly version
1527         * device/lib/_sint2fs.c: added mcs51 assembly version
1528         * device/lib/_schar2fs.c: added mcs51 assembly version
1529         * device/lib/_ulong2fs.c: added mcs51 assembly version
1530         * device/lib/_uint2fs.c: added mcs51 assembly version
1531         * device/lib/_uchar2fs.c: added mcs51 assembly version
1532         * device/include/float.h: added #define to select asm vs c
1533
1534 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
1535
1536         * device/lib/printf_fast.c: improvements to float output
1537         * device/include/float.h: add defines for assembly float library
1538         * device/lib/_fsget1arg.c: receive 1 float arg
1539         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
1540         * device/lib/_fsnormalize.c: normalize a float
1541         * device/lib/_fsreturnval.c: return float, various helper routines
1542         * device/lib/_fsrshift.c: right shift a float's mantissa
1543         * device/lib/_fsswapargs.c: swap 2 floats
1544         * device/lib/Makefile.in: build these 6 new files for mcs51
1545         * device/lib/libfloat.lib: add these 6 files to the library
1546
1547 2004-12-26 Borut Razem <borut.razem AT siol.net>
1548
1549         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
1550           built by gcc 3.4.2
1551
1552 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
1553
1554         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
1555           and fully reentrant and register bank neutral.
1556         * device/lib/printf_fast.c: added float (not enabled by default),
1557           added compact/slower integer (also not enabled by default),
1558           improved size/speed of fast integer code, other minor changes
1559         * device/include/stdio.h, device/lib/Makefile.in,
1560           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
1561
1562 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
1563
1564         * src/pic16/pcode.c: declaring variables other than at the start of a
1565           block is not supported in C by VC6.
1566
1567 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
1568
1569         * applied a previous patch from Raphael Neider that wasn't included
1570         in the previous commits, which fixes infinite loops within jumptable
1571         improvements,
1572         * made some fixes that previous patches introduced
1573
1574 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
1575
1576         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
1577         that fixes an issue with AOP_PCODE asmop's offset,
1578         * (pic16_popCopyReg): update instance field too,
1579         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
1580         function of pic port,
1581         * (genCmp, genAnd, genAssign),
1582         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
1583
1584 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
1585
1586         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
1587         variables initial values to idata section,
1588         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
1589         variables in some functions. This utilizes parmBytes field of iCode
1590         structure to hold the offset of the variable in stack. (might be
1591         able to use the stack field too?)
1592         * applied patch from Raphael Neider # ### , # ###
1593         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
1594         variable initial values in idata section,
1595         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
1596         for static variables with initial value
1597         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
1598         applied fix in while loop from Raphael Neider.
1599
1600 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
1601
1602         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
1603         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
1604         * src/ds390/ralloc.c (serialRegAssign): spill bits
1605         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
1606         * support/Util/SDCCerr.c,
1607         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
1608         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
1609         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
1610
1611 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
1612
1613         * device/include/sdcc-lib.h: inserted LGPL, added includes
1614           asm/ds390/features.h and asm/mcs51/features.h
1615         * device/include/asm/default/features.h,
1616         * device/include/asm/gbz80/features.h,
1617         * device/include/asm/z80/features.h: added empty _AUTOMEM
1618           and _STATMEM
1619         * device/include/asm/ds390/features.h,
1620         * device/include/asm/mcs51/features.h: added files with defines for
1621           _AUTOMEM and _STATMEM indicating automatic and static storage class
1622         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
1623         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
1624         * src/SDCCicode.c (geniCodeCast),
1625         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
1626         * src/SDCCloop.c (loopInduction): removed unused variable lr
1627         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
1628           to convertToFcall to include char modulo (RFE 1065037), added check
1629           if left operand is unsigned and use abs of literal value
1630         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
1631           as it doesn't work after conversion from peephole.def to peephole.rul
1632         * src/mcs51/gen.c (toBoolean): added check for size,
1633           (genModOneByte): optimized code for signed char modulo a literal
1634           power of 2 (thanks to Hubert Sack),
1635           (genRRC): removed unnecessary "clr c",
1636           (genRLC): replaced "add a,acc" with cheaper "rlc a"
1637         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
1638           jump optimization,
1639           swapped rules 256.c and 256.d,
1640           extended 256.d by using new multiple checks (thanks Erik),
1641           added rules 256.e and 256.f,
1642           updated rule 261.a and 261.b to new generated code
1643         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
1644
1645 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1646
1647         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
1648           induction related bugs, including first part of bug #1074377
1649
1650 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
1651
1652         * applied patch from bug-report #1076292,
1653         * applied patches for genAnd and Goto-optimizations for Raphael
1654         Neider,
1655         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
1656         dump a less iCode information,
1657         * src/pic16/device.h (pic16_options_t): added field debgen,
1658         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
1659         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
1660         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
1661         puclic,
1662         * (various functions): added macros FENTRY and FENTRY2 to functions,
1663         to emit function prologue,
1664         * (various functions): fixed indentation,
1665         * (genNearPointerGet): fixed loading of FSR0,
1666         * (genPackBits): applied patch from Raphael Neider to fix updating
1667         of FSR0 and touching only the modified bits,
1668         * src/pic16/genarith.c (various functions): added macros FENTRY to
1669         emit function prologue in comments,
1670         * src/pic16/pcode.h: added functions debugf2, debugf3,
1671         * src/pic16/ralloc.c: partial fix for packForPush caused
1672         segmentation fault,
1673
1674 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1675
1676         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
1677           <stsp AT users.sourceforge.net> with reversed byte order
1678         * support/regression/tests/rotate.c: added (ds390 skips some tests)
1679
1680 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1681
1682         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
1683           bug #1074377
1684         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
1685         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
1686
1687 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
1688
1689         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
1690
1691 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1692
1693         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
1694           conditions,
1695           (setFromConditionArgs): friendly operand parser for peephole rules,
1696           (operandBaseName, operandsNotRelated): new peephole condition
1697           "operandsNotRelated" -- similar to "operandsNotSame", but takes
1698           architecture specific register naming into account, handles n-way
1699           comparisons, and supports quoted literals
1700         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
1701
1702 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1703
1704         * src/mcs51/peeph.def: fixed bug #1076940
1705
1706 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
1707
1708         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
1709
1710 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1711
1712         Adding support for replacing ljmps with sjmps in jumptables
1713         generated for switch statements. For now you need to set the
1714         environment variable SDCC_SJMP_JUMPTABLE to enable this.
1715         Now 4 algorithms for mcs51 jumptable generation are used:
1716         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
1717         addresses loaded pc-relative for up to 112 cases and stack-pushing
1718         target addresses loaded with offset from dptr for up to 256 cases.
1719
1720         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
1721         * src/mcs51/main.c: adapted constants for switch table generation
1722         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
1723
1724 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
1725
1726         * device/lib/printf_large.c (_print_format): fixed bug 1073386
1727         * support/regression/tests/bug1057979.c: added test for bug 1073386
1728
1729 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
1730
1731         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
1732         compilers
1733
1734 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
1735
1736         * src/pic16/device.h,
1737         * src/pic16/genarith.c,
1738         * src/pic16/glue.c,
1739         * src/pic16/main.c,
1740         * src/pic16/pcode.c: applied patches #1068154 and #1070213
1741
1742 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
1743
1744         Large cummulative patch for pic16 port.
1745         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
1746         to call when a stack overflow occurs,
1747         * (malloc.h): added CVS Id tag,
1748         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
1749         variable,
1750         * added libc directory. The current version of LibC contains string
1751         functions, ctype functions and macros and some functions of the
1752         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
1753         be extensively tested in the future. Standard disclaimer here.
1754         Library is not automatically build yet. But one can build it by
1755         invoking 'make' inside the libc directory.
1756         * added ADC library under libio. Preliminary version yet.
1757
1758         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
1759         * src/pic16/gen.c (aopForRemat): asmop size is filled by
1760         aopForRemat() now and not by pic16_aopOp(),
1761         * (pic16_popGetTempReg): removed warning messgae when allocating
1762         temporary registers, its a buggy feature and will be removed,
1763         * (pic16_popGet): set register instance field in AOP_CRY,
1764         * (pic16_outBitC): fixed for results in size greater than 1,
1765         * (genUminusFloat): fixed for pic16, ported code from mcs51,
1766         * (pic16_storeForReturn): optimized return of 0,
1767         * (genCmp): experimental code for new genCmp which uses PIC18's
1768         special compare&skip instructions. Initial tests fail some times
1769         with variables grater than 1 byte in size, so new code is disabled,
1770         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
1771         a single bit,
1772         * (genCast): began a fix to optimize the casting of a bit to another
1773         bit, now assigning a bitfield to another bitfield will fail, sorry,
1774         * src/pic16/main.c: disabled the use of lr-support feature,
1775         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
1776         * added some function prototypes, added function _debugf prototype,
1777         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
1778         bits with offset (case PO_GPR_BIT),
1779         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
1780         command line,
1781         * (isBankInstruction): modified to return 0 for no banking instruction,
1782         and 1 for banking instruction,
1783         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
1784         caused stop processing pCodes after a inline assembly block,
1785         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
1786         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
1787         registers when it shouldn't,
1788         * src/pic16/ralloc.c (allocReg): add preliminary support for
1789         supporting a limited set of temporary registers,
1790
1791 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1792
1793         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
1794           genDataPointerSet): ensure assignments always copy in MSB to LSB
1795           order,
1796           (loadRegFromAop): recognize CLRH optimization,
1797           (genFunction): optimize RECEIVE iCodes in reentrant functions
1798
1799 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1800
1801         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
1802           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
1803           selected.
1804         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
1805         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
1806           contiguous with data
1807
1808 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1809
1810         * device/lib/_gptrget.c (_gptrget),
1811         * device/lib/_gptrgetc.c (_gptrgetc),
1812         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
1813           instead of sjmp to ret
1814         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
1815           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
1816
1817 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
1818
1819         * .version: bumped version to 2.4.7
1820         * device/lib/_gptrget.c (_gptrget): is now _naked
1821         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
1822         * device/lib/_gptrput.c (_gptrput): is now _naked
1823         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
1824           (createFunction): fixed xstack
1825         * src/SDCCglue.c (emitMaps): set allocation required for bit area
1826         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
1827           or bit either,
1828           (geniCodeCritical): store original interrupt state in an iTemp bit
1829           var unless stack-auto
1830         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
1831         * src/SDCCmain.c (setIncludePath): added include/target to search path
1832         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
1833         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
1834           prototype,
1835           (processFuncArgs): put bit vars in bit area
1836         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
1837           unsaveRBank): fixed xstack,
1838           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
1839           (genFunction, genEndFunction): fixed xstack,
1840           (genAssign): optimization don't walk backwards through mem
1841         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
1842         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
1843         * support/regression/Makefile: also make library (for stack-auto) when
1844           making "all" and added "test-mcs51-xstack-auto"
1845         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
1846         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
1847         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
1848         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
1849         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
1850           make-library by MAKE_LIBRARY
1851         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
1852           regression tests for xstack
1853         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
1854         * support/regression/tests/critical.c: test for critical on mcs51
1855
1856 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1857
1858         * support/regression/ports/ucz80/spec.mk: use include and lib files from
1859           built version of sdcc instead of installed version
1860
1861 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
1862
1863         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
1864         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
1865           vprintf.c now
1866         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
1867         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
1868           WARNING: remove device/lib/build/z80/printf.o by hand when
1869           updating from previous build!
1870         * device/lib/z80/printf.c: updated comment
1871         * support/regression/tests/bug1057979.c: test all ports now
1872         * support/regression/tests/bug1065458.c: file added
1873
1874 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1875
1876         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
1877           *_start and *_end symbols for static functions
1878
1879 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
1880
1881         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
1882           and search crt0.o in all library paths,
1883           (setIncludePath): proper handling of --nostdinc,
1884           (setLibPath): proper handling of --nostdlib
1885         * support/regression/Makefile,
1886         * support/regression/ports/ds390/spec.mk,
1887         * support/regression/ports/gbz80/spec.mk,
1888         * support/regression/ports/hc08/spec.mk,
1889         * support/regression/ports/mcs51/spec.mk,
1890         * support/regression/ports/mcs51-large/spec.mk,
1891         * support/regression/ports/mcs51-stack-auto/spec.mk,
1892         * support/regression/ports/z80/spec.mk: use include and lib files from
1893           built version of sdcc instead of installed version
1894         * doc/sdccman.lyx: fixed typo in --nostdinc
1895
1896 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
1897
1898         * src/pic/pcode.c,
1899         * src/pic/device.c,
1900         * src/pic/ralloc.c,
1901         * src/pic/gen.c : added support to generate code for struct bit fields.
1902
1903 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
1904
1905         * as/xa51/xa_version.h,
1906         * device/include/errno.h,
1907         * device/include/regc515c.h,
1908         * device/lib/_itoa.c,
1909         * device/lib/_ltoa.c,
1910         * device/lib/ser_ir_cts_rts.c,
1911         * sim/ucsim/xa.src/glob.cc,
1912         * sim/ucsim/xa.src/inst_gen.cc,
1913         * sim/ucsim/xa.src/xa_bit.cc,
1914         * sim/ucsim/xa.src/xa_sfr.cc,
1915         * sim/ucsim/z80.src/inst_dd.cc,
1916         * sim/ucsim/z80.src/inst_fdcb.cc,
1917         * support/scripts/keil2sdcc.pl,
1918         * src/pic16/pic16.dsp,
1919         * src/pic16/pic16a.dsp: corrected cvs line endings
1920         * device/lib/printf_large.c: fixed bug 1057979
1921         * src/pic16/gen.c: fixed non-C standard code
1922         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
1923         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
1924         * support/regression/ports/mcs51/support.c: reload T1 asap
1925         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
1926           pdata use and clear idata startup behaviour
1927         * support/regression/tests/bug1057979.c: added
1928
1929 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
1930
1931         * device/examples/ds390/ow390/ad26.h,
1932         * device/examples/ds390/ow390/cnt1d.h,
1933         * device/examples/ds390/ow390/crcutil.c,
1934         * device/examples/ds390/ow390/ownet.h,
1935         * device/examples/ds390/ow390/owsesu.c,
1936         * device/examples/ds390/ow390/swt12.h,
1937         * device/examples/ds390/ow390/swtoper.c,
1938         * device/examples/ds390/ow390/temp10.h,
1939         * device/examples/ds390/ow390/thermodl.c,
1940         * device/examples/ds390/tinitalk/tinitalk.dsp,
1941         * device/examples/ds390/tinitalk/tinitalk.dsw,
1942         * device/examples/mcs51/clock/hw.h,
1943         * device/examples/mcs51/simple2/go.bat,
1944         * device/examples/serialcomm/windows/serial.h,
1945         * device/examples/xa51/dummy.c,
1946         * device/examples/xa51/hello.c,
1947         * device/include/80c51xa.h,
1948         * device/include/at89x051.h: corrected cvs line endings
1949
1950 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
1951
1952         * src/pic16/main.c (options): added command line --gstack, to trace
1953         stack over/under flows,
1954         * added pragma 'wparam' to allow passing first byte of function
1955         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
1956         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
1957         call to __gstack_test function and sets up the symbol as extern,
1958         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
1959         * popaop): added call to pic16_testStackOverflow,
1960         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
1961         wparamList list,
1962         * (genCall, genPcall): now all parameters are passed via stack
1963         except in functions that are pass to wparam pragma in which WREG is
1964         used too,
1965         * (genPcall): REENTRANT flag is checked to see if variable prototype
1966         contains reentrant keyword, don't call a non-reentrant function, via
1967         a reentrant function pointer or vice versa, functions are never
1968         passed via WREG,
1969         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
1970         D.Winkler,
1971         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
1972         SIGSEGV when accessing a NULL register stucture,
1973         * (pic16_printGPointerType): modified to handle UPPER modifier for
1974         function initializers, changed prototype of function to simpler one,
1975         * (pic16_printIvalFuncPtr): check to see if function is already
1976         added in externs list,
1977         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
1978         optimized a move from W to SFR with a move to the same register
1979         later after a CALL,
1980         * device/lib/pic16/debug: NEW directory, contains debug features
1981         which are enabled when linking with libdebug.lib, currently command
1982         line option --gstack enables stack pointer tracing for over/under
1983         flow, corresponding sources are in debug/gstack
1984
1985 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
1986
1987         * doc/sdccman.lyx: updated SDCC version,
1988         * (PIC16 port): update list of command line options,
1989         * src/pic16/device.h (structure pic16_options_t): added field gstack
1990         to enable stack overflow tracing on push/pops,
1991         * src/pic16/device.c (statistics structure): added statistics
1992         structure,
1993         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
1994         pic16_dump_int_registers): increase statistics counters for each
1995         * variable which is encountered
1996         * (pic16_dump_usection): emit each .udata variable to its own udata
1997         section,
1998         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
1999         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
2000         parameters via stack, otherwise use old scheme,
2001         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
2002         assembler output file,
2003         * src/pic16/main.c: added command line options --gstack to enable
2004         push/pop tracing for stack overflow,
2005         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
2006         instructions): added size of each instruction,
2007         * (pic16_countInstruction): estimate size of instructions in
2008         the_pFile list, inline assembly blocks are not counted,
2009         * (pic16_FixRegisterBanking): trace previous register usage, when
2010         banksel optimizations is greater than 0, don't emit a redudant
2011         banksel directive,
2012
2013 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
2014
2015         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
2016         * src/pic16/ralloc.c : applied same fix for pic16.
2017         * src/pic/gen.c : tidied it up a little.
2018
2019 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2020
2021         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
2022         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
2023
2024 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2025
2026         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
2027
2028 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2029
2030         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
2031         non-reentrant function __modsint in the interrupt function (thus
2032         corrupting math operations during serial I/O)
2033         * device/lib/ser_ir.c: as above, changed buffersize
2034         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
2035         256.c,d for zeroing
2036         * doc/Makefile: added option -t for rsync
2037
2038 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2039
2040         * src/SDCCast.h (struct ast),
2041         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
2042
2043 2004-10-20 Borut Razem <borut.razem AT siol.net>
2044
2045         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
2046         package
2047
2048 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
2049
2050         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
2051         makefile targets,
2052         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
2053         support functions to replace long sequences of MOVFF's from access
2054         bank registers to stack and vice versa,
2055         * src/pic16/device.h: added new field opt_flags, where optimization
2056         flags can be set to enable certain features,
2057         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
2058         * pBlock, (genFunction, genEndFunction): surroung loop for
2059         saving/loading used registers in stack with PC_INFO pCodes,
2060         INF_LREGS. Code in between can then be optimized by pCode optimizer
2061         to support function calls,
2062         * (genDataPointerSet): fixed bug which loaded float fields in
2063         structures with corrupt data,
2064         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
2065         in a standard way debug info on stderr. Feature used for developing
2066         and debugging only,
2067         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
2068         obsolete chunks of code,
2069         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
2070         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
2071         * pic16/src/pcode.c (pic16_newpCodeInfo,
2072         * (pic16_newpCodeOpLocalRegs),
2073         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
2074         feature,
2075         * (pic16_pCodeConstString): printing of the initial value of a
2076         symbol as a comment is inhibited since parsing was already done by
2077         copyStr and output is corrupt,
2078         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
2079
2080 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2081
2082         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
2083
2084 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
2085
2086         * as/mcs51/lkarea.c: removed old K&R style,
2087           (lnksect): changed check on boundary error,
2088           (lnksect2): changed check on boundary error,
2089           (lnksect2): extend XSTK to end of page if size = 1
2090         * as/mcs51/lkmain.c: removed old K&R style,
2091           (Areas51): create l_IRAM symbol
2092         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
2093         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
2094           model-mcs51-stack-auto, added model-mcs51-xstack-auto
2095         * device/lib/_mullong.c: added version to be compiled with xstack
2096         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
2097         * device/lib/mcs51/crtxclear.asm: clear pdata as well
2098         * device/lib/mcs51/crtxstack.asm: fixed comment
2099         * src/SDCCglue.c: maxInterrupts defaults to 0,
2100           (emitMaps): added pdata,
2101           (createInterruptVect): (re)moved default,
2102           (glue): added pdata,
2103           (glue): moved __start__xstack to XSTK with default size 1
2104         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
2105           and options.float_rent when options.stackAuto is set,
2106           (linkEdit): only write XDATA_NAME if provided on command line
2107         * src/SDCCmem.h,
2108         * src/SDCCmem.c: added pdata
2109         * src/port.h: added pdata_name to PORT
2110         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
2111           (saveRegisters, unsaveRegisters): removed usage of B,
2112           (genMinus): fixed accumulator clash,
2113           (genJumpTab): added comment, this needs another look
2114         * src/mcs51/gen.c: added check for "B in use" paranoia,
2115           added pushB() and popB()
2116         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
2117           chance
2118         * src/avr/main.c,
2119         * src/ds390/main.c,
2120         * src/hc08/main.c,
2121         * src/mcs51/main.c,
2122         * src/pic/main.c,
2123         * src/pic16/main.c,
2124         * src/xa51/main.c,
2125         * src/z80/main.c: (reset_regparms) made void parameter explicit and
2126           added PSEG (PAG,XDATA) or NULL to port specifier
2127         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
2128         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
2129           (_mcs51_genInitStartup): removed __start__xstack equ,
2130           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
2131         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
2132         * src/z80/gen.c (_rleAppend): fixed warnings
2133         * support/regression/tests/zeropad.c: added pdata test
2134         * .version: bumped to 2.4.6
2135
2136 2004-10-17 Borut Razem <borut.razem AT siol.net>
2137
2138         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
2139         as a part of nightly build
2140
2141 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
2142
2143         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
2144         WREG holds the first byte function parameters,
2145         * (aopForSym): take special case for symbols which are in FARSPACE
2146         but in CODESPACE too,
2147         * (assignResultValue): modified to take into account _G.useWreg,
2148         * (genCall): don't use wreg for parameter passing when function is
2149         declared as reentrant, too, added optimization INCF to stack
2150         pointer when stack parameter count is 1,
2151         * (genFunction, genEndFunction): refurnished and fixed to not using
2152         wreg for passing parameters when function has varargs or is
2153         reentrant, fixed bug with symbol name compare for generating
2154         functions in absolute address,
2155         * (pic16_storeForReturn): refurnished,
2156         * (genCmp): began writing a new version of the function, not ready
2157         yet, therefore it is disabled,
2158         * (genAssign): do not read code memory when assigning a function to
2159         a pointer function,
2160         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
2161         array of characters, not pointer,
2162         * (pic16initialComments): in debug mode emit an .ident directive for
2163         the assembler,
2164         * (_process_pragma): emit a new warning type (internal to pic16)
2165         when setting stack to default length, emit a similar warning when
2166         placing a function at absolute address and address is not word aligned
2167         * (_pic16_parseOptions): added 'return TRUE' statement,
2168         * (_pic16_linkEdit): if compiling a source, then add the source's
2169         file object, first in the list of objects to link,
2170
2171 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
2172
2173         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
2174         * src/pic/main.c : removed VC warning.
2175         * src/pic/gen.c : changed comment.
2176
2177 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
2178
2179         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
2180         reference to a deprecated symbol _GPTRREG was causing failure to
2181         link. Thanks G. M. Gallant for the info.
2182
2183 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
2184
2185         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
2186         comments for Bugs item #954788.
2187
2188 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
2189
2190         * src/pic16/device.c (pic16_dump_gsection,
2191         * pic16_groupRegistersInSection): handle symbols declared to be in
2192         access bank differently,
2193         * src/pic16/gen.c (struct _G): added field resDirect,
2194         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
2195         send values read from stack directly to result and don't allocate
2196         temporary values,
2197         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
2198         same registers,
2199         * (pic16_sameRegsOfs): NEW,
2200         * (freeAsmop): if _G.resDirect is set then do not mark registers as
2201         free because they were not allocated from temporary pool,
2202         * pic16_popRegFromString): workaround to fix a problem with
2203         allocating variables twice or never,
2204         * (genGenPointerGet): using PRODL instead of FSR0H,
2205         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
2206         instead of FSR0H,
2207         * (genAssign): take advantage of the _G.resDirect flag,
2208         * (genCast): around line 11844, use mov2f instead of directly
2209         MOVFF'ing between operands to account for literal values,
2210         * src/pic16/genutils.c: some new debug functions for gpsim have been
2211         added,
2212         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
2213         float with integer part only,
2214         * src/pic16/main.c (_process_pragma): handle pragma udata access to
2215         place variables in access bank
2216         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
2217         updated sources to reflect recent changes in gen.c
2218
2219 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
2220
2221         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
2222         sources that searched for headers in installation path, now the
2223         device/include/pic16 is used,
2224         * src/pic16/glue.c (pic16glue),
2225         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
2226         .line directives if not in debug mode, this suppresses assembler's
2227         warnings for ignored directives
2228
2229 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
2230
2231         * src/port.h: made reset_regparms prototype void parameter explicit.
2232         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
2233         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
2234         * doc/sdccman.lyx: documented warning disabling and how to use
2235           printf_large to make it print floats.
2236         * device/include/stdbool.h: NEW
2237         * device/lib/_atof.c,
2238         * device/lib/_divuint.c,
2239         * device/lib/_divulong.c,
2240         * device/lib/expf.c,
2241         * device/lib/printf_large.c,
2242         * device/lib/sincosf.c,
2243         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
2244         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
2245           a completely reentrant lib.
2246
2247 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
2248
2249         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
2250         * device/include/pic16/stdio.h: fixed bug with colon
2251
2252 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
2253
2254         * device/include/pic16/stdio.h,
2255         * device/include/pic16/stdlib.h,
2256         * device/include/pic16/math.h: NEW
2257         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
2258         declared as _naked to reduce overhead
2259         * device/lib/Makefile.in (target port-specific-objects-pic16):
2260         changed * to *.* so to ignore the CVS directory,
2261         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
2262         stacked variables back in stack,
2263         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
2264         corruption
2265
2266 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
2267
2268         * .version: bumped version number to 2.4.5
2269         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
2270         * support/Util/SDCCerr.c (messages structure): added entry for
2271         W_POSSBUG2
2272
2273         Large cumulative patch for pic16 port and libraries.
2274         * device/include/pic16/sdcc-lib.h,
2275         * device/include/pic16/stdarg.h,
2276         * device/include/asm/pic16/features.h,
2277         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
2278         * device/include/pic16/float.h: changes reentrant keyword with
2279         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
2280         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
2281         updated target build-libraries to include objects from gptr,
2282         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
2283         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
2284         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
2285         all function headings,
2286         * src/SDCCmain.c: added global parameter userIncDirsSet,
2287         * (parseCmdLine): when option -I is encountered add directory to
2288         userIncDirsSet too,
2289         * src/version.awk: added space between control and long,
2290         * src/pic16/NOTES: added some notes for the port,
2291         * src/pic16/gen.c: added prototype for mov2fp function,
2292         * (fReturnpic16[]): properly named return value registers,
2293         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
2294         * (aopForSym): added code to handle symbols with onStack flag set,
2295         symbols onStack are allocated PTRSIZE bytes,
2296         * (aopFreeAsmop): handles special case where asmops are stack objects,
2297         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
2298         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
2299         added argument lock to trace flaws in allocating temporary registers
2300         when developing port,
2301         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
2302         * (pic16_popRegFromString): reenabled allocating a direct register
2303         from string,
2304         * (assignResultValue): various beautifications,
2305         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
2306         referenced function argument,
2307         * (genIpush): reenabled to allow stacked arguments, handles only
2308         ic->parmPush iCodes,
2309         * (genCall, genPcall): major changes to allow for variable argument
2310         functions, fixed a bug with falsely restoring stack pointer after
2311         returning from call,
2312         * (genFunction): pending code for critical function,
2313         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
2314         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
2315         * (genNearPointerGet): fixed bug with indirect reading, was always
2316         reading from INDF0
2317         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
2318         pointers,
2319         * (genAddrOf): rewrote code to take address of a stacked function parameter
2320         * (genCast): fixed casting to generic pointer type,
2321         * src/pic16/gen.h: added AOP_STA,
2322         * (struct asmop): added field stk,
2323         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
2324         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
2325         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
2326         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
2327         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
2328         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
2329         generic pointers,
2330         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
2331         and library paths,
2332         * (pic16_port structure): generic pointer size is set to 3,
2333         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
2334         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
2335         compiler warning,
2336         * src/pic16/ralloc.c (allocReg): prevent allocating register when
2337         operand is an iTemp,
2338
2339 2004-09-24 Martin Helmling <mh AT octo-soft.de>
2340
2341         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
2342         * debugger/mcs51/simi.c: addapt new syntax of s51
2343
2344 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
2345
2346         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
2347         * src/pic16/pcode.c: commented out some calls to free() in order to
2348         fix bug #989576,
2349
2350 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2351
2352         * src/SDCCicode.h,
2353         * src/SDCCicode.c (isiCodeInFunctionCall),
2354         * src/avr/ralloc.c (selectSpil),
2355         * src/pic/ralloc.c (selectSpil),
2356         * src/pic16/ralloc.c (selectSpil),
2357         * src/ds390/ralloc.c (selectSpil),
2358         * src/hc08/ralloc.c (selectSpil),
2359         * src/xa51/ralloc.c (selectSpil),
2360         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
2361         stack in the middle of a function call sequence (fixes bug #1020268)
2362         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
2363         costs associated with the minimum switch case.
2364
2365 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2366
2367         * src/SDCC.lex: fixed bug #1030549
2368
2369 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2370
2371         * src/SDCCcse.h (struct cseDef),
2372         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
2373         over a function call if the CSE is derived from a symbol whose
2374         address has been taken (fixes bug #1029883)
2375         * support/regression/tests/bug-1029883: a new regression test for
2376         this bug
2377
2378 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2379
2380         * src/hc08/gen.c (emitinline): fixed bug #1029778
2381         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
2382         to a cast object is no longer a syntax error ("fixes" bug #1030006,
2383         and starts toward RFE #905167)
2384
2385 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
2386
2387         * src/pic16/gen.c (mov2f): New function to move an operand to
2388         another without considering if it is a literal or a register,
2389         * (pic16_sameRegs): don't check if they are both AOP_REG,
2390         * (AccRsh): removed andmask=0 lines,
2391         * (genLeftShift): duplicated to be improved in future versions,
2392         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
2393         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
2394         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
2395         * (pic16initMnemonics): added initialization for POC_INFSNZW,
2396         * (insertBankSwitch): fixed inserting banksel directives algorithm
2397         for instructions that follow a skip instruction, this fixes a report
2398         for broken subtraction code generation,
2399         * src/pic16/ralloc.c (deassignLRs): do not free register if current
2400         iCode is a left op, just in case result and right share the same
2401         registers
2402
2403 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2404
2405         * src/hc08/main.c,
2406         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
2407         preservation of HX
2408         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
2409         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
2410         on 2004-09-12; it was buggy
2411
2412 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
2413
2414         * src/SDCCsymt.h: removed RESULT_CHECK
2415         * src/SDCCast.c,
2416         * src/SDCCglue.c,
2417         * src/SDCCval.c,
2418         * src/pic/glue.c,
2419         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
2420
2421 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
2422
2423         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
2424         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
2425         configuration values no more rejected by compiler, they are assigned
2426         to configuration registers with a warning message instead,
2427         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
2428         the for-loop so last conf register is emitted too,
2429         * (_pic16_initPaths): link library libsdcc.lib by default,
2430         * (_hasNativeMulFor): modified test for multiplication according to
2431         Raphael Neider's remarks. Integer multiplication is also done with
2432         support functions,
2433         * device/include/pic16/pic18fregs.h: corrected type error in while
2434         testing and including 18f6720 header file
2435
2436 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
2437
2438         * src/pic16/device.h (pic16_options): removed field use_crt,
2439         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
2440         until an optimization to handle single bits is added,
2441         * (pic16_loadFSR0): moved before genUnpackBits,
2442         * (genAnd): some white lines removed,
2443         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
2444         leave_reset flags in pic16_options when using crt modules,
2445
2446 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
2447
2448         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
2449           for bugs 898889 & 979599. Also used some safer print instructions.
2450
2451 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
2452
2453         * src/pic16/device.h (pic16_options_t): added field use_crt,
2454         crt_name, no_crt,
2455         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
2456         catch a probable future bug,
2457         * src/pic16/gen.c: aopIdx function commented out,
2458         * (genAssign): commented out old code which used aopIdx,
2459         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
2460         code, added if conditionals to take into account the --use-crt
2461         command line options,
2462         * src/pic16/main.c (pic16_optionsTable): added new command line
2463         options, --use-crt= and --no-crt,
2464         * (_pic16_linkEdit): now the proper crt object is added in the
2465         linker command line except than when --no-crt is specified,
2466         * src/pic16/pcode.c,
2467         * src/pic16/pcode.h: added some structures and functions for a new
2468         optimization scheme to compansate for instruction overhead between
2469         same iCodes, this scheme is currently under development and is not
2470         working in any way,
2471         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
2472         to && operator,
2473         * device/lib/pic16/startup/crt0i.c,
2474         * device/lib/pic16/startup/crt0iz.c: added global char variable
2475         __uflags to force the generation of an idata section
2476
2477 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
2478
2479         * doc/Makefile,
2480         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
2481         * doc/sdccman.lyx: updated sdcc version to 2.4.4
2482
2483 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2484
2485         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
2486         Frieder) and clarified the default code optimization mode
2487
2488 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2489
2490         * src/SDCC.lex (doPragma, process_pragma),
2491         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
2492         "opt_code_size", and "opt_code_balanced"
2493         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
2494         regrouped options by category, added support for category headers
2495         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
2496         and "--opt-code-size"
2497         * doc/sdccman.lyx: documented these new options and pragmas
2498         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
2499         preference into account
2500
2501 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2502
2503         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
2504           geniCodePreDec): Fixed bug 904237 by generating a warning
2505         * src/SDCCerr.h,
2506         * src/SDCCerr.c: added warning W_SIZEOF_VOID
2507
2508 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
2509
2510         * src/pic/device.c : When no max ram set validate full memory range.
2511         * src/pic/pcode.c,
2512         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
2513
2514 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2515
2516         * device/lib/_gptrget.c,
2517         * device/lib/_gptrput.c: updated comment
2518         * device/lib/calloc.c,
2519         * device/lib/free.c,
2520         * device/lib/malloc.c,
2521         * device/lib/realloc.c: added LGPL, made them reentrant-safe
2522         * src/SDCCcse.c (cseBBlock),
2523         * src/SDCCicode.c (printOperand, geniCodeArray),
2524         * src/SDCCicode.h (struct operand): fixed bug 868103
2525         * support/regression/tests/bug-868103.c: added
2526         * src/SDCCast.c (searchLitOp),
2527         * src/SDCCcse.h (struct cseDef),
2528         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
2529         * src/SDCCicode.h (struct operand),
2530         * src/SDCCsymt.h (struct sym_link),
2531         * src/avr/gen.c (hasInc),
2532         * src/ds390/gen.c (hasInc),
2533         * src/hc08/gen.c (genPlusIncr, hasInc),
2534         * src/mcs51/gen.c (hasInc),
2535         * src/pic16/glue.c (pic16_printIvalChar),
2536         * src/pic16/ralloc.c (regWithIdx),
2537         * src/xa51/gen.c (hasInc) : removed warnings
2538         * src/SDCCast.c (createBlock): added comment ???
2539         * src/hc08/ralloc.c: updated comments
2540
2541 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2542
2543         * doc/sdccman.lyx: updated section on switch statements, added
2544         section about semaphore locking
2545         * doc/Makefile: added option -info for latex2html
2546         * device/lib/_gptrget.c,
2547         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
2548
2549 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
2550
2551         * src/pic/device.h,
2552         * src/pic/device.c,
2553         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
2554          maxram is less than 0x100.
2555
2556 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
2557
2558         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
2559
2560 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2561
2562         * src/port.h,
2563         * src/mcs51/main.c,
2564         * src/ds390/main.c,
2565         * src/z80/main.c,
2566         * src/hc08/main.c,
2567         * src/pic/main.c,
2568         * src/pic16/main.c,
2569         * src/avr/main.c,
2570         * src/xa51/main.c
2571         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
2572         a jump table is the best form for a switch statement, including
2573         automatic insertion of missing cases to make the case range
2574         continuous. Developed in collaboration with Frieder Ferlemann.
2575
2576 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2577
2578         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
2579         accumulator result if it needs sign extension
2580
2581 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2582
2583         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
2584
2585 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2586
2587         * device/lib/gbz80/printf.c,
2588         * device/lib/z80/printf.c: removed define for NULL
2589
2590 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2591
2592         * as/xa51/xa_link.c,
2593         * device/examples/ds390/ow390/ad26.c,
2594         * device/examples/ds390/ow390/cnt1d.c,
2595         * device/examples/ds390/ow390/counter.c,
2596         * device/examples/ds390/ow390/ds2480.h,
2597         * device/examples/ds390/ow390/ds2480ut.c,
2598         * device/examples/ds390/ow390/findtype.c,
2599         * device/examples/ds390/ow390/gethumd.c,
2600         * device/examples/ds390/ow390/owllu.c,
2601         * device/examples/ds390/ow390/ownetu.c,
2602         * device/examples/ds390/ow390/swt12.c,
2603         * device/examples/ds390/ow390/swtloop.c,
2604         * device/examples/ds390/ow390/temp.c,
2605         * device/examples/ds390/ow390/temp10.c,
2606         * device/examples/ds390/ow390/thermo21.c,
2607         * device/examples/ds390/ow390/tinilnk.c,
2608         * device/examples/ds390/ow390/tstfind.c,
2609         * device/examples/serialcomm/windows/serial.cpp,
2610         * device/examples/serialcomm/windows/test_serialcomm.cpp,
2611         * device/include/reg51.h: fixed line endings for cvs
2612
2613 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2614
2615         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
2616         packRegsForAccUse, packRegisters): new accumulator register
2617         packing algorithm
2618         * support/regression/ports/hc08/support.c (_putchar): suppress
2619         warning of unused variable
2620         * src/SDCCicode.c: added SWAP entry to codeTable
2621
2622 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
2623
2624         * device/lib/sprintf.c: forgot to add this file before previous commit
2625
2626 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
2627
2628         * src/pic16/gen.c (genPackBits): added operand right in function
2629         parameters, load result directly if p_type is POINTER (that is
2630         called by genNearPointerSet)
2631         * (genUnPackBits): added operand left in function parameters,
2632         * (genNearPointerGet, genNearPointerSet): prevent the loading of
2633         FSR0 if accessing bitfields,
2634
2635 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
2636
2637         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
2638           _print_format; updated printf, sprintf, vsprintf
2639         * device/include/asm/default/features.h: corrected comment/define
2640         * device/lib/Makefile.in: added sprintf.c
2641         * device/lib/libsdcc.lib: added sprintf module
2642         * device/lib/printf_large.c,
2643         * device/lib/vprintf.c,
2644         * device/lib/sprintf.c: totally refactored printf_large and vprintf
2645           into these 3 files
2646         * support/regression/Makefile: changed ALL_PORTS into a usefull default
2647         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
2648         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
2649           hc08 test
2650         * support/regression/tests/zeropad.c: define idata as data for hc08
2651
2652 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2653
2654         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
2655         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
2656         labels are referenced at least once (even if a reference is not found)
2657         * src/hc08/gen.c (emitcode): set isComment flag for comments
2658         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
2659         loads), rules 6a..6b (optimize jumps to return)
2660
2661 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2662
2663         * device/lib/acosf.c (acosf),
2664         * device/lib/asinf.c (asinf),
2665         * device/lib/atanf.c (atanf),
2666         * device/lib/ceilf.c (ceilf),
2667         * device/lib/cosf.c (cosf),
2668         * device/lib/coshf.c (coshf),
2669         * device/lib/cotf.c (cotf),
2670         * device/lib/fabsf.c (fabsf),
2671         * device/lib/floorf.c (floorf),
2672         * device/lib/log10f.c (log10f),
2673         * device/lib/logf.c (logf),
2674         * device/lib/sinf.c (sinf),
2675         * device/lib/sinhf.c (sinhf),
2676         * device/lib/sqrtf.c (sqrtf),
2677         * device/lib/tanf.c (tanf),
2678         * device/lib/tanhf.c (tanhf),
2679         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
2680         replaced all instances of "reentrant" in the library functions
2681         defined in math.h with this macro.
2682         * support/regression/tests/float_trans.c: reenabled test for hc08
2683
2684 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
2685
2686         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
2687         erroneously deleted
2688
2689 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2690
2691         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
2692         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
2693         multi-byte volatile operands are used
2694         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
2695         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
2696         initialization to area GSINIT0 so that it would always precede
2697         any static initializers in GSINIT
2698         * support/regression/tests/zeropad.c: fixed idata define for hc08
2699         * support/regression/tests/bug-927659.c,
2700         * support/regression/tests/float_trans.c: disabled tests for hc08
2701         pending missing library routines
2702         * .version: increased version number to 2.4.4 - hc08 port now passes
2703         regression tests
2704
2705
2706 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
2707
2708         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
2709         * Makefile.common.in,
2710         * as/Makefile,
2711         * as/hc08/Makefile.in,
2712         * as/mcs51/Makefile.in,
2713         * as/z80/Makefile.in,
2714         * debugger/mcs51/Makefile.in,
2715         * device/include/Makefile.in,
2716         * device/lib/Makefile.in,
2717         * doc/Makefile,
2718         * link/Makefile,
2719         * link/z80/Makefile.in,
2720         * packihx/Makefile.in,
2721         * sim/ucsim/main_in.mk,
2722         * sim/ucsim/avr.src/Makefile.in,
2723         * sim/ucsim/doc/Makefile.in,
2724         * sim/ucsim/gui.src/serio.src/Makefile.in,
2725         * sim/ucsim/hc08.src/Makefile.in,
2726         * sim/ucsim/s51.src/Makefile.in,
2727         * sim/ucsim/xa.src/Makefile.in,
2728         * sim/ucsim/z80.src/Makefile.in,
2729         * src/Makefile.in,
2730         * support/cpp2/Makefile.in,
2731         * support/librarian/Makefile,
2732         * support/makebin/Makefile: added DESTDIR to the install path proposed
2733         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
2734         * doc/sdccman.lyx: added DESTDIR documentation
2735
2736 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
2737
2738         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
2739         instruction for interrupt handlers, use fast returns when returning
2740         from high priority interrupts
2741
2742 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2743
2744         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
2745         code generation
2746         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
2747         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
2748         bugs, ported much of Bernhard's code from mcs51
2749         * src/mcs51/gen.c (genSend),
2750         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
2751         than one when calling a reentrant function
2752         * device/lib/_mullong.c: defined an alternate struct layout for big
2753         endian ports (hc08)
2754
2755 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2756
2757         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
2758         test
2759
2760 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2761
2762         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
2763         are sane and complete before asking the port its prefered parameter
2764         passing method (fixes bug #1017633)
2765         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
2766         and _ret3
2767
2768 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2769
2770         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
2771         problem in bitfields >= 8 bits.
2772
2773 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
2774
2775         * src/SDCCsymt.c: undid changes that were not meant to be committed
2776
2777 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
2778
2779         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
2780
2781 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
2782
2783         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
2784           copied and wrong bit got inverted
2785
2786 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2787
2788         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
2789         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
2790         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
2791         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
2792         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
2793         assignments to bitfields at known addresses
2794         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
2795         reads from bitfields at known addresses
2796         * src/hc08/ralloc.c (packRegisters),
2797         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
2798         genhc08Code): optimize pointer get values used as conditionals
2799         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
2800         and branch
2801
2802 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2803
2804         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
2805         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
2806         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
2807         as conditionals
2808
2809 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2810
2811         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
2812
2813 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2814
2815         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
2816         related problems
2817
2818 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
2819
2820         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
2821
2822 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2823
2824         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
2825         mcs51 port
2826
2827 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
2828
2829         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
2830
2831 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2832
2833         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
2834         cases use more compact code.
2835
2836 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
2837
2838         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
2839
2840 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2841
2842         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
2843
2844 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2845
2846         * src/SDCCsymt.h,
2847         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
2848         parameter of changePointer() from symbol* to sym_link*
2849         * src/SDCCast.c (decorateType): call changePointer() for CAST op
2850         * src/SDCCsymt.c (compareType): void* type is castable to other
2851         pointers, but not necesarily an exact match.
2852         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
2853         is no longer blindly treated as an exact match.
2854         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
2855
2856 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
2857
2858         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
2859
2860 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
2861
2862         * src/pic/gen.c,
2863         * src/pic/pcode.c,
2864         * src/pic/ralloc.h,
2865         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
2866
2867 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
2868
2869         * src/pic/device.c,
2870         * src/pic/device.h,
2871         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
2872
2873 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2874
2875         * src/mcs51/gen.c (emitcode): fixed bug #992819
2876
2877 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
2878
2879         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
2880           there's no need to make it worse
2881
2882 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2883
2884         * src/mcs51/ralloc.c (deassignLR),
2885         * src/ds390/ralloc.c (deassignLR),
2886         * src/hc08/ralloc.c (deassignLR),
2887         * src/z80/ralloc.c (deassignLR),
2888         * src/pic/ralloc.c (deassignLR),
2889         * src/pic16/ralloc.c (deassignLR),
2890         * src/avr/ralloc.c (deassignLR),
2891         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
2892         rlivePoint): fixed another part of bug #971834
2893
2894 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2895
2896         * src/z80/main.c: enabled "critical" keyword
2897         * src/z80/mappings.i,
2898         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
2899         functions (fixes bug #979646)
2900         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
2901
2902 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2903
2904         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
2905           such as c:\mydir.
2906
2907 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
2908
2909         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
2910           doesn't disable too much optimizations
2911
2912 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
2913
2914         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
2915
2916 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
2917
2918         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
2919
2920 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
2921
2922         * src/pic/gen.c tidied up tabs
2923         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
2924         * src/pic/main.c tidied up tabs
2925         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
2926         * src/pic/pcoderegs.c tidied up tabs
2927         * src/pic/ralloc.c tidied up tabs
2928
2929 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
2930
2931         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
2932         to S_FIXED for pic16 port and when symbol is not in level 0,
2933         allocate for S_REGISTER storage class and pic16 port, too,
2934         * src/pic16/device.h: prototype for checkSym,
2935         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
2936         * (pic16_assignConfigWordValue): test the value and the mask to
2937         validate that the value is suitable for the configuration word,
2938         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
2939         collect extern declared symbols, don't emit symbol twice, check
2940         first if symbol is in publics set first,
2941         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
2942         * added command line '--fstack' which enables an experimental
2943         feature for stack access, too buggy to be used yet...
2944         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
2945         * (pic16_allocDirReg): when register has storage class S_REGISTER
2946         allocate in pic16_dynAccessRegs,
2947         * device/include/pic16/pic18f????.h: modified configuration word
2948         naming convention, words started as CONFIG0H but should be CONFIG1H
2949
2950 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
2951
2952         * device/include/mcs51reg.h: fixed bug 970993
2953
2954 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
2955
2956         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
2957         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
2958         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
2959         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
2960         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
2961         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
2962           error/warning numbers,
2963           added function setWarningDisabled()
2964         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
2965         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
2966           _memcmp.c _memmove.c calloc.c realloc.c free.c
2967         * support/regression/tests/malloc.c: added tests for new functionality
2968         * support/regression/tests/zeropad.c: added tests for truncated initializers
2969           and initialized char arrays starting with '\x0'
2970         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
2971
2972 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
2973
2974         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
2975
2976 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2977
2978         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
2979         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
2980         peephole 177.e. Thanks to anonymous
2981
2982 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
2983
2984         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
2985         function isn't used in the source but referenced as a
2986         variable initializer then declare it as extern in .asm file
2987
2988 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
2989
2990         * .version: increased version number to 2.4.3
2991
2992         Adding version extension according to ChangeLog CVS revision
2993         * src/Makefile.in (target all): added dependency 'version.h'
2994         * (rule version.h): added rule to create version.h from ChangeLog,
2995         * (rule dep): added dependency version.h,
2996         * src/version.awk: AWK script to create version.h
2997         * src/SDCCdwarf2.c (dwWriteModule),
2998         * src/SDCCglue.c (initialComments),
2999         * src/SDCCmain.c (printVersionInfo): modified to write after
3000         version string the version extension number,
3001         * src/SDCCutil.c: included "version.h"
3002         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
3003         number,
3004         * src/SDCCutil.h: added prototype for getBuildNumber
3005
3006         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
3007         includeDirsSet, too,
3008         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
3009         const char [] is found in function prototype...
3010
3011         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
3012         moving to WREG with source is already in WREG,
3013         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
3014         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
3015         * (aopForSym): stack'ed symbols are partially supported, added
3016         if-clause to support symbols in FARSPACE,
3017         * (sameRegs): added test for AOP_ACC to see if registers are same,
3018         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
3019         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
3020         * (pic16_popRegFromString): will not allocate a new register if it
3021         doesn't find one by name, bug may have introduced...
3022         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
3023         * (genIpush): revived to use pic16 port's stack,
3024         * (genAddrOf): added incomplete case for stack'ed operand,
3025         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
3026         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
3027         can handle multibyte operands,
3028         * src/pic16/glue.c (pic16_printIval*): some debug info added,
3029         * (pic16initialComments): added message for MPLAB compatibility
3030         mode enabled,
3031         * src/pic16/main.h: prototype for pic16_mplab_comp,
3032         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
3033         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
3034         * (_pic16_linkEdit): NEW, handles link stage, transferred here
3035         because of increased complexity of procedure,
3036         * (_process_pragma): stack pragma changed to format 'stack pos len',
3037         emit symbol '_stack_end' to conform with gplink,
3038         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
3039         to search for register,
3040         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
3041         PO_GPR_REGISTER,
3042         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
3043         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
3044         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
3045         case for PO_GPR_REGISTER,
3046         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
3047         dies, the new era is ahead !...
3048         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
3049         pic16_dynInternalRegs,
3050         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
3051         * (pic16_allocDirReg): minor optimizations and bug fixes,
3052         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
3053
3054         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
3055         load stack and frame pointer with address of 'stack_end' symbol
3056
3057 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
3058
3059         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
3060         without source code but only variable initializers
3061
3062 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
3063
3064         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
3065         external are not declared as extern to reduce overhead while linking
3066
3067 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
3068
3069         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
3070
3071 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
3072
3073         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
3074           Yee Keat for the patch
3075         * src/SDCCast.c (decorateType): fixed bug #979599
3076         * src/ds390/gen.h: removed local fReturnSizeDS390
3077         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
3078         * src/ds390/gen.c (genAnd, genOr, genXor),
3079         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
3080
3081 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
3082
3083         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
3084         add relFilesSet to $3, manipulate $2 to handle linking of object
3085         files without source files in command line,
3086         * device/include/pic16 (all headers): added ID location macros,
3087         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
3088         entries for ID location bytes,
3089         * (pic16_assignIdByteValue): NEW,
3090         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
3091         added field dumpcalltree to pic16_options_t,
3092         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
3093         is used instead of pic16_Gstack_base_addr, check if (ifx) before
3094         emitting rFalseIfx label after check_carry label,
3095         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
3096         pic16_emitDIRegs), NEW
3097         * (pic16glue): dump .calltree file when option --calltree found,
3098         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
3099         * (_pic16_genAssemblerPreamble): emit ID locations after
3100         configuration registers,
3101         * (pic16_linkCmd): modifications of the link command,
3102         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
3103         * (pic16_pCodeInitRegisters): don't init stack registers,
3104         * (pic16_findPrevInstruction): fixed bug,
3105         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
3106         bug with immediate registers,
3107         * (buildCallTree): traces stack push and pop,
3108         * (pct2): dump also stack usage for each function,
3109         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
3110         * (pic16_allocDirReg): various modifications,
3111         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
3112         fixed to 1,
3113
3114 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
3115
3116         * src/pic16/pcode.c: removed buggy double colon
3117
3118 2004-07-01 Borut Razem <borut.razem AT siol.net>
3119
3120         * support/scripts/sdcc.nsi: added include/pic16 to setup
3121
3122 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
3123
3124         * device/lib/Makefile.in: fixed bug in target objects-pic16,
3125         * device/lib/pic16/Makefile: prefixed with dash (-) command under
3126         target 'clean',
3127         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
3128         specific command line arguments. Also added sample lkr script
3129         for placing a variable at a specific memory bank.
3130         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
3131         at a specific memory bank,
3132         * (pic16_dump_isection): fixed bug which caused string literals to
3133         be omitted when dumping idata section,
3134         * (pic16_groupRegistersInSection): added code to handle registers
3135         in specific memory banks,
3136         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
3137         public, all references are renamed too,
3138         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
3139         AOP_DPTR2,
3140         * (pic16_storeForReturn): added case to handle when dest is WREG,
3141         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
3142         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
3143         pic16_rel_udata, check to see if that register is marked as being
3144         a member of a specific memory bank,
3145         * (pic16_printIvalCharPtr): added code to add string literals either
3146         to code or the idata sections,
3147         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
3148         also accept the 'udata' pragma,
3149         * src/pic16/main.h: new structure types sectName and sectSym
3150         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
3151         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
3152         * (pic16_findPrevInstruction): fixed, it returned nothing,
3153         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
3154         instruction combinations,
3155         * (pic16_FixRegisterBanking): heavily reorganised,
3156         * (pic16_AnalyzeBanking): if generating banksel directives is
3157         disabled, then don't call FixRegisterBanking at all,
3158         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
3159         completely removed,
3160         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
3161
3162 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
3163
3164         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
3165         Phuah Yee Keat <yk.phuah AT nestac.com>
3166
3167 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3168
3169         * src/pic16/glue.c (pic16createInterruptVect): function now emits
3170         correctly the IVT even if it is relocated to some other location
3171
3172 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3173
3174         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
3175         * device/include/pic16/pic18f2220.h: NEW,
3176         * device/lib/pic16/libdev/pic18f2220.c: NEW,
3177         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
3178         * src/pic16/device.c (struct Pics16): added info for 18f2220,
3179         * src/pic16/device.h (struct pic16_options): added ivt_loc and
3180         nodefaultlibs, ivt_loc is the location of the interrupt vector
3181         table, and nodefaultlibs signs that default libraries should not be
3182         linked in link stage,
3183         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
3184         according to --ivt-loc argument,
3185         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
3186         when pragma stack is found,
3187
3188 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3189
3190         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
3191         256 (range check), 257 (do while), 258.a-f (bit banging
3192         f.e. on 3-wire SPI bus)
3193
3194 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3195
3196         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
3197         variables used exclusively within a loop
3198
3199 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
3200
3201         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
3202
3203 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3204
3205         * src/SDCClrange.c (computeClash): fixed bug #971834
3206
3207 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3208
3209         * src/mcs51/gen.c (genCmp): fixed bug #975903
3210         * src/hc08/gen.c (operandsEqu),
3211         * src/ds390/gen.c (operandsEqu),
3212         * src/z80/gen.c (operandsEqu),
3213         * src/pic/gen.c (operandsEqu),
3214         * src/pic16/gen.c (operandsEqu),
3215         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
3216         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
3217
3218 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3219
3220         * src/SDCCcse.c (cseBBlock): fixed bug #966963
3221
3222 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
3223
3224         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
3225         default case in switch statement,
3226         * glue.c (pic16_initPointer): expr is initialised via decoarteType
3227         to eliminate problem with initialisation of pointers, but problem
3228         still exists,
3229         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
3230         * (emitStaticSegment): removed various lines emitting debug info,
3231         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
3232         added processor registers for utilizing EEPROM,
3233         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
3234         configurable and set 8
3235
3236 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
3237
3238         * .version: increased version number to 2.4.2,
3239
3240         Cumulative patch for pic16 port
3241         * src/pic16/device.c: changed scheme to dump initial values for
3242         variables in idata segment, all print_idata* functions were removed,
3243         now the pic16_printIval* will be called,
3244         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
3245         * _pic16_printPointerType, pic16_printPointerType,
3246         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
3247         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
3248         NEW, similar to the respective functions in SDCCglue.c,
3249         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
3250         way, emitting hex bytes,
3251         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
3252
3253 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3254
3255         * src/avr/ralloc.c (serialRegAssign),
3256         * src/xa51/ralloc.c (serialRegAssign),
3257         * src/pic/ralloc.c (serialRegAssign),
3258         * src/pic16/ralloc.c (serialRegAssign),
3259         * src/hc08/ralloc.c (serialRegAssign),
3260         * src/z80/ralloc.c (serialRegAssign),
3261         * src/ds390/ralloc.c (serialRegAssign),
3262         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
3263
3264 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3265
3266         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
3267         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
3268
3269 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
3270
3271         Cumulative patch for pic16 port:
3272         * src/pic16/device.h (typedef PIC16_device) modified fields for
3273         defining microcontrollers,
3274         * src/pic16/device.c: added new info for all devices in Pics16 array,
3275         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
3276         to be optimised out by the pCode optimiser,
3277         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
3278         specially, bug reported by G.M. Gallant,
3279         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
3280         as force'd so that cannot be optimised out by pCode optimiser,
3281         * src/pic16/pcode.c,
3282         * src/pic16/pcodepeeph.c,
3283         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
3284         they are disabled by default, but can be enabled explicit with
3285         command argument --denable-peeps, for testing,
3286         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
3287         --pomit-ivt in COMPILE_FLAGS
3288
3289 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3290
3291         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
3292           compilation on MSVC
3293
3294 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3295
3296         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
3297
3298 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3299
3300         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
3301         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
3302
3303 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
3304
3305         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
3306         would only assign 0x300001 register.
3307
3308 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
3309
3310         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
3311         in COMPILE_FLAGS. Thanks to G. Gallant for report.
3312
3313 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3314
3315         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
3316         for ds80c400
3317         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
3318         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
3319         added peephole 254 (left shift), 255 (jump table)
3320
3321 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
3322
3323         * device/lib/Makefile.in: removed comment line with model-pic16,
3324         * (target port-specific-objects-pic16): the libraries and objects
3325         are copied to the build directory form the device/lib/pic16/bin
3326         directory
3327
3328         Cumulative patch concerning pic16 port:
3329         * library directory has been re-organized,
3330         * added support for PIC18F1220,
3331         * added headers and library sources for chips 18f1220,18f6520,
3332         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
3333
3334         * configuration registers setting has changed, now each supported
3335         device has a complete description of the registers it uses,
3336         * all initialisations are moved to idata sections, these section
3337         can be absolute or relocatable,
3338         * fixed initialisation of codespace variables,
3339         * fixed warning about PCLATU and gpsim,
3340         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
3341         * (genAssign): use table reads when assigning from variables in codespace,
3342         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
3343         char/int variables placed in codespace,
3344         * (pic16_emitConfigRegs): NEW, emits a list with configuration
3345         registers set in .asm file, no need for --pomit-config-words anymore,
3346         * (pic16glue): some 8051 legacy segments are commented out
3347         (to be removed completely),
3348         * added support for alternative assembler and linker with --asm=
3349         and --link= command line arguments,
3350         * peepholes are disabled automatically in the port, no need to
3351         specify on command line,
3352         * port supports natively char/int/long multiplication, but converts
3353         all divisions to support functions,
3354         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
3355         to the file set in variable $2,
3356         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
3357         strings in ASCII format and not in hex,
3358         * ralloc.c (serialRegAssign): added a triplet of conditional calls
3359         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
3360         allocate proper register if iCodes aren't temporary,
3361
3362 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
3363
3364         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
3365
3366 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
3367
3368         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
3369         is commented out
3370
3371 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3372
3373         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
3374         computed address is reused
3375         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
3376         multi-byte bitfields
3377
3378 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3379
3380         * src/z80/gen.c: (genArrayInit): must check for pointers too
3381
3382 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3383
3384         * support/regression/tests/zeropad.c: never meant to commit the
3385           nestedstruct test: removed, added check for GCC version
3386
3387 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
3388
3389         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
3390         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
3391         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
3392           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
3393           bugs 928906 and 954082 half-empty initializers
3394         * src/SDCCsymt.h,
3395         * src/SDCCsymt.c (getAllocSize): added for above fix
3396         * src/z80/gen.c (genArrayInit): fixed bug 741044
3397         * support/regression/tests/zeropad.c: added tests
3398
3399 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
3400
3401         * src/pic16/device.c (pic16_dump_section): corrected bug which
3402         caused some symbols of the libraries to be misplaced
3403
3404 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3405
3406         * src/pic16/glue.c,
3407         * src/pic16/ralloc.h,
3408         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
3409         to fix conflict with pic port
3410
3411 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3412
3413         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
3414         externs configuration variables,
3415         * src/pic16/ralloc.h,
3416         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
3417         prototype in header, commented out some debug messages
3418
3419 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
3420
3421         * src/pic16/glue.c,
3422         * src/pic16/main.c,
3423         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
3424         for gpasm COFF object generation. Thanks to D. Hawkins for
3425         his patch info
3426
3427 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3428
3429         * src/ds390/main.c,
3430         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
3431         Brock for spotting this)
3432         * src/ds390/gen.c (genEndFunction),
3433         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
3434         interrupt handler and critical. Disable push/pop optimizations when
3435         peephole optimizations disabled.
3436
3437 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
3438
3439         Updated pic16 library sources and headers.
3440         * device/lib/pic16/pic18f*/ ,
3441         * device/include/pic16/*.h: modified to handle structured SFR
3442         definitions
3443
3444 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
3445
3446         * src/port.h (PORT structure): added hook initPaths, now each
3447         port can declare its own default search paths,
3448         which can been seen with the --print-search-dirs option,
3449         see pic16 port for example,
3450         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
3451         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
3452         * (doPrintSearchDirs): NEW, replaces in a central manner the
3453         printing of search dirs which was split in set*Paths functions,
3454         * (main): added call to port->initPaths and doPrintSearchDirs,
3455         * src/avr/main.c,
3456         * src/ds390/main.c,
3457         * src/hc08/main.c,
3458         * src/izt/i186.c,
3459         * src/izt/tlcs900h.c,
3460         * src/mcs51/main.c,
3461         * src/pic/main.c,
3462         * src/pic16/main.c: modified port structures to reflect addition of
3463         initPaths hook,
3464
3465         * src/pic16/device.c (regCompare): registers are finally sorted by name,
3466         * (pic16_dump_section): for registers in same address reserve memory once,
3467         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
3468         to no_banksel,
3469         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
3470         result is greater in size than right or left,
3471         * (pic16_genUMult8X8_8): there are some cases where the result can
3472         be 16 bits size, so handle these,
3473         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
3474         * (pic16_outBitC): modified to emit pcodes,
3475         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
3476         or not,
3477         * (genDivOneByte): implemented algorithm to divide 8-bits,
3478         * (genCmp): uncommented goto, but issues still exist,
3479         * (genAnd): fixed a bug with variables >8bits,
3480         * (genPackBits): optimization added that uses BCF/BSF to change a
3481         single bit,
3482         * (genAssign): fixed bug when assigning floating point literals,
3483         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
3484         __sdcc_gsinit_startup label,
3485         * src/pic16/main.c (_pic16_init): removed search directory
3486         initialisations,
3487         * (_pic16_initPaths): NEW, used to initialise search directories,
3488         * (_hasNativeMulFor): support functions for all except char/int
3489         multiplication, and char division,
3490         * (PIC16_port struct): modified entry for native mul support,
3491         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
3492         no_banksel option,
3493         * (buildCallTree): call to register_usage is ifdef'ed out,
3494
3495 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3496
3497         * device/include/string.h: applied Stas Sergeev's patch to make this
3498         header file compatible with the preprocessor -Wundef option
3499         * src/SDCCmain.c (main): abort compilation if preprocessor reports
3500         failure (fixes bug #941458)
3501
3502 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3503
3504         * src/SDCCopt.c (killDeadCode): fixed bug #907733
3505         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
3506         that the variable, not the function, should be static
3507         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
3508         to be consistent with non-literal case
3509
3510 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3511
3512         * src/SDCCast.c (isConformingBody): fixed bug #949967
3513         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
3514         convilong): fixed bug #952086
3515
3516 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3517
3518         * src/SDCCmem.c (allocVariables): fixed bug #955321
3519
3520 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3521
3522         * src/hc08/main.c (_hc08_genAssemblerEnd),
3523         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
3524         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
3525         completely eliminated the use of a temporary file
3526         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
3527         when more than one file linked
3528         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
3529
3530 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3531
3532         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
3533         which fixes bug #543481
3534         * support/regression/tests/bug-751703.c: fixed comments left from a
3535         cut and paste error
3536         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
3537         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
3538         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
3539         scopes
3540         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
3541         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
3542         are now changed to underscores in moduleName
3543
3544 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3545
3546         * as/mcs51/lkmem.c: better fix for bug #954173
3547
3548 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
3549         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3550
3551         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
3552         * device/include/c8051f000.h,
3553         * device/include/c8051f120.h,
3554         * device/include/c8051f300.h,
3555         * device/include/c8051f310.h,
3556         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
3557         PWM16) and detab'ed
3558
3559 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3560
3561         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
3562         and mailing lists, doc'ed --no-peep-comments, removed reference
3563         to knoppix (newest version has no LyX/LaTeX), other minor changes
3564         * src/SDCCglue.c (glue): save 2 bytes stack space with
3565         option --main-return. The ljmp could probably be avoided too
3566
3567 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3568
3569         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
3570
3571 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3572
3573         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
3574         * src/SDCCopt.c (isLocalWithoutDef),
3575         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
3576         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
3577         (credit to Maarten Brock for patch #949363, on which this is based)
3578         * support/regression/tests/bug-751703.c: some test cases of extern used
3579         within inner scopes.
3580
3581 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3582
3583         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
3584         SPEC_STRUCT
3585         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
3586         struct definitions
3587         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
3588         dwWriteLabel): fix to create valid debugger symbols even when
3589         the module name has non-alphanumeric symbols in it
3590         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
3591         when a variable's allocation has been optimized away
3592
3593
3594 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3595
3596         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
3597         * src/hc08/main.c,
3598         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
3599         * src/mcs51/main.c,
3600         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
3601         * src/ds390/main.c,
3602         * src/z80/gen.c (z80_emitDebuggerSymbol),
3603         * src/z80/main.c,
3604         * src/pic/gen.c (pic14_emitDebuggerSymbol),
3605         * src/pic/main.c,
3606         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
3607         * src/pic16/main.c,
3608         * src/avr/gen.c (avr_emitDebuggerSymbol),
3609         * src/avr/main.c,
3610         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
3611         * src/xa51/main.c,
3612         * src/SDCCdebug.c (emitDebuggerSymbol),
3613         * src/SDCCdebug.h,
3614         * src/port.h: added a debugger struct to the port struct. Added a
3615         callback for defining debugger symbols
3616
3617         * src/SDCCast.c (createLabel),
3618         * src/SDCC.y (labeled_statement): mark all compiler generated labels
3619         with isitmp = 1
3620         * src/SDCCicode.h,
3621         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
3622         iCode back to the ast for the function
3623
3624         * src/hc08/ralloc.c (hc08_assignRegisters),
3625         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
3626         unneeded fields from the regs struct.
3627         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
3628         pushReg() & pullReg() functions instead of emitcode()
3629
3630         * src/hc08/gen.c (genLabel, genhc08Code),
3631         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
3632
3633         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
3634         debugger hooks
3635
3636         * src/hc08/gen.c (genEndFunction, genhc08Code),
3637         * src/hc08/gen.h,
3638         * src/mcs51/gen.c (genEndFunction, gen51Code),
3639         * src/mcs51/gen.h,
3640         * src/ds390/gen.c (genEndFunction, gen390Code),
3641         * src/ds390/gen.h,
3642         * src/z80/gen.c (genEndFunction, genZ80Code),
3643         * src/z80/gen.h,
3644         * src/z80/z80.h,
3645         * src/pic/gen.c (genEndFunction, genpic14Code),
3646         * src/pic/gen.h,
3647         * src/pic16/gen.c (genEndFunction, genpic16Code),
3648         * src/pic16/gen.h,
3649         * src/avr/gen.c (genEndFunction, genAVRCode),
3650         * src/avr/gen.h,
3651         * src/xa51/gen.c (genEndFunction, genXA51Code),
3652         * src/xa51/gen.h,
3653         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
3654         specific code to cdbFile.c and out of the backend code generators
3655
3656         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
3657         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
3658         starting address is now 0
3659
3660         * as/hc08/asm.h,
3661         * as/hc08/m08pst.c,
3662         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
3663         assembler directive for DWARF support
3664         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
3665
3666         * src/src.dsp,
3667         * src/Makefile.in,
3668         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
3669
3670 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3671
3672         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
3673         and inappropriate peephole optimization in jump tables
3674
3675 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3676
3677         * as/hc08/m08pst.c,
3678         * src/SDCCglue.c: sdccopt works for the hc08 port now
3679
3680 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
3681
3682         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
3683
3684 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3685
3686         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
3687
3688 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3689
3690         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
3691         rules
3692         * src/SDCCmain.c,
3693         * src/SDCCglobl.h,
3694         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
3695         comments from the peephole optimizer replacement rules
3696         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
3697         symbols
3698         * src/SDCCcse.c (updateSpillLocation),
3699         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
3700         equivalents
3701         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
3702         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
3703         objects far pointers
3704
3705 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3706
3707         * src/SDCCsymt.h: a missing part of my last change
3708         * src/pic/ralloc.c (regTypeNum),
3709         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
3710
3711 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3712
3713         * src/SDCCicode.h,
3714         * src/SDCCicode.c (aggrToPtrDclType),
3715         * src/SDCCptropt.h,
3716         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
3717         ptrPseudoSymConvert),
3718         * src/pic/ralloc.c (regTypeNum),
3719         * src/pic16/ralloc.c (regTypeNum),
3720         * src/hc08/ralloc.c (regTypeNum),
3721         * src/ds390/ralloc.c (regTypeNum),
3722         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
3723         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
3724
3725 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3726
3727         * link/z80/lkmain.c (afile),
3728         * as/hc08/lkmain.c (afile),
3729         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
3730         prevent a pointer problem when a filename has no directory and
3731         no extension specified.
3732
3733 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3734
3735         * link/z80/lkmain.c (afile): allow periods in directory names
3736         * link/z80/lkmain.c (afile),
3737         * as/mcs51/lkmain.c (afile),
3738         * as/hc08/lkmain.c (afile): allow linker script file to have an
3739         extension other than ".lnk"
3740         * link/z80/lklex.c (getfid),
3741         * link/z80/lkmain.c (parse),
3742         * as/mcs51/lklex.c (getfid),
3743         * as/mcs51/lkmain.c (parse),
3744         * as/hc08/lklex.c (getfid),
3745         * as/hc08/lkmain.c (parse): Support comments in the linker script
3746         file on lines by themselves and after filenames
3747
3748 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3749
3750         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
3751
3752 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3753
3754         * src/z80/peeph-z80.def: removed some peephole rules that don't
3755         work with multibyte arithmetic (fixed bug #937126)
3756         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
3757         to registers and not global variables
3758         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
3759         geniCodePreInc, geniCodePostDec, geniCodePreDec,
3760         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
3761         checking for assignments not internally generated (fixed bug #931895)
3762         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
3763         structure member (fixed bug #930072)
3764
3765 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3766
3767         * src/SDCCmain.c (linkEdit),
3768         * src/hc08/main.c (_hc08_parseOptions),
3769         * as/hc08/Makefile.in,
3770         * as/hc08/aslink.h,
3771         * as/hc08/asm.h,
3772         * as/hc08/m08pst.c,
3773         * as/hc08/lkrloc.c (relr, rele),
3774         * as/hc08/lkarea.c (lnkarea)
3775         * as/hc08/lkmain.c (afile, parse),
3776         * as/hc08/lkelf.c: support for ELF output
3777         * as/hc08/lks19.c (s19),
3778         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
3779
3780 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3781
3782         * as/mcs51/lkihx.c: Fixed bug #899105.
3783
3784 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3785
3786         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
3787         .dsp files from Unix to DOS.
3788
3789 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3790
3791         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
3792         function pointers; we have been compliant for several months now.
3793         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
3794         change that was accidently commented out
3795         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
3796         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
3797         bug #922319
3798
3799 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3800
3801         * src/hc08/gen.c: output of all of the internal debugging information
3802         is now controlled by the D() macro; it is disabled by default
3803
3804 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3805
3806         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
3807         harder to keep the same registers during a CAST iCode
3808         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
3809         long via int can be done in a single cast, if the signedness is
3810         correct.
3811         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
3812         putchar() in tinibios.c in ds390's library
3813
3814 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
3815
3816         * src/SDCCast.c (decorateType): fixed bug #898889,
3817         cast result of a literal complement too
3818         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
3819         fixed check for bitfields
3820
3821 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
3822
3823         * src/SDCCicode.c (geniCodeLogic): made it static,
3824         (geniCodeLogicAndOr): added in order to fix bug #905492,
3825         (ast2iCode): fixed bug #905492
3826         * support/regression/tests/bug-905492.c: added
3827         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
3828         (processParms): fixed bug #927659: don't copy parms, this will clear
3829         decorated flag
3830         * support/regression/tests/bug-927659.c: added
3831
3832 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
3833
3834         * src/SDCCast.c (addCast): don't cast float to char
3835         * device/lib/libsdcc.lib: added _memmove
3836
3837 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
3838
3839         * device/lib/large/Makefile: fixed parallel execution by
3840         replacing `make` by `$(MAKE)`
3841
3842 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3843
3844         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
3845         offsets (fixes bug #923936)
3846
3847 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
3848
3849         * device/lib/small/Makefile: fixed parallel execution by
3850         replacing `make` by `$(MAKE)`
3851
3852 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
3853
3854         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
3855
3856 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
3857
3858         * src/pic/gen.c (genCpl): multi-byte complements were not working.
3859         * src/regression/Makefile: Regression test was not running.
3860
3861 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
3862
3863         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
3864         complement if possible
3865         * src/SDCCval.c (valComplement),
3866         * src/SDCCicode.c (operandOperation): fixed complement of literal
3867         * support/regression/tests/onebyte.c (testComplement): added
3868
3869 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
3870
3871         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
3872         return an optimized tree; actually replace actParm with the new tree
3873         * src/SDCCast.h: added some parantheses to remove side effects
3874         * support/regression/tests/bug-920866.c
3875
3876 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
3877         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
3878         Bit operands were not being handled properly in the pic14 port.
3879         (now src/regression/add.c passes again).
3880
3881 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3882
3883         * src/SDCC.y (labeled_statement): case and default no longer require
3884         a following statement (RFE #893037)
3885
3886 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3887
3888         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
3889         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
3890         disabled (fixes bug #916294)
3891         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
3892         "mov a,acc"; patch provided by Lenny Story
3893         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
3894
3895 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3896
3897         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
3898         functions
3899         * src/ds390/gen.c (genFunction, genEndFunction),
3900         * src/ds390/ralloc.c (ds390_assignRegisters),
3901         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
3902         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
3903         pushed if there are parameters passed on the stack. Also, a cleaner
3904         way to decide if r0/r1 should be pushed/popped. (Together they fix
3905         bug #918693)
3906
3907 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3908
3909         * doc/sdccman.lyx,
3910         * device/lib/mcs51/crtpagesfr.asm,
3911         * device/lib/mcs51/crtxinit.asm,
3912         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
3913         to avoid confusion with Si Lab's SFRPAGE register.
3914
3915 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3916
3917         * src/SDCCglue.c (emitMaps): allow public sfr variables
3918         * src/SDCCglue.c (initialComments): include compiler build date
3919         with compiler version and put the timestamp of the generated
3920         assembly file on a serperate line to be less confusing.
3921         * src/port.h: added genInitStartup hook
3922         * src/avr/main.c,
3923         * src/ds390/main.c,
3924         * src/hc08/main.c,
3925         * src/pic/main.c,
3926         * src/pic16/main.c,
3927         * src/xa51/main.c,
3928         * src/z80/main.c: genInitStartup initialize as NULL (default to
3929         historical behaviour)
3930         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
3931         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
3932         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
3933         library instead of hard coding it into the compiler.
3934         * support/regression/ports/mcs51-stack-auto/spec.mk,
3935         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
3936         * device/lib/mcs51/Makefile,
3937         * device/lib/small/Makefile,
3938         * device/lib/large/Makefile,
3939         * device/lib/mcs51/crtpagesfr.asm,
3940         * device/lib/mcs51/crtstart.asm,
3941         * device/lib/mcs51/crtxclear.asm,
3942         * device/lib/mcs51/crtxinit.asm,
3943         * device/lib/mcs51/crtclear.asm,
3944         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
3945         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
3946         and into user configurable files.
3947         * device/lib/clean.mk: clean mcs51 directory too
3948         * support/regression/tests/longlit.c: added static to T1 declaration
3949         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
3950         accesses in the initialization code
3951
3952 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3953
3954         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
3955         OSCTRIMVAL as noted in bug #916008
3956
3957 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3958
3959         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
3960         in loops with multiple exits (reported as incorrect registers
3961         used by Martin Helmling in Sdcc-user list)
3962
3963 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3964
3965         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
3966         made ds390 register extensions look less like error messages
3967
3968 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3969
3970         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
3971         reported by Adam Wozniak in Sdcc-user list
3972
3973 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
3974
3975         * src/SDCCast.c (decorateType): fixed with bug and promotion in
3976         arithmetic optimizations, added debug output
3977
3978 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
3979
3980         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
3981         * sdcc.spec: updated and split sdcc into 3 rpms
3982         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
3983         needed for literals of LEFT_OP and '+'
3984         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
3985         introduced RESULT_TYPE_NOPROM
3986         (geniCodeMultiply): fixed logic for decision if mul is optimized to
3987         left shift
3988         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
3989         limited promotion to int only for '*'
3990         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
3991
3992 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
3993
3994         * src/pic16/gen.c (genSkip),
3995         (genc16bit2lit), (gencjneshort): commented out
3996         (is_LitOp): new helper function, checks operand type
3997         (genCmpEq): rewritten
3998
3999 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
4000
4001         * support/regression/tests/bug-908454.c: added
4002
4003 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
4004
4005         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
4006         * src/SDCCicode.c (usualBinaryConversions): op needs int type
4007         (geniCodeCast): cosmetic, don't preserve bit storage class
4008         (geniCodeLeftShift): added promotion
4009         (geniCodeLogic): fixed regression
4010         * src/SDCCsymt.c (computeTypeOr): accept bits too
4011         (compareType): 2nd part of fix for bug #908454, needed for bitfields
4012
4013 2004-03-07  Borut Razem <borut.razem AT siol.net>
4014
4015         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
4016
4017 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
4018
4019         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
4020         version of pic16_genPackRegisters which does not check if ic is a
4021         CAST operator,
4022         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
4023         function cause string1.c regression test fails
4024
4025 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
4026
4027         * sim/ucsim/configure.in,
4028         * sim/ucsim/configure,
4029         * sim/ucsim/doc/Makefile.in: use docdir
4030         * src/SDCC.y: fixed sbit atrributes
4031         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
4032         * src/SDCCast.c (decorateType): |^& need special promotion handling
4033         * src/SDCCast.h,
4034         * src/SDCCsymt.h: moved definition of RESULT_TYPE
4035         * src/SDCCsymt.h (computeType),
4036         * src/SDCCicode.c: computeType() needs op
4037         * src/SDCCsymt.c (checkTypeSanity),
4038         * doc/sddman.lyx: "plain" bitfields are unsigned
4039         * src/SDCCsymt.c (computeTypeOr): added
4040         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
4041         |^& ops
4042         * src/SDCCval.c (val*): computeType() needs op
4043         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
4044         * support/regression/tests/onebyte.c: added tests for |^&
4045
4046 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
4047
4048         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
4049         for writing icode into asm output.
4050
4051 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
4052
4053         * src/pic16/device.c: added some debug lines enabled
4054         with macro DEBUG_CHECK,
4055         * src/pic16/genarith.c: more debug in genPlus,
4056         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
4057         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
4058         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
4059         * (aopForSym): onStack symbols are re-placed in data memspace,
4060         and onStack flag is cleared,
4061         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
4062         copy temporary pcodeop,
4063         * (genPcall): added warning for not updating PCLATU,
4064         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
4065         always true for pic16 port,
4066         * (genMultOneWord): NEW, supports integer multiplication,
4067         * (genMult): modified to call genMultOneWord,
4068         * (ifxForOp): added warning when return NULL,
4069         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
4070         flag is set before call to operandFromSymbol for implicit
4071         added structures,
4072         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
4073         options.intlong_rent are set by default,
4074         * (_hasNativeMulFor): modified to allow port generation of integer
4075         multiplication,
4076         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
4077         set regtype to REG_SFR for all registers, restricting seting the
4078         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
4079
4080 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4081
4082         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
4083         more than 500 times in the regression tests
4084
4085 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4086
4087         * support/Util/SDCCerr.h,
4088         * support/Util/SDCCerr.c,
4089         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4090         enumerator_list),
4091         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
4092         for symbol conflicts.
4093         * support/valdiags/tests/enum.c,
4094         * support/valdiags/tests/tentdecl.c,
4095         * support/valdiags/tests/struct.c: expect possible error messages
4096         referring to original symbol definitions.
4097         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
4098         * src/SDCCsymt.h,
4099         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
4100
4101 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
4102
4103         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
4104
4105 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
4106
4107         * src/pic16/ralloc.c (newReg): fixed bug #908929
4108
4109 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4110
4111         * src/ds390/gen.c: added missing #include "main.h"
4112
4113 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
4114
4115         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
4116         checking if symbol is already in set,
4117         * src/pic16/device.h: prototype for checkAddSym,
4118         * src/pic16/gen.c: (_G): added entry interruptvector,
4119         * (assignResultValue): removed some commented out lines,
4120         * (genFunction): check for ISR via sym->type, absolute section for
4121         interrupt code is created via a new pBlock, the goto instruction is
4122         placed now correctly at the interrupt vector position, changed all
4123         references from ivec to _G.interruptvector,
4124         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
4125         is the interrupt is a high priority one, same for return from ISR,
4126         * src/pic16/glue.c: changed all calls of addSetHead for publics and
4127         externs to calls of checkAddSym,
4128         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
4129         pic16_pcode_verbose flag is set,
4130         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
4131         * src/pic16/pcoderegs.c: message about how many registers are saved
4132         will only be emitted if pic16_pcode_verbose flag is set,
4133
4134 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4135
4136         * src/ds390/ralloc.h,
4137         * src/ds390/ralloc.c (ds390_regWithIdx),
4138         * src/ds390/gen.c (emitcode),
4139         * src/ds390/main.h,
4140         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
4141         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4142         ds390operandCompare, getRegsRead, getRegsWritten,
4143         initializeAsmLineNode): customized instruction size calculation for
4144         ds390, started basis for some register optimizations
4145         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
4146         corresponding assembly output
4147         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
4148         missing push/pop of r0/r1. Optimized push/pops
4149
4150 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4151
4152         * src/mcs51/main.c (instructionSize): fixed ACALL size
4153         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
4154
4155 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
4156
4157         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
4158         the sorting of rlist with NULL elements
4159         * (print_idataType, print_idata): NEW to create idata sections
4160         * src/pic16/device.h: idataSymSet new variable
4161         * src/pic16/gen.c (genFunction): fixed some bugs in string
4162         comparing, improved the absolute section creation for ISRs,
4163         added FSR0L/FSR0H in registers that are saved in an ISR,
4164         * (genInline): fixed the processing of inline snippets,
4165         now they undergo no process by the peephole optimizer
4166         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
4167         are placed in idataSymSet,
4168         * (pic16emitStaticSeg): extern symbols are added in externs,
4169         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
4170         switching when aboslute variables are placed in access bank memory
4171         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
4172         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
4173         commented out with #if,
4174         * (pic16_packRegisters): reintroduce the check for CAST because some
4175         symbols are not correctly handled,
4176         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
4177         pCodeInstruction instead of pCode,
4178         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
4179         pCodeAsmDir definition,
4180         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
4181         directive, then the argument directive is emitted without the leading
4182         tab, hack for inline labels which must be in the first column,
4183         * (compareLabel,pic16_findNextInstruction),
4184         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
4185         * (insertBankSwitch): modified for the new pCodeAsmDir,
4186
4187 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4188         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
4189
4190         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
4191         instance,
4192         * (pushSide): commented out with #if,
4193         * (assignResultValue): fixed some typos in saving
4194         registers,
4195         * (genPcall): FIXED and sync'ed with genCall,
4196         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
4197         * (genNearPointerGet): fixed to handle some more cases,
4198         implementation scheme via table reads,
4199         * (genConstPointerGet): modified to access code memory correct,
4200         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
4201         and improved to handle some cases
4202         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
4203         instead of "RETLW" for init data
4204         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
4205         not IN_DIRSPACE, work around to reduce bank switching when aboslute
4206         variables are placed in access bank memory (<0x80 and >=0xf80),
4207         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
4208         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
4209         TBLWT_POSTDEC,TBLWT_PREINC
4210         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
4211         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
4212         directives
4213         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
4214         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
4215         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
4216         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
4217
4218 2004-02-29  Borut Razem <borut.razem AT siol.net>
4219
4220         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
4221         support/Util/findme.h, support/Util/system.h: enhance binary relative
4222         search for lib and include by using findProgramPath()
4223
4224 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4225
4226         * src/SDCCpeeph.h,
4227         * src/SDCCpeeph.c (pcDistance),
4228         * src/port.h,
4229         * src/mcs51/ralloc.h,
4230         * src/mcs51/ralloc.c (mcs51_regWithIdx),
4231         * src/mcs51/main.h,
4232         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
4233         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4234         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
4235         size calculation port specific, started basis for some register
4236         optimizations
4237         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
4238         missing push/pop of r0/r1. Optimized push/pops
4239         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
4240         * device/lib/_modsint.c (_modsint),
4241         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
4242         and stack version so regression tests pass
4243
4244 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
4245
4246         * src/Makefile.in (dep): include SLIBOBJS in dependency check
4247         * src/SDCCast.c (decorateType): catch another small optimization
4248         with '?' operator
4249         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
4250         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
4251         modified to finally use computeType() all over SDCC,
4252         see Feature Request #877103
4253         * src/SDCCval.h: cosmetic
4254         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
4255         valCompare(); regression tested in muldiv.c
4256         * support/regression/tests/muldiv.c (testMod): mod sign follows
4257         dividend only
4258
4259 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
4260
4261         * src/SDCCast.c (decorateType): fixed bug #902362
4262         * doc/INSTALL.txt: fixed install instructions for win32
4263
4264 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
4265
4266         * device/include/Makefile.in (install): fixed by replacing spaces
4267         by tabs
4268         * doc/README.txt,
4269         * doc/INSTALL.txt: updated for release
4270         * doc/sdccman.lyx: added warning for --xstack being buggy
4271
4272 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
4273
4274         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
4275         to eliminate build warnings.
4276         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
4277
4278 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
4279            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4280
4281         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
4282         removed -penable-stack, added comment for stack pragma, added
4283         warning for not initializing the stack/frame registers, removed
4284         comment at interrupts section
4285
4286         Stack is made permanent, there is no ability to disable stack usage.
4287         * src/pic16/device.h,
4288         * src/pic16/device.c: removed all references to USE_STACK macro,
4289         * src/pic16/device.c (pic16_dump_section): when no elements in
4290         rlist, free rlist before return,
4291         * (pic16_dump_int_registers): NEW, internal registers are a new set
4292         of general purpose registers reused by each function,
4293         * (checkAddReg): returns 1 if registers is added to set,
4294         * (pic16_groupRegistersInSection): when a registers is of type
4295         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
4296         * src/pic16/device.h: memRange and Assigned Memory are deleted,
4297         SRCASECMP macro is moved here from device.c
4298         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
4299         PO_PCLATU, PO_PRODL, PO_PRODH,
4300         * (pic16_pCodeOpType, genMinus,
4301         changed compares to "a" register, with AOP_ACC,
4302         * (pic16_genPlus): fixed some bugs and indented properly,
4303         * (pic16_addSign): changed size to size+offset in the MOVWF
4304         instruction,
4305         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
4306         multiply 8-bit operand by literal, result is 8-bit,
4307         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
4308         multiply 2 8-bit operand, result is 8-bit,
4309         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
4310         genUMult8X*_16,
4311         * src/pic16/gen.c: changed accUse to contain WREG only,
4312         * (pic16_emitcomment): renamed to pic16_emitpcomment,
4313         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
4314         true, do not use immediate addressing any more unless sym is a
4315         pointer in codespace,
4316         * (aopForRemat): do not use immediate addressing when symbol not in
4317         codespace and when symbol's address is requested,
4318         * (aopOp): for-loop in if(sym->accUse) is modified for the new
4319         accUse size (= 1),
4320         * (aopGet): added case for AOP_ACC and don't return "accumulator
4321         bug" but WREG instead,
4322         * (popGetTempReg): pushes contents of temporary register in stack,
4323         * (popReleaseTempReg): pops contents of temporary register from
4324         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
4325         * (pic16_popGet): separated case AOP_ACC to return register WREG
4326         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
4327         or PO_IMMEDIATE and initializes their instance/offset appropriately,
4328         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
4329         the use of immediate pointers to certain cases only.
4330
4331         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
4332         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
4333         * (assignResultValue, genCall, genRet): modified to use the new
4334         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
4335         genPcall is still broken,
4336         * (genFunction): added code to create 'A' type pBlocks when
4337         interrupt functions are generated, code not extensively tested yet,
4338         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
4339         * (genEndFunction): modified so ISRs pop stored registers from stack,
4340         * (genMultOneByte): cleanup,
4341         * (AccRsh): added flag andmask, to and result with appropriate mask,
4342         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
4343         * (genDataPointerGet): fixed and reenabled its use,
4344         * (genNearDataPointerGet): bugs fixed,
4345         * (genDataPointerSet): bugs fixed,
4346         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
4347         pic16_DumpSymbol, pic16_DumpOp,
4348         * src/pic16/genutils.h: function prototypes for the above functions,
4349         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
4350         pointers,
4351         * (pic16emitRegularMap): many many many improvements, but needs a
4352         major cleanup,
4353         * src/pic16/main.c: enable_stack in pic16_options is removed,
4354         * (_pic16_parseOptions): removed command line options -penable-stack,
4355         * (_process_pragma): emit stack symbol only when stack pragma is
4356         processed,
4357         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
4358         redirected to FSR0L/FSR0H pair,
4359         * (pic16_get_op, pic16_get_op2): modifications and improvements,
4360         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4361         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
4362         for immediates,
4363         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
4364         * (dumpPicOptype): NEW,
4365         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
4366         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
4367         with movff instruction,
4368         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
4369         added pic16_int_regs, some packRegsFor* functions are commented out,
4370         because produce errors,
4371         * src/pic16/NOTES: minor modifications
4372
4373 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4374
4375         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
4376         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
4377         --pack-iram.
4378         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
4379         * as/mcs51/lkaomf51.c: fixed bug #895763
4380
4381 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
4382
4383         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
4384
4385 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4386
4387         * doc/sdccman.lyx: added details about the HC08 storage classes and
4388         interrupts, fixed the register usage info for z80 & gbz80
4389
4390 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
4391
4392         * doc/sdccman.lyx: added more pic16 port documentation
4393         * device/include/pic16/: added header pic18fregs.h
4394
4395 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
4396
4397         * doc/sdccman.lyx: added Vangelis' contribution
4398
4399 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4400
4401         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
4402         extend to the next CALL or PCALL, not just to the next CALL.
4403
4404 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
4405
4406         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
4407
4408 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4409
4410         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
4411         bug #895752 and a better fix for bug #716790
4412
4413 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4414
4415         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
4416
4417 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4418
4419         * doc/sdccman.lyx: minor changes, minor changed
4420
4421 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
4422
4423         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
4424         which can't handle SDCC_NEWONEBYTEOPS,
4425         (geniCodeMultiply): removed conversion from mult to shift for pic14
4426         and pic16
4427
4428 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4429
4430         * src/hc08/gen.h,
4431         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
4432         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
4433         thus fixing bug #895406
4434
4435 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
4436
4437         * device/lib/_modsint.c,
4438         * device/lib/_modslong.c: sign follows divisor only
4439         * src/hc08/gen.c (genMultOneByte): if result size is 1,
4440         signs or signedness can be ignored
4441         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
4442         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
4443         added optimization for IFX,
4444         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
4445         arguments;
4446         reenabled optimization for IFX, which was removed on 2004-01-11
4447         * src/SDCCast.h: added return type IFX
4448         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
4449         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
4450         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
4451         SDCC_OLDONEBYTEOPS selects the old behaviour
4452         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
4453         changed again and commented promotion rule
4454         * src/SDCCval.c (valDiv): promotion no longer necessary
4455         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
4456         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
4457         rewritten
4458         * support/regression/tests/onebyte.c: added
4459
4460 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
4461
4462         * gen.c (genInline): reverted to old code for assemnling inline
4463         code because of bug reported James Chadd
4464
4465 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
4466
4467         * ralloc.h: missing declarations from previous patch,
4468         seems that patch for ralloc.h was never applied, fixed
4469
4470 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4471            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
4472
4473         * pcode.c,
4474         * pcode.h,
4475         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
4476         indirect addressing. Marked FSR0 as deprecated
4477         * gen.c (pointerCode): commented out, not needed now
4478         (pic16_popGet2p): new MOVFF helper function
4479         (genGenPointerGet),
4480         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
4481         (shiftRLong): removed duplicate debugging info
4482
4483 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4484
4485         * src/ds390/gen.c (genNearPointerGet),
4486         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
4487         optimization with bits, but not bitfields.
4488         * src/ds390/ralloc.c (packRegisters),
4489         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
4490
4491 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
4492
4493         * src/SDCCcse.c (algebraicOpts): copy operands before modification
4494
4495 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4496
4497         * src/SDCCsymt.h,
4498         * src/SDCCicode.c (operandFromSymbol),
4499         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
4500         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
4501         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
4502         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
4503         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
4504         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
4505         bug #892038
4506         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
4507         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
4508         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
4509         * src/SDCCsymt.c (newSymbol),
4510         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4511         enumerator_list),
4512         * src/SDCCval.h,
4513         * src/SDCCval.c (newiList): fixed bug #885705
4514
4515 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4516
4517         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
4518         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
4519
4520 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4521
4522         * device/include/c8051f120.h,
4523         * device/include/c8051f300.h,
4524         * device/include/c8051f310.h: added/updated header files for Silicon
4525         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
4526         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
4527         in new section Submitting patches
4528
4529 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4530
4531         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
4532         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4533         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4534         genGenPointerSet),
4535         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
4536         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4537         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4538         genGenPointerSet),
4539         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
4540         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4541         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4542         genGenPointerSet),
4543         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
4544         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4545         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4546         genGenPointerSet): fixed bug #892400
4547         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
4548         to eliminate build warnings.
4549         * src/SDCCast.c (processParms),
4550         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
4551         fixed bug 751859
4552         * support/valdiag/valdiag.py: added GCC to the list of defines active
4553         when compiling with gcc
4554
4555 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4556
4557         * support/Util/SDCCerr.h,
4558         * support/Util/SDCCerr.c,
4559         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
4560         with an incomplete type (fixed bug #883734)
4561         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
4562
4563 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4564
4565         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
4566
4567 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4568
4569         * src/SDCCast.c (decorateType),
4570         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
4571         function pointer implementation
4572         * support/regression/tests/funptrs.c: added tests to verify both forms
4573         of function pointers work correctly. Added tests to verify parameters
4574         are passed in the correct order.
4575
4576 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
4577
4578         * device.c (regCompare): registers are sorted by ascending
4579         address and increasing size,
4580         * main.c (_pic16_finaliseOptions): removed the declaration
4581         of compiler macro MCU. Now a macro of the format pic18fxxxx
4582         will be defined from the command line
4583
4584 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4585             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
4586
4587         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
4588         PCOP_RLCF was overwritten!
4589         * gen.c (genSkip): commented out calls to pic16_emitcode,
4590         * (genCmpEQ): fixed "long" compares, only high word did get compared,
4591         * (genlshTwo),
4592         * (genRRC): added debugging info,
4593         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
4594         overwritten while shifting,
4595         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
4596         overwritten while shifting,
4597         * (AccLsh),
4598         * (AccRsh),
4599         * (shiftLLeftOrResult),
4600         * (shiftRLeftOrResult),
4601         * (shiftRLong),
4602         * (shiftLLong): Implemented with pic16_emitpcode
4603         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
4604         * (genLeftShift): Fixed bug, operand for shift by variable always
4605         was "and"ed with 0x0f,
4606         * (genLeftShiftLiteral),
4607         * (genrshTwo),
4608         * (genRightShiftLiteral): added debugging info,
4609         * (genrshFour): added comment,
4610         * (genRightShift): determined signedness from operand "left"
4611         instead of "result"
4612
4613 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4614
4615         * src/SDCCicode.c (geniCodeParms),
4616         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
4617         function pointers, fixed function pointer bugs #861242 and #861896
4618
4619 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4620
4621         * device/include/c8051f000.h,
4622         * device/include/c8051f120.h,
4623         * device/include/c8051f300.h: added header files for Silicon
4624         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
4625
4626 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
4627
4628         * src/SDCCast.c (processParams): added new type flow and restructured
4629         (gatherAutoInit): added new type flow
4630         (addCast): cosmetic changes
4631         (getLeftResultType): added new type flow for array indices, patch
4632         provided by Stas, see FR #877103
4633         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
4634         array index patch by Stas
4635         * src/SDCCast.h: added prototype getResultTypeFromType()
4636         * src/SDCCval.h,
4637         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
4638         * src/pic/glue.c (pic14emitStaticSeg),
4639         * src/pic16/glue.c (pic16emitStaticSeg),
4640         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
4641         for initialization of symbols
4642         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
4643         * support/Util/SDCCerr.h:
4644         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
4645         * .version: bumped version number to 2.3.8
4646         * device/include/Makefile.in (install),
4647         * doc/Makefile (install): changed to 'rm `find ...`' construct to
4648         avoid warnings
4649
4650 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
4651
4652         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
4653         Slade Rich fixed an optimization bug
4654         * src/pic/pcodepeep.c,
4655         * src/pic/pcoderegs.c
4656         * doc/Makefile (install): added test for directory
4657
4658 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4659
4660         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
4661         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
4662         * src/pic/ralloc.c (getRegPtr, getRegGpr),
4663         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
4664         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
4665         * as/mcs51/asexpr.c (term),
4666         * as/hc08/asexpr.c (term): fixed bug #887146
4667
4668 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4669
4670         * src/z80/gen.c (genMult): handle single byte result product
4671         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
4672         DUMMY_READ_VOLATILE (fixed bug #886367)
4673
4674 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
4675
4676         * support/regression/tests/libmullong.c: fixed logic, on little endian
4677         hosts we ended without a mullong_wrapper()
4678
4679 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4680
4681         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
4682         virus/worm forged address usage.
4683
4684 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
4685
4686         Fixed promotion, it should be done on AST level:
4687         * src/SDCCast.c (addCast): added promotion to int
4688         (decorateType): updated call to upCast()
4689         * src/SDCCicode.c (geniCodeLeftShift): removed call to
4690         usualUnaryConversions()
4691
4692 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
4693
4694         * support/regression/tests/literalop.c (mulWrapper): Added a
4695         wrapper to remove integer overflow warnings.
4696
4697         * support/regression/tests/float_trans.c: Made work on host.
4698
4699         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
4700         location of sz80.
4701
4702         * support/regression/generate-cases.py (main): Changed from inline
4703         to a main method.
4704
4705         * doc/Makefile (install): Changed to depth first to get rid of
4706         missing directory install warning.
4707
4708         * as/Makefile (install-doc): Made work on Mac.
4709
4710 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
4711
4712         * src/SDCCast.c: added an additional type flow in decorateType() of
4713         opposite direction, see feature request #860006; it's enabled at runtime
4714         by setting the environment variable SDCC_NEWTYPEFLOW
4715         * src/SDCCast.h: changed prototype of decorateType()
4716         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
4717         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
4718         'char' to 'int' can be omitted, if both operands are 'unsigned char';
4719         see feature request #877103
4720         * src/SDCCval.c: updated call of decorateType()
4721         (valBitwise): fixed bug #882876
4722         (valMinus): added promotion
4723         (valLogicAndOr): result is unsigned
4724         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
4725         * src/SDCCsymt.c (computeType),
4726         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
4727         must not cause an unsigned operation
4728         * src/pic/glue (pic14emitRegularMap),
4729         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
4730
4731 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
4732
4733         * src/pic/pcode.c (PCodeID): commented out left over debug code
4734
4735 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
4736
4737         * support/valdiag/tests/overflow.c: added shift tests
4738         * src/pic/device.c,
4739         * src/pic/gen.c,
4740         * src/pic/gen.h,
4741         * src/pic/glue.c,
4742         * src/pic/main.c,
4743         * src/pic/pcode.c,
4744         * src/pic/pcode.h,
4745         * src/pic/pcodepeep.c,
4746         * src/pic/pcoderegs.c,
4747         * src/pic/ralloc.c,
4748         * src/pic/ralloc.h: applied patch from Slade Rich;
4749         added support for multiple code pages and multiple RAM banks on the
4750         PIC 14 port. The ASM files now no longer simply assume all the
4751         code / RAM are in the same page / bank. This means the linker can
4752         safely allocate code/RAM of separate ASM files to different pages/banks.
4753         * doc/sdccman.lyx: added Slade's tips
4754         * src/mcs51/peeph.def: fixed bug #880768
4755
4756 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4757
4758         * src/hc08/ralloc.c (rematStr): fixed bug #879282
4759         * src/SDCCast.c (decorateType): fixed bug #880197
4760
4761 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
4762
4763         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
4764         getopt.h.
4765
4766         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
4767         strtof is not part of C89 and isn't included with Mac OS X.
4768
4769 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4770
4771         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
4772         shiftL2Left2Result): fixed bug #879326
4773         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
4774         (genMultOneByte): fixed bug in signed vs unsigned multiplication
4775         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
4776         address fetch for clr instruction
4777         * device/lib/hc08/_mulint.c: created optimized assembly version
4778         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
4779
4780 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
4781
4782         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
4783         proposed in FR #877103
4784
4785 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
4786
4787         * src/SDCCval.c (cheapestVal): added missing checks
4788         * src/SDCCicode.c (usualBinaryConversions): fixed condition
4789         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
4790
4791 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
4792
4793         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
4794         equal operands
4795
4796 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
4797
4798         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
4799         loaded with the linker search paths (-L arguments) and the libraries
4800         to be linked with the current source (-l arguments). Changes
4801         currently will affect only the pic16 port.
4802         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
4803         include path the port specific paths and port specific libraries,
4804         * gplink command now contains the $3 argument,
4805         * src/pic16/device.h,
4806         * src/pic16/device.c,: structure PIC_device is made public and
4807         renamed to PIC16_device, the same for variable Pics which is renamed
4808         to Pics16. Updated all references to them.
4809         * src/pic16/glue.c (pic16glue): corrected bug with code
4810         initialization which bypassed the variable initializations block.
4811
4812         * device/lib/pic16/Makefile.rules: removed --penable-stack from
4813         COMPILE_FLAGS and added the --nostdinc option
4814
4815 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4816
4817         * device/include/mc68hc908jb8.h: Register defs for another member
4818         of the hc08 family. Contributed by Bjorn Bringert - thanks!
4819
4820 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
4821
4822         Documenting changes from previous commits.
4823         * configure.in (version 1.56),
4824         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
4825         when generating output files to configure the pic16 library,
4826         but now I've commented it out, since gputils aren't installed in the
4827         SF compile farm, so library won't compile
4828
4829         * device/lib/Makefile.in (version 1.56): initially I've added in
4830         target 'all' the prerequestive 'model-pic16' so it compiled the
4831         pic16 library, but now I've commented it out for the same reasons
4832         above,
4833         * added targets 'model-pic16' and 'objects-pic16' to compile the
4834         library
4835         * added target 'port-specific-objects-pic16' to handle the
4836         generated libraries and copy them into the build/ directory
4837         * added target 'clean-intermediate-pic16' to clean intermediate
4838         files into pic16 directory
4839         * in target 'installdirs' added line to create directory pic16 in
4840         the installation path
4841
4842         * device/include/Makefile.in (version 1.11): in target 'install'
4843         added lines to copy all header files to installation path,
4844         * in target 'installdirs' added line create directory for pic16
4845         headers in the installation path
4846
4847 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
4848
4849         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
4850          a function call
4851
4852 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
4853
4854         * configure,
4855         * device/lib/configure.in,
4856         * device/lib/configure: fixed for autoconf 2.57
4857
4858 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4859
4860         * src/z80/main.c (_parseOptions): fixed the portmode= command line
4861         option so that it actually works. Made it specific to the z80, since
4862         the gbz80 doesn't have these kinds of I/O ports.
4863
4864 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4865
4866         * device/include/z180.h,
4867         * device/lib/_memcpy.c,
4868         * device/lib/_memmove.c,
4869         * device/lib/_mulint.c,
4870         * device/lib/ser_ir.c,
4871         * device/lib/ser_ir_cts_rts.c,
4872         * device/lib/_strcmp.c,
4873         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
4874         * src/z80/main.c (_process_pragma): add support for pragmas bank and
4875         portmode; added deprecation warning for bank= and protmode= forms.
4876         Also, guard against buffer overflow.
4877         * src/z80/gen.c (aopGet): generate better code for sfr banked read
4878
4879 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4880
4881         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
4882         changed interrupt vector table generation to only emit declared vectors.
4883         * device/include/Makefile.in: added missing backslash
4884         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
4885
4886 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
4887
4888         Mainly changes to support compilation of the device libraries
4889         * src/pic16/device.c: stack is allocated via symbol and not
4890         via literal number. The symbol is placed in the corresponding
4891         position of the data ram
4892         * (pic16_dump_section): relocatable and absolute uninitialized
4893         data are now emitted in sorted order to reduce section naming,
4894         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
4895         weren't marked as being in the access bank,
4896
4897 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
4898
4899         Added portion of GNU PIC Library under the directory
4900         device/include/pic16 and device/lib/pic16. These files
4901         contain the declarations of SFRs for the PIC18Fxx2 devices.
4902         The directory is initialized via configure from toplevel.
4903
4904 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
4905
4906         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
4907         the spilllocations to be compared correctly
4908
4909 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
4910
4911         * src/SDCCast.c (decorateType): fixed bug introduced today
4912
4913 2004-01-12  Borut Razem <borut.razem AT siol.net>
4914
4915         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
4916         doc/sdccman.lyx: upper case pragmas are deprecated
4917
4918 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
4919
4920         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
4921         in simpler and even better code
4922
4923 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
4924
4925         * src/SDCCicode.c (operandOperation): fixed bug #874819
4926         * src/SDCCast.c (decorateType): fixed
4927         char foo (unsigned long ul) { return ul > 0; }
4928
4929 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4930
4931         * doc/sdccman.lyx: Moved and added some sections, small changes
4932         all over. Telling LaTeX to be less strict with word spacing
4933         to better keep the right margin. Changed some notes about
4934         maintainance of the ports in section 3.2.1 - is it OK like this?
4935
4936 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
4937
4938         SDCC source changes:
4939         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
4940         convilong): modified to inform the pic16 port that builtin functions
4941         are external
4942
4943         PIC16 PORT specific changes:
4944         * src/pic16/device.c pic16_dump_equates() added,
4945         processor registers declared internally by the port are emitted in
4946         the translation as equates,
4947         * src/pic16/gen.c: inline code is passed unprocessed to the
4948         translation,
4949         * (pic16_popGetLit2): fnuction modified to take second operand as
4950         pCodeOp pointer and not as literal,
4951         * (popRegFromIdx): prefixed with pic16_,
4952         * (pic16_popCombine2): modified to receive already allocated pCode
4953         operands,
4954         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
4955         * (genFunction): initializes local stack frame and pushes on stack
4956         all the registers used by this function,
4957         * (genEndFunction): restores all registers from stack and restores
4958         stack frame,
4959         * src/pic16/glue.c (pic16emitRegularMap): various changes and
4960         improvements,
4961         * (pic16glue): changed the program startup sequence,
4962         * added new dbName code 'A' for functions placed in absolute section
4963         * src/pic16/main.c: added function attribute _naked,
4964         * added pragma 'code' to place a fnuction at an absolute address,
4965         * added command line arguments --debug-ralloc and --pcode-verbose,
4966         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
4967         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
4968         * (pic16_newpCodeOpLit2): modified to take the second operand as
4969         pCodeOp pointer,
4970         * (pic16_printpBlock): modified to emit each function in a separate
4971         section,
4972         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
4973         UPPER for immediate operands,
4974         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
4975         instruction,
4976         * src/pic16/peeph.def: all peepholes with movff are commented out,
4977         because there is a problem in the pcode peep optimizer,
4978         * src/pic16/ralloc.c: the register allocator can now reuse local
4979         function symbols for another function. This saves register usage.
4980         * src/pic16/ralloc.h: added flag isLocal in structure regs,
4981
4982         Added file src/pic16/NOTES with information about program writing on
4983         the current port version.
4984
4985 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4986
4987         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
4988         and peephole 252 (array access)
4989
4990 2004-01-09  Borut Razem <borut.razem AT siol.net>
4991
4992         * src/SDCCmain.c : fixed #872250: -l command line defined library
4993           files are scanned before standard library files
4994
4995 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4996
4997         * src/SDCCast.c (decorateType): fixed bug #874046
4998
4999 2004-01-09  Borut Razem <borut.razem AT siol.net>
5000
5001         * support/scripts/sdcc.nsi: remove previous installation
5002
5003 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5004
5005         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
5006         bytes for last interrupt vector (mcs51)
5007         * sdcc.spec: fixed typo
5008
5009 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5010
5011         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
5012         gen51Code): more efficient parameter receive for --model-large
5013         ("bug" #845294)
5014
5015 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5016
5017         * src/ds390/main.c,
5018         * src/z80/main.c: added missed needLinkerScript flags (more than
5019         one port structure defined in these file)
5020         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
5021         bug #795325
5022
5023 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
5024
5025         * src/SDCCmain.c: removed various references to DEFAULT_PORT
5026         * src/port.h: added flag needLinkerScript in port->linker
5027         structure to inform whether to create a .lnk file or not,
5028         * src/avr/main.c,
5029         * src/ds390/main.c,
5030         * src/hc08/main.c,
5031         * src/mcs51/main.c,
5032         * src/pic/main.c,
5033         * src/pic16/main.c,
5034         * src/xa51/main.c,
5035         * src/z80/main.c: changed appropriately to configure
5036         needLinkerScript flag
5037         * src/pic/gen.c,
5038         * src/pic16/gen.c (genAddrOf): fixed bug #863624
5039         * src/pic/glue.c: added variable udata_section_name to
5040         override default uninitialized data segment definition for
5041         devices only with SHAREBANK memory (reported from Erik Epetrich)
5042         * (pic14emitOverlay): modified to emit a commented overlay segment
5043         directive when no overlay data exist
5044         * (picglue): modified to emit uninitialized data segment
5045         according to udata_section_name
5046         * src/pic/main.c (_pic14_parseOptions): added command line
5047         options --udata-section-name=[name] to override default
5048         udata definition name
5049         * modified _linkCmd and _asmCmd to include compiler passed
5050         arguments via -W option
5051         * src/pic16/main.c: added $l in _asmCmd, changed extension for
5052         object file from '.rel' to '.o' in port->linker structure,
5053         changed size of fptr from 2 to 3 in port structure
5054
5055 2004-01-07  Borut Razem <borut.razem AT siol.net>
5056
5057         * support/scripts/sdcc.nsi: update PATH
5058         * support/scripts/sdcc.ico: craeted
5059
5060 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
5061
5062         * device/include/Makefile.in: fix install
5063         * doc/Makefile: fix install
5064
5065 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5066
5067         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
5068         in bug #860505
5069         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
5070         how the function variable allocation summary is displayed; also
5071         include information about variables allocated to the overlay
5072         segment
5073
5074 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5075
5076         * as/mcs51/lkmain.c: Help about -Y option
5077         * as/mcs51/lkarea.c: Fixed gcc warnings
5078
5079 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5080
5081         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
5082         fixed warning
5083         * support/valdiag/tests/overflow.c: added
5084         * src/SDCCast.c (decorateType),
5085         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
5086         LEFT_OP (left shift)
5087
5088 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5089
5090         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
5091         (default behaviour).
5092
5093 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5094
5095         A python script to validate compiler diagnostic messages. It can be
5096         used to verify that sdcc complains about bad c source code and
5097         gives a good location of the error.
5098         * support/valdiag/Makefile,
5099         * support/valdiag/valdiag.py,
5100         * support/valdiag/tests/*
5101
5102 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5103
5104         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
5105         * src/SDCCsymt.c (newEnumType),
5106         * src/SDCCsymt.h
5107         * support/Util/SDCCerr.c,
5108         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
5109         enum related bugs.
5110         * support/regression/tests/enum.c: added test for enum values that
5111         require at least 2 bytes of storage.
5112
5113 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5114
5115         * src/common.h: added ifndef/define/endif macros
5116         around the header file.
5117         Bug reported from Jesus Calvino-Fraga
5118
5119 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5120
5121         * sdcc.spec: updated
5122         * device/include/Makefile.in: don't install CVS directories
5123         * device/lib/Makefile.in: added removal of CVS directories after install
5124         * doc/Makefile: fixed install, added local_icons
5125         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
5126         * src/mcs51/gen.c (genRightShift): fixed bug #870788
5127         * src/ds390/gen.c (genRightShift): fixed bug #870788
5128         * src/SDCCast.c (decorateType): fixed bug #870781
5129
5130 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5131
5132         PIC16 port related changes:
5133         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
5134         added variable stackPos,
5135
5136         * gen.c: genCall, assignResultValue: added support for
5137         pushing/retrieving function parameters to/from stack,
5138         genFunction,genEndFunction: setup stack frame for the
5139         generated function,
5140         genAddrOf: will be changed according to bug 863624
5141
5142         * added files genutils.c and genutils.h which contain gen*
5143         debugged and optimised functions extracted from gen.c
5144
5145         * glue.c: added variable 'externs' which holds extern symbols,
5146         pic16emitRegularMap: is modified to properly handle relocatable
5147          symbols under the new scheme,
5148         pic16createInterruptVect: is modified
5149         pic16printPublics: is modified to emit 'global' assembler directives,
5150         added pic16_printExterns to print extern symbols,
5151         pic16glue: initializes stack/frame pointer in the beginning of
5152         the assembly output. Temporary hack, will be corrected later,
5153         because gplink yet does not support stack and SDCC does not
5154         yet support a type of crt0.o object to create the final binary.
5155
5156         * Removed many lines that contain 8051 legacy code.
5157         * The code is finally placed under a 'code' directive.
5158         * Added port specific options.
5159
5160         * _process_pragma: simplified since now we do not need *special*
5161         include file to define SFR registers. But a separate header
5162         will be needed. This will be developed later.
5163         * _pic16_parseOptions: added, parses port specific options:
5164         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
5165         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
5166         --preplace-udata-with=
5167
5168         * _pic16_setDefaultOptions: modified to initialize section names,
5169         but hack is temporarly out of order since it needs improvement.
5170         * _pic16_genAssemblerPreamble: configuration words are emitted by
5171         their address instead of their name. This part is incomplete and
5172         supports only the 18Fxx2 devices. Other devices will emit an error
5173         during assembly since they do not contain the same set of config
5174         registers
5175         * _pic16_genIVT: is modified,
5176
5177         * pcode.c: added definitions for some hardware registers that are needed
5178         for stack support
5179         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
5180         All PCI entries are updated. Now LFSR is supported.
5181         * Removed pic16_pciTRIS is mentioned by mdubuc in source
5182         * added pic16_newpCodeOpLit2 to support instructions with
5183         two literal arguments
5184         * pic16_pCode2str: corrected code that emits assembler instructions
5185         with two literal operands and those that have an access bit modifier
5186         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
5187         this fixes a bug which caused some labels to be lost, when an
5188         assembler directive was added, i.e. banksel,
5189         * pic16_FixRegisterBanking: improved logic that causes the insertion
5190         of bank switching,
5191         * InlineFunction: functions that are called once, are not any more
5192         inlined. This can be a port option in the future,
5193
5194         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
5195
5196         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
5197         hold the corresponding uninitialized symbols,
5198         * pic16_allocProcessorRegister: registers have explicit marked the
5199         accessBank field,
5200         * pic16_allocInternalRegister: registers are explicit marked as
5201         not used,
5202         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
5203         processing list, so bit registers were lost,
5204         *
5205
5206         * ralloc.h: added field 'accessBank' and original symbol operand
5207         in register definition,
5208         * removed the field isMapped from register definition,
5209
5210         ** Several functions have been removed from various sources:
5211         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
5212         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
5213         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
5214         pic16_assignRelocatableRegisters
5215
5216         ** others have been introduced:
5217         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
5218         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
5219
5220 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
5221
5222         * support/scripts/inc2h.pl: changed definition of BIT_AT
5223         to emit 'sbit at' instead of 'bit at'. This was a request.
5224
5225         PIC16 port related preliminary changes:
5226         * gen.c: prefixed function popRegFromString with
5227         pic16_ and all references to it corrected
5228         * pcode.c: all pic16_pc_* hardware registers prefixed
5229         with underscore (_),
5230         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
5231         * ralloc.c: newReg(): when register is REG_SFR then
5232         set address to rIdx,
5233         pic16_allocProcessorRegister(): marks register wasUsed=0
5234         pic16_writeUsedRegs(): added a call to assign processor
5235         registers via pic16_assignFixedRegisters
5236
5237 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5238
5239         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
5240         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
5241         variables in unused register banks.  Also the SSEG is placed
5242         wherever there is enough space for it, and IDATA can be anywhere
5243         in internal RAM.  For now compile using -Wl-Y[stack_size].
5244         The mem file is different for this option as well, since it
5245         makes no sense of talking about DSEG lenght.
5246
5247 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
5248
5249         * src/SDCClrange.c: fixed bug 869095 that caused segfault
5250         in certain cases, e.g. when ROM assignment, patch provided
5251         from Albert den Haan.
5252
5253 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
5254
5255         Many signedness and type propagation fixes:
5256         * src/SDCCicode.c: made geniCodeCast() static
5257         replaced SPEC_ by IS_ (cosmetic)
5258         (operandOperation): fixed div and mod operation
5259         (usualBinaryConversions): added support for promotion of char
5260         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
5261         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
5262         (geniCodeAdd): an array index will stay unsigned, even if promoted
5263         from char to int
5264         (geniCodeArray): ditto
5265         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
5266         * src/SDCCsymt.c (computeType): added more support for char;
5267         promotion of char is selectable by promoteCharToInt, fixed signedness
5268         for all cases
5269         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5270         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5271         * src/SDCCval (val*): replaced signedness calculation by
5272         computeType()
5273         rearranged if-branches (cosmetic)
5274         (valShift): added warning W_SHIFT_CHANGED
5275         (valCompare): fixed problem with different types
5276         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
5277         * support/regression/tests/literalop.c: added many cases
5278         * support/regression/tests/ast_constant_folding.c: changed finally to
5279         'unsigned int'
5280         * .version: new year, new version: 2.3.7
5281         * src/SDCCmain.c (main): applied patch #866468
5282         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
5283         provided by Scott Bronson
5284         * doc/sdccman.lyx: updated documentation for sdcdb
5285         updated and added chapter tips
5286
5287 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5288
5289         * src/SDCCsymt.h: missing from yesterday's commits
5290
5291 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5292
5293         * src/SDCC.y (struct_or_union_specifier),
5294         * support/Util/SDCCerr.c,
5295         * support/Util/SDCCerr.h: verify that struct & union tags are used
5296         as declared.
5297
5298 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5299
5300         * src/SDCCglobl.h: missing from yesterday's commits
5301
5302 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5303
5304         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
5305         sft_attributes, struct_declaration, parameter_declaration,
5306         type_name, start_block, declaration_list),
5307         * src/SDCC.lex (check_type): support redefinition of typedef names
5308
5309 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5310
5311         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
5312         aligned xdata arrays. Erik helped me with the if clause.
5313
5314 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5315
5316         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
5317         warning
5318
5319 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5320
5321         * src/SDCCast.h,
5322         * src/SDCCast.c (newAst_),
5323         * src/SDCCicode.h,
5324         * src/SDCCicode.c (ast2iCode, newiCode),
5325         * src/SDCCglobl.h,
5326         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
5327         expr, statement, expression_statement, selection_statement,
5328         iteration_statement, expr_opt, jump_statement): foundation for tracking
5329         sequence points
5330         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
5331         point code too)
5332
5333 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5334
5335         * support/Util/SDCCerr.c,
5336         * src/SDCCast.h,
5337         * src/SDCCast.c (createCase, createDefault, decorateType),
5338         * src/SDCClabel.c (labelUnreach),
5339         * src/SDCC.y (labeled_statement, jump_statement): More improvements
5340         to error messages.
5341         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
5342         (with thanks to Stas Sergeev)
5343         * device/include/time.h,
5344         * device/lib/time.c (CheckTime): suppress unreachable code warning
5345
5346 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5347
5348         * src/SDCCast.c (createIvalCharPtr),
5349         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
5350         bug #753752)
5351         * support/regression/tests/nullstring.c: tests for these two bugs
5352
5353 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5354
5355         * support/Util/SDCCerr.h,
5356         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
5357         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
5358         about storage class and 'at' used inside struct or union
5359         * src/SDCCBBlock.c (iCodeFromeBBlock),
5360         * src/SDCCcse.c (ifxOptimize),
5361         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
5362         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
5363         printIval, emitStaticSeg, emitOverlay),
5364         * src/SDCClabel.c (deleteIfx),
5365         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
5366         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
5367         gatherAutoInit, processParms),
5368         * support/Util/SDCCerr.h,
5369         * support/Util/SDCCerr.c (werrorfl): Support for better error location
5370         reporting for post-parse errors.
5371
5372 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5373
5374         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
5375         implicit casts via union; they don't work on big endian systems
5376         (possible fix for bug #861138)
5377
5378 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5379
5380         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
5381         * src/mcs51/main.c: fixed the fix for bug #737001
5382
5383 2003-12-15  Borut Razem <borut.razem AT siol.net>
5384
5385         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
5386
5387 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5388
5389         * support/makebin/makebin.c: put output in binary mode
5390
5391 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5392
5393         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
5394         xdata and data memory on startup. Set the environment variable
5395         SDCC_NOGENRAMCLEAR to disable this.
5396         * src/mcs51/peephole.def,
5397         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
5398         (allows non-interrupt and interrupt code to safely compete for a resource
5399         without the non-interrupt code having to disable interrupts)
5400
5401 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5402
5403         * src/SDCCicode.c (geniCodeAdd),
5404         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
5405         with valFromType if type might be a pointer and host is big endian).
5406         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
5407         types, not just integer types.
5408         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
5409         multiply defined with mismatching "at" address.
5410
5411 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5412
5413         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
5414         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
5415         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
5416         with embedded nulls (fixed bug #753752)
5417
5418 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5419
5420         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
5421         Apparently this did not see much testing (endless loop)
5422
5423 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5424
5425         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
5426
5427 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5428
5429         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
5430         gracefully handle NULL memmap pointers
5431
5432 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5433
5434         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
5435         instead of deleting the iCode when an operand is volatile
5436         * src/z80/gen.c (genDummyRead),
5437         * src/mcs51/gen.c (genDummyRead),
5438         * src/ds390/gen.c (genDummyRead),
5439         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
5440         not just IC_RIGHT
5441         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
5442         * src/SDCC.y: fixed bug #850420
5443
5444 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5445
5446         Applied z80 i/o port patch from Peter Townson and fixed some operators
5447         to better handle operands in A register.
5448         * device/include/z180.h
5449         * src/SDCC.y
5450         * src/SDCCglue.c
5451         * src/z80/gen.c
5452         * src/z80/gen.h
5453         * src/z80/main.c
5454         * src/z80/peeph-z80.def
5455         * src/z80/peeph.def
5456         * src/z80/z80.h
5457
5458 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5459
5460         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
5461
5462 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5463
5464         * device/lib/hc08/_mullong.c: Removed extra #endif
5465
5466 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5467
5468         * sim/ucsim/hc08.src/inst.cc,
5469         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
5470         carries from x to h
5471         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
5472         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
5473         * device/include/stdarg.h: fixed varargs for hc08
5474         * device/lib/Makefile.in,
5475         * device/lib/hc08/Makefile,
5476         * device/lib/hc08/_mulint.c,
5477         * device/lib/hc08/_mullong.c: fixed some endian problems
5478
5479 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5480
5481         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
5482         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
5483         * device/lib/_gptrget.c,
5484         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
5485
5486 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5487
5488         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
5489         * src/SDCCast.c (astErrors): fixed bug #846007
5490         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
5491
5492 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5493
5494         * src/SDCCast.c (decorateType): disabled a transformation I added in
5495         revision 1.188 (access to fields of a structure at an absolute address);
5496         it breaks with bitfields, extern declarations, and gcse analysis.
5497         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
5498         could be assigned through a pointer, so don't complain.
5499         * src/SDCCast.c (astErrors),
5500         * src/SDCCast.h,
5501         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
5502
5503 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
5504
5505         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
5506         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
5507         output of __config directives, since gpasm now supports them
5508         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
5509         pre-processor macro, i.e. -DMCU=p18f452
5510         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
5511         and modified to handle 'cast' icode similarly to '=' icode
5512         * src/pic16/device.h (typedef struct PIC_device): added field
5513         'extMIface' to indicate that chip has external memory interface
5514         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
5515         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
5516         18F8720
5517
5518 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5519
5520         * src/SDCC.y (pointer): fixed bug #846006
5521         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
5522         * src/SDCCast.c (decorateType): fixed bug #846009
5523         * src/ds390/peeph.def,
5524         * src/ds390/gen.c (genAnd, genOr),
5525         * src/mcs51/peeph.def,
5526         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
5527
5528 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5529
5530         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
5531         * src/SDCCdflow.c
5532         * src/SDCCcse.c
5533         * src/SDCCcse.h
5534         * src/SDCCBBlock.h
5535         * src/SDCCBBlock.c
5536
5537 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
5538
5539         fixed bug #845089
5540         * src/SDCCbitv.h,
5541         * src/SDCCbitv.c: added function to free a bitvector
5542         * src/SDCClrange.h,
5543         * src/SDCClrange.c: added function to recompute the liveranges
5544         * src/avr/ralloc.c,
5545         * src/ds390/ralloc.c,
5546         * src/hc08/ralloc.c,
5547         * src/mcs51/ralloc.c,
5548         * src/pic/ralloc.c,
5549         * src/pic16/ralloc.c,
5550         * src/xa51/ralloc.c,
5551         * src/z80/ralloc.c: recompute the liveranges after register packing
5552
5553 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
5554
5555         * src/SDCCloop.c (newInduction): fixed bug #845630
5556
5557 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5558
5559         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
5560         inadvertantly left behind from my 2003-11-12 change
5561
5562 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5563
5564         Updated headers I neglected to commit yesterday.
5565         * src/SDCClrange.h,
5566         * src/SDCCicode.h
5567
5568 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5569
5570         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
5571         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
5572         * src/SDCCopt.c (eBBlockFromiCode),
5573         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
5574         the creation of the key hash table from the sequencing so it can be used
5575         earlier (for some GCSE bug fixes still pending)
5576
5577 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5578
5579         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
5580         * support/regression/tests/addsub.c: testing genPlus shortcut
5581
5582 2003-11-15  Borut Razem <borut.razem AT siol.net>
5583
5584         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
5585
5586 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5587
5588         * src/SDCCcse.c (cseBBlock): fixed bug #527779
5589         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
5590         ordering is immaterial.
5591         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
5592
5593 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5594
5595         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
5596         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
5597         (SIGSEV) of bug #840381
5598         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
5599         unlink new file before rename if new and old filenames are the same)
5600
5601 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5602
5603         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
5604         uninitialized variables) for the mcs51. Set environment variable
5605         SDCC_GENRAMCLEAR to test.
5606         xdata initialization slightly shorter
5607
5608 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5609
5610         * src/SDCCsymt.h,
5611         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
5612         #838241 & 780691 (basicly the same bug)
5613         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
5614         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
5615
5616 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
5617
5618         * src/SDCCmain.c (linkEdit): "fix" #834252
5619
5620 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5621
5622         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
5623         * src/SDCCast.h,
5624         * src/SDCC.y: fixed bug #819403
5625
5626 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5627
5628         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
5629         the reentrant attribute.
5630         * src/hc08/gen.c (genPackBits): added missing stack readjustment
5631         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
5632         simulation
5633         * src/SDCCast.c (decorateType): fixed bug with storage class not being
5634         updated during pointer dereference; f.e. ~(((char *)1)*) was being
5635         erroneously reduced to a literal.
5636         * src/hc08/ralloc.c (packRegisters, rematStr),
5637         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
5638         some cases
5639
5640 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5641
5642         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
5643         * doc/sdccman.lyx: changed from 'article' to 'book'
5644         * doc/Makefile: readded test_suite_spec and cdbfileformat
5645
5646 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
5647
5648         * device/include/stdlib.h: include malloc.h to comply with ANSI
5649         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
5650
5651 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5652
5653         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
5654         * doc/clean.mk: also remove *.out files
5655         * doc/sdccman.lyx: some additions, larger top/bottom margins
5656
5657 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5658
5659         * src/SDCC.y: fixed bug #837365
5660         * support/regression/tests/bitopcse.c
5661         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
5662         a symbol (might be valop instead)
5663         * device/lib/Makefile.in: added errno.c to HC08SOURCES
5664         * device/lib/clean.mk: added hc08 to the cleaning list
5665
5666 2003-11-04  Borut Razem <borut.razem AT siol.net>
5667
5668         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
5669           made 2003-11-04
5670         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
5671           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
5672           malloc is declared in standard stdlib.h
5673
5674 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5675
5676         * device/lib/hc08/Makefile: need to clean .rel not .o files
5677         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
5678
5679 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5680
5681         * src/port.h,
5682         * src/hc08/main.c,
5683         * src/mcs51/main.c,
5684         * src/ds390/main.c,
5685         * src/z80/main.c,
5686         * src/avr/main.c,
5687         * src/pic/main.c,
5688         * src/pic16/main.c,
5689         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
5690         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
5691         tests (which uses the port's oclsExpense function)
5692         * src/SDCC.y,
5693         * src/SDCCast.c,
5694         * src/SDCCicode.c,
5695         * src/hc08/gen.c,
5696         * src/ds390/gen.c,
5697         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
5698
5699 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5700
5701         * src/SDCCcse.c (ifxOptimize),
5702         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
5703         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
5704         deleting the IFX iCode.
5705         * src/hc08/ralloc.c: reduced unneeded slocs
5706         * src/hc08/gen.c: fixed bug in asmopToBoolean
5707
5708 2003-11-04  Borut Razem <borut.razem AT siol.net>
5709
5710         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
5711           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
5712           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
5713           transferred to configure
5714
5715 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
5716
5717         Use headers defined in the C[++] standards:
5718         * sim/ucsim/gui.src/serio.src/fileio.cc
5719         * sim/ucsim/gui.src/serio.src/frontend.cc
5720         * sim/ucsim/gui.src/serio.src/main.cc
5721         * sim/ucsim/gui.src/serio.src/posix_signal.cc
5722         * support/Util/NewAlloc.c
5723         * as/hc08/lklibr.c
5724         * as/mcs51/lklibr.c
5725         * as/z80/aslist.c
5726         * as/z80/assym.c
5727
5728 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5729
5730         * Added MSVC projects for hc08 assembler and linker:
5731         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
5732         /as/hc08/link_hc08.dsp
5733
5734 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
5735
5736         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
5737
5738 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
5739
5740         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
5741
5742 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5743
5744         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
5745
5746 2003-10-31  Borut Razem <borut.razem AT siol.net>
5747
5748         * support/cpp2/cpplib.h,
5749           support/cpp2/cpplib.c,
5750           support/cpp2/cpplex.c,
5751           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
5752           to switch _asm block preprocessing on / off. Default is
5753           #pragma preproc_asm +
5754
5755 2003-10-31  Borut Razem <borut.razem AT siol.net>
5756
5757         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
5758           when outputting comment blocks (when executed with -C option) and
5759           _asm (SDCPP specific) blocks
5760
5761 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5762
5763         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
5764
5765 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
5766
5767         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
5768
5769 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
5770
5771         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
5772         * src/SDCCast.c (decorateType): fixed bug #832664
5773
5774 2003-10-31  Borut Razem <borut.razem AT siol.net>
5775
5776         * support\cpp2\cpplex.c: fixed for SDCPP:
5777           comments(when executed with -C option) and _asm blocks
5778           were included even if they where in skipped #if block.
5779           Applied solution from GCC cpp 3.3.2
5780
5781 2003-10-31  Borut Razem <borut.razem AT siol.net>
5782
5783         * src/SDCC.lex: sdcc now understands both formats:
5784           '# <line_number> <file_name>' and
5785           '#line <line_number> <file_name>'
5786         * support/cpp2/cppmain.c: sdcpp now generates the standard
5787           '# <line_number> <file_name>' instead of former
5788           '#line <line_number> <file_name>'
5789
5790 2003-10-30  Borut Razem <borut.razem AT siol.net>
5791
5792         * support/cpp2/cpphash.h,
5793         * support/cpp2/cpplib.h
5794         * support/cpp2/cpplex.c,
5795         * support/cpp2/cppmain.c,
5796         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
5797
5798 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5799
5800         Fixed a number of problems revealed by bug #827883.
5801         * src/SDCCloop.c (loopInvariants): Spill location of the
5802         result operand should be recomputed if extracted from
5803         a loop. Also, don't extract assignments of an iTemp
5804         from a literal.
5805         * src/SDCCast.c (isConformingBody): loop reversal should
5806         not occur if the control variable is involved with a
5807         relational operator.
5808
5809 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
5810
5811         * .version: bumped to 2.3.6 to reflect the big improvements
5812         made by Erik and Klaus. Thanks!
5813
5814 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
5815
5816         Replaced the livrange code.
5817         * src/SDCClrange.c: added new LR code
5818         * src/SDCCloop.c,
5819         * src/SDCCBBlock.h: removed remainig parts from old LR code
5820         * src/ds390/ralloc.c,
5821         * src/ds390/gen.c: minor fixes to make it work with new code
5822
5823 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5824
5825         * as/hc08/asm.h,
5826         * as/hc08/lkrloc.c,
5827         * src/hc08/gen.c,
5828         * src/hc08/ralloc.c: Fix various warnings related to the hc08
5829         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
5830         (tweaked fix for bug #818696)
5831
5832 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5833
5834         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
5835
5836 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5837
5838         * src/SDCCmain.c,
5839         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
5840         * src/mcs51/gen.c (gencjneshort),
5841         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
5842         more efficient (per Scott Bronson's suggestion)
5843
5844 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5845
5846         Extended the semantics of the critical keyword to include
5847         individual statements. See RFE #827755 and #799831
5848         * src/SDCC.y
5849         * src/SDCCicode.c
5850         * src/SDCCopt.c
5851         * src/SDCCast.c
5852         * support/Util/SDCCerr.c
5853         * support/Util/SDCCerr.h
5854         * src/mcs51/gen.c
5855         * src/ds390/gen.c
5856         * src/hc08/gen.c
5857
5858 2003-10-19  Borut Razem <borut.razem AT siol.net>
5859
5860         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
5861
5862 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5863
5864         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
5865         Fixed bug #818696
5866         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
5867         and predecrement operand is displayed
5868
5869 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
5870
5871         * src/SDCCval.c (valMinus): fixed bug #826041
5872
5873 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5874
5875         Some hc08 related updates that I missed earlier
5876         * sim/ucsim/stypes.h
5877         * support/regression/ports/hc08/spec.mk
5878
5879 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5880
5881         New target "hc08" for the Motorola 68hc08 family of micros
5882
5883         * configure
5884         * configure.in
5885         * Makefile
5886         * src/hc08/*
5887         * src/SDCCmain.c
5888         * src/port.h
5889         * sim/ucsim/hc08.src/*
5890         * sim/ucsim/configure.in
5891         * src/ucsim/configure
5892         * sim/ucsim/packages_in.mk
5893         * as/hc08/*
5894         * as/Makefile
5895         * device/include/mc68hc908qy.h
5896         * device/lib/hc08/*
5897         * device/lib/Makefile.in
5898         * support/regression/ports/hc08/*
5899         * support/regression/Makefile
5900
5901 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5902
5903         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
5904         regression test
5905         * src/ds390/gen.c (genCast): fixed bug #821957
5906
5907 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
5908
5909         * device/lib/logf.c: "fixed" overlay bug
5910         * support/regression/ports/host/spec.mk: added m library
5911         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
5912         * support/regression/tests/float_trans: added (for Eric)
5913
5914 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
5915
5916         * src/mcs51/gen.c (genCpl): fixed bug
5917         http://sf.net/mailarchive/message.php?msg_id=6263915
5918
5919 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
5920
5921         * src/SDCCast.c (decorateType): added extended constant folding
5922         * src/SDCCsymt.c (computeType): cleanup
5923         * src/SDCCval.c (valShift): minor optimization
5924         * support/regression/tests/ast_constant_folding.c: added
5925
5926 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5927
5928         * src/SDCCmain.c: removed some unintended changes
5929
5930 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5931
5932         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
5933         * src/z80/gen.c: fixed part of bug #817589
5934         * src/SDCCsymt.c (checkFunction): fixed bug #817895
5935
5936 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
5937
5938         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
5939         * src/SDCCcflow.c
5940         * src/SDCCcse.c
5941         * src/SDCCdflow.c
5942         * src/SDCClabel.c
5943         * src/SDCClrange.c
5944         * src/SDCCmem.c
5945         * src/SDCCopt.c
5946         * src/SDCCpeeph.c
5947         * src/SDCCset.c
5948         * src/avr/ralloc.c
5949         * src/ds390/ralloc.c
5950         * src/izt/ralloc.c
5951         * src/mcs51/ralloc.c
5952         * src/pic/ralloc.c
5953         * src/pic16/ralloc.c
5954         * src/xa51/ralloc.c
5955         * src/z80/ralloc.c
5956         * src/z80/gen.c: removed unused label "release:"
5957
5958 2003-10-06  Borut Razem <borut.razem AT siol.net>
5959
5960         * src/SDCC.lex: removed definition of unused variables
5961           save_optimize and save_options
5962
5963 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
5964
5965         * clean.mk: removed '=' in "-maxdepth=1"
5966         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
5967         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
5968
5969 2003-10-06  Borut Razem <borut.razem AT siol.net>
5970
5971         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
5972           my_unput() replaced by unput()
5973
5974 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
5975
5976         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
5977         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
5978         type-punned pointer will break strict-aliasing rules"
5979         Old LR behaviour is again default; Klaus' LR can be choosen by
5980         defining the environment variable LRKLAUS
5981         * src/SDCCBBlock.h
5982         * src/SDCCloop.c
5983         * src/SDCClrange.c
5984         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
5985         * clean.mk: fixed removal of files in bin/CVS/
5986         * device/lib/clean.mk: fixed removal of directories small and large
5987         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
5988         * src/SDCCicode.c,
5989         * src/SDCCval.c: removed superflous test for pedantic
5990
5991 2003-10-05  Borut Razem <borut.razem AT siol.net>
5992
5993         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
5994           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
5995           message "unmatched #pragma SAVE and #pragma RESTORE"
5996
5997 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5998
5999         * doc/sdccman.lyx: various additions and updates (interrupts, inline
6000           assembly, critical functions, atomic, nojtbound)
6001
6002 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
6003
6004         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
6005         * src/SDCCBBlock.h
6006         * src/SDCCloop.c
6007         * src/SDCCloop.h
6008         * src/SDCClrange.c
6009
6010 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6011
6012         * src/z80/gen.h,
6013         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6014         * src/mcs51/gen.h
6015         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6016         * src/ds390/gen.h
6017         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6018         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
6019         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
6020
6021 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6022
6023         * src/z80/gen.c (genRet): fixed bug #524753
6024         * src/z80/gen.c (genCast): fixed internal error on cast from
6025         pointer to long
6026         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
6027         fix for bug #477835 to the z80
6028         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
6029         for tracking iCodes in the peephole optimizer for z80
6030
6031 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6032
6033         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
6034         the other part of bug #814548
6035         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
6036
6037 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
6038
6039         * src/SDCCcse.c: fixed part of bug #814548
6040
6041 2003-09-28  Borut Razem <borut.razem AT siol.net>
6042
6043         * src/asm.c: rewrite of printILine() to use temporary file instead
6044           a pipe
6045         * src/xa51/main.c: commented out declaration of int rewinds
6046
6047 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6048
6049         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
6050
6051 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6052
6053         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
6054         * src/asm.c (printILine): Fixed bug #811015
6055
6056 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6057
6058         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
6059         freeing.
6060
6061 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6062
6063         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
6064         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
6065         to correctly handle general case of AOP_PAIRPTR
6066         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
6067
6068 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6069
6070         * src/mcs51/ralloc.c (fillGaps),
6071         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
6072         register positioning bug)
6073
6074 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
6075
6076         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
6077
6078 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6079
6080         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
6081         genCodePointerGet, genGenPointerGet, genFarPointerSet,
6082         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
6083         (ralloc doesn't intentionally do this now, but perhaps later)
6084         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
6085         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
6086         register positioning bugs (Fixed bug #762602 and #795325)
6087         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
6088         (Fixed bug #808779)
6089         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
6090         lines that --i-code-in-asm generates
6091
6092 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6093
6094         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
6095         trying to fclose a FILE* that was already closed.
6096
6097 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6098
6099         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
6100         of const struct should be treated as if const themselves)
6101
6102 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
6103
6104         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
6105
6106 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6107
6108         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
6109         Unix (/n) and DOS (/r/n) line terminations.
6110
6111 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6112
6113         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
6114         bug #613775
6115
6116 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6117
6118         * src/mcs51/gen.c (genFunction, genEndFunction),
6119         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
6120         and restore of EA so that stack offsets to parameters are
6121         correct when using both critical and reentrant/stack-auto.
6122         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
6123         size (can be triggered in error if sloc is shared between
6124         different sized objects)
6125         * device/include/float.h: fixed macros to explicitly use
6126         unsigned long where needed
6127
6128 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
6129
6130         Feature req. 799831: added code to allow nesting of critical functions
6131         * src/mcs51/gen.c (genFunction, genEndFunction)
6132         * src/ds390/gen.c (genFunction, genEndFunction)
6133
6134 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6135
6136         * src/SDCCsymt.c (sclsFromPtr),
6137         * src/SDCCsymt.h,
6138         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
6139         support for standard C idiom of memory mapped variables; for
6140         example, *((xdata int*)0x1234) = 1 is now internally equivalent
6141         to xdata int at 0x1234 tempvar = 1.
6142         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
6143         provided by Akiya ISHIDA
6144
6145 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
6146
6147         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
6148         * src/SDCCval.c (constVal): added reduction from int to char
6149         * src/SDCCval.c (valMult, valDiv): fixed sign handling
6150         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
6151         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
6152         to ignore the sign
6153         * support/regression/tests/shifts.c: fixed
6154
6155 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6156
6157         * src/z80/gen.c (genXor): Fixed bug #805445
6158
6159 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6160
6161         Fixed bug #621531 (const & volatile confusion in the type chain).
6162         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
6163         refer to the const or volatile state of the pointer itself.
6164
6165         * src/SDCCast.c
6166         * src/SDCCglue.c
6167         * src/SDCCicode.c
6168         * src/SDCCsymt.c
6169         * src/SDCCval.c
6170         * src/SDCC.y
6171         * src/SDCCsymt.h
6172         * src/pic/gen.c
6173         * src/pic/ralloc.c
6174         * src/pic16/gen.c
6175         * src/pic16/ralloc.c
6176         * support/regression/tests/const.c
6177
6178 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6179
6180         When checking for duplicated modules, use absolute paths
6181         instead of relative paths.  Files changed:
6182
6183         * as/mcs51/lklib.c
6184         * link/z80/lklib.c
6185
6186 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6187
6188         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
6189
6190 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6191
6192         * device/include/string.h: added size_t typedef, changed
6193         prototypes to use size_t, eliminated separate reentrant and
6194         non-reentrant declarations, added _memmove declaration
6195         * device/lib/_memcpy.c: changed to use size_t instead of int,
6196         changed /4 to >>2 to avoid division library call
6197         * device/lib/_memcmp.c,
6198         * device/lib/_memset.c,
6199         * device/lib/_strncat.c,
6200         * device/lib/_strncpy.c,
6201         * device/lib/_strncmp.c: changed to use size_t instead of int
6202         * device/lib/_memmove.c: new file (fixed bug #772294)
6203         * device/lib/Makefile.in: added _memmove.c
6204         * device/lib/z80/asm_strings.s: fixed bug #772290
6205         * support/regression/tests/bitfields.c: attempt to fix host assertion
6206         failure on amd64-unknown-linux2.2
6207
6208 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6209
6210         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
6211         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
6212         * as/z80/asmain.c (main): fixed bug #801766
6213
6214 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
6215
6216         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
6217         compilers
6218
6219 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6220
6221         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
6222         reported in bug #800609
6223
6224 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
6225
6226         * Top header beautifications in src/pic16 directory:
6227           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
6228           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
6229           pcoderegs.h, ralloc.c, ralloc.h
6230         * main.c: added top header and GPL license notice
6231         * pcode.c: fixed the if-conditional warning
6232
6233 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
6234
6235         * device/lib/_mullong.c: replaced int by short for gcc
6236
6237 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6238
6239         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
6240         and JUMPTABLE iCodes properly now (worked by accident before)
6241         * src/mcs51/gen.c (leftRightUseAcc),
6242         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
6243         iCode properly now. Use getSize instead of nRegs since a & b
6244         aren't part of the nRegs tally.
6245
6246 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
6247
6248         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
6249         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
6250           before instructions that use the _STATUS register
6251
6252 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
6253
6254         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
6255         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
6256         fetching of the pointer
6257         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
6258         copied from genNearPointerSet()
6259         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
6260         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
6261         If they pop r0/r1 they must be called in the opposite order than aopOp().
6262         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
6263         (resp. --stack-auto), prepared for --xstack
6264
6265 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6266
6267         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
6268
6269 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
6270
6271         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
6272         these ports have their own __sdcc_external_start()
6273
6274 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
6275
6276         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6277         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
6278         type for bits was changed. It resulted in bit variables becoming
6279         global, which is not permitted in PIC 14 assembly output.
6280
6281 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6282
6283         * doc/sdccman.lyx: various additions and updates. Rearranged sections
6284
6285 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6286
6287         Z80 and MCS51 linkers complaint if a public symbol is defined
6288         in more than one library module:
6289
6290         * as/mcs51/lklib.c
6291         * link/z80/lklib.c
6292         * as/mcs51/Makefile.in
6293
6294 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6295
6296         A few small changes that speed up the peephole optimizer.
6297
6298         * src/SDCCpeeph.c
6299
6300 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6301
6302         Try to make the peephole optimizer smarter by maintaining
6303         an association between the assembly source code and the
6304         iCodes that originated them. Put this information to use
6305         with a new peephole rule condition "notVolatile" so that
6306         the rules can be aggressive yet still safe.
6307
6308         * src/SDCCpeeph.c
6309         * src/SDCCpeeph.h
6310         * src/mcs51/gen.c
6311         * src/mcs51/peeph.def
6312
6313 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6314
6315         Fixed bug #741761
6316
6317         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
6318         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
6319         if the left or right operand symbols have the accuse flag set.
6320
6321 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6322
6323         Changed the type of the result of the ! (NOT) operator to char;
6324         previously it returned the same type as the source. This allows
6325         us to eliminate all the genFloatNot functions (all of its target
6326         implementations were very buggy) since !float can use the same
6327         code as !long now.
6328
6329         * src/SDCCicode.c (ast2iCode): ! returns char
6330         * src/mcs51/gen.c (genNot, genNotFloat),
6331         * src/ds390/gen.c (genNot, genNotFloat),
6332         * src/z80/gen.c (genNot, genNotFloat),
6333         * src/pic/gen.c (genNot, genNotFloat),
6334         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
6335
6336 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
6337
6338         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6339         1. Interrupt would not compile properly. Ensure PCLATH register is saved
6340            during interrupts. Ensure WSAVE is located at a shared bank address.
6341         2. Fixed page selection in some places
6342         3. Fixed BTFSS/C to where necessary use registers directly and not simply
6343            the registers name strings.
6344         4. Fixed "signed / unsigned compare" compiler warnings.
6345         5. The PIC port manages its own allocation of the general purpose
6346            registers, but makes no attempt to reuse them. As a result when
6347            compiling it soon runs out of general purpose registers. Some
6348            additional code was added to the files pcode.c and device.c to walk
6349            through the function call tree and rename the registers so that they
6350            get reused.
6351
6352         * src/pic/device.c
6353         * src/pic/gen.c
6354         * src/pic/glue.c
6355         * src/pic/pcode.c
6356         * src/pic/pcode.h
6357         * src/pic/ralloc.c
6358         * src/pic/ralloc.h
6359         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
6360         genPlus() & genMinus() when the result is the same as left or right
6361
6362 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6363
6364         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
6365
6366 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6367
6368         Made bitfield a distinct type from bit so that bitfields
6369         convert as per ANSI C and bits retain their traditional
6370         boolean style behaviour. Implemented bitfield support in
6371         the z80 port.
6372
6373         * src/SDCCsymt.h,
6374         * src/SDCCsymt.c,
6375         * src/SDCCast.c,
6376         * src/cdbFile.c,
6377         * src/mcs51/gen.c,
6378         * src/ds390/gen.c: bit v bitfield split
6379         * src/z80/gen.c: New support for bitfields
6380         * support/regression/tests/bitfields.c: reenabled z80,
6381         added more tests
6382
6383 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6384
6385         Rules 246.x, 247.x relate to bitfields, the others speed up
6386         access to xdata mapped I/O devices.
6387
6388         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
6389
6390 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6391
6392         Cleaned up genPackBits and genUnpackBits and added two helper
6393         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
6394         for literal assignments in genPackBits (thanks to Frieder for
6395         reminding me).
6396
6397         * src/mcs51/gen.c
6398         * src/ds390/gen.c
6399
6400 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6401
6402         Fixed bug #748310 (pointer to function type mishandled when the
6403         function name is omitted). Also fixed a SIGSEGV when a function
6404         attribute (reentrant, etc) is used on a non-function or on a
6405         function but misplaced before the parameter list.
6406
6407         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
6408         bug #748310
6409         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
6410         * support/Util/SDCCerr.h,
6411         * support/Util/SDCCerr.c: Added func attr misuse error msg
6412
6413 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
6414
6415         Fixed bug #787649 by anonymous
6416         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
6417         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
6418
6419 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6420
6421         Fixed numerous bitfield problems.
6422
6423         * src/SDCC.y: More bitfield related error checking
6424         * src/SDCCsymt.h,
6425         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
6426         * support/Util/SDCCerr.h,
6427         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
6428         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
6429         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
6430         * support/regression/tests/bitfields.c: tests added
6431
6432 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6433
6434         Made the constant following the "interrupt" keyword optional. If
6435         omitted, the function will not automatically be given an entry
6436         in the interrupt vector table (similar to #pragma NOIV, but
6437         less syntacticly kludgy). The interrupt number is also now
6438         range checked. Also fixed a bug in the high order bit example
6439         in the manual.
6440
6441         * src/SDCC.y
6442         * src/SDCCmem.c
6443         * src/SDCCglue.c
6444         * src/SDCCsymt.h
6445         * support/Util/SDCCerr.c
6446         * support/Util/SDCCerr.h
6447         * doc/sdccman.lyx
6448
6449 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
6450
6451         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
6452         * src/SDCCicode.c (operandOperation): rewritten some ops
6453         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
6454         * src/SDCCsymt.c (computeType): literals are handled the same way as any
6455         other type
6456         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
6457         be re-activated by defining REDUCE_LITERALS)
6458         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
6459         unsigned, but are signed by default
6460         * src/SDCCval.c (constVal): rearranged
6461         * src/SDCCval.c (valMod): preliminary fix
6462         * src/SDCCval.c (valCastLiteral): use TYPE_* types
6463         * support/regression/literalop.c: added, work in progress
6464
6465 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6466
6467         Generate warnings for useless declarations like "char data;"
6468         that don't do what new users expect.
6469
6470         * src/SDCC.y
6471         * support/Util/SDCCerr.h
6472         * support/Util/SDCCerr.c
6473
6474 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
6475
6476         * src/SDCCval.c (valMult): fix overflow detection of negative int
6477
6478 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6479
6480         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
6481
6482         Changes to support big endian targets:
6483
6484         * src/ports.h
6485         * src/SDCCglue.c
6486         * src/avr/main.c
6487         * src/ds390/main.c
6488         * src/izt/i186.c
6489         * src/mcs51/main.c
6490         * src/pic/main.c
6491         * src/pic16/main.c
6492         * src/xa51/main.c
6493         * src/z80/main.c
6494
6495 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
6496
6497         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
6498         * device/lib/time.c: fixed warning "integer overflow in expression"
6499
6500 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
6501
6502         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
6503         * src/SDCCval.c (constVal): changed default to signed; hex and octal
6504         constants are unsigned; added recognition of "u" flag for unsigned
6505         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
6506         * src/SDCCval.c (valDiv, valMod): fixed signdness
6507         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
6508         signedness of modulo, left and right shift
6509         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
6510         * support/Util/SDCCerr.h: added warning W_INT_OVL
6511         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
6512         * src/SDCCast.c (ast_print): improved output of constants
6513
6514 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6515
6516         Fixed some warnings when building with MSVC:
6517
6518         * as\mcs51\asdata.c
6519         * as\z80\asdata.c
6520         * as\mcs51\asm.h
6521         * as\z80\asm.h
6522         * link\z80\aslink.h
6523         * link\z80\lkdata.c
6524         * link\z80\lkeval.c
6525         * link\z80\lkgb.c
6526         * link\z80\lkihx.c
6527         * link\z80\lks19.c
6528         * link\z80\lksym.c
6529         * support\cpp2\cpplib.c
6530         * src\ds390\gen.c
6531         * src\mcs51\gen.c
6532
6533 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
6534
6535         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
6536
6537 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6538
6539         * support\librarian\clean.mk: Do not remove Makefile.
6540         * support\librarian\Makefile: added.
6541
6542 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6543
6544         Added librarian to MSVC build:
6545         * all.dsp
6546         * sdcc.dsw
6547         * support\librarian\librarian.dsp
6548
6549         'configure' not needed for librarian, removed:
6550         * support\librarian\configure
6551         * support\librarian\configure.in
6552         * support\librarian\config_in.h
6553         * support\librarian\Makefile.in
6554
6555         Hopefully these ones built the librarian and the rest of sdcc properly:
6556         * Makefile
6557         * Makefile.common.in
6558
6559         Messed up 'configure', so revert to previous version:
6560         * configure
6561         * configure.in
6562
6563 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
6564
6565         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
6566         there, while the mantissa of a double is "only" 53 bits wide.
6567
6568 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6569
6570         Adding sdcclib to the build.  MSVC project coming soon.
6571         Files added/changed:
6572
6573         * support\librarian\clean.mk
6574         * support\librarian\configure
6575         * support\librarian\configure.in
6576         * support\librarian\config_in.h
6577         * support\librarian\Makefile.bcc
6578         * support\librarian\Makefile.in
6579         * support\librarian\sdcclib.c
6580         * Makefile.bcc
6581         * Makefile
6582         * Makefile.common.in
6583         * configure
6584         * configure.in
6585
6586 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6587
6588         Linker now complaints if linked modules have conflicting options, for
6589         example, one compiled using --model-large and another one compiled with
6590         --model-small.  The following files were modified:
6591
6592         * as\mcs51\asdata.c
6593         * as\mcs51\aslink.h
6594         * as\mcs51\asm.h
6595         * as\mcs51\asmain.c
6596         * as\mcs51\asout.c
6597         * as\mcs51\i51pst.c
6598         * as\mcs51\lkdata.c
6599         * as\mcs51\lklibr.c
6600         * as\mcs51\lkmain.c
6601         * as\z80\asdata.c
6602         * as\z80\asm.h
6603         * as\z80\asmain.c
6604         * as\z80\asout.c
6605         * as\z80\z80pst.c
6606         * link\z80\aslink.h
6607         * link\z80\lkdata.c
6608         * link\z80\lklibr.c
6609         * link\z80\lkmain.c
6610         * src\SDCCglue.c
6611
6612 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6613
6614         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
6615         as/mcs51/lklibr.c: Generate a warning when a library is not found.
6616
6617 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
6618
6619         * src/z80/mappings.i: fix _mul[us][int,long] entries
6620
6621 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6622
6623         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
6624
6625 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
6626
6627         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
6628         * support/regression/tests/bitopcse.c: added
6629         fixed warning:
6630         * src/avr/gen.c:
6631         * src/pic/gen.c:
6632         * src/pic16/gen.c:
6633         * src/z80/gen.c:
6634         * src/xa51/gen.c:
6635
6636 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6637
6638         added support for new library format to z80, gbz80 linkers:
6639         *link/z80/aslink.h
6640         *link/z80/lklex.c
6641         *link/z80/lklib.c
6642         *link/z80/lklist.c
6643
6644 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
6645
6646         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
6647         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
6648
6649 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
6650
6651         added DUMMY_READ_VOLATILE:
6652         * src/SDCC.y:
6653         * src/avr/gen.c:
6654         * src/xa51/gen.c:
6655         * src/z80/gen.c:
6656         * src/pic/gen.c:
6657         * src/pic16/gen.c:
6658         * src/mcs51/gen.c:
6659         * src/ds390/gen.c:
6660         * src/SDCCcse.c (algebraicOpts): many improvements
6661         * src/SDCCcse.h: removed algebraicOpts()
6662         * src/SDCCicode.c (picDummyRead): added
6663
6664 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6665
6666         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
6667         "Insufficient space in data memory".
6668
6669 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6670
6671         * src/mcs51/gen.c: fixed bug #771358
6672         * src/z80/gen.c: fixed bug #759087
6673
6674 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
6675
6676         * src/pic16/glue.c: minor cleanup by Vangelis
6677
6678 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6679
6680         * device/include/regc515c.h: fixed #758477
6681         * device/lib/_gptrget.c: saving some cycles in generic pointer get
6682         * device/lib/_gptrput.c: saved a few bytes
6683         * my tab spacing is 8, yours too?)
6684         * device/lib/_ser.c: process RX bytes earlier than TX bytes
6685         * device/lib/serial.c: process RX bytes earlier than TX bytes
6686         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
6687
6688 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6689
6690         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
6691
6692 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6693
6694     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
6695
6696 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
6697
6698         * device/lib/Makefile.in: bad fix, reverted to 1.43
6699
6700 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
6701
6702         * device/lib/Makefile.in: added missing z80 object files
6703
6704 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
6705
6706         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
6707         pic16 progress by Vangelis:
6708         * src/SDCCglobl.h:
6709         * src/SDCCmain.c:
6710         * src/pic/Makefile:
6711         * src/pic:
6712         * pic/Makefile:
6713         * pic16/device.c:
6714         * pic16/device.h:
6715         * pic16/gen.c:
6716         * pic16/gen.h:
6717         * pic16/genarith.c:
6718         * pic16/glue.c:
6719         * pic16/main.c:
6720         * pic16/pcode.c:
6721         * pic16/pcode.h:
6722         * pic16/pcodepeep.c:
6723         * pic16/peeph.def:
6724
6725 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6726
6727     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
6728
6729 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6730
6731     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
6732     added gbz80 build to MSVC project.
6733     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
6734     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
6735     from 8051 stuff and setup so it links using a .lnk file.
6736
6737 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6738
6739     * support/librarian/sdcclib.c: sdcc librarian.
6740     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
6741     with sdcclib.
6742
6743 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6744
6745     * as/mcs51/lkmain.c: properly handle extensions in function afile.
6746
6747 2003-07-02  Borut Razem <borut.razem AT siol.net>
6748
6749         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
6750         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
6751         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
6752         src/xa51/main.c, src/z80/main.c:
6753         virtualization of glue() function: each port has it's own glue function,
6754         which is accessed by do_glue function pointer in PORT.general structure
6755
6756 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
6757
6758         * DS800C400 fun, improved ROM interface and tinibios.
6759
6760 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
6761
6762         * More support for DS80C400. Now includes beginning of interface to ROM.
6763
6764 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
6765
6766         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
6767
6768 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6769
6770         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
6771
6772 2003-06-19  Borut Razem <borut.razem AT siol.net>
6773
6774         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
6775
6776 2003-06-19  Borut Razem <borut.razem AT siol.net>
6777
6778         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
6779         fixed Z80 port - crt0.o: cannot open.
6780
6781 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
6782
6783         * support/Util/MySystem.c (merge_command): revert bad fix
6784
6785 2003-06-18  Borut Razem <borut.razem AT siol.net>
6786
6787         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
6788
6789 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6790
6791         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
6792         option --use-stdout sends errors to stdout instead of stderr.
6793
6794 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
6795
6796         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
6797
6798 2003-06-15  Borut Razem <borut.razem AT siol.net>
6799
6800         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
6801         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
6802         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
6803         fixed width array of pointers replaced with sets;
6804         multiple include and lib paths ared transferred to preprocessor and linker
6805         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
6806         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
6807         fixed width array of pointers
6808         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
6809         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
6810         fixupPath(), getPathDifference()
6811         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
6812         fixed width array of pointers
6813
6814 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
6815
6816         * src/pic16/ralloc.c: fix warnings
6817         * src/pic16/pcode.c: fix warning
6818
6819 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
6820
6821          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
6822         know all the details, but essentially this set of changes enable
6823         the pic16 port to generate movff instructions and generate assembler
6824         directives,
6825         * src/SDCCmain.c:
6826         * src/pic16/gen.c:
6827         * src/pic16/glue.c:
6828         * src/pic16/pcode.c:
6829         * src/pic16/device.c:
6830         * src/pic16/main.c:
6831         * src/pic16/pcode.h:
6832         * src/pic16/pcoderegs.c:
6833         * src/pic16/ralloc.c:
6834         * src/pic16/ralloc.h:
6835
6836 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6837
6838         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
6839         added option --vc, so sdcc errors and warnings are compatible with
6840         Microsoft Visual Studio.
6841
6842 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6843
6844         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
6845           device/lib/libfloat.lib: added atof function.
6846
6847 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
6848
6849         * doc/sdccman.lyx: updated to Lyx 1.3
6850         * doc/cdbfileformat.lyx: updated to Lyx 1.3
6851         * doc/test_suite_spec.lyx: updated to Lyx 1.3
6852         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
6853
6854 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
6855
6856         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
6857
6858 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6859
6860         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
6861           additions to the "related tools/documentation" section
6862
6863 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
6864
6865         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
6866
6867 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
6868
6869         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
6870         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
6871
6872 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
6873
6874         * doc/sdccman.lyx: fix double dash and other minor things
6875         * doc/Makefile: fix double dash
6876
6877 2003-05-28  Karl Bongers(patches from Martin Helmling)
6878         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
6879           condition and ignore commands.
6880
6881 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6882
6883         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
6884           is in parts still quite out of date, I did changes as far as I felt makes sense
6885           for a non-native english speaker.
6886           Please feel free to add to the manual or to correct my changes.
6887         * doc/Makefile: undid touching the date of intermediate tex files.
6888
6889 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6890
6891         * doc/sdccman.lyx: Manual has an index now
6892
6893 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
6894
6895         Finalize muluint/mulsint and mululong/mulslong merging:
6896         * device/lib/_mulint.c
6897         * device/lib/_mullong.c
6898         * device/lib/gbz80/mul.s
6899         * device/lib/gbz80/stubs.s
6900         * device/lib/z80/mul.s
6901         * device/lib/z80/stubs.s
6902         * src/SDCCsymt.c (initCSupport)
6903
6904 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6905
6906         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
6907         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
6908           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
6909           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
6910           instead of /Zm500.
6911
6912 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6913
6914         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
6915           the regression tests I'm not brave enough to enable 245.b, 245.c
6916         * doc/sdccman.lyx: added latex preamble for hyperref package.
6917           Using pdflatex this will give you a hyperlinked pdf file with
6918           bookmarks. (prepend '%' before /usepackage if this breaks something)
6919
6920 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6921
6922          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
6923
6924 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
6925
6926         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
6927
6928 2003-05-21    <johan AT balder>
6929
6930         * src/SDCCglue.c (printIval): fixed bug #739934
6931
6932 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
6933
6934         Applied patch from bug 737905 (renamed yylineo to mylineno):
6935         * src/altlex.c
6936         * src/SDCCast.c
6937         * src/SDCglobl.h
6938         * src/SDCC.lex
6939         * src/SDCCsymt.c
6940         * src/SDCCval.c
6941         * src/pic16/pcode.c: Cleaned warnings
6942         * src/pic16/pcodeflow.c: Cleaned warnings
6943         * src/pic16/pcoderegs.c: Cleaned warnings
6944
6945 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
6946
6947         * src/pic16/pcode.c: Cleaned warnings
6948         * src/pic16/pcodepeep.c: Cleaned warnings
6949         * src/pic16/ralloc.c: Cleaned warnings
6950
6951 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
6952
6953         * doc/sdccman.lyx: fixed bug 739745
6954         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
6955
6956 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
6957
6958         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
6959         it can be defined with CFLAGS when running configure
6960         * src/SDCCmain.c: fixed compiling + linking with object files
6961
6962 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
6963
6964         * configure.in: configure for pic16 port,
6965             added --disable-pic16-port
6966         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
6967         * src/SDCCmain.c: linkOptions is changed to set *,
6968             added if/endif conditional macros to remove options help
6969             messages from optionsTable when a port is not configured, added
6970             support for the PIc16 port in the ports table, when executing
6971             the compiler with no port specified on command line, a default
6972             port is selected with the new macro DEFAULT_PORT which is
6973             defined in port.h, in setDefaultOptions() linkOptions is removed
6974             from initialization assignment, since now it is a set,
6975             parseCmdLine uses setParseWithComma for linkOptions, in
6976             linkEdit() linkOptions are accessed with new function indexSet()
6977             which returns the i'th item of a set variable. See SDCCset.c, in
6978             linkEdit() when calling buildCmdLine(), added linkOptions as
6979             last argument. Now users can pass arguments to gplink via the
6980             -Wl option, main() uses pic16glue() to glue up pic16 programs
6981         * src/SDCCpeeph.c: various changes to support pic16
6982         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
6983             return the i'th item of the set
6984         * src/SDCCset.h: added function prototype for indexSet()
6985         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
6986         * src/clean.mk: added pic16 in CLEANALLPORTS variable
6987         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
6988             added macro DEFAULT_PORT
6989         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
6990         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
6991             generated
6992         * src/pic16/glue.c: commented out some error producing lines
6993         * src/pic16/main.c: __config directives are commented out to stop
6994             gpasm complaining and test the linkage with gplink, _linkCmd and
6995             _asmCmd changed to be more gplink and gpasm friendly
6996         * src/pic16/peeph.def: peep rule 3 is commented out, since it
6997             produced an error when parsed, peep rule 12 is added to utilize
6998             movff, but it is commented out since the pCode does not support
6999             yet a command with 2 address arguments
7000
7001 2003-05-18    <johan AT balder>
7002
7003         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7004         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7005 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
7006
7007         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
7008   Added feature to script commands from file.
7009
7010 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
7011
7012         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
7013         * src/SDCCutil.c: include ctype.h for win32
7014
7015 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
7016
7017         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
7018
7019 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
7020
7021         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
7022   Fixed so you can set breakpoints prior to run, run does not stop
7023   on entry now.  Add tbreak.  Other enhancements and fixes for use
7024   with ddd.
7025
7026 2003-05-12  Borut Razem <borut.razem AT siol.net>
7027
7028         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
7029
7030 2003-05-11  Borut Razem <borut.razem AT siol.net>
7031
7032         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
7033         the path of bin directory, so that PATH is the only env. variable, which has to be set
7034         in case of standard installation.
7035         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
7036         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
7037         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
7038
7039 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7040
7041         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
7042         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
7043         temp files are in the port dir; clean the gen/test directory when
7044         generating new test.c
7045         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
7046         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
7047         * support/regression/tests/zeropad.c: added
7048
7049 2003-05-09    <johan AT balder>
7050
7051         * src/SDCCglue.c: fixed bug #597940
7052
7053 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
7054
7055         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7056   cache sfr, optimize next,step, fix off by one sourceline,
7057   support ddd list function.
7058         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
7059
7060 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7061
7062         * support/regression/HTMLgen.py: added compare_s2f()
7063         * support/regression/Makefile: redo 1.27
7064         * support/regression/generate-cases.py: redo 1.5
7065
7066 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
7067
7068         * support/regression/tests/float.c: workaround 33 bit hex constant
7069         * support/regression/tests/simplefloat.c: fix division for host
7070
7071 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
7072
7073         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
7074         that tame's the PIC's over-aggressive optimizer.
7075
7076 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7077
7078          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
7079          support for MSVC.
7080
7081 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
7082
7083         Initial support for DS80C400. "Hello world" runs on TINIm400
7084         (with polled I/O).
7085
7086 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
7087
7088          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7089          * Some notes on ddd usage added in debugger/README
7090          Martin Helmling adding more features and fixes for ddd GUI debugger.
7091          Code added for nexti, stepi, up, down, and other adjustments.
7092
7093 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
7094
7095         * src/pic/pCodepeep.c non-wildcard asmops are now handled
7096         * src/pic/peeph.def Added two rules to optimize carry manipulation
7097         * src/pic/* removed debug printfs
7098
7099 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
7100
7101         * debugger/mcs51/cmd.c: added header newalloc.h
7102
7103 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
7104
7105         * as/Makefile: new EXEEXT
7106         * as/z80/Makefile: remove trailing slash of BUILDIR
7107         * as/z80/clean.mk: new EXEEXT
7108         * Makefile.common.in: add to CFLAGS (and others), don't replace it
7109         * support/cpp2/Makefile.in: new EXEEXT
7110         * src/pic/glue.c (pic14emitRegularMap): fixed warning
7111
7112 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
7113
7114         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
7115         EXEEXT was introduced to fix all related problems with targets
7116         "clean", "install" and "uninstall"; a couple of further flaws
7117         especially with "clean" have been fixed too
7118         * as/mcs51/Makefile.in
7119         * as/mcs51/clean.mk
7120         * as/z80/Makefile
7121         * Makefile
7122         * clean.mk
7123         * debugger/mcs51/Makefile.in
7124         * debugger/mcs51/clean.mk
7125         * link/z80/Makefile
7126         * link/z80/Makefile.in
7127         * link/z80/clean.mk
7128         * link/Makefile
7129         * packihx/Makefile.in
7130         * packihx/clean.mk
7131         * sim/ucsim/Makefile
7132         * sim/ucsim/clean.mk
7133         * sim/ucsim/avr.src/Makefile.in
7134         * sim/ucsim/avr.src/clean.mk
7135         * sim/ucsim/s51.src/Makefile.in
7136         * sim/ucsim/s51.src/clean.mk
7137         * sim/ucsim/xa.src/Makefile.in
7138         * sim/ucsim/xa.src/clean.mk
7139         * sim/ucsim/z80.src/Makefile.in
7140         * sim/ucsim/z80.src/clean.mk
7141         * sim/ucsim/main_in.mk
7142         * sim/ucsim/packages_in.mk
7143         * sim/ucsim/gui.src/Makefile.in
7144         * sim/ucsim/gui.src/serio.src/Makefile.in
7145         * sim/ucsim/gui.src/serio.src/clean.mk
7146         * src/Makefile.in
7147         * src/clean.mk
7148         * support/cpp2/Makefile.in
7149         * support/cpp2/clean.mk
7150         * support/makebin/Makefile
7151         * support/makebin/clean.mk
7152         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
7153         * doc/sdccman.lyx: --program-suffix no longer needed
7154
7155 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
7156
7157          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
7158          Martin Helmling added support for ddd GUI debugger.
7159          Code added to display assembly, set variables, and other commands
7160          to interface to ddd.
7161
7162 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
7163
7164         * as/Makefile: fix target clean
7165         * as/clean.mk: fix target clean
7166         * as/z80/clean.mk: fix target clean
7167
7168 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
7169
7170         * Makefile.common.in: added  AT EXEEXT AT
7171         * configure.in: removed all mingw32 stuff
7172         * configure: rebuilt from configure.in
7173         * doc/sdccman.lyx: updated section "installation"
7174         * support/scripts/sdcc_mingw32: adapted to configure
7175         * support/scripts/sdcc_cygwin_mingw32: added
7176
7177 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
7178
7179         * src/pic Added object file support for the PIC port
7180         * src/pic Applied patch from Craig Franklin (this started the object file support)
7181         * src/regression Updated the PIC regression tests for object files
7182
7183 2003-04-20  Borut Razem <borut.razem AT siol.net>
7184
7185         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
7186           lklex.c: In function `getfid':
7187           lklex.c:203: warning: array subscript has type `char'
7188         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
7189           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
7190         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
7191           stack handling macros
7192
7193 2003-04-19  Borut Razem <borut.razem AT siol.net>
7194
7195         * "handling space characters in file path" task:
7196         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
7197         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
7198         * support/Util/MySystem.h: make it self-sufficient
7199         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
7200           src/z80/main.c, sdcc/as/mcs51/lklex.c:
7201           handling space characters in file path
7202         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
7203           (it will be used by assemblers, which have their own includes, e.g. gpasm)
7204         * support/Util/MySystem.c: handling space characters in executable's path
7205
7206 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
7207
7208         * as/z80/Makefile: fix permanent rebuild of z80
7209         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
7210         * support/regression/tests/bitfields.c: added Johan's bitfields.c
7211
7212 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
7213
7214         * src/SDCCopt.c: add special case optimization to replace modulo by
7215           a power of two with a bitwise AND.
7216
7217 2003-04-18    <johan AT balder>
7218
7219         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
7220
7221 2003-04-17    <johan AT balder>
7222
7223         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
7224         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
7225
7226 2003-04-13  Borut Razem <borut.razem AT siol.net>
7227
7228         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
7229         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
7230           fixed mingw problem in adl_NORMALIZE_PATH
7231
7232 2003-04-12  Borut Razem <borut.razem AT siol.net>
7233
7234         * fixed "#pragma SAVE/RESTORE can not be nested":
7235         * src/SDCC.lex: reworked pragma handling functions
7236         * sdcc/src/SDCCglobl.h: reworked stack handling macros
7237         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
7238
7239 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7240
7241         * src/SDCCutil.c (pathEquivalent): defined but not used
7242         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
7243         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
7244         * configure: rebuilt from configure.in
7245         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7246         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7247         * device/include/Makefile.in: replace sdcc_datadir
7248         * device/lib/Makefile.in: replace sdcc_datadir
7249         * Makefile.common.in: add LDFLAGS from configure
7250         * packihx/Makefile.in: use LDFLAGS
7251         * src/Makefile.in: use LDFLAGS
7252         * support/cpp2/Makefile.in: add LDFLAGS from configure
7253         * support/makebin/Makefile: use LDFLAGS
7254         * .version: bumped version number to 2.3.5
7255
7256 2003-04-12  Borut Razem <borut.razem AT siol.net>
7257
7258         * completed "different paths" task:
7259         * src/SDCCmacro.c: fixed bug in handling quotes
7260         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
7261         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
7262
7263 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7264
7265         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
7266
7267 2003-04-11 kevin Vigor <kevin AT vigor.nu>
7268
7269         * ds390/gen.c ds390/peeph.def: fix bug 706781
7270
7271 2003-04-11  Borut Razem <borut.razem AT siol.net>
7272
7273         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
7274
7275 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
7276
7277         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
7278         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
7279          set - this bit used to not be set...).
7280         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
7281           bad code in PIC Port
7282         * src/regression/and2.c added to test bug 609268
7283         * src/regression/Makefile added and2.c to regression test
7284
7285
7286 2003-04-08    <johan AT CP255758-A>
7287
7288         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
7289         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
7290         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
7291
7292 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
7293
7294         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
7295         fix bug #487815
7296         * support/cpp2/Makefile.in: fix bug #487815
7297         * configure: rebuilt from configure.in
7298         * Makefile.common.in: docdir changed, new path suffixes
7299         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7300         * sdcc_vc_in.h: reflect changes from sdccconf.h
7301         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
7302         * src/SDCCutil.h: remove BINDIR hack
7303         * doc/sdccman.lyx: update new path hierarchy
7304
7305 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7306
7307         * src/SDCCpeeph.c: added okToRemoveSLOC test
7308
7309 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7310
7311         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
7312
7313 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7314
7315         * src/SDCCpeeph.c: added labelIsReturnOnly test
7316         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
7317
7318 2003-04-05    <johan AT balder>
7319
7320         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
7321         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
7322         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
7323         * src/SDCCast.c: fixed a warning
7324         * src/SDCCast.h: fixed a warning
7325         * src/SDCCicode.c (operandFromAst): fixed a warning
7326
7327 2003-04-04    <johan AT balder>
7328
7329         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
7330         * src/SDCCast.c (decorateType): fixed bug #715076
7331         * src/SDCC.y: fixed bug #702907
7332
7333 2003-04-03    <johan AT balder>
7334
7335         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
7336         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
7337         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
7338         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
7339         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
7340
7341 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
7342
7343         * _decdptr.c: fix return values
7344         * _gptrget.c: fix return values
7345         * _gptrgetc.c: fix return values
7346         * _gptrput.c: fix return values
7347         * _mulint.c: fix return values
7348         * as/z80/Makefile: fix 'make -j' problem
7349
7350 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
7351
7352         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
7353         * configure.in: big cleanup, updated to autoconf 2.5x
7354         * configure: rebuilt from configure.in
7355         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7356         * sdcc_vc_in.h: reflect changes from sdccconf.h
7357         * doc/Makefile: fixed a flaw in "make install"
7358
7359 2003-04-02    <johan AT balder>
7360
7361         * src/ds390/gen.c (genCmp): no comments
7362         * src/mcs51/gen.c (genCmp): no comments
7363         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
7364         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
7365
7366 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
7367
7368         * support/regression/generate-cases.py: place generated file in given sub directory
7369         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
7370         * support/regression/Makefile: improvements for 'make -j';
7371         side effect: it's simpler and faster now
7372
7373 2003-03-31  Borut Razem <borut.razem AT siol.net>
7374
7375         * src/z80/main.c: link-{port} and as-{port} defined without path
7376         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
7377
7378 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
7379
7380         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
7381
7382 2003-03-30  Borut Razem <borut.razem AT siol.net>
7383
7384         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
7385           changed type of list parameter to set
7386         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
7387         * src/port.h: changed type of do_assemble() parameter to set
7388         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
7389           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
7390           definition of "cppoutfilename" macro with NULL value in preProcess()
7391         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
7392         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
7393         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
7394           replaced with set *binPathSet
7395         * shash_add() deallocates the item, if allready exsists, before adding the new one
7396         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
7397
7398 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
7399
7400         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
7401           a nested for loop bug in the PIC port
7402         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
7403           for loops
7404
7405 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
7406
7407         * support/Util/dbuf.h: remove C++ stuff to make it portable
7408
7409 2003-03-28  Borut Razem <borut.razem AT siol.net>
7410
7411         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
7412           literal strings in stringLiteral()
7413         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
7414         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
7415           to the project
7416
7417 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
7418
7419         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
7420
7421 2003-03-26    <johan AT balder>
7422
7423         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
7424         * src/ds390/gen.c (saveRegisters): catched symbol abuse
7425         * src/SDCCast.c (decorateType): fixed " -v < 3"
7426
7427 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
7428
7429         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
7430         Added Lenny Story's debug infrastructure changes:
7431         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
7432         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
7433         * src/cdbFile.c: added
7434         * src/SDCCdebug.c: added
7435         * src/SDCCdebug.h: added
7436         * src/SDCCast.c (createFunction)
7437         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
7438         * src/SDCCmain.c (parseCmdLine, main)
7439         * src/SDCCmem.c (redoStackOffsets)
7440         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
7441         * src/SDCCsymt.h
7442         * src/common.h
7443         * src/avr/gen.c (genAVRCode)
7444         * src/ds390/gen.c (gen390Code)
7445         * src/mcs51/gen.c (gen51Code)
7446         * src/pic/gen.c (genpic14Code)
7447         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
7448         * src/xa51/gen.c (genXA51Code)
7449         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
7450
7451 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7452
7453         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
7454         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
7455
7456 2003-03-22    <johan AT balder>
7457
7458         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
7459
7460 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
7461
7462         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
7463         * doc/cdbfileformat.lyx: added, written by Lenny Story
7464         * doc/Makefile: added cdbfileformat.lyx
7465         * doc/clean.mk: added cdbfileformat.lyx
7466
7467 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
7468
7469         * src/mcs51/peeph.def: fix bug #705773
7470
7471 2003-03-20    <johan AT balder>
7472
7473         An sfr/sbit can have an "at #" AND an initializer
7474         * src/SDCCsymt.c (checkSClass):
7475         * src/SDCCmem.c (allocGlobal):
7476         * src/SDCCmem.c (allocLocal):
7477         * src/SDCCast.c (createBlock):
7478
7479 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
7480
7481         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
7482
7483 2003-03-16    <johan AT balder>
7484
7485         Undid the hackup of const and volatile, the problem is much bigger
7486         * src/SDCC.y:1.65
7487         * src/SDCCast.c:1.171
7488         * src/SDCCglue.c:1.138
7489         * src/SDCCicode.c:1.146
7490         * src/SDCCsymt.c:1.150
7491         * src/SDCCval.c:1.65
7492
7493 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
7494
7495         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
7496         * src/ds390/gen.c (genAddrOf): fixed bug #704087
7497
7498 2003-03-13    <johan AT balder>
7499
7500         Hackup const and volatile modifiers in type chains a bit:
7501         * src/SDCC.y:1.63
7502         * src/SDCCast.c:1.169
7503         * src/SDCCglue.c:1.136
7504         * src/SDCCicode.c:1.143
7505         * src/SDCCsymt.c1.146
7506         * src/SDCCsymt.h1.59
7507         * src/SDCCval.c:1.63
7508
7509 2003-03-12    <johan AT balder>
7510
7511         * src/SDCCBBlock.h: more LRH debugging junk
7512         * src/SDCCcflow.h: more LRH debugging junk
7513         * src/SDCCloop.c: more LRH debugging junk
7514         * src/SDCC.y (struct_declaration): fixed bug #697590
7515         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
7516         * src/ds390/gen.c (aopForRemat): fixed bug #700031
7517         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
7518
7519 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7520         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
7521         test function names must now match exactly).
7522         * src/SDCCcse.c: added special case in findCheaperOp to allow
7523         extending a short integer. Makes less awful code for bug 700121 test case.
7524
7525 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7526
7527         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
7528         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
7529
7530 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7531
7532         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
7533         actually called (operandsNotEqual() was called for all
7534         operandsNotEqualX tests).
7535
7536 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7537
7538         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
7539         with shorter literals. Fixes bug 700121.
7540
7541 2003-03-11    <johan AT balder>
7542
7543         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
7544
7545 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
7546
7547         * src/SDCCloop.c (mergeRegions): an evil beast is dead
7548         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
7549
7550 2003-03-10  Borut Razem <borut.razem AT siol.net>
7551
7552         * src/SDCCmain.c: pipe preprocessor's output
7553         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
7554         * sdcc_vc_in.h: define pclose as _pclose for WIN32
7555         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
7556         which closes all pipes in pipeSet set
7557         * src/SDCCset.c: free deleted item in function deleteSetItem()
7558         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
7559         moved from z80 to src subproject
7560         * .version: increased version number to 2.3.4
7561
7562 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
7563
7564         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
7565         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
7566         * support/regression/ports/xa51/spec.mk: fix typo
7567
7568 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
7569
7570         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
7571
7572 2003-03-09  Borut Razem <borut.razem AT siol.net>
7573
7574         * src/SDCCmain.c: pipe preprocessor's output
7575         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
7576         * sdcc_vc_in.h: define pclose as _pclose for WIN32
7577         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
7578         which closes all pipes in pipeSet set
7579         * src/SDCCset.c: free deleted item in function deleteSetItem()
7580         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
7581         moved from z80 to src subproject
7582
7583 2003-03-09  Borut Razem <borut.razem AT siol.net>
7584
7585         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
7586         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
7587         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
7588         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
7589         * src/SDCCglobl.h: unification of WIN32 native definitions
7590
7591 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7592
7593         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
7594
7595 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
7596
7597         * src/configure.in:   check for endianess (even while cross-compiling)
7598         * src/configure:      check for endianess (even while cross-compiling)
7599         * src/configure_in.h: check for endianess (even while cross-compiling)
7600         * src/avr/gen.c:        remove old endianess stuff
7601         * src/mcs51/gen.c:      remove old endianess stuff
7602         * src/ds390/gen.c:      remove old endianess stuff
7603         * src/pic/gen.c:        remove old endianess stuff
7604         * src/pic/genarith.c:   remove old endianess stuff
7605         * src/pic/glue.c:       fix endianess check
7606         * src/pic16/gen.c:      remove old endianess stuff
7607         * src/pic16/genarith.c: remove old endianess stuff
7608         * src/pic16/glue.c:     fix endianess check
7609         * src/xa51/gen.c:       remove old endianess stuff
7610         * src/z80/gen.c:        fix endianess check
7611         * src/SDCCglue.c:       fix endianess check
7612         * src/ds390/peeph.def: fix bug 700036
7613
7614 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
7615
7616         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
7617         * src/configure: find appropriate data-types on host for SDCC's int and long
7618         * src/configure.in: find appropriate data-types on host for SDCC's int and long
7619         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
7620         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
7621
7622 2003-03-07    <johan AT balder>
7623
7624         Just a big NOOP:
7625                 some minor cleanups before the big shot
7626                 OP_DEFS and OP_USES now use Kevin's protection
7627                 new option --nolabelopt
7628
7629         * src/SDCCBBlock.c:
7630         * src/SDCCast.c,:
7631         * src/SDCCcflow.c:
7632         * src/SDCCcse.c:
7633         * src/SDCCicode.c:
7634         * src/SDCCicode.h:
7635         * src/SDCClabel.c:
7636         * src/SDCCloop.c:
7637         * src/SDCCmain.c:
7638         * src/ds390/ralloc.c:
7639         * src/mcs51/ralloc.c:
7640         * src/pic/ralloc.c:
7641         * src/xa51/ralloc.c:
7642         * src/z80/ralloc.c:
7643
7644 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
7645
7646         * src/pic/pcode.c (get_op): fix 64 bit warnings
7647         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
7648         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
7649         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
7650         * support/regression/tests/malloc.c: fix 64 bit warnings
7651
7652 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
7653
7654         * src/mcs51/gen.c (genMinus): fixed bug 696436
7655
7656 2003-03-02  Borut Razem <borut.razem AT siol.net>
7657
7658         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
7659
7660 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
7661
7662         * configure.in: test for mkstemp
7663         * sdccconf_in.h: add HAVE_MKSTEMP
7664
7665 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
7666
7667         * device/include/ctype.h: removed warning while using --stack-auto
7668         * device/include/malloc.h: removed warning while using --stack-auto
7669         * device/include/string.h: removed warning while using --stack-auto
7670
7671 2003-02-23  Borut Razem <borut.razem AT siol.net>
7672
7673         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
7674         because NDEBUG is defined (see man assert)
7675         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
7676
7677 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7678
7679         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
7680         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
7681
7682 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7683
7684         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
7685         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
7686
7687 2003-02-18    <johan AT balder>
7688
7689         * as/mcs51/asmain.c (asmbl): module can start with a digit
7690         * as/z80/asmain.c (asmbl): module can start with a digit
7691
7692 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
7693
7694         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
7695         * src/asm.c: fix pipe() for Mingw32
7696
7697 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
7698
7699         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
7700         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
7701         make -V work again; --c1mode reads now from stdin
7702         * doc/sdccman.lyx: added --c1mode
7703         * support/Util/SDCCerr.c: new messages for c1 mode
7704         * support/Util/SDCCerr.h: new messages for c1 mode
7705         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
7706
7707 2003-02-15    <johan AT balder>
7708
7709         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
7710
7711 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
7712
7713         * doc/sdccman.lyx: Environment variables, -o and other minor things
7714
7715 2003-02-14    <johan AT balder>
7716
7717         * src/xa51/main.c: before anyone really tries to use it :)
7718
7719         * Install doc's in share/sdcc/doc
7720         * removed some obsolete files
7721         * Do a proper make distclean and uninstall
7722         M Makefile.common.in
7723         R sdccbuild.sh
7724         M as/Makefile
7725         M device/include/Makefile.in
7726         M device/lib/Makefile.in
7727         M doc/sdccman.lyx
7728         M link/Makefile
7729         M sim/ucsim/doc/Makefile.in
7730         M src/clean.mk
7731         R src/avr/peeph.rul
7732         R src/xa51/peeph.rul
7733         M support/cpp2/Makefile.in
7734         M support/makebin/Makefile
7735
7736
7737 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
7738
7739         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
7740
7741 2003-02-10  Borut Razem <borut.razem AT siol.net>
7742
7743         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
7744         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
7745         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
7746         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
7747         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
7748         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
7749         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
7750         src/z80/Makefile.bcc: Borland Makefile cleanup
7751         * as/z80/Makefile.bcc: Added Borland Makefile
7752         * support/cpp2/borland.h: Removed
7753
7754 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
7755
7756         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
7757         * src/SDCC.lex: new pragma NOIV
7758         * src/SDCCglobl.h: new pragma NOIV
7759         * src/SDCCmem.c: new pragma NOIV
7760
7761 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
7762
7763         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
7764
7765 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
7766
7767         * src/SDCCmain.c: signal handling is switched off by --debug
7768         * doc/Makefile: small fix for install; use clean.mk again
7769         * doc/clean.mk: clean *.pdf and *.html too
7770
7771 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
7772
7773         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
7774         * device/lib/printfl.c: fix a ds390 bug by making it portable
7775         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
7776         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
7777         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
7778         * debugger/mcs51/cmd.c: converted multi-line string literals
7779         * sim/ucsim/globals.cc: converted multi-line string literals
7780         * src/SDCCmain.c: introduced signal handler to remove temp files
7781         * doc/Makefile: small tweaks, implement clean
7782         * doc: removed generated files
7783
7784 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7785
7786         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
7787         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
7788         Address Record is not correctly generated for DS390."
7789
7790 2003-02-02  Borut Razem <borut.razem AT siol.net>
7791
7792         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
7793         * as/mcs51/asm.h: fixed compilation with Borland C
7794         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
7795         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
7796         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
7797         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
7798         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
7799         src/z80/Makefile.bcc: delete $(LIB) only if exist
7800         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
7801
7802 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
7803
7804         * device/include/malloc.h: introduced NULL
7805         * device/include/string.h: introduced NULL
7806         * device/include/stdlib.h: introduced NULL
7807         * device/lib/_memcpy.c: removed NULL
7808         * device/lib/_strcat.c: removed NULL
7809         * device/lib/_strchr.c: removed NULL
7810         * device/lib/_strcmp.c: removed NULL
7811         * device/lib/_strcpy.c: removed NULL
7812         * device/lib/_strcspn.c: removed NULL
7813         * device/lib/_strlen.c: removed NULL
7814         * device/lib/_strncat.c: removed NULL
7815         * device/lib/_strncmp.c: removed NULL
7816         * device/lib/_strncpy.c: removed NULL
7817         * device/lib/_strpbrk.c: removed NULL
7818         * device/lib/_strrchr.c: removed NULL
7819         * device/lib/_strspn.c: removed NULL
7820         * device/lib/_strstr.c: removed NULL
7821         * device/lib/_strtok.c: removed NULL
7822         * device/lib/malloc.c: removed NULL, include own header
7823
7824 2003-02-02    <johan AT balder>
7825
7826         * 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
7827         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
7828         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
7829         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
7830         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
7831         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
7832
7833 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7834
7835         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
7836         area 'DATA'"
7837
7838 2003-02-01    <johan AT balder>
7839
7840         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
7841
7842 2003-01-31    <johan AT CP255758-A>
7843
7844         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
7845
7846 2003-01-30    <johan AT balder>
7847
7848         * src/SDCCBBlock.c: automatic bug detection
7849         * src/SDCCicode.c: automatic bug detection
7850
7851 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7852
7853         * src/SDCCglobl.h:   now --xram-size 0 works
7854         * src/SDCCmain.c:    now --xram-size 0 works
7855
7856 2003-01-29    <johan AT balder>
7857
7858         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
7859
7860 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7861
7862         * as/mcs51/aslink.h: Added options --xram-size and --code-size
7863         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
7864         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
7865         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
7866         * src/SDCCglobl.h:   Added options --xram-size and --code-size
7867         * src/SDCCmain.c:    Added options --xram-size and --code-size
7868
7869 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
7870
7871         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
7872         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
7873
7874 2003-01-27    <johan AT balder>
7875
7876         * src/SDCC.y: fixed bug #613764
7877
7878 2003-01-26    <johan AT balder>
7879
7880         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
7881         * src/SDCCsymt.h: fixed bug #673374
7882         * src/SDCCglue.c: fixed bug #661910
7883         * src/SDCCast.c: fixed bug #458099 and 673374
7884
7885 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
7886
7887         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
7888         * as/mcs51/strcmpi.h: added
7889         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
7890         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
7891         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
7892         * as/mcs51/assym.c: strcmpi -> as_strcmpi
7893         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
7894         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
7895         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
7896         * as/mcs51/Makefile.aslink: new module strcmpi
7897         * as/mcs51/Makefile.asx8051: new module strcmpi
7898         * as/mcs51/Makefil.bcc: new module strcmpi
7899         * as/mcs51/Makefile.in: new module strcmpi
7900         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
7901
7902 2003-01-26    <johan AT balder>
7903
7904         * src/SDCCglue.c: reverted back to 1.124
7905         * src/SDCCast.c: reverted back to 1.156
7906         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
7907
7908 2003-01-25    <johan AT balder>
7909
7910         * src/SDCCglue.c: A better fix for bug #661910
7911         * src/SDCCast.c: A better fix for bug #661910
7912         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
7913
7914 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
7915
7916         * src/Makefile.in: remove spawn.o
7917         * src/SDCCmain.c: remove spawn.h
7918         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
7919         * src/spawn.c: removed
7920         * src/spawn.h: removed
7921         * support/regression/ports/ds390/spec.mk: link with -r
7922
7923 2003-01-24    <johan AT CP255758-A>
7924
7925         * src/ds390/gen.c (aopOp): fixed bug #667458
7926         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
7927         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
7928         (createIvalCharPtr): an ival doesn't always have a storage class anymore
7929
7930 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
7931
7932         * src/mcs51/peeph.def: better assembler identation by Frieder
7933         * src/mcs51/gen.c: better assembler identation by Frieder
7934
7935 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
7936
7937         * as/z80/string.h: removed for gcc 3.2
7938         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
7939         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
7940
7941 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
7942
7943         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
7944         * src/SDCCpeeph.c (replaceRule): fix bug #663503
7945         * support/regression/Makefile: separate temp files for ports
7946         * support/regression/generate-cases.py: separate temp files for ports
7947         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
7948         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
7949
7950 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
7951
7952         * moved tinitalk to device/examples/ds390
7953
7954 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
7955
7956         * as/mcs51/lkmem.c: rflag is for DS390
7957         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
7958         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
7959                          (linkEdit): move mem- and map-files the same way as ihx-files
7960         * src/z80/main.c (_setDefaultOptions): removed --generic
7961         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
7962         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
7963         * src/pic/glue.c (picglue): --c1mode works again
7964         * src/pic16/glue.c (pic16glue): --c1mode works again
7965         * src/asm.c (printCLine): fix #660034
7966
7967 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
7968
7969         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
7970         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
7971         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
7972         * as/mcs51/lkmem (summary): better fix for sp problem
7973         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
7974         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
7975         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
7976                                               remove --stack-after-data
7977
7978 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
7979
7980         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
7981         * src/SDCCutil.c (join): ugly bug: missing '\0'
7982         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
7983
7984 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
7985
7986         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
7987         * src/port.h: typo
7988         * src/pic/main.c (_asmCmd): gpasm supports -o
7989         * src/z80/main.c: more general macros
7990         * device/lib/Makefile.in: remove intermediate files
7991
7992 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
7993
7994         * .version: Bumped version number to 2.3.3
7995         * src/SDCCBBlock.c: new option -o
7996         * src/SDCCglobl.h: new option -o
7997         * src/SDCCglue.c: new option -o
7998         * src/SDCCmain.c: new option -o
7999         * src/asm.c: new option -o
8000         * src/ds390/main.c: new option -o
8001         * src/pic/glue.c: new option -o
8002         * src/pic/pcode.c: new option -o
8003         * src/pic/ralloc.c: new option -o
8004         * src/pic16/glue.c: new option -o
8005         * src/pic16/pcode.c: new option -o
8006         * src/pic16/ralloc.c: new option -o
8007         * src/z80/main.c: new option -o
8008         * device/lib/Makefile.in: use -o
8009         * support/regression/ports/ds390/spec.mk: use -o
8010         * support/regression/ports/gbz80/spec.mk: use -o
8011         * support/regression/ports/mcs51/spec.mk: use -o
8012         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
8013         * support/regression/ports/z80/spec.mk: use -o
8014         * support/regression/ports/ucz80/spec.mk: use -o
8015         * support/regression/ports/xa51/spec.mk: use -o
8016         * support/regression/fwk/lib/timeout.c: fix usage string
8017
8018 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
8019         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
8020
8021 2003-01-07    <johan AT balder>
8022
8023         * src/SDCCast.c (decorateType): fixed bug #600035
8024
8025 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
8026         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
8027         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
8028         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
8029         * src/pic/pcode.c: outcommented unused variable to remove warnings
8030         * src/pic/ralloc.c: outcommented unused variable to remove warnings
8031
8032 2003-01-06    <karl AT turbobit.com>
8033         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
8034    regression tests.
8035
8036 2003-01-06    <johan AT balder>
8037
8038         * src/SDCCicode.c: fixed array add
8039
8040 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
8041         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
8042         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
8043
8044 2003-01-04    <johan AT balder>
8045
8046         * src/SDCCval.c (getNelements): fixed the initialized array of structures
8047
8048 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8049         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
8050
8051 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8052         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
8053         * support/regression/tests/bug-524697.c: fit mem usage into 8032
8054
8055 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8056         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
8057
8058 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
8059         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
8060
8061 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
8062         * src/mcs51/main.c: removed {bindir}{sep} from aslink
8063
8064 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8065
8066     * in \sdcc\as\mcs51\ changed these files in order to create an
8067     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
8068     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
8069     following files to include the previous two files: aslink.dsp,
8070     Makefile.aslink, Makefile.bcc, and Makefile.in.
8071
8072     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
8073     .adb instead of .cdb
8074
8075 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8076
8077         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
8078         value from option --iram-size.
8079
8080 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8081
8082         * \sdcc\as\mcs51\lklist.c: added boundary check before using
8083         dram[] array.
8084
8085 2002-09-18    <wiml AT hhhh.org>
8086
8087         * SDCClrange.h: exposed setFromRange() and setToRange()
8088         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
8089           packRegsForAccUse() (bug 542397)
8090         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
8091           multiple times and emitting the fetch operations more than once
8092           added aopGetUsesAcc() function to allow binary operators to
8093           fetch their operands in the correct order; made genMinus() emit
8094           compact code for X = LITERAL - Y
8095
8096 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8097         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
8098         sprintf() in line 1267.
8099
8100 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8101         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
8102         like ports.
8103
8104 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8105         Changes to aslink (All the changes are marked with 'JCF'):
8106
8107         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
8108         summary().
8109
8110         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
8111         area BSEG.  Also moves, if possible, the DATA area down into the internal
8112         ram so more space is available.
8113
8114         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
8115         sflag.
8116
8117         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
8118         not bytes.  Function summary() which creates a memory usage summary
8119         file with extension .mem.  Reports of overlaping stack and small stack
8120         size.  If the space for the stack is less than 16 bytes aslink trows a
8121         warning.
8122
8123         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
8124         the 8051.  Option 'y' for memory summary output file.
8125
8126         Changes to sdcc (All the changes are marked with 'JCF'):
8127
8128         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
8129
8130         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
8131         overlaying area for it (uses RegBankUsed[4]).
8132
8133         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
8134         bank zero as used by default.  By default aslink locates the stack
8135         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
8136         the creation of the .mem file.  Delegates the allocation of data area
8137         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
8138         the begining of the stack area to aslink.
8139
8140         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
8141         glue() in SDCCglue.c creates an area for it.
8142
8143 2002-09-03  Borut Razem <borut.razem AT siol.net>
8144         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
8145         sdcc/src/pic/glue.c:
8146         introduced atexit() handler for teporay files removal in case of
8147         errors, assertions, ...
8148
8149 2002-08-29  Borut Razem <borut.razem AT siol.net>
8150         * sdcc/support/cpp2/auto-host_vc_in.h:
8151         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
8152         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
8153         Maybe there is a similar problem with BORLANDC? It should be checked!
8154
8155         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
8156         corrected improper use of assert: the assignment to clr variable was done inside the assert.
8157         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
8158         was not executed, and the compiler (cl) launched a warning:
8159         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
8160
8161 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8162         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
8163
8164 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
8165         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
8166
8167         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8168           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
8169           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
8170           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8171           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
8172           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
8173           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
8174         - added Release configuration in VS projects
8175         - review of compiler an linker options
8176         - VC .exe files are generated in bin_vc directory, not to interfere
8177           with binaries generated from other projects (cygwin, mingw, bcc ...)
8178
8179         * sdcc/src/yacc.dsp: added
8180
8181         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
8182         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
8183         and insert the version number definitions from .version
8184
8185         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
8186
8187         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
8188         added - genarate auto-host.h using auto-host_vc_in.h as template
8189
8190         * sdcc/sdcc_vc.h,
8191         removed from CVS, generated automatically
8192
8193 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
8194         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
8195
8196 2002-08-11  Borut Razem <borut.razem AT siol.net>
8197         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
8198
8199 2002-08-10  Borut Razem <borut.razem AT siol.net>
8200         * src/SDCCmain.c (main):
8201         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
8202         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
8203         The consequence was that some temporary files were not removed.
8204
8205         * src/SDCCglue.c:
8206         unification of code in functions tempfilename() and tempfile():
8207         function tempnam() is defined in Visual Studio 6.0 and .NET
8208
8209         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
8210
8211         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8212           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
8213         - removed compiler command line option /WX: Treats all warnings as errors
8214         - update a list of source files, included into the project
8215
8216         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8217           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
8218         changed project type to Generic Project so that can be correcly converted to VS.NET project
8219
8220         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
8221
8222         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
8223
8224         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
8225
8226         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
8227         added return 0 statements after assert() to make compiler happy
8228
8229         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
8230         added newline in the def file to keep MSC compiler satisfied
8231
8232         * sdcc/src/z80/gen.c:
8233         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
8234           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
8235         - solved MSC error in function aopDump()
8236
8237         * sdcc_vc.h: define PREFIX as "\\sdcc"
8238
8239 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
8240         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
8241
8242 2002-06-22  Scott Dattalo <scott AT dattalo.com>
8243         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
8244         - Rewrote the register banking algorithm.
8245         - Added pCode live-range analysis to registers (for now, only non-used and
8246         singly-used registers optimized away)
8247
8248         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
8249
8250         * 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.
8251
8252 2002-05-10  Scott Dattalo <scott AT dattalo.com>
8253         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
8254
8255 2002-04-22  Michael Hope  <michaelh AT vroom>
8256
8257         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
8258
8259         * configure.in (DD_COPT): Added include support required for gbdk.
8260
8261         * .version: Bumped version number just to increase it.
8262
8263         * src/SDCCmain.c: Added -nostdinc to the default options.
8264
8265 2002-04-15  Michael Hope  <michaelh AT vroom>
8266
8267         * device/lib/z80/printf.c (sprintf): Added.
8268
8269         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
8270
8271         * src/z80/peeph.def: Added transpose redundent load rule.
8272
8273         * src/z80/main.c: Added force callee saves for jaune.
8274
8275         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
8276
8277         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
8278
8279 2002-03-28  Johan Knol  <johan AT balder>
8280
8281         * src/SDCCval.c: fixed bug #532436
8282
8283 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8284         * /src/port.h:
8285         Added "char *Processor" field to the port structure.
8286
8287         * /src/SDCCmain.c:
8288         Added -p option. Allows port dependent processor to be specified.
8289
8290         * all ports:
8291         Initialized the new field char *Processor field to NULL in all ports
8292
8293         * /src/pic/*:
8294         Compiler generated registers for interrupt context saving
8295         were not getting allocated.
8296
8297 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
8298
8299         * /src/SDCCast.c:
8300         Fixed left shift. Will promote the left side of a left shift
8301         if a) left shifting more than size of operand or b) when assigned
8302         to something size > size of left side
8303
8304 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8305         * src/pic/*
8306         tons of changes. Register allocation has been
8307         rewritten. Added customization for the various PICs. Flow
8308         analysis is restructured. ...
8309
8310         * src/pic/device.h:
8311         Added
8312
8313         * src/pic/device.c:
8314         Added. device.c is a PIC port hack to accomodate variations
8315         in PIC devices.
8316
8317 2002-03-13  Michael Hope  <michaelh AT vroom>
8318
8319         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
8320
8321 2002-03-04  johanknol  <johanknol AT manik>
8322
8323         * /src/SDCCval.c: fixed
8324
8325         const unsigned char arr[][2] = { { 0, 1 } };
8326         t18.c:1: error: Initializer element is not constant
8327
8328 2002-03-04  bela  <bela AT manik>
8329
8330         * /device/include/mcs51reg.h:
8331         ds89c420 register definition update
8332
8333 2002-03-03    <johan AT FRIJA>
8334
8335         * support/Util/SDCCerr.c: did something, but don't no why anymore
8336
8337         * support/regression/tests/bug-524691.c: made it a little less shy
8338
8339         * src/SDCCast.c (decorateType): fixed bug #524697
8340
8341         * src/SDCCast.c: made some lineno improvements
8342
8343         * src/SDCCval.c (getNelements): changed warning to error
8344
8345         * src/SDCCglue.c (printIvalArray): changed warning to error
8346
8347         * src/SDCCicode.c: fixed a warning for mingw
8348
8349         * src/SDCCast.c (decorateType): fixed the << promotion for ops
8350
8351         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
8352
8353 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
8354
8355         * src/ds390/peeph.def:
8356         Added some more peephole rules
8357
8358         * src/ds390/gen.c: Various fixes & enhancements
8359
8360         * src/SDCClrange.c, src/SDCClrange.h:
8361         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
8362
8363         * src/ds390/ralloc.c:
8364         various fixes & enhancements (ds390) specific
8365
8366         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
8367         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
8368         from rallocs.
8369
8370         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
8371
8372 2002-03-02    <johan AT FRIJA>
8373
8374         * src/SDCCast.c (decorateType): fixed bug #524708
8375
8376         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
8377
8378         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
8379
8380 2002-03-01  Michael Hope  <michaelh AT vroom>
8381
8382         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
8383
8384         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
8385
8386 2002-03-01    <johan AT FRIJA>
8387
8388         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
8389
8390         * src/SDCCast.c (decorateType): fixed bug #524209
8391
8392         * src/SDCCval.c (valNot): fixed bug #524195
8393
8394 2002-02-26    <johan AT balder>
8395
8396         * src/xa51/gen.c: fixed a warning
8397
8398         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
8399
8400         * src/SDCCast.c (decorateType): fixed bug #522534
8401
8402 2002-02-23    <johan AT balder>
8403
8404         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
8405
8406 2002-02-22    <johan AT balder>
8407
8408         * src/SDCCast.c: fixed bug #514865
8409
8410         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
8411
8412 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
8413
8414         * sdcc/src/SDCCloop.c:
8415         Previous fix was not good. basic blocks that have "break" or "return" are
8416         not really partof a loop , but live ranges used in these blocks should
8417         be live thru the entire loop, so set partOfLoop but don't add them to
8418         loop region
8419
8420 2002-02-21    <johan AT FRIJA>
8421
8422         * src/SDCCcse.c: fixed bug #514308
8423
8424 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
8425
8426         * src/SDCCloop.c:
8427         Fixed BUG #519583. If a conditional block ended in a return/break
8428         statement inside a loop, it was not being considered part of the loop.
8429
8430         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
8431
8432 2002-02-10  Karl Bongers <karl AT turbobit.com>
8433
8434         * debugger/*:
8435         Fixed up SDCDB debugger somewhat.  Updated debugger/README
8436         with lots of comments and notes.
8437
8438         * device/examples/test2.c:
8439         Fix bug, "red" variable not being initialized(compiler complained).
8440
8441         * device/examples/Makefile, examples/test3.c:
8442         Add Makefile in device/examples folder, compiles test3.c
8443         for use as a multiple module SDCDB test case.
8444
8445         * sim/ucsim/cmd.src/cmdset.cc:
8446         Took out debug printfs in ucsim "next" command.
8447
8448         * sim/ucsim/xa.src:
8449         Karl and Johan start ucsim XA support.  Most dissassembly working,
8450         about 75% emulation done(plenty of work remaining).
8451
8452         * sim/ucsim/z80.src:
8453         Add Z80 support to ucsim, add test-ucz80 regression test,
8454         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
8455         Notice z80 compiler fails on examples/test3.c/crc code.
8456
8457 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
8458
8459         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
8460         Added support for --parms-in-bank1
8461
8462         * src/ds390/peeph.def:
8463         added a few more peephole optimzations
8464
8465         * src/ds390/main.c:
8466         1) added __builtin_inp & __builtin_outp used to read in data of given length
8467            from a memory mapped port
8468         2) added __builtin_memcmp
8469         3) added __builtin_swapw swap bytes of a short
8470
8471         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
8472         1) handle multiple send & receives from register bank1
8473         2) ralloc can now allocate DPTR1 to some liveRanges
8474
8475         * src/SDCCsymt.c, src/SDCCsymt.h:
8476         changes to handle multiple sends & receives
8477
8478         * src/SDCCptropt.h:
8479         added some pointer arithmetic optimization
8480
8481         * src/SDCCptropt.c:
8482         added some pointer arithmetic optimizations but not stable yet so not
8483         called from anywhere (will get this working shortly)
8484
8485         * src/SDCCopt.c: fixed for multiple sends & receives
8486
8487         * src/SDCCmain.c:
8488         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
8489         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
8490            set preprocessor defines (depending on options)
8491
8492         * src/SDCCicode.c, src/SDCCicode.h:
8493         changes made to handle multiple sends & receives
8494
8495         * src/SDCCglobl.h:
8496         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
8497
8498         * src/SDCCcse.c, src/SDCCcse.h:
8499         added function findbackward def (to be used in upcoming optimization)
8500
8501         * src/SDCCcflow.c, src/SDCCcflow.h:
8502         added function returnAtEnd - to determine if a basic block terminates with
8503         a RETURN iCode
8504
8505         * src/SDCCast.c, src/SDCCast.h:
8506         added option parms-in-bank1
8507
8508         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
8509         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
8510         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
8511         adjusted for --parms-in-bank1 option
8512
8513         * device/include/string.h:
8514         donot redefine "reentrant" keyword
8515
8516         * device/include/ds80c390.h: Added some more SFRs
8517
8518 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
8519
8520         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
8521
8522 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
8523
8524         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
8525
8526 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
8527
8528         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
8529
8530 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
8531
8532         * Added --xram-movc option
8533
8534 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
8535
8536         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
8537
8538 2002-01-11  Johan Knol
8539
8540         * Added math lib of Jesus Calvino-Fraga
8541
8542 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
8543
8544         * src/SDCCmain.c (processFile): fix processing of ../../src.c
8545         * support/regression/Makefile: new target test-mcs51-stack-auto
8546         * support/regression/ports/mcs51-stack-auto/spec.mk: added
8547
8548 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
8549
8550         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
8551
8552 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
8553
8554         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
8555
8556 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
8557
8558         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
8559
8560         * src/SDCCglue.h: add definition for printIvalChar()
8561
8562 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
8563
8564         * src/SDCCast.c: fix #498138 by Johan
8565
8566         * src/SDCCglue.c: fix #498138 by Johan
8567
8568 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
8569
8570         * support/regression/Makefile: fix clean
8571
8572         * support/regression/ports/ds390/support.c: fix transmission of last character
8573
8574 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
8575
8576         * /sdcc/src/ds390/gen.c:
8577         a) improved computing address of stack variable
8578         b) took out some #if 0 code
8579         c) improved parmBytes adjustment
8580         d) improved genPlusIncr & genMinusIncr
8581         e) genCmp could generate bad code (when left assigned to DPTR)
8582         f) Fixed bug in hasInc
8583
8584         * /sdcc/src/ds390/ralloc.c:
8585         a) packRegsForSupport could mess up live information (Fixed)
8586         b) packRegsDPTRuse could be incorrect for left & right shift
8587
8588         * /sdcc/src/mcs51/ralloc.c:
8589         packRegsForSupport could mess up the live information (Fixed)
8590
8591         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
8592
8593         * /sdcc/src/SDCCast.c:
8594         can reverse a loop even if function call is present as long
8595         as the loop control variable is local & is not passed as parameter
8596
8597 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
8598
8599         * /sdcc/ChangeLog: *** empty log message ***
8600
8601         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
8602         More builtin function additions for TININative
8603
8604         * /sdcc/src/ds390/ralloc.c:
8605         Had broken the regression testsuite
8606
8607         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
8608
8609         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
8610         Added funcattr hasStackParms will be set for reentrant functions when there
8611         are paramteres on the stack, this helps in minimizing frame pointer generation
8612         typeFromStr can handle function pointers now
8613
8614         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
8615         *** empty log message ***
8616
8617 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
8618
8619         * /src/ds390/gen.c, /src/ds390/main.c:
8620         More builtin function additions for TININative
8621
8622         * /src/ds390/ralloc.c:
8623         Had broken the regression testsuite
8624
8625         * /src/SDCCast.c: Fixed a bug in dumptree
8626
8627         * /src/SDCCsymt.c, /src/SDCCsymt.h:
8628         Added funcattr hasStackParms will be set for reentrant functions when there
8629         are paramteres on the stack, this helps in minimizing frame pointer generation
8630         typeFromStr can handle function pointers now
8631
8632         * /doc/builtins.txt, /doc/TININative.txt:
8633         *** empty log message ***
8634
8635
8636 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
8637
8638         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
8639         ALPHA version for -mTININative
8640
8641         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
8642         updated to reflect changes in the port structure
8643
8644         * /src/port.h:
8645         added function do_assemble (similar to do_link) if non-null this function
8646         will be called to do assembly (-mTININative) requires a multi command
8647         assembly
8648         added function genAssemblerEnd will be called to generate assembler Epilogue
8649
8650         * /src/SDCCsymt.c:
8651         added _JavaNative to debug info printing
8652
8653         * /src/SDCCmain.c: added option --tini-libid
8654         added port->do_assemble function (-mTININative) has a multi command assemble
8655
8656         * /src/SDCCglue.c: Disabled "constExpr" check
8657         added port->genAssemblerEnd function
8658
8659         * /src/SDCCglobl.h: Added option --tini-libid value
8660
8661         * /src/SDCCast.h:
8662         tookout optimizeCompare from the header (has no external references)
8663
8664         * /src/SDCCast.c: made one more function "static"
8665
8666 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
8667
8668         * src/z80/mappings.i: Added z80asm support.
8669
8670         * src/z80/main.c: Added z80asm support on --asm=z80asm
8671
8672         * src/z80/gen.c: Fixed asm portability issues.
8673
8674         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
8675
8676         * src/SDCCglue.c (printExterns): Added global/extern split.
8677
8678 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
8679
8680         * support/regression/Makefile: added test for mcs51 model large
8681
8682         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
8683
8684         * support/regression/ports/gbz80/spec.mk: added -mgbz80
8685
8686 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
8687
8688         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
8689
8690 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
8691
8692         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
8693
8694         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
8695
8696 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
8697
8698         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
8699
8700         * support/regression/tests/simplefloat.c: Port to mcs51.
8701
8702 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
8703         * support/regression/tests/bug-485362.c: Added.
8704
8705         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
8706
8707         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
8708
8709         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
8710
8711         * src/z80/gen.c (aopDump): Added a dump function.
8712
8713 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
8714         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
8715
8716         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
8717
8718         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
8719
8720         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
8721
8722         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
8723
8724         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
8725
8726         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
8727
8728         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
8729
8730         * support/regression/ports/ds390/support.c: Use tinibios.
8731
8732         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
8733
8734 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
8735
8736         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
8737         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
8738
8739         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
8740
8741         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
8742
8743 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
8744
8745         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
8746
8747         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
8748         (packRegsForIYUse): Created and optimised.
8749
8750 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
8751
8752         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
8753 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
8754
8755         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
8756
8757         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
8758
8759         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
8760
8761 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
8762
8763         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
8764
8765         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
8766
8767 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
8768
8769         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
8770
8771         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
8772
8773         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
8774
8775 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
8776
8777         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
8778         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
8779         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
8780
8781         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
8782
8783         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
8784         (genNotFloat): Added.
8785         (genUminusFloat): Added.
8786
8787         * device/lib/z80/Makefile: Added floating pt stubs.
8788
8789         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
8790
8791         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
8792
8793         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
8794
8795 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
8796
8797         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
8798
8799         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
8800
8801         * sdcc/support/regression/Makefile: Add port ds390.
8802
8803         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
8804
8805         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
8806
8807         * sdcc/support/regression/ports/ds390/spec.mk: Added.
8808
8809         * sdcc/support/regression/ports/ds390/support.c: Added.
8810
8811         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
8812
8813         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
8814
8815         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
8816
8817 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
8818
8819         * device/include/malloc.h: Added z80 and gbz80 support.
8820
8821         * device/lib/gbz80/heap.s: Added.
8822
8823         * device/lib/z80/heap.s: Added.
8824
8825         * device/lib/malloc.c: Added z80 and gbz80 support.
8826
8827         * support/regression/tests/malloc.c (testMalloc): Added.
8828
8829         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
8830
8831         * support/regression/tests/bug-478094.c: Added.
8832
8833         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
8834
8835 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
8836
8837         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
8838
8839         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
8840
8841         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
8842
8843         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
8844
8845         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
8846
8847 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
8848
8849         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
8850
8851 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
8852
8853         * support/regression/tests/bug-477927.c: Added.
8854
8855         * src/z80/peeph.def: Added minor rules.
8856
8857         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
8858
8859         * src/z80/peeph.def: Added jump optimisation modification.
8860
8861 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
8862
8863         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
8864
8865 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
8866
8867         * support/regression/tests/funptrs.c: Added.
8868
8869 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
8870
8871         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
8872
8873 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
8874
8875         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
8876
8877         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
8878
8879         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
8880         (movLeft2ResultLong): Created.
8881
8882         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
8883         (joinPushes): Added.  Joins two char pushes into a word push.
8884
8885 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
8886
8887         * support/cpp2/Makefile.in (install): Added creation of dest dir.
8888
8889         * support/makebin/Makefile (install): Added creation of dest dir.
8890
8891 2001-10-24 Karl Bongers <karl AT turbobit.com>
8892
8893         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
8894
8895 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
8896
8897         * src/z80/ralloc.c: Turned off faulty pack for one use.
8898
8899         * src/z80/peeph-gbz80.def: Removed redundent restart options.
8900
8901         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
8902
8903 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
8904
8905         * support/regression/Makefile: Improved clean
8906
8907         * support/regression/ports/gbz80/spec.mk: Added clean
8908
8909         * support/regression/ports/host/spec.mk: Added clean
8910
8911         * support/regression/ports/z80/spec.mk: Added clean
8912
8913         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
8914
8915         * support/regression/ports/mcs51/timeout.c: little improvements
8916
8917 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
8918
8919         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
8920
8921         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
8922
8923         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
8924
8925 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
8926
8927         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
8928
8929         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
8930
8931 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
8932         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
8933
8934         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
8935
8936         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
8937
8938         * src/mcs51/main.c (_linkCmd): Added bin path to command.
8939
8940         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
8941
8942         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
8943
8944         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
8945
8946         * support/regression/tests/longor.c: Added.
8947
8948 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
8949
8950         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
8951
8952         * as/mcs51/aslink.h: define PATH_MAX
8953
8954         * as/mcs51/asm.h: define PATH_MAX
8955
8956         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
8957
8958         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
8959
8960         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
8961
8962         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
8963
8964         * src/SDCCglobl.h: define PATH_MAX
8965
8966         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
8967
8968         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
8969
8970 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
8971
8972         * src/z80/gen.c (gencjneshort): Fixed
8973
8974         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
8975
8976 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
8977
8978         * support/regression/tests/bug-469671.c: Added.
8979
8980         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
8981
8982 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
8983
8984         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
8985
8986         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
8987
8988 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
8989
8990         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
8991
8992         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
8993
8994         * src/device/lib/_mullong.c : removed hint: nooverlay bug
8995
8996         * src/device/lib/_divuint.c : removed hint: nooverlay bug
8997
8998         * src/device/lib/_divulong.c: removed hint: nooverlay bug
8999
9000         * src/device/lib/_moduint.c : removed hint: nooverlay bug
9001
9002         * src/device/lib/_modulong.c: removed hint: nooverlay bug
9003
9004 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
9005
9006         * 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.
9007
9008         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
9009
9010         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
9011
9012 2001-10-07    <johan AT FRIJA>
9013
9014         * device/lib/gets.c (gets): fixed the return value.
9015
9016 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
9017         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
9018
9019         * 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.
9020
9021         * 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.
9022
9023         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
9024
9025         * src/pic/gen.c: Removed Safe_strdup.
9026
9027         * configure.in: Added option to enable libgc support.
9028
9029         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
9030         (bitVectUnion): Optimised.
9031         (bitVectIntersect): Optimised.
9032         (bitVectBitsInCommon): Optimised.
9033         (bitVectCplAnd): Optimised.
9034
9035         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
9036
9037 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9038
9039         * src/SDCCmain.c: distinguish between assembler debug and plain options
9040
9041         * src/avr/main.c:   remove standard assembler options
9042
9043         * src/ds390/main.c: remove standard assembler options
9044
9045         * src/mcs51/main.c: remove standard assembler options
9046
9047         * src/port.h: removed "PENDING" comment
9048
9049 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9050
9051         * src/device/lib/_mulint.c  : new, with assember functions
9052
9053         * src/device/lib/_mullong.c : new, with assember functions
9054
9055         * src/device/lib/_divuint.c : with assember functions
9056
9057         * src/device/lib/_divsint.c : with assember functions
9058
9059         * src/device/lib/_divulong.c: with assember functions
9060
9061         * src/device/lib/_divslong.c: with assember functions
9062
9063         * src/device/lib/_moduint.c : with assember functions
9064
9065         * src/device/lib/_modsint.c : with assember functions
9066
9067         * src/device/lib/_modulong.c: with assember functions
9068
9069         * src/device/lib/_modslong.c: with assember functions
9070
9071         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
9072
9073         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
9074
9075         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
9076                                       replaced _mululong.c and _mulslong.c by _mullong.c
9077
9078 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9079
9080         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
9081
9082 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9083
9084         * src/SDCCglue.c: test, if win32api is available for MINGW
9085
9086 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9087
9088         * src/SDCCsymt.c: no more _modifier in printTypeChain()
9089         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
9090         * support/regression/ports/gbz80/spec.mk: removed GENERIC
9091         * support/regression/ports/host/spec.mk: removed GENERIC
9092         * support/regression/ports/mcs51/spec.mk: removed GENERIC
9093         * support/regression/ports/z80/spec.mk: removed GENERIC
9094
9095 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
9096
9097         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
9098
9099         * support/regression/tests/bug-467035.c: Created.
9100
9101 2001-10-01    <johan AT FRIJA>
9102
9103         * src/SDCC.y: fixed bug #466586 part 1
9104
9105 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
9106
9107         * SDCCicode.c: z80 has no generic pointers
9108         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
9109
9110 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
9111
9112         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
9113
9114 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
9115
9116         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
9117
9118         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
9119
9120 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
9121
9122         * configure.in: Fixed up so that ucsim is only configured once.
9123
9124         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
9125
9126         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
9127         (getPathDifference): As above.
9128
9129         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
9130
9131         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
9132
9133 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
9134         * .version: Updated to 2.3.1
9135
9136         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
9137         Added copyright header.
9138
9139         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
9140         (assemble): Added support for macro based assembler commands.
9141         (linkEdit): Added support for macro based linker commands.
9142         (preProcess): Changed the pre-processor to use macros.
9143         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
9144         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
9145
9146         * device/lib/z80/crt0.s: Added module name for debugging.
9147
9148 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
9149
9150         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9151
9152         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
9153
9154         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
9155
9156         * src/Makefile.in: Added SDCCmacro and SDCCutil
9157
9158 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
9159
9160         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9161
9162 2001-09-16    <johan AT FRIJA>
9163
9164         * 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.
9165
9166 2001-09-15    <johan AT FRIJA>
9167
9168         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
9169         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
9170
9171 2001-09-11    <johan AT FRIJA>
9172
9173         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
9174
9175 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
9176
9177         * support/regression/tests/bug-460444.c: Added test case.
9178
9179         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
9180         (genCast): Added justification for all of the asserts.
9181
9182 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
9183
9184         * support/regression/support.c: _xdata replaced by xdata
9185
9186         * support/regression/spec.mk: removed _generic
9187
9188 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
9189
9190         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
9191
9192         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
9193         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
9194
9195         * src/z80/peeph.def: Added a rule to optimise shift then compare.
9196
9197         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
9198
9199         * support/regression/tests/bug-460010.c: Added test case.
9200
9201         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
9202
9203 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
9204
9205         * support/regression/Makefile: inter-port-clean adjusted for mcs51
9206
9207         * support/regression/testfwk.c: removed workaround for bug #436344
9208
9209         * support/regression/tests/bp.c: use less memory with mcs51
9210
9211         * support/regression/tests/bug-441448.c: use less memory
9212
9213         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
9214
9215         * support/regression/collate-results.py: typo
9216
9217 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
9218
9219         * support/regression/tests/fetchoverlap.c: Added new test case.
9220
9221         * support/regression/tests/bp.c: Added new test case.
9222
9223         * support/regression/tests/bug-448984.c: Added new test case.
9224
9225         * support/regression/tests/pow2shifts.c: Added new test case.
9226
9227         * src/z80/gen.c: Turned off the noise it normally generates for the release.
9228         (genlshTwo): Fixed right shift for count > 8.
9229
9230         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
9231
9232 2001-09-08    <johan AT FRIJA>
9233
9234         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
9235
9236 2001-09-07    <johan AT FRIJA>
9237
9238         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
9239
9240         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
9241
9242 2001-09-06    <johan AT FRIJA>
9243
9244         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
9245         * bernhard noted me at this: "() equals to (void)" (1.38)
9246
9247 2001-09-05    <johan AT FRIJA>
9248
9249         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
9250
9251 2001-09-04    <johan AT FRIJA>
9252
9253         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
9254
9255
9256 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
9257
9258         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
9259
9260 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
9261
9262         * link/z80/aslink.h: Fixed path for PATH_MAX
9263
9264 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
9265
9266         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
9267
9268         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
9269
9270         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
9271
9272         * 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.
9273
9274 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
9275
9276         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
9277         (genCmp): Fixed up genCmp for the GB with longs.
9278
9279         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
9280
9281         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
9282
9283         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
9284
9285         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
9286
9287 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
9288
9289         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
9290
9291 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
9292
9293         * 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.
9294
9295         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
9296
9297 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
9298
9299         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
9300
9301         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
9302
9303 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
9304
9305   * sim/ucsim/configure:    little improvement of Cygwin-detection
9306   * sim/ucsim/configure.in: little improvement of Cygwin-detection
9307   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
9308   * support/regression/tests/bug-221100.c: small changes for mcs51
9309   * support/regression/tests/bug-221168.c: small changes for mcs51
9310   * support/regression/tests/bug-227710.c: small changes for mcs51
9311   * support/regression/tests/staticinit.c: small changes for mcs51
9312   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
9313   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9314   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9315
9316 $Revision$