* support/Util/dbuf.h: include <stddef.h> for size_t
[fw/sdcc] / ChangeLog
1 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
2
3         * support/Util/dbuf.h: include <stddef.h> for size_t
4         * .version: changed to version 2.5.2
5
6 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7
8         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
9
10 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
11
12         * src/hc08/gen.c (genMinus): fixed bug #1241835,
13           (genModOneByte): removed needless psha/pula
14
15 2005-07-22 Raphael Neider <rneider AT web.de>
16
17         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
18           have PIC14 handled like PIC16, fixes broken pic14 linker calls
19         * src/pic/gen.c (resolveIfx): do not "invent" labels
20         * (genSkipc): changed to positive logic
21         * (genSkipCond): removed as no longer needed
22         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
23           backport from PIC16
24         * (genLeftShift): check operands are in different registers
25         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
26           INCF does not update CARRY...
27         * src/pic/main.c: fixed _linkCmd
28         * src/pic/pcode.c (unlinkpCode): added inactive code
29         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
30           alive (do not assign result and operand overlapping registers)
31
32 2005-07-22 Raphael Neider <rneider AT web.de>
33
34         * src/pic/device.c (dump_sfr): replaced register declaration with
35           call to emitSymbolToFile() to avoid duplicate symbols
36         * (assignRelocatableRegisters): do not declare external symbols
37         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
38           right (take size of type, not etype)
39         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
40         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
41         * (packRegsForAccUse): disabled assignment of WREG as
42           the result reg to prevent occurence of just fixed #1235003,
43           fixes #1242954
44         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
45           symbols (avoids duplicate symbols in .asm file)
46         * (pic14emitRegularMap): use emitSymbolToFile()
47         * src/pic/gen.c (aopOp): fixed spillLocation handling
48         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
49         * (genDataPointerSet): removed unneccessary variables/output
50
51 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
52
53         * as/mcs51/lkarea.c: enlarged codemap for banked memory
54         * device/lib/mcs51/crtbank.asm: added # to 0x0F
55
56 2005-07-21 Raphael Neider <rneider AT web.de>
57
58         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
59           architecture cannot handle them efficiently, fixes bug #1235003
60         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
61           check for empty sets before using them (fixes bug #1232190)
62
63 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
64
65         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
66           (lnksect2): generate warnings for memory overlap
67         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
68           constseg to set the name of these segments so you can instruct the linker
69           to place them in banks
70         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
71         * src/SDCCglobl.h: added MODEL_HUGE to enum,
72           added code_seg and const_seg to options
73         * src/SDCCglue.c (emitMaps): use options.const_seg,
74           (createInterruptVect): put interrupt vectors in segment HOME,
75           (glue): put HOME before static segment and put the main glue in HOME,
76           (glue): use options.code_seg
77         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
78         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
79           these segments so you can instruct the linker to place them in banks
80           (linkEdit): use code_loc for HOME segment which should be the first
81           segment in code memory now
82         * src/SDCCmem.c: fixed more stuff like bug 1238386
83         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
84           (changePointer): don't change function pointers to code pointers for
85           banked functions,
86           (compareType): added exceptional check for banked function pointers
87         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
88         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
89           after static in code memory
90         * src/mcs51/gen.c: added aopLiteralLong prototype,
91           (aopForSym): use getSize for functions,
92           (genCall): generate banked calls over one trampoline __sdcc_banked_call
93           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
94           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
95           the segment,
96           (genPcall): use call for literal function pointers and generate banked
97           calls over the one trampoline so there's only one place for the user to
98           modify according to his/hers hardware,
99           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
100           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
101         * src/mcs51/main.c: added keyword banked,
102           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
103         * support/Util/SDCCerr.c,
104         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
105           needed for passing the bank and address to the trampoline
106         * device/lib/mcs51/crtbank.asm: added for bankswitching
107         * device/lib/mcs51/Makefile: added crtbank
108
109 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
110
111         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
112           for fields at offset 0 of a struct or union as reported
113           on 2005-07-07 in the developer mailing list.
114
115 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
116
117         * src/SDCCmem.c: fixed bug 1238386
118
119 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
120
121         * src/mcs51/peeph.def: added labelrefcounting for peepholes
122           (patch #1144962), added peephole 300, enabled 259.x
123         * doc/sdccman.lyx: removed screenshot and provided link instead
124
125 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
126
127         * doc/sdccman.lyx: added section about debugging with ddd
128         * doc/figures/ddd_example.eps: screenshot of debugging session
129
130 2005-07-04 Raphael Neider <rneider AT web.de>
131
132         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
133           like CODE pointers, fixes #1115683
134         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
135           call, fixes bugs #1232211, #1228110,
136           fixed wrong casts to pCodeFlow from pCodeInstructions
137
138 2005-07-04 Raphael Neider <rneider AT web.de>
139
140         * src/pic/gen.c (popGet): changed assert to allow for
141           bit operands
142         * (popGetAddr): changed signature to provide
143           an additional index, patched all call sites
144         * (genCmpEq): handle literal-like operands correctly
145         * (genAddrOf): added sanity checks on __code/__data pointers
146         * (genAssign): added handling of symbols from __code section
147         * (gencjne): do not generate code for comparisons whose result
148           is neither stored nor used, fixes bug #1171114
149         * (AccLsh, AccRsh): operate on operand instead of WREG
150         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
151           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
152           by known count
153         * rewrote complete shift-by-literal logic, commented unused
154           functions out
155         * (genConstPointerGet): get multiple bytes (if result size > 1),
156           fixed handling of non-immediate addresses
157         * (genPointerGet): handle CODE pointers like CONST pointers
158         * (genpic14Code): insert C-SRC lines as Cource-pCodes
159         * ({aop,op}_isLitLike): NEW, single place to decide whether an
160           operand is to be treated as a literal or not
161         * (mov2w,genPcall,genCmpEq),
162           src/pic/genarith.c: use aop_isLitLike() to decide between
163           literal/register contents
164         * (addSign): added missing offset
165         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
166           only emit comment in debug-mode,
167           use {aop,op}_isLitLike throughout the file
168         * src/pic/glue.c: fix initializers for pointers (work in progress)
169         * src/pic/pcode.c (get_op): honor index on _const symbols
170         * ({reset,dump}pCodeStatistics): NEW, estimate code size
171         * (dumppBlock): added pCode size estimation
172         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
173           check for IS_SYMOP before OP_SYMBOL'ing
174         * fixed indentation, compacted switch-statements
175         * (allocReg): find free register and allocate it instead of
176           allocating new registers all the time
177         * (deassignLRs): prevent POINTER_GET's from being assigned the same
178           registers as its operands (necessary only for multibyte GETs)
179
180 2005-07-01 Raphael Neider <rneider AT web.de>
181
182         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
183           debugging .asm-output macros FENTRY + FEXIT
184         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
185           way... I wonder...
186         * (emitpComment): NEW, printf to pCode
187         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
188           offset handling
189         * (popGetAddr): NEW, variant of popGet to access an immediates
190           high(er) bytes instead of the n'th byte of memory they reference,
191           replaced popGet with popGetAddr where neccessary
192         * (genDataPointerGet): reactivated and fixed implementation
193         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
194           accesses
195         * (genDataPointerSet): fixed multibyte assignments
196         * (genpic14Code): fixed --i-code-in-asm handling
197         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
198         * (genPlus): fixed index-out-of-bounds error
199         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
200         * src/pic/ralloc.c: added debugging output macro FENTRY2
201         * (spillThis): fixed indentation, enbraced for-body for clarity
202         * (rematStr): commented out as now unused
203         * (regTypeNum): commented out special spill case (overwrites
204           arbitrary values)
205         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
206
207 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
208
209         * doc/sdccman.lyx: documented sfr16/sfr32,
210           added example for using storage class with function pointers
211         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
212
213 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
214
215         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
216         * device/lib/_itoa.c,
217         * device/lib/_ltoa.c: optimized codesize
218         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
219           but don't know how to suppress the double warning.
220         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
221         * support/Util/SDCCerr.c,
222         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
223
224 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
225
226         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
227           fixed old K&R prototypes
228         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
229         * device/lib/_gptrget.c,
230         * device/lib/_gptrgetc.c,
231         * device/lib/_gptrput.c: changed versions for new memory indicator values,
232           also new versions for small generic pointers and banked generic pointers
233         * src/port.h: added const_name
234         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
235         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
236         * src/SDCCcse.c (findPrevIc): check all associative operators
237         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
238         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
239         * src/SDCCmem.c: updated comments,
240           set far-space to 0 for pdata, results in optimized code
241         * src/SDCCmem.h: added macro CONST_NAME
242         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
243           moving the info into the highest bits, see also gptrget/gptrput
244         * src/src.dsp: added sdcc.ico to project files
245         * src/avr/gen.c (genCast): fixed bug 0x%d
246         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
247         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
248           relation between ptr_type and DCL_TYPE,
249           (genCast): fixed bug 0x%d
250         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
251           (CODE)" for const_name
252         * src/hc08/gen.c (genCast): fixed bug 0x%d
253         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
254           (hc08_port): added "CONST (CODE)" for const_name
255         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
256           (aopForRemat, adjustArithmeticResult): disconnected direct relation
257           between ptr_type and DCL_TYPE,
258           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
259           operand* and took AOP() inside function so sfr-ness can be checked,
260           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
261           new prototype,
262           (genFunction, genEndFunction): optimized stack setup,
263           (genMinus): optimized for literals with ending zeroes (in bytes),
264           (genCast): fixed bug 0x%d
265         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
266           (mcs51_port): added "CONST (CODE)" for const_name
267         * src/mcs51/peeph.def: made rule 226 more generic
268         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
269         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
270         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
271         * src/z80/main.c (z80_port): added NULL for const_name,
272           (gbz80_port): added NULL for const_name
273         * support/regression/tests/bug663539.c,
274         * support/regression/tests/sfr16.c: new tests
275
276 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
277
278         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
279
280 2005-06-24 Raphael Neider <rneider AT web.de>
281
282         * device/lib/pic16/libdev/pic18f[68][567]20.c:
283           corrected typos...
284         * device/include/pic16/signal.h: added USBIF
285           and SIG_USB
286
287 2005-06-24 Raphael Neider <rneider AT web.de>
288
289         * device/lib/pic16/libdev/pic18f2455.c,
290           device/include/pic16/pic18f2455.h: NEW
291         * device/include/pic16/pic18fregs.h,
292           device/lib/pic16/pics.all,
293           src/pic16/device.c: added 18f2455
294         * device/lib/pic16/libdev/pic18f[68][567]20.c,
295           device/include/pic16/{pic18f[68][567].h,usart.h}:
296           replaced MULTIPLE_USARTS define with more relaible
297           compatibility sfrs (for USART access)
298
299 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
300
301         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
302           and the output asm file line is printed on two lines.
303
304 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
305
306         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
307           BGT, BLE, BHI, and BLS instructions
308         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
309           genCmpEq): removed
310         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
311           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
312           fixes bug #1216342
313         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
314
315 2005-06-15 Raphael Neider <rneider AT web.de>
316
317         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
318         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
319         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
320           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
321           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
322
323 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
324
325         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
326           Marcel Telka in bug #1215704
327
328 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
329
330         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
331           located in shared memory bank.
332
333 2005-05-31 Raphael Neider <rneider AT web.de>
334
335         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
336           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
337           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
338
339 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
340
341         * device/lib/_strncpy.c: fixed the fix
342
343 2005-05-26 Raphael Neider <rneider AT web.de>
344
345         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
346           initializers with \0, bug #1208187
347         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
348           intializers with \0, bug #1208187
349
350 2005-05-26 Raphael Neider <rneider AT web.de>
351
352         * src/pic16/glue.c (pic16_printIvalChar): fixed string
353           initializers with \0, bug #1208187
354         * src/pic16/main.c (_process_pragma): added sanity checks
355           for stack position and size, emit warnings when appropriate
356
357 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
358
359         * device/lib/_strncpy.c: fixed not filling with \0
360
361 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
362
363         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
364           createFunction),
365         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
366           compound_statement),
367         * src/SDCCsymt.h,
368         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
369
370 2005-05-24 Raphael Neider <rneider AT web.de>
371
372         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
373
374 2005-05-24 Raphael Neider <rneider AT web.de>
375
376         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
377           TRISE definitions, closes bug #1162453
378
379 2005-05-22 Raphael Neider <rneider AT web.de>
380
381         * src/pic16/main.c (_process_pragma): check for missing
382           arguments to pragmas code and udata
383         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
384           consistency fixes to match other headers (thanks to Jim Paris)
385         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
386
387 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
388
389         * src/SDCCicode.c (isOperandEqual): fixed missing ;
390
391 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
392
393         * support/regression/tests/bug1198642.c: new test
394         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
395         * src/SDCCcse.c (findPrevIc): added comment, please have a look
396         * support/scripts/resource.h,
397         * support/scripts/resource.rc,
398         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
399         * support/scripts/sdcc.ico: added 32x32 icon
400
401 2005-05-18 Raphael Neider <rneider AT web.de>
402
403         * device/lib/pic16/libdev/pic18f*.c,
404         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
405           keywords to "__sfr" and "__at (X)"
406         * device/include/pic16/pic18fregs.h: added pic18f4520
407         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
408           #1203088 (MPLAB compatibility)
409
410 2005-05-17 Raphael Neider <rneider AT web.de>
411
412         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
413         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
414         * device/lib/pic16/pics.all: added new devices
415         * src/pic16/device.c: added support for pic18f4520
416
417 2005-05-16 Raphael Neider <rneider AT web.de>
418         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
419         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
420         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
421           convenience function for bit access
422
423 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
424
425         * device/lib/printf_large.c: fixed bug 1193299
426         * support/regression/tests/bug1057979.c: added test %3.3s
427
428 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
429
430         * device/include/mcs51/8051.h,
431         * device/include/mcs51/8052.h: made parseable with lint
432         * device/include/mcs51/lint.h: added include file for (sp)lint
433         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
434         * doc/cdbfileformat.lyx,
435         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
436
437 2005-05-14 Raphael Neider <rneider AT web.de>
438
439         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
440         * device/lib/pic16/libc/stdlib/itoa.c (new)
441         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
442         * device/lib/pic16/libio/Makefile: exclude subdir according to
443           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
444         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
445         * src/pic16/gen.c (genFunction): prevent annoying warning
446         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
447           nameclashes on BeOS
448         * support/cpp2/cppmain.c (cpp_output_string): new
449         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
450           fixes bug 1116802
451
452 2005-05-13 Borut Razem <borut.razem AT siol.net>
453
454         * src/SDCCmain.c (linkEdit): fixed bug 1195202
455
456 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
457
458         * .version: changed to version 2.5.1; back to bleeding edge development
459
460 2005-05-11 Borut Razem <borut.razem AT siol.net>
461
462         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
463           generate PDF version 1.3 documents
464
465 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
466
467         * .version: changed to version 2.5.0
468
469 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
470
471         * doc/sdccman.lyx: updated weblinks, index and smaller updates
472
473 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
474
475         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
476         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
477         well as many smaller updates.
478         * .version: changed to version 2.5.0-pre1
479
480 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
481
482         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
483
484 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
485
486         * support/regression/tests/bug1185672.c: added
487         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
488           bug 1185672
489         * src/mcs51/gen.c (genCall): added comments, made it look safer
490         * src/mcs51/gen.c (genEndFunction): simplified
491
492 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
493
494         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
495
496 2005-04-14 Borut Razem <borut.razem AT siol.net>
497
498         * fixed bug 1045046 - SIGSEGV with really simple code?:
499           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
500           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
501
502 2005-04-14 Borut Razem <borut.razem AT siol.net>
503
504         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
505           src/pic16/device.h: temporarily disabled experimental #inline pragma
506           for 2.5.0 release
507
508 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
509
510         * device/include/z80/stdio.h,
511         * device/include/z80/string.h: removed these highly incomplete files so
512           SDCC can use the default ones in device/include/
513
514 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
515
516         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
517         gcc warning.
518         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
519         fix sdcpp warnings.
520
521 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
522
523         * device/include/malloc.h: removed redundant __reentrant prototypes
524         * device/lib/_mullong.c: added working xstack variant in asm (C version
525           doesn't pass regression tests)
526         * device/lib/bpx.c: used __data and made bpx char for mcs51
527         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
528           (createFunction): fixed bug with xstackPtr
529         * src/SDCCcse.c: corrected comments
530         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
531           (killDeadCode, eBBlockFromiCode): removed unused code
532         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
533           corrected comments
534         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
535           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
536           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
537           (genModOneByte): fixed warning in MSVC
538         * src/mcs51/main.c (): added comments
539         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
540
541 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
542
543         * src/SDCCmain.c (linkEdit): oops, changed one line too many
544
545 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
546
547         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
548
549 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
550
551         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
552         characters arrays of larger size than the declared one.
553
554 2005-04-10 Borut Razem <borut.razem AT siol.net>
555
556         * src/pic/gen.c (genInline),
557           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
558           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
559           (findNextInstruction), (findPrevInstruction),
560           (findInstructionUsingLabel),
561           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
562         * src/pic/pcode.c (findLabel): added missing '\n'
563         * src/src.dsp: added SDCCdwarf2.c to the project
564
565 2005-04-09 Borut Razem <borut.razem AT siol.net>
566
567         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
568
569 2005-04-08 Raphael Neider <rneider AT web.de>
570
571         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
572           into the chain after a given one) and mergeDefmapSymbols (combine
573           defmap entries for each symbol per pcode)
574         * (createDefmap): have defmap entries merged in the end
575         * (defmapReplaceSymRef): split defmap entries covering two accesses to
576           a symbol before replacing one access type's symbol, merge symbols in
577           the end (replacement symbol might already have an entry)
578         * (assignValnums): keep reference to written WREG intact
579
580 2005-04-08 Raphael Neider <rneider AT web.de>
581
582         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
583           Alpha)
584
585 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
586
587         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
588         bytes
589
590 2005-04-07 Raphael Neider <rneider AT web.de>
591
592         * device/include/pic16/usart.h: added compatibility defines for
593           devices with more than one USART
594         * device/include/pic16/pic18f[68][567]20.h: activated above defines
595
596 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
597
598         * device/lib/Makefile.in: updated for port specific include
599
600 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
601
602         * support/regression/ports/mcs51/spec.mk: added mcs51 include
603
604 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
605
606         * device/include/8051.h,
607         * device/include/8052.h,
608         * device/include/at89S8252.h,
609         * device/include/at89c55.h,
610         * device/include/at89x051.h,
611         * device/include/at89x51.h,
612         * device/include/at89x52.h,
613         * device/include/mcs51reg.h,
614         * device/include/reg51.h,
615         * device/include/reg764.h,
616         * device/include/regc515c.h,
617         * device/include/sab80515.h: (re)moved these 12 files
618         * device/include/mcs51/8051.h,
619         * device/include/mcs51/8052.h,
620         * device/include/mcs51/at89S8252.h,
621         * device/include/mcs51/at89c55.h,
622         * device/include/mcs51/at89x051.h,
623         * device/include/mcs51/at89x51.h,
624         * device/include/mcs51/at89x52.h,
625         * device/include/mcs51/mcs51reg.h,
626         * device/include/mcs51/reg51.h,
627         * device/include/mcs51/reg764.h,
628         * device/include/mcs51/regc515c.h,
629         * device/include/mcs51/sab80515.h: and added them here
630
631 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
632
633         * device/include/stdarg.h: changed SDCC specific keywords to double
634           underlined form.
635         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
636           mcs51 and ds390.
637         * device/include/hc08/mc68hc908gp32.h,
638         * device/include/hc08/mc68hc908jb8.h,
639         * device/include/hc08/mc68hc908jkjl.h,
640         * device/include/hc08/mc68hc908qy.h: fixed comments
641         * device/include/mcs51/README: updated
642         * device/include/mcs51/c8051f120.h: added PINRSF
643         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
644         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
645           amidst code. Also inline is not supported.
646
647 2005-04-06 Raphael Neider <rneider AT web.de>
648
649         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
650         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
651           callers stack/frame pointers
652
653 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
654
655         * device/include/pic16/usart.h: added, missing in previous commit,
656         * device/include/pic16/adc.h: fixed typo,
657         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
658         commit,
659         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
660         <p18fxxx.inc>
661         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
662         uninitialized because a bug appears with gplink
663         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
664         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
665         complains for unrecognised option
666
667 2005-04-05 Raphael Neider <rneider AT web.de>
668
669         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
670           structs as well (using memcpy)
671         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
672           on ISRs (GOTO has no label)
673         * src/pic16/device.h: added OF_OPTIMIZE_DF
674         * src/pic16/main.c: added compiler switch --optimize-df to enable the
675           new data flow analysis/optimization
676         * src/pic16/pcode.c: added (prototypes for and implementation of)
677           dataflow analysis functions, fixed pCodeInstructions' inCond and
678           outCond values, made RCALL a branch instruction
679         * (pic16_unlinkpCode): keep C line if possible
680         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
681           C line moved if possible
682         * (pic16_getRegFrompCodeOp): NEW, improved version of...
683         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
684           to use new pic16_getRegFrompCodeOp (works for more SFRs)
685         * (pic16_BuildFlow): fixed skip instructions with label (did not start
686           new flow)
687         * (pic16_getJumptabpCode): NEW, needed in...
688         * (LinkFlow): fixed handling of jumptables, calls and conditional
689           branches
690         * (pic16_InsertCommentAfter): NEW
691         * (pic16_pCodeReplace): made verbose and flow preserving
692         * (AnalyzeFlow): added call to data flow analysis
693         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
694         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
695         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
696
697 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
698
699         * src/SDCCast.c (decorateType): fixed bug #1105626
700
701 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
702
703         * device/include/asm/pic16/features.h,
704         * pic18f*.h headers,
705         * device/include/pic16/adc.h,
706         * device/include/pic16/delay.h,
707         * device/include/pic16/i2c.h,
708         * device/include/pic16/malloc.h,
709         * device/include/pic16/stdio.h,
710         * device/include/pic16/stdlib.h,
711         * device/include/pic16/string.h,
712         * device/lib/pic16/libc/stdio/printf_tiny.c,
713         * device/lib/pic16/libc/stdio/printf_small.c,
714         * device/lib/pic16/libc/stdio/strmgpsim.c,
715         * device/lib/pic16/libc/stdio/strmmssp.c,
716         * device/lib/pic16/libc/stdio/strmusart.c,
717         * device/lib/pic16/libc/stdio/vfprintf.c,
718         * device/lib/pic16/libc/stdlib/ltoa.c,
719         * device/lib/pic16/libc/stdlib/putchar.c,
720         * device/lib/pic16/libc/stdlib/x_ftoa.c,
721         * device/lib/pic16/libc/stdlib/memchrpgm.c,
722         * device/lib/pic16/libc/stdlib/memchrram.c,
723         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
724         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
725         * device/lib/pic16/libio/adc/adcbusy.c,
726         * device/lib/pic16/libio/adc/adcread.c,
727         * device/lib/pic16/libio/adc/adcsetch.c,
728         * device/lib/pic16/libio/usart/ubaud.c,
729         * device/lib/pic16/libio/usart/ubusy.c,
730         * device/lib/pic16/libio/usart/udrdy.c,
731         * device/lib/pic16/libio/usart/uopen.c,
732         * device/lib/pic16/libio/usart/uputc.c,
733         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
734         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
735         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
736         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
737         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
738         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
739         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
740         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
741         specific keywords to double underlined form,
742         * device/lib/pic16/libc/Makefile.rules,
743         * device/lib/pic16/libsdcc/Makefile.rules,
744         * device/lib/pic16/libm/Makefile,
745         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
746         to compile with C standard set in Makefile.common
747         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
748         rand.c and crc.c in compilation process,
749         * device/lib/pic16/libsdcc/int/divuint.c,
750         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
751         `c' from signed to unsigned,
752         * device/lib/pic16/startup/crt0.c,
753         * device/lib/pic16/startup/crt0i.c,
754         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
755         keywords to double underlined form, bug fixes in _do_cinit function
756         which prevented the correct initialization of the .idata segment,
757         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
758         core to enter a infinite loop
759         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
760
761 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
762
763         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
764
765 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
766
767         * device/include/Makefile.in: add support for hc08 subdirectory
768         * device/include/hc08/: new subdirectory
769         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
770         Lucas Loizaga, thanks!
771         * device/include/hc08/mc68hc908qy.h,
772         * device/include/hc08/mc68hc908gp32.h,
773         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
774         their own directory. Changed internal macro names to use the compiler
775         reserved namespace. Changed SDCC specific keywords to double
776         underlined form.
777         * device/include/math.h,
778         * device/include/malloc.h,
779         * device/include/stdarg.h,
780         * device/include/stdbool.h
781         * device/include/string.h,
782         * device/include/tinibios.h,
783         * device/include/ds400rom.h,
784         * device/include/8051.h,
785         * device/include/8052.h,
786         * device/include/80c51xa.h,
787         * device/include/at89c55.h,
788         * device/include/at89S8252.h,
789         * device/include/at89x51.h,
790         * device/include/at89x52.h,
791         * device/include/ds80c390.h,
792         * device/include/reg764.h,
793         * device/include/regc515c.h,
794         * device/include/sab80515.h,
795         * device/include/mcs51/c8051f000.h,
796         * device/include/mcs51/c8051f018.h,
797         * device/include/mcs51/c8051f020.h,
798         * device/include/mcs51/c8051f040.h,
799         * device/include/mcs51/c8051f060.h,
800         * device/include/mcs51/c8051f120.h,
801         * device/include/mcs51/c8051f300.h,
802         * device/include/mcs51/c8051f310.h,
803         * device/include/mcs51/c8051f320.h,
804         * device/include/mcs51/c8051f330.h,
805         * device/include/mcs51/c8051f350.h,
806         * device/include/z180.h: Changed SDCC specific keywords to double
807         underlined form.
808
809 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
810
811         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
812         18F4455,
813         * (pic16_assignConfigWordValue): disable testing of configuration
814         register value with config mask,
815         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
816         function with port->fun_prefix,
817         * (genFunction): when generating a naked interrupt function never
818         create an absolute segment placed in interrupt vector address, place
819         the actual interrupt function at IVA instead, when an interrupt
820         function is generated with unspecified interrupt then do not create
821         the absolute section,
822         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
823         code for generating a call to generic pointer get/put function with
824         a call to function pic16_callGenericPointer(),
825         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
826         the call to the generic pointer get/put functions with prefixing the
827         function name with port->fun_prefix,
828         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
829         * src/pic16/main.c (_process_pragma): prefix function with
830         port->fun_prefix,
831         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
832         calling assembler, old 18Fxxxx macro is deprecated,
833         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
834         PC_ASMDIR in while condition,
835         * (findInstruction): add PC_ASMDIR in while condition,
836         * (buildCallTree): prefix main with port->fun_prefix,
837         * (pic16_pCode2str): fixed bug that didn't emit the memory access
838         identifier for variable with banked access in instructions BTFSS,
839         BTFSC, BCF, BSF, BTG
840         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
841         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
842         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
843         perform optimization when enviroment variable NO_REG_OPT is set,
844         * (insideLRBlock): NEW, return 1 if register is inside an
845         INF_LOCALREGS block,
846         * (RemoveRegFromLRBlock): remove a register that is completely
847         eliminated by register optimization, but it is still left in local
848         register store/restore in/from stack block,
849         * (Remove2pcodes): after removing register, check to see if it
850         should be removed from local register store/restore in/from stack
851         block,
852         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
853         DUMMY_READ_VOLATILE,
854
855         * device/include/pic16/adc.h: minor prototype modifications and
856         update,
857         * device/include/pic16/malloc.h: added GPL notice various
858         modifications,
859         * device/include/pic16/stdint.h: NEW, standard header for ints
860         * device/include/pic16/delay.h: NEW, header for delay functions,
861         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
862         delay1mtcy,
863         * device/include/pic16/signal.h: NEW, header providing helper macros
864         for implementing signal handlers,
865         * device/include/pic16/stdio.h: added prototypes for functions,
866         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
867         prototypes for stdin and stdout, added macro PUTCHAR to
868         automatically implement putchar function prototype,
869         * device/include/pic16/usart.h: modified and updated USART library,
870         * device/lib/pic16/libio/adc/,
871         * device/lib/pic16/libio/i2c: some modifications to improve library
872         performance,
873         * device/lib/pic16/libc/stdio/: modifications for the new printf*
874         family of functions,
875         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
876         family of functions and other sources,
877         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
878         of the PIC18Fxx[28] devices,
879         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
880         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
881         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
882         _do_cinit function, because the previous failed when local variables
883         where not placed in the same memory bank,
884         * device/lib/pic16/libsdcc/char/: various modifications to improve
885         library performance,
886         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
887         information on the new functions of the c library and more...
888
889 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
890
891         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
892
893 2005-03-26 Raphael Neider <rneider AT web.de>
894
895         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
896           if condition == CARRY)
897         * (genCmp): adapted to new genSkipc semantics
898         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
899           on rIfx (genCmp was broken)
900
901 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
902
903         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
904         * src/z80/main.c (_keywords[]),
905         * src/SDCCglobal.h (struct options),
906         * src/SDCC.y,
907         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
908         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
909         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
910         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
911         always available in leading double underscore form. The C99 support is
912         mostly missing, but it's a start.
913         * support/regression/tests/bug-227710.c: fixed nonconforming use of
914         reserved identifier "__data".
915
916 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
917
918         * src/mcs51/peeph.def: fixed bug 1170013
919
920 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
921
922         * device/include/mcs51reg.h: fixed bug 842007
923
924 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
925
926         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
927         last time.
928
929 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
930
931         * src/port.h (struct PORT),
932         * src/avr/ralloc.c (avr_assignRegisters),
933         * src/avr/main.c,
934         * src/ds390/ralloc.c (ds390_assignRegisters),
935         * src/ds390/main.c,
936         * src/hc08/ralloc.c (hc08_assignRegisters),
937         * src/hc08/main.c,
938         * src/mcs51/ralloc.c (mcs51_assignRegisters),
939         * src/mcs51/main.c,
940         * src/pic/ralloc.c (pic14_assignRegisters),
941         * src/pic/main.c,
942         * src/pic16/ralloc.c (pic16_assignRegisters),
943         * src/pic16/main.c,
944         * src/xa51/ralloc.c (xa51_assignRegisters),
945         * src/xa51/main.c,
946         * src/z80/ralloc.c (z80_assignRegisters),
947         * src/z80/ralloc.h,
948         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
949         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
950         * src/SDCCcse.h,
951         * src/SDCCdflow.c (computeDataFlow),
952         * src/SDCCdflow.h,
953         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
954         * src/SDCCloop.h,
955         * src/SDCCcflow.c (*),
956         * src/SDCCcflow.h,
957         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
958         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
959         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
960         immedDom() returning wrong block; probably fixes bug #1160833)
961
962 2005-03-20 Borut Razem <borut.razem AT siol.net>
963
964         * support/scripts/inc2h.pl: WIN32 port
965
966 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
967
968         * device/lib/makefile.in: added abs.c and labs.c
969
970 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
971
972         * device/include/stdint.h: added
973         * device/lib/abs.c: added
974         * device/lib/labs.c: added
975         * device/include/stdlib.h: added abs() and labs() prototypes
976         * device/lib/libsdcc.lib: added abs and labs
977         * device/include/float.h,
978         * device/lib/_fsmul.c,
979         * device/lib/printf_fast.c,
980         * device/lib/printf_tiny.c: updated comments
981
982 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
983
984         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
985         bug #1164313
986
987 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
988
989         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
990         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
991
992 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
993
994         * device/lib/printf_large.c: removed inline assembly for portability and
995           readability. Use printf_fast if speed or size are more important.
996         * src/pic16/gen.c: removed conditions around use of DEBUGpc
997         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
998
999 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
1000
1001         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
1002         prevent compiler warning
1003
1004 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
1005
1006         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
1007         moved to level 0 and declared as static. Also they are explicit
1008         placed in access bank. This was necessery because some times they
1009         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
1010         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
1011         optimizations. Currently only compare to unsigned char is implemented,
1012         * src/pic16/gen.c: added fReturnIdx array,
1013         * (struct resolvedIfx) is moved to gen.h and made public,
1014         * (struct _G): added sregsAlloc and sregsAllocSet fields,
1015         * (aopForSym): added an optimization to directly store in stack of
1016         the operand of a SEND iCode,
1017         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
1018         but as registers instead (AOP_REG) using the fReturnIdx array,
1019         * (pic16_freeAsmop): remove the freed register from the
1020         _G.sregsAlloc field,
1021         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
1022         a compare of 'WREG',
1023         * (pic16_popGetTempRegCond): changed function prototype, now
1024         function takes also a bitVector argument v which holds the current
1025         set of registers that are allocated for stack access by aopForSym,
1026         registers allocated in aopForSym for accessing stack symbols are not
1027         any more part of the functions usedRegs field,
1028         * (genCall): some times aopOp is called for a stack variable to be
1029         send, aopForSym might perform the push, if this is true make sure
1030         that genCall doesn't push the variable twice by testing _G.resDirect,
1031         * (genFunction): changed testing for unspecified interrupt number
1032         from 256 to INTNO_UNSPEC,
1033         * modified selection scheme of frame pointer generation. Previously
1034         if function did use local registers a frame pointer was generated,
1035         now a frame pointer is generated only if function has arguments
1036         (that need PLUSW2 register access), or has stack arguments, or the
1037         compiler is not instructed to omit the frame pointer,
1038         * (genEndFunction): before restoring local registers that were saved
1039         in the function preamble, also restore the registers that *might*
1040         have been allocated for stack access,
1041         * (genRet): removed some old comments,
1042         * (genCmp, the active (RN's) version): added a call to the
1043         pic16_genCmp_special function to perform the compare with a more
1044         robust and optimized way,
1045         * (genInline): a feature has been added in inline code generation,
1046         which allows a wildcard variable substitution when writing inline
1047         assembly. Code is incomplete and experimental therefore undocumented,
1048         * (genCast): changed order of aopOp for result and right to allow
1049         aopForSym to directly load the result if possible,
1050         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
1051         perform an optimized compare on some selected special occasions,
1052         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
1053         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
1054         generate an IVT any more,
1055         * src/pic16/main.c (pic16_optionsTable): added command line option
1056         --optimize-cmp,
1057         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
1058         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
1059         macros,
1060         * src/pic16/NOTES: Raphael Neider added in list of active developers
1061         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
1062         jumptable_end to prevent bug #,
1063         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
1064         inCond and outCond fields,
1065         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
1066         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
1067         turn off register spilling,
1068         * (packRegsForOneUse): synced with other ports' versions although it
1069         is not used currently,
1070         * (pic16_packRegisters): added an optimization while reading
1071         structure bitfields, some registers may be saved (malloc code is
1072         decreased by 80 bytes)
1073
1074 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
1075
1076         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
1077         left is a bitfield, if yes, then don't optimize assignment. Perhaps
1078         this can be optimized more?
1079
1080 2005-03-10 Raphael Neider <rneider AT web.de>
1081
1082         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
1083           genNearPointerGet): (hopefully) fixed access to bitfields via
1084           pointers (p->bitN = x; and x = p->bitN; failed)
1085
1086 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
1087
1088         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
1089
1090 2005-03-09 Raphael Neider <rneider AT web.de>
1091
1092         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
1093
1094 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
1095
1096         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
1097         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
1098           (regTypeNum): set REG_BIT type if necessary
1099         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
1100         * support/regression/tests/critical.c: check bug 1144613
1101
1102 2005-03-02 Raphael Neider <rneider AT web.de>
1103
1104         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
1105
1106 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1107
1108         * src/avr/ralloc.c (serialRegAssign),
1109         * src/ds390/ralloc.c (serialRegAssign),
1110         * src/hc08/ralloc.c (serialRegAssign),
1111         * src/mcs51/ralloc.c (serialRegAssign),
1112         * src/pic/ralloc.c (serialRegAssign),
1113         * src/pic16/ralloc.c (serialRegAssign),
1114         * src/xa51/ralloc.c (serialRegAssign),
1115         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
1116
1117 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
1118
1119         * src/SDCCast.c (decorateType): fixed bug 1124787
1120
1121 2005-02-20 Hubert Sack <sack AT digiplan.de>
1122         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1123
1124         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
1125         patch #1121755
1126
1127 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1128
1129         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
1130         to keep the correct label reference count when adding/removing references
1131         to labels. A peephole file using this is appended to patch #1144962.
1132
1133 2005-02-14 Raphael Neider <rneider AT web.de>
1134
1135         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
1136         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
1137         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
1138           retrievals of result operand's value on assignment
1139
1140 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
1141
1142         * device/include/pic16/string.h: modified prototype for memccpy()
1143         to memccpy(void *, void *, char, size_t)
1144         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
1145         check whether to omit frame pointer or not,
1146         * (genInline): convert all occurences of "\n" to LF in inline
1147         assembler blocks, this helps formatting the inline text,
1148         * (pic16_loadFSR0): modified prototype,
1149         * (genNearPointerGet, genNearPointerSet): reorganization of code,
1150         removed some 8051 legacy code,
1151         * (genPackBits): enabled handling bitfields exceeding one byte in size,
1152         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
1153         before allocating temporary registers in functions,
1154
1155 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1156
1157         * support/regression/tests/bitvars.c: corrected the "fix"
1158
1159 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1160
1161         * support/regression/tests/bitvars.c,
1162         * support/regression/tests/bitwise.c,
1163         * support/regression/tests/rotate.c: "fixed" problems on Alpha
1164
1165 2005-02-10 Raphael Neider <rneider AT web.de>
1166
1167         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
1168           different size for Alpha
1169         * src/pic16/gen.c (genCmpEq) : improved compare with 0
1170
1171 2005-02-09 Raphael Neider <rneider AT web.de>
1172
1173         * src/SDCC.lex(doPragma) : save and restore warning options as well
1174           (also added new stack plus clone- and copyAndFreeSDCCERRG())
1175         * have #pragma less_pedantic set the errorlevel to WARNING
1176           (fixes #1117001)
1177         * (cloneOptimize) : fixed wrong malloc's size
1178         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
1179           facilitate correct handling of #pragma (save|restore)
1180
1181 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1182
1183         * src/mcs51/gen.c: removed non-standard C nameless struct/union
1184
1185 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
1186
1187         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
1188
1189 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
1190
1191         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
1192
1193 2005-02-02 Raphael Neider <rneider AT web.de>
1194
1195         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
1196         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
1197         * (pic16_storeForReturn): fixed to allow returning function pointers
1198         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
1199         * device/include/pic16/{stddef.h,stdbool.h}: added
1200
1201 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
1202
1203         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
1204
1205 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
1206
1207         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
1208         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
1209          appeared to be required
1210
1211 2005-01-31 Borut Razem <borut.razem AT siol.net>
1212
1213         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
1214           include/mcs51 and include/z80 directories to the package
1215
1216 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1217
1218         * src/hc08/gen.c (genFunction): fixed bug #1112752
1219
1220 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1221
1222         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
1223
1224 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1225
1226         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
1227
1228 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
1229
1230         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
1231
1232 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
1233
1234         * device/include/c8051fxxx.h: removed these 6 files
1235         * device/include/mcs51/c8051fxxx.h: added these 11 new files
1236
1237 2005-01-26 Raphael Neider <rneider AT web.de>
1238
1239         * src/pic16/gen.c (genAssign): fixed assignment from longs
1240           in codespace (were cut to three bytes)
1241         * (genDummyRead): implemented (except for CODESPACE...),
1242           fixed bug #1108575
1243         * src/pic16/glue.c (emitStatistics): beautified
1244         * device/lib/pic16/libm/Makefile: added include path
1245
1246 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1247
1248         * src/z80/gen.c (aopPut): fixed bug #1103902
1249
1250 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1251
1252         * device/lib/expf.c: fixed bug #1095792
1253
1254 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
1255
1256         * device/lib/pic16/libm: added Math library sources
1257
1258 2005-01-24 Raphael Neider <rneider AT web.de>
1259
1260         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
1261           to enable upcast to pCodeOpReg2 (there is no type tag to
1262           differenciate the two and pic16_popGet2p cast into PCOR2)
1263         * src/pic16/main.c (_process_pragma): fixed another malloc bug
1264           (sizeof(sectNames) changed to sizeof(sectName))
1265           Both patches fix segfaults under MinGW.
1266
1267 2005-01-23 Raphael Neider <rneider AT web.de>
1268
1269         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
1270           Safe_[mc]?alloc()'ed variables
1271         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
1272           of (byte sized) temporaries (assign them to WREG for now)
1273         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
1274           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
1275           this might fix SIGSEGVs on MinGW...
1276         * src/SDCCopt.c (killDeadCode): restored original behaviour
1277           (volatile operands might get thrown away though)
1278
1279 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
1280
1281         * src/pic16/gen.c: fixed bug #1106975,
1282         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
1283         pointer update, INTCON is saved, global interrupts are disabled and
1284         restored after updateing TOS.
1285         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
1286         * added function attribute 'shadowregs' to take advantage of shadow
1287         registers,
1288         * added function attribute 'wparam' as an alternative to the wparam
1289         pragma,
1290         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
1291         user declares a non-ISR function as 'shadowregs',
1292         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
1293
1294 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
1295
1296         * .version: bumped version number to 2.4.8
1297         * device/lib/pic16/pics.all: list of PIC18F devices supported by
1298         pic16 port,
1299         * device/lib/pic16/libio/i2c/: I2C module support library,
1300         * device/include/pic16/i2c.h: I2C support library header,
1301         * device/lib/pic16/libc/stdio/: standard IO support sources,
1302         * (printf_small.c): printf_small() source, supports float print,
1303         * (printf_tiny.c): printf_tiny() source, does not support floats,
1304         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
1305         enable global optimizations for entire library source, other
1306         Makefiles in the source tree are also modified to reflect this,
1307         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
1308         function,
1309         * doc/sdccman.lyx: updated to reflect new changes,
1310         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
1311         sym->onStack if-case,
1312         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
1313         sbit, idata, _idata, xdata, _xdata,
1314         * added pragma library, to link an external library, (see doc),
1315         * removed command line options, --pomit-config-words, --pomit-ivt,
1316         --pleave-reset-vector,
1317         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
1318         when calling assembler to reflect memory model used, also define
1319         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
1320         reflect stack model used,
1321         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
1322         on stack return NULL,
1323
1324 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1325
1326         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
1327           of the operands is volatile. Fixes #1020220
1328
1329 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1330
1331         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
1332         * (OptimizeRegUsage): make sure that there is really no other flow where
1333           the first pCode is used
1334
1335 2005-01-22 Raphael Neider <rneider AT web.de>
1336
1337         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
1338           to fix #1106967 (pCode->seq are not set up correctly)
1339
1340 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1341
1342         * src/SDCCglue.c (glue): make sure code area is declared before the
1343         static initialization area.
1344
1345 2005-01-21 Raphael Neider <rneider AT web.de>
1346
1347         * device/lib/Makefile.in: fixed test for pic16 install dir
1348         * device/lib/pic16/*/Makefile*: modified compile flags to enable
1349           optimizations
1350         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
1351           added --optimize-goto compiler switch and pragma wparam documentation
1352         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
1353         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
1354           and PRODH closing bug #1071770 (peephole optimizer)
1355
1356 2005-01-19 Raphael Neider <rneider AT web.de>
1357
1358         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
1359           cmdLine buffers (used when calling sdcpp...) are large enough
1360           (MAX_PATH=256 truncates arguments leading to system halts when
1361           used in MinGW...)
1362         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
1363         * (genUminus): rewritten to for efficiency
1364         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
1365           used uninitialized in some cases)
1366         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
1367           copy the third byte from the int -- now assumes 0x80 (data memory)
1368         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
1369           operands (genAddLit expects the iCode's operands to swapped as
1370           well), fixed leftover bytes (crashed for short left operands)
1371         * (pic16_genMinusDec): performance improvements, removed false
1372           PIC14 emitSKPNCs
1373         * (pic16_genMinus): fixed to cope with differently sized operands
1374         * src/pic16/glue.c (pic16_glue): added new banksel optimization
1375           for --obanksel > 1
1376         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
1377         * src/pic16/graph.[ch]: implementation of directed graphs, used by
1378           new banksel optimization
1379         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
1380           analysis for temporary registers (segfaults...)
1381         * src/pic16/peeph.def: added rule
1382
1383 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
1384
1385         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
1386         which converts a float number to its ASCII representation
1387         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
1388         functions to convert the fractional and integer part of a float to ASCII,
1389         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
1390         realloc.c): added _MALLOC_SPEC to explicit place variables in data
1391         ram
1392         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
1393         _STATMEM macros,
1394         * device/include/pic16/adc.h: added GPL info,
1395         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
1396         a pCodeOp as tested operand,
1397         * (genNearPointerGet): optimized bit testing, does not use
1398         intermediate register for bit value, test directly instead with
1399         BTFSS, BTFSC, works only for single bits,
1400         * (genpic16Code): dump the name of the iCode in the asm,
1401         * src/pic16/ralloc.c (decodeOp): removed static declaration and
1402         renamed to pic16_decodeOp,
1403         * (serialRegAssign): do not allocate a temporary register for iCode
1404         sequences that test a single bit for 1/0
1405
1406 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
1407
1408         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
1409         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
1410         access stack and frame pointers. They are initially assigned to
1411         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
1412         accessing SFRs. Updated all occurences of modification of stack or
1413         frame pointer in gen.c and pcode.c,
1414         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
1415         assigning of a literal value to pointers,
1416         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
1417         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
1418         selected
1419
1420 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
1421
1422         * doc/sdccman.lyx: update documentation about stack pragma, added
1423         some info for stack memory models
1424
1425 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1426
1427         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
1428
1429 2005-01-08 Raphael Neider <rneider AT web.de>
1430
1431         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
1432           udata sections to fix bug #1097823
1433
1434 2005-01-05 Raphael Neider <rneider AT web.de>
1435
1436         * src/pic16/gen.c (genGenericShift): added handling of differently
1437           sized left operand and result
1438
1439 2005-01-04 Raphael Neider <rneider AT web.de>
1440
1441         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
1442         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
1443           to hold the condition bit)
1444         * added new version of genCmp (old code available via #define)
1445         * added new version of genShiftLeft/genShiftRight in a generic
1446           way, now supports shifting by negative values
1447         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
1448           shiftCount (expected by genGenericShift)
1449         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
1450         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
1451           dump
1452         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
1453           is an invalid literal too...)
1454
1455 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
1456
1457         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
1458         from Raphael Neider,
1459         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
1460         for 8-bit literals. This fixes some literal operands which are sign
1461         extended to 16-bits ints when instruction needs only 8-bits.
1462
1463 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
1464
1465         * device/lib/logf.c: added mcs51 assembly version
1466         * device/lib/expf.c: added mcs51 assembly version
1467         * device/lib/_logexpf.c: new shared asm code for expf and logf
1468         * device/include/math.h: add defines for assembly math library
1469         * device/lib/Makefile.in: build new _logexpf.c
1470         * device/lib/libfloat.lib: use new _logexpf.c
1471
1472 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
1473
1474         * src/pic/device.c
1475         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
1476           device types which have less than 0x7f registers.
1477
1478 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
1479
1480         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
1481
1482 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
1483
1484         * device/lib/printf_fast.c: only build on supported arch.
1485         * device/lib/printf_tiny.c: only build on supported arch.
1486         * device/lib/printf_fast_f.c: only build if asm float lib
1487         * device/lib/_fsget1arg.c: only build if asm float lib
1488         * device/lib/_fsget2args.c: only build if asm float lib
1489         * device/lib/_fsnormalize.c: only build if asm float lib
1490         * device/lib/_fsreturnval.c: only build if asm float lib
1491         * device/lib/_fsrshift.c: only build if asm float lib
1492         * device/lib/_fsswapargs.c: only build if asm float lib
1493         * device/include/stdio.h: don't provide print_fast,
1494           print_fast_f, print_tiny prototypes if --xstack used
1495
1496 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
1497
1498         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
1499         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
1500           to the SOURCES
1501
1502 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
1503
1504         * device/lib/printf_fast_f.c: same as printf_fast, but
1505           with floating point enabled
1506         * device/lib/printf_fast.c: minor tweaks
1507         * device/include/stdio.h: add printf_fast_f
1508
1509 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
1510
1511         * src/SDCCmain.c: make --float-reent default for mcs51
1512         * device/lib/_fsadd.c: added mcs51 assembly version
1513         * device/lib/_fssub.c: added mcs51 assembly version
1514         * device/lib/_fsmul.c: added mcs51 assembly version
1515         * device/lib/_fsdiv.c: added mcs51 assembly version
1516         * device/lib/_fseq.c: added mcs51 assembly version
1517         * device/lib/_fsneq.c: added mcs51 assembly version
1518         * device/lib/_fsgt.c: added mcs51 assembly version
1519         * device/lib/_fslt.c: added mcs51 assembly version
1520         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
1521         * device/lib/Makefile.in: add _fscmp to build
1522         * device/lib/libfloat.lib: add _fscmp to build
1523
1524 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
1525
1526         * device/lib/_fs2slong.c: added mcs51 assembly version
1527         * device/lib/_fs2sint.c: added mcs51 assembly version
1528         * device/lib/_fs2schar.c: added mcs51 assembly version
1529         * device/lib/_fs2ulong.c: added mcs51 assembly version
1530         * device/lib/_fs2uint.c: added mcs51 assembly version
1531         * device/lib/_fs2uchar.c: added mcs51 assembly version
1532         * device/lib/_slong2fs.c: added mcs51 assembly version
1533         * device/lib/_sint2fs.c: added mcs51 assembly version
1534         * device/lib/_schar2fs.c: added mcs51 assembly version
1535         * device/lib/_ulong2fs.c: added mcs51 assembly version
1536         * device/lib/_uint2fs.c: added mcs51 assembly version
1537         * device/lib/_uchar2fs.c: added mcs51 assembly version
1538         * device/include/float.h: added #define to select asm vs c
1539
1540 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
1541
1542         * device/lib/printf_fast.c: improvements to float output
1543         * device/include/float.h: add defines for assembly float library
1544         * device/lib/_fsget1arg.c: receive 1 float arg
1545         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
1546         * device/lib/_fsnormalize.c: normalize a float
1547         * device/lib/_fsreturnval.c: return float, various helper routines
1548         * device/lib/_fsrshift.c: right shift a float's mantissa
1549         * device/lib/_fsswapargs.c: swap 2 floats
1550         * device/lib/Makefile.in: build these 6 new files for mcs51
1551         * device/lib/libfloat.lib: add these 6 files to the library
1552
1553 2004-12-26 Borut Razem <borut.razem AT siol.net>
1554
1555         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
1556           built by gcc 3.4.2
1557
1558 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
1559
1560         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
1561           and fully reentrant and register bank neutral.
1562         * device/lib/printf_fast.c: added float (not enabled by default),
1563           added compact/slower integer (also not enabled by default),
1564           improved size/speed of fast integer code, other minor changes
1565         * device/include/stdio.h, device/lib/Makefile.in,
1566           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
1567
1568 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
1569
1570         * src/pic16/pcode.c: declaring variables other than at the start of a
1571           block is not supported in C by VC6.
1572
1573 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
1574
1575         * applied a previous patch from Raphael Neider that wasn't included
1576         in the previous commits, which fixes infinite loops within jumptable
1577         improvements,
1578         * made some fixes that previous patches introduced
1579
1580 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
1581
1582         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
1583         that fixes an issue with AOP_PCODE asmop's offset,
1584         * (pic16_popCopyReg): update instance field too,
1585         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
1586         function of pic port,
1587         * (genCmp, genAnd, genAssign),
1588         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
1589
1590 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
1591
1592         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
1593         variables initial values to idata section,
1594         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
1595         variables in some functions. This utilizes parmBytes field of iCode
1596         structure to hold the offset of the variable in stack. (might be
1597         able to use the stack field too?)
1598         * applied patch from Raphael Neider # ### , # ###
1599         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
1600         variable initial values in idata section,
1601         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
1602         for static variables with initial value
1603         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
1604         applied fix in while loop from Raphael Neider.
1605
1606 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
1607
1608         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
1609         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
1610         * src/ds390/ralloc.c (serialRegAssign): spill bits
1611         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
1612         * support/Util/SDCCerr.c,
1613         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
1614         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
1615         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
1616
1617 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
1618
1619         * device/include/sdcc-lib.h: inserted LGPL, added includes
1620           asm/ds390/features.h and asm/mcs51/features.h
1621         * device/include/asm/default/features.h,
1622         * device/include/asm/gbz80/features.h,
1623         * device/include/asm/z80/features.h: added empty _AUTOMEM
1624           and _STATMEM
1625         * device/include/asm/ds390/features.h,
1626         * device/include/asm/mcs51/features.h: added files with defines for
1627           _AUTOMEM and _STATMEM indicating automatic and static storage class
1628         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
1629         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
1630         * src/SDCCicode.c (geniCodeCast),
1631         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
1632         * src/SDCCloop.c (loopInduction): removed unused variable lr
1633         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
1634           to convertToFcall to include char modulo (RFE 1065037), added check
1635           if left operand is unsigned and use abs of literal value
1636         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
1637           as it doesn't work after conversion from peephole.def to peephole.rul
1638         * src/mcs51/gen.c (toBoolean): added check for size,
1639           (genModOneByte): optimized code for signed char modulo a literal
1640           power of 2 (thanks to Hubert Sack),
1641           (genRRC): removed unnecessary "clr c",
1642           (genRLC): replaced "add a,acc" with cheaper "rlc a"
1643         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
1644           jump optimization,
1645           swapped rules 256.c and 256.d,
1646           extended 256.d by using new multiple checks (thanks Erik),
1647           added rules 256.e and 256.f,
1648           updated rule 261.a and 261.b to new generated code
1649         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
1650
1651 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1652
1653         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
1654           induction related bugs, including first part of bug #1074377
1655
1656 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
1657
1658         * applied patch from bug-report #1076292,
1659         * applied patches for genAnd and Goto-optimizations for Raphael
1660         Neider,
1661         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
1662         dump a less iCode information,
1663         * src/pic16/device.h (pic16_options_t): added field debgen,
1664         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
1665         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
1666         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
1667         puclic,
1668         * (various functions): added macros FENTRY and FENTRY2 to functions,
1669         to emit function prologue,
1670         * (various functions): fixed indentation,
1671         * (genNearPointerGet): fixed loading of FSR0,
1672         * (genPackBits): applied patch from Raphael Neider to fix updating
1673         of FSR0 and touching only the modified bits,
1674         * src/pic16/genarith.c (various functions): added macros FENTRY to
1675         emit function prologue in comments,
1676         * src/pic16/pcode.h: added functions debugf2, debugf3,
1677         * src/pic16/ralloc.c: partial fix for packForPush caused
1678         segmentation fault,
1679
1680 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1681
1682         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
1683           <stsp AT users.sourceforge.net> with reversed byte order
1684         * support/regression/tests/rotate.c: added (ds390 skips some tests)
1685
1686 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1687
1688         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
1689           bug #1074377
1690         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
1691         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
1692
1693 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
1694
1695         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
1696
1697 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1698
1699         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
1700           conditions,
1701           (setFromConditionArgs): friendly operand parser for peephole rules,
1702           (operandBaseName, operandsNotRelated): new peephole condition
1703           "operandsNotRelated" -- similar to "operandsNotSame", but takes
1704           architecture specific register naming into account, handles n-way
1705           comparisons, and supports quoted literals
1706         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
1707
1708 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1709
1710         * src/mcs51/peeph.def: fixed bug #1076940
1711
1712 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
1713
1714         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
1715
1716 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1717
1718         Adding support for replacing ljmps with sjmps in jumptables
1719         generated for switch statements. For now you need to set the
1720         environment variable SDCC_SJMP_JUMPTABLE to enable this.
1721         Now 4 algorithms for mcs51 jumptable generation are used:
1722         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
1723         addresses loaded pc-relative for up to 112 cases and stack-pushing
1724         target addresses loaded with offset from dptr for up to 256 cases.
1725
1726         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
1727         * src/mcs51/main.c: adapted constants for switch table generation
1728         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
1729
1730 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
1731
1732         * device/lib/printf_large.c (_print_format): fixed bug 1073386
1733         * support/regression/tests/bug1057979.c: added test for bug 1073386
1734
1735 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
1736
1737         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
1738         compilers
1739
1740 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
1741
1742         * src/pic16/device.h,
1743         * src/pic16/genarith.c,
1744         * src/pic16/glue.c,
1745         * src/pic16/main.c,
1746         * src/pic16/pcode.c: applied patches #1068154 and #1070213
1747
1748 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
1749
1750         Large cummulative patch for pic16 port.
1751         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
1752         to call when a stack overflow occurs,
1753         * (malloc.h): added CVS Id tag,
1754         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
1755         variable,
1756         * added libc directory. The current version of LibC contains string
1757         functions, ctype functions and macros and some functions of the
1758         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
1759         be extensively tested in the future. Standard disclaimer here.
1760         Library is not automatically build yet. But one can build it by
1761         invoking 'make' inside the libc directory.
1762         * added ADC library under libio. Preliminary version yet.
1763
1764         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
1765         * src/pic16/gen.c (aopForRemat): asmop size is filled by
1766         aopForRemat() now and not by pic16_aopOp(),
1767         * (pic16_popGetTempReg): removed warning messgae when allocating
1768         temporary registers, its a buggy feature and will be removed,
1769         * (pic16_popGet): set register instance field in AOP_CRY,
1770         * (pic16_outBitC): fixed for results in size greater than 1,
1771         * (genUminusFloat): fixed for pic16, ported code from mcs51,
1772         * (pic16_storeForReturn): optimized return of 0,
1773         * (genCmp): experimental code for new genCmp which uses PIC18's
1774         special compare&skip instructions. Initial tests fail some times
1775         with variables grater than 1 byte in size, so new code is disabled,
1776         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
1777         a single bit,
1778         * (genCast): began a fix to optimize the casting of a bit to another
1779         bit, now assigning a bitfield to another bitfield will fail, sorry,
1780         * src/pic16/main.c: disabled the use of lr-support feature,
1781         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
1782         * added some function prototypes, added function _debugf prototype,
1783         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
1784         bits with offset (case PO_GPR_BIT),
1785         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
1786         command line,
1787         * (isBankInstruction): modified to return 0 for no banking instruction,
1788         and 1 for banking instruction,
1789         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
1790         caused stop processing pCodes after a inline assembly block,
1791         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
1792         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
1793         registers when it shouldn't,
1794         * src/pic16/ralloc.c (allocReg): add preliminary support for
1795         supporting a limited set of temporary registers,
1796
1797 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1798
1799         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
1800           genDataPointerSet): ensure assignments always copy in MSB to LSB
1801           order,
1802           (loadRegFromAop): recognize CLRH optimization,
1803           (genFunction): optimize RECEIVE iCodes in reentrant functions
1804
1805 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1806
1807         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
1808           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
1809           selected.
1810         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
1811         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
1812           contiguous with data
1813
1814 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1815
1816         * device/lib/_gptrget.c (_gptrget),
1817         * device/lib/_gptrgetc.c (_gptrgetc),
1818         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
1819           instead of sjmp to ret
1820         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
1821           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
1822
1823 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
1824
1825         * .version: bumped version to 2.4.7
1826         * device/lib/_gptrget.c (_gptrget): is now _naked
1827         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
1828         * device/lib/_gptrput.c (_gptrput): is now _naked
1829         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
1830           (createFunction): fixed xstack
1831         * src/SDCCglue.c (emitMaps): set allocation required for bit area
1832         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
1833           or bit either,
1834           (geniCodeCritical): store original interrupt state in an iTemp bit
1835           var unless stack-auto
1836         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
1837         * src/SDCCmain.c (setIncludePath): added include/target to search path
1838         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
1839         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
1840           prototype,
1841           (processFuncArgs): put bit vars in bit area
1842         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
1843           unsaveRBank): fixed xstack,
1844           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
1845           (genFunction, genEndFunction): fixed xstack,
1846           (genAssign): optimization don't walk backwards through mem
1847         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
1848         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
1849         * support/regression/Makefile: also make library (for stack-auto) when
1850           making "all" and added "test-mcs51-xstack-auto"
1851         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
1852         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
1853         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
1854         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
1855         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
1856           make-library by MAKE_LIBRARY
1857         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
1858           regression tests for xstack
1859         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
1860         * support/regression/tests/critical.c: test for critical on mcs51
1861
1862 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1863
1864         * support/regression/ports/ucz80/spec.mk: use include and lib files from
1865           built version of sdcc instead of installed version
1866
1867 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
1868
1869         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
1870         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
1871           vprintf.c now
1872         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
1873         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
1874           WARNING: remove device/lib/build/z80/printf.o by hand when
1875           updating from previous build!
1876         * device/lib/z80/printf.c: updated comment
1877         * support/regression/tests/bug1057979.c: test all ports now
1878         * support/regression/tests/bug1065458.c: file added
1879
1880 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1881
1882         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
1883           *_start and *_end symbols for static functions
1884
1885 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
1886
1887         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
1888           and search crt0.o in all library paths,
1889           (setIncludePath): proper handling of --nostdinc,
1890           (setLibPath): proper handling of --nostdlib
1891         * support/regression/Makefile,
1892         * support/regression/ports/ds390/spec.mk,
1893         * support/regression/ports/gbz80/spec.mk,
1894         * support/regression/ports/hc08/spec.mk,
1895         * support/regression/ports/mcs51/spec.mk,
1896         * support/regression/ports/mcs51-large/spec.mk,
1897         * support/regression/ports/mcs51-stack-auto/spec.mk,
1898         * support/regression/ports/z80/spec.mk: use include and lib files from
1899           built version of sdcc instead of installed version
1900         * doc/sdccman.lyx: fixed typo in --nostdinc
1901
1902 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
1903
1904         * src/pic/pcode.c,
1905         * src/pic/device.c,
1906         * src/pic/ralloc.c,
1907         * src/pic/gen.c : added support to generate code for struct bit fields.
1908
1909 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
1910
1911         * as/xa51/xa_version.h,
1912         * device/include/errno.h,
1913         * device/include/regc515c.h,
1914         * device/lib/_itoa.c,
1915         * device/lib/_ltoa.c,
1916         * device/lib/ser_ir_cts_rts.c,
1917         * sim/ucsim/xa.src/glob.cc,
1918         * sim/ucsim/xa.src/inst_gen.cc,
1919         * sim/ucsim/xa.src/xa_bit.cc,
1920         * sim/ucsim/xa.src/xa_sfr.cc,
1921         * sim/ucsim/z80.src/inst_dd.cc,
1922         * sim/ucsim/z80.src/inst_fdcb.cc,
1923         * support/scripts/keil2sdcc.pl,
1924         * src/pic16/pic16.dsp,
1925         * src/pic16/pic16a.dsp: corrected cvs line endings
1926         * device/lib/printf_large.c: fixed bug 1057979
1927         * src/pic16/gen.c: fixed non-C standard code
1928         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
1929         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
1930         * support/regression/ports/mcs51/support.c: reload T1 asap
1931         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
1932           pdata use and clear idata startup behaviour
1933         * support/regression/tests/bug1057979.c: added
1934
1935 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
1936
1937         * device/examples/ds390/ow390/ad26.h,
1938         * device/examples/ds390/ow390/cnt1d.h,
1939         * device/examples/ds390/ow390/crcutil.c,
1940         * device/examples/ds390/ow390/ownet.h,
1941         * device/examples/ds390/ow390/owsesu.c,
1942         * device/examples/ds390/ow390/swt12.h,
1943         * device/examples/ds390/ow390/swtoper.c,
1944         * device/examples/ds390/ow390/temp10.h,
1945         * device/examples/ds390/ow390/thermodl.c,
1946         * device/examples/ds390/tinitalk/tinitalk.dsp,
1947         * device/examples/ds390/tinitalk/tinitalk.dsw,
1948         * device/examples/mcs51/clock/hw.h,
1949         * device/examples/mcs51/simple2/go.bat,
1950         * device/examples/serialcomm/windows/serial.h,
1951         * device/examples/xa51/dummy.c,
1952         * device/examples/xa51/hello.c,
1953         * device/include/80c51xa.h,
1954         * device/include/at89x051.h: corrected cvs line endings
1955
1956 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
1957
1958         * src/pic16/main.c (options): added command line --gstack, to trace
1959         stack over/under flows,
1960         * added pragma 'wparam' to allow passing first byte of function
1961         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
1962         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
1963         call to __gstack_test function and sets up the symbol as extern,
1964         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
1965         * popaop): added call to pic16_testStackOverflow,
1966         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
1967         wparamList list,
1968         * (genCall, genPcall): now all parameters are passed via stack
1969         except in functions that are pass to wparam pragma in which WREG is
1970         used too,
1971         * (genPcall): REENTRANT flag is checked to see if variable prototype
1972         contains reentrant keyword, don't call a non-reentrant function, via
1973         a reentrant function pointer or vice versa, functions are never
1974         passed via WREG,
1975         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
1976         D.Winkler,
1977         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
1978         SIGSEGV when accessing a NULL register stucture,
1979         * (pic16_printGPointerType): modified to handle UPPER modifier for
1980         function initializers, changed prototype of function to simpler one,
1981         * (pic16_printIvalFuncPtr): check to see if function is already
1982         added in externs list,
1983         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
1984         optimized a move from W to SFR with a move to the same register
1985         later after a CALL,
1986         * device/lib/pic16/debug: NEW directory, contains debug features
1987         which are enabled when linking with libdebug.lib, currently command
1988         line option --gstack enables stack pointer tracing for over/under
1989         flow, corresponding sources are in debug/gstack
1990
1991 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
1992
1993         * doc/sdccman.lyx: updated SDCC version,
1994         * (PIC16 port): update list of command line options,
1995         * src/pic16/device.h (structure pic16_options_t): added field gstack
1996         to enable stack overflow tracing on push/pops,
1997         * src/pic16/device.c (statistics structure): added statistics
1998         structure,
1999         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
2000         pic16_dump_int_registers): increase statistics counters for each
2001         * variable which is encountered
2002         * (pic16_dump_usection): emit each .udata variable to its own udata
2003         section,
2004         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
2005         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
2006         parameters via stack, otherwise use old scheme,
2007         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
2008         assembler output file,
2009         * src/pic16/main.c: added command line options --gstack to enable
2010         push/pop tracing for stack overflow,
2011         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
2012         instructions): added size of each instruction,
2013         * (pic16_countInstruction): estimate size of instructions in
2014         the_pFile list, inline assembly blocks are not counted,
2015         * (pic16_FixRegisterBanking): trace previous register usage, when
2016         banksel optimizations is greater than 0, don't emit a redudant
2017         banksel directive,
2018
2019 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
2020
2021         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
2022         * src/pic16/ralloc.c : applied same fix for pic16.
2023         * src/pic/gen.c : tidied it up a little.
2024
2025 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2026
2027         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
2028         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
2029
2030 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2031
2032         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
2033
2034 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2035
2036         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
2037         non-reentrant function __modsint in the interrupt function (thus
2038         corrupting math operations during serial I/O)
2039         * device/lib/ser_ir.c: as above, changed buffersize
2040         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
2041         256.c,d for zeroing
2042         * doc/Makefile: added option -t for rsync
2043
2044 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2045
2046         * src/SDCCast.h (struct ast),
2047         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
2048
2049 2004-10-20 Borut Razem <borut.razem AT siol.net>
2050
2051         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
2052         package
2053
2054 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
2055
2056         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
2057         makefile targets,
2058         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
2059         support functions to replace long sequences of MOVFF's from access
2060         bank registers to stack and vice versa,
2061         * src/pic16/device.h: added new field opt_flags, where optimization
2062         flags can be set to enable certain features,
2063         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
2064         * pBlock, (genFunction, genEndFunction): surroung loop for
2065         saving/loading used registers in stack with PC_INFO pCodes,
2066         INF_LREGS. Code in between can then be optimized by pCode optimizer
2067         to support function calls,
2068         * (genDataPointerSet): fixed bug which loaded float fields in
2069         structures with corrupt data,
2070         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
2071         in a standard way debug info on stderr. Feature used for developing
2072         and debugging only,
2073         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
2074         obsolete chunks of code,
2075         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
2076         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
2077         * pic16/src/pcode.c (pic16_newpCodeInfo,
2078         * (pic16_newpCodeOpLocalRegs),
2079         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
2080         feature,
2081         * (pic16_pCodeConstString): printing of the initial value of a
2082         symbol as a comment is inhibited since parsing was already done by
2083         copyStr and output is corrupt,
2084         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
2085
2086 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2087
2088         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
2089
2090 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
2091
2092         * as/mcs51/lkarea.c: removed old K&R style,
2093           (lnksect): changed check on boundary error,
2094           (lnksect2): changed check on boundary error,
2095           (lnksect2): extend XSTK to end of page if size = 1
2096         * as/mcs51/lkmain.c: removed old K&R style,
2097           (Areas51): create l_IRAM symbol
2098         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
2099         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
2100           model-mcs51-stack-auto, added model-mcs51-xstack-auto
2101         * device/lib/_mullong.c: added version to be compiled with xstack
2102         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
2103         * device/lib/mcs51/crtxclear.asm: clear pdata as well
2104         * device/lib/mcs51/crtxstack.asm: fixed comment
2105         * src/SDCCglue.c: maxInterrupts defaults to 0,
2106           (emitMaps): added pdata,
2107           (createInterruptVect): (re)moved default,
2108           (glue): added pdata,
2109           (glue): moved __start__xstack to XSTK with default size 1
2110         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
2111           and options.float_rent when options.stackAuto is set,
2112           (linkEdit): only write XDATA_NAME if provided on command line
2113         * src/SDCCmem.h,
2114         * src/SDCCmem.c: added pdata
2115         * src/port.h: added pdata_name to PORT
2116         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
2117           (saveRegisters, unsaveRegisters): removed usage of B,
2118           (genMinus): fixed accumulator clash,
2119           (genJumpTab): added comment, this needs another look
2120         * src/mcs51/gen.c: added check for "B in use" paranoia,
2121           added pushB() and popB()
2122         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
2123           chance
2124         * src/avr/main.c,
2125         * src/ds390/main.c,
2126         * src/hc08/main.c,
2127         * src/mcs51/main.c,
2128         * src/pic/main.c,
2129         * src/pic16/main.c,
2130         * src/xa51/main.c,
2131         * src/z80/main.c: (reset_regparms) made void parameter explicit and
2132           added PSEG (PAG,XDATA) or NULL to port specifier
2133         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
2134         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
2135           (_mcs51_genInitStartup): removed __start__xstack equ,
2136           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
2137         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
2138         * src/z80/gen.c (_rleAppend): fixed warnings
2139         * support/regression/tests/zeropad.c: added pdata test
2140         * .version: bumped to 2.4.6
2141
2142 2004-10-17 Borut Razem <borut.razem AT siol.net>
2143
2144         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
2145         as a part of nightly build
2146
2147 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
2148
2149         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
2150         WREG holds the first byte function parameters,
2151         * (aopForSym): take special case for symbols which are in FARSPACE
2152         but in CODESPACE too,
2153         * (assignResultValue): modified to take into account _G.useWreg,
2154         * (genCall): don't use wreg for parameter passing when function is
2155         declared as reentrant, too, added optimization INCF to stack
2156         pointer when stack parameter count is 1,
2157         * (genFunction, genEndFunction): refurnished and fixed to not using
2158         wreg for passing parameters when function has varargs or is
2159         reentrant, fixed bug with symbol name compare for generating
2160         functions in absolute address,
2161         * (pic16_storeForReturn): refurnished,
2162         * (genCmp): began writing a new version of the function, not ready
2163         yet, therefore it is disabled,
2164         * (genAssign): do not read code memory when assigning a function to
2165         a pointer function,
2166         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
2167         array of characters, not pointer,
2168         * (pic16initialComments): in debug mode emit an .ident directive for
2169         the assembler,
2170         * (_process_pragma): emit a new warning type (internal to pic16)
2171         when setting stack to default length, emit a similar warning when
2172         placing a function at absolute address and address is not word aligned
2173         * (_pic16_parseOptions): added 'return TRUE' statement,
2174         * (_pic16_linkEdit): if compiling a source, then add the source's
2175         file object, first in the list of objects to link,
2176
2177 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
2178
2179         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
2180         * src/pic/main.c : removed VC warning.
2181         * src/pic/gen.c : changed comment.
2182
2183 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
2184
2185         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
2186         reference to a deprecated symbol _GPTRREG was causing failure to
2187         link. Thanks G. M. Gallant for the info.
2188
2189 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
2190
2191         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
2192         comments for Bugs item #954788.
2193
2194 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
2195
2196         * src/pic16/device.c (pic16_dump_gsection,
2197         * pic16_groupRegistersInSection): handle symbols declared to be in
2198         access bank differently,
2199         * src/pic16/gen.c (struct _G): added field resDirect,
2200         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
2201         send values read from stack directly to result and don't allocate
2202         temporary values,
2203         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
2204         same registers,
2205         * (pic16_sameRegsOfs): NEW,
2206         * (freeAsmop): if _G.resDirect is set then do not mark registers as
2207         free because they were not allocated from temporary pool,
2208         * pic16_popRegFromString): workaround to fix a problem with
2209         allocating variables twice or never,
2210         * (genGenPointerGet): using PRODL instead of FSR0H,
2211         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
2212         instead of FSR0H,
2213         * (genAssign): take advantage of the _G.resDirect flag,
2214         * (genCast): around line 11844, use mov2f instead of directly
2215         MOVFF'ing between operands to account for literal values,
2216         * src/pic16/genutils.c: some new debug functions for gpsim have been
2217         added,
2218         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
2219         float with integer part only,
2220         * src/pic16/main.c (_process_pragma): handle pragma udata access to
2221         place variables in access bank
2222         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
2223         updated sources to reflect recent changes in gen.c
2224
2225 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
2226
2227         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
2228         sources that searched for headers in installation path, now the
2229         device/include/pic16 is used,
2230         * src/pic16/glue.c (pic16glue),
2231         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
2232         .line directives if not in debug mode, this suppresses assembler's
2233         warnings for ignored directives
2234
2235 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
2236
2237         * src/port.h: made reset_regparms prototype void parameter explicit.
2238         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
2239         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
2240         * doc/sdccman.lyx: documented warning disabling and how to use
2241           printf_large to make it print floats.
2242         * device/include/stdbool.h: NEW
2243         * device/lib/_atof.c,
2244         * device/lib/_divuint.c,
2245         * device/lib/_divulong.c,
2246         * device/lib/expf.c,
2247         * device/lib/printf_large.c,
2248         * device/lib/sincosf.c,
2249         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
2250         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
2251           a completely reentrant lib.
2252
2253 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
2254
2255         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
2256         * device/include/pic16/stdio.h: fixed bug with colon
2257
2258 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
2259
2260         * device/include/pic16/stdio.h,
2261         * device/include/pic16/stdlib.h,
2262         * device/include/pic16/math.h: NEW
2263         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
2264         declared as _naked to reduce overhead
2265         * device/lib/Makefile.in (target port-specific-objects-pic16):
2266         changed * to *.* so to ignore the CVS directory,
2267         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
2268         stacked variables back in stack,
2269         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
2270         corruption
2271
2272 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
2273
2274         * .version: bumped version number to 2.4.5
2275         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
2276         * support/Util/SDCCerr.c (messages structure): added entry for
2277         W_POSSBUG2
2278
2279         Large cumulative patch for pic16 port and libraries.
2280         * device/include/pic16/sdcc-lib.h,
2281         * device/include/pic16/stdarg.h,
2282         * device/include/asm/pic16/features.h,
2283         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
2284         * device/include/pic16/float.h: changes reentrant keyword with
2285         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
2286         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
2287         updated target build-libraries to include objects from gptr,
2288         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
2289         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
2290         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
2291         all function headings,
2292         * src/SDCCmain.c: added global parameter userIncDirsSet,
2293         * (parseCmdLine): when option -I is encountered add directory to
2294         userIncDirsSet too,
2295         * src/version.awk: added space between control and long,
2296         * src/pic16/NOTES: added some notes for the port,
2297         * src/pic16/gen.c: added prototype for mov2fp function,
2298         * (fReturnpic16[]): properly named return value registers,
2299         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
2300         * (aopForSym): added code to handle symbols with onStack flag set,
2301         symbols onStack are allocated PTRSIZE bytes,
2302         * (aopFreeAsmop): handles special case where asmops are stack objects,
2303         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
2304         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
2305         added argument lock to trace flaws in allocating temporary registers
2306         when developing port,
2307         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
2308         * (pic16_popRegFromString): reenabled allocating a direct register
2309         from string,
2310         * (assignResultValue): various beautifications,
2311         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
2312         referenced function argument,
2313         * (genIpush): reenabled to allow stacked arguments, handles only
2314         ic->parmPush iCodes,
2315         * (genCall, genPcall): major changes to allow for variable argument
2316         functions, fixed a bug with falsely restoring stack pointer after
2317         returning from call,
2318         * (genFunction): pending code for critical function,
2319         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
2320         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
2321         * (genNearPointerGet): fixed bug with indirect reading, was always
2322         reading from INDF0
2323         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
2324         pointers,
2325         * (genAddrOf): rewrote code to take address of a stacked function parameter
2326         * (genCast): fixed casting to generic pointer type,
2327         * src/pic16/gen.h: added AOP_STA,
2328         * (struct asmop): added field stk,
2329         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
2330         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
2331         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
2332         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
2333         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
2334         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
2335         generic pointers,
2336         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
2337         and library paths,
2338         * (pic16_port structure): generic pointer size is set to 3,
2339         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
2340         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
2341         compiler warning,
2342         * src/pic16/ralloc.c (allocReg): prevent allocating register when
2343         operand is an iTemp,
2344
2345 2004-09-24 Martin Helmling <mh AT octo-soft.de>
2346
2347         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
2348         * debugger/mcs51/simi.c: addapt new syntax of s51
2349
2350 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
2351
2352         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
2353         * src/pic16/pcode.c: commented out some calls to free() in order to
2354         fix bug #989576,
2355
2356 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2357
2358         * src/SDCCicode.h,
2359         * src/SDCCicode.c (isiCodeInFunctionCall),
2360         * src/avr/ralloc.c (selectSpil),
2361         * src/pic/ralloc.c (selectSpil),
2362         * src/pic16/ralloc.c (selectSpil),
2363         * src/ds390/ralloc.c (selectSpil),
2364         * src/hc08/ralloc.c (selectSpil),
2365         * src/xa51/ralloc.c (selectSpil),
2366         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
2367         stack in the middle of a function call sequence (fixes bug #1020268)
2368         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
2369         costs associated with the minimum switch case.
2370
2371 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2372
2373         * src/SDCC.lex: fixed bug #1030549
2374
2375 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2376
2377         * src/SDCCcse.h (struct cseDef),
2378         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
2379         over a function call if the CSE is derived from a symbol whose
2380         address has been taken (fixes bug #1029883)
2381         * support/regression/tests/bug-1029883: a new regression test for
2382         this bug
2383
2384 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2385
2386         * src/hc08/gen.c (emitinline): fixed bug #1029778
2387         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
2388         to a cast object is no longer a syntax error ("fixes" bug #1030006,
2389         and starts toward RFE #905167)
2390
2391 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
2392
2393         * src/pic16/gen.c (mov2f): New function to move an operand to
2394         another without considering if it is a literal or a register,
2395         * (pic16_sameRegs): don't check if they are both AOP_REG,
2396         * (AccRsh): removed andmask=0 lines,
2397         * (genLeftShift): duplicated to be improved in future versions,
2398         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
2399         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
2400         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
2401         * (pic16initMnemonics): added initialization for POC_INFSNZW,
2402         * (insertBankSwitch): fixed inserting banksel directives algorithm
2403         for instructions that follow a skip instruction, this fixes a report
2404         for broken subtraction code generation,
2405         * src/pic16/ralloc.c (deassignLRs): do not free register if current
2406         iCode is a left op, just in case result and right share the same
2407         registers
2408
2409 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2410
2411         * src/hc08/main.c,
2412         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
2413         preservation of HX
2414         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
2415         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
2416         on 2004-09-12; it was buggy
2417
2418 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
2419
2420         * src/SDCCsymt.h: removed RESULT_CHECK
2421         * src/SDCCast.c,
2422         * src/SDCCglue.c,
2423         * src/SDCCval.c,
2424         * src/pic/glue.c,
2425         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
2426
2427 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
2428
2429         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
2430         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
2431         configuration values no more rejected by compiler, they are assigned
2432         to configuration registers with a warning message instead,
2433         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
2434         the for-loop so last conf register is emitted too,
2435         * (_pic16_initPaths): link library libsdcc.lib by default,
2436         * (_hasNativeMulFor): modified test for multiplication according to
2437         Raphael Neider's remarks. Integer multiplication is also done with
2438         support functions,
2439         * device/include/pic16/pic18fregs.h: corrected type error in while
2440         testing and including 18f6720 header file
2441
2442 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
2443
2444         * src/pic16/device.h (pic16_options): removed field use_crt,
2445         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
2446         until an optimization to handle single bits is added,
2447         * (pic16_loadFSR0): moved before genUnpackBits,
2448         * (genAnd): some white lines removed,
2449         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
2450         leave_reset flags in pic16_options when using crt modules,
2451
2452 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
2453
2454         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
2455           for bugs 898889 & 979599. Also used some safer print instructions.
2456
2457 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
2458
2459         * src/pic16/device.h (pic16_options_t): added field use_crt,
2460         crt_name, no_crt,
2461         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
2462         catch a probable future bug,
2463         * src/pic16/gen.c: aopIdx function commented out,
2464         * (genAssign): commented out old code which used aopIdx,
2465         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
2466         code, added if conditionals to take into account the --use-crt
2467         command line options,
2468         * src/pic16/main.c (pic16_optionsTable): added new command line
2469         options, --use-crt= and --no-crt,
2470         * (_pic16_linkEdit): now the proper crt object is added in the
2471         linker command line except than when --no-crt is specified,
2472         * src/pic16/pcode.c,
2473         * src/pic16/pcode.h: added some structures and functions for a new
2474         optimization scheme to compansate for instruction overhead between
2475         same iCodes, this scheme is currently under development and is not
2476         working in any way,
2477         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
2478         to && operator,
2479         * device/lib/pic16/startup/crt0i.c,
2480         * device/lib/pic16/startup/crt0iz.c: added global char variable
2481         __uflags to force the generation of an idata section
2482
2483 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
2484
2485         * doc/Makefile,
2486         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
2487         * doc/sdccman.lyx: updated sdcc version to 2.4.4
2488
2489 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2490
2491         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
2492         Frieder) and clarified the default code optimization mode
2493
2494 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2495
2496         * src/SDCC.lex (doPragma, process_pragma),
2497         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
2498         "opt_code_size", and "opt_code_balanced"
2499         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
2500         regrouped options by category, added support for category headers
2501         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
2502         and "--opt-code-size"
2503         * doc/sdccman.lyx: documented these new options and pragmas
2504         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
2505         preference into account
2506
2507 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2508
2509         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
2510           geniCodePreDec): Fixed bug 904237 by generating a warning
2511         * src/SDCCerr.h,
2512         * src/SDCCerr.c: added warning W_SIZEOF_VOID
2513
2514 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
2515
2516         * src/pic/device.c : When no max ram set validate full memory range.
2517         * src/pic/pcode.c,
2518         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
2519
2520 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2521
2522         * device/lib/_gptrget.c,
2523         * device/lib/_gptrput.c: updated comment
2524         * device/lib/calloc.c,
2525         * device/lib/free.c,
2526         * device/lib/malloc.c,
2527         * device/lib/realloc.c: added LGPL, made them reentrant-safe
2528         * src/SDCCcse.c (cseBBlock),
2529         * src/SDCCicode.c (printOperand, geniCodeArray),
2530         * src/SDCCicode.h (struct operand): fixed bug 868103
2531         * support/regression/tests/bug-868103.c: added
2532         * src/SDCCast.c (searchLitOp),
2533         * src/SDCCcse.h (struct cseDef),
2534         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
2535         * src/SDCCicode.h (struct operand),
2536         * src/SDCCsymt.h (struct sym_link),
2537         * src/avr/gen.c (hasInc),
2538         * src/ds390/gen.c (hasInc),
2539         * src/hc08/gen.c (genPlusIncr, hasInc),
2540         * src/mcs51/gen.c (hasInc),
2541         * src/pic16/glue.c (pic16_printIvalChar),
2542         * src/pic16/ralloc.c (regWithIdx),
2543         * src/xa51/gen.c (hasInc) : removed warnings
2544         * src/SDCCast.c (createBlock): added comment ???
2545         * src/hc08/ralloc.c: updated comments
2546
2547 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2548
2549         * doc/sdccman.lyx: updated section on switch statements, added
2550         section about semaphore locking
2551         * doc/Makefile: added option -info for latex2html
2552         * device/lib/_gptrget.c,
2553         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
2554
2555 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
2556
2557         * src/pic/device.h,
2558         * src/pic/device.c,
2559         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
2560          maxram is less than 0x100.
2561
2562 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
2563
2564         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
2565
2566 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2567
2568         * src/port.h,
2569         * src/mcs51/main.c,
2570         * src/ds390/main.c,
2571         * src/z80/main.c,
2572         * src/hc08/main.c,
2573         * src/pic/main.c,
2574         * src/pic16/main.c,
2575         * src/avr/main.c,
2576         * src/xa51/main.c
2577         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
2578         a jump table is the best form for a switch statement, including
2579         automatic insertion of missing cases to make the case range
2580         continuous. Developed in collaboration with Frieder Ferlemann.
2581
2582 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2583
2584         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
2585         accumulator result if it needs sign extension
2586
2587 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2588
2589         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
2590
2591 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2592
2593         * device/lib/gbz80/printf.c,
2594         * device/lib/z80/printf.c: removed define for NULL
2595
2596 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2597
2598         * as/xa51/xa_link.c,
2599         * device/examples/ds390/ow390/ad26.c,
2600         * device/examples/ds390/ow390/cnt1d.c,
2601         * device/examples/ds390/ow390/counter.c,
2602         * device/examples/ds390/ow390/ds2480.h,
2603         * device/examples/ds390/ow390/ds2480ut.c,
2604         * device/examples/ds390/ow390/findtype.c,
2605         * device/examples/ds390/ow390/gethumd.c,
2606         * device/examples/ds390/ow390/owllu.c,
2607         * device/examples/ds390/ow390/ownetu.c,
2608         * device/examples/ds390/ow390/swt12.c,
2609         * device/examples/ds390/ow390/swtloop.c,
2610         * device/examples/ds390/ow390/temp.c,
2611         * device/examples/ds390/ow390/temp10.c,
2612         * device/examples/ds390/ow390/thermo21.c,
2613         * device/examples/ds390/ow390/tinilnk.c,
2614         * device/examples/ds390/ow390/tstfind.c,
2615         * device/examples/serialcomm/windows/serial.cpp,
2616         * device/examples/serialcomm/windows/test_serialcomm.cpp,
2617         * device/include/reg51.h: fixed line endings for cvs
2618
2619 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2620
2621         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
2622         packRegsForAccUse, packRegisters): new accumulator register
2623         packing algorithm
2624         * support/regression/ports/hc08/support.c (_putchar): suppress
2625         warning of unused variable
2626         * src/SDCCicode.c: added SWAP entry to codeTable
2627
2628 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
2629
2630         * device/lib/sprintf.c: forgot to add this file before previous commit
2631
2632 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
2633
2634         * src/pic16/gen.c (genPackBits): added operand right in function
2635         parameters, load result directly if p_type is POINTER (that is
2636         called by genNearPointerSet)
2637         * (genUnPackBits): added operand left in function parameters,
2638         * (genNearPointerGet, genNearPointerSet): prevent the loading of
2639         FSR0 if accessing bitfields,
2640
2641 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
2642
2643         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
2644           _print_format; updated printf, sprintf, vsprintf
2645         * device/include/asm/default/features.h: corrected comment/define
2646         * device/lib/Makefile.in: added sprintf.c
2647         * device/lib/libsdcc.lib: added sprintf module
2648         * device/lib/printf_large.c,
2649         * device/lib/vprintf.c,
2650         * device/lib/sprintf.c: totally refactored printf_large and vprintf
2651           into these 3 files
2652         * support/regression/Makefile: changed ALL_PORTS into a usefull default
2653         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
2654         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
2655           hc08 test
2656         * support/regression/tests/zeropad.c: define idata as data for hc08
2657
2658 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2659
2660         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
2661         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
2662         labels are referenced at least once (even if a reference is not found)
2663         * src/hc08/gen.c (emitcode): set isComment flag for comments
2664         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
2665         loads), rules 6a..6b (optimize jumps to return)
2666
2667 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2668
2669         * device/lib/acosf.c (acosf),
2670         * device/lib/asinf.c (asinf),
2671         * device/lib/atanf.c (atanf),
2672         * device/lib/ceilf.c (ceilf),
2673         * device/lib/cosf.c (cosf),
2674         * device/lib/coshf.c (coshf),
2675         * device/lib/cotf.c (cotf),
2676         * device/lib/fabsf.c (fabsf),
2677         * device/lib/floorf.c (floorf),
2678         * device/lib/log10f.c (log10f),
2679         * device/lib/logf.c (logf),
2680         * device/lib/sinf.c (sinf),
2681         * device/lib/sinhf.c (sinhf),
2682         * device/lib/sqrtf.c (sqrtf),
2683         * device/lib/tanf.c (tanf),
2684         * device/lib/tanhf.c (tanhf),
2685         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
2686         replaced all instances of "reentrant" in the library functions
2687         defined in math.h with this macro.
2688         * support/regression/tests/float_trans.c: reenabled test for hc08
2689
2690 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
2691
2692         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
2693         erroneously deleted
2694
2695 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2696
2697         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
2698         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
2699         multi-byte volatile operands are used
2700         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
2701         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
2702         initialization to area GSINIT0 so that it would always precede
2703         any static initializers in GSINIT
2704         * support/regression/tests/zeropad.c: fixed idata define for hc08
2705         * support/regression/tests/bug-927659.c,
2706         * support/regression/tests/float_trans.c: disabled tests for hc08
2707         pending missing library routines
2708         * .version: increased version number to 2.4.4 - hc08 port now passes
2709         regression tests
2710
2711
2712 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
2713
2714         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
2715         * Makefile.common.in,
2716         * as/Makefile,
2717         * as/hc08/Makefile.in,
2718         * as/mcs51/Makefile.in,
2719         * as/z80/Makefile.in,
2720         * debugger/mcs51/Makefile.in,
2721         * device/include/Makefile.in,
2722         * device/lib/Makefile.in,
2723         * doc/Makefile,
2724         * link/Makefile,
2725         * link/z80/Makefile.in,
2726         * packihx/Makefile.in,
2727         * sim/ucsim/main_in.mk,
2728         * sim/ucsim/avr.src/Makefile.in,
2729         * sim/ucsim/doc/Makefile.in,
2730         * sim/ucsim/gui.src/serio.src/Makefile.in,
2731         * sim/ucsim/hc08.src/Makefile.in,
2732         * sim/ucsim/s51.src/Makefile.in,
2733         * sim/ucsim/xa.src/Makefile.in,
2734         * sim/ucsim/z80.src/Makefile.in,
2735         * src/Makefile.in,
2736         * support/cpp2/Makefile.in,
2737         * support/librarian/Makefile,
2738         * support/makebin/Makefile: added DESTDIR to the install path proposed
2739         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
2740         * doc/sdccman.lyx: added DESTDIR documentation
2741
2742 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
2743
2744         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
2745         instruction for interrupt handlers, use fast returns when returning
2746         from high priority interrupts
2747
2748 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2749
2750         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
2751         code generation
2752         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
2753         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
2754         bugs, ported much of Bernhard's code from mcs51
2755         * src/mcs51/gen.c (genSend),
2756         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
2757         than one when calling a reentrant function
2758         * device/lib/_mullong.c: defined an alternate struct layout for big
2759         endian ports (hc08)
2760
2761 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2762
2763         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
2764         test
2765
2766 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2767
2768         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
2769         are sane and complete before asking the port its prefered parameter
2770         passing method (fixes bug #1017633)
2771         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
2772         and _ret3
2773
2774 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2775
2776         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
2777         problem in bitfields >= 8 bits.
2778
2779 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
2780
2781         * src/SDCCsymt.c: undid changes that were not meant to be committed
2782
2783 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
2784
2785         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
2786
2787 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
2788
2789         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
2790           copied and wrong bit got inverted
2791
2792 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2793
2794         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
2795         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
2796         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
2797         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
2798         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
2799         assignments to bitfields at known addresses
2800         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
2801         reads from bitfields at known addresses
2802         * src/hc08/ralloc.c (packRegisters),
2803         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
2804         genhc08Code): optimize pointer get values used as conditionals
2805         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
2806         and branch
2807
2808 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2809
2810         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
2811         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
2812         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
2813         as conditionals
2814
2815 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2816
2817         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
2818
2819 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2820
2821         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
2822         related problems
2823
2824 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
2825
2826         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
2827
2828 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2829
2830         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
2831         mcs51 port
2832
2833 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
2834
2835         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
2836
2837 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2838
2839         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
2840         cases use more compact code.
2841
2842 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
2843
2844         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
2845
2846 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2847
2848         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
2849
2850 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2851
2852         * src/SDCCsymt.h,
2853         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
2854         parameter of changePointer() from symbol* to sym_link*
2855         * src/SDCCast.c (decorateType): call changePointer() for CAST op
2856         * src/SDCCsymt.c (compareType): void* type is castable to other
2857         pointers, but not necesarily an exact match.
2858         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
2859         is no longer blindly treated as an exact match.
2860         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
2861
2862 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
2863
2864         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
2865
2866 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
2867
2868         * src/pic/gen.c,
2869         * src/pic/pcode.c,
2870         * src/pic/ralloc.h,
2871         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
2872
2873 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
2874
2875         * src/pic/device.c,
2876         * src/pic/device.h,
2877         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
2878
2879 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2880
2881         * src/mcs51/gen.c (emitcode): fixed bug #992819
2882
2883 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
2884
2885         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
2886           there's no need to make it worse
2887
2888 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2889
2890         * src/mcs51/ralloc.c (deassignLR),
2891         * src/ds390/ralloc.c (deassignLR),
2892         * src/hc08/ralloc.c (deassignLR),
2893         * src/z80/ralloc.c (deassignLR),
2894         * src/pic/ralloc.c (deassignLR),
2895         * src/pic16/ralloc.c (deassignLR),
2896         * src/avr/ralloc.c (deassignLR),
2897         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
2898         rlivePoint): fixed another part of bug #971834
2899
2900 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2901
2902         * src/z80/main.c: enabled "critical" keyword
2903         * src/z80/mappings.i,
2904         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
2905         functions (fixes bug #979646)
2906         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
2907
2908 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2909
2910         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
2911           such as c:\mydir.
2912
2913 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
2914
2915         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
2916           doesn't disable too much optimizations
2917
2918 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
2919
2920         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
2921
2922 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
2923
2924         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
2925
2926 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
2927
2928         * src/pic/gen.c tidied up tabs
2929         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
2930         * src/pic/main.c tidied up tabs
2931         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
2932         * src/pic/pcoderegs.c tidied up tabs
2933         * src/pic/ralloc.c tidied up tabs
2934
2935 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
2936
2937         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
2938         to S_FIXED for pic16 port and when symbol is not in level 0,
2939         allocate for S_REGISTER storage class and pic16 port, too,
2940         * src/pic16/device.h: prototype for checkSym,
2941         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
2942         * (pic16_assignConfigWordValue): test the value and the mask to
2943         validate that the value is suitable for the configuration word,
2944         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
2945         collect extern declared symbols, don't emit symbol twice, check
2946         first if symbol is in publics set first,
2947         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
2948         * added command line '--fstack' which enables an experimental
2949         feature for stack access, too buggy to be used yet...
2950         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
2951         * (pic16_allocDirReg): when register has storage class S_REGISTER
2952         allocate in pic16_dynAccessRegs,
2953         * device/include/pic16/pic18f????.h: modified configuration word
2954         naming convention, words started as CONFIG0H but should be CONFIG1H
2955
2956 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
2957
2958         * device/include/mcs51reg.h: fixed bug 970993
2959
2960 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
2961
2962         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
2963         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
2964         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
2965         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
2966         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
2967         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
2968           error/warning numbers,
2969           added function setWarningDisabled()
2970         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
2971         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
2972           _memcmp.c _memmove.c calloc.c realloc.c free.c
2973         * support/regression/tests/malloc.c: added tests for new functionality
2974         * support/regression/tests/zeropad.c: added tests for truncated initializers
2975           and initialized char arrays starting with '\x0'
2976         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
2977
2978 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
2979
2980         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
2981
2982 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2983
2984         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
2985         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
2986         peephole 177.e. Thanks to anonymous
2987
2988 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
2989
2990         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
2991         function isn't used in the source but referenced as a
2992         variable initializer then declare it as extern in .asm file
2993
2994 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
2995
2996         * .version: increased version number to 2.4.3
2997
2998         Adding version extension according to ChangeLog CVS revision
2999         * src/Makefile.in (target all): added dependency 'version.h'
3000         * (rule version.h): added rule to create version.h from ChangeLog,
3001         * (rule dep): added dependency version.h,
3002         * src/version.awk: AWK script to create version.h
3003         * src/SDCCdwarf2.c (dwWriteModule),
3004         * src/SDCCglue.c (initialComments),
3005         * src/SDCCmain.c (printVersionInfo): modified to write after
3006         version string the version extension number,
3007         * src/SDCCutil.c: included "version.h"
3008         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
3009         number,
3010         * src/SDCCutil.h: added prototype for getBuildNumber
3011
3012         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
3013         includeDirsSet, too,
3014         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
3015         const char [] is found in function prototype...
3016
3017         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
3018         moving to WREG with source is already in WREG,
3019         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
3020         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
3021         * (aopForSym): stack'ed symbols are partially supported, added
3022         if-clause to support symbols in FARSPACE,
3023         * (sameRegs): added test for AOP_ACC to see if registers are same,
3024         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
3025         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
3026         * (pic16_popRegFromString): will not allocate a new register if it
3027         doesn't find one by name, bug may have introduced...
3028         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
3029         * (genIpush): revived to use pic16 port's stack,
3030         * (genAddrOf): added incomplete case for stack'ed operand,
3031         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
3032         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
3033         can handle multibyte operands,
3034         * src/pic16/glue.c (pic16_printIval*): some debug info added,
3035         * (pic16initialComments): added message for MPLAB compatibility
3036         mode enabled,
3037         * src/pic16/main.h: prototype for pic16_mplab_comp,
3038         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
3039         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
3040         * (_pic16_linkEdit): NEW, handles link stage, transferred here
3041         because of increased complexity of procedure,
3042         * (_process_pragma): stack pragma changed to format 'stack pos len',
3043         emit symbol '_stack_end' to conform with gplink,
3044         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
3045         to search for register,
3046         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
3047         PO_GPR_REGISTER,
3048         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
3049         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
3050         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
3051         case for PO_GPR_REGISTER,
3052         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
3053         dies, the new era is ahead !...
3054         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
3055         pic16_dynInternalRegs,
3056         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
3057         * (pic16_allocDirReg): minor optimizations and bug fixes,
3058         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
3059
3060         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
3061         load stack and frame pointer with address of 'stack_end' symbol
3062
3063 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
3064
3065         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
3066         without source code but only variable initializers
3067
3068 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
3069
3070         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
3071         external are not declared as extern to reduce overhead while linking
3072
3073 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
3074
3075         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
3076
3077 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
3078
3079         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
3080           Yee Keat for the patch
3081         * src/SDCCast.c (decorateType): fixed bug #979599
3082         * src/ds390/gen.h: removed local fReturnSizeDS390
3083         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
3084         * src/ds390/gen.c (genAnd, genOr, genXor),
3085         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
3086
3087 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
3088
3089         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
3090         add relFilesSet to $3, manipulate $2 to handle linking of object
3091         files without source files in command line,
3092         * device/include/pic16 (all headers): added ID location macros,
3093         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
3094         entries for ID location bytes,
3095         * (pic16_assignIdByteValue): NEW,
3096         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
3097         added field dumpcalltree to pic16_options_t,
3098         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
3099         is used instead of pic16_Gstack_base_addr, check if (ifx) before
3100         emitting rFalseIfx label after check_carry label,
3101         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
3102         pic16_emitDIRegs), NEW
3103         * (pic16glue): dump .calltree file when option --calltree found,
3104         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
3105         * (_pic16_genAssemblerPreamble): emit ID locations after
3106         configuration registers,
3107         * (pic16_linkCmd): modifications of the link command,
3108         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
3109         * (pic16_pCodeInitRegisters): don't init stack registers,
3110         * (pic16_findPrevInstruction): fixed bug,
3111         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
3112         bug with immediate registers,
3113         * (buildCallTree): traces stack push and pop,
3114         * (pct2): dump also stack usage for each function,
3115         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
3116         * (pic16_allocDirReg): various modifications,
3117         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
3118         fixed to 1,
3119
3120 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
3121
3122         * src/pic16/pcode.c: removed buggy double colon
3123
3124 2004-07-01 Borut Razem <borut.razem AT siol.net>
3125
3126         * support/scripts/sdcc.nsi: added include/pic16 to setup
3127
3128 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
3129
3130         * device/lib/Makefile.in: fixed bug in target objects-pic16,
3131         * device/lib/pic16/Makefile: prefixed with dash (-) command under
3132         target 'clean',
3133         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
3134         specific command line arguments. Also added sample lkr script
3135         for placing a variable at a specific memory bank.
3136         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
3137         at a specific memory bank,
3138         * (pic16_dump_isection): fixed bug which caused string literals to
3139         be omitted when dumping idata section,
3140         * (pic16_groupRegistersInSection): added code to handle registers
3141         in specific memory banks,
3142         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
3143         public, all references are renamed too,
3144         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
3145         AOP_DPTR2,
3146         * (pic16_storeForReturn): added case to handle when dest is WREG,
3147         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
3148         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
3149         pic16_rel_udata, check to see if that register is marked as being
3150         a member of a specific memory bank,
3151         * (pic16_printIvalCharPtr): added code to add string literals either
3152         to code or the idata sections,
3153         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
3154         also accept the 'udata' pragma,
3155         * src/pic16/main.h: new structure types sectName and sectSym
3156         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
3157         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
3158         * (pic16_findPrevInstruction): fixed, it returned nothing,
3159         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
3160         instruction combinations,
3161         * (pic16_FixRegisterBanking): heavily reorganised,
3162         * (pic16_AnalyzeBanking): if generating banksel directives is
3163         disabled, then don't call FixRegisterBanking at all,
3164         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
3165         completely removed,
3166         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
3167
3168 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
3169
3170         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
3171         Phuah Yee Keat <yk.phuah AT nestac.com>
3172
3173 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3174
3175         * src/pic16/glue.c (pic16createInterruptVect): function now emits
3176         correctly the IVT even if it is relocated to some other location
3177
3178 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3179
3180         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
3181         * device/include/pic16/pic18f2220.h: NEW,
3182         * device/lib/pic16/libdev/pic18f2220.c: NEW,
3183         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
3184         * src/pic16/device.c (struct Pics16): added info for 18f2220,
3185         * src/pic16/device.h (struct pic16_options): added ivt_loc and
3186         nodefaultlibs, ivt_loc is the location of the interrupt vector
3187         table, and nodefaultlibs signs that default libraries should not be
3188         linked in link stage,
3189         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
3190         according to --ivt-loc argument,
3191         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
3192         when pragma stack is found,
3193
3194 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3195
3196         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
3197         256 (range check), 257 (do while), 258.a-f (bit banging
3198         f.e. on 3-wire SPI bus)
3199
3200 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3201
3202         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
3203         variables used exclusively within a loop
3204
3205 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
3206
3207         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
3208
3209 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3210
3211         * src/SDCClrange.c (computeClash): fixed bug #971834
3212
3213 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3214
3215         * src/mcs51/gen.c (genCmp): fixed bug #975903
3216         * src/hc08/gen.c (operandsEqu),
3217         * src/ds390/gen.c (operandsEqu),
3218         * src/z80/gen.c (operandsEqu),
3219         * src/pic/gen.c (operandsEqu),
3220         * src/pic16/gen.c (operandsEqu),
3221         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
3222         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
3223
3224 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3225
3226         * src/SDCCcse.c (cseBBlock): fixed bug #966963
3227
3228 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
3229
3230         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
3231         default case in switch statement,
3232         * glue.c (pic16_initPointer): expr is initialised via decoarteType
3233         to eliminate problem with initialisation of pointers, but problem
3234         still exists,
3235         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
3236         * (emitStaticSegment): removed various lines emitting debug info,
3237         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
3238         added processor registers for utilizing EEPROM,
3239         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
3240         configurable and set 8
3241
3242 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
3243
3244         * .version: increased version number to 2.4.2,
3245
3246         Cumulative patch for pic16 port
3247         * src/pic16/device.c: changed scheme to dump initial values for
3248         variables in idata segment, all print_idata* functions were removed,
3249         now the pic16_printIval* will be called,
3250         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
3251         * _pic16_printPointerType, pic16_printPointerType,
3252         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
3253         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
3254         NEW, similar to the respective functions in SDCCglue.c,
3255         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
3256         way, emitting hex bytes,
3257         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
3258
3259 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3260
3261         * src/avr/ralloc.c (serialRegAssign),
3262         * src/xa51/ralloc.c (serialRegAssign),
3263         * src/pic/ralloc.c (serialRegAssign),
3264         * src/pic16/ralloc.c (serialRegAssign),
3265         * src/hc08/ralloc.c (serialRegAssign),
3266         * src/z80/ralloc.c (serialRegAssign),
3267         * src/ds390/ralloc.c (serialRegAssign),
3268         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
3269
3270 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3271
3272         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
3273         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
3274
3275 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
3276
3277         Cumulative patch for pic16 port:
3278         * src/pic16/device.h (typedef PIC16_device) modified fields for
3279         defining microcontrollers,
3280         * src/pic16/device.c: added new info for all devices in Pics16 array,
3281         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
3282         to be optimised out by the pCode optimiser,
3283         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
3284         specially, bug reported by G.M. Gallant,
3285         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
3286         as force'd so that cannot be optimised out by pCode optimiser,
3287         * src/pic16/pcode.c,
3288         * src/pic16/pcodepeeph.c,
3289         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
3290         they are disabled by default, but can be enabled explicit with
3291         command argument --denable-peeps, for testing,
3292         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
3293         --pomit-ivt in COMPILE_FLAGS
3294
3295 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3296
3297         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
3298           compilation on MSVC
3299
3300 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3301
3302         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
3303
3304 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3305
3306         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
3307         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
3308
3309 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
3310
3311         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
3312         would only assign 0x300001 register.
3313
3314 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
3315
3316         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
3317         in COMPILE_FLAGS. Thanks to G. Gallant for report.
3318
3319 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3320
3321         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
3322         for ds80c400
3323         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
3324         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
3325         added peephole 254 (left shift), 255 (jump table)
3326
3327 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
3328
3329         * device/lib/Makefile.in: removed comment line with model-pic16,
3330         * (target port-specific-objects-pic16): the libraries and objects
3331         are copied to the build directory form the device/lib/pic16/bin
3332         directory
3333
3334         Cumulative patch concerning pic16 port:
3335         * library directory has been re-organized,
3336         * added support for PIC18F1220,
3337         * added headers and library sources for chips 18f1220,18f6520,
3338         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
3339
3340         * configuration registers setting has changed, now each supported
3341         device has a complete description of the registers it uses,
3342         * all initialisations are moved to idata sections, these section
3343         can be absolute or relocatable,
3344         * fixed initialisation of codespace variables,
3345         * fixed warning about PCLATU and gpsim,
3346         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
3347         * (genAssign): use table reads when assigning from variables in codespace,
3348         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
3349         char/int variables placed in codespace,
3350         * (pic16_emitConfigRegs): NEW, emits a list with configuration
3351         registers set in .asm file, no need for --pomit-config-words anymore,
3352         * (pic16glue): some 8051 legacy segments are commented out
3353         (to be removed completely),
3354         * added support for alternative assembler and linker with --asm=
3355         and --link= command line arguments,
3356         * peepholes are disabled automatically in the port, no need to
3357         specify on command line,
3358         * port supports natively char/int/long multiplication, but converts
3359         all divisions to support functions,
3360         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
3361         to the file set in variable $2,
3362         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
3363         strings in ASCII format and not in hex,
3364         * ralloc.c (serialRegAssign): added a triplet of conditional calls
3365         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
3366         allocate proper register if iCodes aren't temporary,
3367
3368 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
3369
3370         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
3371
3372 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
3373
3374         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
3375         is commented out
3376
3377 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3378
3379         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
3380         computed address is reused
3381         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
3382         multi-byte bitfields
3383
3384 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3385
3386         * src/z80/gen.c: (genArrayInit): must check for pointers too
3387
3388 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3389
3390         * support/regression/tests/zeropad.c: never meant to commit the
3391           nestedstruct test: removed, added check for GCC version
3392
3393 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
3394
3395         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
3396         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
3397         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
3398           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
3399           bugs 928906 and 954082 half-empty initializers
3400         * src/SDCCsymt.h,
3401         * src/SDCCsymt.c (getAllocSize): added for above fix
3402         * src/z80/gen.c (genArrayInit): fixed bug 741044
3403         * support/regression/tests/zeropad.c: added tests
3404
3405 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
3406
3407         * src/pic16/device.c (pic16_dump_section): corrected bug which
3408         caused some symbols of the libraries to be misplaced
3409
3410 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3411
3412         * src/pic16/glue.c,
3413         * src/pic16/ralloc.h,
3414         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
3415         to fix conflict with pic port
3416
3417 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3418
3419         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
3420         externs configuration variables,
3421         * src/pic16/ralloc.h,
3422         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
3423         prototype in header, commented out some debug messages
3424
3425 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
3426
3427         * src/pic16/glue.c,
3428         * src/pic16/main.c,
3429         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
3430         for gpasm COFF object generation. Thanks to D. Hawkins for
3431         his patch info
3432
3433 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3434
3435         * src/ds390/main.c,
3436         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
3437         Brock for spotting this)
3438         * src/ds390/gen.c (genEndFunction),
3439         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
3440         interrupt handler and critical. Disable push/pop optimizations when
3441         peephole optimizations disabled.
3442
3443 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
3444
3445         Updated pic16 library sources and headers.
3446         * device/lib/pic16/pic18f*/ ,
3447         * device/include/pic16/*.h: modified to handle structured SFR
3448         definitions
3449
3450 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
3451
3452         * src/port.h (PORT structure): added hook initPaths, now each
3453         port can declare its own default search paths,
3454         which can been seen with the --print-search-dirs option,
3455         see pic16 port for example,
3456         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
3457         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
3458         * (doPrintSearchDirs): NEW, replaces in a central manner the
3459         printing of search dirs which was split in set*Paths functions,
3460         * (main): added call to port->initPaths and doPrintSearchDirs,
3461         * src/avr/main.c,
3462         * src/ds390/main.c,
3463         * src/hc08/main.c,
3464         * src/izt/i186.c,
3465         * src/izt/tlcs900h.c,
3466         * src/mcs51/main.c,
3467         * src/pic/main.c,
3468         * src/pic16/main.c: modified port structures to reflect addition of
3469         initPaths hook,
3470
3471         * src/pic16/device.c (regCompare): registers are finally sorted by name,
3472         * (pic16_dump_section): for registers in same address reserve memory once,
3473         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
3474         to no_banksel,
3475         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
3476         result is greater in size than right or left,
3477         * (pic16_genUMult8X8_8): there are some cases where the result can
3478         be 16 bits size, so handle these,
3479         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
3480         * (pic16_outBitC): modified to emit pcodes,
3481         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
3482         or not,
3483         * (genDivOneByte): implemented algorithm to divide 8-bits,
3484         * (genCmp): uncommented goto, but issues still exist,
3485         * (genAnd): fixed a bug with variables >8bits,
3486         * (genPackBits): optimization added that uses BCF/BSF to change a
3487         single bit,
3488         * (genAssign): fixed bug when assigning floating point literals,
3489         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
3490         __sdcc_gsinit_startup label,
3491         * src/pic16/main.c (_pic16_init): removed search directory
3492         initialisations,
3493         * (_pic16_initPaths): NEW, used to initialise search directories,
3494         * (_hasNativeMulFor): support functions for all except char/int
3495         multiplication, and char division,
3496         * (PIC16_port struct): modified entry for native mul support,
3497         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
3498         no_banksel option,
3499         * (buildCallTree): call to register_usage is ifdef'ed out,
3500
3501 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3502
3503         * device/include/string.h: applied Stas Sergeev's patch to make this
3504         header file compatible with the preprocessor -Wundef option
3505         * src/SDCCmain.c (main): abort compilation if preprocessor reports
3506         failure (fixes bug #941458)
3507
3508 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3509
3510         * src/SDCCopt.c (killDeadCode): fixed bug #907733
3511         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
3512         that the variable, not the function, should be static
3513         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
3514         to be consistent with non-literal case
3515
3516 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3517
3518         * src/SDCCast.c (isConformingBody): fixed bug #949967
3519         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
3520         convilong): fixed bug #952086
3521
3522 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3523
3524         * src/SDCCmem.c (allocVariables): fixed bug #955321
3525
3526 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3527
3528         * src/hc08/main.c (_hc08_genAssemblerEnd),
3529         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
3530         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
3531         completely eliminated the use of a temporary file
3532         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
3533         when more than one file linked
3534         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
3535
3536 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3537
3538         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
3539         which fixes bug #543481
3540         * support/regression/tests/bug-751703.c: fixed comments left from a
3541         cut and paste error
3542         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
3543         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
3544         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
3545         scopes
3546         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
3547         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
3548         are now changed to underscores in moduleName
3549
3550 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3551
3552         * as/mcs51/lkmem.c: better fix for bug #954173
3553
3554 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
3555         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3556
3557         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
3558         * device/include/c8051f000.h,
3559         * device/include/c8051f120.h,
3560         * device/include/c8051f300.h,
3561         * device/include/c8051f310.h,
3562         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
3563         PWM16) and detab'ed
3564
3565 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3566
3567         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
3568         and mailing lists, doc'ed --no-peep-comments, removed reference
3569         to knoppix (newest version has no LyX/LaTeX), other minor changes
3570         * src/SDCCglue.c (glue): save 2 bytes stack space with
3571         option --main-return. The ljmp could probably be avoided too
3572
3573 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3574
3575         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
3576
3577 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3578
3579         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
3580         * src/SDCCopt.c (isLocalWithoutDef),
3581         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
3582         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
3583         (credit to Maarten Brock for patch #949363, on which this is based)
3584         * support/regression/tests/bug-751703.c: some test cases of extern used
3585         within inner scopes.
3586
3587 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3588
3589         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
3590         SPEC_STRUCT
3591         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
3592         struct definitions
3593         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
3594         dwWriteLabel): fix to create valid debugger symbols even when
3595         the module name has non-alphanumeric symbols in it
3596         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
3597         when a variable's allocation has been optimized away
3598
3599
3600 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3601
3602         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
3603         * src/hc08/main.c,
3604         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
3605         * src/mcs51/main.c,
3606         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
3607         * src/ds390/main.c,
3608         * src/z80/gen.c (z80_emitDebuggerSymbol),
3609         * src/z80/main.c,
3610         * src/pic/gen.c (pic14_emitDebuggerSymbol),
3611         * src/pic/main.c,
3612         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
3613         * src/pic16/main.c,
3614         * src/avr/gen.c (avr_emitDebuggerSymbol),
3615         * src/avr/main.c,
3616         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
3617         * src/xa51/main.c,
3618         * src/SDCCdebug.c (emitDebuggerSymbol),
3619         * src/SDCCdebug.h,
3620         * src/port.h: added a debugger struct to the port struct. Added a
3621         callback for defining debugger symbols
3622
3623         * src/SDCCast.c (createLabel),
3624         * src/SDCC.y (labeled_statement): mark all compiler generated labels
3625         with isitmp = 1
3626         * src/SDCCicode.h,
3627         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
3628         iCode back to the ast for the function
3629
3630         * src/hc08/ralloc.c (hc08_assignRegisters),
3631         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
3632         unneeded fields from the regs struct.
3633         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
3634         pushReg() & pullReg() functions instead of emitcode()
3635
3636         * src/hc08/gen.c (genLabel, genhc08Code),
3637         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
3638
3639         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
3640         debugger hooks
3641
3642         * src/hc08/gen.c (genEndFunction, genhc08Code),
3643         * src/hc08/gen.h,
3644         * src/mcs51/gen.c (genEndFunction, gen51Code),
3645         * src/mcs51/gen.h,
3646         * src/ds390/gen.c (genEndFunction, gen390Code),
3647         * src/ds390/gen.h,
3648         * src/z80/gen.c (genEndFunction, genZ80Code),
3649         * src/z80/gen.h,
3650         * src/z80/z80.h,
3651         * src/pic/gen.c (genEndFunction, genpic14Code),
3652         * src/pic/gen.h,
3653         * src/pic16/gen.c (genEndFunction, genpic16Code),
3654         * src/pic16/gen.h,
3655         * src/avr/gen.c (genEndFunction, genAVRCode),
3656         * src/avr/gen.h,
3657         * src/xa51/gen.c (genEndFunction, genXA51Code),
3658         * src/xa51/gen.h,
3659         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
3660         specific code to cdbFile.c and out of the backend code generators
3661
3662         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
3663         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
3664         starting address is now 0
3665
3666         * as/hc08/asm.h,
3667         * as/hc08/m08pst.c,
3668         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
3669         assembler directive for DWARF support
3670         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
3671
3672         * src/src.dsp,
3673         * src/Makefile.in,
3674         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
3675
3676 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3677
3678         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
3679         and inappropriate peephole optimization in jump tables
3680
3681 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3682
3683         * as/hc08/m08pst.c,
3684         * src/SDCCglue.c: sdccopt works for the hc08 port now
3685
3686 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
3687
3688         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
3689
3690 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3691
3692         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
3693
3694 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3695
3696         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
3697         rules
3698         * src/SDCCmain.c,
3699         * src/SDCCglobl.h,
3700         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
3701         comments from the peephole optimizer replacement rules
3702         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
3703         symbols
3704         * src/SDCCcse.c (updateSpillLocation),
3705         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
3706         equivalents
3707         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
3708         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
3709         objects far pointers
3710
3711 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3712
3713         * src/SDCCsymt.h: a missing part of my last change
3714         * src/pic/ralloc.c (regTypeNum),
3715         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
3716
3717 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3718
3719         * src/SDCCicode.h,
3720         * src/SDCCicode.c (aggrToPtrDclType),
3721         * src/SDCCptropt.h,
3722         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
3723         ptrPseudoSymConvert),
3724         * src/pic/ralloc.c (regTypeNum),
3725         * src/pic16/ralloc.c (regTypeNum),
3726         * src/hc08/ralloc.c (regTypeNum),
3727         * src/ds390/ralloc.c (regTypeNum),
3728         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
3729         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
3730
3731 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3732
3733         * link/z80/lkmain.c (afile),
3734         * as/hc08/lkmain.c (afile),
3735         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
3736         prevent a pointer problem when a filename has no directory and
3737         no extension specified.
3738
3739 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3740
3741         * link/z80/lkmain.c (afile): allow periods in directory names
3742         * link/z80/lkmain.c (afile),
3743         * as/mcs51/lkmain.c (afile),
3744         * as/hc08/lkmain.c (afile): allow linker script file to have an
3745         extension other than ".lnk"
3746         * link/z80/lklex.c (getfid),
3747         * link/z80/lkmain.c (parse),
3748         * as/mcs51/lklex.c (getfid),
3749         * as/mcs51/lkmain.c (parse),
3750         * as/hc08/lklex.c (getfid),
3751         * as/hc08/lkmain.c (parse): Support comments in the linker script
3752         file on lines by themselves and after filenames
3753
3754 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3755
3756         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
3757
3758 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3759
3760         * src/z80/peeph-z80.def: removed some peephole rules that don't
3761         work with multibyte arithmetic (fixed bug #937126)
3762         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
3763         to registers and not global variables
3764         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
3765         geniCodePreInc, geniCodePostDec, geniCodePreDec,
3766         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
3767         checking for assignments not internally generated (fixed bug #931895)
3768         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
3769         structure member (fixed bug #930072)
3770
3771 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3772
3773         * src/SDCCmain.c (linkEdit),
3774         * src/hc08/main.c (_hc08_parseOptions),
3775         * as/hc08/Makefile.in,
3776         * as/hc08/aslink.h,
3777         * as/hc08/asm.h,
3778         * as/hc08/m08pst.c,
3779         * as/hc08/lkrloc.c (relr, rele),
3780         * as/hc08/lkarea.c (lnkarea)
3781         * as/hc08/lkmain.c (afile, parse),
3782         * as/hc08/lkelf.c: support for ELF output
3783         * as/hc08/lks19.c (s19),
3784         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
3785
3786 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3787
3788         * as/mcs51/lkihx.c: Fixed bug #899105.
3789
3790 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3791
3792         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
3793         .dsp files from Unix to DOS.
3794
3795 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3796
3797         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
3798         function pointers; we have been compliant for several months now.
3799         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
3800         change that was accidently commented out
3801         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
3802         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
3803         bug #922319
3804
3805 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3806
3807         * src/hc08/gen.c: output of all of the internal debugging information
3808         is now controlled by the D() macro; it is disabled by default
3809
3810 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3811
3812         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
3813         harder to keep the same registers during a CAST iCode
3814         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
3815         long via int can be done in a single cast, if the signedness is
3816         correct.
3817         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
3818         putchar() in tinibios.c in ds390's library
3819
3820 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
3821
3822         * src/SDCCast.c (decorateType): fixed bug #898889,
3823         cast result of a literal complement too
3824         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
3825         fixed check for bitfields
3826
3827 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
3828
3829         * src/SDCCicode.c (geniCodeLogic): made it static,
3830         (geniCodeLogicAndOr): added in order to fix bug #905492,
3831         (ast2iCode): fixed bug #905492
3832         * support/regression/tests/bug-905492.c: added
3833         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
3834         (processParms): fixed bug #927659: don't copy parms, this will clear
3835         decorated flag
3836         * support/regression/tests/bug-927659.c: added
3837
3838 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
3839
3840         * src/SDCCast.c (addCast): don't cast float to char
3841         * device/lib/libsdcc.lib: added _memmove
3842
3843 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
3844
3845         * device/lib/large/Makefile: fixed parallel execution by
3846         replacing `make` by `$(MAKE)`
3847
3848 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3849
3850         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
3851         offsets (fixes bug #923936)
3852
3853 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
3854
3855         * device/lib/small/Makefile: fixed parallel execution by
3856         replacing `make` by `$(MAKE)`
3857
3858 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
3859
3860         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
3861
3862 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
3863
3864         * src/pic/gen.c (genCpl): multi-byte complements were not working.
3865         * src/regression/Makefile: Regression test was not running.
3866
3867 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
3868
3869         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
3870         complement if possible
3871         * src/SDCCval.c (valComplement),
3872         * src/SDCCicode.c (operandOperation): fixed complement of literal
3873         * support/regression/tests/onebyte.c (testComplement): added
3874
3875 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
3876
3877         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
3878         return an optimized tree; actually replace actParm with the new tree
3879         * src/SDCCast.h: added some parantheses to remove side effects
3880         * support/regression/tests/bug-920866.c
3881
3882 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
3883         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
3884         Bit operands were not being handled properly in the pic14 port.
3885         (now src/regression/add.c passes again).
3886
3887 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3888
3889         * src/SDCC.y (labeled_statement): case and default no longer require
3890         a following statement (RFE #893037)
3891
3892 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3893
3894         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
3895         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
3896         disabled (fixes bug #916294)
3897         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
3898         "mov a,acc"; patch provided by Lenny Story
3899         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
3900
3901 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3902
3903         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
3904         functions
3905         * src/ds390/gen.c (genFunction, genEndFunction),
3906         * src/ds390/ralloc.c (ds390_assignRegisters),
3907         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
3908         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
3909         pushed if there are parameters passed on the stack. Also, a cleaner
3910         way to decide if r0/r1 should be pushed/popped. (Together they fix
3911         bug #918693)
3912
3913 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3914
3915         * doc/sdccman.lyx,
3916         * device/lib/mcs51/crtpagesfr.asm,
3917         * device/lib/mcs51/crtxinit.asm,
3918         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
3919         to avoid confusion with Si Lab's SFRPAGE register.
3920
3921 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3922
3923         * src/SDCCglue.c (emitMaps): allow public sfr variables
3924         * src/SDCCglue.c (initialComments): include compiler build date
3925         with compiler version and put the timestamp of the generated
3926         assembly file on a serperate line to be less confusing.
3927         * src/port.h: added genInitStartup hook
3928         * src/avr/main.c,
3929         * src/ds390/main.c,
3930         * src/hc08/main.c,
3931         * src/pic/main.c,
3932         * src/pic16/main.c,
3933         * src/xa51/main.c,
3934         * src/z80/main.c: genInitStartup initialize as NULL (default to
3935         historical behaviour)
3936         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
3937         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
3938         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
3939         library instead of hard coding it into the compiler.
3940         * support/regression/ports/mcs51-stack-auto/spec.mk,
3941         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
3942         * device/lib/mcs51/Makefile,
3943         * device/lib/small/Makefile,
3944         * device/lib/large/Makefile,
3945         * device/lib/mcs51/crtpagesfr.asm,
3946         * device/lib/mcs51/crtstart.asm,
3947         * device/lib/mcs51/crtxclear.asm,
3948         * device/lib/mcs51/crtxinit.asm,
3949         * device/lib/mcs51/crtclear.asm,
3950         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
3951         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
3952         and into user configurable files.
3953         * device/lib/clean.mk: clean mcs51 directory too
3954         * support/regression/tests/longlit.c: added static to T1 declaration
3955         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
3956         accesses in the initialization code
3957
3958 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3959
3960         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
3961         OSCTRIMVAL as noted in bug #916008
3962
3963 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3964
3965         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
3966         in loops with multiple exits (reported as incorrect registers
3967         used by Martin Helmling in Sdcc-user list)
3968
3969 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3970
3971         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
3972         made ds390 register extensions look less like error messages
3973
3974 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3975
3976         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
3977         reported by Adam Wozniak in Sdcc-user list
3978
3979 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
3980
3981         * src/SDCCast.c (decorateType): fixed with bug and promotion in
3982         arithmetic optimizations, added debug output
3983
3984 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
3985
3986         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
3987         * sdcc.spec: updated and split sdcc into 3 rpms
3988         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
3989         needed for literals of LEFT_OP and '+'
3990         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
3991         introduced RESULT_TYPE_NOPROM
3992         (geniCodeMultiply): fixed logic for decision if mul is optimized to
3993         left shift
3994         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
3995         limited promotion to int only for '*'
3996         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
3997
3998 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
3999
4000         * src/pic16/gen.c (genSkip),
4001         (genc16bit2lit), (gencjneshort): commented out
4002         (is_LitOp): new helper function, checks operand type
4003         (genCmpEq): rewritten
4004
4005 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
4006
4007         * support/regression/tests/bug-908454.c: added
4008
4009 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
4010
4011         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
4012         * src/SDCCicode.c (usualBinaryConversions): op needs int type
4013         (geniCodeCast): cosmetic, don't preserve bit storage class
4014         (geniCodeLeftShift): added promotion
4015         (geniCodeLogic): fixed regression
4016         * src/SDCCsymt.c (computeTypeOr): accept bits too
4017         (compareType): 2nd part of fix for bug #908454, needed for bitfields
4018
4019 2004-03-07  Borut Razem <borut.razem AT siol.net>
4020
4021         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
4022
4023 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
4024
4025         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
4026         version of pic16_genPackRegisters which does not check if ic is a
4027         CAST operator,
4028         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
4029         function cause string1.c regression test fails
4030
4031 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
4032
4033         * sim/ucsim/configure.in,
4034         * sim/ucsim/configure,
4035         * sim/ucsim/doc/Makefile.in: use docdir
4036         * src/SDCC.y: fixed sbit atrributes
4037         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
4038         * src/SDCCast.c (decorateType): |^& need special promotion handling
4039         * src/SDCCast.h,
4040         * src/SDCCsymt.h: moved definition of RESULT_TYPE
4041         * src/SDCCsymt.h (computeType),
4042         * src/SDCCicode.c: computeType() needs op
4043         * src/SDCCsymt.c (checkTypeSanity),
4044         * doc/sddman.lyx: "plain" bitfields are unsigned
4045         * src/SDCCsymt.c (computeTypeOr): added
4046         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
4047         |^& ops
4048         * src/SDCCval.c (val*): computeType() needs op
4049         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
4050         * support/regression/tests/onebyte.c: added tests for |^&
4051
4052 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
4053
4054         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
4055         for writing icode into asm output.
4056
4057 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
4058
4059         * src/pic16/device.c: added some debug lines enabled
4060         with macro DEBUG_CHECK,
4061         * src/pic16/genarith.c: more debug in genPlus,
4062         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
4063         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
4064         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
4065         * (aopForSym): onStack symbols are re-placed in data memspace,
4066         and onStack flag is cleared,
4067         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
4068         copy temporary pcodeop,
4069         * (genPcall): added warning for not updating PCLATU,
4070         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
4071         always true for pic16 port,
4072         * (genMultOneWord): NEW, supports integer multiplication,
4073         * (genMult): modified to call genMultOneWord,
4074         * (ifxForOp): added warning when return NULL,
4075         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
4076         flag is set before call to operandFromSymbol for implicit
4077         added structures,
4078         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
4079         options.intlong_rent are set by default,
4080         * (_hasNativeMulFor): modified to allow port generation of integer
4081         multiplication,
4082         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
4083         set regtype to REG_SFR for all registers, restricting seting the
4084         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
4085
4086 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4087
4088         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
4089         more than 500 times in the regression tests
4090
4091 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4092
4093         * support/Util/SDCCerr.h,
4094         * support/Util/SDCCerr.c,
4095         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4096         enumerator_list),
4097         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
4098         for symbol conflicts.
4099         * support/valdiags/tests/enum.c,
4100         * support/valdiags/tests/tentdecl.c,
4101         * support/valdiags/tests/struct.c: expect possible error messages
4102         referring to original symbol definitions.
4103         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
4104         * src/SDCCsymt.h,
4105         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
4106
4107 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
4108
4109         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
4110
4111 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
4112
4113         * src/pic16/ralloc.c (newReg): fixed bug #908929
4114
4115 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4116
4117         * src/ds390/gen.c: added missing #include "main.h"
4118
4119 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
4120
4121         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
4122         checking if symbol is already in set,
4123         * src/pic16/device.h: prototype for checkAddSym,
4124         * src/pic16/gen.c: (_G): added entry interruptvector,
4125         * (assignResultValue): removed some commented out lines,
4126         * (genFunction): check for ISR via sym->type, absolute section for
4127         interrupt code is created via a new pBlock, the goto instruction is
4128         placed now correctly at the interrupt vector position, changed all
4129         references from ivec to _G.interruptvector,
4130         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
4131         is the interrupt is a high priority one, same for return from ISR,
4132         * src/pic16/glue.c: changed all calls of addSetHead for publics and
4133         externs to calls of checkAddSym,
4134         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
4135         pic16_pcode_verbose flag is set,
4136         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
4137         * src/pic16/pcoderegs.c: message about how many registers are saved
4138         will only be emitted if pic16_pcode_verbose flag is set,
4139
4140 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4141
4142         * src/ds390/ralloc.h,
4143         * src/ds390/ralloc.c (ds390_regWithIdx),
4144         * src/ds390/gen.c (emitcode),
4145         * src/ds390/main.h,
4146         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
4147         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4148         ds390operandCompare, getRegsRead, getRegsWritten,
4149         initializeAsmLineNode): customized instruction size calculation for
4150         ds390, started basis for some register optimizations
4151         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
4152         corresponding assembly output
4153         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
4154         missing push/pop of r0/r1. Optimized push/pops
4155
4156 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4157
4158         * src/mcs51/main.c (instructionSize): fixed ACALL size
4159         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
4160
4161 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
4162
4163         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
4164         the sorting of rlist with NULL elements
4165         * (print_idataType, print_idata): NEW to create idata sections
4166         * src/pic16/device.h: idataSymSet new variable
4167         * src/pic16/gen.c (genFunction): fixed some bugs in string
4168         comparing, improved the absolute section creation for ISRs,
4169         added FSR0L/FSR0H in registers that are saved in an ISR,
4170         * (genInline): fixed the processing of inline snippets,
4171         now they undergo no process by the peephole optimizer
4172         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
4173         are placed in idataSymSet,
4174         * (pic16emitStaticSeg): extern symbols are added in externs,
4175         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
4176         switching when aboslute variables are placed in access bank memory
4177         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
4178         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
4179         commented out with #if,
4180         * (pic16_packRegisters): reintroduce the check for CAST because some
4181         symbols are not correctly handled,
4182         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
4183         pCodeInstruction instead of pCode,
4184         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
4185         pCodeAsmDir definition,
4186         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
4187         directive, then the argument directive is emitted without the leading
4188         tab, hack for inline labels which must be in the first column,
4189         * (compareLabel,pic16_findNextInstruction),
4190         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
4191         * (insertBankSwitch): modified for the new pCodeAsmDir,
4192
4193 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4194         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
4195
4196         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
4197         instance,
4198         * (pushSide): commented out with #if,
4199         * (assignResultValue): fixed some typos in saving
4200         registers,
4201         * (genPcall): FIXED and sync'ed with genCall,
4202         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
4203         * (genNearPointerGet): fixed to handle some more cases,
4204         implementation scheme via table reads,
4205         * (genConstPointerGet): modified to access code memory correct,
4206         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
4207         and improved to handle some cases
4208         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
4209         instead of "RETLW" for init data
4210         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
4211         not IN_DIRSPACE, work around to reduce bank switching when aboslute
4212         variables are placed in access bank memory (<0x80 and >=0xf80),
4213         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
4214         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
4215         TBLWT_POSTDEC,TBLWT_PREINC
4216         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
4217         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
4218         directives
4219         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
4220         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
4221         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
4222         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
4223
4224 2004-02-29  Borut Razem <borut.razem AT siol.net>
4225
4226         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
4227         support/Util/findme.h, support/Util/system.h: enhance binary relative
4228         search for lib and include by using findProgramPath()
4229
4230 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4231
4232         * src/SDCCpeeph.h,
4233         * src/SDCCpeeph.c (pcDistance),
4234         * src/port.h,
4235         * src/mcs51/ralloc.h,
4236         * src/mcs51/ralloc.c (mcs51_regWithIdx),
4237         * src/mcs51/main.h,
4238         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
4239         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4240         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
4241         size calculation port specific, started basis for some register
4242         optimizations
4243         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
4244         missing push/pop of r0/r1. Optimized push/pops
4245         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
4246         * device/lib/_modsint.c (_modsint),
4247         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
4248         and stack version so regression tests pass
4249
4250 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
4251
4252         * src/Makefile.in (dep): include SLIBOBJS in dependency check
4253         * src/SDCCast.c (decorateType): catch another small optimization
4254         with '?' operator
4255         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
4256         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
4257         modified to finally use computeType() all over SDCC,
4258         see Feature Request #877103
4259         * src/SDCCval.h: cosmetic
4260         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
4261         valCompare(); regression tested in muldiv.c
4262         * support/regression/tests/muldiv.c (testMod): mod sign follows
4263         dividend only
4264
4265 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
4266
4267         * src/SDCCast.c (decorateType): fixed bug #902362
4268         * doc/INSTALL.txt: fixed install instructions for win32
4269
4270 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
4271
4272         * device/include/Makefile.in (install): fixed by replacing spaces
4273         by tabs
4274         * doc/README.txt,
4275         * doc/INSTALL.txt: updated for release
4276         * doc/sdccman.lyx: added warning for --xstack being buggy
4277
4278 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
4279
4280         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
4281         to eliminate build warnings.
4282         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
4283
4284 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
4285            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4286
4287         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
4288         removed -penable-stack, added comment for stack pragma, added
4289         warning for not initializing the stack/frame registers, removed
4290         comment at interrupts section
4291
4292         Stack is made permanent, there is no ability to disable stack usage.
4293         * src/pic16/device.h,
4294         * src/pic16/device.c: removed all references to USE_STACK macro,
4295         * src/pic16/device.c (pic16_dump_section): when no elements in
4296         rlist, free rlist before return,
4297         * (pic16_dump_int_registers): NEW, internal registers are a new set
4298         of general purpose registers reused by each function,
4299         * (checkAddReg): returns 1 if registers is added to set,
4300         * (pic16_groupRegistersInSection): when a registers is of type
4301         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
4302         * src/pic16/device.h: memRange and Assigned Memory are deleted,
4303         SRCASECMP macro is moved here from device.c
4304         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
4305         PO_PCLATU, PO_PRODL, PO_PRODH,
4306         * (pic16_pCodeOpType, genMinus,
4307         changed compares to "a" register, with AOP_ACC,
4308         * (pic16_genPlus): fixed some bugs and indented properly,
4309         * (pic16_addSign): changed size to size+offset in the MOVWF
4310         instruction,
4311         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
4312         multiply 8-bit operand by literal, result is 8-bit,
4313         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
4314         multiply 2 8-bit operand, result is 8-bit,
4315         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
4316         genUMult8X*_16,
4317         * src/pic16/gen.c: changed accUse to contain WREG only,
4318         * (pic16_emitcomment): renamed to pic16_emitpcomment,
4319         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
4320         true, do not use immediate addressing any more unless sym is a
4321         pointer in codespace,
4322         * (aopForRemat): do not use immediate addressing when symbol not in
4323         codespace and when symbol's address is requested,
4324         * (aopOp): for-loop in if(sym->accUse) is modified for the new
4325         accUse size (= 1),
4326         * (aopGet): added case for AOP_ACC and don't return "accumulator
4327         bug" but WREG instead,
4328         * (popGetTempReg): pushes contents of temporary register in stack,
4329         * (popReleaseTempReg): pops contents of temporary register from
4330         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
4331         * (pic16_popGet): separated case AOP_ACC to return register WREG
4332         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
4333         or PO_IMMEDIATE and initializes their instance/offset appropriately,
4334         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
4335         the use of immediate pointers to certain cases only.
4336
4337         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
4338         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
4339         * (assignResultValue, genCall, genRet): modified to use the new
4340         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
4341         genPcall is still broken,
4342         * (genFunction): added code to create 'A' type pBlocks when
4343         interrupt functions are generated, code not extensively tested yet,
4344         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
4345         * (genEndFunction): modified so ISRs pop stored registers from stack,
4346         * (genMultOneByte): cleanup,
4347         * (AccRsh): added flag andmask, to and result with appropriate mask,
4348         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
4349         * (genDataPointerGet): fixed and reenabled its use,
4350         * (genNearDataPointerGet): bugs fixed,
4351         * (genDataPointerSet): bugs fixed,
4352         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
4353         pic16_DumpSymbol, pic16_DumpOp,
4354         * src/pic16/genutils.h: function prototypes for the above functions,
4355         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
4356         pointers,
4357         * (pic16emitRegularMap): many many many improvements, but needs a
4358         major cleanup,
4359         * src/pic16/main.c: enable_stack in pic16_options is removed,
4360         * (_pic16_parseOptions): removed command line options -penable-stack,
4361         * (_process_pragma): emit stack symbol only when stack pragma is
4362         processed,
4363         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
4364         redirected to FSR0L/FSR0H pair,
4365         * (pic16_get_op, pic16_get_op2): modifications and improvements,
4366         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4367         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
4368         for immediates,
4369         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
4370         * (dumpPicOptype): NEW,
4371         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
4372         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
4373         with movff instruction,
4374         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
4375         added pic16_int_regs, some packRegsFor* functions are commented out,
4376         because produce errors,
4377         * src/pic16/NOTES: minor modifications
4378
4379 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4380
4381         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
4382         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
4383         --pack-iram.
4384         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
4385         * as/mcs51/lkaomf51.c: fixed bug #895763
4386
4387 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
4388
4389         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
4390
4391 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4392
4393         * doc/sdccman.lyx: added details about the HC08 storage classes and
4394         interrupts, fixed the register usage info for z80 & gbz80
4395
4396 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
4397
4398         * doc/sdccman.lyx: added more pic16 port documentation
4399         * device/include/pic16/: added header pic18fregs.h
4400
4401 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
4402
4403         * doc/sdccman.lyx: added Vangelis' contribution
4404
4405 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4406
4407         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
4408         extend to the next CALL or PCALL, not just to the next CALL.
4409
4410 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
4411
4412         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
4413
4414 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4415
4416         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
4417         bug #895752 and a better fix for bug #716790
4418
4419 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4420
4421         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
4422
4423 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4424
4425         * doc/sdccman.lyx: minor changes, minor changed
4426
4427 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
4428
4429         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
4430         which can't handle SDCC_NEWONEBYTEOPS,
4431         (geniCodeMultiply): removed conversion from mult to shift for pic14
4432         and pic16
4433
4434 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4435
4436         * src/hc08/gen.h,
4437         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
4438         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
4439         thus fixing bug #895406
4440
4441 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
4442
4443         * device/lib/_modsint.c,
4444         * device/lib/_modslong.c: sign follows divisor only
4445         * src/hc08/gen.c (genMultOneByte): if result size is 1,
4446         signs or signedness can be ignored
4447         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
4448         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
4449         added optimization for IFX,
4450         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
4451         arguments;
4452         reenabled optimization for IFX, which was removed on 2004-01-11
4453         * src/SDCCast.h: added return type IFX
4454         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
4455         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
4456         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
4457         SDCC_OLDONEBYTEOPS selects the old behaviour
4458         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
4459         changed again and commented promotion rule
4460         * src/SDCCval.c (valDiv): promotion no longer necessary
4461         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
4462         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
4463         rewritten
4464         * support/regression/tests/onebyte.c: added
4465
4466 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
4467
4468         * gen.c (genInline): reverted to old code for assemnling inline
4469         code because of bug reported James Chadd
4470
4471 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
4472
4473         * ralloc.h: missing declarations from previous patch,
4474         seems that patch for ralloc.h was never applied, fixed
4475
4476 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4477            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
4478
4479         * pcode.c,
4480         * pcode.h,
4481         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
4482         indirect addressing. Marked FSR0 as deprecated
4483         * gen.c (pointerCode): commented out, not needed now
4484         (pic16_popGet2p): new MOVFF helper function
4485         (genGenPointerGet),
4486         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
4487         (shiftRLong): removed duplicate debugging info
4488
4489 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4490
4491         * src/ds390/gen.c (genNearPointerGet),
4492         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
4493         optimization with bits, but not bitfields.
4494         * src/ds390/ralloc.c (packRegisters),
4495         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
4496
4497 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
4498
4499         * src/SDCCcse.c (algebraicOpts): copy operands before modification
4500
4501 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4502
4503         * src/SDCCsymt.h,
4504         * src/SDCCicode.c (operandFromSymbol),
4505         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
4506         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
4507         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
4508         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
4509         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
4510         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
4511         bug #892038
4512         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
4513         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
4514         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
4515         * src/SDCCsymt.c (newSymbol),
4516         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4517         enumerator_list),
4518         * src/SDCCval.h,
4519         * src/SDCCval.c (newiList): fixed bug #885705
4520
4521 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4522
4523         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
4524         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
4525
4526 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4527
4528         * device/include/c8051f120.h,
4529         * device/include/c8051f300.h,
4530         * device/include/c8051f310.h: added/updated header files for Silicon
4531         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
4532         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
4533         in new section Submitting patches
4534
4535 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4536
4537         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
4538         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4539         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4540         genGenPointerSet),
4541         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
4542         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4543         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4544         genGenPointerSet),
4545         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
4546         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4547         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4548         genGenPointerSet),
4549         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
4550         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4551         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4552         genGenPointerSet): fixed bug #892400
4553         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
4554         to eliminate build warnings.
4555         * src/SDCCast.c (processParms),
4556         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
4557         fixed bug 751859
4558         * support/valdiag/valdiag.py: added GCC to the list of defines active
4559         when compiling with gcc
4560
4561 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4562
4563         * support/Util/SDCCerr.h,
4564         * support/Util/SDCCerr.c,
4565         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
4566         with an incomplete type (fixed bug #883734)
4567         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
4568
4569 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4570
4571         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
4572
4573 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4574
4575         * src/SDCCast.c (decorateType),
4576         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
4577         function pointer implementation
4578         * support/regression/tests/funptrs.c: added tests to verify both forms
4579         of function pointers work correctly. Added tests to verify parameters
4580         are passed in the correct order.
4581
4582 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
4583
4584         * device.c (regCompare): registers are sorted by ascending
4585         address and increasing size,
4586         * main.c (_pic16_finaliseOptions): removed the declaration
4587         of compiler macro MCU. Now a macro of the format pic18fxxxx
4588         will be defined from the command line
4589
4590 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4591             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
4592
4593         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
4594         PCOP_RLCF was overwritten!
4595         * gen.c (genSkip): commented out calls to pic16_emitcode,
4596         * (genCmpEQ): fixed "long" compares, only high word did get compared,
4597         * (genlshTwo),
4598         * (genRRC): added debugging info,
4599         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
4600         overwritten while shifting,
4601         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
4602         overwritten while shifting,
4603         * (AccLsh),
4604         * (AccRsh),
4605         * (shiftLLeftOrResult),
4606         * (shiftRLeftOrResult),
4607         * (shiftRLong),
4608         * (shiftLLong): Implemented with pic16_emitpcode
4609         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
4610         * (genLeftShift): Fixed bug, operand for shift by variable always
4611         was "and"ed with 0x0f,
4612         * (genLeftShiftLiteral),
4613         * (genrshTwo),
4614         * (genRightShiftLiteral): added debugging info,
4615         * (genrshFour): added comment,
4616         * (genRightShift): determined signedness from operand "left"
4617         instead of "result"
4618
4619 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4620
4621         * src/SDCCicode.c (geniCodeParms),
4622         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
4623         function pointers, fixed function pointer bugs #861242 and #861896
4624
4625 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4626
4627         * device/include/c8051f000.h,
4628         * device/include/c8051f120.h,
4629         * device/include/c8051f300.h: added header files for Silicon
4630         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
4631
4632 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
4633
4634         * src/SDCCast.c (processParams): added new type flow and restructured
4635         (gatherAutoInit): added new type flow
4636         (addCast): cosmetic changes
4637         (getLeftResultType): added new type flow for array indices, patch
4638         provided by Stas, see FR #877103
4639         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
4640         array index patch by Stas
4641         * src/SDCCast.h: added prototype getResultTypeFromType()
4642         * src/SDCCval.h,
4643         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
4644         * src/pic/glue.c (pic14emitStaticSeg),
4645         * src/pic16/glue.c (pic16emitStaticSeg),
4646         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
4647         for initialization of symbols
4648         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
4649         * support/Util/SDCCerr.h:
4650         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
4651         * .version: bumped version number to 2.3.8
4652         * device/include/Makefile.in (install),
4653         * doc/Makefile (install): changed to 'rm `find ...`' construct to
4654         avoid warnings
4655
4656 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
4657
4658         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
4659         Slade Rich fixed an optimization bug
4660         * src/pic/pcodepeep.c,
4661         * src/pic/pcoderegs.c
4662         * doc/Makefile (install): added test for directory
4663
4664 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4665
4666         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
4667         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
4668         * src/pic/ralloc.c (getRegPtr, getRegGpr),
4669         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
4670         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
4671         * as/mcs51/asexpr.c (term),
4672         * as/hc08/asexpr.c (term): fixed bug #887146
4673
4674 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4675
4676         * src/z80/gen.c (genMult): handle single byte result product
4677         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
4678         DUMMY_READ_VOLATILE (fixed bug #886367)
4679
4680 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
4681
4682         * support/regression/tests/libmullong.c: fixed logic, on little endian
4683         hosts we ended without a mullong_wrapper()
4684
4685 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4686
4687         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
4688         virus/worm forged address usage.
4689
4690 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
4691
4692         Fixed promotion, it should be done on AST level:
4693         * src/SDCCast.c (addCast): added promotion to int
4694         (decorateType): updated call to upCast()
4695         * src/SDCCicode.c (geniCodeLeftShift): removed call to
4696         usualUnaryConversions()
4697
4698 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
4699
4700         * support/regression/tests/literalop.c (mulWrapper): Added a
4701         wrapper to remove integer overflow warnings.
4702
4703         * support/regression/tests/float_trans.c: Made work on host.
4704
4705         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
4706         location of sz80.
4707
4708         * support/regression/generate-cases.py (main): Changed from inline
4709         to a main method.
4710
4711         * doc/Makefile (install): Changed to depth first to get rid of
4712         missing directory install warning.
4713
4714         * as/Makefile (install-doc): Made work on Mac.
4715
4716 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
4717
4718         * src/SDCCast.c: added an additional type flow in decorateType() of
4719         opposite direction, see feature request #860006; it's enabled at runtime
4720         by setting the environment variable SDCC_NEWTYPEFLOW
4721         * src/SDCCast.h: changed prototype of decorateType()
4722         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
4723         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
4724         'char' to 'int' can be omitted, if both operands are 'unsigned char';
4725         see feature request #877103
4726         * src/SDCCval.c: updated call of decorateType()
4727         (valBitwise): fixed bug #882876
4728         (valMinus): added promotion
4729         (valLogicAndOr): result is unsigned
4730         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
4731         * src/SDCCsymt.c (computeType),
4732         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
4733         must not cause an unsigned operation
4734         * src/pic/glue (pic14emitRegularMap),
4735         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
4736
4737 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
4738
4739         * src/pic/pcode.c (PCodeID): commented out left over debug code
4740
4741 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
4742
4743         * support/valdiag/tests/overflow.c: added shift tests
4744         * src/pic/device.c,
4745         * src/pic/gen.c,
4746         * src/pic/gen.h,
4747         * src/pic/glue.c,
4748         * src/pic/main.c,
4749         * src/pic/pcode.c,
4750         * src/pic/pcode.h,
4751         * src/pic/pcodepeep.c,
4752         * src/pic/pcoderegs.c,
4753         * src/pic/ralloc.c,
4754         * src/pic/ralloc.h: applied patch from Slade Rich;
4755         added support for multiple code pages and multiple RAM banks on the
4756         PIC 14 port. The ASM files now no longer simply assume all the
4757         code / RAM are in the same page / bank. This means the linker can
4758         safely allocate code/RAM of separate ASM files to different pages/banks.
4759         * doc/sdccman.lyx: added Slade's tips
4760         * src/mcs51/peeph.def: fixed bug #880768
4761
4762 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4763
4764         * src/hc08/ralloc.c (rematStr): fixed bug #879282
4765         * src/SDCCast.c (decorateType): fixed bug #880197
4766
4767 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
4768
4769         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
4770         getopt.h.
4771
4772         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
4773         strtof is not part of C89 and isn't included with Mac OS X.
4774
4775 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4776
4777         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
4778         shiftL2Left2Result): fixed bug #879326
4779         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
4780         (genMultOneByte): fixed bug in signed vs unsigned multiplication
4781         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
4782         address fetch for clr instruction
4783         * device/lib/hc08/_mulint.c: created optimized assembly version
4784         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
4785
4786 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
4787
4788         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
4789         proposed in FR #877103
4790
4791 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
4792
4793         * src/SDCCval.c (cheapestVal): added missing checks
4794         * src/SDCCicode.c (usualBinaryConversions): fixed condition
4795         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
4796
4797 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
4798
4799         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
4800         equal operands
4801
4802 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
4803
4804         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
4805         loaded with the linker search paths (-L arguments) and the libraries
4806         to be linked with the current source (-l arguments). Changes
4807         currently will affect only the pic16 port.
4808         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
4809         include path the port specific paths and port specific libraries,
4810         * gplink command now contains the $3 argument,
4811         * src/pic16/device.h,
4812         * src/pic16/device.c,: structure PIC_device is made public and
4813         renamed to PIC16_device, the same for variable Pics which is renamed
4814         to Pics16. Updated all references to them.
4815         * src/pic16/glue.c (pic16glue): corrected bug with code
4816         initialization which bypassed the variable initializations block.
4817
4818         * device/lib/pic16/Makefile.rules: removed --penable-stack from
4819         COMPILE_FLAGS and added the --nostdinc option
4820
4821 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4822
4823         * device/include/mc68hc908jb8.h: Register defs for another member
4824         of the hc08 family. Contributed by Bjorn Bringert - thanks!
4825
4826 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
4827
4828         Documenting changes from previous commits.
4829         * configure.in (version 1.56),
4830         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
4831         when generating output files to configure the pic16 library,
4832         but now I've commented it out, since gputils aren't installed in the
4833         SF compile farm, so library won't compile
4834
4835         * device/lib/Makefile.in (version 1.56): initially I've added in
4836         target 'all' the prerequestive 'model-pic16' so it compiled the
4837         pic16 library, but now I've commented it out for the same reasons
4838         above,
4839         * added targets 'model-pic16' and 'objects-pic16' to compile the
4840         library
4841         * added target 'port-specific-objects-pic16' to handle the
4842         generated libraries and copy them into the build/ directory
4843         * added target 'clean-intermediate-pic16' to clean intermediate
4844         files into pic16 directory
4845         * in target 'installdirs' added line to create directory pic16 in
4846         the installation path
4847
4848         * device/include/Makefile.in (version 1.11): in target 'install'
4849         added lines to copy all header files to installation path,
4850         * in target 'installdirs' added line create directory for pic16
4851         headers in the installation path
4852
4853 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
4854
4855         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
4856          a function call
4857
4858 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
4859
4860         * configure,
4861         * device/lib/configure.in,
4862         * device/lib/configure: fixed for autoconf 2.57
4863
4864 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4865
4866         * src/z80/main.c (_parseOptions): fixed the portmode= command line
4867         option so that it actually works. Made it specific to the z80, since
4868         the gbz80 doesn't have these kinds of I/O ports.
4869
4870 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4871
4872         * device/include/z180.h,
4873         * device/lib/_memcpy.c,
4874         * device/lib/_memmove.c,
4875         * device/lib/_mulint.c,
4876         * device/lib/ser_ir.c,
4877         * device/lib/ser_ir_cts_rts.c,
4878         * device/lib/_strcmp.c,
4879         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
4880         * src/z80/main.c (_process_pragma): add support for pragmas bank and
4881         portmode; added deprecation warning for bank= and protmode= forms.
4882         Also, guard against buffer overflow.
4883         * src/z80/gen.c (aopGet): generate better code for sfr banked read
4884
4885 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4886
4887         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
4888         changed interrupt vector table generation to only emit declared vectors.
4889         * device/include/Makefile.in: added missing backslash
4890         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
4891
4892 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
4893
4894         Mainly changes to support compilation of the device libraries
4895         * src/pic16/device.c: stack is allocated via symbol and not
4896         via literal number. The symbol is placed in the corresponding
4897         position of the data ram
4898         * (pic16_dump_section): relocatable and absolute uninitialized
4899         data are now emitted in sorted order to reduce section naming,
4900         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
4901         weren't marked as being in the access bank,
4902
4903 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
4904
4905         Added portion of GNU PIC Library under the directory
4906         device/include/pic16 and device/lib/pic16. These files
4907         contain the declarations of SFRs for the PIC18Fxx2 devices.
4908         The directory is initialized via configure from toplevel.
4909
4910 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
4911
4912         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
4913         the spilllocations to be compared correctly
4914
4915 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
4916
4917         * src/SDCCast.c (decorateType): fixed bug introduced today
4918
4919 2004-01-12  Borut Razem <borut.razem AT siol.net>
4920
4921         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
4922         doc/sdccman.lyx: upper case pragmas are deprecated
4923
4924 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
4925
4926         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
4927         in simpler and even better code
4928
4929 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
4930
4931         * src/SDCCicode.c (operandOperation): fixed bug #874819
4932         * src/SDCCast.c (decorateType): fixed
4933         char foo (unsigned long ul) { return ul > 0; }
4934
4935 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4936
4937         * doc/sdccman.lyx: Moved and added some sections, small changes
4938         all over. Telling LaTeX to be less strict with word spacing
4939         to better keep the right margin. Changed some notes about
4940         maintainance of the ports in section 3.2.1 - is it OK like this?
4941
4942 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
4943
4944         SDCC source changes:
4945         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
4946         convilong): modified to inform the pic16 port that builtin functions
4947         are external
4948
4949         PIC16 PORT specific changes:
4950         * src/pic16/device.c pic16_dump_equates() added,
4951         processor registers declared internally by the port are emitted in
4952         the translation as equates,
4953         * src/pic16/gen.c: inline code is passed unprocessed to the
4954         translation,
4955         * (pic16_popGetLit2): fnuction modified to take second operand as
4956         pCodeOp pointer and not as literal,
4957         * (popRegFromIdx): prefixed with pic16_,
4958         * (pic16_popCombine2): modified to receive already allocated pCode
4959         operands,
4960         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
4961         * (genFunction): initializes local stack frame and pushes on stack
4962         all the registers used by this function,
4963         * (genEndFunction): restores all registers from stack and restores
4964         stack frame,
4965         * src/pic16/glue.c (pic16emitRegularMap): various changes and
4966         improvements,
4967         * (pic16glue): changed the program startup sequence,
4968         * added new dbName code 'A' for functions placed in absolute section
4969         * src/pic16/main.c: added function attribute _naked,
4970         * added pragma 'code' to place a fnuction at an absolute address,
4971         * added command line arguments --debug-ralloc and --pcode-verbose,
4972         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
4973         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
4974         * (pic16_newpCodeOpLit2): modified to take the second operand as
4975         pCodeOp pointer,
4976         * (pic16_printpBlock): modified to emit each function in a separate
4977         section,
4978         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
4979         UPPER for immediate operands,
4980         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
4981         instruction,
4982         * src/pic16/peeph.def: all peepholes with movff are commented out,
4983         because there is a problem in the pcode peep optimizer,
4984         * src/pic16/ralloc.c: the register allocator can now reuse local
4985         function symbols for another function. This saves register usage.
4986         * src/pic16/ralloc.h: added flag isLocal in structure regs,
4987
4988         Added file src/pic16/NOTES with information about program writing on
4989         the current port version.
4990
4991 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4992
4993         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
4994         and peephole 252 (array access)
4995
4996 2004-01-09  Borut Razem <borut.razem AT siol.net>
4997
4998         * src/SDCCmain.c : fixed #872250: -l command line defined library
4999           files are scanned before standard library files
5000
5001 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5002
5003         * src/SDCCast.c (decorateType): fixed bug #874046
5004
5005 2004-01-09  Borut Razem <borut.razem AT siol.net>
5006
5007         * support/scripts/sdcc.nsi: remove previous installation
5008
5009 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5010
5011         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
5012         bytes for last interrupt vector (mcs51)
5013         * sdcc.spec: fixed typo
5014
5015 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5016
5017         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
5018         gen51Code): more efficient parameter receive for --model-large
5019         ("bug" #845294)
5020
5021 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5022
5023         * src/ds390/main.c,
5024         * src/z80/main.c: added missed needLinkerScript flags (more than
5025         one port structure defined in these file)
5026         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
5027         bug #795325
5028
5029 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
5030
5031         * src/SDCCmain.c: removed various references to DEFAULT_PORT
5032         * src/port.h: added flag needLinkerScript in port->linker
5033         structure to inform whether to create a .lnk file or not,
5034         * src/avr/main.c,
5035         * src/ds390/main.c,
5036         * src/hc08/main.c,
5037         * src/mcs51/main.c,
5038         * src/pic/main.c,
5039         * src/pic16/main.c,
5040         * src/xa51/main.c,
5041         * src/z80/main.c: changed appropriately to configure
5042         needLinkerScript flag
5043         * src/pic/gen.c,
5044         * src/pic16/gen.c (genAddrOf): fixed bug #863624
5045         * src/pic/glue.c: added variable udata_section_name to
5046         override default uninitialized data segment definition for
5047         devices only with SHAREBANK memory (reported from Erik Epetrich)
5048         * (pic14emitOverlay): modified to emit a commented overlay segment
5049         directive when no overlay data exist
5050         * (picglue): modified to emit uninitialized data segment
5051         according to udata_section_name
5052         * src/pic/main.c (_pic14_parseOptions): added command line
5053         options --udata-section-name=[name] to override default
5054         udata definition name
5055         * modified _linkCmd and _asmCmd to include compiler passed
5056         arguments via -W option
5057         * src/pic16/main.c: added $l in _asmCmd, changed extension for
5058         object file from '.rel' to '.o' in port->linker structure,
5059         changed size of fptr from 2 to 3 in port structure
5060
5061 2004-01-07  Borut Razem <borut.razem AT siol.net>
5062
5063         * support/scripts/sdcc.nsi: update PATH
5064         * support/scripts/sdcc.ico: craeted
5065
5066 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
5067
5068         * device/include/Makefile.in: fix install
5069         * doc/Makefile: fix install
5070
5071 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5072
5073         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
5074         in bug #860505
5075         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
5076         how the function variable allocation summary is displayed; also
5077         include information about variables allocated to the overlay
5078         segment
5079
5080 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5081
5082         * as/mcs51/lkmain.c: Help about -Y option
5083         * as/mcs51/lkarea.c: Fixed gcc warnings
5084
5085 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5086
5087         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
5088         fixed warning
5089         * support/valdiag/tests/overflow.c: added
5090         * src/SDCCast.c (decorateType),
5091         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
5092         LEFT_OP (left shift)
5093
5094 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5095
5096         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
5097         (default behaviour).
5098
5099 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5100
5101         A python script to validate compiler diagnostic messages. It can be
5102         used to verify that sdcc complains about bad c source code and
5103         gives a good location of the error.
5104         * support/valdiag/Makefile,
5105         * support/valdiag/valdiag.py,
5106         * support/valdiag/tests/*
5107
5108 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5109
5110         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
5111         * src/SDCCsymt.c (newEnumType),
5112         * src/SDCCsymt.h
5113         * support/Util/SDCCerr.c,
5114         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
5115         enum related bugs.
5116         * support/regression/tests/enum.c: added test for enum values that
5117         require at least 2 bytes of storage.
5118
5119 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5120
5121         * src/common.h: added ifndef/define/endif macros
5122         around the header file.
5123         Bug reported from Jesus Calvino-Fraga
5124
5125 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5126
5127         * sdcc.spec: updated
5128         * device/include/Makefile.in: don't install CVS directories
5129         * device/lib/Makefile.in: added removal of CVS directories after install
5130         * doc/Makefile: fixed install, added local_icons
5131         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
5132         * src/mcs51/gen.c (genRightShift): fixed bug #870788
5133         * src/ds390/gen.c (genRightShift): fixed bug #870788
5134         * src/SDCCast.c (decorateType): fixed bug #870781
5135
5136 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5137
5138         PIC16 port related changes:
5139         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
5140         added variable stackPos,
5141
5142         * gen.c: genCall, assignResultValue: added support for
5143         pushing/retrieving function parameters to/from stack,
5144         genFunction,genEndFunction: setup stack frame for the
5145         generated function,
5146         genAddrOf: will be changed according to bug 863624
5147
5148         * added files genutils.c and genutils.h which contain gen*
5149         debugged and optimised functions extracted from gen.c
5150
5151         * glue.c: added variable 'externs' which holds extern symbols,
5152         pic16emitRegularMap: is modified to properly handle relocatable
5153          symbols under the new scheme,
5154         pic16createInterruptVect: is modified
5155         pic16printPublics: is modified to emit 'global' assembler directives,
5156         added pic16_printExterns to print extern symbols,
5157         pic16glue: initializes stack/frame pointer in the beginning of
5158         the assembly output. Temporary hack, will be corrected later,
5159         because gplink yet does not support stack and SDCC does not
5160         yet support a type of crt0.o object to create the final binary.
5161
5162         * Removed many lines that contain 8051 legacy code.
5163         * The code is finally placed under a 'code' directive.
5164         * Added port specific options.
5165
5166         * _process_pragma: simplified since now we do not need *special*
5167         include file to define SFR registers. But a separate header
5168         will be needed. This will be developed later.
5169         * _pic16_parseOptions: added, parses port specific options:
5170         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
5171         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
5172         --preplace-udata-with=
5173
5174         * _pic16_setDefaultOptions: modified to initialize section names,
5175         but hack is temporarly out of order since it needs improvement.
5176         * _pic16_genAssemblerPreamble: configuration words are emitted by
5177         their address instead of their name. This part is incomplete and
5178         supports only the 18Fxx2 devices. Other devices will emit an error
5179         during assembly since they do not contain the same set of config
5180         registers
5181         * _pic16_genIVT: is modified,
5182
5183         * pcode.c: added definitions for some hardware registers that are needed
5184         for stack support
5185         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
5186         All PCI entries are updated. Now LFSR is supported.
5187         * Removed pic16_pciTRIS is mentioned by mdubuc in source
5188         * added pic16_newpCodeOpLit2 to support instructions with
5189         two literal arguments
5190         * pic16_pCode2str: corrected code that emits assembler instructions
5191         with two literal operands and those that have an access bit modifier
5192         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
5193         this fixes a bug which caused some labels to be lost, when an
5194         assembler directive was added, i.e. banksel,
5195         * pic16_FixRegisterBanking: improved logic that causes the insertion
5196         of bank switching,
5197         * InlineFunction: functions that are called once, are not any more
5198         inlined. This can be a port option in the future,
5199
5200         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
5201
5202         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
5203         hold the corresponding uninitialized symbols,
5204         * pic16_allocProcessorRegister: registers have explicit marked the
5205         accessBank field,
5206         * pic16_allocInternalRegister: registers are explicit marked as
5207         not used,
5208         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
5209         processing list, so bit registers were lost,
5210         *
5211
5212         * ralloc.h: added field 'accessBank' and original symbol operand
5213         in register definition,
5214         * removed the field isMapped from register definition,
5215
5216         ** Several functions have been removed from various sources:
5217         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
5218         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
5219         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
5220         pic16_assignRelocatableRegisters
5221
5222         ** others have been introduced:
5223         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
5224         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
5225
5226 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
5227
5228         * support/scripts/inc2h.pl: changed definition of BIT_AT
5229         to emit 'sbit at' instead of 'bit at'. This was a request.
5230
5231         PIC16 port related preliminary changes:
5232         * gen.c: prefixed function popRegFromString with
5233         pic16_ and all references to it corrected
5234         * pcode.c: all pic16_pc_* hardware registers prefixed
5235         with underscore (_),
5236         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
5237         * ralloc.c: newReg(): when register is REG_SFR then
5238         set address to rIdx,
5239         pic16_allocProcessorRegister(): marks register wasUsed=0
5240         pic16_writeUsedRegs(): added a call to assign processor
5241         registers via pic16_assignFixedRegisters
5242
5243 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5244
5245         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
5246         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
5247         variables in unused register banks.  Also the SSEG is placed
5248         wherever there is enough space for it, and IDATA can be anywhere
5249         in internal RAM.  For now compile using -Wl-Y[stack_size].
5250         The mem file is different for this option as well, since it
5251         makes no sense of talking about DSEG lenght.
5252
5253 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
5254
5255         * src/SDCClrange.c: fixed bug 869095 that caused segfault
5256         in certain cases, e.g. when ROM assignment, patch provided
5257         from Albert den Haan.
5258
5259 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
5260
5261         Many signedness and type propagation fixes:
5262         * src/SDCCicode.c: made geniCodeCast() static
5263         replaced SPEC_ by IS_ (cosmetic)
5264         (operandOperation): fixed div and mod operation
5265         (usualBinaryConversions): added support for promotion of char
5266         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
5267         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
5268         (geniCodeAdd): an array index will stay unsigned, even if promoted
5269         from char to int
5270         (geniCodeArray): ditto
5271         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
5272         * src/SDCCsymt.c (computeType): added more support for char;
5273         promotion of char is selectable by promoteCharToInt, fixed signedness
5274         for all cases
5275         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5276         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5277         * src/SDCCval (val*): replaced signedness calculation by
5278         computeType()
5279         rearranged if-branches (cosmetic)
5280         (valShift): added warning W_SHIFT_CHANGED
5281         (valCompare): fixed problem with different types
5282         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
5283         * support/regression/tests/literalop.c: added many cases
5284         * support/regression/tests/ast_constant_folding.c: changed finally to
5285         'unsigned int'
5286         * .version: new year, new version: 2.3.7
5287         * src/SDCCmain.c (main): applied patch #866468
5288         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
5289         provided by Scott Bronson
5290         * doc/sdccman.lyx: updated documentation for sdcdb
5291         updated and added chapter tips
5292
5293 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5294
5295         * src/SDCCsymt.h: missing from yesterday's commits
5296
5297 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5298
5299         * src/SDCC.y (struct_or_union_specifier),
5300         * support/Util/SDCCerr.c,
5301         * support/Util/SDCCerr.h: verify that struct & union tags are used
5302         as declared.
5303
5304 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5305
5306         * src/SDCCglobl.h: missing from yesterday's commits
5307
5308 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5309
5310         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
5311         sft_attributes, struct_declaration, parameter_declaration,
5312         type_name, start_block, declaration_list),
5313         * src/SDCC.lex (check_type): support redefinition of typedef names
5314
5315 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5316
5317         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
5318         aligned xdata arrays. Erik helped me with the if clause.
5319
5320 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5321
5322         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
5323         warning
5324
5325 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5326
5327         * src/SDCCast.h,
5328         * src/SDCCast.c (newAst_),
5329         * src/SDCCicode.h,
5330         * src/SDCCicode.c (ast2iCode, newiCode),
5331         * src/SDCCglobl.h,
5332         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
5333         expr, statement, expression_statement, selection_statement,
5334         iteration_statement, expr_opt, jump_statement): foundation for tracking
5335         sequence points
5336         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
5337         point code too)
5338
5339 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5340
5341         * support/Util/SDCCerr.c,
5342         * src/SDCCast.h,
5343         * src/SDCCast.c (createCase, createDefault, decorateType),
5344         * src/SDCClabel.c (labelUnreach),
5345         * src/SDCC.y (labeled_statement, jump_statement): More improvements
5346         to error messages.
5347         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
5348         (with thanks to Stas Sergeev)
5349         * device/include/time.h,
5350         * device/lib/time.c (CheckTime): suppress unreachable code warning
5351
5352 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5353
5354         * src/SDCCast.c (createIvalCharPtr),
5355         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
5356         bug #753752)
5357         * support/regression/tests/nullstring.c: tests for these two bugs
5358
5359 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5360
5361         * support/Util/SDCCerr.h,
5362         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
5363         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
5364         about storage class and 'at' used inside struct or union
5365         * src/SDCCBBlock.c (iCodeFromeBBlock),
5366         * src/SDCCcse.c (ifxOptimize),
5367         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
5368         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
5369         printIval, emitStaticSeg, emitOverlay),
5370         * src/SDCClabel.c (deleteIfx),
5371         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
5372         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
5373         gatherAutoInit, processParms),
5374         * support/Util/SDCCerr.h,
5375         * support/Util/SDCCerr.c (werrorfl): Support for better error location
5376         reporting for post-parse errors.
5377
5378 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5379
5380         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
5381         implicit casts via union; they don't work on big endian systems
5382         (possible fix for bug #861138)
5383
5384 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5385
5386         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
5387         * src/mcs51/main.c: fixed the fix for bug #737001
5388
5389 2003-12-15  Borut Razem <borut.razem AT siol.net>
5390
5391         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
5392
5393 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5394
5395         * support/makebin/makebin.c: put output in binary mode
5396
5397 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5398
5399         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
5400         xdata and data memory on startup. Set the environment variable
5401         SDCC_NOGENRAMCLEAR to disable this.
5402         * src/mcs51/peephole.def,
5403         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
5404         (allows non-interrupt and interrupt code to safely compete for a resource
5405         without the non-interrupt code having to disable interrupts)
5406
5407 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5408
5409         * src/SDCCicode.c (geniCodeAdd),
5410         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
5411         with valFromType if type might be a pointer and host is big endian).
5412         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
5413         types, not just integer types.
5414         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
5415         multiply defined with mismatching "at" address.
5416
5417 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5418
5419         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
5420         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
5421         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
5422         with embedded nulls (fixed bug #753752)
5423
5424 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5425
5426         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
5427         Apparently this did not see much testing (endless loop)
5428
5429 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5430
5431         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
5432
5433 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5434
5435         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
5436         gracefully handle NULL memmap pointers
5437
5438 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5439
5440         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
5441         instead of deleting the iCode when an operand is volatile
5442         * src/z80/gen.c (genDummyRead),
5443         * src/mcs51/gen.c (genDummyRead),
5444         * src/ds390/gen.c (genDummyRead),
5445         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
5446         not just IC_RIGHT
5447         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
5448         * src/SDCC.y: fixed bug #850420
5449
5450 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5451
5452         Applied z80 i/o port patch from Peter Townson and fixed some operators
5453         to better handle operands in A register.
5454         * device/include/z180.h
5455         * src/SDCC.y
5456         * src/SDCCglue.c
5457         * src/z80/gen.c
5458         * src/z80/gen.h
5459         * src/z80/main.c
5460         * src/z80/peeph-z80.def
5461         * src/z80/peeph.def
5462         * src/z80/z80.h
5463
5464 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5465
5466         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
5467
5468 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5469
5470         * device/lib/hc08/_mullong.c: Removed extra #endif
5471
5472 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5473
5474         * sim/ucsim/hc08.src/inst.cc,
5475         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
5476         carries from x to h
5477         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
5478         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
5479         * device/include/stdarg.h: fixed varargs for hc08
5480         * device/lib/Makefile.in,
5481         * device/lib/hc08/Makefile,
5482         * device/lib/hc08/_mulint.c,
5483         * device/lib/hc08/_mullong.c: fixed some endian problems
5484
5485 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5486
5487         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
5488         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
5489         * device/lib/_gptrget.c,
5490         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
5491
5492 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5493
5494         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
5495         * src/SDCCast.c (astErrors): fixed bug #846007
5496         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
5497
5498 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5499
5500         * src/SDCCast.c (decorateType): disabled a transformation I added in
5501         revision 1.188 (access to fields of a structure at an absolute address);
5502         it breaks with bitfields, extern declarations, and gcse analysis.
5503         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
5504         could be assigned through a pointer, so don't complain.
5505         * src/SDCCast.c (astErrors),
5506         * src/SDCCast.h,
5507         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
5508
5509 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
5510
5511         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
5512         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
5513         output of __config directives, since gpasm now supports them
5514         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
5515         pre-processor macro, i.e. -DMCU=p18f452
5516         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
5517         and modified to handle 'cast' icode similarly to '=' icode
5518         * src/pic16/device.h (typedef struct PIC_device): added field
5519         'extMIface' to indicate that chip has external memory interface
5520         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
5521         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
5522         18F8720
5523
5524 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5525
5526         * src/SDCC.y (pointer): fixed bug #846006
5527         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
5528         * src/SDCCast.c (decorateType): fixed bug #846009
5529         * src/ds390/peeph.def,
5530         * src/ds390/gen.c (genAnd, genOr),
5531         * src/mcs51/peeph.def,
5532         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
5533
5534 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5535
5536         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
5537         * src/SDCCdflow.c
5538         * src/SDCCcse.c
5539         * src/SDCCcse.h
5540         * src/SDCCBBlock.h
5541         * src/SDCCBBlock.c
5542
5543 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
5544
5545         fixed bug #845089
5546         * src/SDCCbitv.h,
5547         * src/SDCCbitv.c: added function to free a bitvector
5548         * src/SDCClrange.h,
5549         * src/SDCClrange.c: added function to recompute the liveranges
5550         * src/avr/ralloc.c,
5551         * src/ds390/ralloc.c,
5552         * src/hc08/ralloc.c,
5553         * src/mcs51/ralloc.c,
5554         * src/pic/ralloc.c,
5555         * src/pic16/ralloc.c,
5556         * src/xa51/ralloc.c,
5557         * src/z80/ralloc.c: recompute the liveranges after register packing
5558
5559 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
5560
5561         * src/SDCCloop.c (newInduction): fixed bug #845630
5562
5563 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5564
5565         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
5566         inadvertantly left behind from my 2003-11-12 change
5567
5568 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5569
5570         Updated headers I neglected to commit yesterday.
5571         * src/SDCClrange.h,
5572         * src/SDCCicode.h
5573
5574 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5575
5576         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
5577         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
5578         * src/SDCCopt.c (eBBlockFromiCode),
5579         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
5580         the creation of the key hash table from the sequencing so it can be used
5581         earlier (for some GCSE bug fixes still pending)
5582
5583 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5584
5585         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
5586         * support/regression/tests/addsub.c: testing genPlus shortcut
5587
5588 2003-11-15  Borut Razem <borut.razem AT siol.net>
5589
5590         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
5591
5592 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5593
5594         * src/SDCCcse.c (cseBBlock): fixed bug #527779
5595         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
5596         ordering is immaterial.
5597         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
5598
5599 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5600
5601         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
5602         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
5603         (SIGSEV) of bug #840381
5604         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
5605         unlink new file before rename if new and old filenames are the same)
5606
5607 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5608
5609         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
5610         uninitialized variables) for the mcs51. Set environment variable
5611         SDCC_GENRAMCLEAR to test.
5612         xdata initialization slightly shorter
5613
5614 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5615
5616         * src/SDCCsymt.h,
5617         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
5618         #838241 & 780691 (basicly the same bug)
5619         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
5620         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
5621
5622 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
5623
5624         * src/SDCCmain.c (linkEdit): "fix" #834252
5625
5626 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5627
5628         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
5629         * src/SDCCast.h,
5630         * src/SDCC.y: fixed bug #819403
5631
5632 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5633
5634         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
5635         the reentrant attribute.
5636         * src/hc08/gen.c (genPackBits): added missing stack readjustment
5637         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
5638         simulation
5639         * src/SDCCast.c (decorateType): fixed bug with storage class not being
5640         updated during pointer dereference; f.e. ~(((char *)1)*) was being
5641         erroneously reduced to a literal.
5642         * src/hc08/ralloc.c (packRegisters, rematStr),
5643         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
5644         some cases
5645
5646 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5647
5648         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
5649         * doc/sdccman.lyx: changed from 'article' to 'book'
5650         * doc/Makefile: readded test_suite_spec and cdbfileformat
5651
5652 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
5653
5654         * device/include/stdlib.h: include malloc.h to comply with ANSI
5655         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
5656
5657 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5658
5659         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
5660         * doc/clean.mk: also remove *.out files
5661         * doc/sdccman.lyx: some additions, larger top/bottom margins
5662
5663 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5664
5665         * src/SDCC.y: fixed bug #837365
5666         * support/regression/tests/bitopcse.c
5667         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
5668         a symbol (might be valop instead)
5669         * device/lib/Makefile.in: added errno.c to HC08SOURCES
5670         * device/lib/clean.mk: added hc08 to the cleaning list
5671
5672 2003-11-04  Borut Razem <borut.razem AT siol.net>
5673
5674         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
5675           made 2003-11-04
5676         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
5677           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
5678           malloc is declared in standard stdlib.h
5679
5680 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5681
5682         * device/lib/hc08/Makefile: need to clean .rel not .o files
5683         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
5684
5685 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5686
5687         * src/port.h,
5688         * src/hc08/main.c,
5689         * src/mcs51/main.c,
5690         * src/ds390/main.c,
5691         * src/z80/main.c,
5692         * src/avr/main.c,
5693         * src/pic/main.c,
5694         * src/pic16/main.c,
5695         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
5696         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
5697         tests (which uses the port's oclsExpense function)
5698         * src/SDCC.y,
5699         * src/SDCCast.c,
5700         * src/SDCCicode.c,
5701         * src/hc08/gen.c,
5702         * src/ds390/gen.c,
5703         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
5704
5705 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5706
5707         * src/SDCCcse.c (ifxOptimize),
5708         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
5709         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
5710         deleting the IFX iCode.
5711         * src/hc08/ralloc.c: reduced unneeded slocs
5712         * src/hc08/gen.c: fixed bug in asmopToBoolean
5713
5714 2003-11-04  Borut Razem <borut.razem AT siol.net>
5715
5716         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
5717           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
5718           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
5719           transferred to configure
5720
5721 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
5722
5723         Use headers defined in the C[++] standards:
5724         * sim/ucsim/gui.src/serio.src/fileio.cc
5725         * sim/ucsim/gui.src/serio.src/frontend.cc
5726         * sim/ucsim/gui.src/serio.src/main.cc
5727         * sim/ucsim/gui.src/serio.src/posix_signal.cc
5728         * support/Util/NewAlloc.c
5729         * as/hc08/lklibr.c
5730         * as/mcs51/lklibr.c
5731         * as/z80/aslist.c
5732         * as/z80/assym.c
5733
5734 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5735
5736         * Added MSVC projects for hc08 assembler and linker:
5737         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
5738         /as/hc08/link_hc08.dsp
5739
5740 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
5741
5742         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
5743
5744 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
5745
5746         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
5747
5748 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5749
5750         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
5751
5752 2003-10-31  Borut Razem <borut.razem AT siol.net>
5753
5754         * support/cpp2/cpplib.h,
5755           support/cpp2/cpplib.c,
5756           support/cpp2/cpplex.c,
5757           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
5758           to switch _asm block preprocessing on / off. Default is
5759           #pragma preproc_asm +
5760
5761 2003-10-31  Borut Razem <borut.razem AT siol.net>
5762
5763         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
5764           when outputting comment blocks (when executed with -C option) and
5765           _asm (SDCPP specific) blocks
5766
5767 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5768
5769         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
5770
5771 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
5772
5773         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
5774
5775 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
5776
5777         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
5778         * src/SDCCast.c (decorateType): fixed bug #832664
5779
5780 2003-10-31  Borut Razem <borut.razem AT siol.net>
5781
5782         * support\cpp2\cpplex.c: fixed for SDCPP:
5783           comments(when executed with -C option) and _asm blocks
5784           were included even if they where in skipped #if block.
5785           Applied solution from GCC cpp 3.3.2
5786
5787 2003-10-31  Borut Razem <borut.razem AT siol.net>
5788
5789         * src/SDCC.lex: sdcc now understands both formats:
5790           '# <line_number> <file_name>' and
5791           '#line <line_number> <file_name>'
5792         * support/cpp2/cppmain.c: sdcpp now generates the standard
5793           '# <line_number> <file_name>' instead of former
5794           '#line <line_number> <file_name>'
5795
5796 2003-10-30  Borut Razem <borut.razem AT siol.net>
5797
5798         * support/cpp2/cpphash.h,
5799         * support/cpp2/cpplib.h
5800         * support/cpp2/cpplex.c,
5801         * support/cpp2/cppmain.c,
5802         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
5803
5804 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5805
5806         Fixed a number of problems revealed by bug #827883.
5807         * src/SDCCloop.c (loopInvariants): Spill location of the
5808         result operand should be recomputed if extracted from
5809         a loop. Also, don't extract assignments of an iTemp
5810         from a literal.
5811         * src/SDCCast.c (isConformingBody): loop reversal should
5812         not occur if the control variable is involved with a
5813         relational operator.
5814
5815 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
5816
5817         * .version: bumped to 2.3.6 to reflect the big improvements
5818         made by Erik and Klaus. Thanks!
5819
5820 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
5821
5822         Replaced the livrange code.
5823         * src/SDCClrange.c: added new LR code
5824         * src/SDCCloop.c,
5825         * src/SDCCBBlock.h: removed remainig parts from old LR code
5826         * src/ds390/ralloc.c,
5827         * src/ds390/gen.c: minor fixes to make it work with new code
5828
5829 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5830
5831         * as/hc08/asm.h,
5832         * as/hc08/lkrloc.c,
5833         * src/hc08/gen.c,
5834         * src/hc08/ralloc.c: Fix various warnings related to the hc08
5835         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
5836         (tweaked fix for bug #818696)
5837
5838 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5839
5840         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
5841
5842 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5843
5844         * src/SDCCmain.c,
5845         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
5846         * src/mcs51/gen.c (gencjneshort),
5847         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
5848         more efficient (per Scott Bronson's suggestion)
5849
5850 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5851
5852         Extended the semantics of the critical keyword to include
5853         individual statements. See RFE #827755 and #799831
5854         * src/SDCC.y
5855         * src/SDCCicode.c
5856         * src/SDCCopt.c
5857         * src/SDCCast.c
5858         * support/Util/SDCCerr.c
5859         * support/Util/SDCCerr.h
5860         * src/mcs51/gen.c
5861         * src/ds390/gen.c
5862         * src/hc08/gen.c
5863
5864 2003-10-19  Borut Razem <borut.razem AT siol.net>
5865
5866         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
5867
5868 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5869
5870         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
5871         Fixed bug #818696
5872         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
5873         and predecrement operand is displayed
5874
5875 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
5876
5877         * src/SDCCval.c (valMinus): fixed bug #826041
5878
5879 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5880
5881         Some hc08 related updates that I missed earlier
5882         * sim/ucsim/stypes.h
5883         * support/regression/ports/hc08/spec.mk
5884
5885 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5886
5887         New target "hc08" for the Motorola 68hc08 family of micros
5888
5889         * configure
5890         * configure.in
5891         * Makefile
5892         * src/hc08/*
5893         * src/SDCCmain.c
5894         * src/port.h
5895         * sim/ucsim/hc08.src/*
5896         * sim/ucsim/configure.in
5897         * src/ucsim/configure
5898         * sim/ucsim/packages_in.mk
5899         * as/hc08/*
5900         * as/Makefile
5901         * device/include/mc68hc908qy.h
5902         * device/lib/hc08/*
5903         * device/lib/Makefile.in
5904         * support/regression/ports/hc08/*
5905         * support/regression/Makefile
5906
5907 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5908
5909         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
5910         regression test
5911         * src/ds390/gen.c (genCast): fixed bug #821957
5912
5913 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
5914
5915         * device/lib/logf.c: "fixed" overlay bug
5916         * support/regression/ports/host/spec.mk: added m library
5917         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
5918         * support/regression/tests/float_trans: added (for Eric)
5919
5920 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
5921
5922         * src/mcs51/gen.c (genCpl): fixed bug
5923         http://sf.net/mailarchive/message.php?msg_id=6263915
5924
5925 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
5926
5927         * src/SDCCast.c (decorateType): added extended constant folding
5928         * src/SDCCsymt.c (computeType): cleanup
5929         * src/SDCCval.c (valShift): minor optimization
5930         * support/regression/tests/ast_constant_folding.c: added
5931
5932 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5933
5934         * src/SDCCmain.c: removed some unintended changes
5935
5936 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5937
5938         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
5939         * src/z80/gen.c: fixed part of bug #817589
5940         * src/SDCCsymt.c (checkFunction): fixed bug #817895
5941
5942 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
5943
5944         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
5945         * src/SDCCcflow.c
5946         * src/SDCCcse.c
5947         * src/SDCCdflow.c
5948         * src/SDCClabel.c
5949         * src/SDCClrange.c
5950         * src/SDCCmem.c
5951         * src/SDCCopt.c
5952         * src/SDCCpeeph.c
5953         * src/SDCCset.c
5954         * src/avr/ralloc.c
5955         * src/ds390/ralloc.c
5956         * src/izt/ralloc.c
5957         * src/mcs51/ralloc.c
5958         * src/pic/ralloc.c
5959         * src/pic16/ralloc.c
5960         * src/xa51/ralloc.c
5961         * src/z80/ralloc.c
5962         * src/z80/gen.c: removed unused label "release:"
5963
5964 2003-10-06  Borut Razem <borut.razem AT siol.net>
5965
5966         * src/SDCC.lex: removed definition of unused variables
5967           save_optimize and save_options
5968
5969 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
5970
5971         * clean.mk: removed '=' in "-maxdepth=1"
5972         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
5973         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
5974
5975 2003-10-06  Borut Razem <borut.razem AT siol.net>
5976
5977         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
5978           my_unput() replaced by unput()
5979
5980 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
5981
5982         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
5983         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
5984         type-punned pointer will break strict-aliasing rules"
5985         Old LR behaviour is again default; Klaus' LR can be choosen by
5986         defining the environment variable LRKLAUS
5987         * src/SDCCBBlock.h
5988         * src/SDCCloop.c
5989         * src/SDCClrange.c
5990         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
5991         * clean.mk: fixed removal of files in bin/CVS/
5992         * device/lib/clean.mk: fixed removal of directories small and large
5993         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
5994         * src/SDCCicode.c,
5995         * src/SDCCval.c: removed superflous test for pedantic
5996
5997 2003-10-05  Borut Razem <borut.razem AT siol.net>
5998
5999         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
6000           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
6001           message "unmatched #pragma SAVE and #pragma RESTORE"
6002
6003 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6004
6005         * doc/sdccman.lyx: various additions and updates (interrupts, inline
6006           assembly, critical functions, atomic, nojtbound)
6007
6008 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
6009
6010         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
6011         * src/SDCCBBlock.h
6012         * src/SDCCloop.c
6013         * src/SDCCloop.h
6014         * src/SDCClrange.c
6015
6016 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6017
6018         * src/z80/gen.h,
6019         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6020         * src/mcs51/gen.h
6021         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6022         * src/ds390/gen.h
6023         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6024         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
6025         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
6026
6027 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6028
6029         * src/z80/gen.c (genRet): fixed bug #524753
6030         * src/z80/gen.c (genCast): fixed internal error on cast from
6031         pointer to long
6032         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
6033         fix for bug #477835 to the z80
6034         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
6035         for tracking iCodes in the peephole optimizer for z80
6036
6037 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6038
6039         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
6040         the other part of bug #814548
6041         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
6042
6043 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
6044
6045         * src/SDCCcse.c: fixed part of bug #814548
6046
6047 2003-09-28  Borut Razem <borut.razem AT siol.net>
6048
6049         * src/asm.c: rewrite of printILine() to use temporary file instead
6050           a pipe
6051         * src/xa51/main.c: commented out declaration of int rewinds
6052
6053 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6054
6055         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
6056
6057 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6058
6059         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
6060         * src/asm.c (printILine): Fixed bug #811015
6061
6062 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6063
6064         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
6065         freeing.
6066
6067 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6068
6069         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
6070         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
6071         to correctly handle general case of AOP_PAIRPTR
6072         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
6073
6074 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6075
6076         * src/mcs51/ralloc.c (fillGaps),
6077         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
6078         register positioning bug)
6079
6080 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
6081
6082         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
6083
6084 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6085
6086         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
6087         genCodePointerGet, genGenPointerGet, genFarPointerSet,
6088         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
6089         (ralloc doesn't intentionally do this now, but perhaps later)
6090         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
6091         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
6092         register positioning bugs (Fixed bug #762602 and #795325)
6093         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
6094         (Fixed bug #808779)
6095         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
6096         lines that --i-code-in-asm generates
6097
6098 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6099
6100         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
6101         trying to fclose a FILE* that was already closed.
6102
6103 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6104
6105         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
6106         of const struct should be treated as if const themselves)
6107
6108 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
6109
6110         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
6111
6112 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6113
6114         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
6115         Unix (/n) and DOS (/r/n) line terminations.
6116
6117 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6118
6119         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
6120         bug #613775
6121
6122 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6123
6124         * src/mcs51/gen.c (genFunction, genEndFunction),
6125         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
6126         and restore of EA so that stack offsets to parameters are
6127         correct when using both critical and reentrant/stack-auto.
6128         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
6129         size (can be triggered in error if sloc is shared between
6130         different sized objects)
6131         * device/include/float.h: fixed macros to explicitly use
6132         unsigned long where needed
6133
6134 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
6135
6136         Feature req. 799831: added code to allow nesting of critical functions
6137         * src/mcs51/gen.c (genFunction, genEndFunction)
6138         * src/ds390/gen.c (genFunction, genEndFunction)
6139
6140 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6141
6142         * src/SDCCsymt.c (sclsFromPtr),
6143         * src/SDCCsymt.h,
6144         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
6145         support for standard C idiom of memory mapped variables; for
6146         example, *((xdata int*)0x1234) = 1 is now internally equivalent
6147         to xdata int at 0x1234 tempvar = 1.
6148         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
6149         provided by Akiya ISHIDA
6150
6151 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
6152
6153         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
6154         * src/SDCCval.c (constVal): added reduction from int to char
6155         * src/SDCCval.c (valMult, valDiv): fixed sign handling
6156         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
6157         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
6158         to ignore the sign
6159         * support/regression/tests/shifts.c: fixed
6160
6161 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6162
6163         * src/z80/gen.c (genXor): Fixed bug #805445
6164
6165 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6166
6167         Fixed bug #621531 (const & volatile confusion in the type chain).
6168         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
6169         refer to the const or volatile state of the pointer itself.
6170
6171         * src/SDCCast.c
6172         * src/SDCCglue.c
6173         * src/SDCCicode.c
6174         * src/SDCCsymt.c
6175         * src/SDCCval.c
6176         * src/SDCC.y
6177         * src/SDCCsymt.h
6178         * src/pic/gen.c
6179         * src/pic/ralloc.c
6180         * src/pic16/gen.c
6181         * src/pic16/ralloc.c
6182         * support/regression/tests/const.c
6183
6184 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6185
6186         When checking for duplicated modules, use absolute paths
6187         instead of relative paths.  Files changed:
6188
6189         * as/mcs51/lklib.c
6190         * link/z80/lklib.c
6191
6192 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6193
6194         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
6195
6196 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6197
6198         * device/include/string.h: added size_t typedef, changed
6199         prototypes to use size_t, eliminated separate reentrant and
6200         non-reentrant declarations, added _memmove declaration
6201         * device/lib/_memcpy.c: changed to use size_t instead of int,
6202         changed /4 to >>2 to avoid division library call
6203         * device/lib/_memcmp.c,
6204         * device/lib/_memset.c,
6205         * device/lib/_strncat.c,
6206         * device/lib/_strncpy.c,
6207         * device/lib/_strncmp.c: changed to use size_t instead of int
6208         * device/lib/_memmove.c: new file (fixed bug #772294)
6209         * device/lib/Makefile.in: added _memmove.c
6210         * device/lib/z80/asm_strings.s: fixed bug #772290
6211         * support/regression/tests/bitfields.c: attempt to fix host assertion
6212         failure on amd64-unknown-linux2.2
6213
6214 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6215
6216         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
6217         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
6218         * as/z80/asmain.c (main): fixed bug #801766
6219
6220 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
6221
6222         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
6223         compilers
6224
6225 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6226
6227         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
6228         reported in bug #800609
6229
6230 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
6231
6232         * Top header beautifications in src/pic16 directory:
6233           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
6234           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
6235           pcoderegs.h, ralloc.c, ralloc.h
6236         * main.c: added top header and GPL license notice
6237         * pcode.c: fixed the if-conditional warning
6238
6239 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
6240
6241         * device/lib/_mullong.c: replaced int by short for gcc
6242
6243 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6244
6245         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
6246         and JUMPTABLE iCodes properly now (worked by accident before)
6247         * src/mcs51/gen.c (leftRightUseAcc),
6248         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
6249         iCode properly now. Use getSize instead of nRegs since a & b
6250         aren't part of the nRegs tally.
6251
6252 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
6253
6254         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
6255         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
6256           before instructions that use the _STATUS register
6257
6258 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
6259
6260         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
6261         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
6262         fetching of the pointer
6263         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
6264         copied from genNearPointerSet()
6265         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
6266         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
6267         If they pop r0/r1 they must be called in the opposite order than aopOp().
6268         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
6269         (resp. --stack-auto), prepared for --xstack
6270
6271 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6272
6273         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
6274
6275 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
6276
6277         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
6278         these ports have their own __sdcc_external_start()
6279
6280 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
6281
6282         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6283         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
6284         type for bits was changed. It resulted in bit variables becoming
6285         global, which is not permitted in PIC 14 assembly output.
6286
6287 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6288
6289         * doc/sdccman.lyx: various additions and updates. Rearranged sections
6290
6291 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6292
6293         Z80 and MCS51 linkers complaint if a public symbol is defined
6294         in more than one library module:
6295
6296         * as/mcs51/lklib.c
6297         * link/z80/lklib.c
6298         * as/mcs51/Makefile.in
6299
6300 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6301
6302         A few small changes that speed up the peephole optimizer.
6303
6304         * src/SDCCpeeph.c
6305
6306 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6307
6308         Try to make the peephole optimizer smarter by maintaining
6309         an association between the assembly source code and the
6310         iCodes that originated them. Put this information to use
6311         with a new peephole rule condition "notVolatile" so that
6312         the rules can be aggressive yet still safe.
6313
6314         * src/SDCCpeeph.c
6315         * src/SDCCpeeph.h
6316         * src/mcs51/gen.c
6317         * src/mcs51/peeph.def
6318
6319 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6320
6321         Fixed bug #741761
6322
6323         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
6324         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
6325         if the left or right operand symbols have the accuse flag set.
6326
6327 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6328
6329         Changed the type of the result of the ! (NOT) operator to char;
6330         previously it returned the same type as the source. This allows
6331         us to eliminate all the genFloatNot functions (all of its target
6332         implementations were very buggy) since !float can use the same
6333         code as !long now.
6334
6335         * src/SDCCicode.c (ast2iCode): ! returns char
6336         * src/mcs51/gen.c (genNot, genNotFloat),
6337         * src/ds390/gen.c (genNot, genNotFloat),
6338         * src/z80/gen.c (genNot, genNotFloat),
6339         * src/pic/gen.c (genNot, genNotFloat),
6340         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
6341
6342 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
6343
6344         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6345         1. Interrupt would not compile properly. Ensure PCLATH register is saved
6346            during interrupts. Ensure WSAVE is located at a shared bank address.
6347         2. Fixed page selection in some places
6348         3. Fixed BTFSS/C to where necessary use registers directly and not simply
6349            the registers name strings.
6350         4. Fixed "signed / unsigned compare" compiler warnings.
6351         5. The PIC port manages its own allocation of the general purpose
6352            registers, but makes no attempt to reuse them. As a result when
6353            compiling it soon runs out of general purpose registers. Some
6354            additional code was added to the files pcode.c and device.c to walk
6355            through the function call tree and rename the registers so that they
6356            get reused.
6357
6358         * src/pic/device.c
6359         * src/pic/gen.c
6360         * src/pic/glue.c
6361         * src/pic/pcode.c
6362         * src/pic/pcode.h
6363         * src/pic/ralloc.c
6364         * src/pic/ralloc.h
6365         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
6366         genPlus() & genMinus() when the result is the same as left or right
6367
6368 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6369
6370         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
6371
6372 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6373
6374         Made bitfield a distinct type from bit so that bitfields
6375         convert as per ANSI C and bits retain their traditional
6376         boolean style behaviour. Implemented bitfield support in
6377         the z80 port.
6378
6379         * src/SDCCsymt.h,
6380         * src/SDCCsymt.c,
6381         * src/SDCCast.c,
6382         * src/cdbFile.c,
6383         * src/mcs51/gen.c,
6384         * src/ds390/gen.c: bit v bitfield split
6385         * src/z80/gen.c: New support for bitfields
6386         * support/regression/tests/bitfields.c: reenabled z80,
6387         added more tests
6388
6389 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6390
6391         Rules 246.x, 247.x relate to bitfields, the others speed up
6392         access to xdata mapped I/O devices.
6393
6394         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
6395
6396 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6397
6398         Cleaned up genPackBits and genUnpackBits and added two helper
6399         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
6400         for literal assignments in genPackBits (thanks to Frieder for
6401         reminding me).
6402
6403         * src/mcs51/gen.c
6404         * src/ds390/gen.c
6405
6406 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6407
6408         Fixed bug #748310 (pointer to function type mishandled when the
6409         function name is omitted). Also fixed a SIGSEGV when a function
6410         attribute (reentrant, etc) is used on a non-function or on a
6411         function but misplaced before the parameter list.
6412
6413         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
6414         bug #748310
6415         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
6416         * support/Util/SDCCerr.h,
6417         * support/Util/SDCCerr.c: Added func attr misuse error msg
6418
6419 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
6420
6421         Fixed bug #787649 by anonymous
6422         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
6423         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
6424
6425 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6426
6427         Fixed numerous bitfield problems.
6428
6429         * src/SDCC.y: More bitfield related error checking
6430         * src/SDCCsymt.h,
6431         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
6432         * support/Util/SDCCerr.h,
6433         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
6434         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
6435         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
6436         * support/regression/tests/bitfields.c: tests added
6437
6438 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6439
6440         Made the constant following the "interrupt" keyword optional. If
6441         omitted, the function will not automatically be given an entry
6442         in the interrupt vector table (similar to #pragma NOIV, but
6443         less syntacticly kludgy). The interrupt number is also now
6444         range checked. Also fixed a bug in the high order bit example
6445         in the manual.
6446
6447         * src/SDCC.y
6448         * src/SDCCmem.c
6449         * src/SDCCglue.c
6450         * src/SDCCsymt.h
6451         * support/Util/SDCCerr.c
6452         * support/Util/SDCCerr.h
6453         * doc/sdccman.lyx
6454
6455 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
6456
6457         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
6458         * src/SDCCicode.c (operandOperation): rewritten some ops
6459         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
6460         * src/SDCCsymt.c (computeType): literals are handled the same way as any
6461         other type
6462         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
6463         be re-activated by defining REDUCE_LITERALS)
6464         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
6465         unsigned, but are signed by default
6466         * src/SDCCval.c (constVal): rearranged
6467         * src/SDCCval.c (valMod): preliminary fix
6468         * src/SDCCval.c (valCastLiteral): use TYPE_* types
6469         * support/regression/literalop.c: added, work in progress
6470
6471 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6472
6473         Generate warnings for useless declarations like "char data;"
6474         that don't do what new users expect.
6475
6476         * src/SDCC.y
6477         * support/Util/SDCCerr.h
6478         * support/Util/SDCCerr.c
6479
6480 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
6481
6482         * src/SDCCval.c (valMult): fix overflow detection of negative int
6483
6484 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6485
6486         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
6487
6488         Changes to support big endian targets:
6489
6490         * src/ports.h
6491         * src/SDCCglue.c
6492         * src/avr/main.c
6493         * src/ds390/main.c
6494         * src/izt/i186.c
6495         * src/mcs51/main.c
6496         * src/pic/main.c
6497         * src/pic16/main.c
6498         * src/xa51/main.c
6499         * src/z80/main.c
6500
6501 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
6502
6503         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
6504         * device/lib/time.c: fixed warning "integer overflow in expression"
6505
6506 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
6507
6508         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
6509         * src/SDCCval.c (constVal): changed default to signed; hex and octal
6510         constants are unsigned; added recognition of "u" flag for unsigned
6511         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
6512         * src/SDCCval.c (valDiv, valMod): fixed signdness
6513         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
6514         signedness of modulo, left and right shift
6515         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
6516         * support/Util/SDCCerr.h: added warning W_INT_OVL
6517         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
6518         * src/SDCCast.c (ast_print): improved output of constants
6519
6520 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6521
6522         Fixed some warnings when building with MSVC:
6523
6524         * as\mcs51\asdata.c
6525         * as\z80\asdata.c
6526         * as\mcs51\asm.h
6527         * as\z80\asm.h
6528         * link\z80\aslink.h
6529         * link\z80\lkdata.c
6530         * link\z80\lkeval.c
6531         * link\z80\lkgb.c
6532         * link\z80\lkihx.c
6533         * link\z80\lks19.c
6534         * link\z80\lksym.c
6535         * support\cpp2\cpplib.c
6536         * src\ds390\gen.c
6537         * src\mcs51\gen.c
6538
6539 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
6540
6541         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
6542
6543 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6544
6545         * support\librarian\clean.mk: Do not remove Makefile.
6546         * support\librarian\Makefile: added.
6547
6548 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6549
6550         Added librarian to MSVC build:
6551         * all.dsp
6552         * sdcc.dsw
6553         * support\librarian\librarian.dsp
6554
6555         'configure' not needed for librarian, removed:
6556         * support\librarian\configure
6557         * support\librarian\configure.in
6558         * support\librarian\config_in.h
6559         * support\librarian\Makefile.in
6560
6561         Hopefully these ones built the librarian and the rest of sdcc properly:
6562         * Makefile
6563         * Makefile.common.in
6564
6565         Messed up 'configure', so revert to previous version:
6566         * configure
6567         * configure.in
6568
6569 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
6570
6571         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
6572         there, while the mantissa of a double is "only" 53 bits wide.
6573
6574 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6575
6576         Adding sdcclib to the build.  MSVC project coming soon.
6577         Files added/changed:
6578
6579         * support\librarian\clean.mk
6580         * support\librarian\configure
6581         * support\librarian\configure.in
6582         * support\librarian\config_in.h
6583         * support\librarian\Makefile.bcc
6584         * support\librarian\Makefile.in
6585         * support\librarian\sdcclib.c
6586         * Makefile.bcc
6587         * Makefile
6588         * Makefile.common.in
6589         * configure
6590         * configure.in
6591
6592 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6593
6594         Linker now complaints if linked modules have conflicting options, for
6595         example, one compiled using --model-large and another one compiled with
6596         --model-small.  The following files were modified:
6597
6598         * as\mcs51\asdata.c
6599         * as\mcs51\aslink.h
6600         * as\mcs51\asm.h
6601         * as\mcs51\asmain.c
6602         * as\mcs51\asout.c
6603         * as\mcs51\i51pst.c
6604         * as\mcs51\lkdata.c
6605         * as\mcs51\lklibr.c
6606         * as\mcs51\lkmain.c
6607         * as\z80\asdata.c
6608         * as\z80\asm.h
6609         * as\z80\asmain.c
6610         * as\z80\asout.c
6611         * as\z80\z80pst.c
6612         * link\z80\aslink.h
6613         * link\z80\lkdata.c
6614         * link\z80\lklibr.c
6615         * link\z80\lkmain.c
6616         * src\SDCCglue.c
6617
6618 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6619
6620         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
6621         as/mcs51/lklibr.c: Generate a warning when a library is not found.
6622
6623 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
6624
6625         * src/z80/mappings.i: fix _mul[us][int,long] entries
6626
6627 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6628
6629         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
6630
6631 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
6632
6633         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
6634         * support/regression/tests/bitopcse.c: added
6635         fixed warning:
6636         * src/avr/gen.c:
6637         * src/pic/gen.c:
6638         * src/pic16/gen.c:
6639         * src/z80/gen.c:
6640         * src/xa51/gen.c:
6641
6642 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6643
6644         added support for new library format to z80, gbz80 linkers:
6645         *link/z80/aslink.h
6646         *link/z80/lklex.c
6647         *link/z80/lklib.c
6648         *link/z80/lklist.c
6649
6650 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
6651
6652         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
6653         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
6654
6655 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
6656
6657         added DUMMY_READ_VOLATILE:
6658         * src/SDCC.y:
6659         * src/avr/gen.c:
6660         * src/xa51/gen.c:
6661         * src/z80/gen.c:
6662         * src/pic/gen.c:
6663         * src/pic16/gen.c:
6664         * src/mcs51/gen.c:
6665         * src/ds390/gen.c:
6666         * src/SDCCcse.c (algebraicOpts): many improvements
6667         * src/SDCCcse.h: removed algebraicOpts()
6668         * src/SDCCicode.c (picDummyRead): added
6669
6670 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6671
6672         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
6673         "Insufficient space in data memory".
6674
6675 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6676
6677         * src/mcs51/gen.c: fixed bug #771358
6678         * src/z80/gen.c: fixed bug #759087
6679
6680 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
6681
6682         * src/pic16/glue.c: minor cleanup by Vangelis
6683
6684 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6685
6686         * device/include/regc515c.h: fixed #758477
6687         * device/lib/_gptrget.c: saving some cycles in generic pointer get
6688         * device/lib/_gptrput.c: saved a few bytes
6689         * my tab spacing is 8, yours too?)
6690         * device/lib/_ser.c: process RX bytes earlier than TX bytes
6691         * device/lib/serial.c: process RX bytes earlier than TX bytes
6692         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
6693
6694 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6695
6696         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
6697
6698 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6699
6700     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
6701
6702 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
6703
6704         * device/lib/Makefile.in: bad fix, reverted to 1.43
6705
6706 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
6707
6708         * device/lib/Makefile.in: added missing z80 object files
6709
6710 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
6711
6712         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
6713         pic16 progress by Vangelis:
6714         * src/SDCCglobl.h:
6715         * src/SDCCmain.c:
6716         * src/pic/Makefile:
6717         * src/pic:
6718         * pic/Makefile:
6719         * pic16/device.c:
6720         * pic16/device.h:
6721         * pic16/gen.c:
6722         * pic16/gen.h:
6723         * pic16/genarith.c:
6724         * pic16/glue.c:
6725         * pic16/main.c:
6726         * pic16/pcode.c:
6727         * pic16/pcode.h:
6728         * pic16/pcodepeep.c:
6729         * pic16/peeph.def:
6730
6731 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6732
6733     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
6734
6735 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6736
6737     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
6738     added gbz80 build to MSVC project.
6739     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
6740     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
6741     from 8051 stuff and setup so it links using a .lnk file.
6742
6743 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6744
6745     * support/librarian/sdcclib.c: sdcc librarian.
6746     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
6747     with sdcclib.
6748
6749 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6750
6751     * as/mcs51/lkmain.c: properly handle extensions in function afile.
6752
6753 2003-07-02  Borut Razem <borut.razem AT siol.net>
6754
6755         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
6756         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
6757         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
6758         src/xa51/main.c, src/z80/main.c:
6759         virtualization of glue() function: each port has it's own glue function,
6760         which is accessed by do_glue function pointer in PORT.general structure
6761
6762 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
6763
6764         * DS800C400 fun, improved ROM interface and tinibios.
6765
6766 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
6767
6768         * More support for DS80C400. Now includes beginning of interface to ROM.
6769
6770 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
6771
6772         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
6773
6774 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6775
6776         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
6777
6778 2003-06-19  Borut Razem <borut.razem AT siol.net>
6779
6780         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
6781
6782 2003-06-19  Borut Razem <borut.razem AT siol.net>
6783
6784         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
6785         fixed Z80 port - crt0.o: cannot open.
6786
6787 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
6788
6789         * support/Util/MySystem.c (merge_command): revert bad fix
6790
6791 2003-06-18  Borut Razem <borut.razem AT siol.net>
6792
6793         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
6794
6795 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6796
6797         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
6798         option --use-stdout sends errors to stdout instead of stderr.
6799
6800 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
6801
6802         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
6803
6804 2003-06-15  Borut Razem <borut.razem AT siol.net>
6805
6806         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
6807         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
6808         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
6809         fixed width array of pointers replaced with sets;
6810         multiple include and lib paths ared transferred to preprocessor and linker
6811         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
6812         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
6813         fixed width array of pointers
6814         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
6815         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
6816         fixupPath(), getPathDifference()
6817         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
6818         fixed width array of pointers
6819
6820 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
6821
6822         * src/pic16/ralloc.c: fix warnings
6823         * src/pic16/pcode.c: fix warning
6824
6825 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
6826
6827          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
6828         know all the details, but essentially this set of changes enable
6829         the pic16 port to generate movff instructions and generate assembler
6830         directives,
6831         * src/SDCCmain.c:
6832         * src/pic16/gen.c:
6833         * src/pic16/glue.c:
6834         * src/pic16/pcode.c:
6835         * src/pic16/device.c:
6836         * src/pic16/main.c:
6837         * src/pic16/pcode.h:
6838         * src/pic16/pcoderegs.c:
6839         * src/pic16/ralloc.c:
6840         * src/pic16/ralloc.h:
6841
6842 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6843
6844         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
6845         added option --vc, so sdcc errors and warnings are compatible with
6846         Microsoft Visual Studio.
6847
6848 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6849
6850         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
6851           device/lib/libfloat.lib: added atof function.
6852
6853 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
6854
6855         * doc/sdccman.lyx: updated to Lyx 1.3
6856         * doc/cdbfileformat.lyx: updated to Lyx 1.3
6857         * doc/test_suite_spec.lyx: updated to Lyx 1.3
6858         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
6859
6860 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
6861
6862         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
6863
6864 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6865
6866         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
6867           additions to the "related tools/documentation" section
6868
6869 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
6870
6871         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
6872
6873 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
6874
6875         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
6876         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
6877
6878 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
6879
6880         * doc/sdccman.lyx: fix double dash and other minor things
6881         * doc/Makefile: fix double dash
6882
6883 2003-05-28  Karl Bongers(patches from Martin Helmling)
6884         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
6885           condition and ignore commands.
6886
6887 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6888
6889         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
6890           is in parts still quite out of date, I did changes as far as I felt makes sense
6891           for a non-native english speaker.
6892           Please feel free to add to the manual or to correct my changes.
6893         * doc/Makefile: undid touching the date of intermediate tex files.
6894
6895 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6896
6897         * doc/sdccman.lyx: Manual has an index now
6898
6899 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
6900
6901         Finalize muluint/mulsint and mululong/mulslong merging:
6902         * device/lib/_mulint.c
6903         * device/lib/_mullong.c
6904         * device/lib/gbz80/mul.s
6905         * device/lib/gbz80/stubs.s
6906         * device/lib/z80/mul.s
6907         * device/lib/z80/stubs.s
6908         * src/SDCCsymt.c (initCSupport)
6909
6910 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6911
6912         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
6913         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
6914           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
6915           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
6916           instead of /Zm500.
6917
6918 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6919
6920         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
6921           the regression tests I'm not brave enough to enable 245.b, 245.c
6922         * doc/sdccman.lyx: added latex preamble for hyperref package.
6923           Using pdflatex this will give you a hyperlinked pdf file with
6924           bookmarks. (prepend '%' before /usepackage if this breaks something)
6925
6926 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6927
6928          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
6929
6930 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
6931
6932         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
6933
6934 2003-05-21    <johan AT balder>
6935
6936         * src/SDCCglue.c (printIval): fixed bug #739934
6937
6938 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
6939
6940         Applied patch from bug 737905 (renamed yylineo to mylineno):
6941         * src/altlex.c
6942         * src/SDCCast.c
6943         * src/SDCglobl.h
6944         * src/SDCC.lex
6945         * src/SDCCsymt.c
6946         * src/SDCCval.c
6947         * src/pic16/pcode.c: Cleaned warnings
6948         * src/pic16/pcodeflow.c: Cleaned warnings
6949         * src/pic16/pcoderegs.c: Cleaned warnings
6950
6951 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
6952
6953         * src/pic16/pcode.c: Cleaned warnings
6954         * src/pic16/pcodepeep.c: Cleaned warnings
6955         * src/pic16/ralloc.c: Cleaned warnings
6956
6957 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
6958
6959         * doc/sdccman.lyx: fixed bug 739745
6960         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
6961
6962 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
6963
6964         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
6965         it can be defined with CFLAGS when running configure
6966         * src/SDCCmain.c: fixed compiling + linking with object files
6967
6968 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
6969
6970         * configure.in: configure for pic16 port,
6971             added --disable-pic16-port
6972         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
6973         * src/SDCCmain.c: linkOptions is changed to set *,
6974             added if/endif conditional macros to remove options help
6975             messages from optionsTable when a port is not configured, added
6976             support for the PIc16 port in the ports table, when executing
6977             the compiler with no port specified on command line, a default
6978             port is selected with the new macro DEFAULT_PORT which is
6979             defined in port.h, in setDefaultOptions() linkOptions is removed
6980             from initialization assignment, since now it is a set,
6981             parseCmdLine uses setParseWithComma for linkOptions, in
6982             linkEdit() linkOptions are accessed with new function indexSet()
6983             which returns the i'th item of a set variable. See SDCCset.c, in
6984             linkEdit() when calling buildCmdLine(), added linkOptions as
6985             last argument. Now users can pass arguments to gplink via the
6986             -Wl option, main() uses pic16glue() to glue up pic16 programs
6987         * src/SDCCpeeph.c: various changes to support pic16
6988         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
6989             return the i'th item of the set
6990         * src/SDCCset.h: added function prototype for indexSet()
6991         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
6992         * src/clean.mk: added pic16 in CLEANALLPORTS variable
6993         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
6994             added macro DEFAULT_PORT
6995         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
6996         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
6997             generated
6998         * src/pic16/glue.c: commented out some error producing lines
6999         * src/pic16/main.c: __config directives are commented out to stop
7000             gpasm complaining and test the linkage with gplink, _linkCmd and
7001             _asmCmd changed to be more gplink and gpasm friendly
7002         * src/pic16/peeph.def: peep rule 3 is commented out, since it
7003             produced an error when parsed, peep rule 12 is added to utilize
7004             movff, but it is commented out since the pCode does not support
7005             yet a command with 2 address arguments
7006
7007 2003-05-18    <johan AT balder>
7008
7009         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7010         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7011 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
7012
7013         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
7014   Added feature to script commands from file.
7015
7016 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
7017
7018         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
7019         * src/SDCCutil.c: include ctype.h for win32
7020
7021 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
7022
7023         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
7024
7025 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
7026
7027         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
7028   Fixed so you can set breakpoints prior to run, run does not stop
7029   on entry now.  Add tbreak.  Other enhancements and fixes for use
7030   with ddd.
7031
7032 2003-05-12  Borut Razem <borut.razem AT siol.net>
7033
7034         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
7035
7036 2003-05-11  Borut Razem <borut.razem AT siol.net>
7037
7038         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
7039         the path of bin directory, so that PATH is the only env. variable, which has to be set
7040         in case of standard installation.
7041         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
7042         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
7043         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
7044
7045 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7046
7047         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
7048         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
7049         temp files are in the port dir; clean the gen/test directory when
7050         generating new test.c
7051         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
7052         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
7053         * support/regression/tests/zeropad.c: added
7054
7055 2003-05-09    <johan AT balder>
7056
7057         * src/SDCCglue.c: fixed bug #597940
7058
7059 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
7060
7061         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7062   cache sfr, optimize next,step, fix off by one sourceline,
7063   support ddd list function.
7064         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
7065
7066 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7067
7068         * support/regression/HTMLgen.py: added compare_s2f()
7069         * support/regression/Makefile: redo 1.27
7070         * support/regression/generate-cases.py: redo 1.5
7071
7072 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
7073
7074         * support/regression/tests/float.c: workaround 33 bit hex constant
7075         * support/regression/tests/simplefloat.c: fix division for host
7076
7077 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
7078
7079         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
7080         that tame's the PIC's over-aggressive optimizer.
7081
7082 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7083
7084          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
7085          support for MSVC.
7086
7087 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
7088
7089         Initial support for DS80C400. "Hello world" runs on TINIm400
7090         (with polled I/O).
7091
7092 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
7093
7094          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7095          * Some notes on ddd usage added in debugger/README
7096          Martin Helmling adding more features and fixes for ddd GUI debugger.
7097          Code added for nexti, stepi, up, down, and other adjustments.
7098
7099 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
7100
7101         * src/pic/pCodepeep.c non-wildcard asmops are now handled
7102         * src/pic/peeph.def Added two rules to optimize carry manipulation
7103         * src/pic/* removed debug printfs
7104
7105 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
7106
7107         * debugger/mcs51/cmd.c: added header newalloc.h
7108
7109 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
7110
7111         * as/Makefile: new EXEEXT
7112         * as/z80/Makefile: remove trailing slash of BUILDIR
7113         * as/z80/clean.mk: new EXEEXT
7114         * Makefile.common.in: add to CFLAGS (and others), don't replace it
7115         * support/cpp2/Makefile.in: new EXEEXT
7116         * src/pic/glue.c (pic14emitRegularMap): fixed warning
7117
7118 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
7119
7120         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
7121         EXEEXT was introduced to fix all related problems with targets
7122         "clean", "install" and "uninstall"; a couple of further flaws
7123         especially with "clean" have been fixed too
7124         * as/mcs51/Makefile.in
7125         * as/mcs51/clean.mk
7126         * as/z80/Makefile
7127         * Makefile
7128         * clean.mk
7129         * debugger/mcs51/Makefile.in
7130         * debugger/mcs51/clean.mk
7131         * link/z80/Makefile
7132         * link/z80/Makefile.in
7133         * link/z80/clean.mk
7134         * link/Makefile
7135         * packihx/Makefile.in
7136         * packihx/clean.mk
7137         * sim/ucsim/Makefile
7138         * sim/ucsim/clean.mk
7139         * sim/ucsim/avr.src/Makefile.in
7140         * sim/ucsim/avr.src/clean.mk
7141         * sim/ucsim/s51.src/Makefile.in
7142         * sim/ucsim/s51.src/clean.mk
7143         * sim/ucsim/xa.src/Makefile.in
7144         * sim/ucsim/xa.src/clean.mk
7145         * sim/ucsim/z80.src/Makefile.in
7146         * sim/ucsim/z80.src/clean.mk
7147         * sim/ucsim/main_in.mk
7148         * sim/ucsim/packages_in.mk
7149         * sim/ucsim/gui.src/Makefile.in
7150         * sim/ucsim/gui.src/serio.src/Makefile.in
7151         * sim/ucsim/gui.src/serio.src/clean.mk
7152         * src/Makefile.in
7153         * src/clean.mk
7154         * support/cpp2/Makefile.in
7155         * support/cpp2/clean.mk
7156         * support/makebin/Makefile
7157         * support/makebin/clean.mk
7158         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
7159         * doc/sdccman.lyx: --program-suffix no longer needed
7160
7161 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
7162
7163          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
7164          Martin Helmling added support for ddd GUI debugger.
7165          Code added to display assembly, set variables, and other commands
7166          to interface to ddd.
7167
7168 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
7169
7170         * as/Makefile: fix target clean
7171         * as/clean.mk: fix target clean
7172         * as/z80/clean.mk: fix target clean
7173
7174 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
7175
7176         * Makefile.common.in: added  AT EXEEXT AT
7177         * configure.in: removed all mingw32 stuff
7178         * configure: rebuilt from configure.in
7179         * doc/sdccman.lyx: updated section "installation"
7180         * support/scripts/sdcc_mingw32: adapted to configure
7181         * support/scripts/sdcc_cygwin_mingw32: added
7182
7183 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
7184
7185         * src/pic Added object file support for the PIC port
7186         * src/pic Applied patch from Craig Franklin (this started the object file support)
7187         * src/regression Updated the PIC regression tests for object files
7188
7189 2003-04-20  Borut Razem <borut.razem AT siol.net>
7190
7191         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
7192           lklex.c: In function `getfid':
7193           lklex.c:203: warning: array subscript has type `char'
7194         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
7195           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
7196         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
7197           stack handling macros
7198
7199 2003-04-19  Borut Razem <borut.razem AT siol.net>
7200
7201         * "handling space characters in file path" task:
7202         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
7203         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
7204         * support/Util/MySystem.h: make it self-sufficient
7205         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
7206           src/z80/main.c, sdcc/as/mcs51/lklex.c:
7207           handling space characters in file path
7208         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
7209           (it will be used by assemblers, which have their own includes, e.g. gpasm)
7210         * support/Util/MySystem.c: handling space characters in executable's path
7211
7212 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
7213
7214         * as/z80/Makefile: fix permanent rebuild of z80
7215         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
7216         * support/regression/tests/bitfields.c: added Johan's bitfields.c
7217
7218 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
7219
7220         * src/SDCCopt.c: add special case optimization to replace modulo by
7221           a power of two with a bitwise AND.
7222
7223 2003-04-18    <johan AT balder>
7224
7225         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
7226
7227 2003-04-17    <johan AT balder>
7228
7229         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
7230         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
7231
7232 2003-04-13  Borut Razem <borut.razem AT siol.net>
7233
7234         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
7235         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
7236           fixed mingw problem in adl_NORMALIZE_PATH
7237
7238 2003-04-12  Borut Razem <borut.razem AT siol.net>
7239
7240         * fixed "#pragma SAVE/RESTORE can not be nested":
7241         * src/SDCC.lex: reworked pragma handling functions
7242         * sdcc/src/SDCCglobl.h: reworked stack handling macros
7243         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
7244
7245 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7246
7247         * src/SDCCutil.c (pathEquivalent): defined but not used
7248         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
7249         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
7250         * configure: rebuilt from configure.in
7251         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7252         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7253         * device/include/Makefile.in: replace sdcc_datadir
7254         * device/lib/Makefile.in: replace sdcc_datadir
7255         * Makefile.common.in: add LDFLAGS from configure
7256         * packihx/Makefile.in: use LDFLAGS
7257         * src/Makefile.in: use LDFLAGS
7258         * support/cpp2/Makefile.in: add LDFLAGS from configure
7259         * support/makebin/Makefile: use LDFLAGS
7260         * .version: bumped version number to 2.3.5
7261
7262 2003-04-12  Borut Razem <borut.razem AT siol.net>
7263
7264         * completed "different paths" task:
7265         * src/SDCCmacro.c: fixed bug in handling quotes
7266         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
7267         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
7268
7269 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7270
7271         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
7272
7273 2003-04-11 kevin Vigor <kevin AT vigor.nu>
7274
7275         * ds390/gen.c ds390/peeph.def: fix bug 706781
7276
7277 2003-04-11  Borut Razem <borut.razem AT siol.net>
7278
7279         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
7280
7281 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
7282
7283         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
7284         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
7285          set - this bit used to not be set...).
7286         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
7287           bad code in PIC Port
7288         * src/regression/and2.c added to test bug 609268
7289         * src/regression/Makefile added and2.c to regression test
7290
7291
7292 2003-04-08    <johan AT CP255758-A>
7293
7294         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
7295         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
7296         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
7297
7298 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
7299
7300         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
7301         fix bug #487815
7302         * support/cpp2/Makefile.in: fix bug #487815
7303         * configure: rebuilt from configure.in
7304         * Makefile.common.in: docdir changed, new path suffixes
7305         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7306         * sdcc_vc_in.h: reflect changes from sdccconf.h
7307         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
7308         * src/SDCCutil.h: remove BINDIR hack
7309         * doc/sdccman.lyx: update new path hierarchy
7310
7311 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7312
7313         * src/SDCCpeeph.c: added okToRemoveSLOC test
7314
7315 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7316
7317         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
7318
7319 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7320
7321         * src/SDCCpeeph.c: added labelIsReturnOnly test
7322         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
7323
7324 2003-04-05    <johan AT balder>
7325
7326         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
7327         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
7328         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
7329         * src/SDCCast.c: fixed a warning
7330         * src/SDCCast.h: fixed a warning
7331         * src/SDCCicode.c (operandFromAst): fixed a warning
7332
7333 2003-04-04    <johan AT balder>
7334
7335         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
7336         * src/SDCCast.c (decorateType): fixed bug #715076
7337         * src/SDCC.y: fixed bug #702907
7338
7339 2003-04-03    <johan AT balder>
7340
7341         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
7342         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
7343         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
7344         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
7345         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
7346
7347 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
7348
7349         * _decdptr.c: fix return values
7350         * _gptrget.c: fix return values
7351         * _gptrgetc.c: fix return values
7352         * _gptrput.c: fix return values
7353         * _mulint.c: fix return values
7354         * as/z80/Makefile: fix 'make -j' problem
7355
7356 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
7357
7358         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
7359         * configure.in: big cleanup, updated to autoconf 2.5x
7360         * configure: rebuilt from configure.in
7361         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7362         * sdcc_vc_in.h: reflect changes from sdccconf.h
7363         * doc/Makefile: fixed a flaw in "make install"
7364
7365 2003-04-02    <johan AT balder>
7366
7367         * src/ds390/gen.c (genCmp): no comments
7368         * src/mcs51/gen.c (genCmp): no comments
7369         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
7370         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
7371
7372 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
7373
7374         * support/regression/generate-cases.py: place generated file in given sub directory
7375         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
7376         * support/regression/Makefile: improvements for 'make -j';
7377         side effect: it's simpler and faster now
7378
7379 2003-03-31  Borut Razem <borut.razem AT siol.net>
7380
7381         * src/z80/main.c: link-{port} and as-{port} defined without path
7382         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
7383
7384 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
7385
7386         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
7387
7388 2003-03-30  Borut Razem <borut.razem AT siol.net>
7389
7390         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
7391           changed type of list parameter to set
7392         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
7393         * src/port.h: changed type of do_assemble() parameter to set
7394         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
7395           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
7396           definition of "cppoutfilename" macro with NULL value in preProcess()
7397         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
7398         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
7399         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
7400           replaced with set *binPathSet
7401         * shash_add() deallocates the item, if allready exsists, before adding the new one
7402         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
7403
7404 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
7405
7406         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
7407           a nested for loop bug in the PIC port
7408         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
7409           for loops
7410
7411 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
7412
7413         * support/Util/dbuf.h: remove C++ stuff to make it portable
7414
7415 2003-03-28  Borut Razem <borut.razem AT siol.net>
7416
7417         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
7418           literal strings in stringLiteral()
7419         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
7420         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
7421           to the project
7422
7423 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
7424
7425         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
7426
7427 2003-03-26    <johan AT balder>
7428
7429         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
7430         * src/ds390/gen.c (saveRegisters): catched symbol abuse
7431         * src/SDCCast.c (decorateType): fixed " -v < 3"
7432
7433 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
7434
7435         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
7436         Added Lenny Story's debug infrastructure changes:
7437         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
7438         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
7439         * src/cdbFile.c: added
7440         * src/SDCCdebug.c: added
7441         * src/SDCCdebug.h: added
7442         * src/SDCCast.c (createFunction)
7443         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
7444         * src/SDCCmain.c (parseCmdLine, main)
7445         * src/SDCCmem.c (redoStackOffsets)
7446         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
7447         * src/SDCCsymt.h
7448         * src/common.h
7449         * src/avr/gen.c (genAVRCode)
7450         * src/ds390/gen.c (gen390Code)
7451         * src/mcs51/gen.c (gen51Code)
7452         * src/pic/gen.c (genpic14Code)
7453         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
7454         * src/xa51/gen.c (genXA51Code)
7455         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
7456
7457 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7458
7459         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
7460         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
7461
7462 2003-03-22    <johan AT balder>
7463
7464         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
7465
7466 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
7467
7468         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
7469         * doc/cdbfileformat.lyx: added, written by Lenny Story
7470         * doc/Makefile: added cdbfileformat.lyx
7471         * doc/clean.mk: added cdbfileformat.lyx
7472
7473 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
7474
7475         * src/mcs51/peeph.def: fix bug #705773
7476
7477 2003-03-20    <johan AT balder>
7478
7479         An sfr/sbit can have an "at #" AND an initializer
7480         * src/SDCCsymt.c (checkSClass):
7481         * src/SDCCmem.c (allocGlobal):
7482         * src/SDCCmem.c (allocLocal):
7483         * src/SDCCast.c (createBlock):
7484
7485 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
7486
7487         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
7488
7489 2003-03-16    <johan AT balder>
7490
7491         Undid the hackup of const and volatile, the problem is much bigger
7492         * src/SDCC.y:1.65
7493         * src/SDCCast.c:1.171
7494         * src/SDCCglue.c:1.138
7495         * src/SDCCicode.c:1.146
7496         * src/SDCCsymt.c:1.150
7497         * src/SDCCval.c:1.65
7498
7499 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
7500
7501         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
7502         * src/ds390/gen.c (genAddrOf): fixed bug #704087
7503
7504 2003-03-13    <johan AT balder>
7505
7506         Hackup const and volatile modifiers in type chains a bit:
7507         * src/SDCC.y:1.63
7508         * src/SDCCast.c:1.169
7509         * src/SDCCglue.c:1.136
7510         * src/SDCCicode.c:1.143
7511         * src/SDCCsymt.c1.146
7512         * src/SDCCsymt.h1.59
7513         * src/SDCCval.c:1.63
7514
7515 2003-03-12    <johan AT balder>
7516
7517         * src/SDCCBBlock.h: more LRH debugging junk
7518         * src/SDCCcflow.h: more LRH debugging junk
7519         * src/SDCCloop.c: more LRH debugging junk
7520         * src/SDCC.y (struct_declaration): fixed bug #697590
7521         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
7522         * src/ds390/gen.c (aopForRemat): fixed bug #700031
7523         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
7524
7525 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7526         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
7527         test function names must now match exactly).
7528         * src/SDCCcse.c: added special case in findCheaperOp to allow
7529         extending a short integer. Makes less awful code for bug 700121 test case.
7530
7531 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7532
7533         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
7534         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
7535
7536 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7537
7538         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
7539         actually called (operandsNotEqual() was called for all
7540         operandsNotEqualX tests).
7541
7542 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7543
7544         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
7545         with shorter literals. Fixes bug 700121.
7546
7547 2003-03-11    <johan AT balder>
7548
7549         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
7550
7551 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
7552
7553         * src/SDCCloop.c (mergeRegions): an evil beast is dead
7554         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
7555
7556 2003-03-10  Borut Razem <borut.razem AT siol.net>
7557
7558         * src/SDCCmain.c: pipe preprocessor's output
7559         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
7560         * sdcc_vc_in.h: define pclose as _pclose for WIN32
7561         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
7562         which closes all pipes in pipeSet set
7563         * src/SDCCset.c: free deleted item in function deleteSetItem()
7564         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
7565         moved from z80 to src subproject
7566         * .version: increased version number to 2.3.4
7567
7568 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
7569
7570         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
7571         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
7572         * support/regression/ports/xa51/spec.mk: fix typo
7573
7574 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
7575
7576         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
7577
7578 2003-03-09  Borut Razem <borut.razem AT siol.net>
7579
7580         * src/SDCCmain.c: pipe preprocessor's output
7581         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
7582         * sdcc_vc_in.h: define pclose as _pclose for WIN32
7583         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
7584         which closes all pipes in pipeSet set
7585         * src/SDCCset.c: free deleted item in function deleteSetItem()
7586         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
7587         moved from z80 to src subproject
7588
7589 2003-03-09  Borut Razem <borut.razem AT siol.net>
7590
7591         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
7592         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
7593         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
7594         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
7595         * src/SDCCglobl.h: unification of WIN32 native definitions
7596
7597 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7598
7599         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
7600
7601 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
7602
7603         * src/configure.in:   check for endianess (even while cross-compiling)
7604         * src/configure:      check for endianess (even while cross-compiling)
7605         * src/configure_in.h: check for endianess (even while cross-compiling)
7606         * src/avr/gen.c:        remove old endianess stuff
7607         * src/mcs51/gen.c:      remove old endianess stuff
7608         * src/ds390/gen.c:      remove old endianess stuff
7609         * src/pic/gen.c:        remove old endianess stuff
7610         * src/pic/genarith.c:   remove old endianess stuff
7611         * src/pic/glue.c:       fix endianess check
7612         * src/pic16/gen.c:      remove old endianess stuff
7613         * src/pic16/genarith.c: remove old endianess stuff
7614         * src/pic16/glue.c:     fix endianess check
7615         * src/xa51/gen.c:       remove old endianess stuff
7616         * src/z80/gen.c:        fix endianess check
7617         * src/SDCCglue.c:       fix endianess check
7618         * src/ds390/peeph.def: fix bug 700036
7619
7620 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
7621
7622         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
7623         * src/configure: find appropriate data-types on host for SDCC's int and long
7624         * src/configure.in: find appropriate data-types on host for SDCC's int and long
7625         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
7626         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
7627
7628 2003-03-07    <johan AT balder>
7629
7630         Just a big NOOP:
7631                 some minor cleanups before the big shot
7632                 OP_DEFS and OP_USES now use Kevin's protection
7633                 new option --nolabelopt
7634
7635         * src/SDCCBBlock.c:
7636         * src/SDCCast.c,:
7637         * src/SDCCcflow.c:
7638         * src/SDCCcse.c:
7639         * src/SDCCicode.c:
7640         * src/SDCCicode.h:
7641         * src/SDCClabel.c:
7642         * src/SDCCloop.c:
7643         * src/SDCCmain.c:
7644         * src/ds390/ralloc.c:
7645         * src/mcs51/ralloc.c:
7646         * src/pic/ralloc.c:
7647         * src/xa51/ralloc.c:
7648         * src/z80/ralloc.c:
7649
7650 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
7651
7652         * src/pic/pcode.c (get_op): fix 64 bit warnings
7653         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
7654         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
7655         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
7656         * support/regression/tests/malloc.c: fix 64 bit warnings
7657
7658 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
7659
7660         * src/mcs51/gen.c (genMinus): fixed bug 696436
7661
7662 2003-03-02  Borut Razem <borut.razem AT siol.net>
7663
7664         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
7665
7666 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
7667
7668         * configure.in: test for mkstemp
7669         * sdccconf_in.h: add HAVE_MKSTEMP
7670
7671 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
7672
7673         * device/include/ctype.h: removed warning while using --stack-auto
7674         * device/include/malloc.h: removed warning while using --stack-auto
7675         * device/include/string.h: removed warning while using --stack-auto
7676
7677 2003-02-23  Borut Razem <borut.razem AT siol.net>
7678
7679         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
7680         because NDEBUG is defined (see man assert)
7681         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
7682
7683 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7684
7685         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
7686         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
7687
7688 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7689
7690         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
7691         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
7692
7693 2003-02-18    <johan AT balder>
7694
7695         * as/mcs51/asmain.c (asmbl): module can start with a digit
7696         * as/z80/asmain.c (asmbl): module can start with a digit
7697
7698 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
7699
7700         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
7701         * src/asm.c: fix pipe() for Mingw32
7702
7703 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
7704
7705         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
7706         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
7707         make -V work again; --c1mode reads now from stdin
7708         * doc/sdccman.lyx: added --c1mode
7709         * support/Util/SDCCerr.c: new messages for c1 mode
7710         * support/Util/SDCCerr.h: new messages for c1 mode
7711         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
7712
7713 2003-02-15    <johan AT balder>
7714
7715         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
7716
7717 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
7718
7719         * doc/sdccman.lyx: Environment variables, -o and other minor things
7720
7721 2003-02-14    <johan AT balder>
7722
7723         * src/xa51/main.c: before anyone really tries to use it :)
7724
7725         * Install doc's in share/sdcc/doc
7726         * removed some obsolete files
7727         * Do a proper make distclean and uninstall
7728         M Makefile.common.in
7729         R sdccbuild.sh
7730         M as/Makefile
7731         M device/include/Makefile.in
7732         M device/lib/Makefile.in
7733         M doc/sdccman.lyx
7734         M link/Makefile
7735         M sim/ucsim/doc/Makefile.in
7736         M src/clean.mk
7737         R src/avr/peeph.rul
7738         R src/xa51/peeph.rul
7739         M support/cpp2/Makefile.in
7740         M support/makebin/Makefile
7741
7742
7743 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
7744
7745         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
7746
7747 2003-02-10  Borut Razem <borut.razem AT siol.net>
7748
7749         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
7750         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
7751         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
7752         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
7753         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
7754         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
7755         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
7756         src/z80/Makefile.bcc: Borland Makefile cleanup
7757         * as/z80/Makefile.bcc: Added Borland Makefile
7758         * support/cpp2/borland.h: Removed
7759
7760 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
7761
7762         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
7763         * src/SDCC.lex: new pragma NOIV
7764         * src/SDCCglobl.h: new pragma NOIV
7765         * src/SDCCmem.c: new pragma NOIV
7766
7767 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
7768
7769         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
7770
7771 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
7772
7773         * src/SDCCmain.c: signal handling is switched off by --debug
7774         * doc/Makefile: small fix for install; use clean.mk again
7775         * doc/clean.mk: clean *.pdf and *.html too
7776
7777 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
7778
7779         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
7780         * device/lib/printfl.c: fix a ds390 bug by making it portable
7781         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
7782         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
7783         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
7784         * debugger/mcs51/cmd.c: converted multi-line string literals
7785         * sim/ucsim/globals.cc: converted multi-line string literals
7786         * src/SDCCmain.c: introduced signal handler to remove temp files
7787         * doc/Makefile: small tweaks, implement clean
7788         * doc: removed generated files
7789
7790 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7791
7792         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
7793         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
7794         Address Record is not correctly generated for DS390."
7795
7796 2003-02-02  Borut Razem <borut.razem AT siol.net>
7797
7798         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
7799         * as/mcs51/asm.h: fixed compilation with Borland C
7800         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
7801         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
7802         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
7803         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
7804         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
7805         src/z80/Makefile.bcc: delete $(LIB) only if exist
7806         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
7807
7808 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
7809
7810         * device/include/malloc.h: introduced NULL
7811         * device/include/string.h: introduced NULL
7812         * device/include/stdlib.h: introduced NULL
7813         * device/lib/_memcpy.c: removed NULL
7814         * device/lib/_strcat.c: removed NULL
7815         * device/lib/_strchr.c: removed NULL
7816         * device/lib/_strcmp.c: removed NULL
7817         * device/lib/_strcpy.c: removed NULL
7818         * device/lib/_strcspn.c: removed NULL
7819         * device/lib/_strlen.c: removed NULL
7820         * device/lib/_strncat.c: removed NULL
7821         * device/lib/_strncmp.c: removed NULL
7822         * device/lib/_strncpy.c: removed NULL
7823         * device/lib/_strpbrk.c: removed NULL
7824         * device/lib/_strrchr.c: removed NULL
7825         * device/lib/_strspn.c: removed NULL
7826         * device/lib/_strstr.c: removed NULL
7827         * device/lib/_strtok.c: removed NULL
7828         * device/lib/malloc.c: removed NULL, include own header
7829
7830 2003-02-02    <johan AT balder>
7831
7832         * 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
7833         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
7834         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
7835         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
7836         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
7837         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
7838
7839 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7840
7841         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
7842         area 'DATA'"
7843
7844 2003-02-01    <johan AT balder>
7845
7846         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
7847
7848 2003-01-31    <johan AT CP255758-A>
7849
7850         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
7851
7852 2003-01-30    <johan AT balder>
7853
7854         * src/SDCCBBlock.c: automatic bug detection
7855         * src/SDCCicode.c: automatic bug detection
7856
7857 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7858
7859         * src/SDCCglobl.h:   now --xram-size 0 works
7860         * src/SDCCmain.c:    now --xram-size 0 works
7861
7862 2003-01-29    <johan AT balder>
7863
7864         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
7865
7866 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7867
7868         * as/mcs51/aslink.h: Added options --xram-size and --code-size
7869         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
7870         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
7871         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
7872         * src/SDCCglobl.h:   Added options --xram-size and --code-size
7873         * src/SDCCmain.c:    Added options --xram-size and --code-size
7874
7875 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
7876
7877         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
7878         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
7879
7880 2003-01-27    <johan AT balder>
7881
7882         * src/SDCC.y: fixed bug #613764
7883
7884 2003-01-26    <johan AT balder>
7885
7886         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
7887         * src/SDCCsymt.h: fixed bug #673374
7888         * src/SDCCglue.c: fixed bug #661910
7889         * src/SDCCast.c: fixed bug #458099 and 673374
7890
7891 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
7892
7893         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
7894         * as/mcs51/strcmpi.h: added
7895         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
7896         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
7897         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
7898         * as/mcs51/assym.c: strcmpi -> as_strcmpi
7899         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
7900         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
7901         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
7902         * as/mcs51/Makefile.aslink: new module strcmpi
7903         * as/mcs51/Makefile.asx8051: new module strcmpi
7904         * as/mcs51/Makefil.bcc: new module strcmpi
7905         * as/mcs51/Makefile.in: new module strcmpi
7906         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
7907
7908 2003-01-26    <johan AT balder>
7909
7910         * src/SDCCglue.c: reverted back to 1.124
7911         * src/SDCCast.c: reverted back to 1.156
7912         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
7913
7914 2003-01-25    <johan AT balder>
7915
7916         * src/SDCCglue.c: A better fix for bug #661910
7917         * src/SDCCast.c: A better fix for bug #661910
7918         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
7919
7920 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
7921
7922         * src/Makefile.in: remove spawn.o
7923         * src/SDCCmain.c: remove spawn.h
7924         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
7925         * src/spawn.c: removed
7926         * src/spawn.h: removed
7927         * support/regression/ports/ds390/spec.mk: link with -r
7928
7929 2003-01-24    <johan AT CP255758-A>
7930
7931         * src/ds390/gen.c (aopOp): fixed bug #667458
7932         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
7933         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
7934         (createIvalCharPtr): an ival doesn't always have a storage class anymore
7935
7936 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
7937
7938         * src/mcs51/peeph.def: better assembler identation by Frieder
7939         * src/mcs51/gen.c: better assembler identation by Frieder
7940
7941 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
7942
7943         * as/z80/string.h: removed for gcc 3.2
7944         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
7945         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
7946
7947 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
7948
7949         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
7950         * src/SDCCpeeph.c (replaceRule): fix bug #663503
7951         * support/regression/Makefile: separate temp files for ports
7952         * support/regression/generate-cases.py: separate temp files for ports
7953         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
7954         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
7955
7956 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
7957
7958         * moved tinitalk to device/examples/ds390
7959
7960 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
7961
7962         * as/mcs51/lkmem.c: rflag is for DS390
7963         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
7964         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
7965                          (linkEdit): move mem- and map-files the same way as ihx-files
7966         * src/z80/main.c (_setDefaultOptions): removed --generic
7967         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
7968         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
7969         * src/pic/glue.c (picglue): --c1mode works again
7970         * src/pic16/glue.c (pic16glue): --c1mode works again
7971         * src/asm.c (printCLine): fix #660034
7972
7973 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
7974
7975         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
7976         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
7977         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
7978         * as/mcs51/lkmem (summary): better fix for sp problem
7979         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
7980         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
7981         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
7982                                               remove --stack-after-data
7983
7984 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
7985
7986         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
7987         * src/SDCCutil.c (join): ugly bug: missing '\0'
7988         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
7989
7990 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
7991
7992         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
7993         * src/port.h: typo
7994         * src/pic/main.c (_asmCmd): gpasm supports -o
7995         * src/z80/main.c: more general macros
7996         * device/lib/Makefile.in: remove intermediate files
7997
7998 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
7999
8000         * .version: Bumped version number to 2.3.3
8001         * src/SDCCBBlock.c: new option -o
8002         * src/SDCCglobl.h: new option -o
8003         * src/SDCCglue.c: new option -o
8004         * src/SDCCmain.c: new option -o
8005         * src/asm.c: new option -o
8006         * src/ds390/main.c: new option -o
8007         * src/pic/glue.c: new option -o
8008         * src/pic/pcode.c: new option -o
8009         * src/pic/ralloc.c: new option -o
8010         * src/pic16/glue.c: new option -o
8011         * src/pic16/pcode.c: new option -o
8012         * src/pic16/ralloc.c: new option -o
8013         * src/z80/main.c: new option -o
8014         * device/lib/Makefile.in: use -o
8015         * support/regression/ports/ds390/spec.mk: use -o
8016         * support/regression/ports/gbz80/spec.mk: use -o
8017         * support/regression/ports/mcs51/spec.mk: use -o
8018         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
8019         * support/regression/ports/z80/spec.mk: use -o
8020         * support/regression/ports/ucz80/spec.mk: use -o
8021         * support/regression/ports/xa51/spec.mk: use -o
8022         * support/regression/fwk/lib/timeout.c: fix usage string
8023
8024 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
8025         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
8026
8027 2003-01-07    <johan AT balder>
8028
8029         * src/SDCCast.c (decorateType): fixed bug #600035
8030
8031 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
8032         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
8033         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
8034         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
8035         * src/pic/pcode.c: outcommented unused variable to remove warnings
8036         * src/pic/ralloc.c: outcommented unused variable to remove warnings
8037
8038 2003-01-06    <karl AT turbobit.com>
8039         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
8040    regression tests.
8041
8042 2003-01-06    <johan AT balder>
8043
8044         * src/SDCCicode.c: fixed array add
8045
8046 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
8047         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
8048         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
8049
8050 2003-01-04    <johan AT balder>
8051
8052         * src/SDCCval.c (getNelements): fixed the initialized array of structures
8053
8054 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8055         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
8056
8057 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8058         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
8059         * support/regression/tests/bug-524697.c: fit mem usage into 8032
8060
8061 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8062         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
8063
8064 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
8065         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
8066
8067 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
8068         * src/mcs51/main.c: removed {bindir}{sep} from aslink
8069
8070 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8071
8072     * in \sdcc\as\mcs51\ changed these files in order to create an
8073     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
8074     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
8075     following files to include the previous two files: aslink.dsp,
8076     Makefile.aslink, Makefile.bcc, and Makefile.in.
8077
8078     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
8079     .adb instead of .cdb
8080
8081 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8082
8083         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
8084         value from option --iram-size.
8085
8086 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8087
8088         * \sdcc\as\mcs51\lklist.c: added boundary check before using
8089         dram[] array.
8090
8091 2002-09-18    <wiml AT hhhh.org>
8092
8093         * SDCClrange.h: exposed setFromRange() and setToRange()
8094         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
8095           packRegsForAccUse() (bug 542397)
8096         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
8097           multiple times and emitting the fetch operations more than once
8098           added aopGetUsesAcc() function to allow binary operators to
8099           fetch their operands in the correct order; made genMinus() emit
8100           compact code for X = LITERAL - Y
8101
8102 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8103         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
8104         sprintf() in line 1267.
8105
8106 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8107         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
8108         like ports.
8109
8110 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8111         Changes to aslink (All the changes are marked with 'JCF'):
8112
8113         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
8114         summary().
8115
8116         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
8117         area BSEG.  Also moves, if possible, the DATA area down into the internal
8118         ram so more space is available.
8119
8120         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
8121         sflag.
8122
8123         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
8124         not bytes.  Function summary() which creates a memory usage summary
8125         file with extension .mem.  Reports of overlaping stack and small stack
8126         size.  If the space for the stack is less than 16 bytes aslink trows a
8127         warning.
8128
8129         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
8130         the 8051.  Option 'y' for memory summary output file.
8131
8132         Changes to sdcc (All the changes are marked with 'JCF'):
8133
8134         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
8135
8136         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
8137         overlaying area for it (uses RegBankUsed[4]).
8138
8139         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
8140         bank zero as used by default.  By default aslink locates the stack
8141         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
8142         the creation of the .mem file.  Delegates the allocation of data area
8143         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
8144         the begining of the stack area to aslink.
8145
8146         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
8147         glue() in SDCCglue.c creates an area for it.
8148
8149 2002-09-03  Borut Razem <borut.razem AT siol.net>
8150         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
8151         sdcc/src/pic/glue.c:
8152         introduced atexit() handler for teporay files removal in case of
8153         errors, assertions, ...
8154
8155 2002-08-29  Borut Razem <borut.razem AT siol.net>
8156         * sdcc/support/cpp2/auto-host_vc_in.h:
8157         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
8158         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
8159         Maybe there is a similar problem with BORLANDC? It should be checked!
8160
8161         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
8162         corrected improper use of assert: the assignment to clr variable was done inside the assert.
8163         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
8164         was not executed, and the compiler (cl) launched a warning:
8165         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
8166
8167 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8168         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
8169
8170 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
8171         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
8172
8173         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8174           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
8175           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
8176           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8177           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
8178           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
8179           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
8180         - added Release configuration in VS projects
8181         - review of compiler an linker options
8182         - VC .exe files are generated in bin_vc directory, not to interfere
8183           with binaries generated from other projects (cygwin, mingw, bcc ...)
8184
8185         * sdcc/src/yacc.dsp: added
8186
8187         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
8188         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
8189         and insert the version number definitions from .version
8190
8191         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
8192
8193         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
8194         added - genarate auto-host.h using auto-host_vc_in.h as template
8195
8196         * sdcc/sdcc_vc.h,
8197         removed from CVS, generated automatically
8198
8199 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
8200         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
8201
8202 2002-08-11  Borut Razem <borut.razem AT siol.net>
8203         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
8204
8205 2002-08-10  Borut Razem <borut.razem AT siol.net>
8206         * src/SDCCmain.c (main):
8207         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
8208         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
8209         The consequence was that some temporary files were not removed.
8210
8211         * src/SDCCglue.c:
8212         unification of code in functions tempfilename() and tempfile():
8213         function tempnam() is defined in Visual Studio 6.0 and .NET
8214
8215         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
8216
8217         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8218           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
8219         - removed compiler command line option /WX: Treats all warnings as errors
8220         - update a list of source files, included into the project
8221
8222         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8223           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
8224         changed project type to Generic Project so that can be correcly converted to VS.NET project
8225
8226         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
8227
8228         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
8229
8230         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
8231
8232         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
8233         added return 0 statements after assert() to make compiler happy
8234
8235         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
8236         added newline in the def file to keep MSC compiler satisfied
8237
8238         * sdcc/src/z80/gen.c:
8239         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
8240           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
8241         - solved MSC error in function aopDump()
8242
8243         * sdcc_vc.h: define PREFIX as "\\sdcc"
8244
8245 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
8246         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
8247
8248 2002-06-22  Scott Dattalo <scott AT dattalo.com>
8249         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
8250         - Rewrote the register banking algorithm.
8251         - Added pCode live-range analysis to registers (for now, only non-used and
8252         singly-used registers optimized away)
8253
8254         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
8255
8256         * 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.
8257
8258 2002-05-10  Scott Dattalo <scott AT dattalo.com>
8259         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
8260
8261 2002-04-22  Michael Hope  <michaelh AT vroom>
8262
8263         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
8264
8265         * configure.in (DD_COPT): Added include support required for gbdk.
8266
8267         * .version: Bumped version number just to increase it.
8268
8269         * src/SDCCmain.c: Added -nostdinc to the default options.
8270
8271 2002-04-15  Michael Hope  <michaelh AT vroom>
8272
8273         * device/lib/z80/printf.c (sprintf): Added.
8274
8275         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
8276
8277         * src/z80/peeph.def: Added transpose redundent load rule.
8278
8279         * src/z80/main.c: Added force callee saves for jaune.
8280
8281         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
8282
8283         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
8284
8285 2002-03-28  Johan Knol  <johan AT balder>
8286
8287         * src/SDCCval.c: fixed bug #532436
8288
8289 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8290         * /src/port.h:
8291         Added "char *Processor" field to the port structure.
8292
8293         * /src/SDCCmain.c:
8294         Added -p option. Allows port dependent processor to be specified.
8295
8296         * all ports:
8297         Initialized the new field char *Processor field to NULL in all ports
8298
8299         * /src/pic/*:
8300         Compiler generated registers for interrupt context saving
8301         were not getting allocated.
8302
8303 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
8304
8305         * /src/SDCCast.c:
8306         Fixed left shift. Will promote the left side of a left shift
8307         if a) left shifting more than size of operand or b) when assigned
8308         to something size > size of left side
8309
8310 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8311         * src/pic/*
8312         tons of changes. Register allocation has been
8313         rewritten. Added customization for the various PICs. Flow
8314         analysis is restructured. ...
8315
8316         * src/pic/device.h:
8317         Added
8318
8319         * src/pic/device.c:
8320         Added. device.c is a PIC port hack to accomodate variations
8321         in PIC devices.
8322
8323 2002-03-13  Michael Hope  <michaelh AT vroom>
8324
8325         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
8326
8327 2002-03-04  johanknol  <johanknol AT manik>
8328
8329         * /src/SDCCval.c: fixed
8330
8331         const unsigned char arr[][2] = { { 0, 1 } };
8332         t18.c:1: error: Initializer element is not constant
8333
8334 2002-03-04  bela  <bela AT manik>
8335
8336         * /device/include/mcs51reg.h:
8337         ds89c420 register definition update
8338
8339 2002-03-03    <johan AT FRIJA>
8340
8341         * support/Util/SDCCerr.c: did something, but don't no why anymore
8342
8343         * support/regression/tests/bug-524691.c: made it a little less shy
8344
8345         * src/SDCCast.c (decorateType): fixed bug #524697
8346
8347         * src/SDCCast.c: made some lineno improvements
8348
8349         * src/SDCCval.c (getNelements): changed warning to error
8350
8351         * src/SDCCglue.c (printIvalArray): changed warning to error
8352
8353         * src/SDCCicode.c: fixed a warning for mingw
8354
8355         * src/SDCCast.c (decorateType): fixed the << promotion for ops
8356
8357         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
8358
8359 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
8360
8361         * src/ds390/peeph.def:
8362         Added some more peephole rules
8363
8364         * src/ds390/gen.c: Various fixes & enhancements
8365
8366         * src/SDCClrange.c, src/SDCClrange.h:
8367         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
8368
8369         * src/ds390/ralloc.c:
8370         various fixes & enhancements (ds390) specific
8371
8372         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
8373         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
8374         from rallocs.
8375
8376         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
8377
8378 2002-03-02    <johan AT FRIJA>
8379
8380         * src/SDCCast.c (decorateType): fixed bug #524708
8381
8382         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
8383
8384         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
8385
8386 2002-03-01  Michael Hope  <michaelh AT vroom>
8387
8388         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
8389
8390         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
8391
8392 2002-03-01    <johan AT FRIJA>
8393
8394         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
8395
8396         * src/SDCCast.c (decorateType): fixed bug #524209
8397
8398         * src/SDCCval.c (valNot): fixed bug #524195
8399
8400 2002-02-26    <johan AT balder>
8401
8402         * src/xa51/gen.c: fixed a warning
8403
8404         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
8405
8406         * src/SDCCast.c (decorateType): fixed bug #522534
8407
8408 2002-02-23    <johan AT balder>
8409
8410         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
8411
8412 2002-02-22    <johan AT balder>
8413
8414         * src/SDCCast.c: fixed bug #514865
8415
8416         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
8417
8418 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
8419
8420         * sdcc/src/SDCCloop.c:
8421         Previous fix was not good. basic blocks that have "break" or "return" are
8422         not really partof a loop , but live ranges used in these blocks should
8423         be live thru the entire loop, so set partOfLoop but don't add them to
8424         loop region
8425
8426 2002-02-21    <johan AT FRIJA>
8427
8428         * src/SDCCcse.c: fixed bug #514308
8429
8430 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
8431
8432         * src/SDCCloop.c:
8433         Fixed BUG #519583. If a conditional block ended in a return/break
8434         statement inside a loop, it was not being considered part of the loop.
8435
8436         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
8437
8438 2002-02-10  Karl Bongers <karl AT turbobit.com>
8439
8440         * debugger/*:
8441         Fixed up SDCDB debugger somewhat.  Updated debugger/README
8442         with lots of comments and notes.
8443
8444         * device/examples/test2.c:
8445         Fix bug, "red" variable not being initialized(compiler complained).
8446
8447         * device/examples/Makefile, examples/test3.c:
8448         Add Makefile in device/examples folder, compiles test3.c
8449         for use as a multiple module SDCDB test case.
8450
8451         * sim/ucsim/cmd.src/cmdset.cc:
8452         Took out debug printfs in ucsim "next" command.
8453
8454         * sim/ucsim/xa.src:
8455         Karl and Johan start ucsim XA support.  Most dissassembly working,
8456         about 75% emulation done(plenty of work remaining).
8457
8458         * sim/ucsim/z80.src:
8459         Add Z80 support to ucsim, add test-ucz80 regression test,
8460         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
8461         Notice z80 compiler fails on examples/test3.c/crc code.
8462
8463 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
8464
8465         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
8466         Added support for --parms-in-bank1
8467
8468         * src/ds390/peeph.def:
8469         added a few more peephole optimzations
8470
8471         * src/ds390/main.c:
8472         1) added __builtin_inp & __builtin_outp used to read in data of given length
8473            from a memory mapped port
8474         2) added __builtin_memcmp
8475         3) added __builtin_swapw swap bytes of a short
8476
8477         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
8478         1) handle multiple send & receives from register bank1
8479         2) ralloc can now allocate DPTR1 to some liveRanges
8480
8481         * src/SDCCsymt.c, src/SDCCsymt.h:
8482         changes to handle multiple sends & receives
8483
8484         * src/SDCCptropt.h:
8485         added some pointer arithmetic optimization
8486
8487         * src/SDCCptropt.c:
8488         added some pointer arithmetic optimizations but not stable yet so not
8489         called from anywhere (will get this working shortly)
8490
8491         * src/SDCCopt.c: fixed for multiple sends & receives
8492
8493         * src/SDCCmain.c:
8494         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
8495         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
8496            set preprocessor defines (depending on options)
8497
8498         * src/SDCCicode.c, src/SDCCicode.h:
8499         changes made to handle multiple sends & receives
8500
8501         * src/SDCCglobl.h:
8502         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
8503
8504         * src/SDCCcse.c, src/SDCCcse.h:
8505         added function findbackward def (to be used in upcoming optimization)
8506
8507         * src/SDCCcflow.c, src/SDCCcflow.h:
8508         added function returnAtEnd - to determine if a basic block terminates with
8509         a RETURN iCode
8510
8511         * src/SDCCast.c, src/SDCCast.h:
8512         added option parms-in-bank1
8513
8514         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
8515         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
8516         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
8517         adjusted for --parms-in-bank1 option
8518
8519         * device/include/string.h:
8520         donot redefine "reentrant" keyword
8521
8522         * device/include/ds80c390.h: Added some more SFRs
8523
8524 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
8525
8526         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
8527
8528 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
8529
8530         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
8531
8532 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
8533
8534         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
8535
8536 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
8537
8538         * Added --xram-movc option
8539
8540 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
8541
8542         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
8543
8544 2002-01-11  Johan Knol
8545
8546         * Added math lib of Jesus Calvino-Fraga
8547
8548 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
8549
8550         * src/SDCCmain.c (processFile): fix processing of ../../src.c
8551         * support/regression/Makefile: new target test-mcs51-stack-auto
8552         * support/regression/ports/mcs51-stack-auto/spec.mk: added
8553
8554 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
8555
8556         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
8557
8558 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
8559
8560         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
8561
8562 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
8563
8564         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
8565
8566         * src/SDCCglue.h: add definition for printIvalChar()
8567
8568 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
8569
8570         * src/SDCCast.c: fix #498138 by Johan
8571
8572         * src/SDCCglue.c: fix #498138 by Johan
8573
8574 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
8575
8576         * support/regression/Makefile: fix clean
8577
8578         * support/regression/ports/ds390/support.c: fix transmission of last character
8579
8580 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
8581
8582         * /sdcc/src/ds390/gen.c:
8583         a) improved computing address of stack variable
8584         b) took out some #if 0 code
8585         c) improved parmBytes adjustment
8586         d) improved genPlusIncr & genMinusIncr
8587         e) genCmp could generate bad code (when left assigned to DPTR)
8588         f) Fixed bug in hasInc
8589
8590         * /sdcc/src/ds390/ralloc.c:
8591         a) packRegsForSupport could mess up live information (Fixed)
8592         b) packRegsDPTRuse could be incorrect for left & right shift
8593
8594         * /sdcc/src/mcs51/ralloc.c:
8595         packRegsForSupport could mess up the live information (Fixed)
8596
8597         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
8598
8599         * /sdcc/src/SDCCast.c:
8600         can reverse a loop even if function call is present as long
8601         as the loop control variable is local & is not passed as parameter
8602
8603 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
8604
8605         * /sdcc/ChangeLog: *** empty log message ***
8606
8607         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
8608         More builtin function additions for TININative
8609
8610         * /sdcc/src/ds390/ralloc.c:
8611         Had broken the regression testsuite
8612
8613         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
8614
8615         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
8616         Added funcattr hasStackParms will be set for reentrant functions when there
8617         are paramteres on the stack, this helps in minimizing frame pointer generation
8618         typeFromStr can handle function pointers now
8619
8620         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
8621         *** empty log message ***
8622
8623 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
8624
8625         * /src/ds390/gen.c, /src/ds390/main.c:
8626         More builtin function additions for TININative
8627
8628         * /src/ds390/ralloc.c:
8629         Had broken the regression testsuite
8630
8631         * /src/SDCCast.c: Fixed a bug in dumptree
8632
8633         * /src/SDCCsymt.c, /src/SDCCsymt.h:
8634         Added funcattr hasStackParms will be set for reentrant functions when there
8635         are paramteres on the stack, this helps in minimizing frame pointer generation
8636         typeFromStr can handle function pointers now
8637
8638         * /doc/builtins.txt, /doc/TININative.txt:
8639         *** empty log message ***
8640
8641
8642 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
8643
8644         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
8645         ALPHA version for -mTININative
8646
8647         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
8648         updated to reflect changes in the port structure
8649
8650         * /src/port.h:
8651         added function do_assemble (similar to do_link) if non-null this function
8652         will be called to do assembly (-mTININative) requires a multi command
8653         assembly
8654         added function genAssemblerEnd will be called to generate assembler Epilogue
8655
8656         * /src/SDCCsymt.c:
8657         added _JavaNative to debug info printing
8658
8659         * /src/SDCCmain.c: added option --tini-libid
8660         added port->do_assemble function (-mTININative) has a multi command assemble
8661
8662         * /src/SDCCglue.c: Disabled "constExpr" check
8663         added port->genAssemblerEnd function
8664
8665         * /src/SDCCglobl.h: Added option --tini-libid value
8666
8667         * /src/SDCCast.h:
8668         tookout optimizeCompare from the header (has no external references)
8669
8670         * /src/SDCCast.c: made one more function "static"
8671
8672 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
8673
8674         * src/z80/mappings.i: Added z80asm support.
8675
8676         * src/z80/main.c: Added z80asm support on --asm=z80asm
8677
8678         * src/z80/gen.c: Fixed asm portability issues.
8679
8680         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
8681
8682         * src/SDCCglue.c (printExterns): Added global/extern split.
8683
8684 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
8685
8686         * support/regression/Makefile: added test for mcs51 model large
8687
8688         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
8689
8690         * support/regression/ports/gbz80/spec.mk: added -mgbz80
8691
8692 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
8693
8694         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
8695
8696 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
8697
8698         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
8699
8700         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
8701
8702 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
8703
8704         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
8705
8706         * support/regression/tests/simplefloat.c: Port to mcs51.
8707
8708 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
8709         * support/regression/tests/bug-485362.c: Added.
8710
8711         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
8712
8713         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
8714
8715         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
8716
8717         * src/z80/gen.c (aopDump): Added a dump function.
8718
8719 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
8720         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
8721
8722         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
8723
8724         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
8725
8726         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
8727
8728         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
8729
8730         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
8731
8732         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
8733
8734         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
8735
8736         * support/regression/ports/ds390/support.c: Use tinibios.
8737
8738         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
8739
8740 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
8741
8742         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
8743         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
8744
8745         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
8746
8747         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
8748
8749 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
8750
8751         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
8752
8753         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
8754         (packRegsForIYUse): Created and optimised.
8755
8756 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
8757
8758         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
8759 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
8760
8761         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
8762
8763         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
8764
8765         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
8766
8767 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
8768
8769         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
8770
8771         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
8772
8773 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
8774
8775         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
8776
8777         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
8778
8779         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
8780
8781 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
8782
8783         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
8784         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
8785         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
8786
8787         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
8788
8789         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
8790         (genNotFloat): Added.
8791         (genUminusFloat): Added.
8792
8793         * device/lib/z80/Makefile: Added floating pt stubs.
8794
8795         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
8796
8797         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
8798
8799         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
8800
8801 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
8802
8803         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
8804
8805         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
8806
8807         * sdcc/support/regression/Makefile: Add port ds390.
8808
8809         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
8810
8811         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
8812
8813         * sdcc/support/regression/ports/ds390/spec.mk: Added.
8814
8815         * sdcc/support/regression/ports/ds390/support.c: Added.
8816
8817         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
8818
8819         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
8820
8821         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
8822
8823 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
8824
8825         * device/include/malloc.h: Added z80 and gbz80 support.
8826
8827         * device/lib/gbz80/heap.s: Added.
8828
8829         * device/lib/z80/heap.s: Added.
8830
8831         * device/lib/malloc.c: Added z80 and gbz80 support.
8832
8833         * support/regression/tests/malloc.c (testMalloc): Added.
8834
8835         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
8836
8837         * support/regression/tests/bug-478094.c: Added.
8838
8839         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
8840
8841 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
8842
8843         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
8844
8845         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
8846
8847         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
8848
8849         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
8850
8851         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
8852
8853 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
8854
8855         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
8856
8857 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
8858
8859         * support/regression/tests/bug-477927.c: Added.
8860
8861         * src/z80/peeph.def: Added minor rules.
8862
8863         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
8864
8865         * src/z80/peeph.def: Added jump optimisation modification.
8866
8867 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
8868
8869         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
8870
8871 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
8872
8873         * support/regression/tests/funptrs.c: Added.
8874
8875 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
8876
8877         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
8878
8879 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
8880
8881         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
8882
8883         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
8884
8885         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
8886         (movLeft2ResultLong): Created.
8887
8888         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
8889         (joinPushes): Added.  Joins two char pushes into a word push.
8890
8891 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
8892
8893         * support/cpp2/Makefile.in (install): Added creation of dest dir.
8894
8895         * support/makebin/Makefile (install): Added creation of dest dir.
8896
8897 2001-10-24 Karl Bongers <karl AT turbobit.com>
8898
8899         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
8900
8901 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
8902
8903         * src/z80/ralloc.c: Turned off faulty pack for one use.
8904
8905         * src/z80/peeph-gbz80.def: Removed redundent restart options.
8906
8907         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
8908
8909 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
8910
8911         * support/regression/Makefile: Improved clean
8912
8913         * support/regression/ports/gbz80/spec.mk: Added clean
8914
8915         * support/regression/ports/host/spec.mk: Added clean
8916
8917         * support/regression/ports/z80/spec.mk: Added clean
8918
8919         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
8920
8921         * support/regression/ports/mcs51/timeout.c: little improvements
8922
8923 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
8924
8925         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
8926
8927         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
8928
8929         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
8930
8931 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
8932
8933         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
8934
8935         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
8936
8937 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
8938         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
8939
8940         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
8941
8942         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
8943
8944         * src/mcs51/main.c (_linkCmd): Added bin path to command.
8945
8946         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
8947
8948         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
8949
8950         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
8951
8952         * support/regression/tests/longor.c: Added.
8953
8954 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
8955
8956         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
8957
8958         * as/mcs51/aslink.h: define PATH_MAX
8959
8960         * as/mcs51/asm.h: define PATH_MAX
8961
8962         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
8963
8964         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
8965
8966         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
8967
8968         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
8969
8970         * src/SDCCglobl.h: define PATH_MAX
8971
8972         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
8973
8974         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
8975
8976 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
8977
8978         * src/z80/gen.c (gencjneshort): Fixed
8979
8980         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
8981
8982 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
8983
8984         * support/regression/tests/bug-469671.c: Added.
8985
8986         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
8987
8988 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
8989
8990         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
8991
8992         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
8993
8994 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
8995
8996         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
8997
8998         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
8999
9000         * src/device/lib/_mullong.c : removed hint: nooverlay bug
9001
9002         * src/device/lib/_divuint.c : removed hint: nooverlay bug
9003
9004         * src/device/lib/_divulong.c: removed hint: nooverlay bug
9005
9006         * src/device/lib/_moduint.c : removed hint: nooverlay bug
9007
9008         * src/device/lib/_modulong.c: removed hint: nooverlay bug
9009
9010 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
9011
9012         * 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.
9013
9014         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
9015
9016         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
9017
9018 2001-10-07    <johan AT FRIJA>
9019
9020         * device/lib/gets.c (gets): fixed the return value.
9021
9022 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
9023         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
9024
9025         * 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.
9026
9027         * 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.
9028
9029         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
9030
9031         * src/pic/gen.c: Removed Safe_strdup.
9032
9033         * configure.in: Added option to enable libgc support.
9034
9035         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
9036         (bitVectUnion): Optimised.
9037         (bitVectIntersect): Optimised.
9038         (bitVectBitsInCommon): Optimised.
9039         (bitVectCplAnd): Optimised.
9040
9041         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
9042
9043 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9044
9045         * src/SDCCmain.c: distinguish between assembler debug and plain options
9046
9047         * src/avr/main.c:   remove standard assembler options
9048
9049         * src/ds390/main.c: remove standard assembler options
9050
9051         * src/mcs51/main.c: remove standard assembler options
9052
9053         * src/port.h: removed "PENDING" comment
9054
9055 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9056
9057         * src/device/lib/_mulint.c  : new, with assember functions
9058
9059         * src/device/lib/_mullong.c : new, with assember functions
9060
9061         * src/device/lib/_divuint.c : with assember functions
9062
9063         * src/device/lib/_divsint.c : with assember functions
9064
9065         * src/device/lib/_divulong.c: with assember functions
9066
9067         * src/device/lib/_divslong.c: with assember functions
9068
9069         * src/device/lib/_moduint.c : with assember functions
9070
9071         * src/device/lib/_modsint.c : with assember functions
9072
9073         * src/device/lib/_modulong.c: with assember functions
9074
9075         * src/device/lib/_modslong.c: with assember functions
9076
9077         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
9078
9079         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
9080
9081         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
9082                                       replaced _mululong.c and _mulslong.c by _mullong.c
9083
9084 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9085
9086         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
9087
9088 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9089
9090         * src/SDCCglue.c: test, if win32api is available for MINGW
9091
9092 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9093
9094         * src/SDCCsymt.c: no more _modifier in printTypeChain()
9095         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
9096         * support/regression/ports/gbz80/spec.mk: removed GENERIC
9097         * support/regression/ports/host/spec.mk: removed GENERIC
9098         * support/regression/ports/mcs51/spec.mk: removed GENERIC
9099         * support/regression/ports/z80/spec.mk: removed GENERIC
9100
9101 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
9102
9103         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
9104
9105         * support/regression/tests/bug-467035.c: Created.
9106
9107 2001-10-01    <johan AT FRIJA>
9108
9109         * src/SDCC.y: fixed bug #466586 part 1
9110
9111 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
9112
9113         * SDCCicode.c: z80 has no generic pointers
9114         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
9115
9116 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
9117
9118         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
9119
9120 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
9121
9122         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
9123
9124         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
9125
9126 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
9127
9128         * configure.in: Fixed up so that ucsim is only configured once.
9129
9130         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
9131
9132         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
9133         (getPathDifference): As above.
9134
9135         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
9136
9137         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
9138
9139 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
9140         * .version: Updated to 2.3.1
9141
9142         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
9143         Added copyright header.
9144
9145         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
9146         (assemble): Added support for macro based assembler commands.
9147         (linkEdit): Added support for macro based linker commands.
9148         (preProcess): Changed the pre-processor to use macros.
9149         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
9150         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
9151
9152         * device/lib/z80/crt0.s: Added module name for debugging.
9153
9154 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
9155
9156         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9157
9158         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
9159
9160         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
9161
9162         * src/Makefile.in: Added SDCCmacro and SDCCutil
9163
9164 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
9165
9166         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9167
9168 2001-09-16    <johan AT FRIJA>
9169
9170         * 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.
9171
9172 2001-09-15    <johan AT FRIJA>
9173
9174         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
9175         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
9176
9177 2001-09-11    <johan AT FRIJA>
9178
9179         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
9180
9181 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
9182
9183         * support/regression/tests/bug-460444.c: Added test case.
9184
9185         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
9186         (genCast): Added justification for all of the asserts.
9187
9188 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
9189
9190         * support/regression/support.c: _xdata replaced by xdata
9191
9192         * support/regression/spec.mk: removed _generic
9193
9194 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
9195
9196         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
9197
9198         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
9199         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
9200
9201         * src/z80/peeph.def: Added a rule to optimise shift then compare.
9202
9203         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
9204
9205         * support/regression/tests/bug-460010.c: Added test case.
9206
9207         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
9208
9209 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
9210
9211         * support/regression/Makefile: inter-port-clean adjusted for mcs51
9212
9213         * support/regression/testfwk.c: removed workaround for bug #436344
9214
9215         * support/regression/tests/bp.c: use less memory with mcs51
9216
9217         * support/regression/tests/bug-441448.c: use less memory
9218
9219         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
9220
9221         * support/regression/collate-results.py: typo
9222
9223 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
9224
9225         * support/regression/tests/fetchoverlap.c: Added new test case.
9226
9227         * support/regression/tests/bp.c: Added new test case.
9228
9229         * support/regression/tests/bug-448984.c: Added new test case.
9230
9231         * support/regression/tests/pow2shifts.c: Added new test case.
9232
9233         * src/z80/gen.c: Turned off the noise it normally generates for the release.
9234         (genlshTwo): Fixed right shift for count > 8.
9235
9236         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
9237
9238 2001-09-08    <johan AT FRIJA>
9239
9240         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
9241
9242 2001-09-07    <johan AT FRIJA>
9243
9244         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
9245
9246         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
9247
9248 2001-09-06    <johan AT FRIJA>
9249
9250         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
9251         * bernhard noted me at this: "() equals to (void)" (1.38)
9252
9253 2001-09-05    <johan AT FRIJA>
9254
9255         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
9256
9257 2001-09-04    <johan AT FRIJA>
9258
9259         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
9260
9261
9262 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
9263
9264         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
9265
9266 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
9267
9268         * link/z80/aslink.h: Fixed path for PATH_MAX
9269
9270 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
9271
9272         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
9273
9274         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
9275
9276         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
9277
9278         * 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.
9279
9280 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
9281
9282         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
9283         (genCmp): Fixed up genCmp for the GB with longs.
9284
9285         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
9286
9287         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
9288
9289         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
9290
9291         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
9292
9293 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
9294
9295         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
9296
9297 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
9298
9299         * 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.
9300
9301         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
9302
9303 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
9304
9305         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
9306
9307         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
9308
9309 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
9310
9311   * sim/ucsim/configure:    little improvement of Cygwin-detection
9312   * sim/ucsim/configure.in: little improvement of Cygwin-detection
9313   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
9314   * support/regression/tests/bug-221100.c: small changes for mcs51
9315   * support/regression/tests/bug-221168.c: small changes for mcs51
9316   * support/regression/tests/bug-227710.c: small changes for mcs51
9317   * support/regression/tests/staticinit.c: small changes for mcs51
9318   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
9319   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9320   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9321
9322 $Revision$