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