doc/sdccman.lyx: added section about debugging with ddd
[fw/sdcc] / ChangeLog
1 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2
3         * doc/sdccman.lyx: added section about debugging with ddd
4         * doc/figures/ddd_example.eps: screenshot of debugging session
5
6 2005-07-04 Raphael Neider <rneider AT web.de>
7
8         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
9           like CODE pointers, fixes #1115683
10         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
11           call, fixes bugs #1232211, #1228110,
12           fixed wrong casts to pCodeFlow from pCodeInstructions
13
14 2005-07-04 Raphael Neider <rneider AT web.de>
15
16         * src/pic/gen.c (popGet): changed assert to allow for
17           bit operands
18         * (popGetAddr): changed signature to provide
19           an additional index, patched all call sites
20         * (genCmpEq): handle literal-like operands correctly
21         * (genAddrOf): added sanity checks on __code/__data pointers
22         * (genAssign): added handling of symbols from __code section
23         * (gencjne): do not generate code for comparisons whose result
24           is neither stored nor used, fixes bug #1171114
25         * (AccLsh, AccRsh): operate on operand instead of WREG
26         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
27           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
28           by known count
29         * rewrote complete shift-by-literal logic, commented unused
30           functions out
31         * (genConstPointerGet): get multiple bytes (if result size > 1),
32           fixed handling of non-immediate addresses
33         * (genPointerGet): handle CODE pointers like CONST pointers
34         * (genpic14Code): insert C-SRC lines as Cource-pCodes
35         * ({aop,op}_isLitLike): NEW, single place to decide whether an
36           operand is to be treated as a literal or not
37         * (mov2w,genPcall,genCmpEq),
38           src/pic/genarith.c: use aop_isLitLike() to decide between
39           literal/register contents
40         * (addSign): added missing offset
41         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
42           only emit comment in debug-mode,
43           use {aop,op}_isLitLike throughout the file
44         * src/pic/glue.c: fix initializers for pointers (work in progress)
45         * src/pic/pcode.c (get_op): honor index on _const symbols
46         * ({reset,dump}pCodeStatistics): NEW, estimate code size
47         * (dumppBlock): added pCode size estimation
48         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
49           check for IS_SYMOP before OP_SYMBOL'ing
50         * fixed indentation, compacted switch-statements
51         * (allocReg): find free register and allocate it instead of
52           allocating new registers all the time
53         * (deassignLRs): prevent POINTER_GET's from being assigned the same
54           registers as its operands (necessary only for multibyte GETs)
55
56 2005-07-01 Raphael Neider <rneider AT web.de>
57
58         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
59           debugging .asm-output macros FENTRY + FEXIT
60         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
61           way... I wonder...
62         * (emitpComment): NEW, printf to pCode
63         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
64           offset handling
65         * (popGetAddr): NEW, variant of popGet to access an immediates
66           high(er) bytes instead of the n'th byte of memory they reference,
67           replaced popGet with popGetAddr where neccessary
68         * (genDataPointerGet): reactivated and fixed implementation
69         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
70           accesses
71         * (genDataPointerSet): fixed multibyte assignments
72         * (genpic14Code): fixed --i-code-in-asm handling
73         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
74         * (genPlus): fixed index-out-of-bounds error
75         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
76         * src/pic/ralloc.c: added debugging output macro FENTRY2
77         * (spillThis): fixed indentation, enbraced for-body for clarity
78         * (rematStr): commented out as now unused
79         * (regTypeNum): commented out special spill case (overwrites
80           arbitrary values)
81         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
82
83 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
84
85         * doc/sdccman.lyx: documented sfr16/sfr32,
86           added example for using storage class with function pointers
87         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
88
89 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
90
91         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
92         * device/lib/_itoa.c,
93         * device/lib/_ltoa.c: optimized codesize
94         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
95           but don't know how to suppress the double warning.
96         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
97         * support/Util/SDCCerr.c,
98         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
99
100 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
101
102         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
103           fixed old K&R prototypes
104         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
105         * device/lib/_gptrget.c,
106         * device/lib/_gptrgetc.c,
107         * device/lib/_gptrput.c: changed versions for new memory indicator values,
108           also new versions for small generic pointers and banked generic pointers
109         * src/port.h: added const_name
110         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
111         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
112         * src/SDCCcse.c (findPrevIc): check all associative operators
113         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
114         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
115         * src/SDCCmem.c: updated comments,
116           set far-space to 0 for pdata, results in optimized code
117         * src/SDCCmem.h: added macro CONST_NAME
118         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
119           moving the info into the highest bits, see also gptrget/gptrput
120         * src/src.dsp: added sdcc.ico to project files
121         * src/avr/gen.c (genCast): fixed bug 0x%d
122         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
123         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
124           relation between ptr_type and DCL_TYPE,
125           (genCast): fixed bug 0x%d
126         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
127           (CODE)" for const_name
128         * src/hc08/gen.c (genCast): fixed bug 0x%d
129         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
130           (hc08_port): added "CONST (CODE)" for const_name
131         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
132           (aopForRemat, adjustArithmeticResult): disconnected direct relation
133           between ptr_type and DCL_TYPE,
134           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
135           operand* and took AOP() inside function so sfr-ness can be checked,
136           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
137           new prototype,
138           (genFunction, genEndFunction): optimized stack setup,
139           (genMinus): optimized for literals with ending zeroes (in bytes),
140           (genCast): fixed bug 0x%d
141         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
142           (mcs51_port): added "CONST (CODE)" for const_name
143         * src/mcs51/peeph.def: made rule 226 more generic
144         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
145         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
146         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
147         * src/z80/main.c (z80_port): added NULL for const_name,
148           (gbz80_port): added NULL for const_name
149         * support/regression/tests/bug663539.c,
150         * support/regression/tests/sfr16.c: new tests
151
152 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
153
154         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
155
156 2005-06-24 Raphael Neider <rneider AT web.de>
157
158         * device/lib/pic16/libdev/pic18f[68][567]20.c:
159           corrected typos...
160         * device/include/pic16/signal.h: added USBIF
161           and SIG_USB
162
163 2005-06-24 Raphael Neider <rneider AT web.de>
164
165         * device/lib/pic16/libdev/pic18f2455.c,
166           device/include/pic16/pic18f2455.h: NEW
167         * device/include/pic16/pic18fregs.h,
168           device/lib/pic16/pics.all,
169           src/pic16/device.c: added 18f2455
170         * device/lib/pic16/libdev/pic18f[68][567]20.c,
171           device/include/pic16/{pic18f[68][567].h,usart.h}:
172           replaced MULTIPLE_USARTS define with more relaible
173           compatibility sfrs (for USART access)
174
175 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
176
177         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
178           and the output asm file line is printed on two lines.
179
180 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
181
182         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
183           BGT, BLE, BHI, and BLS instructions
184         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
185           genCmpEq): removed
186         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
187           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
188           fixes bug #1216342
189         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
190
191 2005-06-15 Raphael Neider <rneider AT web.de>
192
193         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
194         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
195         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
196           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
197           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
198
199 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
200
201         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
202           Marcel Telka in bug #1215704
203
204 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
205
206         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
207           located in shared memory bank.
208
209 2005-05-31 Raphael Neider <rneider AT web.de>
210
211         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
212           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
213           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
214
215 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
216
217         * device/lib/_strncpy.c: fixed the fix
218
219 2005-05-26 Raphael Neider <rneider AT web.de>
220
221         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
222           initializers with \0, bug #1208187
223         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
224           intializers with \0, bug #1208187
225
226 2005-05-26 Raphael Neider <rneider AT web.de>
227
228         * src/pic16/glue.c (pic16_printIvalChar): fixed string
229           initializers with \0, bug #1208187
230         * src/pic16/main.c (_process_pragma): added sanity checks
231           for stack position and size, emit warnings when appropriate
232
233 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
234
235         * device/lib/_strncpy.c: fixed not filling with \0
236
237 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
238
239         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
240           createFunction),
241         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
242           compound_statement),
243         * src/SDCCsymt.h,
244         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
245
246 2005-05-24 Raphael Neider <rneider AT web.de>
247
248         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
249
250 2005-05-24 Raphael Neider <rneider AT web.de>
251
252         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
253           TRISE definitions, closes bug #1162453
254
255 2005-05-22 Raphael Neider <rneider AT web.de>
256
257         * src/pic16/main.c (_process_pragma): check for missing
258           arguments to pragmas code and udata
259         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
260           consistency fixes to match other headers (thanks to Jim Paris)
261         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
262
263 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
264
265         * src/SDCCicode.c (isOperandEqual): fixed missing ;
266
267 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
268
269         * support/regression/tests/bug1198642.c: new test
270         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
271         * src/SDCCcse.c (findPrevIc): added comment, please have a look
272         * support/scripts/resource.h,
273         * support/scripts/resource.rc,
274         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
275         * support/scripts/sdcc.ico: added 32x32 icon
276
277 2005-05-18 Raphael Neider <rneider AT web.de>
278
279         * device/lib/pic16/libdev/pic18f*.c,
280         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
281           keywords to "__sfr" and "__at (X)"
282         * device/include/pic16/pic18fregs.h: added pic18f4520
283         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
284           #1203088 (MPLAB compatibility)
285
286 2005-05-17 Raphael Neider <rneider AT web.de>
287
288         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
289         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
290         * device/lib/pic16/pics.all: added new devices
291         * src/pic16/device.c: added support for pic18f4520
292
293 2005-05-16 Raphael Neider <rneider AT web.de>
294         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
295         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
296         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
297           convenience function for bit access
298
299 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
300
301         * device/lib/printf_large.c: fixed bug 1193299
302         * support/regression/tests/bug1057979.c: added test %3.3s
303
304 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
305
306         * device/include/mcs51/8051.h,
307         * device/include/mcs51/8052.h: made parseable with lint
308         * device/include/mcs51/lint.h: added include file for (sp)lint
309         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
310         * doc/cdbfileformat.lyx,
311         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
312
313 2005-05-14 Raphael Neider <rneider AT web.de>
314
315         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
316         * device/lib/pic16/libc/stdlib/itoa.c (new)
317         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
318         * device/lib/pic16/libio/Makefile: exclude subdir according to
319           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
320         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
321         * src/pic16/gen.c (genFunction): prevent annoying warning
322         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
323           nameclashes on BeOS
324         * support/cpp2/cppmain.c (cpp_output_string): new
325         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
326           fixes bug 1116802
327
328 2005-05-13 Borut Razem <borut.razem AT siol.net>
329
330         * src/SDCCmain.c (linkEdit): fixed bug 1195202
331
332 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
333
334         * .version: changed to version 2.5.1; back to bleeding edge development
335
336 2005-05-11 Borut Razem <borut.razem AT siol.net>
337
338         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
339           generate PDF version 1.3 documents
340
341 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
342
343         * .version: changed to version 2.5.0
344
345 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
346
347         * doc/sdccman.lyx: updated weblinks, index and smaller updates
348
349 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
350
351         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
352         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
353         well as many smaller updates.
354         * .version: changed to version 2.5.0-pre1
355
356 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
357
358         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
359
360 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
361
362         * support/regression/tests/bug1185672.c: added
363         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
364           bug 1185672
365         * src/mcs51/gen.c (genCall): added comments, made it look safer
366         * src/mcs51/gen.c (genEndFunction): simplified
367
368 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
369
370         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
371
372 2005-04-14 Borut Razem <borut.razem AT siol.net>
373
374         * fixed bug 1045046 - SIGSEGV with really simple code?:
375           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
376           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
377
378 2005-04-14 Borut Razem <borut.razem AT siol.net>
379
380         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
381           src/pic16/device.h: temporarily disabled experimental #inline pragma
382           for 2.5.0 release
383
384 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
385
386         * device/include/z80/stdio.h,
387         * device/include/z80/string.h: removed these highly incomplete files so
388           SDCC can use the default ones in device/include/
389
390 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
391
392         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
393         gcc warning.
394         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
395         fix sdcpp warnings.
396
397 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
398
399         * device/include/malloc.h: removed redundant __reentrant prototypes
400         * device/lib/_mullong.c: added working xstack variant in asm (C version
401           doesn't pass regression tests)
402         * device/lib/bpx.c: used __data and made bpx char for mcs51
403         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
404           (createFunction): fixed bug with xstackPtr
405         * src/SDCCcse.c: corrected comments
406         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
407           (killDeadCode, eBBlockFromiCode): removed unused code
408         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
409           corrected comments
410         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
411           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
412           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
413           (genModOneByte): fixed warning in MSVC
414         * src/mcs51/main.c (): added comments
415         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
416
417 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
418
419         * src/SDCCmain.c (linkEdit): oops, changed one line too many
420
421 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
422
423         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
424
425 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
426
427         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
428         characters arrays of larger size than the declared one.
429
430 2005-04-10 Borut Razem <borut.razem AT siol.net>
431
432         * src/pic/gen.c (genInline),
433           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
434           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
435           (findNextInstruction), (findPrevInstruction),
436           (findInstructionUsingLabel),
437           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
438         * src/pic/pcode.c (findLabel): added missing '\n'
439         * src/src.dsp: added SDCCdwarf2.c to the project
440
441 2005-04-09 Borut Razem <borut.razem AT siol.net>
442
443         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
444
445 2005-04-08 Raphael Neider <rneider AT web.de>
446
447         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
448           into the chain after a given one) and mergeDefmapSymbols (combine
449           defmap entries for each symbol per pcode)
450         * (createDefmap): have defmap entries merged in the end
451         * (defmapReplaceSymRef): split defmap entries covering two accesses to
452           a symbol before replacing one access type's symbol, merge symbols in
453           the end (replacement symbol might already have an entry)
454         * (assignValnums): keep reference to written WREG intact
455
456 2005-04-08 Raphael Neider <rneider AT web.de>
457
458         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
459           Alpha)
460
461 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
462
463         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
464         bytes
465
466 2005-04-07 Raphael Neider <rneider AT web.de>
467
468         * device/include/pic16/usart.h: added compatibility defines for
469           devices with more than one USART
470         * device/include/pic16/pic18f[68][567]20.h: activated above defines
471
472 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
473
474         * device/lib/Makefile.in: updated for port specific include
475
476 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
477
478         * support/regression/ports/mcs51/spec.mk: added mcs51 include
479
480 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
481
482         * device/include/8051.h,
483         * device/include/8052.h,
484         * device/include/at89S8252.h,
485         * device/include/at89c55.h,
486         * device/include/at89x051.h,
487         * device/include/at89x51.h,
488         * device/include/at89x52.h,
489         * device/include/mcs51reg.h,
490         * device/include/reg51.h,
491         * device/include/reg764.h,
492         * device/include/regc515c.h,
493         * device/include/sab80515.h: (re)moved these 12 files
494         * device/include/mcs51/8051.h,
495         * device/include/mcs51/8052.h,
496         * device/include/mcs51/at89S8252.h,
497         * device/include/mcs51/at89c55.h,
498         * device/include/mcs51/at89x051.h,
499         * device/include/mcs51/at89x51.h,
500         * device/include/mcs51/at89x52.h,
501         * device/include/mcs51/mcs51reg.h,
502         * device/include/mcs51/reg51.h,
503         * device/include/mcs51/reg764.h,
504         * device/include/mcs51/regc515c.h,
505         * device/include/mcs51/sab80515.h: and added them here
506
507 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
508
509         * device/include/stdarg.h: changed SDCC specific keywords to double
510           underlined form.
511         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
512           mcs51 and ds390.
513         * device/include/hc08/mc68hc908gp32.h,
514         * device/include/hc08/mc68hc908jb8.h,
515         * device/include/hc08/mc68hc908jkjl.h,
516         * device/include/hc08/mc68hc908qy.h: fixed comments
517         * device/include/mcs51/README: updated
518         * device/include/mcs51/c8051f120.h: added PINRSF
519         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
520         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
521           amidst code. Also inline is not supported.
522
523 2005-04-06 Raphael Neider <rneider AT web.de>
524
525         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
526         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
527           callers stack/frame pointers
528
529 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
530
531         * device/include/pic16/usart.h: added, missing in previous commit,
532         * device/include/pic16/adc.h: fixed typo,
533         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
534         commit,
535         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
536         <p18fxxx.inc>
537         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
538         uninitialized because a bug appears with gplink
539         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
540         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
541         complains for unrecognised option
542
543 2005-04-05 Raphael Neider <rneider AT web.de>
544
545         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
546           structs as well (using memcpy)
547         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
548           on ISRs (GOTO has no label)
549         * src/pic16/device.h: added OF_OPTIMIZE_DF
550         * src/pic16/main.c: added compiler switch --optimize-df to enable the
551           new data flow analysis/optimization
552         * src/pic16/pcode.c: added (prototypes for and implementation of)
553           dataflow analysis functions, fixed pCodeInstructions' inCond and
554           outCond values, made RCALL a branch instruction
555         * (pic16_unlinkpCode): keep C line if possible
556         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
557           C line moved if possible
558         * (pic16_getRegFrompCodeOp): NEW, improved version of...
559         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
560           to use new pic16_getRegFrompCodeOp (works for more SFRs)
561         * (pic16_BuildFlow): fixed skip instructions with label (did not start
562           new flow)
563         * (pic16_getJumptabpCode): NEW, needed in...
564         * (LinkFlow): fixed handling of jumptables, calls and conditional
565           branches
566         * (pic16_InsertCommentAfter): NEW
567         * (pic16_pCodeReplace): made verbose and flow preserving
568         * (AnalyzeFlow): added call to data flow analysis
569         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
570         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
571         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
572
573 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
574
575         * src/SDCCast.c (decorateType): fixed bug #1105626
576
577 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
578
579         * device/include/asm/pic16/features.h,
580         * pic18f*.h headers,
581         * device/include/pic16/adc.h,
582         * device/include/pic16/delay.h,
583         * device/include/pic16/i2c.h,
584         * device/include/pic16/malloc.h,
585         * device/include/pic16/stdio.h,
586         * device/include/pic16/stdlib.h,
587         * device/include/pic16/string.h,
588         * device/lib/pic16/libc/stdio/printf_tiny.c,
589         * device/lib/pic16/libc/stdio/printf_small.c,
590         * device/lib/pic16/libc/stdio/strmgpsim.c,
591         * device/lib/pic16/libc/stdio/strmmssp.c,
592         * device/lib/pic16/libc/stdio/strmusart.c,
593         * device/lib/pic16/libc/stdio/vfprintf.c,
594         * device/lib/pic16/libc/stdlib/ltoa.c,
595         * device/lib/pic16/libc/stdlib/putchar.c,
596         * device/lib/pic16/libc/stdlib/x_ftoa.c,
597         * device/lib/pic16/libc/stdlib/memchrpgm.c,
598         * device/lib/pic16/libc/stdlib/memchrram.c,
599         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
600         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
601         * device/lib/pic16/libio/adc/adcbusy.c,
602         * device/lib/pic16/libio/adc/adcread.c,
603         * device/lib/pic16/libio/adc/adcsetch.c,
604         * device/lib/pic16/libio/usart/ubaud.c,
605         * device/lib/pic16/libio/usart/ubusy.c,
606         * device/lib/pic16/libio/usart/udrdy.c,
607         * device/lib/pic16/libio/usart/uopen.c,
608         * device/lib/pic16/libio/usart/uputc.c,
609         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
610         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
611         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
612         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
613         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
614         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
615         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
616         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
617         specific keywords to double underlined form,
618         * device/lib/pic16/libc/Makefile.rules,
619         * device/lib/pic16/libsdcc/Makefile.rules,
620         * device/lib/pic16/libm/Makefile,
621         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
622         to compile with C standard set in Makefile.common
623         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
624         rand.c and crc.c in compilation process,
625         * device/lib/pic16/libsdcc/int/divuint.c,
626         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
627         `c' from signed to unsigned,
628         * device/lib/pic16/startup/crt0.c,
629         * device/lib/pic16/startup/crt0i.c,
630         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
631         keywords to double underlined form, bug fixes in _do_cinit function
632         which prevented the correct initialization of the .idata segment,
633         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
634         core to enter a infinite loop
635         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
636
637 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
638
639         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
640
641 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
642
643         * device/include/Makefile.in: add support for hc08 subdirectory
644         * device/include/hc08/: new subdirectory
645         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
646         Lucas Loizaga, thanks!
647         * device/include/hc08/mc68hc908qy.h,
648         * device/include/hc08/mc68hc908gp32.h,
649         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
650         their own directory. Changed internal macro names to use the compiler
651         reserved namespace. Changed SDCC specific keywords to double
652         underlined form.
653         * device/include/math.h,
654         * device/include/malloc.h,
655         * device/include/stdarg.h,
656         * device/include/stdbool.h
657         * device/include/string.h,
658         * device/include/tinibios.h,
659         * device/include/ds400rom.h,
660         * device/include/8051.h,
661         * device/include/8052.h,
662         * device/include/80c51xa.h,
663         * device/include/at89c55.h,
664         * device/include/at89S8252.h,
665         * device/include/at89x51.h,
666         * device/include/at89x52.h,
667         * device/include/ds80c390.h,
668         * device/include/reg764.h,
669         * device/include/regc515c.h,
670         * device/include/sab80515.h,
671         * device/include/mcs51/c8051f000.h,
672         * device/include/mcs51/c8051f018.h,
673         * device/include/mcs51/c8051f020.h,
674         * device/include/mcs51/c8051f040.h,
675         * device/include/mcs51/c8051f060.h,
676         * device/include/mcs51/c8051f120.h,
677         * device/include/mcs51/c8051f300.h,
678         * device/include/mcs51/c8051f310.h,
679         * device/include/mcs51/c8051f320.h,
680         * device/include/mcs51/c8051f330.h,
681         * device/include/mcs51/c8051f350.h,
682         * device/include/z180.h: Changed SDCC specific keywords to double
683         underlined form.
684
685 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
686
687         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
688         18F4455,
689         * (pic16_assignConfigWordValue): disable testing of configuration
690         register value with config mask,
691         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
692         function with port->fun_prefix,
693         * (genFunction): when generating a naked interrupt function never
694         create an absolute segment placed in interrupt vector address, place
695         the actual interrupt function at IVA instead, when an interrupt
696         function is generated with unspecified interrupt then do not create
697         the absolute section,
698         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
699         code for generating a call to generic pointer get/put function with
700         a call to function pic16_callGenericPointer(),
701         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
702         the call to the generic pointer get/put functions with prefixing the
703         function name with port->fun_prefix,
704         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
705         * src/pic16/main.c (_process_pragma): prefix function with
706         port->fun_prefix,
707         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
708         calling assembler, old 18Fxxxx macro is deprecated,
709         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
710         PC_ASMDIR in while condition,
711         * (findInstruction): add PC_ASMDIR in while condition,
712         * (buildCallTree): prefix main with port->fun_prefix,
713         * (pic16_pCode2str): fixed bug that didn't emit the memory access
714         identifier for variable with banked access in instructions BTFSS,
715         BTFSC, BCF, BSF, BTG
716         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
717         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
718         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
719         perform optimization when enviroment variable NO_REG_OPT is set,
720         * (insideLRBlock): NEW, return 1 if register is inside an
721         INF_LOCALREGS block,
722         * (RemoveRegFromLRBlock): remove a register that is completely
723         eliminated by register optimization, but it is still left in local
724         register store/restore in/from stack block,
725         * (Remove2pcodes): after removing register, check to see if it
726         should be removed from local register store/restore in/from stack
727         block,
728         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
729         DUMMY_READ_VOLATILE,
730
731         * device/include/pic16/adc.h: minor prototype modifications and
732         update,
733         * device/include/pic16/malloc.h: added GPL notice various
734         modifications,
735         * device/include/pic16/stdint.h: NEW, standard header for ints
736         * device/include/pic16/delay.h: NEW, header for delay functions,
737         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
738         delay1mtcy,
739         * device/include/pic16/signal.h: NEW, header providing helper macros
740         for implementing signal handlers,
741         * device/include/pic16/stdio.h: added prototypes for functions,
742         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
743         prototypes for stdin and stdout, added macro PUTCHAR to
744         automatically implement putchar function prototype,
745         * device/include/pic16/usart.h: modified and updated USART library,
746         * device/lib/pic16/libio/adc/,
747         * device/lib/pic16/libio/i2c: some modifications to improve library
748         performance,
749         * device/lib/pic16/libc/stdio/: modifications for the new printf*
750         family of functions,
751         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
752         family of functions and other sources,
753         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
754         of the PIC18Fxx[28] devices,
755         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
756         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
757         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
758         _do_cinit function, because the previous failed when local variables
759         where not placed in the same memory bank,
760         * device/lib/pic16/libsdcc/char/: various modifications to improve
761         library performance,
762         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
763         information on the new functions of the c library and more...
764
765 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
766
767         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
768
769 2005-03-26 Raphael Neider <rneider AT web.de>
770
771         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
772           if condition == CARRY)
773         * (genCmp): adapted to new genSkipc semantics
774         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
775           on rIfx (genCmp was broken)
776
777 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
778
779         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
780         * src/z80/main.c (_keywords[]),
781         * src/SDCCglobal.h (struct options),
782         * src/SDCC.y,
783         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
784         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
785         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
786         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
787         always available in leading double underscore form. The C99 support is
788         mostly missing, but it's a start.
789         * support/regression/tests/bug-227710.c: fixed nonconforming use of
790         reserved identifier "__data".
791
792 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
793
794         * src/mcs51/peeph.def: fixed bug 1170013
795
796 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
797
798         * device/include/mcs51reg.h: fixed bug 842007
799
800 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
801
802         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
803         last time.
804
805 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
806
807         * src/port.h (struct PORT),
808         * src/avr/ralloc.c (avr_assignRegisters),
809         * src/avr/main.c,
810         * src/ds390/ralloc.c (ds390_assignRegisters),
811         * src/ds390/main.c,
812         * src/hc08/ralloc.c (hc08_assignRegisters),
813         * src/hc08/main.c,
814         * src/mcs51/ralloc.c (mcs51_assignRegisters),
815         * src/mcs51/main.c,
816         * src/pic/ralloc.c (pic14_assignRegisters),
817         * src/pic/main.c,
818         * src/pic16/ralloc.c (pic16_assignRegisters),
819         * src/pic16/main.c,
820         * src/xa51/ralloc.c (xa51_assignRegisters),
821         * src/xa51/main.c,
822         * src/z80/ralloc.c (z80_assignRegisters),
823         * src/z80/ralloc.h,
824         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
825         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
826         * src/SDCCcse.h,
827         * src/SDCCdflow.c (computeDataFlow),
828         * src/SDCCdflow.h,
829         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
830         * src/SDCCloop.h,
831         * src/SDCCcflow.c (*),
832         * src/SDCCcflow.h,
833         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
834         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
835         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
836         immedDom() returning wrong block; probably fixes bug #1160833)
837
838 2005-03-20 Borut Razem <borut.razem AT siol.net>
839
840         * support/scripts/inc2h.pl: WIN32 port
841
842 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
843
844         * device/lib/makefile.in: added abs.c and labs.c
845
846 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
847
848         * device/include/stdint.h: added
849         * device/lib/abs.c: added
850         * device/lib/labs.c: added
851         * device/include/stdlib.h: added abs() and labs() prototypes
852         * device/lib/libsdcc.lib: added abs and labs
853         * device/include/float.h,
854         * device/lib/_fsmul.c,
855         * device/lib/printf_fast.c,
856         * device/lib/printf_tiny.c: updated comments
857
858 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
859
860         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
861         bug #1164313
862
863 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
864
865         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
866         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
867
868 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
869
870         * device/lib/printf_large.c: removed inline assembly for portability and
871           readability. Use printf_fast if speed or size are more important.
872         * src/pic16/gen.c: removed conditions around use of DEBUGpc
873         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
874
875 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
876
877         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
878         prevent compiler warning
879
880 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
881
882         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
883         moved to level 0 and declared as static. Also they are explicit
884         placed in access bank. This was necessery because some times they
885         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
886         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
887         optimizations. Currently only compare to unsigned char is implemented,
888         * src/pic16/gen.c: added fReturnIdx array,
889         * (struct resolvedIfx) is moved to gen.h and made public,
890         * (struct _G): added sregsAlloc and sregsAllocSet fields,
891         * (aopForSym): added an optimization to directly store in stack of
892         the operand of a SEND iCode,
893         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
894         but as registers instead (AOP_REG) using the fReturnIdx array,
895         * (pic16_freeAsmop): remove the freed register from the
896         _G.sregsAlloc field,
897         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
898         a compare of 'WREG',
899         * (pic16_popGetTempRegCond): changed function prototype, now
900         function takes also a bitVector argument v which holds the current
901         set of registers that are allocated for stack access by aopForSym,
902         registers allocated in aopForSym for accessing stack symbols are not
903         any more part of the functions usedRegs field,
904         * (genCall): some times aopOp is called for a stack variable to be
905         send, aopForSym might perform the push, if this is true make sure
906         that genCall doesn't push the variable twice by testing _G.resDirect,
907         * (genFunction): changed testing for unspecified interrupt number
908         from 256 to INTNO_UNSPEC,
909         * modified selection scheme of frame pointer generation. Previously
910         if function did use local registers a frame pointer was generated,
911         now a frame pointer is generated only if function has arguments
912         (that need PLUSW2 register access), or has stack arguments, or the
913         compiler is not instructed to omit the frame pointer,
914         * (genEndFunction): before restoring local registers that were saved
915         in the function preamble, also restore the registers that *might*
916         have been allocated for stack access,
917         * (genRet): removed some old comments,
918         * (genCmp, the active (RN's) version): added a call to the
919         pic16_genCmp_special function to perform the compare with a more
920         robust and optimized way,
921         * (genInline): a feature has been added in inline code generation,
922         which allows a wildcard variable substitution when writing inline
923         assembly. Code is incomplete and experimental therefore undocumented,
924         * (genCast): changed order of aopOp for result and right to allow
925         aopForSym to directly load the result if possible,
926         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
927         perform an optimized compare on some selected special occasions,
928         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
929         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
930         generate an IVT any more,
931         * src/pic16/main.c (pic16_optionsTable): added command line option
932         --optimize-cmp,
933         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
934         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
935         macros,
936         * src/pic16/NOTES: Raphael Neider added in list of active developers
937         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
938         jumptable_end to prevent bug #,
939         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
940         inCond and outCond fields,
941         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
942         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
943         turn off register spilling,
944         * (packRegsForOneUse): synced with other ports' versions although it
945         is not used currently,
946         * (pic16_packRegisters): added an optimization while reading
947         structure bitfields, some registers may be saved (malloc code is
948         decreased by 80 bytes)
949
950 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
951
952         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
953         left is a bitfield, if yes, then don't optimize assignment. Perhaps
954         this can be optimized more?
955
956 2005-03-10 Raphael Neider <rneider AT web.de>
957
958         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
959           genNearPointerGet): (hopefully) fixed access to bitfields via
960           pointers (p->bitN = x; and x = p->bitN; failed)
961
962 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
963
964         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
965
966 2005-03-09 Raphael Neider <rneider AT web.de>
967
968         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
969
970 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
971
972         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
973         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
974           (regTypeNum): set REG_BIT type if necessary
975         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
976         * support/regression/tests/critical.c: check bug 1144613
977
978 2005-03-02 Raphael Neider <rneider AT web.de>
979
980         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
981
982 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
983
984         * src/avr/ralloc.c (serialRegAssign),
985         * src/ds390/ralloc.c (serialRegAssign),
986         * src/hc08/ralloc.c (serialRegAssign),
987         * src/mcs51/ralloc.c (serialRegAssign),
988         * src/pic/ralloc.c (serialRegAssign),
989         * src/pic16/ralloc.c (serialRegAssign),
990         * src/xa51/ralloc.c (serialRegAssign),
991         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
992
993 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
994
995         * src/SDCCast.c (decorateType): fixed bug 1124787
996
997 2005-02-20 Hubert Sack <sack AT digiplan.de>
998         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
999
1000         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
1001         patch #1121755
1002
1003 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1004
1005         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
1006         to keep the correct label reference count when adding/removing references
1007         to labels. A peephole file using this is appended to patch #1144962.
1008
1009 2005-02-14 Raphael Neider <rneider AT web.de>
1010
1011         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
1012         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
1013         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
1014           retrievals of result operand's value on assignment
1015
1016 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
1017
1018         * device/include/pic16/string.h: modified prototype for memccpy()
1019         to memccpy(void *, void *, char, size_t)
1020         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
1021         check whether to omit frame pointer or not,
1022         * (genInline): convert all occurences of "\n" to LF in inline
1023         assembler blocks, this helps formatting the inline text,
1024         * (pic16_loadFSR0): modified prototype,
1025         * (genNearPointerGet, genNearPointerSet): reorganization of code,
1026         removed some 8051 legacy code,
1027         * (genPackBits): enabled handling bitfields exceeding one byte in size,
1028         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
1029         before allocating temporary registers in functions,
1030
1031 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1032
1033         * support/regression/tests/bitvars.c: corrected the "fix"
1034
1035 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1036
1037         * support/regression/tests/bitvars.c,
1038         * support/regression/tests/bitwise.c,
1039         * support/regression/tests/rotate.c: "fixed" problems on Alpha
1040
1041 2005-02-10 Raphael Neider <rneider AT web.de>
1042
1043         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
1044           different size for Alpha
1045         * src/pic16/gen.c (genCmpEq) : improved compare with 0
1046
1047 2005-02-09 Raphael Neider <rneider AT web.de>
1048
1049         * src/SDCC.lex(doPragma) : save and restore warning options as well
1050           (also added new stack plus clone- and copyAndFreeSDCCERRG())
1051         * have #pragma less_pedantic set the errorlevel to WARNING
1052           (fixes #1117001)
1053         * (cloneOptimize) : fixed wrong malloc's size
1054         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
1055           facilitate correct handling of #pragma (save|restore)
1056
1057 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1058
1059         * src/mcs51/gen.c: removed non-standard C nameless struct/union
1060
1061 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
1062
1063         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
1064
1065 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
1066
1067         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
1068
1069 2005-02-02 Raphael Neider <rneider AT web.de>
1070
1071         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
1072         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
1073         * (pic16_storeForReturn): fixed to allow returning function pointers
1074         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
1075         * device/include/pic16/{stddef.h,stdbool.h}: added
1076
1077 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
1078
1079         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
1080
1081 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
1082
1083         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
1084         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
1085          appeared to be required
1086
1087 2005-01-31 Borut Razem <borut.razem AT siol.net>
1088
1089         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
1090           include/mcs51 and include/z80 directories to the package
1091
1092 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1093
1094         * src/hc08/gen.c (genFunction): fixed bug #1112752
1095
1096 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1097
1098         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
1099
1100 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1101
1102         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
1103
1104 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
1105
1106         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
1107
1108 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
1109
1110         * device/include/c8051fxxx.h: removed these 6 files
1111         * device/include/mcs51/c8051fxxx.h: added these 11 new files
1112
1113 2005-01-26 Raphael Neider <rneider AT web.de>
1114
1115         * src/pic16/gen.c (genAssign): fixed assignment from longs
1116           in codespace (were cut to three bytes)
1117         * (genDummyRead): implemented (except for CODESPACE...),
1118           fixed bug #1108575
1119         * src/pic16/glue.c (emitStatistics): beautified
1120         * device/lib/pic16/libm/Makefile: added include path
1121
1122 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1123
1124         * src/z80/gen.c (aopPut): fixed bug #1103902
1125
1126 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1127
1128         * device/lib/expf.c: fixed bug #1095792
1129
1130 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
1131
1132         * device/lib/pic16/libm: added Math library sources
1133
1134 2005-01-24 Raphael Neider <rneider AT web.de>
1135
1136         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
1137           to enable upcast to pCodeOpReg2 (there is no type tag to
1138           differenciate the two and pic16_popGet2p cast into PCOR2)
1139         * src/pic16/main.c (_process_pragma): fixed another malloc bug
1140           (sizeof(sectNames) changed to sizeof(sectName))
1141           Both patches fix segfaults under MinGW.
1142
1143 2005-01-23 Raphael Neider <rneider AT web.de>
1144
1145         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
1146           Safe_[mc]?alloc()'ed variables
1147         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
1148           of (byte sized) temporaries (assign them to WREG for now)
1149         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
1150           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
1151           this might fix SIGSEGVs on MinGW...
1152         * src/SDCCopt.c (killDeadCode): restored original behaviour
1153           (volatile operands might get thrown away though)
1154
1155 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
1156
1157         * src/pic16/gen.c: fixed bug #1106975,
1158         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
1159         pointer update, INTCON is saved, global interrupts are disabled and
1160         restored after updateing TOS.
1161         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
1162         * added function attribute 'shadowregs' to take advantage of shadow
1163         registers,
1164         * added function attribute 'wparam' as an alternative to the wparam
1165         pragma,
1166         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
1167         user declares a non-ISR function as 'shadowregs',
1168         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
1169
1170 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
1171
1172         * .version: bumped version number to 2.4.8
1173         * device/lib/pic16/pics.all: list of PIC18F devices supported by
1174         pic16 port,
1175         * device/lib/pic16/libio/i2c/: I2C module support library,
1176         * device/include/pic16/i2c.h: I2C support library header,
1177         * device/lib/pic16/libc/stdio/: standard IO support sources,
1178         * (printf_small.c): printf_small() source, supports float print,
1179         * (printf_tiny.c): printf_tiny() source, does not support floats,
1180         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
1181         enable global optimizations for entire library source, other
1182         Makefiles in the source tree are also modified to reflect this,
1183         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
1184         function,
1185         * doc/sdccman.lyx: updated to reflect new changes,
1186         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
1187         sym->onStack if-case,
1188         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
1189         sbit, idata, _idata, xdata, _xdata,
1190         * added pragma library, to link an external library, (see doc),
1191         * removed command line options, --pomit-config-words, --pomit-ivt,
1192         --pleave-reset-vector,
1193         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
1194         when calling assembler to reflect memory model used, also define
1195         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
1196         reflect stack model used,
1197         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
1198         on stack return NULL,
1199
1200 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1201
1202         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
1203           of the operands is volatile. Fixes #1020220
1204
1205 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1206
1207         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
1208         * (OptimizeRegUsage): make sure that there is really no other flow where
1209           the first pCode is used
1210
1211 2005-01-22 Raphael Neider <rneider AT web.de>
1212
1213         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
1214           to fix #1106967 (pCode->seq are not set up correctly)
1215
1216 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1217
1218         * src/SDCCglue.c (glue): make sure code area is declared before the
1219         static initialization area.
1220
1221 2005-01-21 Raphael Neider <rneider AT web.de>
1222
1223         * device/lib/Makefile.in: fixed test for pic16 install dir
1224         * device/lib/pic16/*/Makefile*: modified compile flags to enable
1225           optimizations
1226         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
1227           added --optimize-goto compiler switch and pragma wparam documentation
1228         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
1229         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
1230           and PRODH closing bug #1071770 (peephole optimizer)
1231
1232 2005-01-19 Raphael Neider <rneider AT web.de>
1233
1234         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
1235           cmdLine buffers (used when calling sdcpp...) are large enough
1236           (MAX_PATH=256 truncates arguments leading to system halts when
1237           used in MinGW...)
1238         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
1239         * (genUminus): rewritten to for efficiency
1240         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
1241           used uninitialized in some cases)
1242         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
1243           copy the third byte from the int -- now assumes 0x80 (data memory)
1244         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
1245           operands (genAddLit expects the iCode's operands to swapped as
1246           well), fixed leftover bytes (crashed for short left operands)
1247         * (pic16_genMinusDec): performance improvements, removed false
1248           PIC14 emitSKPNCs
1249         * (pic16_genMinus): fixed to cope with differently sized operands
1250         * src/pic16/glue.c (pic16_glue): added new banksel optimization
1251           for --obanksel > 1
1252         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
1253         * src/pic16/graph.[ch]: implementation of directed graphs, used by
1254           new banksel optimization
1255         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
1256           analysis for temporary registers (segfaults...)
1257         * src/pic16/peeph.def: added rule
1258
1259 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
1260
1261         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
1262         which converts a float number to its ASCII representation
1263         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
1264         functions to convert the fractional and integer part of a float to ASCII,
1265         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
1266         realloc.c): added _MALLOC_SPEC to explicit place variables in data
1267         ram
1268         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
1269         _STATMEM macros,
1270         * device/include/pic16/adc.h: added GPL info,
1271         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
1272         a pCodeOp as tested operand,
1273         * (genNearPointerGet): optimized bit testing, does not use
1274         intermediate register for bit value, test directly instead with
1275         BTFSS, BTFSC, works only for single bits,
1276         * (genpic16Code): dump the name of the iCode in the asm,
1277         * src/pic16/ralloc.c (decodeOp): removed static declaration and
1278         renamed to pic16_decodeOp,
1279         * (serialRegAssign): do not allocate a temporary register for iCode
1280         sequences that test a single bit for 1/0
1281
1282 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
1283
1284         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
1285         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
1286         access stack and frame pointers. They are initially assigned to
1287         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
1288         accessing SFRs. Updated all occurences of modification of stack or
1289         frame pointer in gen.c and pcode.c,
1290         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
1291         assigning of a literal value to pointers,
1292         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
1293         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
1294         selected
1295
1296 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
1297
1298         * doc/sdccman.lyx: update documentation about stack pragma, added
1299         some info for stack memory models
1300
1301 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1302
1303         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
1304
1305 2005-01-08 Raphael Neider <rneider AT web.de>
1306
1307         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
1308           udata sections to fix bug #1097823
1309
1310 2005-01-05 Raphael Neider <rneider AT web.de>
1311
1312         * src/pic16/gen.c (genGenericShift): added handling of differently
1313           sized left operand and result
1314
1315 2005-01-04 Raphael Neider <rneider AT web.de>
1316
1317         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
1318         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
1319           to hold the condition bit)
1320         * added new version of genCmp (old code available via #define)
1321         * added new version of genShiftLeft/genShiftRight in a generic
1322           way, now supports shifting by negative values
1323         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
1324           shiftCount (expected by genGenericShift)
1325         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
1326         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
1327           dump
1328         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
1329           is an invalid literal too...)
1330
1331 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
1332
1333         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
1334         from Raphael Neider,
1335         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
1336         for 8-bit literals. This fixes some literal operands which are sign
1337         extended to 16-bits ints when instruction needs only 8-bits.
1338
1339 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
1340
1341         * device/lib/logf.c: added mcs51 assembly version
1342         * device/lib/expf.c: added mcs51 assembly version
1343         * device/lib/_logexpf.c: new shared asm code for expf and logf
1344         * device/include/math.h: add defines for assembly math library
1345         * device/lib/Makefile.in: build new _logexpf.c
1346         * device/lib/libfloat.lib: use new _logexpf.c
1347
1348 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
1349
1350         * src/pic/device.c
1351         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
1352           device types which have less than 0x7f registers.
1353
1354 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
1355
1356         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
1357
1358 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
1359
1360         * device/lib/printf_fast.c: only build on supported arch.
1361         * device/lib/printf_tiny.c: only build on supported arch.
1362         * device/lib/printf_fast_f.c: only build if asm float lib
1363         * device/lib/_fsget1arg.c: only build if asm float lib
1364         * device/lib/_fsget2args.c: only build if asm float lib
1365         * device/lib/_fsnormalize.c: only build if asm float lib
1366         * device/lib/_fsreturnval.c: only build if asm float lib
1367         * device/lib/_fsrshift.c: only build if asm float lib
1368         * device/lib/_fsswapargs.c: only build if asm float lib
1369         * device/include/stdio.h: don't provide print_fast,
1370           print_fast_f, print_tiny prototypes if --xstack used
1371
1372 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
1373
1374         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
1375         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
1376           to the SOURCES
1377
1378 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
1379
1380         * device/lib/printf_fast_f.c: same as printf_fast, but
1381           with floating point enabled
1382         * device/lib/printf_fast.c: minor tweaks
1383         * device/include/stdio.h: add printf_fast_f
1384
1385 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
1386
1387         * src/SDCCmain.c: make --float-reent default for mcs51
1388         * device/lib/_fsadd.c: added mcs51 assembly version
1389         * device/lib/_fssub.c: added mcs51 assembly version
1390         * device/lib/_fsmul.c: added mcs51 assembly version
1391         * device/lib/_fsdiv.c: added mcs51 assembly version
1392         * device/lib/_fseq.c: added mcs51 assembly version
1393         * device/lib/_fsneq.c: added mcs51 assembly version
1394         * device/lib/_fsgt.c: added mcs51 assembly version
1395         * device/lib/_fslt.c: added mcs51 assembly version
1396         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
1397         * device/lib/Makefile.in: add _fscmp to build
1398         * device/lib/libfloat.lib: add _fscmp to build
1399
1400 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
1401
1402         * device/lib/_fs2slong.c: added mcs51 assembly version
1403         * device/lib/_fs2sint.c: added mcs51 assembly version
1404         * device/lib/_fs2schar.c: added mcs51 assembly version
1405         * device/lib/_fs2ulong.c: added mcs51 assembly version
1406         * device/lib/_fs2uint.c: added mcs51 assembly version
1407         * device/lib/_fs2uchar.c: added mcs51 assembly version
1408         * device/lib/_slong2fs.c: added mcs51 assembly version
1409         * device/lib/_sint2fs.c: added mcs51 assembly version
1410         * device/lib/_schar2fs.c: added mcs51 assembly version
1411         * device/lib/_ulong2fs.c: added mcs51 assembly version
1412         * device/lib/_uint2fs.c: added mcs51 assembly version
1413         * device/lib/_uchar2fs.c: added mcs51 assembly version
1414         * device/include/float.h: added #define to select asm vs c
1415
1416 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
1417
1418         * device/lib/printf_fast.c: improvements to float output
1419         * device/include/float.h: add defines for assembly float library
1420         * device/lib/_fsget1arg.c: receive 1 float arg
1421         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
1422         * device/lib/_fsnormalize.c: normalize a float
1423         * device/lib/_fsreturnval.c: return float, various helper routines
1424         * device/lib/_fsrshift.c: right shift a float's mantissa
1425         * device/lib/_fsswapargs.c: swap 2 floats
1426         * device/lib/Makefile.in: build these 6 new files for mcs51
1427         * device/lib/libfloat.lib: add these 6 files to the library
1428
1429 2004-12-26 Borut Razem <borut.razem AT siol.net>
1430
1431         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
1432           built by gcc 3.4.2
1433
1434 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
1435
1436         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
1437           and fully reentrant and register bank neutral.
1438         * device/lib/printf_fast.c: added float (not enabled by default),
1439           added compact/slower integer (also not enabled by default),
1440           improved size/speed of fast integer code, other minor changes
1441         * device/include/stdio.h, device/lib/Makefile.in,
1442           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
1443
1444 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
1445
1446         * src/pic16/pcode.c: declaring variables other than at the start of a
1447           block is not supported in C by VC6.
1448
1449 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
1450
1451         * applied a previous patch from Raphael Neider that wasn't included
1452         in the previous commits, which fixes infinite loops within jumptable
1453         improvements,
1454         * made some fixes that previous patches introduced
1455
1456 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
1457
1458         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
1459         that fixes an issue with AOP_PCODE asmop's offset,
1460         * (pic16_popCopyReg): update instance field too,
1461         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
1462         function of pic port,
1463         * (genCmp, genAnd, genAssign),
1464         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
1465
1466 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
1467
1468         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
1469         variables initial values to idata section,
1470         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
1471         variables in some functions. This utilizes parmBytes field of iCode
1472         structure to hold the offset of the variable in stack. (might be
1473         able to use the stack field too?)
1474         * applied patch from Raphael Neider # ### , # ###
1475         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
1476         variable initial values in idata section,
1477         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
1478         for static variables with initial value
1479         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
1480         applied fix in while loop from Raphael Neider.
1481
1482 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
1483
1484         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
1485         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
1486         * src/ds390/ralloc.c (serialRegAssign): spill bits
1487         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
1488         * support/Util/SDCCerr.c,
1489         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
1490         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
1491         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
1492
1493 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
1494
1495         * device/include/sdcc-lib.h: inserted LGPL, added includes
1496           asm/ds390/features.h and asm/mcs51/features.h
1497         * device/include/asm/default/features.h,
1498         * device/include/asm/gbz80/features.h,
1499         * device/include/asm/z80/features.h: added empty _AUTOMEM
1500           and _STATMEM
1501         * device/include/asm/ds390/features.h,
1502         * device/include/asm/mcs51/features.h: added files with defines for
1503           _AUTOMEM and _STATMEM indicating automatic and static storage class
1504         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
1505         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
1506         * src/SDCCicode.c (geniCodeCast),
1507         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
1508         * src/SDCCloop.c (loopInduction): removed unused variable lr
1509         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
1510           to convertToFcall to include char modulo (RFE 1065037), added check
1511           if left operand is unsigned and use abs of literal value
1512         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
1513           as it doesn't work after conversion from peephole.def to peephole.rul
1514         * src/mcs51/gen.c (toBoolean): added check for size,
1515           (genModOneByte): optimized code for signed char modulo a literal
1516           power of 2 (thanks to Hubert Sack),
1517           (genRRC): removed unnecessary "clr c",
1518           (genRLC): replaced "add a,acc" with cheaper "rlc a"
1519         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
1520           jump optimization,
1521           swapped rules 256.c and 256.d,
1522           extended 256.d by using new multiple checks (thanks Erik),
1523           added rules 256.e and 256.f,
1524           updated rule 261.a and 261.b to new generated code
1525         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
1526
1527 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1528
1529         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
1530           induction related bugs, including first part of bug #1074377
1531
1532 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
1533
1534         * applied patch from bug-report #1076292,
1535         * applied patches for genAnd and Goto-optimizations for Raphael
1536         Neider,
1537         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
1538         dump a less iCode information,
1539         * src/pic16/device.h (pic16_options_t): added field debgen,
1540         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
1541         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
1542         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
1543         puclic,
1544         * (various functions): added macros FENTRY and FENTRY2 to functions,
1545         to emit function prologue,
1546         * (various functions): fixed indentation,
1547         * (genNearPointerGet): fixed loading of FSR0,
1548         * (genPackBits): applied patch from Raphael Neider to fix updating
1549         of FSR0 and touching only the modified bits,
1550         * src/pic16/genarith.c (various functions): added macros FENTRY to
1551         emit function prologue in comments,
1552         * src/pic16/pcode.h: added functions debugf2, debugf3,
1553         * src/pic16/ralloc.c: partial fix for packForPush caused
1554         segmentation fault,
1555
1556 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1557
1558         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
1559           <stsp AT users.sourceforge.net> with reversed byte order
1560         * support/regression/tests/rotate.c: added (ds390 skips some tests)
1561
1562 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1563
1564         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
1565           bug #1074377
1566         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
1567         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
1568
1569 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
1570
1571         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
1572
1573 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1574
1575         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
1576           conditions,
1577           (setFromConditionArgs): friendly operand parser for peephole rules,
1578           (operandBaseName, operandsNotRelated): new peephole condition
1579           "operandsNotRelated" -- similar to "operandsNotSame", but takes
1580           architecture specific register naming into account, handles n-way
1581           comparisons, and supports quoted literals
1582         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
1583
1584 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1585
1586         * src/mcs51/peeph.def: fixed bug #1076940
1587
1588 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
1589
1590         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
1591
1592 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1593
1594         Adding support for replacing ljmps with sjmps in jumptables
1595         generated for switch statements. For now you need to set the
1596         environment variable SDCC_SJMP_JUMPTABLE to enable this.
1597         Now 4 algorithms for mcs51 jumptable generation are used:
1598         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
1599         addresses loaded pc-relative for up to 112 cases and stack-pushing
1600         target addresses loaded with offset from dptr for up to 256 cases.
1601
1602         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
1603         * src/mcs51/main.c: adapted constants for switch table generation
1604         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
1605
1606 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
1607
1608         * device/lib/printf_large.c (_print_format): fixed bug 1073386
1609         * support/regression/tests/bug1057979.c: added test for bug 1073386
1610
1611 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
1612
1613         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
1614         compilers
1615
1616 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
1617
1618         * src/pic16/device.h,
1619         * src/pic16/genarith.c,
1620         * src/pic16/glue.c,
1621         * src/pic16/main.c,
1622         * src/pic16/pcode.c: applied patches #1068154 and #1070213
1623
1624 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
1625
1626         Large cummulative patch for pic16 port.
1627         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
1628         to call when a stack overflow occurs,
1629         * (malloc.h): added CVS Id tag,
1630         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
1631         variable,
1632         * added libc directory. The current version of LibC contains string
1633         functions, ctype functions and macros and some functions of the
1634         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
1635         be extensively tested in the future. Standard disclaimer here.
1636         Library is not automatically build yet. But one can build it by
1637         invoking 'make' inside the libc directory.
1638         * added ADC library under libio. Preliminary version yet.
1639
1640         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
1641         * src/pic16/gen.c (aopForRemat): asmop size is filled by
1642         aopForRemat() now and not by pic16_aopOp(),
1643         * (pic16_popGetTempReg): removed warning messgae when allocating
1644         temporary registers, its a buggy feature and will be removed,
1645         * (pic16_popGet): set register instance field in AOP_CRY,
1646         * (pic16_outBitC): fixed for results in size greater than 1,
1647         * (genUminusFloat): fixed for pic16, ported code from mcs51,
1648         * (pic16_storeForReturn): optimized return of 0,
1649         * (genCmp): experimental code for new genCmp which uses PIC18's
1650         special compare&skip instructions. Initial tests fail some times
1651         with variables grater than 1 byte in size, so new code is disabled,
1652         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
1653         a single bit,
1654         * (genCast): began a fix to optimize the casting of a bit to another
1655         bit, now assigning a bitfield to another bitfield will fail, sorry,
1656         * src/pic16/main.c: disabled the use of lr-support feature,
1657         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
1658         * added some function prototypes, added function _debugf prototype,
1659         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
1660         bits with offset (case PO_GPR_BIT),
1661         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
1662         command line,
1663         * (isBankInstruction): modified to return 0 for no banking instruction,
1664         and 1 for banking instruction,
1665         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
1666         caused stop processing pCodes after a inline assembly block,
1667         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
1668         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
1669         registers when it shouldn't,
1670         * src/pic16/ralloc.c (allocReg): add preliminary support for
1671         supporting a limited set of temporary registers,
1672
1673 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1674
1675         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
1676           genDataPointerSet): ensure assignments always copy in MSB to LSB
1677           order,
1678           (loadRegFromAop): recognize CLRH optimization,
1679           (genFunction): optimize RECEIVE iCodes in reentrant functions
1680
1681 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1682
1683         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
1684           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
1685           selected.
1686         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
1687         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
1688           contiguous with data
1689
1690 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1691
1692         * device/lib/_gptrget.c (_gptrget),
1693         * device/lib/_gptrgetc.c (_gptrgetc),
1694         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
1695           instead of sjmp to ret
1696         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
1697           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
1698
1699 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
1700
1701         * .version: bumped version to 2.4.7
1702         * device/lib/_gptrget.c (_gptrget): is now _naked
1703         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
1704         * device/lib/_gptrput.c (_gptrput): is now _naked
1705         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
1706           (createFunction): fixed xstack
1707         * src/SDCCglue.c (emitMaps): set allocation required for bit area
1708         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
1709           or bit either,
1710           (geniCodeCritical): store original interrupt state in an iTemp bit
1711           var unless stack-auto
1712         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
1713         * src/SDCCmain.c (setIncludePath): added include/target to search path
1714         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
1715         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
1716           prototype,
1717           (processFuncArgs): put bit vars in bit area
1718         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
1719           unsaveRBank): fixed xstack,
1720           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
1721           (genFunction, genEndFunction): fixed xstack,
1722           (genAssign): optimization don't walk backwards through mem
1723         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
1724         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
1725         * support/regression/Makefile: also make library (for stack-auto) when
1726           making "all" and added "test-mcs51-xstack-auto"
1727         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
1728         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
1729         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
1730         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
1731         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
1732           make-library by MAKE_LIBRARY
1733         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
1734           regression tests for xstack
1735         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
1736         * support/regression/tests/critical.c: test for critical on mcs51
1737
1738 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1739
1740         * support/regression/ports/ucz80/spec.mk: use include and lib files from
1741           built version of sdcc instead of installed version
1742
1743 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
1744
1745         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
1746         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
1747           vprintf.c now
1748         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
1749         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
1750           WARNING: remove device/lib/build/z80/printf.o by hand when
1751           updating from previous build!
1752         * device/lib/z80/printf.c: updated comment
1753         * support/regression/tests/bug1057979.c: test all ports now
1754         * support/regression/tests/bug1065458.c: file added
1755
1756 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1757
1758         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
1759           *_start and *_end symbols for static functions
1760
1761 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
1762
1763         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
1764           and search crt0.o in all library paths,
1765           (setIncludePath): proper handling of --nostdinc,
1766           (setLibPath): proper handling of --nostdlib
1767         * support/regression/Makefile,
1768         * support/regression/ports/ds390/spec.mk,
1769         * support/regression/ports/gbz80/spec.mk,
1770         * support/regression/ports/hc08/spec.mk,
1771         * support/regression/ports/mcs51/spec.mk,
1772         * support/regression/ports/mcs51-large/spec.mk,
1773         * support/regression/ports/mcs51-stack-auto/spec.mk,
1774         * support/regression/ports/z80/spec.mk: use include and lib files from
1775           built version of sdcc instead of installed version
1776         * doc/sdccman.lyx: fixed typo in --nostdinc
1777
1778 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
1779
1780         * src/pic/pcode.c,
1781         * src/pic/device.c,
1782         * src/pic/ralloc.c,
1783         * src/pic/gen.c : added support to generate code for struct bit fields.
1784
1785 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
1786
1787         * as/xa51/xa_version.h,
1788         * device/include/errno.h,
1789         * device/include/regc515c.h,
1790         * device/lib/_itoa.c,
1791         * device/lib/_ltoa.c,
1792         * device/lib/ser_ir_cts_rts.c,
1793         * sim/ucsim/xa.src/glob.cc,
1794         * sim/ucsim/xa.src/inst_gen.cc,
1795         * sim/ucsim/xa.src/xa_bit.cc,
1796         * sim/ucsim/xa.src/xa_sfr.cc,
1797         * sim/ucsim/z80.src/inst_dd.cc,
1798         * sim/ucsim/z80.src/inst_fdcb.cc,
1799         * support/scripts/keil2sdcc.pl,
1800         * src/pic16/pic16.dsp,
1801         * src/pic16/pic16a.dsp: corrected cvs line endings
1802         * device/lib/printf_large.c: fixed bug 1057979
1803         * src/pic16/gen.c: fixed non-C standard code
1804         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
1805         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
1806         * support/regression/ports/mcs51/support.c: reload T1 asap
1807         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
1808           pdata use and clear idata startup behaviour
1809         * support/regression/tests/bug1057979.c: added
1810
1811 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
1812
1813         * device/examples/ds390/ow390/ad26.h,
1814         * device/examples/ds390/ow390/cnt1d.h,
1815         * device/examples/ds390/ow390/crcutil.c,
1816         * device/examples/ds390/ow390/ownet.h,
1817         * device/examples/ds390/ow390/owsesu.c,
1818         * device/examples/ds390/ow390/swt12.h,
1819         * device/examples/ds390/ow390/swtoper.c,
1820         * device/examples/ds390/ow390/temp10.h,
1821         * device/examples/ds390/ow390/thermodl.c,
1822         * device/examples/ds390/tinitalk/tinitalk.dsp,
1823         * device/examples/ds390/tinitalk/tinitalk.dsw,
1824         * device/examples/mcs51/clock/hw.h,
1825         * device/examples/mcs51/simple2/go.bat,
1826         * device/examples/serialcomm/windows/serial.h,
1827         * device/examples/xa51/dummy.c,
1828         * device/examples/xa51/hello.c,
1829         * device/include/80c51xa.h,
1830         * device/include/at89x051.h: corrected cvs line endings
1831
1832 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
1833
1834         * src/pic16/main.c (options): added command line --gstack, to trace
1835         stack over/under flows,
1836         * added pragma 'wparam' to allow passing first byte of function
1837         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
1838         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
1839         call to __gstack_test function and sets up the symbol as extern,
1840         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
1841         * popaop): added call to pic16_testStackOverflow,
1842         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
1843         wparamList list,
1844         * (genCall, genPcall): now all parameters are passed via stack
1845         except in functions that are pass to wparam pragma in which WREG is
1846         used too,
1847         * (genPcall): REENTRANT flag is checked to see if variable prototype
1848         contains reentrant keyword, don't call a non-reentrant function, via
1849         a reentrant function pointer or vice versa, functions are never
1850         passed via WREG,
1851         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
1852         D.Winkler,
1853         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
1854         SIGSEGV when accessing a NULL register stucture,
1855         * (pic16_printGPointerType): modified to handle UPPER modifier for
1856         function initializers, changed prototype of function to simpler one,
1857         * (pic16_printIvalFuncPtr): check to see if function is already
1858         added in externs list,
1859         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
1860         optimized a move from W to SFR with a move to the same register
1861         later after a CALL,
1862         * device/lib/pic16/debug: NEW directory, contains debug features
1863         which are enabled when linking with libdebug.lib, currently command
1864         line option --gstack enables stack pointer tracing for over/under
1865         flow, corresponding sources are in debug/gstack
1866
1867 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
1868
1869         * doc/sdccman.lyx: updated SDCC version,
1870         * (PIC16 port): update list of command line options,
1871         * src/pic16/device.h (structure pic16_options_t): added field gstack
1872         to enable stack overflow tracing on push/pops,
1873         * src/pic16/device.c (statistics structure): added statistics
1874         structure,
1875         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
1876         pic16_dump_int_registers): increase statistics counters for each
1877         * variable which is encountered
1878         * (pic16_dump_usection): emit each .udata variable to its own udata
1879         section,
1880         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
1881         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
1882         parameters via stack, otherwise use old scheme,
1883         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
1884         assembler output file,
1885         * src/pic16/main.c: added command line options --gstack to enable
1886         push/pop tracing for stack overflow,
1887         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
1888         instructions): added size of each instruction,
1889         * (pic16_countInstruction): estimate size of instructions in
1890         the_pFile list, inline assembly blocks are not counted,
1891         * (pic16_FixRegisterBanking): trace previous register usage, when
1892         banksel optimizations is greater than 0, don't emit a redudant
1893         banksel directive,
1894
1895 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
1896
1897         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
1898         * src/pic16/ralloc.c : applied same fix for pic16.
1899         * src/pic/gen.c : tidied it up a little.
1900
1901 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1902
1903         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
1904         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
1905
1906 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1907
1908         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
1909
1910 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1911
1912         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
1913         non-reentrant function __modsint in the interrupt function (thus
1914         corrupting math operations during serial I/O)
1915         * device/lib/ser_ir.c: as above, changed buffersize
1916         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
1917         256.c,d for zeroing
1918         * doc/Makefile: added option -t for rsync
1919
1920 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1921
1922         * src/SDCCast.h (struct ast),
1923         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
1924
1925 2004-10-20 Borut Razem <borut.razem AT siol.net>
1926
1927         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
1928         package
1929
1930 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
1931
1932         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
1933         makefile targets,
1934         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
1935         support functions to replace long sequences of MOVFF's from access
1936         bank registers to stack and vice versa,
1937         * src/pic16/device.h: added new field opt_flags, where optimization
1938         flags can be set to enable certain features,
1939         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
1940         * pBlock, (genFunction, genEndFunction): surroung loop for
1941         saving/loading used registers in stack with PC_INFO pCodes,
1942         INF_LREGS. Code in between can then be optimized by pCode optimizer
1943         to support function calls,
1944         * (genDataPointerSet): fixed bug which loaded float fields in
1945         structures with corrupt data,
1946         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
1947         in a standard way debug info on stderr. Feature used for developing
1948         and debugging only,
1949         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
1950         obsolete chunks of code,
1951         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
1952         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
1953         * pic16/src/pcode.c (pic16_newpCodeInfo,
1954         * (pic16_newpCodeOpLocalRegs),
1955         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
1956         feature,
1957         * (pic16_pCodeConstString): printing of the initial value of a
1958         symbol as a comment is inhibited since parsing was already done by
1959         copyStr and output is corrupt,
1960         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
1961
1962 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1963
1964         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
1965
1966 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
1967
1968         * as/mcs51/lkarea.c: removed old K&R style,
1969           (lnksect): changed check on boundary error,
1970           (lnksect2): changed check on boundary error,
1971           (lnksect2): extend XSTK to end of page if size = 1
1972         * as/mcs51/lkmain.c: removed old K&R style,
1973           (Areas51): create l_IRAM symbol
1974         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
1975         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
1976           model-mcs51-stack-auto, added model-mcs51-xstack-auto
1977         * device/lib/_mullong.c: added version to be compiled with xstack
1978         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
1979         * device/lib/mcs51/crtxclear.asm: clear pdata as well
1980         * device/lib/mcs51/crtxstack.asm: fixed comment
1981         * src/SDCCglue.c: maxInterrupts defaults to 0,
1982           (emitMaps): added pdata,
1983           (createInterruptVect): (re)moved default,
1984           (glue): added pdata,
1985           (glue): moved __start__xstack to XSTK with default size 1
1986         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
1987           and options.float_rent when options.stackAuto is set,
1988           (linkEdit): only write XDATA_NAME if provided on command line
1989         * src/SDCCmem.h,
1990         * src/SDCCmem.c: added pdata
1991         * src/port.h: added pdata_name to PORT
1992         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
1993           (saveRegisters, unsaveRegisters): removed usage of B,
1994           (genMinus): fixed accumulator clash,
1995           (genJumpTab): added comment, this needs another look
1996         * src/mcs51/gen.c: added check for "B in use" paranoia,
1997           added pushB() and popB()
1998         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
1999           chance
2000         * src/avr/main.c,
2001         * src/ds390/main.c,
2002         * src/hc08/main.c,
2003         * src/mcs51/main.c,
2004         * src/pic/main.c,
2005         * src/pic16/main.c,
2006         * src/xa51/main.c,
2007         * src/z80/main.c: (reset_regparms) made void parameter explicit and
2008           added PSEG (PAG,XDATA) or NULL to port specifier
2009         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
2010         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
2011           (_mcs51_genInitStartup): removed __start__xstack equ,
2012           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
2013         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
2014         * src/z80/gen.c (_rleAppend): fixed warnings
2015         * support/regression/tests/zeropad.c: added pdata test
2016         * .version: bumped to 2.4.6
2017
2018 2004-10-17 Borut Razem <borut.razem AT siol.net>
2019
2020         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
2021         as a part of nightly build
2022
2023 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
2024
2025         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
2026         WREG holds the first byte function parameters,
2027         * (aopForSym): take special case for symbols which are in FARSPACE
2028         but in CODESPACE too,
2029         * (assignResultValue): modified to take into account _G.useWreg,
2030         * (genCall): don't use wreg for parameter passing when function is
2031         declared as reentrant, too, added optimization INCF to stack
2032         pointer when stack parameter count is 1,
2033         * (genFunction, genEndFunction): refurnished and fixed to not using
2034         wreg for passing parameters when function has varargs or is
2035         reentrant, fixed bug with symbol name compare for generating
2036         functions in absolute address,
2037         * (pic16_storeForReturn): refurnished,
2038         * (genCmp): began writing a new version of the function, not ready
2039         yet, therefore it is disabled,
2040         * (genAssign): do not read code memory when assigning a function to
2041         a pointer function,
2042         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
2043         array of characters, not pointer,
2044         * (pic16initialComments): in debug mode emit an .ident directive for
2045         the assembler,
2046         * (_process_pragma): emit a new warning type (internal to pic16)
2047         when setting stack to default length, emit a similar warning when
2048         placing a function at absolute address and address is not word aligned
2049         * (_pic16_parseOptions): added 'return TRUE' statement,
2050         * (_pic16_linkEdit): if compiling a source, then add the source's
2051         file object, first in the list of objects to link,
2052
2053 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
2054
2055         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
2056         * src/pic/main.c : removed VC warning.
2057         * src/pic/gen.c : changed comment.
2058
2059 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
2060
2061         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
2062         reference to a deprecated symbol _GPTRREG was causing failure to
2063         link. Thanks G. M. Gallant for the info.
2064
2065 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
2066
2067         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
2068         comments for Bugs item #954788.
2069
2070 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
2071
2072         * src/pic16/device.c (pic16_dump_gsection,
2073         * pic16_groupRegistersInSection): handle symbols declared to be in
2074         access bank differently,
2075         * src/pic16/gen.c (struct _G): added field resDirect,
2076         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
2077         send values read from stack directly to result and don't allocate
2078         temporary values,
2079         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
2080         same registers,
2081         * (pic16_sameRegsOfs): NEW,
2082         * (freeAsmop): if _G.resDirect is set then do not mark registers as
2083         free because they were not allocated from temporary pool,
2084         * pic16_popRegFromString): workaround to fix a problem with
2085         allocating variables twice or never,
2086         * (genGenPointerGet): using PRODL instead of FSR0H,
2087         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
2088         instead of FSR0H,
2089         * (genAssign): take advantage of the _G.resDirect flag,
2090         * (genCast): around line 11844, use mov2f instead of directly
2091         MOVFF'ing between operands to account for literal values,
2092         * src/pic16/genutils.c: some new debug functions for gpsim have been
2093         added,
2094         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
2095         float with integer part only,
2096         * src/pic16/main.c (_process_pragma): handle pragma udata access to
2097         place variables in access bank
2098         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
2099         updated sources to reflect recent changes in gen.c
2100
2101 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
2102
2103         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
2104         sources that searched for headers in installation path, now the
2105         device/include/pic16 is used,
2106         * src/pic16/glue.c (pic16glue),
2107         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
2108         .line directives if not in debug mode, this suppresses assembler's
2109         warnings for ignored directives
2110
2111 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
2112
2113         * src/port.h: made reset_regparms prototype void parameter explicit.
2114         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
2115         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
2116         * doc/sdccman.lyx: documented warning disabling and how to use
2117           printf_large to make it print floats.
2118         * device/include/stdbool.h: NEW
2119         * device/lib/_atof.c,
2120         * device/lib/_divuint.c,
2121         * device/lib/_divulong.c,
2122         * device/lib/expf.c,
2123         * device/lib/printf_large.c,
2124         * device/lib/sincosf.c,
2125         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
2126         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
2127           a completely reentrant lib.
2128
2129 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
2130
2131         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
2132         * device/include/pic16/stdio.h: fixed bug with colon
2133
2134 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
2135
2136         * device/include/pic16/stdio.h,
2137         * device/include/pic16/stdlib.h,
2138         * device/include/pic16/math.h: NEW
2139         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
2140         declared as _naked to reduce overhead
2141         * device/lib/Makefile.in (target port-specific-objects-pic16):
2142         changed * to *.* so to ignore the CVS directory,
2143         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
2144         stacked variables back in stack,
2145         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
2146         corruption
2147
2148 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
2149
2150         * .version: bumped version number to 2.4.5
2151         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
2152         * support/Util/SDCCerr.c (messages structure): added entry for
2153         W_POSSBUG2
2154
2155         Large cumulative patch for pic16 port and libraries.
2156         * device/include/pic16/sdcc-lib.h,
2157         * device/include/pic16/stdarg.h,
2158         * device/include/asm/pic16/features.h,
2159         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
2160         * device/include/pic16/float.h: changes reentrant keyword with
2161         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
2162         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
2163         updated target build-libraries to include objects from gptr,
2164         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
2165         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
2166         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
2167         all function headings,
2168         * src/SDCCmain.c: added global parameter userIncDirsSet,
2169         * (parseCmdLine): when option -I is encountered add directory to
2170         userIncDirsSet too,
2171         * src/version.awk: added space between control and long,
2172         * src/pic16/NOTES: added some notes for the port,
2173         * src/pic16/gen.c: added prototype for mov2fp function,
2174         * (fReturnpic16[]): properly named return value registers,
2175         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
2176         * (aopForSym): added code to handle symbols with onStack flag set,
2177         symbols onStack are allocated PTRSIZE bytes,
2178         * (aopFreeAsmop): handles special case where asmops are stack objects,
2179         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
2180         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
2181         added argument lock to trace flaws in allocating temporary registers
2182         when developing port,
2183         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
2184         * (pic16_popRegFromString): reenabled allocating a direct register
2185         from string,
2186         * (assignResultValue): various beautifications,
2187         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
2188         referenced function argument,
2189         * (genIpush): reenabled to allow stacked arguments, handles only
2190         ic->parmPush iCodes,
2191         * (genCall, genPcall): major changes to allow for variable argument
2192         functions, fixed a bug with falsely restoring stack pointer after
2193         returning from call,
2194         * (genFunction): pending code for critical function,
2195         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
2196         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
2197         * (genNearPointerGet): fixed bug with indirect reading, was always
2198         reading from INDF0
2199         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
2200         pointers,
2201         * (genAddrOf): rewrote code to take address of a stacked function parameter
2202         * (genCast): fixed casting to generic pointer type,
2203         * src/pic16/gen.h: added AOP_STA,
2204         * (struct asmop): added field stk,
2205         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
2206         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
2207         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
2208         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
2209         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
2210         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
2211         generic pointers,
2212         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
2213         and library paths,
2214         * (pic16_port structure): generic pointer size is set to 3,
2215         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
2216         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
2217         compiler warning,
2218         * src/pic16/ralloc.c (allocReg): prevent allocating register when
2219         operand is an iTemp,
2220
2221 2004-09-24 Martin Helmling <mh AT octo-soft.de>
2222
2223         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
2224         * debugger/mcs51/simi.c: addapt new syntax of s51
2225
2226 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
2227
2228         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
2229         * src/pic16/pcode.c: commented out some calls to free() in order to
2230         fix bug #989576,
2231
2232 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2233
2234         * src/SDCCicode.h,
2235         * src/SDCCicode.c (isiCodeInFunctionCall),
2236         * src/avr/ralloc.c (selectSpil),
2237         * src/pic/ralloc.c (selectSpil),
2238         * src/pic16/ralloc.c (selectSpil),
2239         * src/ds390/ralloc.c (selectSpil),
2240         * src/hc08/ralloc.c (selectSpil),
2241         * src/xa51/ralloc.c (selectSpil),
2242         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
2243         stack in the middle of a function call sequence (fixes bug #1020268)
2244         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
2245         costs associated with the minimum switch case.
2246
2247 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2248
2249         * src/SDCC.lex: fixed bug #1030549
2250
2251 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2252
2253         * src/SDCCcse.h (struct cseDef),
2254         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
2255         over a function call if the CSE is derived from a symbol whose
2256         address has been taken (fixes bug #1029883)
2257         * support/regression/tests/bug-1029883: a new regression test for
2258         this bug
2259
2260 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2261
2262         * src/hc08/gen.c (emitinline): fixed bug #1029778
2263         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
2264         to a cast object is no longer a syntax error ("fixes" bug #1030006,
2265         and starts toward RFE #905167)
2266
2267 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
2268
2269         * src/pic16/gen.c (mov2f): New function to move an operand to
2270         another without considering if it is a literal or a register,
2271         * (pic16_sameRegs): don't check if they are both AOP_REG,
2272         * (AccRsh): removed andmask=0 lines,
2273         * (genLeftShift): duplicated to be improved in future versions,
2274         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
2275         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
2276         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
2277         * (pic16initMnemonics): added initialization for POC_INFSNZW,
2278         * (insertBankSwitch): fixed inserting banksel directives algorithm
2279         for instructions that follow a skip instruction, this fixes a report
2280         for broken subtraction code generation,
2281         * src/pic16/ralloc.c (deassignLRs): do not free register if current
2282         iCode is a left op, just in case result and right share the same
2283         registers
2284
2285 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2286
2287         * src/hc08/main.c,
2288         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
2289         preservation of HX
2290         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
2291         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
2292         on 2004-09-12; it was buggy
2293
2294 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
2295
2296         * src/SDCCsymt.h: removed RESULT_CHECK
2297         * src/SDCCast.c,
2298         * src/SDCCglue.c,
2299         * src/SDCCval.c,
2300         * src/pic/glue.c,
2301         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
2302
2303 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
2304
2305         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
2306         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
2307         configuration values no more rejected by compiler, they are assigned
2308         to configuration registers with a warning message instead,
2309         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
2310         the for-loop so last conf register is emitted too,
2311         * (_pic16_initPaths): link library libsdcc.lib by default,
2312         * (_hasNativeMulFor): modified test for multiplication according to
2313         Raphael Neider's remarks. Integer multiplication is also done with
2314         support functions,
2315         * device/include/pic16/pic18fregs.h: corrected type error in while
2316         testing and including 18f6720 header file
2317
2318 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
2319
2320         * src/pic16/device.h (pic16_options): removed field use_crt,
2321         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
2322         until an optimization to handle single bits is added,
2323         * (pic16_loadFSR0): moved before genUnpackBits,
2324         * (genAnd): some white lines removed,
2325         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
2326         leave_reset flags in pic16_options when using crt modules,
2327
2328 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
2329
2330         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
2331           for bugs 898889 & 979599. Also used some safer print instructions.
2332
2333 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
2334
2335         * src/pic16/device.h (pic16_options_t): added field use_crt,
2336         crt_name, no_crt,
2337         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
2338         catch a probable future bug,
2339         * src/pic16/gen.c: aopIdx function commented out,
2340         * (genAssign): commented out old code which used aopIdx,
2341         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
2342         code, added if conditionals to take into account the --use-crt
2343         command line options,
2344         * src/pic16/main.c (pic16_optionsTable): added new command line
2345         options, --use-crt= and --no-crt,
2346         * (_pic16_linkEdit): now the proper crt object is added in the
2347         linker command line except than when --no-crt is specified,
2348         * src/pic16/pcode.c,
2349         * src/pic16/pcode.h: added some structures and functions for a new
2350         optimization scheme to compansate for instruction overhead between
2351         same iCodes, this scheme is currently under development and is not
2352         working in any way,
2353         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
2354         to && operator,
2355         * device/lib/pic16/startup/crt0i.c,
2356         * device/lib/pic16/startup/crt0iz.c: added global char variable
2357         __uflags to force the generation of an idata section
2358
2359 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
2360
2361         * doc/Makefile,
2362         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
2363         * doc/sdccman.lyx: updated sdcc version to 2.4.4
2364
2365 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2366
2367         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
2368         Frieder) and clarified the default code optimization mode
2369
2370 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2371
2372         * src/SDCC.lex (doPragma, process_pragma),
2373         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
2374         "opt_code_size", and "opt_code_balanced"
2375         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
2376         regrouped options by category, added support for category headers
2377         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
2378         and "--opt-code-size"
2379         * doc/sdccman.lyx: documented these new options and pragmas
2380         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
2381         preference into account
2382
2383 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2384
2385         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
2386           geniCodePreDec): Fixed bug 904237 by generating a warning
2387         * src/SDCCerr.h,
2388         * src/SDCCerr.c: added warning W_SIZEOF_VOID
2389
2390 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
2391
2392         * src/pic/device.c : When no max ram set validate full memory range.
2393         * src/pic/pcode.c,
2394         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
2395
2396 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2397
2398         * device/lib/_gptrget.c,
2399         * device/lib/_gptrput.c: updated comment
2400         * device/lib/calloc.c,
2401         * device/lib/free.c,
2402         * device/lib/malloc.c,
2403         * device/lib/realloc.c: added LGPL, made them reentrant-safe
2404         * src/SDCCcse.c (cseBBlock),
2405         * src/SDCCicode.c (printOperand, geniCodeArray),
2406         * src/SDCCicode.h (struct operand): fixed bug 868103
2407         * support/regression/tests/bug-868103.c: added
2408         * src/SDCCast.c (searchLitOp),
2409         * src/SDCCcse.h (struct cseDef),
2410         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
2411         * src/SDCCicode.h (struct operand),
2412         * src/SDCCsymt.h (struct sym_link),
2413         * src/avr/gen.c (hasInc),
2414         * src/ds390/gen.c (hasInc),
2415         * src/hc08/gen.c (genPlusIncr, hasInc),
2416         * src/mcs51/gen.c (hasInc),
2417         * src/pic16/glue.c (pic16_printIvalChar),
2418         * src/pic16/ralloc.c (regWithIdx),
2419         * src/xa51/gen.c (hasInc) : removed warnings
2420         * src/SDCCast.c (createBlock): added comment ???
2421         * src/hc08/ralloc.c: updated comments
2422
2423 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2424
2425         * doc/sdccman.lyx: updated section on switch statements, added
2426         section about semaphore locking
2427         * doc/Makefile: added option -info for latex2html
2428         * device/lib/_gptrget.c,
2429         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
2430
2431 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
2432
2433         * src/pic/device.h,
2434         * src/pic/device.c,
2435         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
2436          maxram is less than 0x100.
2437
2438 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
2439
2440         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
2441
2442 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2443
2444         * src/port.h,
2445         * src/mcs51/main.c,
2446         * src/ds390/main.c,
2447         * src/z80/main.c,
2448         * src/hc08/main.c,
2449         * src/pic/main.c,
2450         * src/pic16/main.c,
2451         * src/avr/main.c,
2452         * src/xa51/main.c
2453         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
2454         a jump table is the best form for a switch statement, including
2455         automatic insertion of missing cases to make the case range
2456         continuous. Developed in collaboration with Frieder Ferlemann.
2457
2458 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2459
2460         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
2461         accumulator result if it needs sign extension
2462
2463 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2464
2465         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
2466
2467 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2468
2469         * device/lib/gbz80/printf.c,
2470         * device/lib/z80/printf.c: removed define for NULL
2471
2472 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2473
2474         * as/xa51/xa_link.c,
2475         * device/examples/ds390/ow390/ad26.c,
2476         * device/examples/ds390/ow390/cnt1d.c,
2477         * device/examples/ds390/ow390/counter.c,
2478         * device/examples/ds390/ow390/ds2480.h,
2479         * device/examples/ds390/ow390/ds2480ut.c,
2480         * device/examples/ds390/ow390/findtype.c,
2481         * device/examples/ds390/ow390/gethumd.c,
2482         * device/examples/ds390/ow390/owllu.c,
2483         * device/examples/ds390/ow390/ownetu.c,
2484         * device/examples/ds390/ow390/swt12.c,
2485         * device/examples/ds390/ow390/swtloop.c,
2486         * device/examples/ds390/ow390/temp.c,
2487         * device/examples/ds390/ow390/temp10.c,
2488         * device/examples/ds390/ow390/thermo21.c,
2489         * device/examples/ds390/ow390/tinilnk.c,
2490         * device/examples/ds390/ow390/tstfind.c,
2491         * device/examples/serialcomm/windows/serial.cpp,
2492         * device/examples/serialcomm/windows/test_serialcomm.cpp,
2493         * device/include/reg51.h: fixed line endings for cvs
2494
2495 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2496
2497         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
2498         packRegsForAccUse, packRegisters): new accumulator register
2499         packing algorithm
2500         * support/regression/ports/hc08/support.c (_putchar): suppress
2501         warning of unused variable
2502         * src/SDCCicode.c: added SWAP entry to codeTable
2503
2504 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
2505
2506         * device/lib/sprintf.c: forgot to add this file before previous commit
2507
2508 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
2509
2510         * src/pic16/gen.c (genPackBits): added operand right in function
2511         parameters, load result directly if p_type is POINTER (that is
2512         called by genNearPointerSet)
2513         * (genUnPackBits): added operand left in function parameters,
2514         * (genNearPointerGet, genNearPointerSet): prevent the loading of
2515         FSR0 if accessing bitfields,
2516
2517 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
2518
2519         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
2520           _print_format; updated printf, sprintf, vsprintf
2521         * device/include/asm/default/features.h: corrected comment/define
2522         * device/lib/Makefile.in: added sprintf.c
2523         * device/lib/libsdcc.lib: added sprintf module
2524         * device/lib/printf_large.c,
2525         * device/lib/vprintf.c,
2526         * device/lib/sprintf.c: totally refactored printf_large and vprintf
2527           into these 3 files
2528         * support/regression/Makefile: changed ALL_PORTS into a usefull default
2529         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
2530         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
2531           hc08 test
2532         * support/regression/tests/zeropad.c: define idata as data for hc08
2533
2534 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2535
2536         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
2537         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
2538         labels are referenced at least once (even if a reference is not found)
2539         * src/hc08/gen.c (emitcode): set isComment flag for comments
2540         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
2541         loads), rules 6a..6b (optimize jumps to return)
2542
2543 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2544
2545         * device/lib/acosf.c (acosf),
2546         * device/lib/asinf.c (asinf),
2547         * device/lib/atanf.c (atanf),
2548         * device/lib/ceilf.c (ceilf),
2549         * device/lib/cosf.c (cosf),
2550         * device/lib/coshf.c (coshf),
2551         * device/lib/cotf.c (cotf),
2552         * device/lib/fabsf.c (fabsf),
2553         * device/lib/floorf.c (floorf),
2554         * device/lib/log10f.c (log10f),
2555         * device/lib/logf.c (logf),
2556         * device/lib/sinf.c (sinf),
2557         * device/lib/sinhf.c (sinhf),
2558         * device/lib/sqrtf.c (sqrtf),
2559         * device/lib/tanf.c (tanf),
2560         * device/lib/tanhf.c (tanhf),
2561         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
2562         replaced all instances of "reentrant" in the library functions
2563         defined in math.h with this macro.
2564         * support/regression/tests/float_trans.c: reenabled test for hc08
2565
2566 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
2567
2568         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
2569         erroneously deleted
2570
2571 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2572
2573         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
2574         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
2575         multi-byte volatile operands are used
2576         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
2577         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
2578         initialization to area GSINIT0 so that it would always precede
2579         any static initializers in GSINIT
2580         * support/regression/tests/zeropad.c: fixed idata define for hc08
2581         * support/regression/tests/bug-927659.c,
2582         * support/regression/tests/float_trans.c: disabled tests for hc08
2583         pending missing library routines
2584         * .version: increased version number to 2.4.4 - hc08 port now passes
2585         regression tests
2586
2587
2588 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
2589
2590         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
2591         * Makefile.common.in,
2592         * as/Makefile,
2593         * as/hc08/Makefile.in,
2594         * as/mcs51/Makefile.in,
2595         * as/z80/Makefile.in,
2596         * debugger/mcs51/Makefile.in,
2597         * device/include/Makefile.in,
2598         * device/lib/Makefile.in,
2599         * doc/Makefile,
2600         * link/Makefile,
2601         * link/z80/Makefile.in,
2602         * packihx/Makefile.in,
2603         * sim/ucsim/main_in.mk,
2604         * sim/ucsim/avr.src/Makefile.in,
2605         * sim/ucsim/doc/Makefile.in,
2606         * sim/ucsim/gui.src/serio.src/Makefile.in,
2607         * sim/ucsim/hc08.src/Makefile.in,
2608         * sim/ucsim/s51.src/Makefile.in,
2609         * sim/ucsim/xa.src/Makefile.in,
2610         * sim/ucsim/z80.src/Makefile.in,
2611         * src/Makefile.in,
2612         * support/cpp2/Makefile.in,
2613         * support/librarian/Makefile,
2614         * support/makebin/Makefile: added DESTDIR to the install path proposed
2615         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
2616         * doc/sdccman.lyx: added DESTDIR documentation
2617
2618 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
2619
2620         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
2621         instruction for interrupt handlers, use fast returns when returning
2622         from high priority interrupts
2623
2624 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2625
2626         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
2627         code generation
2628         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
2629         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
2630         bugs, ported much of Bernhard's code from mcs51
2631         * src/mcs51/gen.c (genSend),
2632         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
2633         than one when calling a reentrant function
2634         * device/lib/_mullong.c: defined an alternate struct layout for big
2635         endian ports (hc08)
2636
2637 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2638
2639         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
2640         test
2641
2642 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2643
2644         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
2645         are sane and complete before asking the port its prefered parameter
2646         passing method (fixes bug #1017633)
2647         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
2648         and _ret3
2649
2650 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2651
2652         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
2653         problem in bitfields >= 8 bits.
2654
2655 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
2656
2657         * src/SDCCsymt.c: undid changes that were not meant to be committed
2658
2659 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
2660
2661         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
2662
2663 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
2664
2665         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
2666           copied and wrong bit got inverted
2667
2668 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2669
2670         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
2671         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
2672         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
2673         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
2674         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
2675         assignments to bitfields at known addresses
2676         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
2677         reads from bitfields at known addresses
2678         * src/hc08/ralloc.c (packRegisters),
2679         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
2680         genhc08Code): optimize pointer get values used as conditionals
2681         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
2682         and branch
2683
2684 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2685
2686         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
2687         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
2688         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
2689         as conditionals
2690
2691 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2692
2693         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
2694
2695 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2696
2697         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
2698         related problems
2699
2700 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
2701
2702         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
2703
2704 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2705
2706         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
2707         mcs51 port
2708
2709 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
2710
2711         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
2712
2713 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2714
2715         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
2716         cases use more compact code.
2717
2718 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
2719
2720         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
2721
2722 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2723
2724         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
2725
2726 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2727
2728         * src/SDCCsymt.h,
2729         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
2730         parameter of changePointer() from symbol* to sym_link*
2731         * src/SDCCast.c (decorateType): call changePointer() for CAST op
2732         * src/SDCCsymt.c (compareType): void* type is castable to other
2733         pointers, but not necesarily an exact match.
2734         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
2735         is no longer blindly treated as an exact match.
2736         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
2737
2738 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
2739
2740         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
2741
2742 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
2743
2744         * src/pic/gen.c,
2745         * src/pic/pcode.c,
2746         * src/pic/ralloc.h,
2747         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
2748
2749 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
2750
2751         * src/pic/device.c,
2752         * src/pic/device.h,
2753         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
2754
2755 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2756
2757         * src/mcs51/gen.c (emitcode): fixed bug #992819
2758
2759 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
2760
2761         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
2762           there's no need to make it worse
2763
2764 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2765
2766         * src/mcs51/ralloc.c (deassignLR),
2767         * src/ds390/ralloc.c (deassignLR),
2768         * src/hc08/ralloc.c (deassignLR),
2769         * src/z80/ralloc.c (deassignLR),
2770         * src/pic/ralloc.c (deassignLR),
2771         * src/pic16/ralloc.c (deassignLR),
2772         * src/avr/ralloc.c (deassignLR),
2773         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
2774         rlivePoint): fixed another part of bug #971834
2775
2776 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2777
2778         * src/z80/main.c: enabled "critical" keyword
2779         * src/z80/mappings.i,
2780         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
2781         functions (fixes bug #979646)
2782         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
2783
2784 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2785
2786         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
2787           such as c:\mydir.
2788
2789 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
2790
2791         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
2792           doesn't disable too much optimizations
2793
2794 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
2795
2796         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
2797
2798 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
2799
2800         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
2801
2802 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
2803
2804         * src/pic/gen.c tidied up tabs
2805         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
2806         * src/pic/main.c tidied up tabs
2807         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
2808         * src/pic/pcoderegs.c tidied up tabs
2809         * src/pic/ralloc.c tidied up tabs
2810
2811 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
2812
2813         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
2814         to S_FIXED for pic16 port and when symbol is not in level 0,
2815         allocate for S_REGISTER storage class and pic16 port, too,
2816         * src/pic16/device.h: prototype for checkSym,
2817         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
2818         * (pic16_assignConfigWordValue): test the value and the mask to
2819         validate that the value is suitable for the configuration word,
2820         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
2821         collect extern declared symbols, don't emit symbol twice, check
2822         first if symbol is in publics set first,
2823         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
2824         * added command line '--fstack' which enables an experimental
2825         feature for stack access, too buggy to be used yet...
2826         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
2827         * (pic16_allocDirReg): when register has storage class S_REGISTER
2828         allocate in pic16_dynAccessRegs,
2829         * device/include/pic16/pic18f????.h: modified configuration word
2830         naming convention, words started as CONFIG0H but should be CONFIG1H
2831
2832 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
2833
2834         * device/include/mcs51reg.h: fixed bug 970993
2835
2836 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
2837
2838         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
2839         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
2840         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
2841         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
2842         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
2843         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
2844           error/warning numbers,
2845           added function setWarningDisabled()
2846         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
2847         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
2848           _memcmp.c _memmove.c calloc.c realloc.c free.c
2849         * support/regression/tests/malloc.c: added tests for new functionality
2850         * support/regression/tests/zeropad.c: added tests for truncated initializers
2851           and initialized char arrays starting with '\x0'
2852         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
2853
2854 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
2855
2856         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
2857
2858 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2859
2860         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
2861         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
2862         peephole 177.e. Thanks to anonymous
2863
2864 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
2865
2866         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
2867         function isn't used in the source but referenced as a
2868         variable initializer then declare it as extern in .asm file
2869
2870 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
2871
2872         * .version: increased version number to 2.4.3
2873
2874         Adding version extension according to ChangeLog CVS revision
2875         * src/Makefile.in (target all): added dependency 'version.h'
2876         * (rule version.h): added rule to create version.h from ChangeLog,
2877         * (rule dep): added dependency version.h,
2878         * src/version.awk: AWK script to create version.h
2879         * src/SDCCdwarf2.c (dwWriteModule),
2880         * src/SDCCglue.c (initialComments),
2881         * src/SDCCmain.c (printVersionInfo): modified to write after
2882         version string the version extension number,
2883         * src/SDCCutil.c: included "version.h"
2884         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
2885         number,
2886         * src/SDCCutil.h: added prototype for getBuildNumber
2887
2888         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
2889         includeDirsSet, too,
2890         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
2891         const char [] is found in function prototype...
2892
2893         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
2894         moving to WREG with source is already in WREG,
2895         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
2896         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
2897         * (aopForSym): stack'ed symbols are partially supported, added
2898         if-clause to support symbols in FARSPACE,
2899         * (sameRegs): added test for AOP_ACC to see if registers are same,
2900         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
2901         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
2902         * (pic16_popRegFromString): will not allocate a new register if it
2903         doesn't find one by name, bug may have introduced...
2904         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
2905         * (genIpush): revived to use pic16 port's stack,
2906         * (genAddrOf): added incomplete case for stack'ed operand,
2907         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
2908         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
2909         can handle multibyte operands,
2910         * src/pic16/glue.c (pic16_printIval*): some debug info added,
2911         * (pic16initialComments): added message for MPLAB compatibility
2912         mode enabled,
2913         * src/pic16/main.h: prototype for pic16_mplab_comp,
2914         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
2915         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
2916         * (_pic16_linkEdit): NEW, handles link stage, transferred here
2917         because of increased complexity of procedure,
2918         * (_process_pragma): stack pragma changed to format 'stack pos len',
2919         emit symbol '_stack_end' to conform with gplink,
2920         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
2921         to search for register,
2922         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
2923         PO_GPR_REGISTER,
2924         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
2925         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
2926         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
2927         case for PO_GPR_REGISTER,
2928         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
2929         dies, the new era is ahead !...
2930         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
2931         pic16_dynInternalRegs,
2932         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
2933         * (pic16_allocDirReg): minor optimizations and bug fixes,
2934         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
2935
2936         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
2937         load stack and frame pointer with address of 'stack_end' symbol
2938
2939 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
2940
2941         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
2942         without source code but only variable initializers
2943
2944 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
2945
2946         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
2947         external are not declared as extern to reduce overhead while linking
2948
2949 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
2950
2951         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
2952
2953 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
2954
2955         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
2956           Yee Keat for the patch
2957         * src/SDCCast.c (decorateType): fixed bug #979599
2958         * src/ds390/gen.h: removed local fReturnSizeDS390
2959         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
2960         * src/ds390/gen.c (genAnd, genOr, genXor),
2961         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
2962
2963 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
2964
2965         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
2966         add relFilesSet to $3, manipulate $2 to handle linking of object
2967         files without source files in command line,
2968         * device/include/pic16 (all headers): added ID location macros,
2969         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
2970         entries for ID location bytes,
2971         * (pic16_assignIdByteValue): NEW,
2972         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
2973         added field dumpcalltree to pic16_options_t,
2974         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
2975         is used instead of pic16_Gstack_base_addr, check if (ifx) before
2976         emitting rFalseIfx label after check_carry label,
2977         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
2978         pic16_emitDIRegs), NEW
2979         * (pic16glue): dump .calltree file when option --calltree found,
2980         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
2981         * (_pic16_genAssemblerPreamble): emit ID locations after
2982         configuration registers,
2983         * (pic16_linkCmd): modifications of the link command,
2984         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
2985         * (pic16_pCodeInitRegisters): don't init stack registers,
2986         * (pic16_findPrevInstruction): fixed bug,
2987         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
2988         bug with immediate registers,
2989         * (buildCallTree): traces stack push and pop,
2990         * (pct2): dump also stack usage for each function,
2991         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
2992         * (pic16_allocDirReg): various modifications,
2993         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
2994         fixed to 1,
2995
2996 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
2997
2998         * src/pic16/pcode.c: removed buggy double colon
2999
3000 2004-07-01 Borut Razem <borut.razem AT siol.net>
3001
3002         * support/scripts/sdcc.nsi: added include/pic16 to setup
3003
3004 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
3005
3006         * device/lib/Makefile.in: fixed bug in target objects-pic16,
3007         * device/lib/pic16/Makefile: prefixed with dash (-) command under
3008         target 'clean',
3009         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
3010         specific command line arguments. Also added sample lkr script
3011         for placing a variable at a specific memory bank.
3012         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
3013         at a specific memory bank,
3014         * (pic16_dump_isection): fixed bug which caused string literals to
3015         be omitted when dumping idata section,
3016         * (pic16_groupRegistersInSection): added code to handle registers
3017         in specific memory banks,
3018         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
3019         public, all references are renamed too,
3020         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
3021         AOP_DPTR2,
3022         * (pic16_storeForReturn): added case to handle when dest is WREG,
3023         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
3024         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
3025         pic16_rel_udata, check to see if that register is marked as being
3026         a member of a specific memory bank,
3027         * (pic16_printIvalCharPtr): added code to add string literals either
3028         to code or the idata sections,
3029         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
3030         also accept the 'udata' pragma,
3031         * src/pic16/main.h: new structure types sectName and sectSym
3032         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
3033         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
3034         * (pic16_findPrevInstruction): fixed, it returned nothing,
3035         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
3036         instruction combinations,
3037         * (pic16_FixRegisterBanking): heavily reorganised,
3038         * (pic16_AnalyzeBanking): if generating banksel directives is
3039         disabled, then don't call FixRegisterBanking at all,
3040         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
3041         completely removed,
3042         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
3043
3044 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
3045
3046         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
3047         Phuah Yee Keat <yk.phuah AT nestac.com>
3048
3049 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3050
3051         * src/pic16/glue.c (pic16createInterruptVect): function now emits
3052         correctly the IVT even if it is relocated to some other location
3053
3054 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3055
3056         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
3057         * device/include/pic16/pic18f2220.h: NEW,
3058         * device/lib/pic16/libdev/pic18f2220.c: NEW,
3059         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
3060         * src/pic16/device.c (struct Pics16): added info for 18f2220,
3061         * src/pic16/device.h (struct pic16_options): added ivt_loc and
3062         nodefaultlibs, ivt_loc is the location of the interrupt vector
3063         table, and nodefaultlibs signs that default libraries should not be
3064         linked in link stage,
3065         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
3066         according to --ivt-loc argument,
3067         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
3068         when pragma stack is found,
3069
3070 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3071
3072         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
3073         256 (range check), 257 (do while), 258.a-f (bit banging
3074         f.e. on 3-wire SPI bus)
3075
3076 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3077
3078         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
3079         variables used exclusively within a loop
3080
3081 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
3082
3083         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
3084
3085 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3086
3087         * src/SDCClrange.c (computeClash): fixed bug #971834
3088
3089 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3090
3091         * src/mcs51/gen.c (genCmp): fixed bug #975903
3092         * src/hc08/gen.c (operandsEqu),
3093         * src/ds390/gen.c (operandsEqu),
3094         * src/z80/gen.c (operandsEqu),
3095         * src/pic/gen.c (operandsEqu),
3096         * src/pic16/gen.c (operandsEqu),
3097         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
3098         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
3099
3100 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3101
3102         * src/SDCCcse.c (cseBBlock): fixed bug #966963
3103
3104 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
3105
3106         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
3107         default case in switch statement,
3108         * glue.c (pic16_initPointer): expr is initialised via decoarteType
3109         to eliminate problem with initialisation of pointers, but problem
3110         still exists,
3111         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
3112         * (emitStaticSegment): removed various lines emitting debug info,
3113         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
3114         added processor registers for utilizing EEPROM,
3115         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
3116         configurable and set 8
3117
3118 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
3119
3120         * .version: increased version number to 2.4.2,
3121
3122         Cumulative patch for pic16 port
3123         * src/pic16/device.c: changed scheme to dump initial values for
3124         variables in idata segment, all print_idata* functions were removed,
3125         now the pic16_printIval* will be called,
3126         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
3127         * _pic16_printPointerType, pic16_printPointerType,
3128         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
3129         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
3130         NEW, similar to the respective functions in SDCCglue.c,
3131         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
3132         way, emitting hex bytes,
3133         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
3134
3135 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3136
3137         * src/avr/ralloc.c (serialRegAssign),
3138         * src/xa51/ralloc.c (serialRegAssign),
3139         * src/pic/ralloc.c (serialRegAssign),
3140         * src/pic16/ralloc.c (serialRegAssign),
3141         * src/hc08/ralloc.c (serialRegAssign),
3142         * src/z80/ralloc.c (serialRegAssign),
3143         * src/ds390/ralloc.c (serialRegAssign),
3144         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
3145
3146 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3147
3148         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
3149         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
3150
3151 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
3152
3153         Cumulative patch for pic16 port:
3154         * src/pic16/device.h (typedef PIC16_device) modified fields for
3155         defining microcontrollers,
3156         * src/pic16/device.c: added new info for all devices in Pics16 array,
3157         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
3158         to be optimised out by the pCode optimiser,
3159         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
3160         specially, bug reported by G.M. Gallant,
3161         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
3162         as force'd so that cannot be optimised out by pCode optimiser,
3163         * src/pic16/pcode.c,
3164         * src/pic16/pcodepeeph.c,
3165         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
3166         they are disabled by default, but can be enabled explicit with
3167         command argument --denable-peeps, for testing,
3168         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
3169         --pomit-ivt in COMPILE_FLAGS
3170
3171 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3172
3173         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
3174           compilation on MSVC
3175
3176 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3177
3178         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
3179
3180 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3181
3182         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
3183         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
3184
3185 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
3186
3187         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
3188         would only assign 0x300001 register.
3189
3190 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
3191
3192         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
3193         in COMPILE_FLAGS. Thanks to G. Gallant for report.
3194
3195 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3196
3197         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
3198         for ds80c400
3199         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
3200         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
3201         added peephole 254 (left shift), 255 (jump table)
3202
3203 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
3204
3205         * device/lib/Makefile.in: removed comment line with model-pic16,
3206         * (target port-specific-objects-pic16): the libraries and objects
3207         are copied to the build directory form the device/lib/pic16/bin
3208         directory
3209
3210         Cumulative patch concerning pic16 port:
3211         * library directory has been re-organized,
3212         * added support for PIC18F1220,
3213         * added headers and library sources for chips 18f1220,18f6520,
3214         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
3215
3216         * configuration registers setting has changed, now each supported
3217         device has a complete description of the registers it uses,
3218         * all initialisations are moved to idata sections, these section
3219         can be absolute or relocatable,
3220         * fixed initialisation of codespace variables,
3221         * fixed warning about PCLATU and gpsim,
3222         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
3223         * (genAssign): use table reads when assigning from variables in codespace,
3224         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
3225         char/int variables placed in codespace,
3226         * (pic16_emitConfigRegs): NEW, emits a list with configuration
3227         registers set in .asm file, no need for --pomit-config-words anymore,
3228         * (pic16glue): some 8051 legacy segments are commented out
3229         (to be removed completely),
3230         * added support for alternative assembler and linker with --asm=
3231         and --link= command line arguments,
3232         * peepholes are disabled automatically in the port, no need to
3233         specify on command line,
3234         * port supports natively char/int/long multiplication, but converts
3235         all divisions to support functions,
3236         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
3237         to the file set in variable $2,
3238         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
3239         strings in ASCII format and not in hex,
3240         * ralloc.c (serialRegAssign): added a triplet of conditional calls
3241         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
3242         allocate proper register if iCodes aren't temporary,
3243
3244 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
3245
3246         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
3247
3248 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
3249
3250         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
3251         is commented out
3252
3253 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3254
3255         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
3256         computed address is reused
3257         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
3258         multi-byte bitfields
3259
3260 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3261
3262         * src/z80/gen.c: (genArrayInit): must check for pointers too
3263
3264 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3265
3266         * support/regression/tests/zeropad.c: never meant to commit the
3267           nestedstruct test: removed, added check for GCC version
3268
3269 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
3270
3271         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
3272         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
3273         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
3274           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
3275           bugs 928906 and 954082 half-empty initializers
3276         * src/SDCCsymt.h,
3277         * src/SDCCsymt.c (getAllocSize): added for above fix
3278         * src/z80/gen.c (genArrayInit): fixed bug 741044
3279         * support/regression/tests/zeropad.c: added tests
3280
3281 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
3282
3283         * src/pic16/device.c (pic16_dump_section): corrected bug which
3284         caused some symbols of the libraries to be misplaced
3285
3286 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3287
3288         * src/pic16/glue.c,
3289         * src/pic16/ralloc.h,
3290         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
3291         to fix conflict with pic port
3292
3293 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3294
3295         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
3296         externs configuration variables,
3297         * src/pic16/ralloc.h,
3298         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
3299         prototype in header, commented out some debug messages
3300
3301 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
3302
3303         * src/pic16/glue.c,
3304         * src/pic16/main.c,
3305         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
3306         for gpasm COFF object generation. Thanks to D. Hawkins for
3307         his patch info
3308
3309 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3310
3311         * src/ds390/main.c,
3312         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
3313         Brock for spotting this)
3314         * src/ds390/gen.c (genEndFunction),
3315         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
3316         interrupt handler and critical. Disable push/pop optimizations when
3317         peephole optimizations disabled.
3318
3319 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
3320
3321         Updated pic16 library sources and headers.
3322         * device/lib/pic16/pic18f*/ ,
3323         * device/include/pic16/*.h: modified to handle structured SFR
3324         definitions
3325
3326 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
3327
3328         * src/port.h (PORT structure): added hook initPaths, now each
3329         port can declare its own default search paths,
3330         which can been seen with the --print-search-dirs option,
3331         see pic16 port for example,
3332         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
3333         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
3334         * (doPrintSearchDirs): NEW, replaces in a central manner the
3335         printing of search dirs which was split in set*Paths functions,
3336         * (main): added call to port->initPaths and doPrintSearchDirs,
3337         * src/avr/main.c,
3338         * src/ds390/main.c,
3339         * src/hc08/main.c,
3340         * src/izt/i186.c,
3341         * src/izt/tlcs900h.c,
3342         * src/mcs51/main.c,
3343         * src/pic/main.c,
3344         * src/pic16/main.c: modified port structures to reflect addition of
3345         initPaths hook,
3346
3347         * src/pic16/device.c (regCompare): registers are finally sorted by name,
3348         * (pic16_dump_section): for registers in same address reserve memory once,
3349         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
3350         to no_banksel,
3351         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
3352         result is greater in size than right or left,
3353         * (pic16_genUMult8X8_8): there are some cases where the result can
3354         be 16 bits size, so handle these,
3355         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
3356         * (pic16_outBitC): modified to emit pcodes,
3357         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
3358         or not,
3359         * (genDivOneByte): implemented algorithm to divide 8-bits,
3360         * (genCmp): uncommented goto, but issues still exist,
3361         * (genAnd): fixed a bug with variables >8bits,
3362         * (genPackBits): optimization added that uses BCF/BSF to change a
3363         single bit,
3364         * (genAssign): fixed bug when assigning floating point literals,
3365         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
3366         __sdcc_gsinit_startup label,
3367         * src/pic16/main.c (_pic16_init): removed search directory
3368         initialisations,
3369         * (_pic16_initPaths): NEW, used to initialise search directories,
3370         * (_hasNativeMulFor): support functions for all except char/int
3371         multiplication, and char division,
3372         * (PIC16_port struct): modified entry for native mul support,
3373         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
3374         no_banksel option,
3375         * (buildCallTree): call to register_usage is ifdef'ed out,
3376
3377 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3378
3379         * device/include/string.h: applied Stas Sergeev's patch to make this
3380         header file compatible with the preprocessor -Wundef option
3381         * src/SDCCmain.c (main): abort compilation if preprocessor reports
3382         failure (fixes bug #941458)
3383
3384 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3385
3386         * src/SDCCopt.c (killDeadCode): fixed bug #907733
3387         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
3388         that the variable, not the function, should be static
3389         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
3390         to be consistent with non-literal case
3391
3392 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3393
3394         * src/SDCCast.c (isConformingBody): fixed bug #949967
3395         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
3396         convilong): fixed bug #952086
3397
3398 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3399
3400         * src/SDCCmem.c (allocVariables): fixed bug #955321
3401
3402 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3403
3404         * src/hc08/main.c (_hc08_genAssemblerEnd),
3405         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
3406         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
3407         completely eliminated the use of a temporary file
3408         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
3409         when more than one file linked
3410         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
3411
3412 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3413
3414         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
3415         which fixes bug #543481
3416         * support/regression/tests/bug-751703.c: fixed comments left from a
3417         cut and paste error
3418         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
3419         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
3420         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
3421         scopes
3422         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
3423         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
3424         are now changed to underscores in moduleName
3425
3426 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3427
3428         * as/mcs51/lkmem.c: better fix for bug #954173
3429
3430 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
3431         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3432
3433         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
3434         * device/include/c8051f000.h,
3435         * device/include/c8051f120.h,
3436         * device/include/c8051f300.h,
3437         * device/include/c8051f310.h,
3438         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
3439         PWM16) and detab'ed
3440
3441 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3442
3443         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
3444         and mailing lists, doc'ed --no-peep-comments, removed reference
3445         to knoppix (newest version has no LyX/LaTeX), other minor changes
3446         * src/SDCCglue.c (glue): save 2 bytes stack space with
3447         option --main-return. The ljmp could probably be avoided too
3448
3449 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3450
3451         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
3452
3453 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3454
3455         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
3456         * src/SDCCopt.c (isLocalWithoutDef),
3457         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
3458         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
3459         (credit to Maarten Brock for patch #949363, on which this is based)
3460         * support/regression/tests/bug-751703.c: some test cases of extern used
3461         within inner scopes.
3462
3463 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3464
3465         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
3466         SPEC_STRUCT
3467         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
3468         struct definitions
3469         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
3470         dwWriteLabel): fix to create valid debugger symbols even when
3471         the module name has non-alphanumeric symbols in it
3472         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
3473         when a variable's allocation has been optimized away
3474
3475
3476 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3477
3478         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
3479         * src/hc08/main.c,
3480         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
3481         * src/mcs51/main.c,
3482         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
3483         * src/ds390/main.c,
3484         * src/z80/gen.c (z80_emitDebuggerSymbol),
3485         * src/z80/main.c,
3486         * src/pic/gen.c (pic14_emitDebuggerSymbol),
3487         * src/pic/main.c,
3488         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
3489         * src/pic16/main.c,
3490         * src/avr/gen.c (avr_emitDebuggerSymbol),
3491         * src/avr/main.c,
3492         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
3493         * src/xa51/main.c,
3494         * src/SDCCdebug.c (emitDebuggerSymbol),
3495         * src/SDCCdebug.h,
3496         * src/port.h: added a debugger struct to the port struct. Added a
3497         callback for defining debugger symbols
3498
3499         * src/SDCCast.c (createLabel),
3500         * src/SDCC.y (labeled_statement): mark all compiler generated labels
3501         with isitmp = 1
3502         * src/SDCCicode.h,
3503         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
3504         iCode back to the ast for the function
3505
3506         * src/hc08/ralloc.c (hc08_assignRegisters),
3507         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
3508         unneeded fields from the regs struct.
3509         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
3510         pushReg() & pullReg() functions instead of emitcode()
3511
3512         * src/hc08/gen.c (genLabel, genhc08Code),
3513         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
3514
3515         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
3516         debugger hooks
3517
3518         * src/hc08/gen.c (genEndFunction, genhc08Code),
3519         * src/hc08/gen.h,
3520         * src/mcs51/gen.c (genEndFunction, gen51Code),
3521         * src/mcs51/gen.h,
3522         * src/ds390/gen.c (genEndFunction, gen390Code),
3523         * src/ds390/gen.h,
3524         * src/z80/gen.c (genEndFunction, genZ80Code),
3525         * src/z80/gen.h,
3526         * src/z80/z80.h,
3527         * src/pic/gen.c (genEndFunction, genpic14Code),
3528         * src/pic/gen.h,
3529         * src/pic16/gen.c (genEndFunction, genpic16Code),
3530         * src/pic16/gen.h,
3531         * src/avr/gen.c (genEndFunction, genAVRCode),
3532         * src/avr/gen.h,
3533         * src/xa51/gen.c (genEndFunction, genXA51Code),
3534         * src/xa51/gen.h,
3535         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
3536         specific code to cdbFile.c and out of the backend code generators
3537
3538         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
3539         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
3540         starting address is now 0
3541
3542         * as/hc08/asm.h,
3543         * as/hc08/m08pst.c,
3544         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
3545         assembler directive for DWARF support
3546         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
3547
3548         * src/src.dsp,
3549         * src/Makefile.in,
3550         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
3551
3552 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3553
3554         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
3555         and inappropriate peephole optimization in jump tables
3556
3557 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3558
3559         * as/hc08/m08pst.c,
3560         * src/SDCCglue.c: sdccopt works for the hc08 port now
3561
3562 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
3563
3564         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
3565
3566 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3567
3568         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
3569
3570 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3571
3572         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
3573         rules
3574         * src/SDCCmain.c,
3575         * src/SDCCglobl.h,
3576         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
3577         comments from the peephole optimizer replacement rules
3578         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
3579         symbols
3580         * src/SDCCcse.c (updateSpillLocation),
3581         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
3582         equivalents
3583         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
3584         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
3585         objects far pointers
3586
3587 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3588
3589         * src/SDCCsymt.h: a missing part of my last change
3590         * src/pic/ralloc.c (regTypeNum),
3591         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
3592
3593 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3594
3595         * src/SDCCicode.h,
3596         * src/SDCCicode.c (aggrToPtrDclType),
3597         * src/SDCCptropt.h,
3598         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
3599         ptrPseudoSymConvert),
3600         * src/pic/ralloc.c (regTypeNum),
3601         * src/pic16/ralloc.c (regTypeNum),
3602         * src/hc08/ralloc.c (regTypeNum),
3603         * src/ds390/ralloc.c (regTypeNum),
3604         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
3605         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
3606
3607 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3608
3609         * link/z80/lkmain.c (afile),
3610         * as/hc08/lkmain.c (afile),
3611         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
3612         prevent a pointer problem when a filename has no directory and
3613         no extension specified.
3614
3615 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3616
3617         * link/z80/lkmain.c (afile): allow periods in directory names
3618         * link/z80/lkmain.c (afile),
3619         * as/mcs51/lkmain.c (afile),
3620         * as/hc08/lkmain.c (afile): allow linker script file to have an
3621         extension other than ".lnk"
3622         * link/z80/lklex.c (getfid),
3623         * link/z80/lkmain.c (parse),
3624         * as/mcs51/lklex.c (getfid),
3625         * as/mcs51/lkmain.c (parse),
3626         * as/hc08/lklex.c (getfid),
3627         * as/hc08/lkmain.c (parse): Support comments in the linker script
3628         file on lines by themselves and after filenames
3629
3630 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3631
3632         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
3633
3634 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3635
3636         * src/z80/peeph-z80.def: removed some peephole rules that don't
3637         work with multibyte arithmetic (fixed bug #937126)
3638         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
3639         to registers and not global variables
3640         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
3641         geniCodePreInc, geniCodePostDec, geniCodePreDec,
3642         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
3643         checking for assignments not internally generated (fixed bug #931895)
3644         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
3645         structure member (fixed bug #930072)
3646
3647 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3648
3649         * src/SDCCmain.c (linkEdit),
3650         * src/hc08/main.c (_hc08_parseOptions),
3651         * as/hc08/Makefile.in,
3652         * as/hc08/aslink.h,
3653         * as/hc08/asm.h,
3654         * as/hc08/m08pst.c,
3655         * as/hc08/lkrloc.c (relr, rele),
3656         * as/hc08/lkarea.c (lnkarea)
3657         * as/hc08/lkmain.c (afile, parse),
3658         * as/hc08/lkelf.c: support for ELF output
3659         * as/hc08/lks19.c (s19),
3660         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
3661
3662 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3663
3664         * as/mcs51/lkihx.c: Fixed bug #899105.
3665
3666 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3667
3668         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
3669         .dsp files from Unix to DOS.
3670
3671 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3672
3673         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
3674         function pointers; we have been compliant for several months now.
3675         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
3676         change that was accidently commented out
3677         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
3678         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
3679         bug #922319
3680
3681 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3682
3683         * src/hc08/gen.c: output of all of the internal debugging information
3684         is now controlled by the D() macro; it is disabled by default
3685
3686 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3687
3688         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
3689         harder to keep the same registers during a CAST iCode
3690         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
3691         long via int can be done in a single cast, if the signedness is
3692         correct.
3693         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
3694         putchar() in tinibios.c in ds390's library
3695
3696 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
3697
3698         * src/SDCCast.c (decorateType): fixed bug #898889,
3699         cast result of a literal complement too
3700         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
3701         fixed check for bitfields
3702
3703 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
3704
3705         * src/SDCCicode.c (geniCodeLogic): made it static,
3706         (geniCodeLogicAndOr): added in order to fix bug #905492,
3707         (ast2iCode): fixed bug #905492
3708         * support/regression/tests/bug-905492.c: added
3709         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
3710         (processParms): fixed bug #927659: don't copy parms, this will clear
3711         decorated flag
3712         * support/regression/tests/bug-927659.c: added
3713
3714 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
3715
3716         * src/SDCCast.c (addCast): don't cast float to char
3717         * device/lib/libsdcc.lib: added _memmove
3718
3719 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
3720
3721         * device/lib/large/Makefile: fixed parallel execution by
3722         replacing `make` by `$(MAKE)`
3723
3724 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3725
3726         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
3727         offsets (fixes bug #923936)
3728
3729 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
3730
3731         * device/lib/small/Makefile: fixed parallel execution by
3732         replacing `make` by `$(MAKE)`
3733
3734 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
3735
3736         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
3737
3738 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
3739
3740         * src/pic/gen.c (genCpl): multi-byte complements were not working.
3741         * src/regression/Makefile: Regression test was not running.
3742
3743 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
3744
3745         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
3746         complement if possible
3747         * src/SDCCval.c (valComplement),
3748         * src/SDCCicode.c (operandOperation): fixed complement of literal
3749         * support/regression/tests/onebyte.c (testComplement): added
3750
3751 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
3752
3753         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
3754         return an optimized tree; actually replace actParm with the new tree
3755         * src/SDCCast.h: added some parantheses to remove side effects
3756         * support/regression/tests/bug-920866.c
3757
3758 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
3759         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
3760         Bit operands were not being handled properly in the pic14 port.
3761         (now src/regression/add.c passes again).
3762
3763 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3764
3765         * src/SDCC.y (labeled_statement): case and default no longer require
3766         a following statement (RFE #893037)
3767
3768 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3769
3770         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
3771         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
3772         disabled (fixes bug #916294)
3773         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
3774         "mov a,acc"; patch provided by Lenny Story
3775         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
3776
3777 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3778
3779         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
3780         functions
3781         * src/ds390/gen.c (genFunction, genEndFunction),
3782         * src/ds390/ralloc.c (ds390_assignRegisters),
3783         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
3784         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
3785         pushed if there are parameters passed on the stack. Also, a cleaner
3786         way to decide if r0/r1 should be pushed/popped. (Together they fix
3787         bug #918693)
3788
3789 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3790
3791         * doc/sdccman.lyx,
3792         * device/lib/mcs51/crtpagesfr.asm,
3793         * device/lib/mcs51/crtxinit.asm,
3794         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
3795         to avoid confusion with Si Lab's SFRPAGE register.
3796
3797 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3798
3799         * src/SDCCglue.c (emitMaps): allow public sfr variables
3800         * src/SDCCglue.c (initialComments): include compiler build date
3801         with compiler version and put the timestamp of the generated
3802         assembly file on a serperate line to be less confusing.
3803         * src/port.h: added genInitStartup hook
3804         * src/avr/main.c,
3805         * src/ds390/main.c,
3806         * src/hc08/main.c,
3807         * src/pic/main.c,
3808         * src/pic16/main.c,
3809         * src/xa51/main.c,
3810         * src/z80/main.c: genInitStartup initialize as NULL (default to
3811         historical behaviour)
3812         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
3813         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
3814         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
3815         library instead of hard coding it into the compiler.
3816         * support/regression/ports/mcs51-stack-auto/spec.mk,
3817         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
3818         * device/lib/mcs51/Makefile,
3819         * device/lib/small/Makefile,
3820         * device/lib/large/Makefile,
3821         * device/lib/mcs51/crtpagesfr.asm,
3822         * device/lib/mcs51/crtstart.asm,
3823         * device/lib/mcs51/crtxclear.asm,
3824         * device/lib/mcs51/crtxinit.asm,
3825         * device/lib/mcs51/crtclear.asm,
3826         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
3827         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
3828         and into user configurable files.
3829         * device/lib/clean.mk: clean mcs51 directory too
3830         * support/regression/tests/longlit.c: added static to T1 declaration
3831         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
3832         accesses in the initialization code
3833
3834 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3835
3836         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
3837         OSCTRIMVAL as noted in bug #916008
3838
3839 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3840
3841         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
3842         in loops with multiple exits (reported as incorrect registers
3843         used by Martin Helmling in Sdcc-user list)
3844
3845 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3846
3847         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
3848         made ds390 register extensions look less like error messages
3849
3850 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3851
3852         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
3853         reported by Adam Wozniak in Sdcc-user list
3854
3855 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
3856
3857         * src/SDCCast.c (decorateType): fixed with bug and promotion in
3858         arithmetic optimizations, added debug output
3859
3860 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
3861
3862         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
3863         * sdcc.spec: updated and split sdcc into 3 rpms
3864         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
3865         needed for literals of LEFT_OP and '+'
3866         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
3867         introduced RESULT_TYPE_NOPROM
3868         (geniCodeMultiply): fixed logic for decision if mul is optimized to
3869         left shift
3870         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
3871         limited promotion to int only for '*'
3872         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
3873
3874 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
3875
3876         * src/pic16/gen.c (genSkip),
3877         (genc16bit2lit), (gencjneshort): commented out
3878         (is_LitOp): new helper function, checks operand type
3879         (genCmpEq): rewritten
3880
3881 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
3882
3883         * support/regression/tests/bug-908454.c: added
3884
3885 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
3886
3887         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
3888         * src/SDCCicode.c (usualBinaryConversions): op needs int type
3889         (geniCodeCast): cosmetic, don't preserve bit storage class
3890         (geniCodeLeftShift): added promotion
3891         (geniCodeLogic): fixed regression
3892         * src/SDCCsymt.c (computeTypeOr): accept bits too
3893         (compareType): 2nd part of fix for bug #908454, needed for bitfields
3894
3895 2004-03-07  Borut Razem <borut.razem AT siol.net>
3896
3897         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
3898
3899 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
3900
3901         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
3902         version of pic16_genPackRegisters which does not check if ic is a
3903         CAST operator,
3904         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
3905         function cause string1.c regression test fails
3906
3907 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
3908
3909         * sim/ucsim/configure.in,
3910         * sim/ucsim/configure,
3911         * sim/ucsim/doc/Makefile.in: use docdir
3912         * src/SDCC.y: fixed sbit atrributes
3913         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
3914         * src/SDCCast.c (decorateType): |^& need special promotion handling
3915         * src/SDCCast.h,
3916         * src/SDCCsymt.h: moved definition of RESULT_TYPE
3917         * src/SDCCsymt.h (computeType),
3918         * src/SDCCicode.c: computeType() needs op
3919         * src/SDCCsymt.c (checkTypeSanity),
3920         * doc/sddman.lyx: "plain" bitfields are unsigned
3921         * src/SDCCsymt.c (computeTypeOr): added
3922         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
3923         |^& ops
3924         * src/SDCCval.c (val*): computeType() needs op
3925         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
3926         * support/regression/tests/onebyte.c: added tests for |^&
3927
3928 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
3929
3930         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
3931         for writing icode into asm output.
3932
3933 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
3934
3935         * src/pic16/device.c: added some debug lines enabled
3936         with macro DEBUG_CHECK,
3937         * src/pic16/genarith.c: more debug in genPlus,
3938         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
3939         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
3940         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
3941         * (aopForSym): onStack symbols are re-placed in data memspace,
3942         and onStack flag is cleared,
3943         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
3944         copy temporary pcodeop,
3945         * (genPcall): added warning for not updating PCLATU,
3946         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
3947         always true for pic16 port,
3948         * (genMultOneWord): NEW, supports integer multiplication,
3949         * (genMult): modified to call genMultOneWord,
3950         * (ifxForOp): added warning when return NULL,
3951         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
3952         flag is set before call to operandFromSymbol for implicit
3953         added structures,
3954         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
3955         options.intlong_rent are set by default,
3956         * (_hasNativeMulFor): modified to allow port generation of integer
3957         multiplication,
3958         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
3959         set regtype to REG_SFR for all registers, restricting seting the
3960         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
3961
3962 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3963
3964         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
3965         more than 500 times in the regression tests
3966
3967 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3968
3969         * support/Util/SDCCerr.h,
3970         * support/Util/SDCCerr.c,
3971         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
3972         enumerator_list),
3973         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
3974         for symbol conflicts.
3975         * support/valdiags/tests/enum.c,
3976         * support/valdiags/tests/tentdecl.c,
3977         * support/valdiags/tests/struct.c: expect possible error messages
3978         referring to original symbol definitions.
3979         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
3980         * src/SDCCsymt.h,
3981         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
3982
3983 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
3984
3985         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
3986
3987 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
3988
3989         * src/pic16/ralloc.c (newReg): fixed bug #908929
3990
3991 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3992
3993         * src/ds390/gen.c: added missing #include "main.h"
3994
3995 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
3996
3997         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
3998         checking if symbol is already in set,
3999         * src/pic16/device.h: prototype for checkAddSym,
4000         * src/pic16/gen.c: (_G): added entry interruptvector,
4001         * (assignResultValue): removed some commented out lines,
4002         * (genFunction): check for ISR via sym->type, absolute section for
4003         interrupt code is created via a new pBlock, the goto instruction is
4004         placed now correctly at the interrupt vector position, changed all
4005         references from ivec to _G.interruptvector,
4006         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
4007         is the interrupt is a high priority one, same for return from ISR,
4008         * src/pic16/glue.c: changed all calls of addSetHead for publics and
4009         externs to calls of checkAddSym,
4010         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
4011         pic16_pcode_verbose flag is set,
4012         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
4013         * src/pic16/pcoderegs.c: message about how many registers are saved
4014         will only be emitted if pic16_pcode_verbose flag is set,
4015
4016 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4017
4018         * src/ds390/ralloc.h,
4019         * src/ds390/ralloc.c (ds390_regWithIdx),
4020         * src/ds390/gen.c (emitcode),
4021         * src/ds390/main.h,
4022         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
4023         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4024         ds390operandCompare, getRegsRead, getRegsWritten,
4025         initializeAsmLineNode): customized instruction size calculation for
4026         ds390, started basis for some register optimizations
4027         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
4028         corresponding assembly output
4029         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
4030         missing push/pop of r0/r1. Optimized push/pops
4031
4032 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4033
4034         * src/mcs51/main.c (instructionSize): fixed ACALL size
4035         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
4036
4037 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
4038
4039         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
4040         the sorting of rlist with NULL elements
4041         * (print_idataType, print_idata): NEW to create idata sections
4042         * src/pic16/device.h: idataSymSet new variable
4043         * src/pic16/gen.c (genFunction): fixed some bugs in string
4044         comparing, improved the absolute section creation for ISRs,
4045         added FSR0L/FSR0H in registers that are saved in an ISR,
4046         * (genInline): fixed the processing of inline snippets,
4047         now they undergo no process by the peephole optimizer
4048         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
4049         are placed in idataSymSet,
4050         * (pic16emitStaticSeg): extern symbols are added in externs,
4051         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
4052         switching when aboslute variables are placed in access bank memory
4053         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
4054         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
4055         commented out with #if,
4056         * (pic16_packRegisters): reintroduce the check for CAST because some
4057         symbols are not correctly handled,
4058         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
4059         pCodeInstruction instead of pCode,
4060         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
4061         pCodeAsmDir definition,
4062         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
4063         directive, then the argument directive is emitted without the leading
4064         tab, hack for inline labels which must be in the first column,
4065         * (compareLabel,pic16_findNextInstruction),
4066         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
4067         * (insertBankSwitch): modified for the new pCodeAsmDir,
4068
4069 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4070         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
4071
4072         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
4073         instance,
4074         * (pushSide): commented out with #if,
4075         * (assignResultValue): fixed some typos in saving
4076         registers,
4077         * (genPcall): FIXED and sync'ed with genCall,
4078         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
4079         * (genNearPointerGet): fixed to handle some more cases,
4080         implementation scheme via table reads,
4081         * (genConstPointerGet): modified to access code memory correct,
4082         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
4083         and improved to handle some cases
4084         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
4085         instead of "RETLW" for init data
4086         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
4087         not IN_DIRSPACE, work around to reduce bank switching when aboslute
4088         variables are placed in access bank memory (<0x80 and >=0xf80),
4089         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
4090         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
4091         TBLWT_POSTDEC,TBLWT_PREINC
4092         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
4093         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
4094         directives
4095         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
4096         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
4097         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
4098         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
4099
4100 2004-02-29  Borut Razem <borut.razem AT siol.net>
4101
4102         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
4103         support/Util/findme.h, support/Util/system.h: enhance binary relative
4104         search for lib and include by using findProgramPath()
4105
4106 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4107
4108         * src/SDCCpeeph.h,
4109         * src/SDCCpeeph.c (pcDistance),
4110         * src/port.h,
4111         * src/mcs51/ralloc.h,
4112         * src/mcs51/ralloc.c (mcs51_regWithIdx),
4113         * src/mcs51/main.h,
4114         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
4115         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4116         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
4117         size calculation port specific, started basis for some register
4118         optimizations
4119         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
4120         missing push/pop of r0/r1. Optimized push/pops
4121         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
4122         * device/lib/_modsint.c (_modsint),
4123         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
4124         and stack version so regression tests pass
4125
4126 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
4127
4128         * src/Makefile.in (dep): include SLIBOBJS in dependency check
4129         * src/SDCCast.c (decorateType): catch another small optimization
4130         with '?' operator
4131         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
4132         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
4133         modified to finally use computeType() all over SDCC,
4134         see Feature Request #877103
4135         * src/SDCCval.h: cosmetic
4136         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
4137         valCompare(); regression tested in muldiv.c
4138         * support/regression/tests/muldiv.c (testMod): mod sign follows
4139         dividend only
4140
4141 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
4142
4143         * src/SDCCast.c (decorateType): fixed bug #902362
4144         * doc/INSTALL.txt: fixed install instructions for win32
4145
4146 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
4147
4148         * device/include/Makefile.in (install): fixed by replacing spaces
4149         by tabs
4150         * doc/README.txt,
4151         * doc/INSTALL.txt: updated for release
4152         * doc/sdccman.lyx: added warning for --xstack being buggy
4153
4154 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
4155
4156         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
4157         to eliminate build warnings.
4158         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
4159
4160 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
4161            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4162
4163         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
4164         removed -penable-stack, added comment for stack pragma, added
4165         warning for not initializing the stack/frame registers, removed
4166         comment at interrupts section
4167
4168         Stack is made permanent, there is no ability to disable stack usage.
4169         * src/pic16/device.h,
4170         * src/pic16/device.c: removed all references to USE_STACK macro,
4171         * src/pic16/device.c (pic16_dump_section): when no elements in
4172         rlist, free rlist before return,
4173         * (pic16_dump_int_registers): NEW, internal registers are a new set
4174         of general purpose registers reused by each function,
4175         * (checkAddReg): returns 1 if registers is added to set,
4176         * (pic16_groupRegistersInSection): when a registers is of type
4177         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
4178         * src/pic16/device.h: memRange and Assigned Memory are deleted,
4179         SRCASECMP macro is moved here from device.c
4180         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
4181         PO_PCLATU, PO_PRODL, PO_PRODH,
4182         * (pic16_pCodeOpType, genMinus,
4183         changed compares to "a" register, with AOP_ACC,
4184         * (pic16_genPlus): fixed some bugs and indented properly,
4185         * (pic16_addSign): changed size to size+offset in the MOVWF
4186         instruction,
4187         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
4188         multiply 8-bit operand by literal, result is 8-bit,
4189         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
4190         multiply 2 8-bit operand, result is 8-bit,
4191         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
4192         genUMult8X*_16,
4193         * src/pic16/gen.c: changed accUse to contain WREG only,
4194         * (pic16_emitcomment): renamed to pic16_emitpcomment,
4195         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
4196         true, do not use immediate addressing any more unless sym is a
4197         pointer in codespace,
4198         * (aopForRemat): do not use immediate addressing when symbol not in
4199         codespace and when symbol's address is requested,
4200         * (aopOp): for-loop in if(sym->accUse) is modified for the new
4201         accUse size (= 1),
4202         * (aopGet): added case for AOP_ACC and don't return "accumulator
4203         bug" but WREG instead,
4204         * (popGetTempReg): pushes contents of temporary register in stack,
4205         * (popReleaseTempReg): pops contents of temporary register from
4206         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
4207         * (pic16_popGet): separated case AOP_ACC to return register WREG
4208         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
4209         or PO_IMMEDIATE and initializes their instance/offset appropriately,
4210         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
4211         the use of immediate pointers to certain cases only.
4212
4213         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
4214         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
4215         * (assignResultValue, genCall, genRet): modified to use the new
4216         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
4217         genPcall is still broken,
4218         * (genFunction): added code to create 'A' type pBlocks when
4219         interrupt functions are generated, code not extensively tested yet,
4220         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
4221         * (genEndFunction): modified so ISRs pop stored registers from stack,
4222         * (genMultOneByte): cleanup,
4223         * (AccRsh): added flag andmask, to and result with appropriate mask,
4224         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
4225         * (genDataPointerGet): fixed and reenabled its use,
4226         * (genNearDataPointerGet): bugs fixed,
4227         * (genDataPointerSet): bugs fixed,
4228         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
4229         pic16_DumpSymbol, pic16_DumpOp,
4230         * src/pic16/genutils.h: function prototypes for the above functions,
4231         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
4232         pointers,
4233         * (pic16emitRegularMap): many many many improvements, but needs a
4234         major cleanup,
4235         * src/pic16/main.c: enable_stack in pic16_options is removed,
4236         * (_pic16_parseOptions): removed command line options -penable-stack,
4237         * (_process_pragma): emit stack symbol only when stack pragma is
4238         processed,
4239         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
4240         redirected to FSR0L/FSR0H pair,
4241         * (pic16_get_op, pic16_get_op2): modifications and improvements,
4242         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4243         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
4244         for immediates,
4245         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
4246         * (dumpPicOptype): NEW,
4247         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
4248         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
4249         with movff instruction,
4250         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
4251         added pic16_int_regs, some packRegsFor* functions are commented out,
4252         because produce errors,
4253         * src/pic16/NOTES: minor modifications
4254
4255 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4256
4257         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
4258         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
4259         --pack-iram.
4260         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
4261         * as/mcs51/lkaomf51.c: fixed bug #895763
4262
4263 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
4264
4265         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
4266
4267 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4268
4269         * doc/sdccman.lyx: added details about the HC08 storage classes and
4270         interrupts, fixed the register usage info for z80 & gbz80
4271
4272 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
4273
4274         * doc/sdccman.lyx: added more pic16 port documentation
4275         * device/include/pic16/: added header pic18fregs.h
4276
4277 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
4278
4279         * doc/sdccman.lyx: added Vangelis' contribution
4280
4281 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4282
4283         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
4284         extend to the next CALL or PCALL, not just to the next CALL.
4285
4286 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
4287
4288         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
4289
4290 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4291
4292         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
4293         bug #895752 and a better fix for bug #716790
4294
4295 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4296
4297         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
4298
4299 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4300
4301         * doc/sdccman.lyx: minor changes, minor changed
4302
4303 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
4304
4305         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
4306         which can't handle SDCC_NEWONEBYTEOPS,
4307         (geniCodeMultiply): removed conversion from mult to shift for pic14
4308         and pic16
4309
4310 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4311
4312         * src/hc08/gen.h,
4313         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
4314         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
4315         thus fixing bug #895406
4316
4317 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
4318
4319         * device/lib/_modsint.c,
4320         * device/lib/_modslong.c: sign follows divisor only
4321         * src/hc08/gen.c (genMultOneByte): if result size is 1,
4322         signs or signedness can be ignored
4323         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
4324         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
4325         added optimization for IFX,
4326         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
4327         arguments;
4328         reenabled optimization for IFX, which was removed on 2004-01-11
4329         * src/SDCCast.h: added return type IFX
4330         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
4331         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
4332         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
4333         SDCC_OLDONEBYTEOPS selects the old behaviour
4334         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
4335         changed again and commented promotion rule
4336         * src/SDCCval.c (valDiv): promotion no longer necessary
4337         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
4338         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
4339         rewritten
4340         * support/regression/tests/onebyte.c: added
4341
4342 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
4343
4344         * gen.c (genInline): reverted to old code for assemnling inline
4345         code because of bug reported James Chadd
4346
4347 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
4348
4349         * ralloc.h: missing declarations from previous patch,
4350         seems that patch for ralloc.h was never applied, fixed
4351
4352 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4353            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
4354
4355         * pcode.c,
4356         * pcode.h,
4357         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
4358         indirect addressing. Marked FSR0 as deprecated
4359         * gen.c (pointerCode): commented out, not needed now
4360         (pic16_popGet2p): new MOVFF helper function
4361         (genGenPointerGet),
4362         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
4363         (shiftRLong): removed duplicate debugging info
4364
4365 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4366
4367         * src/ds390/gen.c (genNearPointerGet),
4368         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
4369         optimization with bits, but not bitfields.
4370         * src/ds390/ralloc.c (packRegisters),
4371         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
4372
4373 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
4374
4375         * src/SDCCcse.c (algebraicOpts): copy operands before modification
4376
4377 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4378
4379         * src/SDCCsymt.h,
4380         * src/SDCCicode.c (operandFromSymbol),
4381         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
4382         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
4383         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
4384         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
4385         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
4386         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
4387         bug #892038
4388         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
4389         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
4390         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
4391         * src/SDCCsymt.c (newSymbol),
4392         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4393         enumerator_list),
4394         * src/SDCCval.h,
4395         * src/SDCCval.c (newiList): fixed bug #885705
4396
4397 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4398
4399         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
4400         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
4401
4402 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4403
4404         * device/include/c8051f120.h,
4405         * device/include/c8051f300.h,
4406         * device/include/c8051f310.h: added/updated header files for Silicon
4407         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
4408         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
4409         in new section Submitting patches
4410
4411 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4412
4413         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
4414         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4415         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4416         genGenPointerSet),
4417         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
4418         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4419         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4420         genGenPointerSet),
4421         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
4422         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4423         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4424         genGenPointerSet),
4425         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
4426         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4427         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4428         genGenPointerSet): fixed bug #892400
4429         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
4430         to eliminate build warnings.
4431         * src/SDCCast.c (processParms),
4432         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
4433         fixed bug 751859
4434         * support/valdiag/valdiag.py: added GCC to the list of defines active
4435         when compiling with gcc
4436
4437 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4438
4439         * support/Util/SDCCerr.h,
4440         * support/Util/SDCCerr.c,
4441         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
4442         with an incomplete type (fixed bug #883734)
4443         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
4444
4445 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4446
4447         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
4448
4449 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4450
4451         * src/SDCCast.c (decorateType),
4452         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
4453         function pointer implementation
4454         * support/regression/tests/funptrs.c: added tests to verify both forms
4455         of function pointers work correctly. Added tests to verify parameters
4456         are passed in the correct order.
4457
4458 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
4459
4460         * device.c (regCompare): registers are sorted by ascending
4461         address and increasing size,
4462         * main.c (_pic16_finaliseOptions): removed the declaration
4463         of compiler macro MCU. Now a macro of the format pic18fxxxx
4464         will be defined from the command line
4465
4466 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4467             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
4468
4469         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
4470         PCOP_RLCF was overwritten!
4471         * gen.c (genSkip): commented out calls to pic16_emitcode,
4472         * (genCmpEQ): fixed "long" compares, only high word did get compared,
4473         * (genlshTwo),
4474         * (genRRC): added debugging info,
4475         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
4476         overwritten while shifting,
4477         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
4478         overwritten while shifting,
4479         * (AccLsh),
4480         * (AccRsh),
4481         * (shiftLLeftOrResult),
4482         * (shiftRLeftOrResult),
4483         * (shiftRLong),
4484         * (shiftLLong): Implemented with pic16_emitpcode
4485         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
4486         * (genLeftShift): Fixed bug, operand for shift by variable always
4487         was "and"ed with 0x0f,
4488         * (genLeftShiftLiteral),
4489         * (genrshTwo),
4490         * (genRightShiftLiteral): added debugging info,
4491         * (genrshFour): added comment,
4492         * (genRightShift): determined signedness from operand "left"
4493         instead of "result"
4494
4495 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4496
4497         * src/SDCCicode.c (geniCodeParms),
4498         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
4499         function pointers, fixed function pointer bugs #861242 and #861896
4500
4501 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4502
4503         * device/include/c8051f000.h,
4504         * device/include/c8051f120.h,
4505         * device/include/c8051f300.h: added header files for Silicon
4506         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
4507
4508 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
4509
4510         * src/SDCCast.c (processParams): added new type flow and restructured
4511         (gatherAutoInit): added new type flow
4512         (addCast): cosmetic changes
4513         (getLeftResultType): added new type flow for array indices, patch
4514         provided by Stas, see FR #877103
4515         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
4516         array index patch by Stas
4517         * src/SDCCast.h: added prototype getResultTypeFromType()
4518         * src/SDCCval.h,
4519         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
4520         * src/pic/glue.c (pic14emitStaticSeg),
4521         * src/pic16/glue.c (pic16emitStaticSeg),
4522         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
4523         for initialization of symbols
4524         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
4525         * support/Util/SDCCerr.h:
4526         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
4527         * .version: bumped version number to 2.3.8
4528         * device/include/Makefile.in (install),
4529         * doc/Makefile (install): changed to 'rm `find ...`' construct to
4530         avoid warnings
4531
4532 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
4533
4534         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
4535         Slade Rich fixed an optimization bug
4536         * src/pic/pcodepeep.c,
4537         * src/pic/pcoderegs.c
4538         * doc/Makefile (install): added test for directory
4539
4540 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4541
4542         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
4543         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
4544         * src/pic/ralloc.c (getRegPtr, getRegGpr),
4545         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
4546         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
4547         * as/mcs51/asexpr.c (term),
4548         * as/hc08/asexpr.c (term): fixed bug #887146
4549
4550 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4551
4552         * src/z80/gen.c (genMult): handle single byte result product
4553         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
4554         DUMMY_READ_VOLATILE (fixed bug #886367)
4555
4556 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
4557
4558         * support/regression/tests/libmullong.c: fixed logic, on little endian
4559         hosts we ended without a mullong_wrapper()
4560
4561 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4562
4563         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
4564         virus/worm forged address usage.
4565
4566 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
4567
4568         Fixed promotion, it should be done on AST level:
4569         * src/SDCCast.c (addCast): added promotion to int
4570         (decorateType): updated call to upCast()
4571         * src/SDCCicode.c (geniCodeLeftShift): removed call to
4572         usualUnaryConversions()
4573
4574 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
4575
4576         * support/regression/tests/literalop.c (mulWrapper): Added a
4577         wrapper to remove integer overflow warnings.
4578
4579         * support/regression/tests/float_trans.c: Made work on host.
4580
4581         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
4582         location of sz80.
4583
4584         * support/regression/generate-cases.py (main): Changed from inline
4585         to a main method.
4586
4587         * doc/Makefile (install): Changed to depth first to get rid of
4588         missing directory install warning.
4589
4590         * as/Makefile (install-doc): Made work on Mac.
4591
4592 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
4593
4594         * src/SDCCast.c: added an additional type flow in decorateType() of
4595         opposite direction, see feature request #860006; it's enabled at runtime
4596         by setting the environment variable SDCC_NEWTYPEFLOW
4597         * src/SDCCast.h: changed prototype of decorateType()
4598         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
4599         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
4600         'char' to 'int' can be omitted, if both operands are 'unsigned char';
4601         see feature request #877103
4602         * src/SDCCval.c: updated call of decorateType()
4603         (valBitwise): fixed bug #882876
4604         (valMinus): added promotion
4605         (valLogicAndOr): result is unsigned
4606         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
4607         * src/SDCCsymt.c (computeType),
4608         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
4609         must not cause an unsigned operation
4610         * src/pic/glue (pic14emitRegularMap),
4611         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
4612
4613 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
4614
4615         * src/pic/pcode.c (PCodeID): commented out left over debug code
4616
4617 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
4618
4619         * support/valdiag/tests/overflow.c: added shift tests
4620         * src/pic/device.c,
4621         * src/pic/gen.c,
4622         * src/pic/gen.h,
4623         * src/pic/glue.c,
4624         * src/pic/main.c,
4625         * src/pic/pcode.c,
4626         * src/pic/pcode.h,
4627         * src/pic/pcodepeep.c,
4628         * src/pic/pcoderegs.c,
4629         * src/pic/ralloc.c,
4630         * src/pic/ralloc.h: applied patch from Slade Rich;
4631         added support for multiple code pages and multiple RAM banks on the
4632         PIC 14 port. The ASM files now no longer simply assume all the
4633         code / RAM are in the same page / bank. This means the linker can
4634         safely allocate code/RAM of separate ASM files to different pages/banks.
4635         * doc/sdccman.lyx: added Slade's tips
4636         * src/mcs51/peeph.def: fixed bug #880768
4637
4638 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4639
4640         * src/hc08/ralloc.c (rematStr): fixed bug #879282
4641         * src/SDCCast.c (decorateType): fixed bug #880197
4642
4643 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
4644
4645         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
4646         getopt.h.
4647
4648         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
4649         strtof is not part of C89 and isn't included with Mac OS X.
4650
4651 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4652
4653         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
4654         shiftL2Left2Result): fixed bug #879326
4655         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
4656         (genMultOneByte): fixed bug in signed vs unsigned multiplication
4657         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
4658         address fetch for clr instruction
4659         * device/lib/hc08/_mulint.c: created optimized assembly version
4660         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
4661
4662 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
4663
4664         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
4665         proposed in FR #877103
4666
4667 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
4668
4669         * src/SDCCval.c (cheapestVal): added missing checks
4670         * src/SDCCicode.c (usualBinaryConversions): fixed condition
4671         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
4672
4673 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
4674
4675         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
4676         equal operands
4677
4678 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
4679
4680         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
4681         loaded with the linker search paths (-L arguments) and the libraries
4682         to be linked with the current source (-l arguments). Changes
4683         currently will affect only the pic16 port.
4684         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
4685         include path the port specific paths and port specific libraries,
4686         * gplink command now contains the $3 argument,
4687         * src/pic16/device.h,
4688         * src/pic16/device.c,: structure PIC_device is made public and
4689         renamed to PIC16_device, the same for variable Pics which is renamed
4690         to Pics16. Updated all references to them.
4691         * src/pic16/glue.c (pic16glue): corrected bug with code
4692         initialization which bypassed the variable initializations block.
4693
4694         * device/lib/pic16/Makefile.rules: removed --penable-stack from
4695         COMPILE_FLAGS and added the --nostdinc option
4696
4697 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4698
4699         * device/include/mc68hc908jb8.h: Register defs for another member
4700         of the hc08 family. Contributed by Bjorn Bringert - thanks!
4701
4702 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
4703
4704         Documenting changes from previous commits.
4705         * configure.in (version 1.56),
4706         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
4707         when generating output files to configure the pic16 library,
4708         but now I've commented it out, since gputils aren't installed in the
4709         SF compile farm, so library won't compile
4710
4711         * device/lib/Makefile.in (version 1.56): initially I've added in
4712         target 'all' the prerequestive 'model-pic16' so it compiled the
4713         pic16 library, but now I've commented it out for the same reasons
4714         above,
4715         * added targets 'model-pic16' and 'objects-pic16' to compile the
4716         library
4717         * added target 'port-specific-objects-pic16' to handle the
4718         generated libraries and copy them into the build/ directory
4719         * added target 'clean-intermediate-pic16' to clean intermediate
4720         files into pic16 directory
4721         * in target 'installdirs' added line to create directory pic16 in
4722         the installation path
4723
4724         * device/include/Makefile.in (version 1.11): in target 'install'
4725         added lines to copy all header files to installation path,
4726         * in target 'installdirs' added line create directory for pic16
4727         headers in the installation path
4728
4729 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
4730
4731         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
4732          a function call
4733
4734 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
4735
4736         * configure,
4737         * device/lib/configure.in,
4738         * device/lib/configure: fixed for autoconf 2.57
4739
4740 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4741
4742         * src/z80/main.c (_parseOptions): fixed the portmode= command line
4743         option so that it actually works. Made it specific to the z80, since
4744         the gbz80 doesn't have these kinds of I/O ports.
4745
4746 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4747
4748         * device/include/z180.h,
4749         * device/lib/_memcpy.c,
4750         * device/lib/_memmove.c,
4751         * device/lib/_mulint.c,
4752         * device/lib/ser_ir.c,
4753         * device/lib/ser_ir_cts_rts.c,
4754         * device/lib/_strcmp.c,
4755         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
4756         * src/z80/main.c (_process_pragma): add support for pragmas bank and
4757         portmode; added deprecation warning for bank= and protmode= forms.
4758         Also, guard against buffer overflow.
4759         * src/z80/gen.c (aopGet): generate better code for sfr banked read
4760
4761 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4762
4763         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
4764         changed interrupt vector table generation to only emit declared vectors.
4765         * device/include/Makefile.in: added missing backslash
4766         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
4767
4768 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
4769
4770         Mainly changes to support compilation of the device libraries
4771         * src/pic16/device.c: stack is allocated via symbol and not
4772         via literal number. The symbol is placed in the corresponding
4773         position of the data ram
4774         * (pic16_dump_section): relocatable and absolute uninitialized
4775         data are now emitted in sorted order to reduce section naming,
4776         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
4777         weren't marked as being in the access bank,
4778
4779 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
4780
4781         Added portion of GNU PIC Library under the directory
4782         device/include/pic16 and device/lib/pic16. These files
4783         contain the declarations of SFRs for the PIC18Fxx2 devices.
4784         The directory is initialized via configure from toplevel.
4785
4786 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
4787
4788         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
4789         the spilllocations to be compared correctly
4790
4791 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
4792
4793         * src/SDCCast.c (decorateType): fixed bug introduced today
4794
4795 2004-01-12  Borut Razem <borut.razem AT siol.net>
4796
4797         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
4798         doc/sdccman.lyx: upper case pragmas are deprecated
4799
4800 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
4801
4802         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
4803         in simpler and even better code
4804
4805 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
4806
4807         * src/SDCCicode.c (operandOperation): fixed bug #874819
4808         * src/SDCCast.c (decorateType): fixed
4809         char foo (unsigned long ul) { return ul > 0; }
4810
4811 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4812
4813         * doc/sdccman.lyx: Moved and added some sections, small changes
4814         all over. Telling LaTeX to be less strict with word spacing
4815         to better keep the right margin. Changed some notes about
4816         maintainance of the ports in section 3.2.1 - is it OK like this?
4817
4818 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
4819
4820         SDCC source changes:
4821         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
4822         convilong): modified to inform the pic16 port that builtin functions
4823         are external
4824
4825         PIC16 PORT specific changes:
4826         * src/pic16/device.c pic16_dump_equates() added,
4827         processor registers declared internally by the port are emitted in
4828         the translation as equates,
4829         * src/pic16/gen.c: inline code is passed unprocessed to the
4830         translation,
4831         * (pic16_popGetLit2): fnuction modified to take second operand as
4832         pCodeOp pointer and not as literal,
4833         * (popRegFromIdx): prefixed with pic16_,
4834         * (pic16_popCombine2): modified to receive already allocated pCode
4835         operands,
4836         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
4837         * (genFunction): initializes local stack frame and pushes on stack
4838         all the registers used by this function,
4839         * (genEndFunction): restores all registers from stack and restores
4840         stack frame,
4841         * src/pic16/glue.c (pic16emitRegularMap): various changes and
4842         improvements,
4843         * (pic16glue): changed the program startup sequence,
4844         * added new dbName code 'A' for functions placed in absolute section
4845         * src/pic16/main.c: added function attribute _naked,
4846         * added pragma 'code' to place a fnuction at an absolute address,
4847         * added command line arguments --debug-ralloc and --pcode-verbose,
4848         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
4849         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
4850         * (pic16_newpCodeOpLit2): modified to take the second operand as
4851         pCodeOp pointer,
4852         * (pic16_printpBlock): modified to emit each function in a separate
4853         section,
4854         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
4855         UPPER for immediate operands,
4856         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
4857         instruction,
4858         * src/pic16/peeph.def: all peepholes with movff are commented out,
4859         because there is a problem in the pcode peep optimizer,
4860         * src/pic16/ralloc.c: the register allocator can now reuse local
4861         function symbols for another function. This saves register usage.
4862         * src/pic16/ralloc.h: added flag isLocal in structure regs,
4863
4864         Added file src/pic16/NOTES with information about program writing on
4865         the current port version.
4866
4867 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4868
4869         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
4870         and peephole 252 (array access)
4871
4872 2004-01-09  Borut Razem <borut.razem AT siol.net>
4873
4874         * src/SDCCmain.c : fixed #872250: -l command line defined library
4875           files are scanned before standard library files
4876
4877 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4878
4879         * src/SDCCast.c (decorateType): fixed bug #874046
4880
4881 2004-01-09  Borut Razem <borut.razem AT siol.net>
4882
4883         * support/scripts/sdcc.nsi: remove previous installation
4884
4885 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4886
4887         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
4888         bytes for last interrupt vector (mcs51)
4889         * sdcc.spec: fixed typo
4890
4891 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4892
4893         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
4894         gen51Code): more efficient parameter receive for --model-large
4895         ("bug" #845294)
4896
4897 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4898
4899         * src/ds390/main.c,
4900         * src/z80/main.c: added missed needLinkerScript flags (more than
4901         one port structure defined in these file)
4902         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
4903         bug #795325
4904
4905 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
4906
4907         * src/SDCCmain.c: removed various references to DEFAULT_PORT
4908         * src/port.h: added flag needLinkerScript in port->linker
4909         structure to inform whether to create a .lnk file or not,
4910         * src/avr/main.c,
4911         * src/ds390/main.c,
4912         * src/hc08/main.c,
4913         * src/mcs51/main.c,
4914         * src/pic/main.c,
4915         * src/pic16/main.c,
4916         * src/xa51/main.c,
4917         * src/z80/main.c: changed appropriately to configure
4918         needLinkerScript flag
4919         * src/pic/gen.c,
4920         * src/pic16/gen.c (genAddrOf): fixed bug #863624
4921         * src/pic/glue.c: added variable udata_section_name to
4922         override default uninitialized data segment definition for
4923         devices only with SHAREBANK memory (reported from Erik Epetrich)
4924         * (pic14emitOverlay): modified to emit a commented overlay segment
4925         directive when no overlay data exist
4926         * (picglue): modified to emit uninitialized data segment
4927         according to udata_section_name
4928         * src/pic/main.c (_pic14_parseOptions): added command line
4929         options --udata-section-name=[name] to override default
4930         udata definition name
4931         * modified _linkCmd and _asmCmd to include compiler passed
4932         arguments via -W option
4933         * src/pic16/main.c: added $l in _asmCmd, changed extension for
4934         object file from '.rel' to '.o' in port->linker structure,
4935         changed size of fptr from 2 to 3 in port structure
4936
4937 2004-01-07  Borut Razem <borut.razem AT siol.net>
4938
4939         * support/scripts/sdcc.nsi: update PATH
4940         * support/scripts/sdcc.ico: craeted
4941
4942 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
4943
4944         * device/include/Makefile.in: fix install
4945         * doc/Makefile: fix install
4946
4947 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4948
4949         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
4950         in bug #860505
4951         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
4952         how the function variable allocation summary is displayed; also
4953         include information about variables allocated to the overlay
4954         segment
4955
4956 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4957
4958         * as/mcs51/lkmain.c: Help about -Y option
4959         * as/mcs51/lkarea.c: Fixed gcc warnings
4960
4961 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
4962
4963         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
4964         fixed warning
4965         * support/valdiag/tests/overflow.c: added
4966         * src/SDCCast.c (decorateType),
4967         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
4968         LEFT_OP (left shift)
4969
4970 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4971
4972         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
4973         (default behaviour).
4974
4975 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4976
4977         A python script to validate compiler diagnostic messages. It can be
4978         used to verify that sdcc complains about bad c source code and
4979         gives a good location of the error.
4980         * support/valdiag/Makefile,
4981         * support/valdiag/valdiag.py,
4982         * support/valdiag/tests/*
4983
4984 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4985
4986         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
4987         * src/SDCCsymt.c (newEnumType),
4988         * src/SDCCsymt.h
4989         * support/Util/SDCCerr.c,
4990         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
4991         enum related bugs.
4992         * support/regression/tests/enum.c: added test for enum values that
4993         require at least 2 bytes of storage.
4994
4995 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
4996
4997         * src/common.h: added ifndef/define/endif macros
4998         around the header file.
4999         Bug reported from Jesus Calvino-Fraga
5000
5001 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5002
5003         * sdcc.spec: updated
5004         * device/include/Makefile.in: don't install CVS directories
5005         * device/lib/Makefile.in: added removal of CVS directories after install
5006         * doc/Makefile: fixed install, added local_icons
5007         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
5008         * src/mcs51/gen.c (genRightShift): fixed bug #870788
5009         * src/ds390/gen.c (genRightShift): fixed bug #870788
5010         * src/SDCCast.c (decorateType): fixed bug #870781
5011
5012 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5013
5014         PIC16 port related changes:
5015         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
5016         added variable stackPos,
5017
5018         * gen.c: genCall, assignResultValue: added support for
5019         pushing/retrieving function parameters to/from stack,
5020         genFunction,genEndFunction: setup stack frame for the
5021         generated function,
5022         genAddrOf: will be changed according to bug 863624
5023
5024         * added files genutils.c and genutils.h which contain gen*
5025         debugged and optimised functions extracted from gen.c
5026
5027         * glue.c: added variable 'externs' which holds extern symbols,
5028         pic16emitRegularMap: is modified to properly handle relocatable
5029          symbols under the new scheme,
5030         pic16createInterruptVect: is modified
5031         pic16printPublics: is modified to emit 'global' assembler directives,
5032         added pic16_printExterns to print extern symbols,
5033         pic16glue: initializes stack/frame pointer in the beginning of
5034         the assembly output. Temporary hack, will be corrected later,
5035         because gplink yet does not support stack and SDCC does not
5036         yet support a type of crt0.o object to create the final binary.
5037
5038         * Removed many lines that contain 8051 legacy code.
5039         * The code is finally placed under a 'code' directive.
5040         * Added port specific options.
5041
5042         * _process_pragma: simplified since now we do not need *special*
5043         include file to define SFR registers. But a separate header
5044         will be needed. This will be developed later.
5045         * _pic16_parseOptions: added, parses port specific options:
5046         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
5047         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
5048         --preplace-udata-with=
5049
5050         * _pic16_setDefaultOptions: modified to initialize section names,
5051         but hack is temporarly out of order since it needs improvement.
5052         * _pic16_genAssemblerPreamble: configuration words are emitted by
5053         their address instead of their name. This part is incomplete and
5054         supports only the 18Fxx2 devices. Other devices will emit an error
5055         during assembly since they do not contain the same set of config
5056         registers
5057         * _pic16_genIVT: is modified,
5058
5059         * pcode.c: added definitions for some hardware registers that are needed
5060         for stack support
5061         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
5062         All PCI entries are updated. Now LFSR is supported.
5063         * Removed pic16_pciTRIS is mentioned by mdubuc in source
5064         * added pic16_newpCodeOpLit2 to support instructions with
5065         two literal arguments
5066         * pic16_pCode2str: corrected code that emits assembler instructions
5067         with two literal operands and those that have an access bit modifier
5068         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
5069         this fixes a bug which caused some labels to be lost, when an
5070         assembler directive was added, i.e. banksel,
5071         * pic16_FixRegisterBanking: improved logic that causes the insertion
5072         of bank switching,
5073         * InlineFunction: functions that are called once, are not any more
5074         inlined. This can be a port option in the future,
5075
5076         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
5077
5078         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
5079         hold the corresponding uninitialized symbols,
5080         * pic16_allocProcessorRegister: registers have explicit marked the
5081         accessBank field,
5082         * pic16_allocInternalRegister: registers are explicit marked as
5083         not used,
5084         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
5085         processing list, so bit registers were lost,
5086         *
5087
5088         * ralloc.h: added field 'accessBank' and original symbol operand
5089         in register definition,
5090         * removed the field isMapped from register definition,
5091
5092         ** Several functions have been removed from various sources:
5093         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
5094         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
5095         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
5096         pic16_assignRelocatableRegisters
5097
5098         ** others have been introduced:
5099         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
5100         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
5101
5102 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
5103
5104         * support/scripts/inc2h.pl: changed definition of BIT_AT
5105         to emit 'sbit at' instead of 'bit at'. This was a request.
5106
5107         PIC16 port related preliminary changes:
5108         * gen.c: prefixed function popRegFromString with
5109         pic16_ and all references to it corrected
5110         * pcode.c: all pic16_pc_* hardware registers prefixed
5111         with underscore (_),
5112         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
5113         * ralloc.c: newReg(): when register is REG_SFR then
5114         set address to rIdx,
5115         pic16_allocProcessorRegister(): marks register wasUsed=0
5116         pic16_writeUsedRegs(): added a call to assign processor
5117         registers via pic16_assignFixedRegisters
5118
5119 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5120
5121         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
5122         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
5123         variables in unused register banks.  Also the SSEG is placed
5124         wherever there is enough space for it, and IDATA can be anywhere
5125         in internal RAM.  For now compile using -Wl-Y[stack_size].
5126         The mem file is different for this option as well, since it
5127         makes no sense of talking about DSEG lenght.
5128
5129 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
5130
5131         * src/SDCClrange.c: fixed bug 869095 that caused segfault
5132         in certain cases, e.g. when ROM assignment, patch provided
5133         from Albert den Haan.
5134
5135 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
5136
5137         Many signedness and type propagation fixes:
5138         * src/SDCCicode.c: made geniCodeCast() static
5139         replaced SPEC_ by IS_ (cosmetic)
5140         (operandOperation): fixed div and mod operation
5141         (usualBinaryConversions): added support for promotion of char
5142         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
5143         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
5144         (geniCodeAdd): an array index will stay unsigned, even if promoted
5145         from char to int
5146         (geniCodeArray): ditto
5147         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
5148         * src/SDCCsymt.c (computeType): added more support for char;
5149         promotion of char is selectable by promoteCharToInt, fixed signedness
5150         for all cases
5151         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5152         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5153         * src/SDCCval (val*): replaced signedness calculation by
5154         computeType()
5155         rearranged if-branches (cosmetic)
5156         (valShift): added warning W_SHIFT_CHANGED
5157         (valCompare): fixed problem with different types
5158         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
5159         * support/regression/tests/literalop.c: added many cases
5160         * support/regression/tests/ast_constant_folding.c: changed finally to
5161         'unsigned int'
5162         * .version: new year, new version: 2.3.7
5163         * src/SDCCmain.c (main): applied patch #866468
5164         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
5165         provided by Scott Bronson
5166         * doc/sdccman.lyx: updated documentation for sdcdb
5167         updated and added chapter tips
5168
5169 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5170
5171         * src/SDCCsymt.h: missing from yesterday's commits
5172
5173 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5174
5175         * src/SDCC.y (struct_or_union_specifier),
5176         * support/Util/SDCCerr.c,
5177         * support/Util/SDCCerr.h: verify that struct & union tags are used
5178         as declared.
5179
5180 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5181
5182         * src/SDCCglobl.h: missing from yesterday's commits
5183
5184 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5185
5186         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
5187         sft_attributes, struct_declaration, parameter_declaration,
5188         type_name, start_block, declaration_list),
5189         * src/SDCC.lex (check_type): support redefinition of typedef names
5190
5191 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5192
5193         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
5194         aligned xdata arrays. Erik helped me with the if clause.
5195
5196 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5197
5198         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
5199         warning
5200
5201 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5202
5203         * src/SDCCast.h,
5204         * src/SDCCast.c (newAst_),
5205         * src/SDCCicode.h,
5206         * src/SDCCicode.c (ast2iCode, newiCode),
5207         * src/SDCCglobl.h,
5208         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
5209         expr, statement, expression_statement, selection_statement,
5210         iteration_statement, expr_opt, jump_statement): foundation for tracking
5211         sequence points
5212         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
5213         point code too)
5214
5215 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5216
5217         * support/Util/SDCCerr.c,
5218         * src/SDCCast.h,
5219         * src/SDCCast.c (createCase, createDefault, decorateType),
5220         * src/SDCClabel.c (labelUnreach),
5221         * src/SDCC.y (labeled_statement, jump_statement): More improvements
5222         to error messages.
5223         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
5224         (with thanks to Stas Sergeev)
5225         * device/include/time.h,
5226         * device/lib/time.c (CheckTime): suppress unreachable code warning
5227
5228 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5229
5230         * src/SDCCast.c (createIvalCharPtr),
5231         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
5232         bug #753752)
5233         * support/regression/tests/nullstring.c: tests for these two bugs
5234
5235 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5236
5237         * support/Util/SDCCerr.h,
5238         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
5239         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
5240         about storage class and 'at' used inside struct or union
5241         * src/SDCCBBlock.c (iCodeFromeBBlock),
5242         * src/SDCCcse.c (ifxOptimize),
5243         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
5244         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
5245         printIval, emitStaticSeg, emitOverlay),
5246         * src/SDCClabel.c (deleteIfx),
5247         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
5248         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
5249         gatherAutoInit, processParms),
5250         * support/Util/SDCCerr.h,
5251         * support/Util/SDCCerr.c (werrorfl): Support for better error location
5252         reporting for post-parse errors.
5253
5254 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5255
5256         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
5257         implicit casts via union; they don't work on big endian systems
5258         (possible fix for bug #861138)
5259
5260 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5261
5262         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
5263         * src/mcs51/main.c: fixed the fix for bug #737001
5264
5265 2003-12-15  Borut Razem <borut.razem AT siol.net>
5266
5267         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
5268
5269 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5270
5271         * support/makebin/makebin.c: put output in binary mode
5272
5273 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5274
5275         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
5276         xdata and data memory on startup. Set the environment variable
5277         SDCC_NOGENRAMCLEAR to disable this.
5278         * src/mcs51/peephole.def,
5279         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
5280         (allows non-interrupt and interrupt code to safely compete for a resource
5281         without the non-interrupt code having to disable interrupts)
5282
5283 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5284
5285         * src/SDCCicode.c (geniCodeAdd),
5286         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
5287         with valFromType if type might be a pointer and host is big endian).
5288         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
5289         types, not just integer types.
5290         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
5291         multiply defined with mismatching "at" address.
5292
5293 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5294
5295         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
5296         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
5297         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
5298         with embedded nulls (fixed bug #753752)
5299
5300 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5301
5302         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
5303         Apparently this did not see much testing (endless loop)
5304
5305 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5306
5307         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
5308
5309 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5310
5311         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
5312         gracefully handle NULL memmap pointers
5313
5314 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5315
5316         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
5317         instead of deleting the iCode when an operand is volatile
5318         * src/z80/gen.c (genDummyRead),
5319         * src/mcs51/gen.c (genDummyRead),
5320         * src/ds390/gen.c (genDummyRead),
5321         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
5322         not just IC_RIGHT
5323         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
5324         * src/SDCC.y: fixed bug #850420
5325
5326 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5327
5328         Applied z80 i/o port patch from Peter Townson and fixed some operators
5329         to better handle operands in A register.
5330         * device/include/z180.h
5331         * src/SDCC.y
5332         * src/SDCCglue.c
5333         * src/z80/gen.c
5334         * src/z80/gen.h
5335         * src/z80/main.c
5336         * src/z80/peeph-z80.def
5337         * src/z80/peeph.def
5338         * src/z80/z80.h
5339
5340 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5341
5342         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
5343
5344 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5345
5346         * device/lib/hc08/_mullong.c: Removed extra #endif
5347
5348 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5349
5350         * sim/ucsim/hc08.src/inst.cc,
5351         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
5352         carries from x to h
5353         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
5354         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
5355         * device/include/stdarg.h: fixed varargs for hc08
5356         * device/lib/Makefile.in,
5357         * device/lib/hc08/Makefile,
5358         * device/lib/hc08/_mulint.c,
5359         * device/lib/hc08/_mullong.c: fixed some endian problems
5360
5361 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5362
5363         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
5364         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
5365         * device/lib/_gptrget.c,
5366         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
5367
5368 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5369
5370         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
5371         * src/SDCCast.c (astErrors): fixed bug #846007
5372         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
5373
5374 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5375
5376         * src/SDCCast.c (decorateType): disabled a transformation I added in
5377         revision 1.188 (access to fields of a structure at an absolute address);
5378         it breaks with bitfields, extern declarations, and gcse analysis.
5379         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
5380         could be assigned through a pointer, so don't complain.
5381         * src/SDCCast.c (astErrors),
5382         * src/SDCCast.h,
5383         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
5384
5385 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
5386
5387         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
5388         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
5389         output of __config directives, since gpasm now supports them
5390         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
5391         pre-processor macro, i.e. -DMCU=p18f452
5392         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
5393         and modified to handle 'cast' icode similarly to '=' icode
5394         * src/pic16/device.h (typedef struct PIC_device): added field
5395         'extMIface' to indicate that chip has external memory interface
5396         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
5397         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
5398         18F8720
5399
5400 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5401
5402         * src/SDCC.y (pointer): fixed bug #846006
5403         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
5404         * src/SDCCast.c (decorateType): fixed bug #846009
5405         * src/ds390/peeph.def,
5406         * src/ds390/gen.c (genAnd, genOr),
5407         * src/mcs51/peeph.def,
5408         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
5409
5410 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5411
5412         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
5413         * src/SDCCdflow.c
5414         * src/SDCCcse.c
5415         * src/SDCCcse.h
5416         * src/SDCCBBlock.h
5417         * src/SDCCBBlock.c
5418
5419 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
5420
5421         fixed bug #845089
5422         * src/SDCCbitv.h,
5423         * src/SDCCbitv.c: added function to free a bitvector
5424         * src/SDCClrange.h,
5425         * src/SDCClrange.c: added function to recompute the liveranges
5426         * src/avr/ralloc.c,
5427         * src/ds390/ralloc.c,
5428         * src/hc08/ralloc.c,
5429         * src/mcs51/ralloc.c,
5430         * src/pic/ralloc.c,
5431         * src/pic16/ralloc.c,
5432         * src/xa51/ralloc.c,
5433         * src/z80/ralloc.c: recompute the liveranges after register packing
5434
5435 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
5436
5437         * src/SDCCloop.c (newInduction): fixed bug #845630
5438
5439 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5440
5441         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
5442         inadvertantly left behind from my 2003-11-12 change
5443
5444 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5445
5446         Updated headers I neglected to commit yesterday.
5447         * src/SDCClrange.h,
5448         * src/SDCCicode.h
5449
5450 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5451
5452         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
5453         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
5454         * src/SDCCopt.c (eBBlockFromiCode),
5455         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
5456         the creation of the key hash table from the sequencing so it can be used
5457         earlier (for some GCSE bug fixes still pending)
5458
5459 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5460
5461         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
5462         * support/regression/tests/addsub.c: testing genPlus shortcut
5463
5464 2003-11-15  Borut Razem <borut.razem AT siol.net>
5465
5466         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
5467
5468 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5469
5470         * src/SDCCcse.c (cseBBlock): fixed bug #527779
5471         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
5472         ordering is immaterial.
5473         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
5474
5475 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5476
5477         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
5478         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
5479         (SIGSEV) of bug #840381
5480         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
5481         unlink new file before rename if new and old filenames are the same)
5482
5483 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5484
5485         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
5486         uninitialized variables) for the mcs51. Set environment variable
5487         SDCC_GENRAMCLEAR to test.
5488         xdata initialization slightly shorter
5489
5490 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5491
5492         * src/SDCCsymt.h,
5493         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
5494         #838241 & 780691 (basicly the same bug)
5495         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
5496         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
5497
5498 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
5499
5500         * src/SDCCmain.c (linkEdit): "fix" #834252
5501
5502 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5503
5504         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
5505         * src/SDCCast.h,
5506         * src/SDCC.y: fixed bug #819403
5507
5508 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5509
5510         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
5511         the reentrant attribute.
5512         * src/hc08/gen.c (genPackBits): added missing stack readjustment
5513         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
5514         simulation
5515         * src/SDCCast.c (decorateType): fixed bug with storage class not being
5516         updated during pointer dereference; f.e. ~(((char *)1)*) was being
5517         erroneously reduced to a literal.
5518         * src/hc08/ralloc.c (packRegisters, rematStr),
5519         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
5520         some cases
5521
5522 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5523
5524         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
5525         * doc/sdccman.lyx: changed from 'article' to 'book'
5526         * doc/Makefile: readded test_suite_spec and cdbfileformat
5527
5528 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
5529
5530         * device/include/stdlib.h: include malloc.h to comply with ANSI
5531         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
5532
5533 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5534
5535         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
5536         * doc/clean.mk: also remove *.out files
5537         * doc/sdccman.lyx: some additions, larger top/bottom margins
5538
5539 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5540
5541         * src/SDCC.y: fixed bug #837365
5542         * support/regression/tests/bitopcse.c
5543         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
5544         a symbol (might be valop instead)
5545         * device/lib/Makefile.in: added errno.c to HC08SOURCES
5546         * device/lib/clean.mk: added hc08 to the cleaning list
5547
5548 2003-11-04  Borut Razem <borut.razem AT siol.net>
5549
5550         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
5551           made 2003-11-04
5552         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
5553           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
5554           malloc is declared in standard stdlib.h
5555
5556 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5557
5558         * device/lib/hc08/Makefile: need to clean .rel not .o files
5559         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
5560
5561 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5562
5563         * src/port.h,
5564         * src/hc08/main.c,
5565         * src/mcs51/main.c,
5566         * src/ds390/main.c,
5567         * src/z80/main.c,
5568         * src/avr/main.c,
5569         * src/pic/main.c,
5570         * src/pic16/main.c,
5571         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
5572         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
5573         tests (which uses the port's oclsExpense function)
5574         * src/SDCC.y,
5575         * src/SDCCast.c,
5576         * src/SDCCicode.c,
5577         * src/hc08/gen.c,
5578         * src/ds390/gen.c,
5579         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
5580
5581 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5582
5583         * src/SDCCcse.c (ifxOptimize),
5584         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
5585         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
5586         deleting the IFX iCode.
5587         * src/hc08/ralloc.c: reduced unneeded slocs
5588         * src/hc08/gen.c: fixed bug in asmopToBoolean
5589
5590 2003-11-04  Borut Razem <borut.razem AT siol.net>
5591
5592         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
5593           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
5594           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
5595           transferred to configure
5596
5597 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
5598
5599         Use headers defined in the C[++] standards:
5600         * sim/ucsim/gui.src/serio.src/fileio.cc
5601         * sim/ucsim/gui.src/serio.src/frontend.cc
5602         * sim/ucsim/gui.src/serio.src/main.cc
5603         * sim/ucsim/gui.src/serio.src/posix_signal.cc
5604         * support/Util/NewAlloc.c
5605         * as/hc08/lklibr.c
5606         * as/mcs51/lklibr.c
5607         * as/z80/aslist.c
5608         * as/z80/assym.c
5609
5610 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5611
5612         * Added MSVC projects for hc08 assembler and linker:
5613         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
5614         /as/hc08/link_hc08.dsp
5615
5616 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
5617
5618         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
5619
5620 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
5621
5622         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
5623
5624 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5625
5626         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
5627
5628 2003-10-31  Borut Razem <borut.razem AT siol.net>
5629
5630         * support/cpp2/cpplib.h,
5631           support/cpp2/cpplib.c,
5632           support/cpp2/cpplex.c,
5633           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
5634           to switch _asm block preprocessing on / off. Default is
5635           #pragma preproc_asm +
5636
5637 2003-10-31  Borut Razem <borut.razem AT siol.net>
5638
5639         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
5640           when outputting comment blocks (when executed with -C option) and
5641           _asm (SDCPP specific) blocks
5642
5643 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5644
5645         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
5646
5647 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
5648
5649         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
5650
5651 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
5652
5653         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
5654         * src/SDCCast.c (decorateType): fixed bug #832664
5655
5656 2003-10-31  Borut Razem <borut.razem AT siol.net>
5657
5658         * support\cpp2\cpplex.c: fixed for SDCPP:
5659           comments(when executed with -C option) and _asm blocks
5660           were included even if they where in skipped #if block.
5661           Applied solution from GCC cpp 3.3.2
5662
5663 2003-10-31  Borut Razem <borut.razem AT siol.net>
5664
5665         * src/SDCC.lex: sdcc now understands both formats:
5666           '# <line_number> <file_name>' and
5667           '#line <line_number> <file_name>'
5668         * support/cpp2/cppmain.c: sdcpp now generates the standard
5669           '# <line_number> <file_name>' instead of former
5670           '#line <line_number> <file_name>'
5671
5672 2003-10-30  Borut Razem <borut.razem AT siol.net>
5673
5674         * support/cpp2/cpphash.h,
5675         * support/cpp2/cpplib.h
5676         * support/cpp2/cpplex.c,
5677         * support/cpp2/cppmain.c,
5678         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
5679
5680 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5681
5682         Fixed a number of problems revealed by bug #827883.
5683         * src/SDCCloop.c (loopInvariants): Spill location of the
5684         result operand should be recomputed if extracted from
5685         a loop. Also, don't extract assignments of an iTemp
5686         from a literal.
5687         * src/SDCCast.c (isConformingBody): loop reversal should
5688         not occur if the control variable is involved with a
5689         relational operator.
5690
5691 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
5692
5693         * .version: bumped to 2.3.6 to reflect the big improvements
5694         made by Erik and Klaus. Thanks!
5695
5696 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
5697
5698         Replaced the livrange code.
5699         * src/SDCClrange.c: added new LR code
5700         * src/SDCCloop.c,
5701         * src/SDCCBBlock.h: removed remainig parts from old LR code
5702         * src/ds390/ralloc.c,
5703         * src/ds390/gen.c: minor fixes to make it work with new code
5704
5705 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5706
5707         * as/hc08/asm.h,
5708         * as/hc08/lkrloc.c,
5709         * src/hc08/gen.c,
5710         * src/hc08/ralloc.c: Fix various warnings related to the hc08
5711         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
5712         (tweaked fix for bug #818696)
5713
5714 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5715
5716         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
5717
5718 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5719
5720         * src/SDCCmain.c,
5721         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
5722         * src/mcs51/gen.c (gencjneshort),
5723         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
5724         more efficient (per Scott Bronson's suggestion)
5725
5726 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5727
5728         Extended the semantics of the critical keyword to include
5729         individual statements. See RFE #827755 and #799831
5730         * src/SDCC.y
5731         * src/SDCCicode.c
5732         * src/SDCCopt.c
5733         * src/SDCCast.c
5734         * support/Util/SDCCerr.c
5735         * support/Util/SDCCerr.h
5736         * src/mcs51/gen.c
5737         * src/ds390/gen.c
5738         * src/hc08/gen.c
5739
5740 2003-10-19  Borut Razem <borut.razem AT siol.net>
5741
5742         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
5743
5744 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5745
5746         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
5747         Fixed bug #818696
5748         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
5749         and predecrement operand is displayed
5750
5751 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
5752
5753         * src/SDCCval.c (valMinus): fixed bug #826041
5754
5755 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5756
5757         Some hc08 related updates that I missed earlier
5758         * sim/ucsim/stypes.h
5759         * support/regression/ports/hc08/spec.mk
5760
5761 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5762
5763         New target "hc08" for the Motorola 68hc08 family of micros
5764
5765         * configure
5766         * configure.in
5767         * Makefile
5768         * src/hc08/*
5769         * src/SDCCmain.c
5770         * src/port.h
5771         * sim/ucsim/hc08.src/*
5772         * sim/ucsim/configure.in
5773         * src/ucsim/configure
5774         * sim/ucsim/packages_in.mk
5775         * as/hc08/*
5776         * as/Makefile
5777         * device/include/mc68hc908qy.h
5778         * device/lib/hc08/*
5779         * device/lib/Makefile.in
5780         * support/regression/ports/hc08/*
5781         * support/regression/Makefile
5782
5783 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5784
5785         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
5786         regression test
5787         * src/ds390/gen.c (genCast): fixed bug #821957
5788
5789 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
5790
5791         * device/lib/logf.c: "fixed" overlay bug
5792         * support/regression/ports/host/spec.mk: added m library
5793         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
5794         * support/regression/tests/float_trans: added (for Eric)
5795
5796 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
5797
5798         * src/mcs51/gen.c (genCpl): fixed bug
5799         http://sf.net/mailarchive/message.php?msg_id=6263915
5800
5801 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
5802
5803         * src/SDCCast.c (decorateType): added extended constant folding
5804         * src/SDCCsymt.c (computeType): cleanup
5805         * src/SDCCval.c (valShift): minor optimization
5806         * support/regression/tests/ast_constant_folding.c: added
5807
5808 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5809
5810         * src/SDCCmain.c: removed some unintended changes
5811
5812 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5813
5814         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
5815         * src/z80/gen.c: fixed part of bug #817589
5816         * src/SDCCsymt.c (checkFunction): fixed bug #817895
5817
5818 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
5819
5820         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
5821         * src/SDCCcflow.c
5822         * src/SDCCcse.c
5823         * src/SDCCdflow.c
5824         * src/SDCClabel.c
5825         * src/SDCClrange.c
5826         * src/SDCCmem.c
5827         * src/SDCCopt.c
5828         * src/SDCCpeeph.c
5829         * src/SDCCset.c
5830         * src/avr/ralloc.c
5831         * src/ds390/ralloc.c
5832         * src/izt/ralloc.c
5833         * src/mcs51/ralloc.c
5834         * src/pic/ralloc.c
5835         * src/pic16/ralloc.c
5836         * src/xa51/ralloc.c
5837         * src/z80/ralloc.c
5838         * src/z80/gen.c: removed unused label "release:"
5839
5840 2003-10-06  Borut Razem <borut.razem AT siol.net>
5841
5842         * src/SDCC.lex: removed definition of unused variables
5843           save_optimize and save_options
5844
5845 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
5846
5847         * clean.mk: removed '=' in "-maxdepth=1"
5848         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
5849         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
5850
5851 2003-10-06  Borut Razem <borut.razem AT siol.net>
5852
5853         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
5854           my_unput() replaced by unput()
5855
5856 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
5857
5858         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
5859         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
5860         type-punned pointer will break strict-aliasing rules"
5861         Old LR behaviour is again default; Klaus' LR can be choosen by
5862         defining the environment variable LRKLAUS
5863         * src/SDCCBBlock.h
5864         * src/SDCCloop.c
5865         * src/SDCClrange.c
5866         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
5867         * clean.mk: fixed removal of files in bin/CVS/
5868         * device/lib/clean.mk: fixed removal of directories small and large
5869         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
5870         * src/SDCCicode.c,
5871         * src/SDCCval.c: removed superflous test for pedantic
5872
5873 2003-10-05  Borut Razem <borut.razem AT siol.net>
5874
5875         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
5876           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
5877           message "unmatched #pragma SAVE and #pragma RESTORE"
5878
5879 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5880
5881         * doc/sdccman.lyx: various additions and updates (interrupts, inline
5882           assembly, critical functions, atomic, nojtbound)
5883
5884 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
5885
5886         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
5887         * src/SDCCBBlock.h
5888         * src/SDCCloop.c
5889         * src/SDCCloop.h
5890         * src/SDCClrange.c
5891
5892 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5893
5894         * src/z80/gen.h,
5895         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
5896         * src/mcs51/gen.h
5897         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
5898         * src/ds390/gen.h
5899         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
5900         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
5901         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
5902
5903 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5904
5905         * src/z80/gen.c (genRet): fixed bug #524753
5906         * src/z80/gen.c (genCast): fixed internal error on cast from
5907         pointer to long
5908         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
5909         fix for bug #477835 to the z80
5910         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
5911         for tracking iCodes in the peephole optimizer for z80
5912
5913 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5914
5915         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
5916         the other part of bug #814548
5917         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
5918
5919 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
5920
5921         * src/SDCCcse.c: fixed part of bug #814548
5922
5923 2003-09-28  Borut Razem <borut.razem AT siol.net>
5924
5925         * src/asm.c: rewrite of printILine() to use temporary file instead
5926           a pipe
5927         * src/xa51/main.c: commented out declaration of int rewinds
5928
5929 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5930
5931         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
5932
5933 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5934
5935         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
5936         * src/asm.c (printILine): Fixed bug #811015
5937
5938 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5939
5940         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
5941         freeing.
5942
5943 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5944
5945         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
5946         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
5947         to correctly handle general case of AOP_PAIRPTR
5948         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
5949
5950 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5951
5952         * src/mcs51/ralloc.c (fillGaps),
5953         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
5954         register positioning bug)
5955
5956 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
5957
5958         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
5959
5960 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5961
5962         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
5963         genCodePointerGet, genGenPointerGet, genFarPointerSet,
5964         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
5965         (ralloc doesn't intentionally do this now, but perhaps later)
5966         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
5967         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
5968         register positioning bugs (Fixed bug #762602 and #795325)
5969         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
5970         (Fixed bug #808779)
5971         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
5972         lines that --i-code-in-asm generates
5973
5974 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5975
5976         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
5977         trying to fclose a FILE* that was already closed.
5978
5979 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5980
5981         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
5982         of const struct should be treated as if const themselves)
5983
5984 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
5985
5986         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
5987
5988 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5989
5990         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
5991         Unix (/n) and DOS (/r/n) line terminations.
5992
5993 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5994
5995         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
5996         bug #613775
5997
5998 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5999
6000         * src/mcs51/gen.c (genFunction, genEndFunction),
6001         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
6002         and restore of EA so that stack offsets to parameters are
6003         correct when using both critical and reentrant/stack-auto.
6004         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
6005         size (can be triggered in error if sloc is shared between
6006         different sized objects)
6007         * device/include/float.h: fixed macros to explicitly use
6008         unsigned long where needed
6009
6010 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
6011
6012         Feature req. 799831: added code to allow nesting of critical functions
6013         * src/mcs51/gen.c (genFunction, genEndFunction)
6014         * src/ds390/gen.c (genFunction, genEndFunction)
6015
6016 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6017
6018         * src/SDCCsymt.c (sclsFromPtr),
6019         * src/SDCCsymt.h,
6020         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
6021         support for standard C idiom of memory mapped variables; for
6022         example, *((xdata int*)0x1234) = 1 is now internally equivalent
6023         to xdata int at 0x1234 tempvar = 1.
6024         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
6025         provided by Akiya ISHIDA
6026
6027 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
6028
6029         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
6030         * src/SDCCval.c (constVal): added reduction from int to char
6031         * src/SDCCval.c (valMult, valDiv): fixed sign handling
6032         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
6033         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
6034         to ignore the sign
6035         * support/regression/tests/shifts.c: fixed
6036
6037 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6038
6039         * src/z80/gen.c (genXor): Fixed bug #805445
6040
6041 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6042
6043         Fixed bug #621531 (const & volatile confusion in the type chain).
6044         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
6045         refer to the const or volatile state of the pointer itself.
6046
6047         * src/SDCCast.c
6048         * src/SDCCglue.c
6049         * src/SDCCicode.c
6050         * src/SDCCsymt.c
6051         * src/SDCCval.c
6052         * src/SDCC.y
6053         * src/SDCCsymt.h
6054         * src/pic/gen.c
6055         * src/pic/ralloc.c
6056         * src/pic16/gen.c
6057         * src/pic16/ralloc.c
6058         * support/regression/tests/const.c
6059
6060 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6061
6062         When checking for duplicated modules, use absolute paths
6063         instead of relative paths.  Files changed:
6064
6065         * as/mcs51/lklib.c
6066         * link/z80/lklib.c
6067
6068 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6069
6070         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
6071
6072 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6073
6074         * device/include/string.h: added size_t typedef, changed
6075         prototypes to use size_t, eliminated separate reentrant and
6076         non-reentrant declarations, added _memmove declaration
6077         * device/lib/_memcpy.c: changed to use size_t instead of int,
6078         changed /4 to >>2 to avoid division library call
6079         * device/lib/_memcmp.c,
6080         * device/lib/_memset.c,
6081         * device/lib/_strncat.c,
6082         * device/lib/_strncpy.c,
6083         * device/lib/_strncmp.c: changed to use size_t instead of int
6084         * device/lib/_memmove.c: new file (fixed bug #772294)
6085         * device/lib/Makefile.in: added _memmove.c
6086         * device/lib/z80/asm_strings.s: fixed bug #772290
6087         * support/regression/tests/bitfields.c: attempt to fix host assertion
6088         failure on amd64-unknown-linux2.2
6089
6090 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6091
6092         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
6093         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
6094         * as/z80/asmain.c (main): fixed bug #801766
6095
6096 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
6097
6098         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
6099         compilers
6100
6101 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6102
6103         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
6104         reported in bug #800609
6105
6106 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
6107
6108         * Top header beautifications in src/pic16 directory:
6109           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
6110           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
6111           pcoderegs.h, ralloc.c, ralloc.h
6112         * main.c: added top header and GPL license notice
6113         * pcode.c: fixed the if-conditional warning
6114
6115 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
6116
6117         * device/lib/_mullong.c: replaced int by short for gcc
6118
6119 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6120
6121         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
6122         and JUMPTABLE iCodes properly now (worked by accident before)
6123         * src/mcs51/gen.c (leftRightUseAcc),
6124         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
6125         iCode properly now. Use getSize instead of nRegs since a & b
6126         aren't part of the nRegs tally.
6127
6128 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
6129
6130         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
6131         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
6132           before instructions that use the _STATUS register
6133
6134 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
6135
6136         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
6137         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
6138         fetching of the pointer
6139         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
6140         copied from genNearPointerSet()
6141         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
6142         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
6143         If they pop r0/r1 they must be called in the opposite order than aopOp().
6144         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
6145         (resp. --stack-auto), prepared for --xstack
6146
6147 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6148
6149         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
6150
6151 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
6152
6153         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
6154         these ports have their own __sdcc_external_start()
6155
6156 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
6157
6158         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6159         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
6160         type for bits was changed. It resulted in bit variables becoming
6161         global, which is not permitted in PIC 14 assembly output.
6162
6163 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6164
6165         * doc/sdccman.lyx: various additions and updates. Rearranged sections
6166
6167 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6168
6169         Z80 and MCS51 linkers complaint if a public symbol is defined
6170         in more than one library module:
6171
6172         * as/mcs51/lklib.c
6173         * link/z80/lklib.c
6174         * as/mcs51/Makefile.in
6175
6176 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6177
6178         A few small changes that speed up the peephole optimizer.
6179
6180         * src/SDCCpeeph.c
6181
6182 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6183
6184         Try to make the peephole optimizer smarter by maintaining
6185         an association between the assembly source code and the
6186         iCodes that originated them. Put this information to use
6187         with a new peephole rule condition "notVolatile" so that
6188         the rules can be aggressive yet still safe.
6189
6190         * src/SDCCpeeph.c
6191         * src/SDCCpeeph.h
6192         * src/mcs51/gen.c
6193         * src/mcs51/peeph.def
6194
6195 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6196
6197         Fixed bug #741761
6198
6199         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
6200         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
6201         if the left or right operand symbols have the accuse flag set.
6202
6203 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6204
6205         Changed the type of the result of the ! (NOT) operator to char;
6206         previously it returned the same type as the source. This allows
6207         us to eliminate all the genFloatNot functions (all of its target
6208         implementations were very buggy) since !float can use the same
6209         code as !long now.
6210
6211         * src/SDCCicode.c (ast2iCode): ! returns char
6212         * src/mcs51/gen.c (genNot, genNotFloat),
6213         * src/ds390/gen.c (genNot, genNotFloat),
6214         * src/z80/gen.c (genNot, genNotFloat),
6215         * src/pic/gen.c (genNot, genNotFloat),
6216         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
6217
6218 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
6219
6220         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6221         1. Interrupt would not compile properly. Ensure PCLATH register is saved
6222            during interrupts. Ensure WSAVE is located at a shared bank address.
6223         2. Fixed page selection in some places
6224         3. Fixed BTFSS/C to where necessary use registers directly and not simply
6225            the registers name strings.
6226         4. Fixed "signed / unsigned compare" compiler warnings.
6227         5. The PIC port manages its own allocation of the general purpose
6228            registers, but makes no attempt to reuse them. As a result when
6229            compiling it soon runs out of general purpose registers. Some
6230            additional code was added to the files pcode.c and device.c to walk
6231            through the function call tree and rename the registers so that they
6232            get reused.
6233
6234         * src/pic/device.c
6235         * src/pic/gen.c
6236         * src/pic/glue.c
6237         * src/pic/pcode.c
6238         * src/pic/pcode.h
6239         * src/pic/ralloc.c
6240         * src/pic/ralloc.h
6241         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
6242         genPlus() & genMinus() when the result is the same as left or right
6243
6244 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6245
6246         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
6247
6248 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6249
6250         Made bitfield a distinct type from bit so that bitfields
6251         convert as per ANSI C and bits retain their traditional
6252         boolean style behaviour. Implemented bitfield support in
6253         the z80 port.
6254
6255         * src/SDCCsymt.h,
6256         * src/SDCCsymt.c,
6257         * src/SDCCast.c,
6258         * src/cdbFile.c,
6259         * src/mcs51/gen.c,
6260         * src/ds390/gen.c: bit v bitfield split
6261         * src/z80/gen.c: New support for bitfields
6262         * support/regression/tests/bitfields.c: reenabled z80,
6263         added more tests
6264
6265 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6266
6267         Rules 246.x, 247.x relate to bitfields, the others speed up
6268         access to xdata mapped I/O devices.
6269
6270         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
6271
6272 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6273
6274         Cleaned up genPackBits and genUnpackBits and added two helper
6275         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
6276         for literal assignments in genPackBits (thanks to Frieder for
6277         reminding me).
6278
6279         * src/mcs51/gen.c
6280         * src/ds390/gen.c
6281
6282 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6283
6284         Fixed bug #748310 (pointer to function type mishandled when the
6285         function name is omitted). Also fixed a SIGSEGV when a function
6286         attribute (reentrant, etc) is used on a non-function or on a
6287         function but misplaced before the parameter list.
6288
6289         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
6290         bug #748310
6291         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
6292         * support/Util/SDCCerr.h,
6293         * support/Util/SDCCerr.c: Added func attr misuse error msg
6294
6295 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
6296
6297         Fixed bug #787649 by anonymous
6298         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
6299         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
6300
6301 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6302
6303         Fixed numerous bitfield problems.
6304
6305         * src/SDCC.y: More bitfield related error checking
6306         * src/SDCCsymt.h,
6307         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
6308         * support/Util/SDCCerr.h,
6309         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
6310         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
6311         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
6312         * support/regression/tests/bitfields.c: tests added
6313
6314 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6315
6316         Made the constant following the "interrupt" keyword optional. If
6317         omitted, the function will not automatically be given an entry
6318         in the interrupt vector table (similar to #pragma NOIV, but
6319         less syntacticly kludgy). The interrupt number is also now
6320         range checked. Also fixed a bug in the high order bit example
6321         in the manual.
6322
6323         * src/SDCC.y
6324         * src/SDCCmem.c
6325         * src/SDCCglue.c
6326         * src/SDCCsymt.h
6327         * support/Util/SDCCerr.c
6328         * support/Util/SDCCerr.h
6329         * doc/sdccman.lyx
6330
6331 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
6332
6333         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
6334         * src/SDCCicode.c (operandOperation): rewritten some ops
6335         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
6336         * src/SDCCsymt.c (computeType): literals are handled the same way as any
6337         other type
6338         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
6339         be re-activated by defining REDUCE_LITERALS)
6340         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
6341         unsigned, but are signed by default
6342         * src/SDCCval.c (constVal): rearranged
6343         * src/SDCCval.c (valMod): preliminary fix
6344         * src/SDCCval.c (valCastLiteral): use TYPE_* types
6345         * support/regression/literalop.c: added, work in progress
6346
6347 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6348
6349         Generate warnings for useless declarations like "char data;"
6350         that don't do what new users expect.
6351
6352         * src/SDCC.y
6353         * support/Util/SDCCerr.h
6354         * support/Util/SDCCerr.c
6355
6356 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
6357
6358         * src/SDCCval.c (valMult): fix overflow detection of negative int
6359
6360 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6361
6362         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
6363
6364         Changes to support big endian targets:
6365
6366         * src/ports.h
6367         * src/SDCCglue.c
6368         * src/avr/main.c
6369         * src/ds390/main.c
6370         * src/izt/i186.c
6371         * src/mcs51/main.c
6372         * src/pic/main.c
6373         * src/pic16/main.c
6374         * src/xa51/main.c
6375         * src/z80/main.c
6376
6377 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
6378
6379         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
6380         * device/lib/time.c: fixed warning "integer overflow in expression"
6381
6382 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
6383
6384         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
6385         * src/SDCCval.c (constVal): changed default to signed; hex and octal
6386         constants are unsigned; added recognition of "u" flag for unsigned
6387         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
6388         * src/SDCCval.c (valDiv, valMod): fixed signdness
6389         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
6390         signedness of modulo, left and right shift
6391         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
6392         * support/Util/SDCCerr.h: added warning W_INT_OVL
6393         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
6394         * src/SDCCast.c (ast_print): improved output of constants
6395
6396 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6397
6398         Fixed some warnings when building with MSVC:
6399
6400         * as\mcs51\asdata.c
6401         * as\z80\asdata.c
6402         * as\mcs51\asm.h
6403         * as\z80\asm.h
6404         * link\z80\aslink.h
6405         * link\z80\lkdata.c
6406         * link\z80\lkeval.c
6407         * link\z80\lkgb.c
6408         * link\z80\lkihx.c
6409         * link\z80\lks19.c
6410         * link\z80\lksym.c
6411         * support\cpp2\cpplib.c
6412         * src\ds390\gen.c
6413         * src\mcs51\gen.c
6414
6415 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
6416
6417         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
6418
6419 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6420
6421         * support\librarian\clean.mk: Do not remove Makefile.
6422         * support\librarian\Makefile: added.
6423
6424 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6425
6426         Added librarian to MSVC build:
6427         * all.dsp
6428         * sdcc.dsw
6429         * support\librarian\librarian.dsp
6430
6431         'configure' not needed for librarian, removed:
6432         * support\librarian\configure
6433         * support\librarian\configure.in
6434         * support\librarian\config_in.h
6435         * support\librarian\Makefile.in
6436
6437         Hopefully these ones built the librarian and the rest of sdcc properly:
6438         * Makefile
6439         * Makefile.common.in
6440
6441         Messed up 'configure', so revert to previous version:
6442         * configure
6443         * configure.in
6444
6445 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
6446
6447         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
6448         there, while the mantissa of a double is "only" 53 bits wide.
6449
6450 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6451
6452         Adding sdcclib to the build.  MSVC project coming soon.
6453         Files added/changed:
6454
6455         * support\librarian\clean.mk
6456         * support\librarian\configure
6457         * support\librarian\configure.in
6458         * support\librarian\config_in.h
6459         * support\librarian\Makefile.bcc
6460         * support\librarian\Makefile.in
6461         * support\librarian\sdcclib.c
6462         * Makefile.bcc
6463         * Makefile
6464         * Makefile.common.in
6465         * configure
6466         * configure.in
6467
6468 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6469
6470         Linker now complaints if linked modules have conflicting options, for
6471         example, one compiled using --model-large and another one compiled with
6472         --model-small.  The following files were modified:
6473
6474         * as\mcs51\asdata.c
6475         * as\mcs51\aslink.h
6476         * as\mcs51\asm.h
6477         * as\mcs51\asmain.c
6478         * as\mcs51\asout.c
6479         * as\mcs51\i51pst.c
6480         * as\mcs51\lkdata.c
6481         * as\mcs51\lklibr.c
6482         * as\mcs51\lkmain.c
6483         * as\z80\asdata.c
6484         * as\z80\asm.h
6485         * as\z80\asmain.c
6486         * as\z80\asout.c
6487         * as\z80\z80pst.c
6488         * link\z80\aslink.h
6489         * link\z80\lkdata.c
6490         * link\z80\lklibr.c
6491         * link\z80\lkmain.c
6492         * src\SDCCglue.c
6493
6494 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6495
6496         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
6497         as/mcs51/lklibr.c: Generate a warning when a library is not found.
6498
6499 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
6500
6501         * src/z80/mappings.i: fix _mul[us][int,long] entries
6502
6503 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6504
6505         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
6506
6507 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
6508
6509         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
6510         * support/regression/tests/bitopcse.c: added
6511         fixed warning:
6512         * src/avr/gen.c:
6513         * src/pic/gen.c:
6514         * src/pic16/gen.c:
6515         * src/z80/gen.c:
6516         * src/xa51/gen.c:
6517
6518 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6519
6520         added support for new library format to z80, gbz80 linkers:
6521         *link/z80/aslink.h
6522         *link/z80/lklex.c
6523         *link/z80/lklib.c
6524         *link/z80/lklist.c
6525
6526 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
6527
6528         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
6529         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
6530
6531 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
6532
6533         added DUMMY_READ_VOLATILE:
6534         * src/SDCC.y:
6535         * src/avr/gen.c:
6536         * src/xa51/gen.c:
6537         * src/z80/gen.c:
6538         * src/pic/gen.c:
6539         * src/pic16/gen.c:
6540         * src/mcs51/gen.c:
6541         * src/ds390/gen.c:
6542         * src/SDCCcse.c (algebraicOpts): many improvements
6543         * src/SDCCcse.h: removed algebraicOpts()
6544         * src/SDCCicode.c (picDummyRead): added
6545
6546 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6547
6548         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
6549         "Insufficient space in data memory".
6550
6551 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6552
6553         * src/mcs51/gen.c: fixed bug #771358
6554         * src/z80/gen.c: fixed bug #759087
6555
6556 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
6557
6558         * src/pic16/glue.c: minor cleanup by Vangelis
6559
6560 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6561
6562         * device/include/regc515c.h: fixed #758477
6563         * device/lib/_gptrget.c: saving some cycles in generic pointer get
6564         * device/lib/_gptrput.c: saved a few bytes
6565         * my tab spacing is 8, yours too?)
6566         * device/lib/_ser.c: process RX bytes earlier than TX bytes
6567         * device/lib/serial.c: process RX bytes earlier than TX bytes
6568         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
6569
6570 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6571
6572         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
6573
6574 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6575
6576     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
6577
6578 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
6579
6580         * device/lib/Makefile.in: bad fix, reverted to 1.43
6581
6582 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
6583
6584         * device/lib/Makefile.in: added missing z80 object files
6585
6586 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
6587
6588         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
6589         pic16 progress by Vangelis:
6590         * src/SDCCglobl.h:
6591         * src/SDCCmain.c:
6592         * src/pic/Makefile:
6593         * src/pic:
6594         * pic/Makefile:
6595         * pic16/device.c:
6596         * pic16/device.h:
6597         * pic16/gen.c:
6598         * pic16/gen.h:
6599         * pic16/genarith.c:
6600         * pic16/glue.c:
6601         * pic16/main.c:
6602         * pic16/pcode.c:
6603         * pic16/pcode.h:
6604         * pic16/pcodepeep.c:
6605         * pic16/peeph.def:
6606
6607 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6608
6609     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
6610
6611 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6612
6613     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
6614     added gbz80 build to MSVC project.
6615     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
6616     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
6617     from 8051 stuff and setup so it links using a .lnk file.
6618
6619 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6620
6621     * support/librarian/sdcclib.c: sdcc librarian.
6622     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
6623     with sdcclib.
6624
6625 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6626
6627     * as/mcs51/lkmain.c: properly handle extensions in function afile.
6628
6629 2003-07-02  Borut Razem <borut.razem AT siol.net>
6630
6631         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
6632         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
6633         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
6634         src/xa51/main.c, src/z80/main.c:
6635         virtualization of glue() function: each port has it's own glue function,
6636         which is accessed by do_glue function pointer in PORT.general structure
6637
6638 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
6639
6640         * DS800C400 fun, improved ROM interface and tinibios.
6641
6642 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
6643
6644         * More support for DS80C400. Now includes beginning of interface to ROM.
6645
6646 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
6647
6648         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
6649
6650 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6651
6652         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
6653
6654 2003-06-19  Borut Razem <borut.razem AT siol.net>
6655
6656         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
6657
6658 2003-06-19  Borut Razem <borut.razem AT siol.net>
6659
6660         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
6661         fixed Z80 port - crt0.o: cannot open.
6662
6663 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
6664
6665         * support/Util/MySystem.c (merge_command): revert bad fix
6666
6667 2003-06-18  Borut Razem <borut.razem AT siol.net>
6668
6669         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
6670
6671 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6672
6673         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
6674         option --use-stdout sends errors to stdout instead of stderr.
6675
6676 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
6677
6678         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
6679
6680 2003-06-15  Borut Razem <borut.razem AT siol.net>
6681
6682         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
6683         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
6684         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
6685         fixed width array of pointers replaced with sets;
6686         multiple include and lib paths ared transferred to preprocessor and linker
6687         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
6688         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
6689         fixed width array of pointers
6690         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
6691         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
6692         fixupPath(), getPathDifference()
6693         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
6694         fixed width array of pointers
6695
6696 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
6697
6698         * src/pic16/ralloc.c: fix warnings
6699         * src/pic16/pcode.c: fix warning
6700
6701 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
6702
6703          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
6704         know all the details, but essentially this set of changes enable
6705         the pic16 port to generate movff instructions and generate assembler
6706         directives,
6707         * src/SDCCmain.c:
6708         * src/pic16/gen.c:
6709         * src/pic16/glue.c:
6710         * src/pic16/pcode.c:
6711         * src/pic16/device.c:
6712         * src/pic16/main.c:
6713         * src/pic16/pcode.h:
6714         * src/pic16/pcoderegs.c:
6715         * src/pic16/ralloc.c:
6716         * src/pic16/ralloc.h:
6717
6718 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6719
6720         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
6721         added option --vc, so sdcc errors and warnings are compatible with
6722         Microsoft Visual Studio.
6723
6724 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6725
6726         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
6727           device/lib/libfloat.lib: added atof function.
6728
6729 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
6730
6731         * doc/sdccman.lyx: updated to Lyx 1.3
6732         * doc/cdbfileformat.lyx: updated to Lyx 1.3
6733         * doc/test_suite_spec.lyx: updated to Lyx 1.3
6734         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
6735
6736 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
6737
6738         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
6739
6740 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6741
6742         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
6743           additions to the "related tools/documentation" section
6744
6745 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
6746
6747         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
6748
6749 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
6750
6751         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
6752         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
6753
6754 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
6755
6756         * doc/sdccman.lyx: fix double dash and other minor things
6757         * doc/Makefile: fix double dash
6758
6759 2003-05-28  Karl Bongers(patches from Martin Helmling)
6760         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
6761           condition and ignore commands.
6762
6763 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6764
6765         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
6766           is in parts still quite out of date, I did changes as far as I felt makes sense
6767           for a non-native english speaker.
6768           Please feel free to add to the manual or to correct my changes.
6769         * doc/Makefile: undid touching the date of intermediate tex files.
6770
6771 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6772
6773         * doc/sdccman.lyx: Manual has an index now
6774
6775 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
6776
6777         Finalize muluint/mulsint and mululong/mulslong merging:
6778         * device/lib/_mulint.c
6779         * device/lib/_mullong.c
6780         * device/lib/gbz80/mul.s
6781         * device/lib/gbz80/stubs.s
6782         * device/lib/z80/mul.s
6783         * device/lib/z80/stubs.s
6784         * src/SDCCsymt.c (initCSupport)
6785
6786 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6787
6788         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
6789         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
6790           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
6791           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
6792           instead of /Zm500.
6793
6794 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6795
6796         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
6797           the regression tests I'm not brave enough to enable 245.b, 245.c
6798         * doc/sdccman.lyx: added latex preamble for hyperref package.
6799           Using pdflatex this will give you a hyperlinked pdf file with
6800           bookmarks. (prepend '%' before /usepackage if this breaks something)
6801
6802 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6803
6804          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
6805
6806 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
6807
6808         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
6809
6810 2003-05-21    <johan AT balder>
6811
6812         * src/SDCCglue.c (printIval): fixed bug #739934
6813
6814 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
6815
6816         Applied patch from bug 737905 (renamed yylineo to mylineno):
6817         * src/altlex.c
6818         * src/SDCCast.c
6819         * src/SDCglobl.h
6820         * src/SDCC.lex
6821         * src/SDCCsymt.c
6822         * src/SDCCval.c
6823         * src/pic16/pcode.c: Cleaned warnings
6824         * src/pic16/pcodeflow.c: Cleaned warnings
6825         * src/pic16/pcoderegs.c: Cleaned warnings
6826
6827 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
6828
6829         * src/pic16/pcode.c: Cleaned warnings
6830         * src/pic16/pcodepeep.c: Cleaned warnings
6831         * src/pic16/ralloc.c: Cleaned warnings
6832
6833 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
6834
6835         * doc/sdccman.lyx: fixed bug 739745
6836         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
6837
6838 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
6839
6840         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
6841         it can be defined with CFLAGS when running configure
6842         * src/SDCCmain.c: fixed compiling + linking with object files
6843
6844 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
6845
6846         * configure.in: configure for pic16 port,
6847             added --disable-pic16-port
6848         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
6849         * src/SDCCmain.c: linkOptions is changed to set *,
6850             added if/endif conditional macros to remove options help
6851             messages from optionsTable when a port is not configured, added
6852             support for the PIc16 port in the ports table, when executing
6853             the compiler with no port specified on command line, a default
6854             port is selected with the new macro DEFAULT_PORT which is
6855             defined in port.h, in setDefaultOptions() linkOptions is removed
6856             from initialization assignment, since now it is a set,
6857             parseCmdLine uses setParseWithComma for linkOptions, in
6858             linkEdit() linkOptions are accessed with new function indexSet()
6859             which returns the i'th item of a set variable. See SDCCset.c, in
6860             linkEdit() when calling buildCmdLine(), added linkOptions as
6861             last argument. Now users can pass arguments to gplink via the
6862             -Wl option, main() uses pic16glue() to glue up pic16 programs
6863         * src/SDCCpeeph.c: various changes to support pic16
6864         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
6865             return the i'th item of the set
6866         * src/SDCCset.h: added function prototype for indexSet()
6867         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
6868         * src/clean.mk: added pic16 in CLEANALLPORTS variable
6869         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
6870             added macro DEFAULT_PORT
6871         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
6872         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
6873             generated
6874         * src/pic16/glue.c: commented out some error producing lines
6875         * src/pic16/main.c: __config directives are commented out to stop
6876             gpasm complaining and test the linkage with gplink, _linkCmd and
6877             _asmCmd changed to be more gplink and gpasm friendly
6878         * src/pic16/peeph.def: peep rule 3 is commented out, since it
6879             produced an error when parsed, peep rule 12 is added to utilize
6880             movff, but it is commented out since the pCode does not support
6881             yet a command with 2 address arguments
6882
6883 2003-05-18    <johan AT balder>
6884
6885         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
6886         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
6887 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
6888
6889         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
6890   Added feature to script commands from file.
6891
6892 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
6893
6894         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
6895         * src/SDCCutil.c: include ctype.h for win32
6896
6897 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
6898
6899         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
6900
6901 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
6902
6903         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
6904   Fixed so you can set breakpoints prior to run, run does not stop
6905   on entry now.  Add tbreak.  Other enhancements and fixes for use
6906   with ddd.
6907
6908 2003-05-12  Borut Razem <borut.razem AT siol.net>
6909
6910         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
6911
6912 2003-05-11  Borut Razem <borut.razem AT siol.net>
6913
6914         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
6915         the path of bin directory, so that PATH is the only env. variable, which has to be set
6916         in case of standard installation.
6917         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
6918         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
6919         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
6920
6921 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
6922
6923         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
6924         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
6925         temp files are in the port dir; clean the gen/test directory when
6926         generating new test.c
6927         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
6928         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
6929         * support/regression/tests/zeropad.c: added
6930
6931 2003-05-09    <johan AT balder>
6932
6933         * src/SDCCglue.c: fixed bug #597940
6934
6935 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
6936
6937         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
6938   cache sfr, optimize next,step, fix off by one sourceline,
6939   support ddd list function.
6940         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
6941
6942 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
6943
6944         * support/regression/HTMLgen.py: added compare_s2f()
6945         * support/regression/Makefile: redo 1.27
6946         * support/regression/generate-cases.py: redo 1.5
6947
6948 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
6949
6950         * support/regression/tests/float.c: workaround 33 bit hex constant
6951         * support/regression/tests/simplefloat.c: fix division for host
6952
6953 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
6954
6955         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
6956         that tame's the PIC's over-aggressive optimizer.
6957
6958 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6959
6960          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
6961          support for MSVC.
6962
6963 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
6964
6965         Initial support for DS80C400. "Hello world" runs on TINIm400
6966         (with polled I/O).
6967
6968 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
6969
6970          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
6971          * Some notes on ddd usage added in debugger/README
6972          Martin Helmling adding more features and fixes for ddd GUI debugger.
6973          Code added for nexti, stepi, up, down, and other adjustments.
6974
6975 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
6976
6977         * src/pic/pCodepeep.c non-wildcard asmops are now handled
6978         * src/pic/peeph.def Added two rules to optimize carry manipulation
6979         * src/pic/* removed debug printfs
6980
6981 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
6982
6983         * debugger/mcs51/cmd.c: added header newalloc.h
6984
6985 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
6986
6987         * as/Makefile: new EXEEXT
6988         * as/z80/Makefile: remove trailing slash of BUILDIR
6989         * as/z80/clean.mk: new EXEEXT
6990         * Makefile.common.in: add to CFLAGS (and others), don't replace it
6991         * support/cpp2/Makefile.in: new EXEEXT
6992         * src/pic/glue.c (pic14emitRegularMap): fixed warning
6993
6994 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
6995
6996         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
6997         EXEEXT was introduced to fix all related problems with targets
6998         "clean", "install" and "uninstall"; a couple of further flaws
6999         especially with "clean" have been fixed too
7000         * as/mcs51/Makefile.in
7001         * as/mcs51/clean.mk
7002         * as/z80/Makefile
7003         * Makefile
7004         * clean.mk
7005         * debugger/mcs51/Makefile.in
7006         * debugger/mcs51/clean.mk
7007         * link/z80/Makefile
7008         * link/z80/Makefile.in
7009         * link/z80/clean.mk
7010         * link/Makefile
7011         * packihx/Makefile.in
7012         * packihx/clean.mk
7013         * sim/ucsim/Makefile
7014         * sim/ucsim/clean.mk
7015         * sim/ucsim/avr.src/Makefile.in
7016         * sim/ucsim/avr.src/clean.mk
7017         * sim/ucsim/s51.src/Makefile.in
7018         * sim/ucsim/s51.src/clean.mk
7019         * sim/ucsim/xa.src/Makefile.in
7020         * sim/ucsim/xa.src/clean.mk
7021         * sim/ucsim/z80.src/Makefile.in
7022         * sim/ucsim/z80.src/clean.mk
7023         * sim/ucsim/main_in.mk
7024         * sim/ucsim/packages_in.mk
7025         * sim/ucsim/gui.src/Makefile.in
7026         * sim/ucsim/gui.src/serio.src/Makefile.in
7027         * sim/ucsim/gui.src/serio.src/clean.mk
7028         * src/Makefile.in
7029         * src/clean.mk
7030         * support/cpp2/Makefile.in
7031         * support/cpp2/clean.mk
7032         * support/makebin/Makefile
7033         * support/makebin/clean.mk
7034         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
7035         * doc/sdccman.lyx: --program-suffix no longer needed
7036
7037 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
7038
7039          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
7040          Martin Helmling added support for ddd GUI debugger.
7041          Code added to display assembly, set variables, and other commands
7042          to interface to ddd.
7043
7044 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
7045
7046         * as/Makefile: fix target clean
7047         * as/clean.mk: fix target clean
7048         * as/z80/clean.mk: fix target clean
7049
7050 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
7051
7052         * Makefile.common.in: added  AT EXEEXT AT
7053         * configure.in: removed all mingw32 stuff
7054         * configure: rebuilt from configure.in
7055         * doc/sdccman.lyx: updated section "installation"
7056         * support/scripts/sdcc_mingw32: adapted to configure
7057         * support/scripts/sdcc_cygwin_mingw32: added
7058
7059 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
7060
7061         * src/pic Added object file support for the PIC port
7062         * src/pic Applied patch from Craig Franklin (this started the object file support)
7063         * src/regression Updated the PIC regression tests for object files
7064
7065 2003-04-20  Borut Razem <borut.razem AT siol.net>
7066
7067         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
7068           lklex.c: In function `getfid':
7069           lklex.c:203: warning: array subscript has type `char'
7070         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
7071           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
7072         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
7073           stack handling macros
7074
7075 2003-04-19  Borut Razem <borut.razem AT siol.net>
7076
7077         * "handling space characters in file path" task:
7078         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
7079         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
7080         * support/Util/MySystem.h: make it self-sufficient
7081         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
7082           src/z80/main.c, sdcc/as/mcs51/lklex.c:
7083           handling space characters in file path
7084         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
7085           (it will be used by assemblers, which have their own includes, e.g. gpasm)
7086         * support/Util/MySystem.c: handling space characters in executable's path
7087
7088 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
7089
7090         * as/z80/Makefile: fix permanent rebuild of z80
7091         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
7092         * support/regression/tests/bitfields.c: added Johan's bitfields.c
7093
7094 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
7095
7096         * src/SDCCopt.c: add special case optimization to replace modulo by
7097           a power of two with a bitwise AND.
7098
7099 2003-04-18    <johan AT balder>
7100
7101         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
7102
7103 2003-04-17    <johan AT balder>
7104
7105         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
7106         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
7107
7108 2003-04-13  Borut Razem <borut.razem AT siol.net>
7109
7110         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
7111         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
7112           fixed mingw problem in adl_NORMALIZE_PATH
7113
7114 2003-04-12  Borut Razem <borut.razem AT siol.net>
7115
7116         * fixed "#pragma SAVE/RESTORE can not be nested":
7117         * src/SDCC.lex: reworked pragma handling functions
7118         * sdcc/src/SDCCglobl.h: reworked stack handling macros
7119         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
7120
7121 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7122
7123         * src/SDCCutil.c (pathEquivalent): defined but not used
7124         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
7125         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
7126         * configure: rebuilt from configure.in
7127         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7128         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7129         * device/include/Makefile.in: replace sdcc_datadir
7130         * device/lib/Makefile.in: replace sdcc_datadir
7131         * Makefile.common.in: add LDFLAGS from configure
7132         * packihx/Makefile.in: use LDFLAGS
7133         * src/Makefile.in: use LDFLAGS
7134         * support/cpp2/Makefile.in: add LDFLAGS from configure
7135         * support/makebin/Makefile: use LDFLAGS
7136         * .version: bumped version number to 2.3.5
7137
7138 2003-04-12  Borut Razem <borut.razem AT siol.net>
7139
7140         * completed "different paths" task:
7141         * src/SDCCmacro.c: fixed bug in handling quotes
7142         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
7143         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
7144
7145 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7146
7147         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
7148
7149 2003-04-11 kevin Vigor <kevin AT vigor.nu>
7150
7151         * ds390/gen.c ds390/peeph.def: fix bug 706781
7152
7153 2003-04-11  Borut Razem <borut.razem AT siol.net>
7154
7155         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
7156
7157 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
7158
7159         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
7160         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
7161          set - this bit used to not be set...).
7162         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
7163           bad code in PIC Port
7164         * src/regression/and2.c added to test bug 609268
7165         * src/regression/Makefile added and2.c to regression test
7166
7167
7168 2003-04-08    <johan AT CP255758-A>
7169
7170         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
7171         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
7172         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
7173
7174 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
7175
7176         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
7177         fix bug #487815
7178         * support/cpp2/Makefile.in: fix bug #487815
7179         * configure: rebuilt from configure.in
7180         * Makefile.common.in: docdir changed, new path suffixes
7181         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7182         * sdcc_vc_in.h: reflect changes from sdccconf.h
7183         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
7184         * src/SDCCutil.h: remove BINDIR hack
7185         * doc/sdccman.lyx: update new path hierarchy
7186
7187 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7188
7189         * src/SDCCpeeph.c: added okToRemoveSLOC test
7190
7191 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7192
7193         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
7194
7195 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7196
7197         * src/SDCCpeeph.c: added labelIsReturnOnly test
7198         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
7199
7200 2003-04-05    <johan AT balder>
7201
7202         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
7203         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
7204         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
7205         * src/SDCCast.c: fixed a warning
7206         * src/SDCCast.h: fixed a warning
7207         * src/SDCCicode.c (operandFromAst): fixed a warning
7208
7209 2003-04-04    <johan AT balder>
7210
7211         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
7212         * src/SDCCast.c (decorateType): fixed bug #715076
7213         * src/SDCC.y: fixed bug #702907
7214
7215 2003-04-03    <johan AT balder>
7216
7217         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
7218         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
7219         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
7220         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
7221         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
7222
7223 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
7224
7225         * _decdptr.c: fix return values
7226         * _gptrget.c: fix return values
7227         * _gptrgetc.c: fix return values
7228         * _gptrput.c: fix return values
7229         * _mulint.c: fix return values
7230         * as/z80/Makefile: fix 'make -j' problem
7231
7232 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
7233
7234         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
7235         * configure.in: big cleanup, updated to autoconf 2.5x
7236         * configure: rebuilt from configure.in
7237         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7238         * sdcc_vc_in.h: reflect changes from sdccconf.h
7239         * doc/Makefile: fixed a flaw in "make install"
7240
7241 2003-04-02    <johan AT balder>
7242
7243         * src/ds390/gen.c (genCmp): no comments
7244         * src/mcs51/gen.c (genCmp): no comments
7245         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
7246         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
7247
7248 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
7249
7250         * support/regression/generate-cases.py: place generated file in given sub directory
7251         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
7252         * support/regression/Makefile: improvements for 'make -j';
7253         side effect: it's simpler and faster now
7254
7255 2003-03-31  Borut Razem <borut.razem AT siol.net>
7256
7257         * src/z80/main.c: link-{port} and as-{port} defined without path
7258         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
7259
7260 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
7261
7262         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
7263
7264 2003-03-30  Borut Razem <borut.razem AT siol.net>
7265
7266         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
7267           changed type of list parameter to set
7268         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
7269         * src/port.h: changed type of do_assemble() parameter to set
7270         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
7271           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
7272           definition of "cppoutfilename" macro with NULL value in preProcess()
7273         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
7274         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
7275         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
7276           replaced with set *binPathSet
7277         * shash_add() deallocates the item, if allready exsists, before adding the new one
7278         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
7279
7280 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
7281
7282         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
7283           a nested for loop bug in the PIC port
7284         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
7285           for loops
7286
7287 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
7288
7289         * support/Util/dbuf.h: remove C++ stuff to make it portable
7290
7291 2003-03-28  Borut Razem <borut.razem AT siol.net>
7292
7293         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
7294           literal strings in stringLiteral()
7295         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
7296         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
7297           to the project
7298
7299 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
7300
7301         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
7302
7303 2003-03-26    <johan AT balder>
7304
7305         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
7306         * src/ds390/gen.c (saveRegisters): catched symbol abuse
7307         * src/SDCCast.c (decorateType): fixed " -v < 3"
7308
7309 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
7310
7311         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
7312         Added Lenny Story's debug infrastructure changes:
7313         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
7314         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
7315         * src/cdbFile.c: added
7316         * src/SDCCdebug.c: added
7317         * src/SDCCdebug.h: added
7318         * src/SDCCast.c (createFunction)
7319         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
7320         * src/SDCCmain.c (parseCmdLine, main)
7321         * src/SDCCmem.c (redoStackOffsets)
7322         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
7323         * src/SDCCsymt.h
7324         * src/common.h
7325         * src/avr/gen.c (genAVRCode)
7326         * src/ds390/gen.c (gen390Code)
7327         * src/mcs51/gen.c (gen51Code)
7328         * src/pic/gen.c (genpic14Code)
7329         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
7330         * src/xa51/gen.c (genXA51Code)
7331         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
7332
7333 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7334
7335         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
7336         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
7337
7338 2003-03-22    <johan AT balder>
7339
7340         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
7341
7342 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
7343
7344         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
7345         * doc/cdbfileformat.lyx: added, written by Lenny Story
7346         * doc/Makefile: added cdbfileformat.lyx
7347         * doc/clean.mk: added cdbfileformat.lyx
7348
7349 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
7350
7351         * src/mcs51/peeph.def: fix bug #705773
7352
7353 2003-03-20    <johan AT balder>
7354
7355         An sfr/sbit can have an "at #" AND an initializer
7356         * src/SDCCsymt.c (checkSClass):
7357         * src/SDCCmem.c (allocGlobal):
7358         * src/SDCCmem.c (allocLocal):
7359         * src/SDCCast.c (createBlock):
7360
7361 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
7362
7363         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
7364
7365 2003-03-16    <johan AT balder>
7366
7367         Undid the hackup of const and volatile, the problem is much bigger
7368         * src/SDCC.y:1.65
7369         * src/SDCCast.c:1.171
7370         * src/SDCCglue.c:1.138
7371         * src/SDCCicode.c:1.146
7372         * src/SDCCsymt.c:1.150
7373         * src/SDCCval.c:1.65
7374
7375 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
7376
7377         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
7378         * src/ds390/gen.c (genAddrOf): fixed bug #704087
7379
7380 2003-03-13    <johan AT balder>
7381
7382         Hackup const and volatile modifiers in type chains a bit:
7383         * src/SDCC.y:1.63
7384         * src/SDCCast.c:1.169
7385         * src/SDCCglue.c:1.136
7386         * src/SDCCicode.c:1.143
7387         * src/SDCCsymt.c1.146
7388         * src/SDCCsymt.h1.59
7389         * src/SDCCval.c:1.63
7390
7391 2003-03-12    <johan AT balder>
7392
7393         * src/SDCCBBlock.h: more LRH debugging junk
7394         * src/SDCCcflow.h: more LRH debugging junk
7395         * src/SDCCloop.c: more LRH debugging junk
7396         * src/SDCC.y (struct_declaration): fixed bug #697590
7397         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
7398         * src/ds390/gen.c (aopForRemat): fixed bug #700031
7399         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
7400
7401 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7402         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
7403         test function names must now match exactly).
7404         * src/SDCCcse.c: added special case in findCheaperOp to allow
7405         extending a short integer. Makes less awful code for bug 700121 test case.
7406
7407 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7408
7409         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
7410         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
7411
7412 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7413
7414         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
7415         actually called (operandsNotEqual() was called for all
7416         operandsNotEqualX tests).
7417
7418 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7419
7420         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
7421         with shorter literals. Fixes bug 700121.
7422
7423 2003-03-11    <johan AT balder>
7424
7425         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
7426
7427 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
7428
7429         * src/SDCCloop.c (mergeRegions): an evil beast is dead
7430         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
7431
7432 2003-03-10  Borut Razem <borut.razem AT siol.net>
7433
7434         * src/SDCCmain.c: pipe preprocessor's output
7435         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
7436         * sdcc_vc_in.h: define pclose as _pclose for WIN32
7437         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
7438         which closes all pipes in pipeSet set
7439         * src/SDCCset.c: free deleted item in function deleteSetItem()
7440         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
7441         moved from z80 to src subproject
7442         * .version: increased version number to 2.3.4
7443
7444 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
7445
7446         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
7447         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
7448         * support/regression/ports/xa51/spec.mk: fix typo
7449
7450 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
7451
7452         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
7453
7454 2003-03-09  Borut Razem <borut.razem AT siol.net>
7455
7456         * src/SDCCmain.c: pipe preprocessor's output
7457         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
7458         * sdcc_vc_in.h: define pclose as _pclose for WIN32
7459         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
7460         which closes all pipes in pipeSet set
7461         * src/SDCCset.c: free deleted item in function deleteSetItem()
7462         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
7463         moved from z80 to src subproject
7464
7465 2003-03-09  Borut Razem <borut.razem AT siol.net>
7466
7467         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
7468         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
7469         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
7470         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
7471         * src/SDCCglobl.h: unification of WIN32 native definitions
7472
7473 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7474
7475         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
7476
7477 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
7478
7479         * src/configure.in:   check for endianess (even while cross-compiling)
7480         * src/configure:      check for endianess (even while cross-compiling)
7481         * src/configure_in.h: check for endianess (even while cross-compiling)
7482         * src/avr/gen.c:        remove old endianess stuff
7483         * src/mcs51/gen.c:      remove old endianess stuff
7484         * src/ds390/gen.c:      remove old endianess stuff
7485         * src/pic/gen.c:        remove old endianess stuff
7486         * src/pic/genarith.c:   remove old endianess stuff
7487         * src/pic/glue.c:       fix endianess check
7488         * src/pic16/gen.c:      remove old endianess stuff
7489         * src/pic16/genarith.c: remove old endianess stuff
7490         * src/pic16/glue.c:     fix endianess check
7491         * src/xa51/gen.c:       remove old endianess stuff
7492         * src/z80/gen.c:        fix endianess check
7493         * src/SDCCglue.c:       fix endianess check
7494         * src/ds390/peeph.def: fix bug 700036
7495
7496 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
7497
7498         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
7499         * src/configure: find appropriate data-types on host for SDCC's int and long
7500         * src/configure.in: find appropriate data-types on host for SDCC's int and long
7501         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
7502         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
7503
7504 2003-03-07    <johan AT balder>
7505
7506         Just a big NOOP:
7507                 some minor cleanups before the big shot
7508                 OP_DEFS and OP_USES now use Kevin's protection
7509                 new option --nolabelopt
7510
7511         * src/SDCCBBlock.c:
7512         * src/SDCCast.c,:
7513         * src/SDCCcflow.c:
7514         * src/SDCCcse.c:
7515         * src/SDCCicode.c:
7516         * src/SDCCicode.h:
7517         * src/SDCClabel.c:
7518         * src/SDCCloop.c:
7519         * src/SDCCmain.c:
7520         * src/ds390/ralloc.c:
7521         * src/mcs51/ralloc.c:
7522         * src/pic/ralloc.c:
7523         * src/xa51/ralloc.c:
7524         * src/z80/ralloc.c:
7525
7526 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
7527
7528         * src/pic/pcode.c (get_op): fix 64 bit warnings
7529         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
7530         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
7531         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
7532         * support/regression/tests/malloc.c: fix 64 bit warnings
7533
7534 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
7535
7536         * src/mcs51/gen.c (genMinus): fixed bug 696436
7537
7538 2003-03-02  Borut Razem <borut.razem AT siol.net>
7539
7540         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
7541
7542 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
7543
7544         * configure.in: test for mkstemp
7545         * sdccconf_in.h: add HAVE_MKSTEMP
7546
7547 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
7548
7549         * device/include/ctype.h: removed warning while using --stack-auto
7550         * device/include/malloc.h: removed warning while using --stack-auto
7551         * device/include/string.h: removed warning while using --stack-auto
7552
7553 2003-02-23  Borut Razem <borut.razem AT siol.net>
7554
7555         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
7556         because NDEBUG is defined (see man assert)
7557         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
7558
7559 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7560
7561         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
7562         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
7563
7564 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7565
7566         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
7567         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
7568
7569 2003-02-18    <johan AT balder>
7570
7571         * as/mcs51/asmain.c (asmbl): module can start with a digit
7572         * as/z80/asmain.c (asmbl): module can start with a digit
7573
7574 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
7575
7576         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
7577         * src/asm.c: fix pipe() for Mingw32
7578
7579 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
7580
7581         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
7582         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
7583         make -V work again; --c1mode reads now from stdin
7584         * doc/sdccman.lyx: added --c1mode
7585         * support/Util/SDCCerr.c: new messages for c1 mode
7586         * support/Util/SDCCerr.h: new messages for c1 mode
7587         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
7588
7589 2003-02-15    <johan AT balder>
7590
7591         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
7592
7593 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
7594
7595         * doc/sdccman.lyx: Environment variables, -o and other minor things
7596
7597 2003-02-14    <johan AT balder>
7598
7599         * src/xa51/main.c: before anyone really tries to use it :)
7600
7601         * Install doc's in share/sdcc/doc
7602         * removed some obsolete files
7603         * Do a proper make distclean and uninstall
7604         M Makefile.common.in
7605         R sdccbuild.sh
7606         M as/Makefile
7607         M device/include/Makefile.in
7608         M device/lib/Makefile.in
7609         M doc/sdccman.lyx
7610         M link/Makefile
7611         M sim/ucsim/doc/Makefile.in
7612         M src/clean.mk
7613         R src/avr/peeph.rul
7614         R src/xa51/peeph.rul
7615         M support/cpp2/Makefile.in
7616         M support/makebin/Makefile
7617
7618
7619 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
7620
7621         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
7622
7623 2003-02-10  Borut Razem <borut.razem AT siol.net>
7624
7625         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
7626         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
7627         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
7628         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
7629         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
7630         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
7631         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
7632         src/z80/Makefile.bcc: Borland Makefile cleanup
7633         * as/z80/Makefile.bcc: Added Borland Makefile
7634         * support/cpp2/borland.h: Removed
7635
7636 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
7637
7638         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
7639         * src/SDCC.lex: new pragma NOIV
7640         * src/SDCCglobl.h: new pragma NOIV
7641         * src/SDCCmem.c: new pragma NOIV
7642
7643 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
7644
7645         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
7646
7647 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
7648
7649         * src/SDCCmain.c: signal handling is switched off by --debug
7650         * doc/Makefile: small fix for install; use clean.mk again
7651         * doc/clean.mk: clean *.pdf and *.html too
7652
7653 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
7654
7655         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
7656         * device/lib/printfl.c: fix a ds390 bug by making it portable
7657         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
7658         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
7659         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
7660         * debugger/mcs51/cmd.c: converted multi-line string literals
7661         * sim/ucsim/globals.cc: converted multi-line string literals
7662         * src/SDCCmain.c: introduced signal handler to remove temp files
7663         * doc/Makefile: small tweaks, implement clean
7664         * doc: removed generated files
7665
7666 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7667
7668         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
7669         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
7670         Address Record is not correctly generated for DS390."
7671
7672 2003-02-02  Borut Razem <borut.razem AT siol.net>
7673
7674         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
7675         * as/mcs51/asm.h: fixed compilation with Borland C
7676         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
7677         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
7678         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
7679         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
7680         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
7681         src/z80/Makefile.bcc: delete $(LIB) only if exist
7682         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
7683
7684 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
7685
7686         * device/include/malloc.h: introduced NULL
7687         * device/include/string.h: introduced NULL
7688         * device/include/stdlib.h: introduced NULL
7689         * device/lib/_memcpy.c: removed NULL
7690         * device/lib/_strcat.c: removed NULL
7691         * device/lib/_strchr.c: removed NULL
7692         * device/lib/_strcmp.c: removed NULL
7693         * device/lib/_strcpy.c: removed NULL
7694         * device/lib/_strcspn.c: removed NULL
7695         * device/lib/_strlen.c: removed NULL
7696         * device/lib/_strncat.c: removed NULL
7697         * device/lib/_strncmp.c: removed NULL
7698         * device/lib/_strncpy.c: removed NULL
7699         * device/lib/_strpbrk.c: removed NULL
7700         * device/lib/_strrchr.c: removed NULL
7701         * device/lib/_strspn.c: removed NULL
7702         * device/lib/_strstr.c: removed NULL
7703         * device/lib/_strtok.c: removed NULL
7704         * device/lib/malloc.c: removed NULL, include own header
7705
7706 2003-02-02    <johan AT balder>
7707
7708         * 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
7709         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
7710         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
7711         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
7712         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
7713         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
7714
7715 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7716
7717         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
7718         area 'DATA'"
7719
7720 2003-02-01    <johan AT balder>
7721
7722         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
7723
7724 2003-01-31    <johan AT CP255758-A>
7725
7726         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
7727
7728 2003-01-30    <johan AT balder>
7729
7730         * src/SDCCBBlock.c: automatic bug detection
7731         * src/SDCCicode.c: automatic bug detection
7732
7733 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7734
7735         * src/SDCCglobl.h:   now --xram-size 0 works
7736         * src/SDCCmain.c:    now --xram-size 0 works
7737
7738 2003-01-29    <johan AT balder>
7739
7740         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
7741
7742 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7743
7744         * as/mcs51/aslink.h: Added options --xram-size and --code-size
7745         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
7746         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
7747         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
7748         * src/SDCCglobl.h:   Added options --xram-size and --code-size
7749         * src/SDCCmain.c:    Added options --xram-size and --code-size
7750
7751 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
7752
7753         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
7754         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
7755
7756 2003-01-27    <johan AT balder>
7757
7758         * src/SDCC.y: fixed bug #613764
7759
7760 2003-01-26    <johan AT balder>
7761
7762         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
7763         * src/SDCCsymt.h: fixed bug #673374
7764         * src/SDCCglue.c: fixed bug #661910
7765         * src/SDCCast.c: fixed bug #458099 and 673374
7766
7767 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
7768
7769         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
7770         * as/mcs51/strcmpi.h: added
7771         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
7772         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
7773         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
7774         * as/mcs51/assym.c: strcmpi -> as_strcmpi
7775         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
7776         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
7777         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
7778         * as/mcs51/Makefile.aslink: new module strcmpi
7779         * as/mcs51/Makefile.asx8051: new module strcmpi
7780         * as/mcs51/Makefil.bcc: new module strcmpi
7781         * as/mcs51/Makefile.in: new module strcmpi
7782         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
7783
7784 2003-01-26    <johan AT balder>
7785
7786         * src/SDCCglue.c: reverted back to 1.124
7787         * src/SDCCast.c: reverted back to 1.156
7788         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
7789
7790 2003-01-25    <johan AT balder>
7791
7792         * src/SDCCglue.c: A better fix for bug #661910
7793         * src/SDCCast.c: A better fix for bug #661910
7794         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
7795
7796 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
7797
7798         * src/Makefile.in: remove spawn.o
7799         * src/SDCCmain.c: remove spawn.h
7800         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
7801         * src/spawn.c: removed
7802         * src/spawn.h: removed
7803         * support/regression/ports/ds390/spec.mk: link with -r
7804
7805 2003-01-24    <johan AT CP255758-A>
7806
7807         * src/ds390/gen.c (aopOp): fixed bug #667458
7808         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
7809         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
7810         (createIvalCharPtr): an ival doesn't always have a storage class anymore
7811
7812 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
7813
7814         * src/mcs51/peeph.def: better assembler identation by Frieder
7815         * src/mcs51/gen.c: better assembler identation by Frieder
7816
7817 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
7818
7819         * as/z80/string.h: removed for gcc 3.2
7820         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
7821         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
7822
7823 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
7824
7825         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
7826         * src/SDCCpeeph.c (replaceRule): fix bug #663503
7827         * support/regression/Makefile: separate temp files for ports
7828         * support/regression/generate-cases.py: separate temp files for ports
7829         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
7830         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
7831
7832 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
7833
7834         * moved tinitalk to device/examples/ds390
7835
7836 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
7837
7838         * as/mcs51/lkmem.c: rflag is for DS390
7839         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
7840         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
7841                          (linkEdit): move mem- and map-files the same way as ihx-files
7842         * src/z80/main.c (_setDefaultOptions): removed --generic
7843         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
7844         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
7845         * src/pic/glue.c (picglue): --c1mode works again
7846         * src/pic16/glue.c (pic16glue): --c1mode works again
7847         * src/asm.c (printCLine): fix #660034
7848
7849 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
7850
7851         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
7852         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
7853         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
7854         * as/mcs51/lkmem (summary): better fix for sp problem
7855         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
7856         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
7857         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
7858                                               remove --stack-after-data
7859
7860 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
7861
7862         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
7863         * src/SDCCutil.c (join): ugly bug: missing '\0'
7864         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
7865
7866 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
7867
7868         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
7869         * src/port.h: typo
7870         * src/pic/main.c (_asmCmd): gpasm supports -o
7871         * src/z80/main.c: more general macros
7872         * device/lib/Makefile.in: remove intermediate files
7873
7874 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
7875
7876         * .version: Bumped version number to 2.3.3
7877         * src/SDCCBBlock.c: new option -o
7878         * src/SDCCglobl.h: new option -o
7879         * src/SDCCglue.c: new option -o
7880         * src/SDCCmain.c: new option -o
7881         * src/asm.c: new option -o
7882         * src/ds390/main.c: new option -o
7883         * src/pic/glue.c: new option -o
7884         * src/pic/pcode.c: new option -o
7885         * src/pic/ralloc.c: new option -o
7886         * src/pic16/glue.c: new option -o
7887         * src/pic16/pcode.c: new option -o
7888         * src/pic16/ralloc.c: new option -o
7889         * src/z80/main.c: new option -o
7890         * device/lib/Makefile.in: use -o
7891         * support/regression/ports/ds390/spec.mk: use -o
7892         * support/regression/ports/gbz80/spec.mk: use -o
7893         * support/regression/ports/mcs51/spec.mk: use -o
7894         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
7895         * support/regression/ports/z80/spec.mk: use -o
7896         * support/regression/ports/ucz80/spec.mk: use -o
7897         * support/regression/ports/xa51/spec.mk: use -o
7898         * support/regression/fwk/lib/timeout.c: fix usage string
7899
7900 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
7901         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
7902
7903 2003-01-07    <johan AT balder>
7904
7905         * src/SDCCast.c (decorateType): fixed bug #600035
7906
7907 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
7908         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
7909         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
7910         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
7911         * src/pic/pcode.c: outcommented unused variable to remove warnings
7912         * src/pic/ralloc.c: outcommented unused variable to remove warnings
7913
7914 2003-01-06    <karl AT turbobit.com>
7915         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
7916    regression tests.
7917
7918 2003-01-06    <johan AT balder>
7919
7920         * src/SDCCicode.c: fixed array add
7921
7922 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
7923         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
7924         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
7925
7926 2003-01-04    <johan AT balder>
7927
7928         * src/SDCCval.c (getNelements): fixed the initialized array of structures
7929
7930 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7931         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
7932
7933 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
7934         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
7935         * support/regression/tests/bug-524697.c: fit mem usage into 8032
7936
7937 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
7938         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
7939
7940 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
7941         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
7942
7943 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
7944         * src/mcs51/main.c: removed {bindir}{sep} from aslink
7945
7946 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7947
7948     * in \sdcc\as\mcs51\ changed these files in order to create an
7949     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
7950     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
7951     following files to include the previous two files: aslink.dsp,
7952     Makefile.aslink, Makefile.bcc, and Makefile.in.
7953
7954     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
7955     .adb instead of .cdb
7956
7957 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7958
7959         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
7960         value from option --iram-size.
7961
7962 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7963
7964         * \sdcc\as\mcs51\lklist.c: added boundary check before using
7965         dram[] array.
7966
7967 2002-09-18    <wiml AT hhhh.org>
7968
7969         * SDCClrange.h: exposed setFromRange() and setToRange()
7970         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
7971           packRegsForAccUse() (bug 542397)
7972         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
7973           multiple times and emitting the fetch operations more than once
7974           added aopGetUsesAcc() function to allow binary operators to
7975           fetch their operands in the correct order; made genMinus() emit
7976           compact code for X = LITERAL - Y
7977
7978 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7979         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
7980         sprintf() in line 1267.
7981
7982 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7983         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
7984         like ports.
7985
7986 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7987         Changes to aslink (All the changes are marked with 'JCF'):
7988
7989         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
7990         summary().
7991
7992         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
7993         area BSEG.  Also moves, if possible, the DATA area down into the internal
7994         ram so more space is available.
7995
7996         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
7997         sflag.
7998
7999         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
8000         not bytes.  Function summary() which creates a memory usage summary
8001         file with extension .mem.  Reports of overlaping stack and small stack
8002         size.  If the space for the stack is less than 16 bytes aslink trows a
8003         warning.
8004
8005         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
8006         the 8051.  Option 'y' for memory summary output file.
8007
8008         Changes to sdcc (All the changes are marked with 'JCF'):
8009
8010         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
8011
8012         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
8013         overlaying area for it (uses RegBankUsed[4]).
8014
8015         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
8016         bank zero as used by default.  By default aslink locates the stack
8017         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
8018         the creation of the .mem file.  Delegates the allocation of data area
8019         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
8020         the begining of the stack area to aslink.
8021
8022         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
8023         glue() in SDCCglue.c creates an area for it.
8024
8025 2002-09-03  Borut Razem <borut.razem AT siol.net>
8026         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
8027         sdcc/src/pic/glue.c:
8028         introduced atexit() handler for teporay files removal in case of
8029         errors, assertions, ...
8030
8031 2002-08-29  Borut Razem <borut.razem AT siol.net>
8032         * sdcc/support/cpp2/auto-host_vc_in.h:
8033         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
8034         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
8035         Maybe there is a similar problem with BORLANDC? It should be checked!
8036
8037         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
8038         corrected improper use of assert: the assignment to clr variable was done inside the assert.
8039         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
8040         was not executed, and the compiler (cl) launched a warning:
8041         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
8042
8043 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8044         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
8045
8046 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
8047         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
8048
8049         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8050           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
8051           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
8052           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8053           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
8054           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
8055           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
8056         - added Release configuration in VS projects
8057         - review of compiler an linker options
8058         - VC .exe files are generated in bin_vc directory, not to interfere
8059           with binaries generated from other projects (cygwin, mingw, bcc ...)
8060
8061         * sdcc/src/yacc.dsp: added
8062
8063         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
8064         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
8065         and insert the version number definitions from .version
8066
8067         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
8068
8069         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
8070         added - genarate auto-host.h using auto-host_vc_in.h as template
8071
8072         * sdcc/sdcc_vc.h,
8073         removed from CVS, generated automatically
8074
8075 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
8076         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
8077
8078 2002-08-11  Borut Razem <borut.razem AT siol.net>
8079         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
8080
8081 2002-08-10  Borut Razem <borut.razem AT siol.net>
8082         * src/SDCCmain.c (main):
8083         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
8084         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
8085         The consequence was that some temporary files were not removed.
8086
8087         * src/SDCCglue.c:
8088         unification of code in functions tempfilename() and tempfile():
8089         function tempnam() is defined in Visual Studio 6.0 and .NET
8090
8091         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
8092
8093         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8094           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
8095         - removed compiler command line option /WX: Treats all warnings as errors
8096         - update a list of source files, included into the project
8097
8098         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8099           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
8100         changed project type to Generic Project so that can be correcly converted to VS.NET project
8101
8102         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
8103
8104         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
8105
8106         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
8107
8108         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
8109         added return 0 statements after assert() to make compiler happy
8110
8111         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
8112         added newline in the def file to keep MSC compiler satisfied
8113
8114         * sdcc/src/z80/gen.c:
8115         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
8116           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
8117         - solved MSC error in function aopDump()
8118
8119         * sdcc_vc.h: define PREFIX as "\\sdcc"
8120
8121 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
8122         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
8123
8124 2002-06-22  Scott Dattalo <scott AT dattalo.com>
8125         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
8126         - Rewrote the register banking algorithm.
8127         - Added pCode live-range analysis to registers (for now, only non-used and
8128         singly-used registers optimized away)
8129
8130         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
8131
8132         * 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.
8133
8134 2002-05-10  Scott Dattalo <scott AT dattalo.com>
8135         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
8136
8137 2002-04-22  Michael Hope  <michaelh AT vroom>
8138
8139         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
8140
8141         * configure.in (DD_COPT): Added include support required for gbdk.
8142
8143         * .version: Bumped version number just to increase it.
8144
8145         * src/SDCCmain.c: Added -nostdinc to the default options.
8146
8147 2002-04-15  Michael Hope  <michaelh AT vroom>
8148
8149         * device/lib/z80/printf.c (sprintf): Added.
8150
8151         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
8152
8153         * src/z80/peeph.def: Added transpose redundent load rule.
8154
8155         * src/z80/main.c: Added force callee saves for jaune.
8156
8157         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
8158
8159         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
8160
8161 2002-03-28  Johan Knol  <johan AT balder>
8162
8163         * src/SDCCval.c: fixed bug #532436
8164
8165 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8166         * /src/port.h:
8167         Added "char *Processor" field to the port structure.
8168
8169         * /src/SDCCmain.c:
8170         Added -p option. Allows port dependent processor to be specified.
8171
8172         * all ports:
8173         Initialized the new field char *Processor field to NULL in all ports
8174
8175         * /src/pic/*:
8176         Compiler generated registers for interrupt context saving
8177         were not getting allocated.
8178
8179 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
8180
8181         * /src/SDCCast.c:
8182         Fixed left shift. Will promote the left side of a left shift
8183         if a) left shifting more than size of operand or b) when assigned
8184         to something size > size of left side
8185
8186 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8187         * src/pic/*
8188         tons of changes. Register allocation has been
8189         rewritten. Added customization for the various PICs. Flow
8190         analysis is restructured. ...
8191
8192         * src/pic/device.h:
8193         Added
8194
8195         * src/pic/device.c:
8196         Added. device.c is a PIC port hack to accomodate variations
8197         in PIC devices.
8198
8199 2002-03-13  Michael Hope  <michaelh AT vroom>
8200
8201         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
8202
8203 2002-03-04  johanknol  <johanknol AT manik>
8204
8205         * /src/SDCCval.c: fixed
8206
8207         const unsigned char arr[][2] = { { 0, 1 } };
8208         t18.c:1: error: Initializer element is not constant
8209
8210 2002-03-04  bela  <bela AT manik>
8211
8212         * /device/include/mcs51reg.h:
8213         ds89c420 register definition update
8214
8215 2002-03-03    <johan AT FRIJA>
8216
8217         * support/Util/SDCCerr.c: did something, but don't no why anymore
8218
8219         * support/regression/tests/bug-524691.c: made it a little less shy
8220
8221         * src/SDCCast.c (decorateType): fixed bug #524697
8222
8223         * src/SDCCast.c: made some lineno improvements
8224
8225         * src/SDCCval.c (getNelements): changed warning to error
8226
8227         * src/SDCCglue.c (printIvalArray): changed warning to error
8228
8229         * src/SDCCicode.c: fixed a warning for mingw
8230
8231         * src/SDCCast.c (decorateType): fixed the << promotion for ops
8232
8233         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
8234
8235 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
8236
8237         * src/ds390/peeph.def:
8238         Added some more peephole rules
8239
8240         * src/ds390/gen.c: Various fixes & enhancements
8241
8242         * src/SDCClrange.c, src/SDCClrange.h:
8243         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
8244
8245         * src/ds390/ralloc.c:
8246         various fixes & enhancements (ds390) specific
8247
8248         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
8249         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
8250         from rallocs.
8251
8252         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
8253
8254 2002-03-02    <johan AT FRIJA>
8255
8256         * src/SDCCast.c (decorateType): fixed bug #524708
8257
8258         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
8259
8260         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
8261
8262 2002-03-01  Michael Hope  <michaelh AT vroom>
8263
8264         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
8265
8266         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
8267
8268 2002-03-01    <johan AT FRIJA>
8269
8270         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
8271
8272         * src/SDCCast.c (decorateType): fixed bug #524209
8273
8274         * src/SDCCval.c (valNot): fixed bug #524195
8275
8276 2002-02-26    <johan AT balder>
8277
8278         * src/xa51/gen.c: fixed a warning
8279
8280         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
8281
8282         * src/SDCCast.c (decorateType): fixed bug #522534
8283
8284 2002-02-23    <johan AT balder>
8285
8286         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
8287
8288 2002-02-22    <johan AT balder>
8289
8290         * src/SDCCast.c: fixed bug #514865
8291
8292         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
8293
8294 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
8295
8296         * sdcc/src/SDCCloop.c:
8297         Previous fix was not good. basic blocks that have "break" or "return" are
8298         not really partof a loop , but live ranges used in these blocks should
8299         be live thru the entire loop, so set partOfLoop but don't add them to
8300         loop region
8301
8302 2002-02-21    <johan AT FRIJA>
8303
8304         * src/SDCCcse.c: fixed bug #514308
8305
8306 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
8307
8308         * src/SDCCloop.c:
8309         Fixed BUG #519583. If a conditional block ended in a return/break
8310         statement inside a loop, it was not being considered part of the loop.
8311
8312         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
8313
8314 2002-02-10  Karl Bongers <karl AT turbobit.com>
8315
8316         * debugger/*:
8317         Fixed up SDCDB debugger somewhat.  Updated debugger/README
8318         with lots of comments and notes.
8319
8320         * device/examples/test2.c:
8321         Fix bug, "red" variable not being initialized(compiler complained).
8322
8323         * device/examples/Makefile, examples/test3.c:
8324         Add Makefile in device/examples folder, compiles test3.c
8325         for use as a multiple module SDCDB test case.
8326
8327         * sim/ucsim/cmd.src/cmdset.cc:
8328         Took out debug printfs in ucsim "next" command.
8329
8330         * sim/ucsim/xa.src:
8331         Karl and Johan start ucsim XA support.  Most dissassembly working,
8332         about 75% emulation done(plenty of work remaining).
8333
8334         * sim/ucsim/z80.src:
8335         Add Z80 support to ucsim, add test-ucz80 regression test,
8336         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
8337         Notice z80 compiler fails on examples/test3.c/crc code.
8338
8339 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
8340
8341         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
8342         Added support for --parms-in-bank1
8343
8344         * src/ds390/peeph.def:
8345         added a few more peephole optimzations
8346
8347         * src/ds390/main.c:
8348         1) added __builtin_inp & __builtin_outp used to read in data of given length
8349            from a memory mapped port
8350         2) added __builtin_memcmp
8351         3) added __builtin_swapw swap bytes of a short
8352
8353         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
8354         1) handle multiple send & receives from register bank1
8355         2) ralloc can now allocate DPTR1 to some liveRanges
8356
8357         * src/SDCCsymt.c, src/SDCCsymt.h:
8358         changes to handle multiple sends & receives
8359
8360         * src/SDCCptropt.h:
8361         added some pointer arithmetic optimization
8362
8363         * src/SDCCptropt.c:
8364         added some pointer arithmetic optimizations but not stable yet so not
8365         called from anywhere (will get this working shortly)
8366
8367         * src/SDCCopt.c: fixed for multiple sends & receives
8368
8369         * src/SDCCmain.c:
8370         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
8371         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
8372            set preprocessor defines (depending on options)
8373
8374         * src/SDCCicode.c, src/SDCCicode.h:
8375         changes made to handle multiple sends & receives
8376
8377         * src/SDCCglobl.h:
8378         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
8379
8380         * src/SDCCcse.c, src/SDCCcse.h:
8381         added function findbackward def (to be used in upcoming optimization)
8382
8383         * src/SDCCcflow.c, src/SDCCcflow.h:
8384         added function returnAtEnd - to determine if a basic block terminates with
8385         a RETURN iCode
8386
8387         * src/SDCCast.c, src/SDCCast.h:
8388         added option parms-in-bank1
8389
8390         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
8391         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
8392         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
8393         adjusted for --parms-in-bank1 option
8394
8395         * device/include/string.h:
8396         donot redefine "reentrant" keyword
8397
8398         * device/include/ds80c390.h: Added some more SFRs
8399
8400 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
8401
8402         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
8403
8404 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
8405
8406         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
8407
8408 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
8409
8410         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
8411
8412 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
8413
8414         * Added --xram-movc option
8415
8416 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
8417
8418         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
8419
8420 2002-01-11  Johan Knol
8421
8422         * Added math lib of Jesus Calvino-Fraga
8423
8424 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
8425
8426         * src/SDCCmain.c (processFile): fix processing of ../../src.c
8427         * support/regression/Makefile: new target test-mcs51-stack-auto
8428         * support/regression/ports/mcs51-stack-auto/spec.mk: added
8429
8430 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
8431
8432         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
8433
8434 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
8435
8436         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
8437
8438 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
8439
8440         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
8441
8442         * src/SDCCglue.h: add definition for printIvalChar()
8443
8444 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
8445
8446         * src/SDCCast.c: fix #498138 by Johan
8447
8448         * src/SDCCglue.c: fix #498138 by Johan
8449
8450 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
8451
8452         * support/regression/Makefile: fix clean
8453
8454         * support/regression/ports/ds390/support.c: fix transmission of last character
8455
8456 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
8457
8458         * /sdcc/src/ds390/gen.c:
8459         a) improved computing address of stack variable
8460         b) took out some #if 0 code
8461         c) improved parmBytes adjustment
8462         d) improved genPlusIncr & genMinusIncr
8463         e) genCmp could generate bad code (when left assigned to DPTR)
8464         f) Fixed bug in hasInc
8465
8466         * /sdcc/src/ds390/ralloc.c:
8467         a) packRegsForSupport could mess up live information (Fixed)
8468         b) packRegsDPTRuse could be incorrect for left & right shift
8469
8470         * /sdcc/src/mcs51/ralloc.c:
8471         packRegsForSupport could mess up the live information (Fixed)
8472
8473         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
8474
8475         * /sdcc/src/SDCCast.c:
8476         can reverse a loop even if function call is present as long
8477         as the loop control variable is local & is not passed as parameter
8478
8479 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
8480
8481         * /sdcc/ChangeLog: *** empty log message ***
8482
8483         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
8484         More builtin function additions for TININative
8485
8486         * /sdcc/src/ds390/ralloc.c:
8487         Had broken the regression testsuite
8488
8489         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
8490
8491         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
8492         Added funcattr hasStackParms will be set for reentrant functions when there
8493         are paramteres on the stack, this helps in minimizing frame pointer generation
8494         typeFromStr can handle function pointers now
8495
8496         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
8497         *** empty log message ***
8498
8499 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
8500
8501         * /src/ds390/gen.c, /src/ds390/main.c:
8502         More builtin function additions for TININative
8503
8504         * /src/ds390/ralloc.c:
8505         Had broken the regression testsuite
8506
8507         * /src/SDCCast.c: Fixed a bug in dumptree
8508
8509         * /src/SDCCsymt.c, /src/SDCCsymt.h:
8510         Added funcattr hasStackParms will be set for reentrant functions when there
8511         are paramteres on the stack, this helps in minimizing frame pointer generation
8512         typeFromStr can handle function pointers now
8513
8514         * /doc/builtins.txt, /doc/TININative.txt:
8515         *** empty log message ***
8516
8517
8518 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
8519
8520         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
8521         ALPHA version for -mTININative
8522
8523         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
8524         updated to reflect changes in the port structure
8525
8526         * /src/port.h:
8527         added function do_assemble (similar to do_link) if non-null this function
8528         will be called to do assembly (-mTININative) requires a multi command
8529         assembly
8530         added function genAssemblerEnd will be called to generate assembler Epilogue
8531
8532         * /src/SDCCsymt.c:
8533         added _JavaNative to debug info printing
8534
8535         * /src/SDCCmain.c: added option --tini-libid
8536         added port->do_assemble function (-mTININative) has a multi command assemble
8537
8538         * /src/SDCCglue.c: Disabled "constExpr" check
8539         added port->genAssemblerEnd function
8540
8541         * /src/SDCCglobl.h: Added option --tini-libid value
8542
8543         * /src/SDCCast.h:
8544         tookout optimizeCompare from the header (has no external references)
8545
8546         * /src/SDCCast.c: made one more function "static"
8547
8548 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
8549
8550         * src/z80/mappings.i: Added z80asm support.
8551
8552         * src/z80/main.c: Added z80asm support on --asm=z80asm
8553
8554         * src/z80/gen.c: Fixed asm portability issues.
8555
8556         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
8557
8558         * src/SDCCglue.c (printExterns): Added global/extern split.
8559
8560 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
8561
8562         * support/regression/Makefile: added test for mcs51 model large
8563
8564         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
8565
8566         * support/regression/ports/gbz80/spec.mk: added -mgbz80
8567
8568 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
8569
8570         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
8571
8572 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
8573
8574         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
8575
8576         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
8577
8578 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
8579
8580         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
8581
8582         * support/regression/tests/simplefloat.c: Port to mcs51.
8583
8584 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
8585         * support/regression/tests/bug-485362.c: Added.
8586
8587         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
8588
8589         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
8590
8591         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
8592
8593         * src/z80/gen.c (aopDump): Added a dump function.
8594
8595 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
8596         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
8597
8598         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
8599
8600         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
8601
8602         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
8603
8604         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
8605
8606         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
8607
8608         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
8609
8610         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
8611
8612         * support/regression/ports/ds390/support.c: Use tinibios.
8613
8614         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
8615
8616 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
8617
8618         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
8619         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
8620
8621         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
8622
8623         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
8624
8625 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
8626
8627         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
8628
8629         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
8630         (packRegsForIYUse): Created and optimised.
8631
8632 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
8633
8634         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
8635 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
8636
8637         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
8638
8639         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
8640
8641         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
8642
8643 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
8644
8645         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
8646
8647         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
8648
8649 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
8650
8651         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
8652
8653         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
8654
8655         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
8656
8657 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
8658
8659         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
8660         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
8661         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
8662
8663         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
8664
8665         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
8666         (genNotFloat): Added.
8667         (genUminusFloat): Added.
8668
8669         * device/lib/z80/Makefile: Added floating pt stubs.
8670
8671         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
8672
8673         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
8674
8675         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
8676
8677 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
8678
8679         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
8680
8681         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
8682
8683         * sdcc/support/regression/Makefile: Add port ds390.
8684
8685         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
8686
8687         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
8688
8689         * sdcc/support/regression/ports/ds390/spec.mk: Added.
8690
8691         * sdcc/support/regression/ports/ds390/support.c: Added.
8692
8693         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
8694
8695         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
8696
8697         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
8698
8699 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
8700
8701         * device/include/malloc.h: Added z80 and gbz80 support.
8702
8703         * device/lib/gbz80/heap.s: Added.
8704
8705         * device/lib/z80/heap.s: Added.
8706
8707         * device/lib/malloc.c: Added z80 and gbz80 support.
8708
8709         * support/regression/tests/malloc.c (testMalloc): Added.
8710
8711         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
8712
8713         * support/regression/tests/bug-478094.c: Added.
8714
8715         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
8716
8717 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
8718
8719         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
8720
8721         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
8722
8723         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
8724
8725         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
8726
8727         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
8728
8729 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
8730
8731         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
8732
8733 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
8734
8735         * support/regression/tests/bug-477927.c: Added.
8736
8737         * src/z80/peeph.def: Added minor rules.
8738
8739         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
8740
8741         * src/z80/peeph.def: Added jump optimisation modification.
8742
8743 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
8744
8745         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
8746
8747 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
8748
8749         * support/regression/tests/funptrs.c: Added.
8750
8751 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
8752
8753         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
8754
8755 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
8756
8757         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
8758
8759         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
8760
8761         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
8762         (movLeft2ResultLong): Created.
8763
8764         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
8765         (joinPushes): Added.  Joins two char pushes into a word push.
8766
8767 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
8768
8769         * support/cpp2/Makefile.in (install): Added creation of dest dir.
8770
8771         * support/makebin/Makefile (install): Added creation of dest dir.
8772
8773 2001-10-24 Karl Bongers <karl AT turbobit.com>
8774
8775         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
8776
8777 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
8778
8779         * src/z80/ralloc.c: Turned off faulty pack for one use.
8780
8781         * src/z80/peeph-gbz80.def: Removed redundent restart options.
8782
8783         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
8784
8785 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
8786
8787         * support/regression/Makefile: Improved clean
8788
8789         * support/regression/ports/gbz80/spec.mk: Added clean
8790
8791         * support/regression/ports/host/spec.mk: Added clean
8792
8793         * support/regression/ports/z80/spec.mk: Added clean
8794
8795         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
8796
8797         * support/regression/ports/mcs51/timeout.c: little improvements
8798
8799 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
8800
8801         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
8802
8803         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
8804
8805         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
8806
8807 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
8808
8809         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
8810
8811         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
8812
8813 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
8814         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
8815
8816         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
8817
8818         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
8819
8820         * src/mcs51/main.c (_linkCmd): Added bin path to command.
8821
8822         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
8823
8824         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
8825
8826         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
8827
8828         * support/regression/tests/longor.c: Added.
8829
8830 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
8831
8832         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
8833
8834         * as/mcs51/aslink.h: define PATH_MAX
8835
8836         * as/mcs51/asm.h: define PATH_MAX
8837
8838         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
8839
8840         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
8841
8842         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
8843
8844         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
8845
8846         * src/SDCCglobl.h: define PATH_MAX
8847
8848         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
8849
8850         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
8851
8852 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
8853
8854         * src/z80/gen.c (gencjneshort): Fixed
8855
8856         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
8857
8858 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
8859
8860         * support/regression/tests/bug-469671.c: Added.
8861
8862         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
8863
8864 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
8865
8866         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
8867
8868         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
8869
8870 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
8871
8872         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
8873
8874         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
8875
8876         * src/device/lib/_mullong.c : removed hint: nooverlay bug
8877
8878         * src/device/lib/_divuint.c : removed hint: nooverlay bug
8879
8880         * src/device/lib/_divulong.c: removed hint: nooverlay bug
8881
8882         * src/device/lib/_moduint.c : removed hint: nooverlay bug
8883
8884         * src/device/lib/_modulong.c: removed hint: nooverlay bug
8885
8886 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
8887
8888         * 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.
8889
8890         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
8891
8892         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
8893
8894 2001-10-07    <johan AT FRIJA>
8895
8896         * device/lib/gets.c (gets): fixed the return value.
8897
8898 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
8899         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
8900
8901         * 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.
8902
8903         * 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.
8904
8905         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
8906
8907         * src/pic/gen.c: Removed Safe_strdup.
8908
8909         * configure.in: Added option to enable libgc support.
8910
8911         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
8912         (bitVectUnion): Optimised.
8913         (bitVectIntersect): Optimised.
8914         (bitVectBitsInCommon): Optimised.
8915         (bitVectCplAnd): Optimised.
8916
8917         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
8918
8919 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
8920
8921         * src/SDCCmain.c: distinguish between assembler debug and plain options
8922
8923         * src/avr/main.c:   remove standard assembler options
8924
8925         * src/ds390/main.c: remove standard assembler options
8926
8927         * src/mcs51/main.c: remove standard assembler options
8928
8929         * src/port.h: removed "PENDING" comment
8930
8931 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
8932
8933         * src/device/lib/_mulint.c  : new, with assember functions
8934
8935         * src/device/lib/_mullong.c : new, with assember functions
8936
8937         * src/device/lib/_divuint.c : with assember functions
8938
8939         * src/device/lib/_divsint.c : with assember functions
8940
8941         * src/device/lib/_divulong.c: with assember functions
8942
8943         * src/device/lib/_divslong.c: with assember functions
8944
8945         * src/device/lib/_moduint.c : with assember functions
8946
8947         * src/device/lib/_modsint.c : with assember functions
8948
8949         * src/device/lib/_modulong.c: with assember functions
8950
8951         * src/device/lib/_modslong.c: with assember functions
8952
8953         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
8954
8955         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
8956
8957         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
8958                                       replaced _mululong.c and _mulslong.c by _mullong.c
8959
8960 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
8961
8962         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
8963
8964 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
8965
8966         * src/SDCCglue.c: test, if win32api is available for MINGW
8967
8968 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
8969
8970         * src/SDCCsymt.c: no more _modifier in printTypeChain()
8971         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
8972         * support/regression/ports/gbz80/spec.mk: removed GENERIC
8973         * support/regression/ports/host/spec.mk: removed GENERIC
8974         * support/regression/ports/mcs51/spec.mk: removed GENERIC
8975         * support/regression/ports/z80/spec.mk: removed GENERIC
8976
8977 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
8978
8979         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
8980
8981         * support/regression/tests/bug-467035.c: Created.
8982
8983 2001-10-01    <johan AT FRIJA>
8984
8985         * src/SDCC.y: fixed bug #466586 part 1
8986
8987 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
8988
8989         * SDCCicode.c: z80 has no generic pointers
8990         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
8991
8992 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
8993
8994         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
8995
8996 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
8997
8998         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
8999
9000         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
9001
9002 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
9003
9004         * configure.in: Fixed up so that ucsim is only configured once.
9005
9006         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
9007
9008         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
9009         (getPathDifference): As above.
9010
9011         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
9012
9013         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
9014
9015 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
9016         * .version: Updated to 2.3.1
9017
9018         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
9019         Added copyright header.
9020
9021         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
9022         (assemble): Added support for macro based assembler commands.
9023         (linkEdit): Added support for macro based linker commands.
9024         (preProcess): Changed the pre-processor to use macros.
9025         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
9026         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
9027
9028         * device/lib/z80/crt0.s: Added module name for debugging.
9029
9030 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
9031
9032         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9033
9034         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
9035
9036         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
9037
9038         * src/Makefile.in: Added SDCCmacro and SDCCutil
9039
9040 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
9041
9042         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9043
9044 2001-09-16    <johan AT FRIJA>
9045
9046         * 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.
9047
9048 2001-09-15    <johan AT FRIJA>
9049
9050         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
9051         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
9052
9053 2001-09-11    <johan AT FRIJA>
9054
9055         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
9056
9057 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
9058
9059         * support/regression/tests/bug-460444.c: Added test case.
9060
9061         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
9062         (genCast): Added justification for all of the asserts.
9063
9064 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
9065
9066         * support/regression/support.c: _xdata replaced by xdata
9067
9068         * support/regression/spec.mk: removed _generic
9069
9070 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
9071
9072         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
9073
9074         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
9075         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
9076
9077         * src/z80/peeph.def: Added a rule to optimise shift then compare.
9078
9079         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
9080
9081         * support/regression/tests/bug-460010.c: Added test case.
9082
9083         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
9084
9085 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
9086
9087         * support/regression/Makefile: inter-port-clean adjusted for mcs51
9088
9089         * support/regression/testfwk.c: removed workaround for bug #436344
9090
9091         * support/regression/tests/bp.c: use less memory with mcs51
9092
9093         * support/regression/tests/bug-441448.c: use less memory
9094
9095         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
9096
9097         * support/regression/collate-results.py: typo
9098
9099 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
9100
9101         * support/regression/tests/fetchoverlap.c: Added new test case.
9102
9103         * support/regression/tests/bp.c: Added new test case.
9104
9105         * support/regression/tests/bug-448984.c: Added new test case.
9106
9107         * support/regression/tests/pow2shifts.c: Added new test case.
9108
9109         * src/z80/gen.c: Turned off the noise it normally generates for the release.
9110         (genlshTwo): Fixed right shift for count > 8.
9111
9112         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
9113
9114 2001-09-08    <johan AT FRIJA>
9115
9116         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
9117
9118 2001-09-07    <johan AT FRIJA>
9119
9120         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
9121
9122         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
9123
9124 2001-09-06    <johan AT FRIJA>
9125
9126         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
9127         * bernhard noted me at this: "() equals to (void)" (1.38)
9128
9129 2001-09-05    <johan AT FRIJA>
9130
9131         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
9132
9133 2001-09-04    <johan AT FRIJA>
9134
9135         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
9136
9137
9138 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
9139
9140         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
9141
9142 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
9143
9144         * link/z80/aslink.h: Fixed path for PATH_MAX
9145
9146 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
9147
9148         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
9149
9150         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
9151
9152         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
9153
9154         * 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.
9155
9156 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
9157
9158         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
9159         (genCmp): Fixed up genCmp for the GB with longs.
9160
9161         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
9162
9163         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
9164
9165         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
9166
9167         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
9168
9169 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
9170
9171         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
9172
9173 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
9174
9175         * 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.
9176
9177         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
9178
9179 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
9180
9181         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
9182
9183         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
9184
9185 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
9186
9187   * sim/ucsim/configure:    little improvement of Cygwin-detection
9188   * sim/ucsim/configure.in: little improvement of Cygwin-detection
9189   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
9190   * support/regression/tests/bug-221100.c: small changes for mcs51
9191   * support/regression/tests/bug-221168.c: small changes for mcs51
9192   * support/regression/tests/bug-227710.c: small changes for mcs51
9193   * support/regression/tests/staticinit.c: small changes for mcs51
9194   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
9195   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9196   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9197
9198 $Revision$