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