* src/hc08/gen.c (genMinus): fixed bug #1241835,
[fw/sdcc] / ChangeLog
1 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2
3         * src/hc08/gen.c (genMinus): fixed bug #1241835,
4           (genModOneByte): removed needless psha/pula
5
6 2005-07-22 Raphael Neider <rneider AT web.de>
7
8         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
9           have PIC14 handled like PIC16, fixes broken pic14 linker calls
10         * src/pic/gen.c (resolveIfx): do not "invent" labels
11         * (genSkipc): changed to positive logic
12         * (genSkipCond): removed as no longer needed
13         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
14           backport from PIC16
15         * (genLeftShift): check operands are in different registers
16         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
17           INCF does not update CARRY...
18         * src/pic/main.c: fixed _linkCmd
19         * src/pic/pcode.c (unlinkpCode): added inactive code
20         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
21           alive (do not assign result and operand overlapping registers)
22
23 2005-07-22 Raphael Neider <rneider AT web.de>
24
25         * src/pic/device.c (dump_sfr): replaced register declaration with
26           call to emitSymbolToFile() to avoid duplicate symbols
27         * (assignRelocatableRegisters): do not declare external symbols
28         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
29           right (take size of type, not etype)
30         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
31         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
32         * (packRegsForAccUse): disabled assignment of WREG as
33           the result reg to prevent occurence of just fixed #1235003,
34           fixes #1242954
35         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
36           symbols (avoids duplicate symbols in .asm file)
37         * (pic14emitRegularMap): use emitSymbolToFile()
38         * src/pic/gen.c (aopOp): fixed spillLocation handling
39         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
40         * (genDataPointerSet): removed unneccessary variables/output
41
42 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
43         * as/mcs51/lkarea.c: enlarged codemap for banked memory
44         * device/lib/mcs51/crtbank.asm: added # to 0x0F
45
46 2005-07-21 Raphael Neider <rneider AT web.de>
47
48         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
49           architecture cannot handle them efficiently, fixes bug #1235003
50         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
51           check for empty sets before using them (fixes bug #1232190)
52
53 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
54
55         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
56           (lnksect2): generate warnings for memory overlap
57         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
58           constseg to set the name of these segments so you can instruct the linker
59           to place them in banks
60         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
61         * src/SDCCglobl.h: added MODEL_HUGE to enum,
62           added code_seg and const_seg to options
63         * src/SDCCglue.c (emitMaps): use options.const_seg,
64           (createInterruptVect): put interrupt vectors in segment HOME,
65           (glue): put HOME before static segment and put the main glue in HOME,
66           (glue): use options.code_seg
67         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
68         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
69           these segments so you can instruct the linker to place them in banks
70           (linkEdit): use code_loc for HOME segment which should be the first
71           segment in code memory now
72         * src/SDCCmem.c: fixed more stuff like bug 1238386
73         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
74           (changePointer): don't change function pointers to code pointers for
75           banked functions,
76           (compareType): added exceptional check for banked function pointers
77         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
78         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
79           after static in code memory
80         * src/mcs51/gen.c: added aopLiteralLong prototype,
81           (aopForSym): use getSize for functions,
82           (genCall): generate banked calls over one trampoline __sdcc_banked_call
83           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
84           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
85           the segment,
86           (genPcall): use call for literal function pointers and generate banked
87           calls over the one trampoline so there's only one place for the user to
88           modify according to his/hers hardware,
89           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
90           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
91         * src/mcs51/main.c: added keyword banked,
92           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
93         * support/Util/SDCCerr.c,
94         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
95           needed for passing the bank and address to the trampoline
96         * device/lib/mcs51/crtbank.asm: added for bankswitching
97         * device/lib/mcs51/Makefile: added crtbank
98
99 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
100
101         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
102           for fields at offset 0 of a struct or union as reported
103           on 2005-07-07 in the developer mailing list.
104
105 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
106
107         * src/SDCCmem.c: fixed bug 1238386
108
109 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
110
111         * src/mcs51/peeph.def: added labelrefcounting for peepholes
112           (patch #1144962), added peephole 300, enabled 259.x
113         * doc/sdccman.lyx: removed screenshot and provided link instead
114
115 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
116
117         * doc/sdccman.lyx: added section about debugging with ddd
118         * doc/figures/ddd_example.eps: screenshot of debugging session
119
120 2005-07-04 Raphael Neider <rneider AT web.de>
121
122         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
123           like CODE pointers, fixes #1115683
124         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
125           call, fixes bugs #1232211, #1228110,
126           fixed wrong casts to pCodeFlow from pCodeInstructions
127
128 2005-07-04 Raphael Neider <rneider AT web.de>
129
130         * src/pic/gen.c (popGet): changed assert to allow for
131           bit operands
132         * (popGetAddr): changed signature to provide
133           an additional index, patched all call sites
134         * (genCmpEq): handle literal-like operands correctly
135         * (genAddrOf): added sanity checks on __code/__data pointers
136         * (genAssign): added handling of symbols from __code section
137         * (gencjne): do not generate code for comparisons whose result
138           is neither stored nor used, fixes bug #1171114
139         * (AccLsh, AccRsh): operate on operand instead of WREG
140         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
141           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
142           by known count
143         * rewrote complete shift-by-literal logic, commented unused
144           functions out
145         * (genConstPointerGet): get multiple bytes (if result size > 1),
146           fixed handling of non-immediate addresses
147         * (genPointerGet): handle CODE pointers like CONST pointers
148         * (genpic14Code): insert C-SRC lines as Cource-pCodes
149         * ({aop,op}_isLitLike): NEW, single place to decide whether an
150           operand is to be treated as a literal or not
151         * (mov2w,genPcall,genCmpEq),
152           src/pic/genarith.c: use aop_isLitLike() to decide between
153           literal/register contents
154         * (addSign): added missing offset
155         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
156           only emit comment in debug-mode,
157           use {aop,op}_isLitLike throughout the file
158         * src/pic/glue.c: fix initializers for pointers (work in progress)
159         * src/pic/pcode.c (get_op): honor index on _const symbols
160         * ({reset,dump}pCodeStatistics): NEW, estimate code size
161         * (dumppBlock): added pCode size estimation
162         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
163           check for IS_SYMOP before OP_SYMBOL'ing
164         * fixed indentation, compacted switch-statements
165         * (allocReg): find free register and allocate it instead of
166           allocating new registers all the time
167         * (deassignLRs): prevent POINTER_GET's from being assigned the same
168           registers as its operands (necessary only for multibyte GETs)
169
170 2005-07-01 Raphael Neider <rneider AT web.de>
171
172         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
173           debugging .asm-output macros FENTRY + FEXIT
174         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
175           way... I wonder...
176         * (emitpComment): NEW, printf to pCode
177         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
178           offset handling
179         * (popGetAddr): NEW, variant of popGet to access an immediates
180           high(er) bytes instead of the n'th byte of memory they reference,
181           replaced popGet with popGetAddr where neccessary
182         * (genDataPointerGet): reactivated and fixed implementation
183         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
184           accesses
185         * (genDataPointerSet): fixed multibyte assignments
186         * (genpic14Code): fixed --i-code-in-asm handling
187         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
188         * (genPlus): fixed index-out-of-bounds error
189         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
190         * src/pic/ralloc.c: added debugging output macro FENTRY2
191         * (spillThis): fixed indentation, enbraced for-body for clarity
192         * (rematStr): commented out as now unused
193         * (regTypeNum): commented out special spill case (overwrites
194           arbitrary values)
195         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
196
197 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
198
199         * doc/sdccman.lyx: documented sfr16/sfr32,
200           added example for using storage class with function pointers
201         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
202
203 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
204
205         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
206         * device/lib/_itoa.c,
207         * device/lib/_ltoa.c: optimized codesize
208         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
209           but don't know how to suppress the double warning.
210         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
211         * support/Util/SDCCerr.c,
212         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
213
214 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
215
216         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
217           fixed old K&R prototypes
218         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
219         * device/lib/_gptrget.c,
220         * device/lib/_gptrgetc.c,
221         * device/lib/_gptrput.c: changed versions for new memory indicator values,
222           also new versions for small generic pointers and banked generic pointers
223         * src/port.h: added const_name
224         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
225         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
226         * src/SDCCcse.c (findPrevIc): check all associative operators
227         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
228         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
229         * src/SDCCmem.c: updated comments,
230           set far-space to 0 for pdata, results in optimized code
231         * src/SDCCmem.h: added macro CONST_NAME
232         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
233           moving the info into the highest bits, see also gptrget/gptrput
234         * src/src.dsp: added sdcc.ico to project files
235         * src/avr/gen.c (genCast): fixed bug 0x%d
236         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
237         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
238           relation between ptr_type and DCL_TYPE,
239           (genCast): fixed bug 0x%d
240         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
241           (CODE)" for const_name
242         * src/hc08/gen.c (genCast): fixed bug 0x%d
243         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
244           (hc08_port): added "CONST (CODE)" for const_name
245         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
246           (aopForRemat, adjustArithmeticResult): disconnected direct relation
247           between ptr_type and DCL_TYPE,
248           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
249           operand* and took AOP() inside function so sfr-ness can be checked,
250           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
251           new prototype,
252           (genFunction, genEndFunction): optimized stack setup,
253           (genMinus): optimized for literals with ending zeroes (in bytes),
254           (genCast): fixed bug 0x%d
255         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
256           (mcs51_port): added "CONST (CODE)" for const_name
257         * src/mcs51/peeph.def: made rule 226 more generic
258         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
259         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
260         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
261         * src/z80/main.c (z80_port): added NULL for const_name,
262           (gbz80_port): added NULL for const_name
263         * support/regression/tests/bug663539.c,
264         * support/regression/tests/sfr16.c: new tests
265
266 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
267
268         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
269
270 2005-06-24 Raphael Neider <rneider AT web.de>
271
272         * device/lib/pic16/libdev/pic18f[68][567]20.c:
273           corrected typos...
274         * device/include/pic16/signal.h: added USBIF
275           and SIG_USB
276
277 2005-06-24 Raphael Neider <rneider AT web.de>
278
279         * device/lib/pic16/libdev/pic18f2455.c,
280           device/include/pic16/pic18f2455.h: NEW
281         * device/include/pic16/pic18fregs.h,
282           device/lib/pic16/pics.all,
283           src/pic16/device.c: added 18f2455
284         * device/lib/pic16/libdev/pic18f[68][567]20.c,
285           device/include/pic16/{pic18f[68][567].h,usart.h}:
286           replaced MULTIPLE_USARTS define with more relaible
287           compatibility sfrs (for USART access)
288
289 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
290
291         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
292           and the output asm file line is printed on two lines.
293
294 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
295
296         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
297           BGT, BLE, BHI, and BLS instructions
298         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
299           genCmpEq): removed
300         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
301           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
302           fixes bug #1216342
303         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
304
305 2005-06-15 Raphael Neider <rneider AT web.de>
306
307         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
308         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
309         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
310           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
311           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
312
313 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
314
315         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
316           Marcel Telka in bug #1215704
317
318 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
319
320         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
321           located in shared memory bank.
322
323 2005-05-31 Raphael Neider <rneider AT web.de>
324
325         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
326           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
327           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
328
329 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
330
331         * device/lib/_strncpy.c: fixed the fix
332
333 2005-05-26 Raphael Neider <rneider AT web.de>
334
335         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
336           initializers with \0, bug #1208187
337         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
338           intializers with \0, bug #1208187
339
340 2005-05-26 Raphael Neider <rneider AT web.de>
341
342         * src/pic16/glue.c (pic16_printIvalChar): fixed string
343           initializers with \0, bug #1208187
344         * src/pic16/main.c (_process_pragma): added sanity checks
345           for stack position and size, emit warnings when appropriate
346
347 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
348
349         * device/lib/_strncpy.c: fixed not filling with \0
350
351 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
352
353         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
354           createFunction),
355         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
356           compound_statement),
357         * src/SDCCsymt.h,
358         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
359
360 2005-05-24 Raphael Neider <rneider AT web.de>
361
362         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
363
364 2005-05-24 Raphael Neider <rneider AT web.de>
365
366         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
367           TRISE definitions, closes bug #1162453
368
369 2005-05-22 Raphael Neider <rneider AT web.de>
370
371         * src/pic16/main.c (_process_pragma): check for missing
372           arguments to pragmas code and udata
373         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
374           consistency fixes to match other headers (thanks to Jim Paris)
375         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
376
377 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
378
379         * src/SDCCicode.c (isOperandEqual): fixed missing ;
380
381 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
382
383         * support/regression/tests/bug1198642.c: new test
384         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
385         * src/SDCCcse.c (findPrevIc): added comment, please have a look
386         * support/scripts/resource.h,
387         * support/scripts/resource.rc,
388         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
389         * support/scripts/sdcc.ico: added 32x32 icon
390
391 2005-05-18 Raphael Neider <rneider AT web.de>
392
393         * device/lib/pic16/libdev/pic18f*.c,
394         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
395           keywords to "__sfr" and "__at (X)"
396         * device/include/pic16/pic18fregs.h: added pic18f4520
397         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
398           #1203088 (MPLAB compatibility)
399
400 2005-05-17 Raphael Neider <rneider AT web.de>
401
402         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
403         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
404         * device/lib/pic16/pics.all: added new devices
405         * src/pic16/device.c: added support for pic18f4520
406
407 2005-05-16 Raphael Neider <rneider AT web.de>
408         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
409         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
410         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
411           convenience function for bit access
412
413 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
414
415         * device/lib/printf_large.c: fixed bug 1193299
416         * support/regression/tests/bug1057979.c: added test %3.3s
417
418 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
419
420         * device/include/mcs51/8051.h,
421         * device/include/mcs51/8052.h: made parseable with lint
422         * device/include/mcs51/lint.h: added include file for (sp)lint
423         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
424         * doc/cdbfileformat.lyx,
425         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
426
427 2005-05-14 Raphael Neider <rneider AT web.de>
428
429         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
430         * device/lib/pic16/libc/stdlib/itoa.c (new)
431         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
432         * device/lib/pic16/libio/Makefile: exclude subdir according to
433           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
434         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
435         * src/pic16/gen.c (genFunction): prevent annoying warning
436         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
437           nameclashes on BeOS
438         * support/cpp2/cppmain.c (cpp_output_string): new
439         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
440           fixes bug 1116802
441
442 2005-05-13 Borut Razem <borut.razem AT siol.net>
443
444         * src/SDCCmain.c (linkEdit): fixed bug 1195202
445
446 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
447
448         * .version: changed to version 2.5.1; back to bleeding edge development
449
450 2005-05-11 Borut Razem <borut.razem AT siol.net>
451
452         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
453           generate PDF version 1.3 documents
454
455 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
456
457         * .version: changed to version 2.5.0
458
459 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
460
461         * doc/sdccman.lyx: updated weblinks, index and smaller updates
462
463 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
464
465         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
466         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
467         well as many smaller updates.
468         * .version: changed to version 2.5.0-pre1
469
470 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
471
472         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
473
474 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
475
476         * support/regression/tests/bug1185672.c: added
477         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
478           bug 1185672
479         * src/mcs51/gen.c (genCall): added comments, made it look safer
480         * src/mcs51/gen.c (genEndFunction): simplified
481
482 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
483
484         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
485
486 2005-04-14 Borut Razem <borut.razem AT siol.net>
487
488         * fixed bug 1045046 - SIGSEGV with really simple code?:
489           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
490           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
491
492 2005-04-14 Borut Razem <borut.razem AT siol.net>
493
494         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
495           src/pic16/device.h: temporarily disabled experimental #inline pragma
496           for 2.5.0 release
497
498 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
499
500         * device/include/z80/stdio.h,
501         * device/include/z80/string.h: removed these highly incomplete files so
502           SDCC can use the default ones in device/include/
503
504 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
505
506         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
507         gcc warning.
508         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
509         fix sdcpp warnings.
510
511 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
512
513         * device/include/malloc.h: removed redundant __reentrant prototypes
514         * device/lib/_mullong.c: added working xstack variant in asm (C version
515           doesn't pass regression tests)
516         * device/lib/bpx.c: used __data and made bpx char for mcs51
517         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
518           (createFunction): fixed bug with xstackPtr
519         * src/SDCCcse.c: corrected comments
520         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
521           (killDeadCode, eBBlockFromiCode): removed unused code
522         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
523           corrected comments
524         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
525           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
526           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
527           (genModOneByte): fixed warning in MSVC
528         * src/mcs51/main.c (): added comments
529         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
530
531 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
532
533         * src/SDCCmain.c (linkEdit): oops, changed one line too many
534
535 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
536
537         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
538
539 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
540
541         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
542         characters arrays of larger size than the declared one.
543
544 2005-04-10 Borut Razem <borut.razem AT siol.net>
545
546         * src/pic/gen.c (genInline),
547           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
548           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
549           (findNextInstruction), (findPrevInstruction),
550           (findInstructionUsingLabel),
551           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
552         * src/pic/pcode.c (findLabel): added missing '\n'
553         * src/src.dsp: added SDCCdwarf2.c to the project
554
555 2005-04-09 Borut Razem <borut.razem AT siol.net>
556
557         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
558
559 2005-04-08 Raphael Neider <rneider AT web.de>
560
561         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
562           into the chain after a given one) and mergeDefmapSymbols (combine
563           defmap entries for each symbol per pcode)
564         * (createDefmap): have defmap entries merged in the end
565         * (defmapReplaceSymRef): split defmap entries covering two accesses to
566           a symbol before replacing one access type's symbol, merge symbols in
567           the end (replacement symbol might already have an entry)
568         * (assignValnums): keep reference to written WREG intact
569
570 2005-04-08 Raphael Neider <rneider AT web.de>
571
572         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
573           Alpha)
574
575 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
576
577         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
578         bytes
579
580 2005-04-07 Raphael Neider <rneider AT web.de>
581
582         * device/include/pic16/usart.h: added compatibility defines for
583           devices with more than one USART
584         * device/include/pic16/pic18f[68][567]20.h: activated above defines
585
586 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
587
588         * device/lib/Makefile.in: updated for port specific include
589
590 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
591
592         * support/regression/ports/mcs51/spec.mk: added mcs51 include
593
594 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
595
596         * device/include/8051.h,
597         * device/include/8052.h,
598         * device/include/at89S8252.h,
599         * device/include/at89c55.h,
600         * device/include/at89x051.h,
601         * device/include/at89x51.h,
602         * device/include/at89x52.h,
603         * device/include/mcs51reg.h,
604         * device/include/reg51.h,
605         * device/include/reg764.h,
606         * device/include/regc515c.h,
607         * device/include/sab80515.h: (re)moved these 12 files
608         * device/include/mcs51/8051.h,
609         * device/include/mcs51/8052.h,
610         * device/include/mcs51/at89S8252.h,
611         * device/include/mcs51/at89c55.h,
612         * device/include/mcs51/at89x051.h,
613         * device/include/mcs51/at89x51.h,
614         * device/include/mcs51/at89x52.h,
615         * device/include/mcs51/mcs51reg.h,
616         * device/include/mcs51/reg51.h,
617         * device/include/mcs51/reg764.h,
618         * device/include/mcs51/regc515c.h,
619         * device/include/mcs51/sab80515.h: and added them here
620
621 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
622
623         * device/include/stdarg.h: changed SDCC specific keywords to double
624           underlined form.
625         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
626           mcs51 and ds390.
627         * device/include/hc08/mc68hc908gp32.h,
628         * device/include/hc08/mc68hc908jb8.h,
629         * device/include/hc08/mc68hc908jkjl.h,
630         * device/include/hc08/mc68hc908qy.h: fixed comments
631         * device/include/mcs51/README: updated
632         * device/include/mcs51/c8051f120.h: added PINRSF
633         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
634         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
635           amidst code. Also inline is not supported.
636
637 2005-04-06 Raphael Neider <rneider AT web.de>
638
639         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
640         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
641           callers stack/frame pointers
642
643 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
644
645         * device/include/pic16/usart.h: added, missing in previous commit,
646         * device/include/pic16/adc.h: fixed typo,
647         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
648         commit,
649         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
650         <p18fxxx.inc>
651         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
652         uninitialized because a bug appears with gplink
653         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
654         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
655         complains for unrecognised option
656
657 2005-04-05 Raphael Neider <rneider AT web.de>
658
659         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
660           structs as well (using memcpy)
661         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
662           on ISRs (GOTO has no label)
663         * src/pic16/device.h: added OF_OPTIMIZE_DF
664         * src/pic16/main.c: added compiler switch --optimize-df to enable the
665           new data flow analysis/optimization
666         * src/pic16/pcode.c: added (prototypes for and implementation of)
667           dataflow analysis functions, fixed pCodeInstructions' inCond and
668           outCond values, made RCALL a branch instruction
669         * (pic16_unlinkpCode): keep C line if possible
670         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
671           C line moved if possible
672         * (pic16_getRegFrompCodeOp): NEW, improved version of...
673         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
674           to use new pic16_getRegFrompCodeOp (works for more SFRs)
675         * (pic16_BuildFlow): fixed skip instructions with label (did not start
676           new flow)
677         * (pic16_getJumptabpCode): NEW, needed in...
678         * (LinkFlow): fixed handling of jumptables, calls and conditional
679           branches
680         * (pic16_InsertCommentAfter): NEW
681         * (pic16_pCodeReplace): made verbose and flow preserving
682         * (AnalyzeFlow): added call to data flow analysis
683         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
684         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
685         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
686
687 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
688
689         * src/SDCCast.c (decorateType): fixed bug #1105626
690
691 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
692
693         * device/include/asm/pic16/features.h,
694         * pic18f*.h headers,
695         * device/include/pic16/adc.h,
696         * device/include/pic16/delay.h,
697         * device/include/pic16/i2c.h,
698         * device/include/pic16/malloc.h,
699         * device/include/pic16/stdio.h,
700         * device/include/pic16/stdlib.h,
701         * device/include/pic16/string.h,
702         * device/lib/pic16/libc/stdio/printf_tiny.c,
703         * device/lib/pic16/libc/stdio/printf_small.c,
704         * device/lib/pic16/libc/stdio/strmgpsim.c,
705         * device/lib/pic16/libc/stdio/strmmssp.c,
706         * device/lib/pic16/libc/stdio/strmusart.c,
707         * device/lib/pic16/libc/stdio/vfprintf.c,
708         * device/lib/pic16/libc/stdlib/ltoa.c,
709         * device/lib/pic16/libc/stdlib/putchar.c,
710         * device/lib/pic16/libc/stdlib/x_ftoa.c,
711         * device/lib/pic16/libc/stdlib/memchrpgm.c,
712         * device/lib/pic16/libc/stdlib/memchrram.c,
713         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
714         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
715         * device/lib/pic16/libio/adc/adcbusy.c,
716         * device/lib/pic16/libio/adc/adcread.c,
717         * device/lib/pic16/libio/adc/adcsetch.c,
718         * device/lib/pic16/libio/usart/ubaud.c,
719         * device/lib/pic16/libio/usart/ubusy.c,
720         * device/lib/pic16/libio/usart/udrdy.c,
721         * device/lib/pic16/libio/usart/uopen.c,
722         * device/lib/pic16/libio/usart/uputc.c,
723         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
724         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
725         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
726         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
727         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
728         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
729         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
730         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
731         specific keywords to double underlined form,
732         * device/lib/pic16/libc/Makefile.rules,
733         * device/lib/pic16/libsdcc/Makefile.rules,
734         * device/lib/pic16/libm/Makefile,
735         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
736         to compile with C standard set in Makefile.common
737         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
738         rand.c and crc.c in compilation process,
739         * device/lib/pic16/libsdcc/int/divuint.c,
740         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
741         `c' from signed to unsigned,
742         * device/lib/pic16/startup/crt0.c,
743         * device/lib/pic16/startup/crt0i.c,
744         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
745         keywords to double underlined form, bug fixes in _do_cinit function
746         which prevented the correct initialization of the .idata segment,
747         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
748         core to enter a infinite loop
749         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
750
751 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
752
753         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
754
755 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
756
757         * device/include/Makefile.in: add support for hc08 subdirectory
758         * device/include/hc08/: new subdirectory
759         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
760         Lucas Loizaga, thanks!
761         * device/include/hc08/mc68hc908qy.h,
762         * device/include/hc08/mc68hc908gp32.h,
763         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
764         their own directory. Changed internal macro names to use the compiler
765         reserved namespace. Changed SDCC specific keywords to double
766         underlined form.
767         * device/include/math.h,
768         * device/include/malloc.h,
769         * device/include/stdarg.h,
770         * device/include/stdbool.h
771         * device/include/string.h,
772         * device/include/tinibios.h,
773         * device/include/ds400rom.h,
774         * device/include/8051.h,
775         * device/include/8052.h,
776         * device/include/80c51xa.h,
777         * device/include/at89c55.h,
778         * device/include/at89S8252.h,
779         * device/include/at89x51.h,
780         * device/include/at89x52.h,
781         * device/include/ds80c390.h,
782         * device/include/reg764.h,
783         * device/include/regc515c.h,
784         * device/include/sab80515.h,
785         * device/include/mcs51/c8051f000.h,
786         * device/include/mcs51/c8051f018.h,
787         * device/include/mcs51/c8051f020.h,
788         * device/include/mcs51/c8051f040.h,
789         * device/include/mcs51/c8051f060.h,
790         * device/include/mcs51/c8051f120.h,
791         * device/include/mcs51/c8051f300.h,
792         * device/include/mcs51/c8051f310.h,
793         * device/include/mcs51/c8051f320.h,
794         * device/include/mcs51/c8051f330.h,
795         * device/include/mcs51/c8051f350.h,
796         * device/include/z180.h: Changed SDCC specific keywords to double
797         underlined form.
798
799 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
800
801         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
802         18F4455,
803         * (pic16_assignConfigWordValue): disable testing of configuration
804         register value with config mask,
805         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
806         function with port->fun_prefix,
807         * (genFunction): when generating a naked interrupt function never
808         create an absolute segment placed in interrupt vector address, place
809         the actual interrupt function at IVA instead, when an interrupt
810         function is generated with unspecified interrupt then do not create
811         the absolute section,
812         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
813         code for generating a call to generic pointer get/put function with
814         a call to function pic16_callGenericPointer(),
815         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
816         the call to the generic pointer get/put functions with prefixing the
817         function name with port->fun_prefix,
818         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
819         * src/pic16/main.c (_process_pragma): prefix function with
820         port->fun_prefix,
821         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
822         calling assembler, old 18Fxxxx macro is deprecated,
823         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
824         PC_ASMDIR in while condition,
825         * (findInstruction): add PC_ASMDIR in while condition,
826         * (buildCallTree): prefix main with port->fun_prefix,
827         * (pic16_pCode2str): fixed bug that didn't emit the memory access
828         identifier for variable with banked access in instructions BTFSS,
829         BTFSC, BCF, BSF, BTG
830         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
831         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
832         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
833         perform optimization when enviroment variable NO_REG_OPT is set,
834         * (insideLRBlock): NEW, return 1 if register is inside an
835         INF_LOCALREGS block,
836         * (RemoveRegFromLRBlock): remove a register that is completely
837         eliminated by register optimization, but it is still left in local
838         register store/restore in/from stack block,
839         * (Remove2pcodes): after removing register, check to see if it
840         should be removed from local register store/restore in/from stack
841         block,
842         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
843         DUMMY_READ_VOLATILE,
844
845         * device/include/pic16/adc.h: minor prototype modifications and
846         update,
847         * device/include/pic16/malloc.h: added GPL notice various
848         modifications,
849         * device/include/pic16/stdint.h: NEW, standard header for ints
850         * device/include/pic16/delay.h: NEW, header for delay functions,
851         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
852         delay1mtcy,
853         * device/include/pic16/signal.h: NEW, header providing helper macros
854         for implementing signal handlers,
855         * device/include/pic16/stdio.h: added prototypes for functions,
856         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
857         prototypes for stdin and stdout, added macro PUTCHAR to
858         automatically implement putchar function prototype,
859         * device/include/pic16/usart.h: modified and updated USART library,
860         * device/lib/pic16/libio/adc/,
861         * device/lib/pic16/libio/i2c: some modifications to improve library
862         performance,
863         * device/lib/pic16/libc/stdio/: modifications for the new printf*
864         family of functions,
865         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
866         family of functions and other sources,
867         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
868         of the PIC18Fxx[28] devices,
869         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
870         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
871         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
872         _do_cinit function, because the previous failed when local variables
873         where not placed in the same memory bank,
874         * device/lib/pic16/libsdcc/char/: various modifications to improve
875         library performance,
876         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
877         information on the new functions of the c library and more...
878
879 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
880
881         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
882
883 2005-03-26 Raphael Neider <rneider AT web.de>
884
885         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
886           if condition == CARRY)
887         * (genCmp): adapted to new genSkipc semantics
888         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
889           on rIfx (genCmp was broken)
890
891 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
892
893         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
894         * src/z80/main.c (_keywords[]),
895         * src/SDCCglobal.h (struct options),
896         * src/SDCC.y,
897         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
898         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
899         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
900         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
901         always available in leading double underscore form. The C99 support is
902         mostly missing, but it's a start.
903         * support/regression/tests/bug-227710.c: fixed nonconforming use of
904         reserved identifier "__data".
905
906 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
907
908         * src/mcs51/peeph.def: fixed bug 1170013
909
910 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
911
912         * device/include/mcs51reg.h: fixed bug 842007
913
914 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
915
916         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
917         last time.
918
919 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
920
921         * src/port.h (struct PORT),
922         * src/avr/ralloc.c (avr_assignRegisters),
923         * src/avr/main.c,
924         * src/ds390/ralloc.c (ds390_assignRegisters),
925         * src/ds390/main.c,
926         * src/hc08/ralloc.c (hc08_assignRegisters),
927         * src/hc08/main.c,
928         * src/mcs51/ralloc.c (mcs51_assignRegisters),
929         * src/mcs51/main.c,
930         * src/pic/ralloc.c (pic14_assignRegisters),
931         * src/pic/main.c,
932         * src/pic16/ralloc.c (pic16_assignRegisters),
933         * src/pic16/main.c,
934         * src/xa51/ralloc.c (xa51_assignRegisters),
935         * src/xa51/main.c,
936         * src/z80/ralloc.c (z80_assignRegisters),
937         * src/z80/ralloc.h,
938         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
939         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
940         * src/SDCCcse.h,
941         * src/SDCCdflow.c (computeDataFlow),
942         * src/SDCCdflow.h,
943         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
944         * src/SDCCloop.h,
945         * src/SDCCcflow.c (*),
946         * src/SDCCcflow.h,
947         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
948         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
949         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
950         immedDom() returning wrong block; probably fixes bug #1160833)
951
952 2005-03-20 Borut Razem <borut.razem AT siol.net>
953
954         * support/scripts/inc2h.pl: WIN32 port
955
956 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
957
958         * device/lib/makefile.in: added abs.c and labs.c
959
960 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
961
962         * device/include/stdint.h: added
963         * device/lib/abs.c: added
964         * device/lib/labs.c: added
965         * device/include/stdlib.h: added abs() and labs() prototypes
966         * device/lib/libsdcc.lib: added abs and labs
967         * device/include/float.h,
968         * device/lib/_fsmul.c,
969         * device/lib/printf_fast.c,
970         * device/lib/printf_tiny.c: updated comments
971
972 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
973
974         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
975         bug #1164313
976
977 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
978
979         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
980         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
981
982 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
983
984         * device/lib/printf_large.c: removed inline assembly for portability and
985           readability. Use printf_fast if speed or size are more important.
986         * src/pic16/gen.c: removed conditions around use of DEBUGpc
987         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
988
989 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
990
991         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
992         prevent compiler warning
993
994 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
995
996         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
997         moved to level 0 and declared as static. Also they are explicit
998         placed in access bank. This was necessery because some times they
999         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
1000         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
1001         optimizations. Currently only compare to unsigned char is implemented,
1002         * src/pic16/gen.c: added fReturnIdx array,
1003         * (struct resolvedIfx) is moved to gen.h and made public,
1004         * (struct _G): added sregsAlloc and sregsAllocSet fields,
1005         * (aopForSym): added an optimization to directly store in stack of
1006         the operand of a SEND iCode,
1007         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
1008         but as registers instead (AOP_REG) using the fReturnIdx array,
1009         * (pic16_freeAsmop): remove the freed register from the
1010         _G.sregsAlloc field,
1011         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
1012         a compare of 'WREG',
1013         * (pic16_popGetTempRegCond): changed function prototype, now
1014         function takes also a bitVector argument v which holds the current
1015         set of registers that are allocated for stack access by aopForSym,
1016         registers allocated in aopForSym for accessing stack symbols are not
1017         any more part of the functions usedRegs field,
1018         * (genCall): some times aopOp is called for a stack variable to be
1019         send, aopForSym might perform the push, if this is true make sure
1020         that genCall doesn't push the variable twice by testing _G.resDirect,
1021         * (genFunction): changed testing for unspecified interrupt number
1022         from 256 to INTNO_UNSPEC,
1023         * modified selection scheme of frame pointer generation. Previously
1024         if function did use local registers a frame pointer was generated,
1025         now a frame pointer is generated only if function has arguments
1026         (that need PLUSW2 register access), or has stack arguments, or the
1027         compiler is not instructed to omit the frame pointer,
1028         * (genEndFunction): before restoring local registers that were saved
1029         in the function preamble, also restore the registers that *might*
1030         have been allocated for stack access,
1031         * (genRet): removed some old comments,
1032         * (genCmp, the active (RN's) version): added a call to the
1033         pic16_genCmp_special function to perform the compare with a more
1034         robust and optimized way,
1035         * (genInline): a feature has been added in inline code generation,
1036         which allows a wildcard variable substitution when writing inline
1037         assembly. Code is incomplete and experimental therefore undocumented,
1038         * (genCast): changed order of aopOp for result and right to allow
1039         aopForSym to directly load the result if possible,
1040         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
1041         perform an optimized compare on some selected special occasions,
1042         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
1043         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
1044         generate an IVT any more,
1045         * src/pic16/main.c (pic16_optionsTable): added command line option
1046         --optimize-cmp,
1047         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
1048         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
1049         macros,
1050         * src/pic16/NOTES: Raphael Neider added in list of active developers
1051         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
1052         jumptable_end to prevent bug #,
1053         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
1054         inCond and outCond fields,
1055         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
1056         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
1057         turn off register spilling,
1058         * (packRegsForOneUse): synced with other ports' versions although it
1059         is not used currently,
1060         * (pic16_packRegisters): added an optimization while reading
1061         structure bitfields, some registers may be saved (malloc code is
1062         decreased by 80 bytes)
1063
1064 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
1065
1066         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
1067         left is a bitfield, if yes, then don't optimize assignment. Perhaps
1068         this can be optimized more?
1069
1070 2005-03-10 Raphael Neider <rneider AT web.de>
1071
1072         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
1073           genNearPointerGet): (hopefully) fixed access to bitfields via
1074           pointers (p->bitN = x; and x = p->bitN; failed)
1075
1076 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
1077
1078         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
1079
1080 2005-03-09 Raphael Neider <rneider AT web.de>
1081
1082         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
1083
1084 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
1085
1086         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
1087         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
1088           (regTypeNum): set REG_BIT type if necessary
1089         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
1090         * support/regression/tests/critical.c: check bug 1144613
1091
1092 2005-03-02 Raphael Neider <rneider AT web.de>
1093
1094         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
1095
1096 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1097
1098         * src/avr/ralloc.c (serialRegAssign),
1099         * src/ds390/ralloc.c (serialRegAssign),
1100         * src/hc08/ralloc.c (serialRegAssign),
1101         * src/mcs51/ralloc.c (serialRegAssign),
1102         * src/pic/ralloc.c (serialRegAssign),
1103         * src/pic16/ralloc.c (serialRegAssign),
1104         * src/xa51/ralloc.c (serialRegAssign),
1105         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
1106
1107 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
1108
1109         * src/SDCCast.c (decorateType): fixed bug 1124787
1110
1111 2005-02-20 Hubert Sack <sack AT digiplan.de>
1112         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1113
1114         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
1115         patch #1121755
1116
1117 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1118
1119         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
1120         to keep the correct label reference count when adding/removing references
1121         to labels. A peephole file using this is appended to patch #1144962.
1122
1123 2005-02-14 Raphael Neider <rneider AT web.de>
1124
1125         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
1126         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
1127         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
1128           retrievals of result operand's value on assignment
1129
1130 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
1131
1132         * device/include/pic16/string.h: modified prototype for memccpy()
1133         to memccpy(void *, void *, char, size_t)
1134         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
1135         check whether to omit frame pointer or not,
1136         * (genInline): convert all occurences of "\n" to LF in inline
1137         assembler blocks, this helps formatting the inline text,
1138         * (pic16_loadFSR0): modified prototype,
1139         * (genNearPointerGet, genNearPointerSet): reorganization of code,
1140         removed some 8051 legacy code,
1141         * (genPackBits): enabled handling bitfields exceeding one byte in size,
1142         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
1143         before allocating temporary registers in functions,
1144
1145 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1146
1147         * support/regression/tests/bitvars.c: corrected the "fix"
1148
1149 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1150
1151         * support/regression/tests/bitvars.c,
1152         * support/regression/tests/bitwise.c,
1153         * support/regression/tests/rotate.c: "fixed" problems on Alpha
1154
1155 2005-02-10 Raphael Neider <rneider AT web.de>
1156
1157         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
1158           different size for Alpha
1159         * src/pic16/gen.c (genCmpEq) : improved compare with 0
1160
1161 2005-02-09 Raphael Neider <rneider AT web.de>
1162
1163         * src/SDCC.lex(doPragma) : save and restore warning options as well
1164           (also added new stack plus clone- and copyAndFreeSDCCERRG())
1165         * have #pragma less_pedantic set the errorlevel to WARNING
1166           (fixes #1117001)
1167         * (cloneOptimize) : fixed wrong malloc's size
1168         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
1169           facilitate correct handling of #pragma (save|restore)
1170
1171 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1172
1173         * src/mcs51/gen.c: removed non-standard C nameless struct/union
1174
1175 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
1176
1177         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
1178
1179 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
1180
1181         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
1182
1183 2005-02-02 Raphael Neider <rneider AT web.de>
1184
1185         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
1186         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
1187         * (pic16_storeForReturn): fixed to allow returning function pointers
1188         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
1189         * device/include/pic16/{stddef.h,stdbool.h}: added
1190
1191 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
1192
1193         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
1194
1195 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
1196
1197         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
1198         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
1199          appeared to be required
1200
1201 2005-01-31 Borut Razem <borut.razem AT siol.net>
1202
1203         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
1204           include/mcs51 and include/z80 directories to the package
1205
1206 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1207
1208         * src/hc08/gen.c (genFunction): fixed bug #1112752
1209
1210 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1211
1212         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
1213
1214 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1215
1216         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
1217
1218 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
1219
1220         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
1221
1222 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
1223
1224         * device/include/c8051fxxx.h: removed these 6 files
1225         * device/include/mcs51/c8051fxxx.h: added these 11 new files
1226
1227 2005-01-26 Raphael Neider <rneider AT web.de>
1228
1229         * src/pic16/gen.c (genAssign): fixed assignment from longs
1230           in codespace (were cut to three bytes)
1231         * (genDummyRead): implemented (except for CODESPACE...),
1232           fixed bug #1108575
1233         * src/pic16/glue.c (emitStatistics): beautified
1234         * device/lib/pic16/libm/Makefile: added include path
1235
1236 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1237
1238         * src/z80/gen.c (aopPut): fixed bug #1103902
1239
1240 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1241
1242         * device/lib/expf.c: fixed bug #1095792
1243
1244 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
1245
1246         * device/lib/pic16/libm: added Math library sources
1247
1248 2005-01-24 Raphael Neider <rneider AT web.de>
1249
1250         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
1251           to enable upcast to pCodeOpReg2 (there is no type tag to
1252           differenciate the two and pic16_popGet2p cast into PCOR2)
1253         * src/pic16/main.c (_process_pragma): fixed another malloc bug
1254           (sizeof(sectNames) changed to sizeof(sectName))
1255           Both patches fix segfaults under MinGW.
1256
1257 2005-01-23 Raphael Neider <rneider AT web.de>
1258
1259         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
1260           Safe_[mc]?alloc()'ed variables
1261         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
1262           of (byte sized) temporaries (assign them to WREG for now)
1263         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
1264           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
1265           this might fix SIGSEGVs on MinGW...
1266         * src/SDCCopt.c (killDeadCode): restored original behaviour
1267           (volatile operands might get thrown away though)
1268
1269 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
1270
1271         * src/pic16/gen.c: fixed bug #1106975,
1272         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
1273         pointer update, INTCON is saved, global interrupts are disabled and
1274         restored after updateing TOS.
1275         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
1276         * added function attribute 'shadowregs' to take advantage of shadow
1277         registers,
1278         * added function attribute 'wparam' as an alternative to the wparam
1279         pragma,
1280         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
1281         user declares a non-ISR function as 'shadowregs',
1282         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
1283
1284 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
1285
1286         * .version: bumped version number to 2.4.8
1287         * device/lib/pic16/pics.all: list of PIC18F devices supported by
1288         pic16 port,
1289         * device/lib/pic16/libio/i2c/: I2C module support library,
1290         * device/include/pic16/i2c.h: I2C support library header,
1291         * device/lib/pic16/libc/stdio/: standard IO support sources,
1292         * (printf_small.c): printf_small() source, supports float print,
1293         * (printf_tiny.c): printf_tiny() source, does not support floats,
1294         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
1295         enable global optimizations for entire library source, other
1296         Makefiles in the source tree are also modified to reflect this,
1297         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
1298         function,
1299         * doc/sdccman.lyx: updated to reflect new changes,
1300         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
1301         sym->onStack if-case,
1302         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
1303         sbit, idata, _idata, xdata, _xdata,
1304         * added pragma library, to link an external library, (see doc),
1305         * removed command line options, --pomit-config-words, --pomit-ivt,
1306         --pleave-reset-vector,
1307         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
1308         when calling assembler to reflect memory model used, also define
1309         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
1310         reflect stack model used,
1311         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
1312         on stack return NULL,
1313
1314 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1315
1316         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
1317           of the operands is volatile. Fixes #1020220
1318
1319 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1320
1321         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
1322         * (OptimizeRegUsage): make sure that there is really no other flow where
1323           the first pCode is used
1324
1325 2005-01-22 Raphael Neider <rneider AT web.de>
1326
1327         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
1328           to fix #1106967 (pCode->seq are not set up correctly)
1329
1330 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1331
1332         * src/SDCCglue.c (glue): make sure code area is declared before the
1333         static initialization area.
1334
1335 2005-01-21 Raphael Neider <rneider AT web.de>
1336
1337         * device/lib/Makefile.in: fixed test for pic16 install dir
1338         * device/lib/pic16/*/Makefile*: modified compile flags to enable
1339           optimizations
1340         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
1341           added --optimize-goto compiler switch and pragma wparam documentation
1342         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
1343         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
1344           and PRODH closing bug #1071770 (peephole optimizer)
1345
1346 2005-01-19 Raphael Neider <rneider AT web.de>
1347
1348         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
1349           cmdLine buffers (used when calling sdcpp...) are large enough
1350           (MAX_PATH=256 truncates arguments leading to system halts when
1351           used in MinGW...)
1352         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
1353         * (genUminus): rewritten to for efficiency
1354         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
1355           used uninitialized in some cases)
1356         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
1357           copy the third byte from the int -- now assumes 0x80 (data memory)
1358         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
1359           operands (genAddLit expects the iCode's operands to swapped as
1360           well), fixed leftover bytes (crashed for short left operands)
1361         * (pic16_genMinusDec): performance improvements, removed false
1362           PIC14 emitSKPNCs
1363         * (pic16_genMinus): fixed to cope with differently sized operands
1364         * src/pic16/glue.c (pic16_glue): added new banksel optimization
1365           for --obanksel > 1
1366         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
1367         * src/pic16/graph.[ch]: implementation of directed graphs, used by
1368           new banksel optimization
1369         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
1370           analysis for temporary registers (segfaults...)
1371         * src/pic16/peeph.def: added rule
1372
1373 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
1374
1375         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
1376         which converts a float number to its ASCII representation
1377         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
1378         functions to convert the fractional and integer part of a float to ASCII,
1379         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
1380         realloc.c): added _MALLOC_SPEC to explicit place variables in data
1381         ram
1382         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
1383         _STATMEM macros,
1384         * device/include/pic16/adc.h: added GPL info,
1385         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
1386         a pCodeOp as tested operand,
1387         * (genNearPointerGet): optimized bit testing, does not use
1388         intermediate register for bit value, test directly instead with
1389         BTFSS, BTFSC, works only for single bits,
1390         * (genpic16Code): dump the name of the iCode in the asm,
1391         * src/pic16/ralloc.c (decodeOp): removed static declaration and
1392         renamed to pic16_decodeOp,
1393         * (serialRegAssign): do not allocate a temporary register for iCode
1394         sequences that test a single bit for 1/0
1395
1396 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
1397
1398         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
1399         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
1400         access stack and frame pointers. They are initially assigned to
1401         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
1402         accessing SFRs. Updated all occurences of modification of stack or
1403         frame pointer in gen.c and pcode.c,
1404         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
1405         assigning of a literal value to pointers,
1406         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
1407         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
1408         selected
1409
1410 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
1411
1412         * doc/sdccman.lyx: update documentation about stack pragma, added
1413         some info for stack memory models
1414
1415 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1416
1417         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
1418
1419 2005-01-08 Raphael Neider <rneider AT web.de>
1420
1421         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
1422           udata sections to fix bug #1097823
1423
1424 2005-01-05 Raphael Neider <rneider AT web.de>
1425
1426         * src/pic16/gen.c (genGenericShift): added handling of differently
1427           sized left operand and result
1428
1429 2005-01-04 Raphael Neider <rneider AT web.de>
1430
1431         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
1432         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
1433           to hold the condition bit)
1434         * added new version of genCmp (old code available via #define)
1435         * added new version of genShiftLeft/genShiftRight in a generic
1436           way, now supports shifting by negative values
1437         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
1438           shiftCount (expected by genGenericShift)
1439         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
1440         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
1441           dump
1442         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
1443           is an invalid literal too...)
1444
1445 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
1446
1447         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
1448         from Raphael Neider,
1449         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
1450         for 8-bit literals. This fixes some literal operands which are sign
1451         extended to 16-bits ints when instruction needs only 8-bits.
1452
1453 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
1454
1455         * device/lib/logf.c: added mcs51 assembly version
1456         * device/lib/expf.c: added mcs51 assembly version
1457         * device/lib/_logexpf.c: new shared asm code for expf and logf
1458         * device/include/math.h: add defines for assembly math library
1459         * device/lib/Makefile.in: build new _logexpf.c
1460         * device/lib/libfloat.lib: use new _logexpf.c
1461
1462 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
1463
1464         * src/pic/device.c
1465         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
1466           device types which have less than 0x7f registers.
1467
1468 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
1469
1470         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
1471
1472 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
1473
1474         * device/lib/printf_fast.c: only build on supported arch.
1475         * device/lib/printf_tiny.c: only build on supported arch.
1476         * device/lib/printf_fast_f.c: only build if asm float lib
1477         * device/lib/_fsget1arg.c: only build if asm float lib
1478         * device/lib/_fsget2args.c: only build if asm float lib
1479         * device/lib/_fsnormalize.c: only build if asm float lib
1480         * device/lib/_fsreturnval.c: only build if asm float lib
1481         * device/lib/_fsrshift.c: only build if asm float lib
1482         * device/lib/_fsswapargs.c: only build if asm float lib
1483         * device/include/stdio.h: don't provide print_fast,
1484           print_fast_f, print_tiny prototypes if --xstack used
1485
1486 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
1487
1488         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
1489         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
1490           to the SOURCES
1491
1492 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
1493
1494         * device/lib/printf_fast_f.c: same as printf_fast, but
1495           with floating point enabled
1496         * device/lib/printf_fast.c: minor tweaks
1497         * device/include/stdio.h: add printf_fast_f
1498
1499 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
1500
1501         * src/SDCCmain.c: make --float-reent default for mcs51
1502         * device/lib/_fsadd.c: added mcs51 assembly version
1503         * device/lib/_fssub.c: added mcs51 assembly version
1504         * device/lib/_fsmul.c: added mcs51 assembly version
1505         * device/lib/_fsdiv.c: added mcs51 assembly version
1506         * device/lib/_fseq.c: added mcs51 assembly version
1507         * device/lib/_fsneq.c: added mcs51 assembly version
1508         * device/lib/_fsgt.c: added mcs51 assembly version
1509         * device/lib/_fslt.c: added mcs51 assembly version
1510         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
1511         * device/lib/Makefile.in: add _fscmp to build
1512         * device/lib/libfloat.lib: add _fscmp to build
1513
1514 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
1515
1516         * device/lib/_fs2slong.c: added mcs51 assembly version
1517         * device/lib/_fs2sint.c: added mcs51 assembly version
1518         * device/lib/_fs2schar.c: added mcs51 assembly version
1519         * device/lib/_fs2ulong.c: added mcs51 assembly version
1520         * device/lib/_fs2uint.c: added mcs51 assembly version
1521         * device/lib/_fs2uchar.c: added mcs51 assembly version
1522         * device/lib/_slong2fs.c: added mcs51 assembly version
1523         * device/lib/_sint2fs.c: added mcs51 assembly version
1524         * device/lib/_schar2fs.c: added mcs51 assembly version
1525         * device/lib/_ulong2fs.c: added mcs51 assembly version
1526         * device/lib/_uint2fs.c: added mcs51 assembly version
1527         * device/lib/_uchar2fs.c: added mcs51 assembly version
1528         * device/include/float.h: added #define to select asm vs c
1529
1530 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
1531
1532         * device/lib/printf_fast.c: improvements to float output
1533         * device/include/float.h: add defines for assembly float library
1534         * device/lib/_fsget1arg.c: receive 1 float arg
1535         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
1536         * device/lib/_fsnormalize.c: normalize a float
1537         * device/lib/_fsreturnval.c: return float, various helper routines
1538         * device/lib/_fsrshift.c: right shift a float's mantissa
1539         * device/lib/_fsswapargs.c: swap 2 floats
1540         * device/lib/Makefile.in: build these 6 new files for mcs51
1541         * device/lib/libfloat.lib: add these 6 files to the library
1542
1543 2004-12-26 Borut Razem <borut.razem AT siol.net>
1544
1545         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
1546           built by gcc 3.4.2
1547
1548 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
1549
1550         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
1551           and fully reentrant and register bank neutral.
1552         * device/lib/printf_fast.c: added float (not enabled by default),
1553           added compact/slower integer (also not enabled by default),
1554           improved size/speed of fast integer code, other minor changes
1555         * device/include/stdio.h, device/lib/Makefile.in,
1556           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
1557
1558 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
1559
1560         * src/pic16/pcode.c: declaring variables other than at the start of a
1561           block is not supported in C by VC6.
1562
1563 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
1564
1565         * applied a previous patch from Raphael Neider that wasn't included
1566         in the previous commits, which fixes infinite loops within jumptable
1567         improvements,
1568         * made some fixes that previous patches introduced
1569
1570 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
1571
1572         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
1573         that fixes an issue with AOP_PCODE asmop's offset,
1574         * (pic16_popCopyReg): update instance field too,
1575         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
1576         function of pic port,
1577         * (genCmp, genAnd, genAssign),
1578         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
1579
1580 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
1581
1582         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
1583         variables initial values to idata section,
1584         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
1585         variables in some functions. This utilizes parmBytes field of iCode
1586         structure to hold the offset of the variable in stack. (might be
1587         able to use the stack field too?)
1588         * applied patch from Raphael Neider # ### , # ###
1589         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
1590         variable initial values in idata section,
1591         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
1592         for static variables with initial value
1593         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
1594         applied fix in while loop from Raphael Neider.
1595
1596 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
1597
1598         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
1599         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
1600         * src/ds390/ralloc.c (serialRegAssign): spill bits
1601         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
1602         * support/Util/SDCCerr.c,
1603         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
1604         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
1605         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
1606
1607 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
1608
1609         * device/include/sdcc-lib.h: inserted LGPL, added includes
1610           asm/ds390/features.h and asm/mcs51/features.h
1611         * device/include/asm/default/features.h,
1612         * device/include/asm/gbz80/features.h,
1613         * device/include/asm/z80/features.h: added empty _AUTOMEM
1614           and _STATMEM
1615         * device/include/asm/ds390/features.h,
1616         * device/include/asm/mcs51/features.h: added files with defines for
1617           _AUTOMEM and _STATMEM indicating automatic and static storage class
1618         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
1619         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
1620         * src/SDCCicode.c (geniCodeCast),
1621         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
1622         * src/SDCCloop.c (loopInduction): removed unused variable lr
1623         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
1624           to convertToFcall to include char modulo (RFE 1065037), added check
1625           if left operand is unsigned and use abs of literal value
1626         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
1627           as it doesn't work after conversion from peephole.def to peephole.rul
1628         * src/mcs51/gen.c (toBoolean): added check for size,
1629           (genModOneByte): optimized code for signed char modulo a literal
1630           power of 2 (thanks to Hubert Sack),
1631           (genRRC): removed unnecessary "clr c",
1632           (genRLC): replaced "add a,acc" with cheaper "rlc a"
1633         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
1634           jump optimization,
1635           swapped rules 256.c and 256.d,
1636           extended 256.d by using new multiple checks (thanks Erik),
1637           added rules 256.e and 256.f,
1638           updated rule 261.a and 261.b to new generated code
1639         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
1640
1641 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1642
1643         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
1644           induction related bugs, including first part of bug #1074377
1645
1646 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
1647
1648         * applied patch from bug-report #1076292,
1649         * applied patches for genAnd and Goto-optimizations for Raphael
1650         Neider,
1651         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
1652         dump a less iCode information,
1653         * src/pic16/device.h (pic16_options_t): added field debgen,
1654         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
1655         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
1656         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
1657         puclic,
1658         * (various functions): added macros FENTRY and FENTRY2 to functions,
1659         to emit function prologue,
1660         * (various functions): fixed indentation,
1661         * (genNearPointerGet): fixed loading of FSR0,
1662         * (genPackBits): applied patch from Raphael Neider to fix updating
1663         of FSR0 and touching only the modified bits,
1664         * src/pic16/genarith.c (various functions): added macros FENTRY to
1665         emit function prologue in comments,
1666         * src/pic16/pcode.h: added functions debugf2, debugf3,
1667         * src/pic16/ralloc.c: partial fix for packForPush caused
1668         segmentation fault,
1669
1670 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1671
1672         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
1673           <stsp AT users.sourceforge.net> with reversed byte order
1674         * support/regression/tests/rotate.c: added (ds390 skips some tests)
1675
1676 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1677
1678         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
1679           bug #1074377
1680         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
1681         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
1682
1683 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
1684
1685         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
1686
1687 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1688
1689         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
1690           conditions,
1691           (setFromConditionArgs): friendly operand parser for peephole rules,
1692           (operandBaseName, operandsNotRelated): new peephole condition
1693           "operandsNotRelated" -- similar to "operandsNotSame", but takes
1694           architecture specific register naming into account, handles n-way
1695           comparisons, and supports quoted literals
1696         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
1697
1698 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1699
1700         * src/mcs51/peeph.def: fixed bug #1076940
1701
1702 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
1703
1704         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
1705
1706 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1707
1708         Adding support for replacing ljmps with sjmps in jumptables
1709         generated for switch statements. For now you need to set the
1710         environment variable SDCC_SJMP_JUMPTABLE to enable this.
1711         Now 4 algorithms for mcs51 jumptable generation are used:
1712         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
1713         addresses loaded pc-relative for up to 112 cases and stack-pushing
1714         target addresses loaded with offset from dptr for up to 256 cases.
1715
1716         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
1717         * src/mcs51/main.c: adapted constants for switch table generation
1718         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
1719
1720 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
1721
1722         * device/lib/printf_large.c (_print_format): fixed bug 1073386
1723         * support/regression/tests/bug1057979.c: added test for bug 1073386
1724
1725 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
1726
1727         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
1728         compilers
1729
1730 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
1731
1732         * src/pic16/device.h,
1733         * src/pic16/genarith.c,
1734         * src/pic16/glue.c,
1735         * src/pic16/main.c,
1736         * src/pic16/pcode.c: applied patches #1068154 and #1070213
1737
1738 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
1739
1740         Large cummulative patch for pic16 port.
1741         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
1742         to call when a stack overflow occurs,
1743         * (malloc.h): added CVS Id tag,
1744         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
1745         variable,
1746         * added libc directory. The current version of LibC contains string
1747         functions, ctype functions and macros and some functions of the
1748         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
1749         be extensively tested in the future. Standard disclaimer here.
1750         Library is not automatically build yet. But one can build it by
1751         invoking 'make' inside the libc directory.
1752         * added ADC library under libio. Preliminary version yet.
1753
1754         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
1755         * src/pic16/gen.c (aopForRemat): asmop size is filled by
1756         aopForRemat() now and not by pic16_aopOp(),
1757         * (pic16_popGetTempReg): removed warning messgae when allocating
1758         temporary registers, its a buggy feature and will be removed,
1759         * (pic16_popGet): set register instance field in AOP_CRY,
1760         * (pic16_outBitC): fixed for results in size greater than 1,
1761         * (genUminusFloat): fixed for pic16, ported code from mcs51,
1762         * (pic16_storeForReturn): optimized return of 0,
1763         * (genCmp): experimental code for new genCmp which uses PIC18's
1764         special compare&skip instructions. Initial tests fail some times
1765         with variables grater than 1 byte in size, so new code is disabled,
1766         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
1767         a single bit,
1768         * (genCast): began a fix to optimize the casting of a bit to another
1769         bit, now assigning a bitfield to another bitfield will fail, sorry,
1770         * src/pic16/main.c: disabled the use of lr-support feature,
1771         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
1772         * added some function prototypes, added function _debugf prototype,
1773         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
1774         bits with offset (case PO_GPR_BIT),
1775         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
1776         command line,
1777         * (isBankInstruction): modified to return 0 for no banking instruction,
1778         and 1 for banking instruction,
1779         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
1780         caused stop processing pCodes after a inline assembly block,
1781         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
1782         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
1783         registers when it shouldn't,
1784         * src/pic16/ralloc.c (allocReg): add preliminary support for
1785         supporting a limited set of temporary registers,
1786
1787 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1788
1789         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
1790           genDataPointerSet): ensure assignments always copy in MSB to LSB
1791           order,
1792           (loadRegFromAop): recognize CLRH optimization,
1793           (genFunction): optimize RECEIVE iCodes in reentrant functions
1794
1795 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1796
1797         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
1798           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
1799           selected.
1800         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
1801         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
1802           contiguous with data
1803
1804 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1805
1806         * device/lib/_gptrget.c (_gptrget),
1807         * device/lib/_gptrgetc.c (_gptrgetc),
1808         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
1809           instead of sjmp to ret
1810         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
1811           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
1812
1813 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
1814
1815         * .version: bumped version to 2.4.7
1816         * device/lib/_gptrget.c (_gptrget): is now _naked
1817         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
1818         * device/lib/_gptrput.c (_gptrput): is now _naked
1819         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
1820           (createFunction): fixed xstack
1821         * src/SDCCglue.c (emitMaps): set allocation required for bit area
1822         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
1823           or bit either,
1824           (geniCodeCritical): store original interrupt state in an iTemp bit
1825           var unless stack-auto
1826         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
1827         * src/SDCCmain.c (setIncludePath): added include/target to search path
1828         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
1829         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
1830           prototype,
1831           (processFuncArgs): put bit vars in bit area
1832         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
1833           unsaveRBank): fixed xstack,
1834           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
1835           (genFunction, genEndFunction): fixed xstack,
1836           (genAssign): optimization don't walk backwards through mem
1837         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
1838         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
1839         * support/regression/Makefile: also make library (for stack-auto) when
1840           making "all" and added "test-mcs51-xstack-auto"
1841         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
1842         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
1843         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
1844         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
1845         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
1846           make-library by MAKE_LIBRARY
1847         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
1848           regression tests for xstack
1849         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
1850         * support/regression/tests/critical.c: test for critical on mcs51
1851
1852 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1853
1854         * support/regression/ports/ucz80/spec.mk: use include and lib files from
1855           built version of sdcc instead of installed version
1856
1857 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
1858
1859         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
1860         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
1861           vprintf.c now
1862         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
1863         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
1864           WARNING: remove device/lib/build/z80/printf.o by hand when
1865           updating from previous build!
1866         * device/lib/z80/printf.c: updated comment
1867         * support/regression/tests/bug1057979.c: test all ports now
1868         * support/regression/tests/bug1065458.c: file added
1869
1870 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1871
1872         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
1873           *_start and *_end symbols for static functions
1874
1875 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
1876
1877         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
1878           and search crt0.o in all library paths,
1879           (setIncludePath): proper handling of --nostdinc,
1880           (setLibPath): proper handling of --nostdlib
1881         * support/regression/Makefile,
1882         * support/regression/ports/ds390/spec.mk,
1883         * support/regression/ports/gbz80/spec.mk,
1884         * support/regression/ports/hc08/spec.mk,
1885         * support/regression/ports/mcs51/spec.mk,
1886         * support/regression/ports/mcs51-large/spec.mk,
1887         * support/regression/ports/mcs51-stack-auto/spec.mk,
1888         * support/regression/ports/z80/spec.mk: use include and lib files from
1889           built version of sdcc instead of installed version
1890         * doc/sdccman.lyx: fixed typo in --nostdinc
1891
1892 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
1893
1894         * src/pic/pcode.c,
1895         * src/pic/device.c,
1896         * src/pic/ralloc.c,
1897         * src/pic/gen.c : added support to generate code for struct bit fields.
1898
1899 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
1900
1901         * as/xa51/xa_version.h,
1902         * device/include/errno.h,
1903         * device/include/regc515c.h,
1904         * device/lib/_itoa.c,
1905         * device/lib/_ltoa.c,
1906         * device/lib/ser_ir_cts_rts.c,
1907         * sim/ucsim/xa.src/glob.cc,
1908         * sim/ucsim/xa.src/inst_gen.cc,
1909         * sim/ucsim/xa.src/xa_bit.cc,
1910         * sim/ucsim/xa.src/xa_sfr.cc,
1911         * sim/ucsim/z80.src/inst_dd.cc,
1912         * sim/ucsim/z80.src/inst_fdcb.cc,
1913         * support/scripts/keil2sdcc.pl,
1914         * src/pic16/pic16.dsp,
1915         * src/pic16/pic16a.dsp: corrected cvs line endings
1916         * device/lib/printf_large.c: fixed bug 1057979
1917         * src/pic16/gen.c: fixed non-C standard code
1918         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
1919         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
1920         * support/regression/ports/mcs51/support.c: reload T1 asap
1921         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
1922           pdata use and clear idata startup behaviour
1923         * support/regression/tests/bug1057979.c: added
1924
1925 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
1926
1927         * device/examples/ds390/ow390/ad26.h,
1928         * device/examples/ds390/ow390/cnt1d.h,
1929         * device/examples/ds390/ow390/crcutil.c,
1930         * device/examples/ds390/ow390/ownet.h,
1931         * device/examples/ds390/ow390/owsesu.c,
1932         * device/examples/ds390/ow390/swt12.h,
1933         * device/examples/ds390/ow390/swtoper.c,
1934         * device/examples/ds390/ow390/temp10.h,
1935         * device/examples/ds390/ow390/thermodl.c,
1936         * device/examples/ds390/tinitalk/tinitalk.dsp,
1937         * device/examples/ds390/tinitalk/tinitalk.dsw,
1938         * device/examples/mcs51/clock/hw.h,
1939         * device/examples/mcs51/simple2/go.bat,
1940         * device/examples/serialcomm/windows/serial.h,
1941         * device/examples/xa51/dummy.c,
1942         * device/examples/xa51/hello.c,
1943         * device/include/80c51xa.h,
1944         * device/include/at89x051.h: corrected cvs line endings
1945
1946 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
1947
1948         * src/pic16/main.c (options): added command line --gstack, to trace
1949         stack over/under flows,
1950         * added pragma 'wparam' to allow passing first byte of function
1951         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
1952         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
1953         call to __gstack_test function and sets up the symbol as extern,
1954         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
1955         * popaop): added call to pic16_testStackOverflow,
1956         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
1957         wparamList list,
1958         * (genCall, genPcall): now all parameters are passed via stack
1959         except in functions that are pass to wparam pragma in which WREG is
1960         used too,
1961         * (genPcall): REENTRANT flag is checked to see if variable prototype
1962         contains reentrant keyword, don't call a non-reentrant function, via
1963         a reentrant function pointer or vice versa, functions are never
1964         passed via WREG,
1965         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
1966         D.Winkler,
1967         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
1968         SIGSEGV when accessing a NULL register stucture,
1969         * (pic16_printGPointerType): modified to handle UPPER modifier for
1970         function initializers, changed prototype of function to simpler one,
1971         * (pic16_printIvalFuncPtr): check to see if function is already
1972         added in externs list,
1973         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
1974         optimized a move from W to SFR with a move to the same register
1975         later after a CALL,
1976         * device/lib/pic16/debug: NEW directory, contains debug features
1977         which are enabled when linking with libdebug.lib, currently command
1978         line option --gstack enables stack pointer tracing for over/under
1979         flow, corresponding sources are in debug/gstack
1980
1981 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
1982
1983         * doc/sdccman.lyx: updated SDCC version,
1984         * (PIC16 port): update list of command line options,
1985         * src/pic16/device.h (structure pic16_options_t): added field gstack
1986         to enable stack overflow tracing on push/pops,
1987         * src/pic16/device.c (statistics structure): added statistics
1988         structure,
1989         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
1990         pic16_dump_int_registers): increase statistics counters for each
1991         * variable which is encountered
1992         * (pic16_dump_usection): emit each .udata variable to its own udata
1993         section,
1994         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
1995         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
1996         parameters via stack, otherwise use old scheme,
1997         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
1998         assembler output file,
1999         * src/pic16/main.c: added command line options --gstack to enable
2000         push/pop tracing for stack overflow,
2001         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
2002         instructions): added size of each instruction,
2003         * (pic16_countInstruction): estimate size of instructions in
2004         the_pFile list, inline assembly blocks are not counted,
2005         * (pic16_FixRegisterBanking): trace previous register usage, when
2006         banksel optimizations is greater than 0, don't emit a redudant
2007         banksel directive,
2008
2009 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
2010
2011         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
2012         * src/pic16/ralloc.c : applied same fix for pic16.
2013         * src/pic/gen.c : tidied it up a little.
2014
2015 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2016
2017         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
2018         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
2019
2020 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2021
2022         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
2023
2024 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2025
2026         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
2027         non-reentrant function __modsint in the interrupt function (thus
2028         corrupting math operations during serial I/O)
2029         * device/lib/ser_ir.c: as above, changed buffersize
2030         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
2031         256.c,d for zeroing
2032         * doc/Makefile: added option -t for rsync
2033
2034 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2035
2036         * src/SDCCast.h (struct ast),
2037         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
2038
2039 2004-10-20 Borut Razem <borut.razem AT siol.net>
2040
2041         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
2042         package
2043
2044 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
2045
2046         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
2047         makefile targets,
2048         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
2049         support functions to replace long sequences of MOVFF's from access
2050         bank registers to stack and vice versa,
2051         * src/pic16/device.h: added new field opt_flags, where optimization
2052         flags can be set to enable certain features,
2053         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
2054         * pBlock, (genFunction, genEndFunction): surroung loop for
2055         saving/loading used registers in stack with PC_INFO pCodes,
2056         INF_LREGS. Code in between can then be optimized by pCode optimizer
2057         to support function calls,
2058         * (genDataPointerSet): fixed bug which loaded float fields in
2059         structures with corrupt data,
2060         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
2061         in a standard way debug info on stderr. Feature used for developing
2062         and debugging only,
2063         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
2064         obsolete chunks of code,
2065         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
2066         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
2067         * pic16/src/pcode.c (pic16_newpCodeInfo,
2068         * (pic16_newpCodeOpLocalRegs),
2069         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
2070         feature,
2071         * (pic16_pCodeConstString): printing of the initial value of a
2072         symbol as a comment is inhibited since parsing was already done by
2073         copyStr and output is corrupt,
2074         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
2075
2076 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2077
2078         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
2079
2080 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
2081
2082         * as/mcs51/lkarea.c: removed old K&R style,
2083           (lnksect): changed check on boundary error,
2084           (lnksect2): changed check on boundary error,
2085           (lnksect2): extend XSTK to end of page if size = 1
2086         * as/mcs51/lkmain.c: removed old K&R style,
2087           (Areas51): create l_IRAM symbol
2088         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
2089         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
2090           model-mcs51-stack-auto, added model-mcs51-xstack-auto
2091         * device/lib/_mullong.c: added version to be compiled with xstack
2092         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
2093         * device/lib/mcs51/crtxclear.asm: clear pdata as well
2094         * device/lib/mcs51/crtxstack.asm: fixed comment
2095         * src/SDCCglue.c: maxInterrupts defaults to 0,
2096           (emitMaps): added pdata,
2097           (createInterruptVect): (re)moved default,
2098           (glue): added pdata,
2099           (glue): moved __start__xstack to XSTK with default size 1
2100         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
2101           and options.float_rent when options.stackAuto is set,
2102           (linkEdit): only write XDATA_NAME if provided on command line
2103         * src/SDCCmem.h,
2104         * src/SDCCmem.c: added pdata
2105         * src/port.h: added pdata_name to PORT
2106         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
2107           (saveRegisters, unsaveRegisters): removed usage of B,
2108           (genMinus): fixed accumulator clash,
2109           (genJumpTab): added comment, this needs another look
2110         * src/mcs51/gen.c: added check for "B in use" paranoia,
2111           added pushB() and popB()
2112         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
2113           chance
2114         * src/avr/main.c,
2115         * src/ds390/main.c,
2116         * src/hc08/main.c,
2117         * src/mcs51/main.c,
2118         * src/pic/main.c,
2119         * src/pic16/main.c,
2120         * src/xa51/main.c,
2121         * src/z80/main.c: (reset_regparms) made void parameter explicit and
2122           added PSEG (PAG,XDATA) or NULL to port specifier
2123         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
2124         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
2125           (_mcs51_genInitStartup): removed __start__xstack equ,
2126           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
2127         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
2128         * src/z80/gen.c (_rleAppend): fixed warnings
2129         * support/regression/tests/zeropad.c: added pdata test
2130         * .version: bumped to 2.4.6
2131
2132 2004-10-17 Borut Razem <borut.razem AT siol.net>
2133
2134         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
2135         as a part of nightly build
2136
2137 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
2138
2139         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
2140         WREG holds the first byte function parameters,
2141         * (aopForSym): take special case for symbols which are in FARSPACE
2142         but in CODESPACE too,
2143         * (assignResultValue): modified to take into account _G.useWreg,
2144         * (genCall): don't use wreg for parameter passing when function is
2145         declared as reentrant, too, added optimization INCF to stack
2146         pointer when stack parameter count is 1,
2147         * (genFunction, genEndFunction): refurnished and fixed to not using
2148         wreg for passing parameters when function has varargs or is
2149         reentrant, fixed bug with symbol name compare for generating
2150         functions in absolute address,
2151         * (pic16_storeForReturn): refurnished,
2152         * (genCmp): began writing a new version of the function, not ready
2153         yet, therefore it is disabled,
2154         * (genAssign): do not read code memory when assigning a function to
2155         a pointer function,
2156         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
2157         array of characters, not pointer,
2158         * (pic16initialComments): in debug mode emit an .ident directive for
2159         the assembler,
2160         * (_process_pragma): emit a new warning type (internal to pic16)
2161         when setting stack to default length, emit a similar warning when
2162         placing a function at absolute address and address is not word aligned
2163         * (_pic16_parseOptions): added 'return TRUE' statement,
2164         * (_pic16_linkEdit): if compiling a source, then add the source's
2165         file object, first in the list of objects to link,
2166
2167 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
2168
2169         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
2170         * src/pic/main.c : removed VC warning.
2171         * src/pic/gen.c : changed comment.
2172
2173 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
2174
2175         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
2176         reference to a deprecated symbol _GPTRREG was causing failure to
2177         link. Thanks G. M. Gallant for the info.
2178
2179 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
2180
2181         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
2182         comments for Bugs item #954788.
2183
2184 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
2185
2186         * src/pic16/device.c (pic16_dump_gsection,
2187         * pic16_groupRegistersInSection): handle symbols declared to be in
2188         access bank differently,
2189         * src/pic16/gen.c (struct _G): added field resDirect,
2190         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
2191         send values read from stack directly to result and don't allocate
2192         temporary values,
2193         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
2194         same registers,
2195         * (pic16_sameRegsOfs): NEW,
2196         * (freeAsmop): if _G.resDirect is set then do not mark registers as
2197         free because they were not allocated from temporary pool,
2198         * pic16_popRegFromString): workaround to fix a problem with
2199         allocating variables twice or never,
2200         * (genGenPointerGet): using PRODL instead of FSR0H,
2201         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
2202         instead of FSR0H,
2203         * (genAssign): take advantage of the _G.resDirect flag,
2204         * (genCast): around line 11844, use mov2f instead of directly
2205         MOVFF'ing between operands to account for literal values,
2206         * src/pic16/genutils.c: some new debug functions for gpsim have been
2207         added,
2208         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
2209         float with integer part only,
2210         * src/pic16/main.c (_process_pragma): handle pragma udata access to
2211         place variables in access bank
2212         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
2213         updated sources to reflect recent changes in gen.c
2214
2215 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
2216
2217         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
2218         sources that searched for headers in installation path, now the
2219         device/include/pic16 is used,
2220         * src/pic16/glue.c (pic16glue),
2221         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
2222         .line directives if not in debug mode, this suppresses assembler's
2223         warnings for ignored directives
2224
2225 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
2226
2227         * src/port.h: made reset_regparms prototype void parameter explicit.
2228         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
2229         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
2230         * doc/sdccman.lyx: documented warning disabling and how to use
2231           printf_large to make it print floats.
2232         * device/include/stdbool.h: NEW
2233         * device/lib/_atof.c,
2234         * device/lib/_divuint.c,
2235         * device/lib/_divulong.c,
2236         * device/lib/expf.c,
2237         * device/lib/printf_large.c,
2238         * device/lib/sincosf.c,
2239         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
2240         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
2241           a completely reentrant lib.
2242
2243 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
2244
2245         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
2246         * device/include/pic16/stdio.h: fixed bug with colon
2247
2248 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
2249
2250         * device/include/pic16/stdio.h,
2251         * device/include/pic16/stdlib.h,
2252         * device/include/pic16/math.h: NEW
2253         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
2254         declared as _naked to reduce overhead
2255         * device/lib/Makefile.in (target port-specific-objects-pic16):
2256         changed * to *.* so to ignore the CVS directory,
2257         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
2258         stacked variables back in stack,
2259         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
2260         corruption
2261
2262 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
2263
2264         * .version: bumped version number to 2.4.5
2265         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
2266         * support/Util/SDCCerr.c (messages structure): added entry for
2267         W_POSSBUG2
2268
2269         Large cumulative patch for pic16 port and libraries.
2270         * device/include/pic16/sdcc-lib.h,
2271         * device/include/pic16/stdarg.h,
2272         * device/include/asm/pic16/features.h,
2273         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
2274         * device/include/pic16/float.h: changes reentrant keyword with
2275         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
2276         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
2277         updated target build-libraries to include objects from gptr,
2278         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
2279         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
2280         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
2281         all function headings,
2282         * src/SDCCmain.c: added global parameter userIncDirsSet,
2283         * (parseCmdLine): when option -I is encountered add directory to
2284         userIncDirsSet too,
2285         * src/version.awk: added space between control and long,
2286         * src/pic16/NOTES: added some notes for the port,
2287         * src/pic16/gen.c: added prototype for mov2fp function,
2288         * (fReturnpic16[]): properly named return value registers,
2289         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
2290         * (aopForSym): added code to handle symbols with onStack flag set,
2291         symbols onStack are allocated PTRSIZE bytes,
2292         * (aopFreeAsmop): handles special case where asmops are stack objects,
2293         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
2294         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
2295         added argument lock to trace flaws in allocating temporary registers
2296         when developing port,
2297         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
2298         * (pic16_popRegFromString): reenabled allocating a direct register
2299         from string,
2300         * (assignResultValue): various beautifications,
2301         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
2302         referenced function argument,
2303         * (genIpush): reenabled to allow stacked arguments, handles only
2304         ic->parmPush iCodes,
2305         * (genCall, genPcall): major changes to allow for variable argument
2306         functions, fixed a bug with falsely restoring stack pointer after
2307         returning from call,
2308         * (genFunction): pending code for critical function,
2309         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
2310         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
2311         * (genNearPointerGet): fixed bug with indirect reading, was always
2312         reading from INDF0
2313         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
2314         pointers,
2315         * (genAddrOf): rewrote code to take address of a stacked function parameter
2316         * (genCast): fixed casting to generic pointer type,
2317         * src/pic16/gen.h: added AOP_STA,
2318         * (struct asmop): added field stk,
2319         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
2320         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
2321         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
2322         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
2323         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
2324         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
2325         generic pointers,
2326         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
2327         and library paths,
2328         * (pic16_port structure): generic pointer size is set to 3,
2329         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
2330         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
2331         compiler warning,
2332         * src/pic16/ralloc.c (allocReg): prevent allocating register when
2333         operand is an iTemp,
2334
2335 2004-09-24 Martin Helmling <mh AT octo-soft.de>
2336
2337         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
2338         * debugger/mcs51/simi.c: addapt new syntax of s51
2339
2340 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
2341
2342         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
2343         * src/pic16/pcode.c: commented out some calls to free() in order to
2344         fix bug #989576,
2345
2346 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2347
2348         * src/SDCCicode.h,
2349         * src/SDCCicode.c (isiCodeInFunctionCall),
2350         * src/avr/ralloc.c (selectSpil),
2351         * src/pic/ralloc.c (selectSpil),
2352         * src/pic16/ralloc.c (selectSpil),
2353         * src/ds390/ralloc.c (selectSpil),
2354         * src/hc08/ralloc.c (selectSpil),
2355         * src/xa51/ralloc.c (selectSpil),
2356         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
2357         stack in the middle of a function call sequence (fixes bug #1020268)
2358         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
2359         costs associated with the minimum switch case.
2360
2361 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2362
2363         * src/SDCC.lex: fixed bug #1030549
2364
2365 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2366
2367         * src/SDCCcse.h (struct cseDef),
2368         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
2369         over a function call if the CSE is derived from a symbol whose
2370         address has been taken (fixes bug #1029883)
2371         * support/regression/tests/bug-1029883: a new regression test for
2372         this bug
2373
2374 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2375
2376         * src/hc08/gen.c (emitinline): fixed bug #1029778
2377         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
2378         to a cast object is no longer a syntax error ("fixes" bug #1030006,
2379         and starts toward RFE #905167)
2380
2381 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
2382
2383         * src/pic16/gen.c (mov2f): New function to move an operand to
2384         another without considering if it is a literal or a register,
2385         * (pic16_sameRegs): don't check if they are both AOP_REG,
2386         * (AccRsh): removed andmask=0 lines,
2387         * (genLeftShift): duplicated to be improved in future versions,
2388         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
2389         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
2390         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
2391         * (pic16initMnemonics): added initialization for POC_INFSNZW,
2392         * (insertBankSwitch): fixed inserting banksel directives algorithm
2393         for instructions that follow a skip instruction, this fixes a report
2394         for broken subtraction code generation,
2395         * src/pic16/ralloc.c (deassignLRs): do not free register if current
2396         iCode is a left op, just in case result and right share the same
2397         registers
2398
2399 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2400
2401         * src/hc08/main.c,
2402         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
2403         preservation of HX
2404         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
2405         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
2406         on 2004-09-12; it was buggy
2407
2408 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
2409
2410         * src/SDCCsymt.h: removed RESULT_CHECK
2411         * src/SDCCast.c,
2412         * src/SDCCglue.c,
2413         * src/SDCCval.c,
2414         * src/pic/glue.c,
2415         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
2416
2417 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
2418
2419         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
2420         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
2421         configuration values no more rejected by compiler, they are assigned
2422         to configuration registers with a warning message instead,
2423         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
2424         the for-loop so last conf register is emitted too,
2425         * (_pic16_initPaths): link library libsdcc.lib by default,
2426         * (_hasNativeMulFor): modified test for multiplication according to
2427         Raphael Neider's remarks. Integer multiplication is also done with
2428         support functions,
2429         * device/include/pic16/pic18fregs.h: corrected type error in while
2430         testing and including 18f6720 header file
2431
2432 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
2433
2434         * src/pic16/device.h (pic16_options): removed field use_crt,
2435         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
2436         until an optimization to handle single bits is added,
2437         * (pic16_loadFSR0): moved before genUnpackBits,
2438         * (genAnd): some white lines removed,
2439         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
2440         leave_reset flags in pic16_options when using crt modules,
2441
2442 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
2443
2444         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
2445           for bugs 898889 & 979599. Also used some safer print instructions.
2446
2447 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
2448
2449         * src/pic16/device.h (pic16_options_t): added field use_crt,
2450         crt_name, no_crt,
2451         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
2452         catch a probable future bug,
2453         * src/pic16/gen.c: aopIdx function commented out,
2454         * (genAssign): commented out old code which used aopIdx,
2455         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
2456         code, added if conditionals to take into account the --use-crt
2457         command line options,
2458         * src/pic16/main.c (pic16_optionsTable): added new command line
2459         options, --use-crt= and --no-crt,
2460         * (_pic16_linkEdit): now the proper crt object is added in the
2461         linker command line except than when --no-crt is specified,
2462         * src/pic16/pcode.c,
2463         * src/pic16/pcode.h: added some structures and functions for a new
2464         optimization scheme to compansate for instruction overhead between
2465         same iCodes, this scheme is currently under development and is not
2466         working in any way,
2467         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
2468         to && operator,
2469         * device/lib/pic16/startup/crt0i.c,
2470         * device/lib/pic16/startup/crt0iz.c: added global char variable
2471         __uflags to force the generation of an idata section
2472
2473 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
2474
2475         * doc/Makefile,
2476         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
2477         * doc/sdccman.lyx: updated sdcc version to 2.4.4
2478
2479 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2480
2481         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
2482         Frieder) and clarified the default code optimization mode
2483
2484 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2485
2486         * src/SDCC.lex (doPragma, process_pragma),
2487         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
2488         "opt_code_size", and "opt_code_balanced"
2489         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
2490         regrouped options by category, added support for category headers
2491         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
2492         and "--opt-code-size"
2493         * doc/sdccman.lyx: documented these new options and pragmas
2494         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
2495         preference into account
2496
2497 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2498
2499         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
2500           geniCodePreDec): Fixed bug 904237 by generating a warning
2501         * src/SDCCerr.h,
2502         * src/SDCCerr.c: added warning W_SIZEOF_VOID
2503
2504 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
2505
2506         * src/pic/device.c : When no max ram set validate full memory range.
2507         * src/pic/pcode.c,
2508         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
2509
2510 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2511
2512         * device/lib/_gptrget.c,
2513         * device/lib/_gptrput.c: updated comment
2514         * device/lib/calloc.c,
2515         * device/lib/free.c,
2516         * device/lib/malloc.c,
2517         * device/lib/realloc.c: added LGPL, made them reentrant-safe
2518         * src/SDCCcse.c (cseBBlock),
2519         * src/SDCCicode.c (printOperand, geniCodeArray),
2520         * src/SDCCicode.h (struct operand): fixed bug 868103
2521         * support/regression/tests/bug-868103.c: added
2522         * src/SDCCast.c (searchLitOp),
2523         * src/SDCCcse.h (struct cseDef),
2524         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
2525         * src/SDCCicode.h (struct operand),
2526         * src/SDCCsymt.h (struct sym_link),
2527         * src/avr/gen.c (hasInc),
2528         * src/ds390/gen.c (hasInc),
2529         * src/hc08/gen.c (genPlusIncr, hasInc),
2530         * src/mcs51/gen.c (hasInc),
2531         * src/pic16/glue.c (pic16_printIvalChar),
2532         * src/pic16/ralloc.c (regWithIdx),
2533         * src/xa51/gen.c (hasInc) : removed warnings
2534         * src/SDCCast.c (createBlock): added comment ???
2535         * src/hc08/ralloc.c: updated comments
2536
2537 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2538
2539         * doc/sdccman.lyx: updated section on switch statements, added
2540         section about semaphore locking
2541         * doc/Makefile: added option -info for latex2html
2542         * device/lib/_gptrget.c,
2543         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
2544
2545 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
2546
2547         * src/pic/device.h,
2548         * src/pic/device.c,
2549         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
2550          maxram is less than 0x100.
2551
2552 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
2553
2554         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
2555
2556 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2557
2558         * src/port.h,
2559         * src/mcs51/main.c,
2560         * src/ds390/main.c,
2561         * src/z80/main.c,
2562         * src/hc08/main.c,
2563         * src/pic/main.c,
2564         * src/pic16/main.c,
2565         * src/avr/main.c,
2566         * src/xa51/main.c
2567         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
2568         a jump table is the best form for a switch statement, including
2569         automatic insertion of missing cases to make the case range
2570         continuous. Developed in collaboration with Frieder Ferlemann.
2571
2572 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2573
2574         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
2575         accumulator result if it needs sign extension
2576
2577 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2578
2579         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
2580
2581 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2582
2583         * device/lib/gbz80/printf.c,
2584         * device/lib/z80/printf.c: removed define for NULL
2585
2586 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2587
2588         * as/xa51/xa_link.c,
2589         * device/examples/ds390/ow390/ad26.c,
2590         * device/examples/ds390/ow390/cnt1d.c,
2591         * device/examples/ds390/ow390/counter.c,
2592         * device/examples/ds390/ow390/ds2480.h,
2593         * device/examples/ds390/ow390/ds2480ut.c,
2594         * device/examples/ds390/ow390/findtype.c,
2595         * device/examples/ds390/ow390/gethumd.c,
2596         * device/examples/ds390/ow390/owllu.c,
2597         * device/examples/ds390/ow390/ownetu.c,
2598         * device/examples/ds390/ow390/swt12.c,
2599         * device/examples/ds390/ow390/swtloop.c,
2600         * device/examples/ds390/ow390/temp.c,
2601         * device/examples/ds390/ow390/temp10.c,
2602         * device/examples/ds390/ow390/thermo21.c,
2603         * device/examples/ds390/ow390/tinilnk.c,
2604         * device/examples/ds390/ow390/tstfind.c,
2605         * device/examples/serialcomm/windows/serial.cpp,
2606         * device/examples/serialcomm/windows/test_serialcomm.cpp,
2607         * device/include/reg51.h: fixed line endings for cvs
2608
2609 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2610
2611         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
2612         packRegsForAccUse, packRegisters): new accumulator register
2613         packing algorithm
2614         * support/regression/ports/hc08/support.c (_putchar): suppress
2615         warning of unused variable
2616         * src/SDCCicode.c: added SWAP entry to codeTable
2617
2618 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
2619
2620         * device/lib/sprintf.c: forgot to add this file before previous commit
2621
2622 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
2623
2624         * src/pic16/gen.c (genPackBits): added operand right in function
2625         parameters, load result directly if p_type is POINTER (that is
2626         called by genNearPointerSet)
2627         * (genUnPackBits): added operand left in function parameters,
2628         * (genNearPointerGet, genNearPointerSet): prevent the loading of
2629         FSR0 if accessing bitfields,
2630
2631 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
2632
2633         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
2634           _print_format; updated printf, sprintf, vsprintf
2635         * device/include/asm/default/features.h: corrected comment/define
2636         * device/lib/Makefile.in: added sprintf.c
2637         * device/lib/libsdcc.lib: added sprintf module
2638         * device/lib/printf_large.c,
2639         * device/lib/vprintf.c,
2640         * device/lib/sprintf.c: totally refactored printf_large and vprintf
2641           into these 3 files
2642         * support/regression/Makefile: changed ALL_PORTS into a usefull default
2643         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
2644         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
2645           hc08 test
2646         * support/regression/tests/zeropad.c: define idata as data for hc08
2647
2648 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2649
2650         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
2651         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
2652         labels are referenced at least once (even if a reference is not found)
2653         * src/hc08/gen.c (emitcode): set isComment flag for comments
2654         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
2655         loads), rules 6a..6b (optimize jumps to return)
2656
2657 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2658
2659         * device/lib/acosf.c (acosf),
2660         * device/lib/asinf.c (asinf),
2661         * device/lib/atanf.c (atanf),
2662         * device/lib/ceilf.c (ceilf),
2663         * device/lib/cosf.c (cosf),
2664         * device/lib/coshf.c (coshf),
2665         * device/lib/cotf.c (cotf),
2666         * device/lib/fabsf.c (fabsf),
2667         * device/lib/floorf.c (floorf),
2668         * device/lib/log10f.c (log10f),
2669         * device/lib/logf.c (logf),
2670         * device/lib/sinf.c (sinf),
2671         * device/lib/sinhf.c (sinhf),
2672         * device/lib/sqrtf.c (sqrtf),
2673         * device/lib/tanf.c (tanf),
2674         * device/lib/tanhf.c (tanhf),
2675         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
2676         replaced all instances of "reentrant" in the library functions
2677         defined in math.h with this macro.
2678         * support/regression/tests/float_trans.c: reenabled test for hc08
2679
2680 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
2681
2682         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
2683         erroneously deleted
2684
2685 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2686
2687         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
2688         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
2689         multi-byte volatile operands are used
2690         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
2691         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
2692         initialization to area GSINIT0 so that it would always precede
2693         any static initializers in GSINIT
2694         * support/regression/tests/zeropad.c: fixed idata define for hc08
2695         * support/regression/tests/bug-927659.c,
2696         * support/regression/tests/float_trans.c: disabled tests for hc08
2697         pending missing library routines
2698         * .version: increased version number to 2.4.4 - hc08 port now passes
2699         regression tests
2700
2701
2702 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
2703
2704         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
2705         * Makefile.common.in,
2706         * as/Makefile,
2707         * as/hc08/Makefile.in,
2708         * as/mcs51/Makefile.in,
2709         * as/z80/Makefile.in,
2710         * debugger/mcs51/Makefile.in,
2711         * device/include/Makefile.in,
2712         * device/lib/Makefile.in,
2713         * doc/Makefile,
2714         * link/Makefile,
2715         * link/z80/Makefile.in,
2716         * packihx/Makefile.in,
2717         * sim/ucsim/main_in.mk,
2718         * sim/ucsim/avr.src/Makefile.in,
2719         * sim/ucsim/doc/Makefile.in,
2720         * sim/ucsim/gui.src/serio.src/Makefile.in,
2721         * sim/ucsim/hc08.src/Makefile.in,
2722         * sim/ucsim/s51.src/Makefile.in,
2723         * sim/ucsim/xa.src/Makefile.in,
2724         * sim/ucsim/z80.src/Makefile.in,
2725         * src/Makefile.in,
2726         * support/cpp2/Makefile.in,
2727         * support/librarian/Makefile,
2728         * support/makebin/Makefile: added DESTDIR to the install path proposed
2729         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
2730         * doc/sdccman.lyx: added DESTDIR documentation
2731
2732 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
2733
2734         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
2735         instruction for interrupt handlers, use fast returns when returning
2736         from high priority interrupts
2737
2738 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2739
2740         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
2741         code generation
2742         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
2743         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
2744         bugs, ported much of Bernhard's code from mcs51
2745         * src/mcs51/gen.c (genSend),
2746         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
2747         than one when calling a reentrant function
2748         * device/lib/_mullong.c: defined an alternate struct layout for big
2749         endian ports (hc08)
2750
2751 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2752
2753         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
2754         test
2755
2756 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2757
2758         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
2759         are sane and complete before asking the port its prefered parameter
2760         passing method (fixes bug #1017633)
2761         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
2762         and _ret3
2763
2764 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2765
2766         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
2767         problem in bitfields >= 8 bits.
2768
2769 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
2770
2771         * src/SDCCsymt.c: undid changes that were not meant to be committed
2772
2773 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
2774
2775         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
2776
2777 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
2778
2779         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
2780           copied and wrong bit got inverted
2781
2782 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2783
2784         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
2785         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
2786         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
2787         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
2788         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
2789         assignments to bitfields at known addresses
2790         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
2791         reads from bitfields at known addresses
2792         * src/hc08/ralloc.c (packRegisters),
2793         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
2794         genhc08Code): optimize pointer get values used as conditionals
2795         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
2796         and branch
2797
2798 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2799
2800         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
2801         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
2802         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
2803         as conditionals
2804
2805 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2806
2807         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
2808
2809 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2810
2811         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
2812         related problems
2813
2814 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
2815
2816         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
2817
2818 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2819
2820         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
2821         mcs51 port
2822
2823 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
2824
2825         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
2826
2827 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2828
2829         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
2830         cases use more compact code.
2831
2832 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
2833
2834         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
2835
2836 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2837
2838         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
2839
2840 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2841
2842         * src/SDCCsymt.h,
2843         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
2844         parameter of changePointer() from symbol* to sym_link*
2845         * src/SDCCast.c (decorateType): call changePointer() for CAST op
2846         * src/SDCCsymt.c (compareType): void* type is castable to other
2847         pointers, but not necesarily an exact match.
2848         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
2849         is no longer blindly treated as an exact match.
2850         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
2851
2852 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
2853
2854         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
2855
2856 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
2857
2858         * src/pic/gen.c,
2859         * src/pic/pcode.c,
2860         * src/pic/ralloc.h,
2861         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
2862
2863 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
2864
2865         * src/pic/device.c,
2866         * src/pic/device.h,
2867         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
2868
2869 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2870
2871         * src/mcs51/gen.c (emitcode): fixed bug #992819
2872
2873 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
2874
2875         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
2876           there's no need to make it worse
2877
2878 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2879
2880         * src/mcs51/ralloc.c (deassignLR),
2881         * src/ds390/ralloc.c (deassignLR),
2882         * src/hc08/ralloc.c (deassignLR),
2883         * src/z80/ralloc.c (deassignLR),
2884         * src/pic/ralloc.c (deassignLR),
2885         * src/pic16/ralloc.c (deassignLR),
2886         * src/avr/ralloc.c (deassignLR),
2887         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
2888         rlivePoint): fixed another part of bug #971834
2889
2890 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2891
2892         * src/z80/main.c: enabled "critical" keyword
2893         * src/z80/mappings.i,
2894         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
2895         functions (fixes bug #979646)
2896         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
2897
2898 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2899
2900         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
2901           such as c:\mydir.
2902
2903 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
2904
2905         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
2906           doesn't disable too much optimizations
2907
2908 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
2909
2910         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
2911
2912 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
2913
2914         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
2915
2916 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
2917
2918         * src/pic/gen.c tidied up tabs
2919         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
2920         * src/pic/main.c tidied up tabs
2921         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
2922         * src/pic/pcoderegs.c tidied up tabs
2923         * src/pic/ralloc.c tidied up tabs
2924
2925 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
2926
2927         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
2928         to S_FIXED for pic16 port and when symbol is not in level 0,
2929         allocate for S_REGISTER storage class and pic16 port, too,
2930         * src/pic16/device.h: prototype for checkSym,
2931         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
2932         * (pic16_assignConfigWordValue): test the value and the mask to
2933         validate that the value is suitable for the configuration word,
2934         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
2935         collect extern declared symbols, don't emit symbol twice, check
2936         first if symbol is in publics set first,
2937         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
2938         * added command line '--fstack' which enables an experimental
2939         feature for stack access, too buggy to be used yet...
2940         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
2941         * (pic16_allocDirReg): when register has storage class S_REGISTER
2942         allocate in pic16_dynAccessRegs,
2943         * device/include/pic16/pic18f????.h: modified configuration word
2944         naming convention, words started as CONFIG0H but should be CONFIG1H
2945
2946 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
2947
2948         * device/include/mcs51reg.h: fixed bug 970993
2949
2950 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
2951
2952         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
2953         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
2954         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
2955         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
2956         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
2957         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
2958           error/warning numbers,
2959           added function setWarningDisabled()
2960         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
2961         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
2962           _memcmp.c _memmove.c calloc.c realloc.c free.c
2963         * support/regression/tests/malloc.c: added tests for new functionality
2964         * support/regression/tests/zeropad.c: added tests for truncated initializers
2965           and initialized char arrays starting with '\x0'
2966         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
2967
2968 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
2969
2970         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
2971
2972 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2973
2974         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
2975         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
2976         peephole 177.e. Thanks to anonymous
2977
2978 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
2979
2980         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
2981         function isn't used in the source but referenced as a
2982         variable initializer then declare it as extern in .asm file
2983
2984 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
2985
2986         * .version: increased version number to 2.4.3
2987
2988         Adding version extension according to ChangeLog CVS revision
2989         * src/Makefile.in (target all): added dependency 'version.h'
2990         * (rule version.h): added rule to create version.h from ChangeLog,
2991         * (rule dep): added dependency version.h,
2992         * src/version.awk: AWK script to create version.h
2993         * src/SDCCdwarf2.c (dwWriteModule),
2994         * src/SDCCglue.c (initialComments),
2995         * src/SDCCmain.c (printVersionInfo): modified to write after
2996         version string the version extension number,
2997         * src/SDCCutil.c: included "version.h"
2998         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
2999         number,
3000         * src/SDCCutil.h: added prototype for getBuildNumber
3001
3002         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
3003         includeDirsSet, too,
3004         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
3005         const char [] is found in function prototype...
3006
3007         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
3008         moving to WREG with source is already in WREG,
3009         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
3010         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
3011         * (aopForSym): stack'ed symbols are partially supported, added
3012         if-clause to support symbols in FARSPACE,
3013         * (sameRegs): added test for AOP_ACC to see if registers are same,
3014         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
3015         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
3016         * (pic16_popRegFromString): will not allocate a new register if it
3017         doesn't find one by name, bug may have introduced...
3018         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
3019         * (genIpush): revived to use pic16 port's stack,
3020         * (genAddrOf): added incomplete case for stack'ed operand,
3021         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
3022         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
3023         can handle multibyte operands,
3024         * src/pic16/glue.c (pic16_printIval*): some debug info added,
3025         * (pic16initialComments): added message for MPLAB compatibility
3026         mode enabled,
3027         * src/pic16/main.h: prototype for pic16_mplab_comp,
3028         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
3029         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
3030         * (_pic16_linkEdit): NEW, handles link stage, transferred here
3031         because of increased complexity of procedure,
3032         * (_process_pragma): stack pragma changed to format 'stack pos len',
3033         emit symbol '_stack_end' to conform with gplink,
3034         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
3035         to search for register,
3036         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
3037         PO_GPR_REGISTER,
3038         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
3039         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
3040         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
3041         case for PO_GPR_REGISTER,
3042         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
3043         dies, the new era is ahead !...
3044         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
3045         pic16_dynInternalRegs,
3046         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
3047         * (pic16_allocDirReg): minor optimizations and bug fixes,
3048         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
3049
3050         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
3051         load stack and frame pointer with address of 'stack_end' symbol
3052
3053 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
3054
3055         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
3056         without source code but only variable initializers
3057
3058 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
3059
3060         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
3061         external are not declared as extern to reduce overhead while linking
3062
3063 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
3064
3065         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
3066
3067 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
3068
3069         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
3070           Yee Keat for the patch
3071         * src/SDCCast.c (decorateType): fixed bug #979599
3072         * src/ds390/gen.h: removed local fReturnSizeDS390
3073         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
3074         * src/ds390/gen.c (genAnd, genOr, genXor),
3075         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
3076
3077 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
3078
3079         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
3080         add relFilesSet to $3, manipulate $2 to handle linking of object
3081         files without source files in command line,
3082         * device/include/pic16 (all headers): added ID location macros,
3083         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
3084         entries for ID location bytes,
3085         * (pic16_assignIdByteValue): NEW,
3086         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
3087         added field dumpcalltree to pic16_options_t,
3088         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
3089         is used instead of pic16_Gstack_base_addr, check if (ifx) before
3090         emitting rFalseIfx label after check_carry label,
3091         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
3092         pic16_emitDIRegs), NEW
3093         * (pic16glue): dump .calltree file when option --calltree found,
3094         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
3095         * (_pic16_genAssemblerPreamble): emit ID locations after
3096         configuration registers,
3097         * (pic16_linkCmd): modifications of the link command,
3098         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
3099         * (pic16_pCodeInitRegisters): don't init stack registers,
3100         * (pic16_findPrevInstruction): fixed bug,
3101         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
3102         bug with immediate registers,
3103         * (buildCallTree): traces stack push and pop,
3104         * (pct2): dump also stack usage for each function,
3105         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
3106         * (pic16_allocDirReg): various modifications,
3107         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
3108         fixed to 1,
3109
3110 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
3111
3112         * src/pic16/pcode.c: removed buggy double colon
3113
3114 2004-07-01 Borut Razem <borut.razem AT siol.net>
3115
3116         * support/scripts/sdcc.nsi: added include/pic16 to setup
3117
3118 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
3119
3120         * device/lib/Makefile.in: fixed bug in target objects-pic16,
3121         * device/lib/pic16/Makefile: prefixed with dash (-) command under
3122         target 'clean',
3123         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
3124         specific command line arguments. Also added sample lkr script
3125         for placing a variable at a specific memory bank.
3126         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
3127         at a specific memory bank,
3128         * (pic16_dump_isection): fixed bug which caused string literals to
3129         be omitted when dumping idata section,
3130         * (pic16_groupRegistersInSection): added code to handle registers
3131         in specific memory banks,
3132         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
3133         public, all references are renamed too,
3134         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
3135         AOP_DPTR2,
3136         * (pic16_storeForReturn): added case to handle when dest is WREG,
3137         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
3138         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
3139         pic16_rel_udata, check to see if that register is marked as being
3140         a member of a specific memory bank,
3141         * (pic16_printIvalCharPtr): added code to add string literals either
3142         to code or the idata sections,
3143         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
3144         also accept the 'udata' pragma,
3145         * src/pic16/main.h: new structure types sectName and sectSym
3146         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
3147         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
3148         * (pic16_findPrevInstruction): fixed, it returned nothing,
3149         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
3150         instruction combinations,
3151         * (pic16_FixRegisterBanking): heavily reorganised,
3152         * (pic16_AnalyzeBanking): if generating banksel directives is
3153         disabled, then don't call FixRegisterBanking at all,
3154         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
3155         completely removed,
3156         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
3157
3158 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
3159
3160         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
3161         Phuah Yee Keat <yk.phuah AT nestac.com>
3162
3163 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3164
3165         * src/pic16/glue.c (pic16createInterruptVect): function now emits
3166         correctly the IVT even if it is relocated to some other location
3167
3168 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3169
3170         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
3171         * device/include/pic16/pic18f2220.h: NEW,
3172         * device/lib/pic16/libdev/pic18f2220.c: NEW,
3173         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
3174         * src/pic16/device.c (struct Pics16): added info for 18f2220,
3175         * src/pic16/device.h (struct pic16_options): added ivt_loc and
3176         nodefaultlibs, ivt_loc is the location of the interrupt vector
3177         table, and nodefaultlibs signs that default libraries should not be
3178         linked in link stage,
3179         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
3180         according to --ivt-loc argument,
3181         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
3182         when pragma stack is found,
3183
3184 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3185
3186         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
3187         256 (range check), 257 (do while), 258.a-f (bit banging
3188         f.e. on 3-wire SPI bus)
3189
3190 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3191
3192         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
3193         variables used exclusively within a loop
3194
3195 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
3196
3197         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
3198
3199 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3200
3201         * src/SDCClrange.c (computeClash): fixed bug #971834
3202
3203 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3204
3205         * src/mcs51/gen.c (genCmp): fixed bug #975903
3206         * src/hc08/gen.c (operandsEqu),
3207         * src/ds390/gen.c (operandsEqu),
3208         * src/z80/gen.c (operandsEqu),
3209         * src/pic/gen.c (operandsEqu),
3210         * src/pic16/gen.c (operandsEqu),
3211         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
3212         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
3213
3214 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3215
3216         * src/SDCCcse.c (cseBBlock): fixed bug #966963
3217
3218 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
3219
3220         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
3221         default case in switch statement,
3222         * glue.c (pic16_initPointer): expr is initialised via decoarteType
3223         to eliminate problem with initialisation of pointers, but problem
3224         still exists,
3225         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
3226         * (emitStaticSegment): removed various lines emitting debug info,
3227         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
3228         added processor registers for utilizing EEPROM,
3229         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
3230         configurable and set 8
3231
3232 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
3233
3234         * .version: increased version number to 2.4.2,
3235
3236         Cumulative patch for pic16 port
3237         * src/pic16/device.c: changed scheme to dump initial values for
3238         variables in idata segment, all print_idata* functions were removed,
3239         now the pic16_printIval* will be called,
3240         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
3241         * _pic16_printPointerType, pic16_printPointerType,
3242         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
3243         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
3244         NEW, similar to the respective functions in SDCCglue.c,
3245         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
3246         way, emitting hex bytes,
3247         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
3248
3249 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3250
3251         * src/avr/ralloc.c (serialRegAssign),
3252         * src/xa51/ralloc.c (serialRegAssign),
3253         * src/pic/ralloc.c (serialRegAssign),
3254         * src/pic16/ralloc.c (serialRegAssign),
3255         * src/hc08/ralloc.c (serialRegAssign),
3256         * src/z80/ralloc.c (serialRegAssign),
3257         * src/ds390/ralloc.c (serialRegAssign),
3258         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
3259
3260 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3261
3262         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
3263         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
3264
3265 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
3266
3267         Cumulative patch for pic16 port:
3268         * src/pic16/device.h (typedef PIC16_device) modified fields for
3269         defining microcontrollers,
3270         * src/pic16/device.c: added new info for all devices in Pics16 array,
3271         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
3272         to be optimised out by the pCode optimiser,
3273         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
3274         specially, bug reported by G.M. Gallant,
3275         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
3276         as force'd so that cannot be optimised out by pCode optimiser,
3277         * src/pic16/pcode.c,
3278         * src/pic16/pcodepeeph.c,
3279         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
3280         they are disabled by default, but can be enabled explicit with
3281         command argument --denable-peeps, for testing,
3282         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
3283         --pomit-ivt in COMPILE_FLAGS
3284
3285 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3286
3287         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
3288           compilation on MSVC
3289
3290 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3291
3292         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
3293
3294 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3295
3296         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
3297         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
3298
3299 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
3300
3301         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
3302         would only assign 0x300001 register.
3303
3304 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
3305
3306         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
3307         in COMPILE_FLAGS. Thanks to G. Gallant for report.
3308
3309 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3310
3311         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
3312         for ds80c400
3313         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
3314         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
3315         added peephole 254 (left shift), 255 (jump table)
3316
3317 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
3318
3319         * device/lib/Makefile.in: removed comment line with model-pic16,
3320         * (target port-specific-objects-pic16): the libraries and objects
3321         are copied to the build directory form the device/lib/pic16/bin
3322         directory
3323
3324         Cumulative patch concerning pic16 port:
3325         * library directory has been re-organized,
3326         * added support for PIC18F1220,
3327         * added headers and library sources for chips 18f1220,18f6520,
3328         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
3329
3330         * configuration registers setting has changed, now each supported
3331         device has a complete description of the registers it uses,
3332         * all initialisations are moved to idata sections, these section
3333         can be absolute or relocatable,
3334         * fixed initialisation of codespace variables,
3335         * fixed warning about PCLATU and gpsim,
3336         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
3337         * (genAssign): use table reads when assigning from variables in codespace,
3338         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
3339         char/int variables placed in codespace,
3340         * (pic16_emitConfigRegs): NEW, emits a list with configuration
3341         registers set in .asm file, no need for --pomit-config-words anymore,
3342         * (pic16glue): some 8051 legacy segments are commented out
3343         (to be removed completely),
3344         * added support for alternative assembler and linker with --asm=
3345         and --link= command line arguments,
3346         * peepholes are disabled automatically in the port, no need to
3347         specify on command line,
3348         * port supports natively char/int/long multiplication, but converts
3349         all divisions to support functions,
3350         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
3351         to the file set in variable $2,
3352         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
3353         strings in ASCII format and not in hex,
3354         * ralloc.c (serialRegAssign): added a triplet of conditional calls
3355         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
3356         allocate proper register if iCodes aren't temporary,
3357
3358 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
3359
3360         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
3361
3362 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
3363
3364         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
3365         is commented out
3366
3367 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3368
3369         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
3370         computed address is reused
3371         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
3372         multi-byte bitfields
3373
3374 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3375
3376         * src/z80/gen.c: (genArrayInit): must check for pointers too
3377
3378 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3379
3380         * support/regression/tests/zeropad.c: never meant to commit the
3381           nestedstruct test: removed, added check for GCC version
3382
3383 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
3384
3385         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
3386         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
3387         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
3388           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
3389           bugs 928906 and 954082 half-empty initializers
3390         * src/SDCCsymt.h,
3391         * src/SDCCsymt.c (getAllocSize): added for above fix
3392         * src/z80/gen.c (genArrayInit): fixed bug 741044
3393         * support/regression/tests/zeropad.c: added tests
3394
3395 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
3396
3397         * src/pic16/device.c (pic16_dump_section): corrected bug which
3398         caused some symbols of the libraries to be misplaced
3399
3400 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3401
3402         * src/pic16/glue.c,
3403         * src/pic16/ralloc.h,
3404         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
3405         to fix conflict with pic port
3406
3407 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3408
3409         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
3410         externs configuration variables,
3411         * src/pic16/ralloc.h,
3412         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
3413         prototype in header, commented out some debug messages
3414
3415 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
3416
3417         * src/pic16/glue.c,
3418         * src/pic16/main.c,
3419         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
3420         for gpasm COFF object generation. Thanks to D. Hawkins for
3421         his patch info
3422
3423 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3424
3425         * src/ds390/main.c,
3426         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
3427         Brock for spotting this)
3428         * src/ds390/gen.c (genEndFunction),
3429         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
3430         interrupt handler and critical. Disable push/pop optimizations when
3431         peephole optimizations disabled.
3432
3433 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
3434
3435         Updated pic16 library sources and headers.
3436         * device/lib/pic16/pic18f*/ ,
3437         * device/include/pic16/*.h: modified to handle structured SFR
3438         definitions
3439
3440 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
3441
3442         * src/port.h (PORT structure): added hook initPaths, now each
3443         port can declare its own default search paths,
3444         which can been seen with the --print-search-dirs option,
3445         see pic16 port for example,
3446         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
3447         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
3448         * (doPrintSearchDirs): NEW, replaces in a central manner the
3449         printing of search dirs which was split in set*Paths functions,
3450         * (main): added call to port->initPaths and doPrintSearchDirs,
3451         * src/avr/main.c,
3452         * src/ds390/main.c,
3453         * src/hc08/main.c,
3454         * src/izt/i186.c,
3455         * src/izt/tlcs900h.c,
3456         * src/mcs51/main.c,
3457         * src/pic/main.c,
3458         * src/pic16/main.c: modified port structures to reflect addition of
3459         initPaths hook,
3460
3461         * src/pic16/device.c (regCompare): registers are finally sorted by name,
3462         * (pic16_dump_section): for registers in same address reserve memory once,
3463         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
3464         to no_banksel,
3465         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
3466         result is greater in size than right or left,
3467         * (pic16_genUMult8X8_8): there are some cases where the result can
3468         be 16 bits size, so handle these,
3469         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
3470         * (pic16_outBitC): modified to emit pcodes,
3471         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
3472         or not,
3473         * (genDivOneByte): implemented algorithm to divide 8-bits,
3474         * (genCmp): uncommented goto, but issues still exist,
3475         * (genAnd): fixed a bug with variables >8bits,
3476         * (genPackBits): optimization added that uses BCF/BSF to change a
3477         single bit,
3478         * (genAssign): fixed bug when assigning floating point literals,
3479         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
3480         __sdcc_gsinit_startup label,
3481         * src/pic16/main.c (_pic16_init): removed search directory
3482         initialisations,
3483         * (_pic16_initPaths): NEW, used to initialise search directories,
3484         * (_hasNativeMulFor): support functions for all except char/int
3485         multiplication, and char division,
3486         * (PIC16_port struct): modified entry for native mul support,
3487         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
3488         no_banksel option,
3489         * (buildCallTree): call to register_usage is ifdef'ed out,
3490
3491 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3492
3493         * device/include/string.h: applied Stas Sergeev's patch to make this
3494         header file compatible with the preprocessor -Wundef option
3495         * src/SDCCmain.c (main): abort compilation if preprocessor reports
3496         failure (fixes bug #941458)
3497
3498 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3499
3500         * src/SDCCopt.c (killDeadCode): fixed bug #907733
3501         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
3502         that the variable, not the function, should be static
3503         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
3504         to be consistent with non-literal case
3505
3506 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3507
3508         * src/SDCCast.c (isConformingBody): fixed bug #949967
3509         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
3510         convilong): fixed bug #952086
3511
3512 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3513
3514         * src/SDCCmem.c (allocVariables): fixed bug #955321
3515
3516 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3517
3518         * src/hc08/main.c (_hc08_genAssemblerEnd),
3519         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
3520         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
3521         completely eliminated the use of a temporary file
3522         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
3523         when more than one file linked
3524         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
3525
3526 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3527
3528         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
3529         which fixes bug #543481
3530         * support/regression/tests/bug-751703.c: fixed comments left from a
3531         cut and paste error
3532         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
3533         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
3534         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
3535         scopes
3536         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
3537         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
3538         are now changed to underscores in moduleName
3539
3540 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3541
3542         * as/mcs51/lkmem.c: better fix for bug #954173
3543
3544 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
3545         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3546
3547         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
3548         * device/include/c8051f000.h,
3549         * device/include/c8051f120.h,
3550         * device/include/c8051f300.h,
3551         * device/include/c8051f310.h,
3552         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
3553         PWM16) and detab'ed
3554
3555 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3556
3557         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
3558         and mailing lists, doc'ed --no-peep-comments, removed reference
3559         to knoppix (newest version has no LyX/LaTeX), other minor changes
3560         * src/SDCCglue.c (glue): save 2 bytes stack space with
3561         option --main-return. The ljmp could probably be avoided too
3562
3563 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3564
3565         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
3566
3567 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3568
3569         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
3570         * src/SDCCopt.c (isLocalWithoutDef),
3571         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
3572         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
3573         (credit to Maarten Brock for patch #949363, on which this is based)
3574         * support/regression/tests/bug-751703.c: some test cases of extern used
3575         within inner scopes.
3576
3577 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3578
3579         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
3580         SPEC_STRUCT
3581         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
3582         struct definitions
3583         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
3584         dwWriteLabel): fix to create valid debugger symbols even when
3585         the module name has non-alphanumeric symbols in it
3586         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
3587         when a variable's allocation has been optimized away
3588
3589
3590 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3591
3592         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
3593         * src/hc08/main.c,
3594         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
3595         * src/mcs51/main.c,
3596         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
3597         * src/ds390/main.c,
3598         * src/z80/gen.c (z80_emitDebuggerSymbol),
3599         * src/z80/main.c,
3600         * src/pic/gen.c (pic14_emitDebuggerSymbol),
3601         * src/pic/main.c,
3602         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
3603         * src/pic16/main.c,
3604         * src/avr/gen.c (avr_emitDebuggerSymbol),
3605         * src/avr/main.c,
3606         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
3607         * src/xa51/main.c,
3608         * src/SDCCdebug.c (emitDebuggerSymbol),
3609         * src/SDCCdebug.h,
3610         * src/port.h: added a debugger struct to the port struct. Added a
3611         callback for defining debugger symbols
3612
3613         * src/SDCCast.c (createLabel),
3614         * src/SDCC.y (labeled_statement): mark all compiler generated labels
3615         with isitmp = 1
3616         * src/SDCCicode.h,
3617         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
3618         iCode back to the ast for the function
3619
3620         * src/hc08/ralloc.c (hc08_assignRegisters),
3621         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
3622         unneeded fields from the regs struct.
3623         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
3624         pushReg() & pullReg() functions instead of emitcode()
3625
3626         * src/hc08/gen.c (genLabel, genhc08Code),
3627         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
3628
3629         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
3630         debugger hooks
3631
3632         * src/hc08/gen.c (genEndFunction, genhc08Code),
3633         * src/hc08/gen.h,
3634         * src/mcs51/gen.c (genEndFunction, gen51Code),
3635         * src/mcs51/gen.h,
3636         * src/ds390/gen.c (genEndFunction, gen390Code),
3637         * src/ds390/gen.h,
3638         * src/z80/gen.c (genEndFunction, genZ80Code),
3639         * src/z80/gen.h,
3640         * src/z80/z80.h,
3641         * src/pic/gen.c (genEndFunction, genpic14Code),
3642         * src/pic/gen.h,
3643         * src/pic16/gen.c (genEndFunction, genpic16Code),
3644         * src/pic16/gen.h,
3645         * src/avr/gen.c (genEndFunction, genAVRCode),
3646         * src/avr/gen.h,
3647         * src/xa51/gen.c (genEndFunction, genXA51Code),
3648         * src/xa51/gen.h,
3649         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
3650         specific code to cdbFile.c and out of the backend code generators
3651
3652         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
3653         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
3654         starting address is now 0
3655
3656         * as/hc08/asm.h,
3657         * as/hc08/m08pst.c,
3658         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
3659         assembler directive for DWARF support
3660         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
3661
3662         * src/src.dsp,
3663         * src/Makefile.in,
3664         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
3665
3666 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3667
3668         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
3669         and inappropriate peephole optimization in jump tables
3670
3671 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3672
3673         * as/hc08/m08pst.c,
3674         * src/SDCCglue.c: sdccopt works for the hc08 port now
3675
3676 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
3677
3678         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
3679
3680 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3681
3682         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
3683
3684 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3685
3686         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
3687         rules
3688         * src/SDCCmain.c,
3689         * src/SDCCglobl.h,
3690         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
3691         comments from the peephole optimizer replacement rules
3692         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
3693         symbols
3694         * src/SDCCcse.c (updateSpillLocation),
3695         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
3696         equivalents
3697         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
3698         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
3699         objects far pointers
3700
3701 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3702
3703         * src/SDCCsymt.h: a missing part of my last change
3704         * src/pic/ralloc.c (regTypeNum),
3705         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
3706
3707 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3708
3709         * src/SDCCicode.h,
3710         * src/SDCCicode.c (aggrToPtrDclType),
3711         * src/SDCCptropt.h,
3712         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
3713         ptrPseudoSymConvert),
3714         * src/pic/ralloc.c (regTypeNum),
3715         * src/pic16/ralloc.c (regTypeNum),
3716         * src/hc08/ralloc.c (regTypeNum),
3717         * src/ds390/ralloc.c (regTypeNum),
3718         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
3719         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
3720
3721 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3722
3723         * link/z80/lkmain.c (afile),
3724         * as/hc08/lkmain.c (afile),
3725         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
3726         prevent a pointer problem when a filename has no directory and
3727         no extension specified.
3728
3729 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3730
3731         * link/z80/lkmain.c (afile): allow periods in directory names
3732         * link/z80/lkmain.c (afile),
3733         * as/mcs51/lkmain.c (afile),
3734         * as/hc08/lkmain.c (afile): allow linker script file to have an
3735         extension other than ".lnk"
3736         * link/z80/lklex.c (getfid),
3737         * link/z80/lkmain.c (parse),
3738         * as/mcs51/lklex.c (getfid),
3739         * as/mcs51/lkmain.c (parse),
3740         * as/hc08/lklex.c (getfid),
3741         * as/hc08/lkmain.c (parse): Support comments in the linker script
3742         file on lines by themselves and after filenames
3743
3744 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3745
3746         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
3747
3748 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3749
3750         * src/z80/peeph-z80.def: removed some peephole rules that don't
3751         work with multibyte arithmetic (fixed bug #937126)
3752         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
3753         to registers and not global variables
3754         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
3755         geniCodePreInc, geniCodePostDec, geniCodePreDec,
3756         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
3757         checking for assignments not internally generated (fixed bug #931895)
3758         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
3759         structure member (fixed bug #930072)
3760
3761 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3762
3763         * src/SDCCmain.c (linkEdit),
3764         * src/hc08/main.c (_hc08_parseOptions),
3765         * as/hc08/Makefile.in,
3766         * as/hc08/aslink.h,
3767         * as/hc08/asm.h,
3768         * as/hc08/m08pst.c,
3769         * as/hc08/lkrloc.c (relr, rele),
3770         * as/hc08/lkarea.c (lnkarea)
3771         * as/hc08/lkmain.c (afile, parse),
3772         * as/hc08/lkelf.c: support for ELF output
3773         * as/hc08/lks19.c (s19),
3774         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
3775
3776 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3777
3778         * as/mcs51/lkihx.c: Fixed bug #899105.
3779
3780 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3781
3782         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
3783         .dsp files from Unix to DOS.
3784
3785 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3786
3787         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
3788         function pointers; we have been compliant for several months now.
3789         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
3790         change that was accidently commented out
3791         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
3792         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
3793         bug #922319
3794
3795 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3796
3797         * src/hc08/gen.c: output of all of the internal debugging information
3798         is now controlled by the D() macro; it is disabled by default
3799
3800 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3801
3802         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
3803         harder to keep the same registers during a CAST iCode
3804         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
3805         long via int can be done in a single cast, if the signedness is
3806         correct.
3807         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
3808         putchar() in tinibios.c in ds390's library
3809
3810 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
3811
3812         * src/SDCCast.c (decorateType): fixed bug #898889,
3813         cast result of a literal complement too
3814         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
3815         fixed check for bitfields
3816
3817 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
3818
3819         * src/SDCCicode.c (geniCodeLogic): made it static,
3820         (geniCodeLogicAndOr): added in order to fix bug #905492,
3821         (ast2iCode): fixed bug #905492
3822         * support/regression/tests/bug-905492.c: added
3823         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
3824         (processParms): fixed bug #927659: don't copy parms, this will clear
3825         decorated flag
3826         * support/regression/tests/bug-927659.c: added
3827
3828 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
3829
3830         * src/SDCCast.c (addCast): don't cast float to char
3831         * device/lib/libsdcc.lib: added _memmove
3832
3833 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
3834
3835         * device/lib/large/Makefile: fixed parallel execution by
3836         replacing `make` by `$(MAKE)`
3837
3838 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3839
3840         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
3841         offsets (fixes bug #923936)
3842
3843 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
3844
3845         * device/lib/small/Makefile: fixed parallel execution by
3846         replacing `make` by `$(MAKE)`
3847
3848 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
3849
3850         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
3851
3852 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
3853
3854         * src/pic/gen.c (genCpl): multi-byte complements were not working.
3855         * src/regression/Makefile: Regression test was not running.
3856
3857 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
3858
3859         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
3860         complement if possible
3861         * src/SDCCval.c (valComplement),
3862         * src/SDCCicode.c (operandOperation): fixed complement of literal
3863         * support/regression/tests/onebyte.c (testComplement): added
3864
3865 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
3866
3867         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
3868         return an optimized tree; actually replace actParm with the new tree
3869         * src/SDCCast.h: added some parantheses to remove side effects
3870         * support/regression/tests/bug-920866.c
3871
3872 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
3873         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
3874         Bit operands were not being handled properly in the pic14 port.
3875         (now src/regression/add.c passes again).
3876
3877 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3878
3879         * src/SDCC.y (labeled_statement): case and default no longer require
3880         a following statement (RFE #893037)
3881
3882 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3883
3884         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
3885         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
3886         disabled (fixes bug #916294)
3887         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
3888         "mov a,acc"; patch provided by Lenny Story
3889         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
3890
3891 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3892
3893         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
3894         functions
3895         * src/ds390/gen.c (genFunction, genEndFunction),
3896         * src/ds390/ralloc.c (ds390_assignRegisters),
3897         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
3898         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
3899         pushed if there are parameters passed on the stack. Also, a cleaner
3900         way to decide if r0/r1 should be pushed/popped. (Together they fix
3901         bug #918693)
3902
3903 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3904
3905         * doc/sdccman.lyx,
3906         * device/lib/mcs51/crtpagesfr.asm,
3907         * device/lib/mcs51/crtxinit.asm,
3908         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
3909         to avoid confusion with Si Lab's SFRPAGE register.
3910
3911 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3912
3913         * src/SDCCglue.c (emitMaps): allow public sfr variables
3914         * src/SDCCglue.c (initialComments): include compiler build date
3915         with compiler version and put the timestamp of the generated
3916         assembly file on a serperate line to be less confusing.
3917         * src/port.h: added genInitStartup hook
3918         * src/avr/main.c,
3919         * src/ds390/main.c,
3920         * src/hc08/main.c,
3921         * src/pic/main.c,
3922         * src/pic16/main.c,
3923         * src/xa51/main.c,
3924         * src/z80/main.c: genInitStartup initialize as NULL (default to
3925         historical behaviour)
3926         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
3927         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
3928         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
3929         library instead of hard coding it into the compiler.
3930         * support/regression/ports/mcs51-stack-auto/spec.mk,
3931         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
3932         * device/lib/mcs51/Makefile,
3933         * device/lib/small/Makefile,
3934         * device/lib/large/Makefile,
3935         * device/lib/mcs51/crtpagesfr.asm,
3936         * device/lib/mcs51/crtstart.asm,
3937         * device/lib/mcs51/crtxclear.asm,
3938         * device/lib/mcs51/crtxinit.asm,
3939         * device/lib/mcs51/crtclear.asm,
3940         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
3941         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
3942         and into user configurable files.
3943         * device/lib/clean.mk: clean mcs51 directory too
3944         * support/regression/tests/longlit.c: added static to T1 declaration
3945         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
3946         accesses in the initialization code
3947
3948 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3949
3950         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
3951         OSCTRIMVAL as noted in bug #916008
3952
3953 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3954
3955         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
3956         in loops with multiple exits (reported as incorrect registers
3957         used by Martin Helmling in Sdcc-user list)
3958
3959 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3960
3961         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
3962         made ds390 register extensions look less like error messages
3963
3964 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3965
3966         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
3967         reported by Adam Wozniak in Sdcc-user list
3968
3969 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
3970
3971         * src/SDCCast.c (decorateType): fixed with bug and promotion in
3972         arithmetic optimizations, added debug output
3973
3974 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
3975
3976         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
3977         * sdcc.spec: updated and split sdcc into 3 rpms
3978         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
3979         needed for literals of LEFT_OP and '+'
3980         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
3981         introduced RESULT_TYPE_NOPROM
3982         (geniCodeMultiply): fixed logic for decision if mul is optimized to
3983         left shift
3984         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
3985         limited promotion to int only for '*'
3986         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
3987
3988 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
3989
3990         * src/pic16/gen.c (genSkip),
3991         (genc16bit2lit), (gencjneshort): commented out
3992         (is_LitOp): new helper function, checks operand type
3993         (genCmpEq): rewritten
3994
3995 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
3996
3997         * support/regression/tests/bug-908454.c: added
3998
3999 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
4000
4001         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
4002         * src/SDCCicode.c (usualBinaryConversions): op needs int type
4003         (geniCodeCast): cosmetic, don't preserve bit storage class
4004         (geniCodeLeftShift): added promotion
4005         (geniCodeLogic): fixed regression
4006         * src/SDCCsymt.c (computeTypeOr): accept bits too
4007         (compareType): 2nd part of fix for bug #908454, needed for bitfields
4008
4009 2004-03-07  Borut Razem <borut.razem AT siol.net>
4010
4011         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
4012
4013 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
4014
4015         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
4016         version of pic16_genPackRegisters which does not check if ic is a
4017         CAST operator,
4018         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
4019         function cause string1.c regression test fails
4020
4021 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
4022
4023         * sim/ucsim/configure.in,
4024         * sim/ucsim/configure,
4025         * sim/ucsim/doc/Makefile.in: use docdir
4026         * src/SDCC.y: fixed sbit atrributes
4027         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
4028         * src/SDCCast.c (decorateType): |^& need special promotion handling
4029         * src/SDCCast.h,
4030         * src/SDCCsymt.h: moved definition of RESULT_TYPE
4031         * src/SDCCsymt.h (computeType),
4032         * src/SDCCicode.c: computeType() needs op
4033         * src/SDCCsymt.c (checkTypeSanity),
4034         * doc/sddman.lyx: "plain" bitfields are unsigned
4035         * src/SDCCsymt.c (computeTypeOr): added
4036         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
4037         |^& ops
4038         * src/SDCCval.c (val*): computeType() needs op
4039         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
4040         * support/regression/tests/onebyte.c: added tests for |^&
4041
4042 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
4043
4044         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
4045         for writing icode into asm output.
4046
4047 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
4048
4049         * src/pic16/device.c: added some debug lines enabled
4050         with macro DEBUG_CHECK,
4051         * src/pic16/genarith.c: more debug in genPlus,
4052         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
4053         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
4054         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
4055         * (aopForSym): onStack symbols are re-placed in data memspace,
4056         and onStack flag is cleared,
4057         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
4058         copy temporary pcodeop,
4059         * (genPcall): added warning for not updating PCLATU,
4060         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
4061         always true for pic16 port,
4062         * (genMultOneWord): NEW, supports integer multiplication,
4063         * (genMult): modified to call genMultOneWord,
4064         * (ifxForOp): added warning when return NULL,
4065         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
4066         flag is set before call to operandFromSymbol for implicit
4067         added structures,
4068         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
4069         options.intlong_rent are set by default,
4070         * (_hasNativeMulFor): modified to allow port generation of integer
4071         multiplication,
4072         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
4073         set regtype to REG_SFR for all registers, restricting seting the
4074         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
4075
4076 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4077
4078         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
4079         more than 500 times in the regression tests
4080
4081 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4082
4083         * support/Util/SDCCerr.h,
4084         * support/Util/SDCCerr.c,
4085         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4086         enumerator_list),
4087         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
4088         for symbol conflicts.
4089         * support/valdiags/tests/enum.c,
4090         * support/valdiags/tests/tentdecl.c,
4091         * support/valdiags/tests/struct.c: expect possible error messages
4092         referring to original symbol definitions.
4093         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
4094         * src/SDCCsymt.h,
4095         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
4096
4097 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
4098
4099         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
4100
4101 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
4102
4103         * src/pic16/ralloc.c (newReg): fixed bug #908929
4104
4105 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4106
4107         * src/ds390/gen.c: added missing #include "main.h"
4108
4109 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
4110
4111         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
4112         checking if symbol is already in set,
4113         * src/pic16/device.h: prototype for checkAddSym,
4114         * src/pic16/gen.c: (_G): added entry interruptvector,
4115         * (assignResultValue): removed some commented out lines,
4116         * (genFunction): check for ISR via sym->type, absolute section for
4117         interrupt code is created via a new pBlock, the goto instruction is
4118         placed now correctly at the interrupt vector position, changed all
4119         references from ivec to _G.interruptvector,
4120         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
4121         is the interrupt is a high priority one, same for return from ISR,
4122         * src/pic16/glue.c: changed all calls of addSetHead for publics and
4123         externs to calls of checkAddSym,
4124         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
4125         pic16_pcode_verbose flag is set,
4126         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
4127         * src/pic16/pcoderegs.c: message about how many registers are saved
4128         will only be emitted if pic16_pcode_verbose flag is set,
4129
4130 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4131
4132         * src/ds390/ralloc.h,
4133         * src/ds390/ralloc.c (ds390_regWithIdx),
4134         * src/ds390/gen.c (emitcode),
4135         * src/ds390/main.h,
4136         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
4137         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4138         ds390operandCompare, getRegsRead, getRegsWritten,
4139         initializeAsmLineNode): customized instruction size calculation for
4140         ds390, started basis for some register optimizations
4141         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
4142         corresponding assembly output
4143         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
4144         missing push/pop of r0/r1. Optimized push/pops
4145
4146 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4147
4148         * src/mcs51/main.c (instructionSize): fixed ACALL size
4149         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
4150
4151 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
4152
4153         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
4154         the sorting of rlist with NULL elements
4155         * (print_idataType, print_idata): NEW to create idata sections
4156         * src/pic16/device.h: idataSymSet new variable
4157         * src/pic16/gen.c (genFunction): fixed some bugs in string
4158         comparing, improved the absolute section creation for ISRs,
4159         added FSR0L/FSR0H in registers that are saved in an ISR,
4160         * (genInline): fixed the processing of inline snippets,
4161         now they undergo no process by the peephole optimizer
4162         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
4163         are placed in idataSymSet,
4164         * (pic16emitStaticSeg): extern symbols are added in externs,
4165         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
4166         switching when aboslute variables are placed in access bank memory
4167         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
4168         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
4169         commented out with #if,
4170         * (pic16_packRegisters): reintroduce the check for CAST because some
4171         symbols are not correctly handled,
4172         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
4173         pCodeInstruction instead of pCode,
4174         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
4175         pCodeAsmDir definition,
4176         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
4177         directive, then the argument directive is emitted without the leading
4178         tab, hack for inline labels which must be in the first column,
4179         * (compareLabel,pic16_findNextInstruction),
4180         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
4181         * (insertBankSwitch): modified for the new pCodeAsmDir,
4182
4183 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4184         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
4185
4186         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
4187         instance,
4188         * (pushSide): commented out with #if,
4189         * (assignResultValue): fixed some typos in saving
4190         registers,
4191         * (genPcall): FIXED and sync'ed with genCall,
4192         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
4193         * (genNearPointerGet): fixed to handle some more cases,
4194         implementation scheme via table reads,
4195         * (genConstPointerGet): modified to access code memory correct,
4196         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
4197         and improved to handle some cases
4198         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
4199         instead of "RETLW" for init data
4200         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
4201         not IN_DIRSPACE, work around to reduce bank switching when aboslute
4202         variables are placed in access bank memory (<0x80 and >=0xf80),
4203         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
4204         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
4205         TBLWT_POSTDEC,TBLWT_PREINC
4206         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
4207         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
4208         directives
4209         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
4210         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
4211         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
4212         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
4213
4214 2004-02-29  Borut Razem <borut.razem AT siol.net>
4215
4216         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
4217         support/Util/findme.h, support/Util/system.h: enhance binary relative
4218         search for lib and include by using findProgramPath()
4219
4220 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4221
4222         * src/SDCCpeeph.h,
4223         * src/SDCCpeeph.c (pcDistance),
4224         * src/port.h,
4225         * src/mcs51/ralloc.h,
4226         * src/mcs51/ralloc.c (mcs51_regWithIdx),
4227         * src/mcs51/main.h,
4228         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
4229         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4230         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
4231         size calculation port specific, started basis for some register
4232         optimizations
4233         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
4234         missing push/pop of r0/r1. Optimized push/pops
4235         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
4236         * device/lib/_modsint.c (_modsint),
4237         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
4238         and stack version so regression tests pass
4239
4240 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
4241
4242         * src/Makefile.in (dep): include SLIBOBJS in dependency check
4243         * src/SDCCast.c (decorateType): catch another small optimization
4244         with '?' operator
4245         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
4246         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
4247         modified to finally use computeType() all over SDCC,
4248         see Feature Request #877103
4249         * src/SDCCval.h: cosmetic
4250         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
4251         valCompare(); regression tested in muldiv.c
4252         * support/regression/tests/muldiv.c (testMod): mod sign follows
4253         dividend only
4254
4255 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
4256
4257         * src/SDCCast.c (decorateType): fixed bug #902362
4258         * doc/INSTALL.txt: fixed install instructions for win32
4259
4260 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
4261
4262         * device/include/Makefile.in (install): fixed by replacing spaces
4263         by tabs
4264         * doc/README.txt,
4265         * doc/INSTALL.txt: updated for release
4266         * doc/sdccman.lyx: added warning for --xstack being buggy
4267
4268 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
4269
4270         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
4271         to eliminate build warnings.
4272         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
4273
4274 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
4275            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4276
4277         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
4278         removed -penable-stack, added comment for stack pragma, added
4279         warning for not initializing the stack/frame registers, removed
4280         comment at interrupts section
4281
4282         Stack is made permanent, there is no ability to disable stack usage.
4283         * src/pic16/device.h,
4284         * src/pic16/device.c: removed all references to USE_STACK macro,
4285         * src/pic16/device.c (pic16_dump_section): when no elements in
4286         rlist, free rlist before return,
4287         * (pic16_dump_int_registers): NEW, internal registers are a new set
4288         of general purpose registers reused by each function,
4289         * (checkAddReg): returns 1 if registers is added to set,
4290         * (pic16_groupRegistersInSection): when a registers is of type
4291         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
4292         * src/pic16/device.h: memRange and Assigned Memory are deleted,
4293         SRCASECMP macro is moved here from device.c
4294         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
4295         PO_PCLATU, PO_PRODL, PO_PRODH,
4296         * (pic16_pCodeOpType, genMinus,
4297         changed compares to "a" register, with AOP_ACC,
4298         * (pic16_genPlus): fixed some bugs and indented properly,
4299         * (pic16_addSign): changed size to size+offset in the MOVWF
4300         instruction,
4301         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
4302         multiply 8-bit operand by literal, result is 8-bit,
4303         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
4304         multiply 2 8-bit operand, result is 8-bit,
4305         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
4306         genUMult8X*_16,
4307         * src/pic16/gen.c: changed accUse to contain WREG only,
4308         * (pic16_emitcomment): renamed to pic16_emitpcomment,
4309         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
4310         true, do not use immediate addressing any more unless sym is a
4311         pointer in codespace,
4312         * (aopForRemat): do not use immediate addressing when symbol not in
4313         codespace and when symbol's address is requested,
4314         * (aopOp): for-loop in if(sym->accUse) is modified for the new
4315         accUse size (= 1),
4316         * (aopGet): added case for AOP_ACC and don't return "accumulator
4317         bug" but WREG instead,
4318         * (popGetTempReg): pushes contents of temporary register in stack,
4319         * (popReleaseTempReg): pops contents of temporary register from
4320         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
4321         * (pic16_popGet): separated case AOP_ACC to return register WREG
4322         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
4323         or PO_IMMEDIATE and initializes their instance/offset appropriately,
4324         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
4325         the use of immediate pointers to certain cases only.
4326
4327         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
4328         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
4329         * (assignResultValue, genCall, genRet): modified to use the new
4330         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
4331         genPcall is still broken,
4332         * (genFunction): added code to create 'A' type pBlocks when
4333         interrupt functions are generated, code not extensively tested yet,
4334         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
4335         * (genEndFunction): modified so ISRs pop stored registers from stack,
4336         * (genMultOneByte): cleanup,
4337         * (AccRsh): added flag andmask, to and result with appropriate mask,
4338         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
4339         * (genDataPointerGet): fixed and reenabled its use,
4340         * (genNearDataPointerGet): bugs fixed,
4341         * (genDataPointerSet): bugs fixed,
4342         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
4343         pic16_DumpSymbol, pic16_DumpOp,
4344         * src/pic16/genutils.h: function prototypes for the above functions,
4345         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
4346         pointers,
4347         * (pic16emitRegularMap): many many many improvements, but needs a
4348         major cleanup,
4349         * src/pic16/main.c: enable_stack in pic16_options is removed,
4350         * (_pic16_parseOptions): removed command line options -penable-stack,
4351         * (_process_pragma): emit stack symbol only when stack pragma is
4352         processed,
4353         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
4354         redirected to FSR0L/FSR0H pair,
4355         * (pic16_get_op, pic16_get_op2): modifications and improvements,
4356         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4357         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
4358         for immediates,
4359         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
4360         * (dumpPicOptype): NEW,
4361         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
4362         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
4363         with movff instruction,
4364         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
4365         added pic16_int_regs, some packRegsFor* functions are commented out,
4366         because produce errors,
4367         * src/pic16/NOTES: minor modifications
4368
4369 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4370
4371         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
4372         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
4373         --pack-iram.
4374         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
4375         * as/mcs51/lkaomf51.c: fixed bug #895763
4376
4377 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
4378
4379         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
4380
4381 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4382
4383         * doc/sdccman.lyx: added details about the HC08 storage classes and
4384         interrupts, fixed the register usage info for z80 & gbz80
4385
4386 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
4387
4388         * doc/sdccman.lyx: added more pic16 port documentation
4389         * device/include/pic16/: added header pic18fregs.h
4390
4391 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
4392
4393         * doc/sdccman.lyx: added Vangelis' contribution
4394
4395 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4396
4397         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
4398         extend to the next CALL or PCALL, not just to the next CALL.
4399
4400 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
4401
4402         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
4403
4404 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4405
4406         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
4407         bug #895752 and a better fix for bug #716790
4408
4409 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4410
4411         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
4412
4413 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4414
4415         * doc/sdccman.lyx: minor changes, minor changed
4416
4417 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
4418
4419         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
4420         which can't handle SDCC_NEWONEBYTEOPS,
4421         (geniCodeMultiply): removed conversion from mult to shift for pic14
4422         and pic16
4423
4424 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4425
4426         * src/hc08/gen.h,
4427         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
4428         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
4429         thus fixing bug #895406
4430
4431 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
4432
4433         * device/lib/_modsint.c,
4434         * device/lib/_modslong.c: sign follows divisor only
4435         * src/hc08/gen.c (genMultOneByte): if result size is 1,
4436         signs or signedness can be ignored
4437         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
4438         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
4439         added optimization for IFX,
4440         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
4441         arguments;
4442         reenabled optimization for IFX, which was removed on 2004-01-11
4443         * src/SDCCast.h: added return type IFX
4444         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
4445         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
4446         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
4447         SDCC_OLDONEBYTEOPS selects the old behaviour
4448         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
4449         changed again and commented promotion rule
4450         * src/SDCCval.c (valDiv): promotion no longer necessary
4451         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
4452         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
4453         rewritten
4454         * support/regression/tests/onebyte.c: added
4455
4456 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
4457
4458         * gen.c (genInline): reverted to old code for assemnling inline
4459         code because of bug reported James Chadd
4460
4461 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
4462
4463         * ralloc.h: missing declarations from previous patch,
4464         seems that patch for ralloc.h was never applied, fixed
4465
4466 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4467            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
4468
4469         * pcode.c,
4470         * pcode.h,
4471         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
4472         indirect addressing. Marked FSR0 as deprecated
4473         * gen.c (pointerCode): commented out, not needed now
4474         (pic16_popGet2p): new MOVFF helper function
4475         (genGenPointerGet),
4476         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
4477         (shiftRLong): removed duplicate debugging info
4478
4479 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4480
4481         * src/ds390/gen.c (genNearPointerGet),
4482         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
4483         optimization with bits, but not bitfields.
4484         * src/ds390/ralloc.c (packRegisters),
4485         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
4486
4487 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
4488
4489         * src/SDCCcse.c (algebraicOpts): copy operands before modification
4490
4491 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4492
4493         * src/SDCCsymt.h,
4494         * src/SDCCicode.c (operandFromSymbol),
4495         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
4496         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
4497         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
4498         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
4499         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
4500         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
4501         bug #892038
4502         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
4503         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
4504         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
4505         * src/SDCCsymt.c (newSymbol),
4506         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4507         enumerator_list),
4508         * src/SDCCval.h,
4509         * src/SDCCval.c (newiList): fixed bug #885705
4510
4511 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4512
4513         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
4514         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
4515
4516 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4517
4518         * device/include/c8051f120.h,
4519         * device/include/c8051f300.h,
4520         * device/include/c8051f310.h: added/updated header files for Silicon
4521         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
4522         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
4523         in new section Submitting patches
4524
4525 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4526
4527         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
4528         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4529         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4530         genGenPointerSet),
4531         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
4532         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4533         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4534         genGenPointerSet),
4535         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
4536         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4537         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4538         genGenPointerSet),
4539         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
4540         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4541         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4542         genGenPointerSet): fixed bug #892400
4543         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
4544         to eliminate build warnings.
4545         * src/SDCCast.c (processParms),
4546         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
4547         fixed bug 751859
4548         * support/valdiag/valdiag.py: added GCC to the list of defines active
4549         when compiling with gcc
4550
4551 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4552
4553         * support/Util/SDCCerr.h,
4554         * support/Util/SDCCerr.c,
4555         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
4556         with an incomplete type (fixed bug #883734)
4557         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
4558
4559 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4560
4561         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
4562
4563 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4564
4565         * src/SDCCast.c (decorateType),
4566         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
4567         function pointer implementation
4568         * support/regression/tests/funptrs.c: added tests to verify both forms
4569         of function pointers work correctly. Added tests to verify parameters
4570         are passed in the correct order.
4571
4572 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
4573
4574         * device.c (regCompare): registers are sorted by ascending
4575         address and increasing size,
4576         * main.c (_pic16_finaliseOptions): removed the declaration
4577         of compiler macro MCU. Now a macro of the format pic18fxxxx
4578         will be defined from the command line
4579
4580 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4581             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
4582
4583         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
4584         PCOP_RLCF was overwritten!
4585         * gen.c (genSkip): commented out calls to pic16_emitcode,
4586         * (genCmpEQ): fixed "long" compares, only high word did get compared,
4587         * (genlshTwo),
4588         * (genRRC): added debugging info,
4589         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
4590         overwritten while shifting,
4591         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
4592         overwritten while shifting,
4593         * (AccLsh),
4594         * (AccRsh),
4595         * (shiftLLeftOrResult),
4596         * (shiftRLeftOrResult),
4597         * (shiftRLong),
4598         * (shiftLLong): Implemented with pic16_emitpcode
4599         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
4600         * (genLeftShift): Fixed bug, operand for shift by variable always
4601         was "and"ed with 0x0f,
4602         * (genLeftShiftLiteral),
4603         * (genrshTwo),
4604         * (genRightShiftLiteral): added debugging info,
4605         * (genrshFour): added comment,
4606         * (genRightShift): determined signedness from operand "left"
4607         instead of "result"
4608
4609 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4610
4611         * src/SDCCicode.c (geniCodeParms),
4612         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
4613         function pointers, fixed function pointer bugs #861242 and #861896
4614
4615 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4616
4617         * device/include/c8051f000.h,
4618         * device/include/c8051f120.h,
4619         * device/include/c8051f300.h: added header files for Silicon
4620         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
4621
4622 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
4623
4624         * src/SDCCast.c (processParams): added new type flow and restructured
4625         (gatherAutoInit): added new type flow
4626         (addCast): cosmetic changes
4627         (getLeftResultType): added new type flow for array indices, patch
4628         provided by Stas, see FR #877103
4629         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
4630         array index patch by Stas
4631         * src/SDCCast.h: added prototype getResultTypeFromType()
4632         * src/SDCCval.h,
4633         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
4634         * src/pic/glue.c (pic14emitStaticSeg),
4635         * src/pic16/glue.c (pic16emitStaticSeg),
4636         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
4637         for initialization of symbols
4638         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
4639         * support/Util/SDCCerr.h:
4640         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
4641         * .version: bumped version number to 2.3.8
4642         * device/include/Makefile.in (install),
4643         * doc/Makefile (install): changed to 'rm `find ...`' construct to
4644         avoid warnings
4645
4646 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
4647
4648         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
4649         Slade Rich fixed an optimization bug
4650         * src/pic/pcodepeep.c,
4651         * src/pic/pcoderegs.c
4652         * doc/Makefile (install): added test for directory
4653
4654 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4655
4656         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
4657         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
4658         * src/pic/ralloc.c (getRegPtr, getRegGpr),
4659         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
4660         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
4661         * as/mcs51/asexpr.c (term),
4662         * as/hc08/asexpr.c (term): fixed bug #887146
4663
4664 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4665
4666         * src/z80/gen.c (genMult): handle single byte result product
4667         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
4668         DUMMY_READ_VOLATILE (fixed bug #886367)
4669
4670 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
4671
4672         * support/regression/tests/libmullong.c: fixed logic, on little endian
4673         hosts we ended without a mullong_wrapper()
4674
4675 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4676
4677         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
4678         virus/worm forged address usage.
4679
4680 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
4681
4682         Fixed promotion, it should be done on AST level:
4683         * src/SDCCast.c (addCast): added promotion to int
4684         (decorateType): updated call to upCast()
4685         * src/SDCCicode.c (geniCodeLeftShift): removed call to
4686         usualUnaryConversions()
4687
4688 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
4689
4690         * support/regression/tests/literalop.c (mulWrapper): Added a
4691         wrapper to remove integer overflow warnings.
4692
4693         * support/regression/tests/float_trans.c: Made work on host.
4694
4695         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
4696         location of sz80.
4697
4698         * support/regression/generate-cases.py (main): Changed from inline
4699         to a main method.
4700
4701         * doc/Makefile (install): Changed to depth first to get rid of
4702         missing directory install warning.
4703
4704         * as/Makefile (install-doc): Made work on Mac.
4705
4706 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
4707
4708         * src/SDCCast.c: added an additional type flow in decorateType() of
4709         opposite direction, see feature request #860006; it's enabled at runtime
4710         by setting the environment variable SDCC_NEWTYPEFLOW
4711         * src/SDCCast.h: changed prototype of decorateType()
4712         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
4713         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
4714         'char' to 'int' can be omitted, if both operands are 'unsigned char';
4715         see feature request #877103
4716         * src/SDCCval.c: updated call of decorateType()
4717         (valBitwise): fixed bug #882876
4718         (valMinus): added promotion
4719         (valLogicAndOr): result is unsigned
4720         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
4721         * src/SDCCsymt.c (computeType),
4722         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
4723         must not cause an unsigned operation
4724         * src/pic/glue (pic14emitRegularMap),
4725         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
4726
4727 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
4728
4729         * src/pic/pcode.c (PCodeID): commented out left over debug code
4730
4731 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
4732
4733         * support/valdiag/tests/overflow.c: added shift tests
4734         * src/pic/device.c,
4735         * src/pic/gen.c,
4736         * src/pic/gen.h,
4737         * src/pic/glue.c,
4738         * src/pic/main.c,
4739         * src/pic/pcode.c,
4740         * src/pic/pcode.h,
4741         * src/pic/pcodepeep.c,
4742         * src/pic/pcoderegs.c,
4743         * src/pic/ralloc.c,
4744         * src/pic/ralloc.h: applied patch from Slade Rich;
4745         added support for multiple code pages and multiple RAM banks on the
4746         PIC 14 port. The ASM files now no longer simply assume all the
4747         code / RAM are in the same page / bank. This means the linker can
4748         safely allocate code/RAM of separate ASM files to different pages/banks.
4749         * doc/sdccman.lyx: added Slade's tips
4750         * src/mcs51/peeph.def: fixed bug #880768
4751
4752 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4753
4754         * src/hc08/ralloc.c (rematStr): fixed bug #879282
4755         * src/SDCCast.c (decorateType): fixed bug #880197
4756
4757 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
4758
4759         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
4760         getopt.h.
4761
4762         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
4763         strtof is not part of C89 and isn't included with Mac OS X.
4764
4765 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4766
4767         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
4768         shiftL2Left2Result): fixed bug #879326
4769         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
4770         (genMultOneByte): fixed bug in signed vs unsigned multiplication
4771         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
4772         address fetch for clr instruction
4773         * device/lib/hc08/_mulint.c: created optimized assembly version
4774         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
4775
4776 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
4777
4778         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
4779         proposed in FR #877103
4780
4781 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
4782
4783         * src/SDCCval.c (cheapestVal): added missing checks
4784         * src/SDCCicode.c (usualBinaryConversions): fixed condition
4785         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
4786
4787 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
4788
4789         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
4790         equal operands
4791
4792 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
4793
4794         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
4795         loaded with the linker search paths (-L arguments) and the libraries
4796         to be linked with the current source (-l arguments). Changes
4797         currently will affect only the pic16 port.
4798         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
4799         include path the port specific paths and port specific libraries,
4800         * gplink command now contains the $3 argument,
4801         * src/pic16/device.h,
4802         * src/pic16/device.c,: structure PIC_device is made public and
4803         renamed to PIC16_device, the same for variable Pics which is renamed
4804         to Pics16. Updated all references to them.
4805         * src/pic16/glue.c (pic16glue): corrected bug with code
4806         initialization which bypassed the variable initializations block.
4807
4808         * device/lib/pic16/Makefile.rules: removed --penable-stack from
4809         COMPILE_FLAGS and added the --nostdinc option
4810
4811 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4812
4813         * device/include/mc68hc908jb8.h: Register defs for another member
4814         of the hc08 family. Contributed by Bjorn Bringert - thanks!
4815
4816 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
4817
4818         Documenting changes from previous commits.
4819         * configure.in (version 1.56),
4820         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
4821         when generating output files to configure the pic16 library,
4822         but now I've commented it out, since gputils aren't installed in the
4823         SF compile farm, so library won't compile
4824
4825         * device/lib/Makefile.in (version 1.56): initially I've added in
4826         target 'all' the prerequestive 'model-pic16' so it compiled the
4827         pic16 library, but now I've commented it out for the same reasons
4828         above,
4829         * added targets 'model-pic16' and 'objects-pic16' to compile the
4830         library
4831         * added target 'port-specific-objects-pic16' to handle the
4832         generated libraries and copy them into the build/ directory
4833         * added target 'clean-intermediate-pic16' to clean intermediate
4834         files into pic16 directory
4835         * in target 'installdirs' added line to create directory pic16 in
4836         the installation path
4837
4838         * device/include/Makefile.in (version 1.11): in target 'install'
4839         added lines to copy all header files to installation path,
4840         * in target 'installdirs' added line create directory for pic16
4841         headers in the installation path
4842
4843 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
4844
4845         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
4846          a function call
4847
4848 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
4849
4850         * configure,
4851         * device/lib/configure.in,
4852         * device/lib/configure: fixed for autoconf 2.57
4853
4854 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4855
4856         * src/z80/main.c (_parseOptions): fixed the portmode= command line
4857         option so that it actually works. Made it specific to the z80, since
4858         the gbz80 doesn't have these kinds of I/O ports.
4859
4860 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4861
4862         * device/include/z180.h,
4863         * device/lib/_memcpy.c,
4864         * device/lib/_memmove.c,
4865         * device/lib/_mulint.c,
4866         * device/lib/ser_ir.c,
4867         * device/lib/ser_ir_cts_rts.c,
4868         * device/lib/_strcmp.c,
4869         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
4870         * src/z80/main.c (_process_pragma): add support for pragmas bank and
4871         portmode; added deprecation warning for bank= and protmode= forms.
4872         Also, guard against buffer overflow.
4873         * src/z80/gen.c (aopGet): generate better code for sfr banked read
4874
4875 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4876
4877         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
4878         changed interrupt vector table generation to only emit declared vectors.
4879         * device/include/Makefile.in: added missing backslash
4880         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
4881
4882 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
4883
4884         Mainly changes to support compilation of the device libraries
4885         * src/pic16/device.c: stack is allocated via symbol and not
4886         via literal number. The symbol is placed in the corresponding
4887         position of the data ram
4888         * (pic16_dump_section): relocatable and absolute uninitialized
4889         data are now emitted in sorted order to reduce section naming,
4890         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
4891         weren't marked as being in the access bank,
4892
4893 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
4894
4895         Added portion of GNU PIC Library under the directory
4896         device/include/pic16 and device/lib/pic16. These files
4897         contain the declarations of SFRs for the PIC18Fxx2 devices.
4898         The directory is initialized via configure from toplevel.
4899
4900 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
4901
4902         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
4903         the spilllocations to be compared correctly
4904
4905 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
4906
4907         * src/SDCCast.c (decorateType): fixed bug introduced today
4908
4909 2004-01-12  Borut Razem <borut.razem AT siol.net>
4910
4911         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
4912         doc/sdccman.lyx: upper case pragmas are deprecated
4913
4914 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
4915
4916         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
4917         in simpler and even better code
4918
4919 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
4920
4921         * src/SDCCicode.c (operandOperation): fixed bug #874819
4922         * src/SDCCast.c (decorateType): fixed
4923         char foo (unsigned long ul) { return ul > 0; }
4924
4925 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4926
4927         * doc/sdccman.lyx: Moved and added some sections, small changes
4928         all over. Telling LaTeX to be less strict with word spacing
4929         to better keep the right margin. Changed some notes about
4930         maintainance of the ports in section 3.2.1 - is it OK like this?
4931
4932 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
4933
4934         SDCC source changes:
4935         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
4936         convilong): modified to inform the pic16 port that builtin functions
4937         are external
4938
4939         PIC16 PORT specific changes:
4940         * src/pic16/device.c pic16_dump_equates() added,
4941         processor registers declared internally by the port are emitted in
4942         the translation as equates,
4943         * src/pic16/gen.c: inline code is passed unprocessed to the
4944         translation,
4945         * (pic16_popGetLit2): fnuction modified to take second operand as
4946         pCodeOp pointer and not as literal,
4947         * (popRegFromIdx): prefixed with pic16_,
4948         * (pic16_popCombine2): modified to receive already allocated pCode
4949         operands,
4950         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
4951         * (genFunction): initializes local stack frame and pushes on stack
4952         all the registers used by this function,
4953         * (genEndFunction): restores all registers from stack and restores
4954         stack frame,
4955         * src/pic16/glue.c (pic16emitRegularMap): various changes and
4956         improvements,
4957         * (pic16glue): changed the program startup sequence,
4958         * added new dbName code 'A' for functions placed in absolute section
4959         * src/pic16/main.c: added function attribute _naked,
4960         * added pragma 'code' to place a fnuction at an absolute address,
4961         * added command line arguments --debug-ralloc and --pcode-verbose,
4962         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
4963         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
4964         * (pic16_newpCodeOpLit2): modified to take the second operand as
4965         pCodeOp pointer,
4966         * (pic16_printpBlock): modified to emit each function in a separate
4967         section,
4968         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
4969         UPPER for immediate operands,
4970         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
4971         instruction,
4972         * src/pic16/peeph.def: all peepholes with movff are commented out,
4973         because there is a problem in the pcode peep optimizer,
4974         * src/pic16/ralloc.c: the register allocator can now reuse local
4975         function symbols for another function. This saves register usage.
4976         * src/pic16/ralloc.h: added flag isLocal in structure regs,
4977
4978         Added file src/pic16/NOTES with information about program writing on
4979         the current port version.
4980
4981 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4982
4983         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
4984         and peephole 252 (array access)
4985
4986 2004-01-09  Borut Razem <borut.razem AT siol.net>
4987
4988         * src/SDCCmain.c : fixed #872250: -l command line defined library
4989           files are scanned before standard library files
4990
4991 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4992
4993         * src/SDCCast.c (decorateType): fixed bug #874046
4994
4995 2004-01-09  Borut Razem <borut.razem AT siol.net>
4996
4997         * support/scripts/sdcc.nsi: remove previous installation
4998
4999 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5000
5001         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
5002         bytes for last interrupt vector (mcs51)
5003         * sdcc.spec: fixed typo
5004
5005 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5006
5007         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
5008         gen51Code): more efficient parameter receive for --model-large
5009         ("bug" #845294)
5010
5011 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5012
5013         * src/ds390/main.c,
5014         * src/z80/main.c: added missed needLinkerScript flags (more than
5015         one port structure defined in these file)
5016         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
5017         bug #795325
5018
5019 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
5020
5021         * src/SDCCmain.c: removed various references to DEFAULT_PORT
5022         * src/port.h: added flag needLinkerScript in port->linker
5023         structure to inform whether to create a .lnk file or not,
5024         * src/avr/main.c,
5025         * src/ds390/main.c,
5026         * src/hc08/main.c,
5027         * src/mcs51/main.c,
5028         * src/pic/main.c,
5029         * src/pic16/main.c,
5030         * src/xa51/main.c,
5031         * src/z80/main.c: changed appropriately to configure
5032         needLinkerScript flag
5033         * src/pic/gen.c,
5034         * src/pic16/gen.c (genAddrOf): fixed bug #863624
5035         * src/pic/glue.c: added variable udata_section_name to
5036         override default uninitialized data segment definition for
5037         devices only with SHAREBANK memory (reported from Erik Epetrich)
5038         * (pic14emitOverlay): modified to emit a commented overlay segment
5039         directive when no overlay data exist
5040         * (picglue): modified to emit uninitialized data segment
5041         according to udata_section_name
5042         * src/pic/main.c (_pic14_parseOptions): added command line
5043         options --udata-section-name=[name] to override default
5044         udata definition name
5045         * modified _linkCmd and _asmCmd to include compiler passed
5046         arguments via -W option
5047         * src/pic16/main.c: added $l in _asmCmd, changed extension for
5048         object file from '.rel' to '.o' in port->linker structure,
5049         changed size of fptr from 2 to 3 in port structure
5050
5051 2004-01-07  Borut Razem <borut.razem AT siol.net>
5052
5053         * support/scripts/sdcc.nsi: update PATH
5054         * support/scripts/sdcc.ico: craeted
5055
5056 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
5057
5058         * device/include/Makefile.in: fix install
5059         * doc/Makefile: fix install
5060
5061 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5062
5063         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
5064         in bug #860505
5065         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
5066         how the function variable allocation summary is displayed; also
5067         include information about variables allocated to the overlay
5068         segment
5069
5070 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5071
5072         * as/mcs51/lkmain.c: Help about -Y option
5073         * as/mcs51/lkarea.c: Fixed gcc warnings
5074
5075 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5076
5077         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
5078         fixed warning
5079         * support/valdiag/tests/overflow.c: added
5080         * src/SDCCast.c (decorateType),
5081         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
5082         LEFT_OP (left shift)
5083
5084 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5085
5086         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
5087         (default behaviour).
5088
5089 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5090
5091         A python script to validate compiler diagnostic messages. It can be
5092         used to verify that sdcc complains about bad c source code and
5093         gives a good location of the error.
5094         * support/valdiag/Makefile,
5095         * support/valdiag/valdiag.py,
5096         * support/valdiag/tests/*
5097
5098 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5099
5100         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
5101         * src/SDCCsymt.c (newEnumType),
5102         * src/SDCCsymt.h
5103         * support/Util/SDCCerr.c,
5104         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
5105         enum related bugs.
5106         * support/regression/tests/enum.c: added test for enum values that
5107         require at least 2 bytes of storage.
5108
5109 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5110
5111         * src/common.h: added ifndef/define/endif macros
5112         around the header file.
5113         Bug reported from Jesus Calvino-Fraga
5114
5115 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5116
5117         * sdcc.spec: updated
5118         * device/include/Makefile.in: don't install CVS directories
5119         * device/lib/Makefile.in: added removal of CVS directories after install
5120         * doc/Makefile: fixed install, added local_icons
5121         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
5122         * src/mcs51/gen.c (genRightShift): fixed bug #870788
5123         * src/ds390/gen.c (genRightShift): fixed bug #870788
5124         * src/SDCCast.c (decorateType): fixed bug #870781
5125
5126 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5127
5128         PIC16 port related changes:
5129         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
5130         added variable stackPos,
5131
5132         * gen.c: genCall, assignResultValue: added support for
5133         pushing/retrieving function parameters to/from stack,
5134         genFunction,genEndFunction: setup stack frame for the
5135         generated function,
5136         genAddrOf: will be changed according to bug 863624
5137
5138         * added files genutils.c and genutils.h which contain gen*
5139         debugged and optimised functions extracted from gen.c
5140
5141         * glue.c: added variable 'externs' which holds extern symbols,
5142         pic16emitRegularMap: is modified to properly handle relocatable
5143          symbols under the new scheme,
5144         pic16createInterruptVect: is modified
5145         pic16printPublics: is modified to emit 'global' assembler directives,
5146         added pic16_printExterns to print extern symbols,
5147         pic16glue: initializes stack/frame pointer in the beginning of
5148         the assembly output. Temporary hack, will be corrected later,
5149         because gplink yet does not support stack and SDCC does not
5150         yet support a type of crt0.o object to create the final binary.
5151
5152         * Removed many lines that contain 8051 legacy code.
5153         * The code is finally placed under a 'code' directive.
5154         * Added port specific options.
5155
5156         * _process_pragma: simplified since now we do not need *special*
5157         include file to define SFR registers. But a separate header
5158         will be needed. This will be developed later.
5159         * _pic16_parseOptions: added, parses port specific options:
5160         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
5161         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
5162         --preplace-udata-with=
5163
5164         * _pic16_setDefaultOptions: modified to initialize section names,
5165         but hack is temporarly out of order since it needs improvement.
5166         * _pic16_genAssemblerPreamble: configuration words are emitted by
5167         their address instead of their name. This part is incomplete and
5168         supports only the 18Fxx2 devices. Other devices will emit an error
5169         during assembly since they do not contain the same set of config
5170         registers
5171         * _pic16_genIVT: is modified,
5172
5173         * pcode.c: added definitions for some hardware registers that are needed
5174         for stack support
5175         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
5176         All PCI entries are updated. Now LFSR is supported.
5177         * Removed pic16_pciTRIS is mentioned by mdubuc in source
5178         * added pic16_newpCodeOpLit2 to support instructions with
5179         two literal arguments
5180         * pic16_pCode2str: corrected code that emits assembler instructions
5181         with two literal operands and those that have an access bit modifier
5182         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
5183         this fixes a bug which caused some labels to be lost, when an
5184         assembler directive was added, i.e. banksel,
5185         * pic16_FixRegisterBanking: improved logic that causes the insertion
5186         of bank switching,
5187         * InlineFunction: functions that are called once, are not any more
5188         inlined. This can be a port option in the future,
5189
5190         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
5191
5192         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
5193         hold the corresponding uninitialized symbols,
5194         * pic16_allocProcessorRegister: registers have explicit marked the
5195         accessBank field,
5196         * pic16_allocInternalRegister: registers are explicit marked as
5197         not used,
5198         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
5199         processing list, so bit registers were lost,
5200         *
5201
5202         * ralloc.h: added field 'accessBank' and original symbol operand
5203         in register definition,
5204         * removed the field isMapped from register definition,
5205
5206         ** Several functions have been removed from various sources:
5207         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
5208         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
5209         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
5210         pic16_assignRelocatableRegisters
5211
5212         ** others have been introduced:
5213         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
5214         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
5215
5216 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
5217
5218         * support/scripts/inc2h.pl: changed definition of BIT_AT
5219         to emit 'sbit at' instead of 'bit at'. This was a request.
5220
5221         PIC16 port related preliminary changes:
5222         * gen.c: prefixed function popRegFromString with
5223         pic16_ and all references to it corrected
5224         * pcode.c: all pic16_pc_* hardware registers prefixed
5225         with underscore (_),
5226         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
5227         * ralloc.c: newReg(): when register is REG_SFR then
5228         set address to rIdx,
5229         pic16_allocProcessorRegister(): marks register wasUsed=0
5230         pic16_writeUsedRegs(): added a call to assign processor
5231         registers via pic16_assignFixedRegisters
5232
5233 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5234
5235         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
5236         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
5237         variables in unused register banks.  Also the SSEG is placed
5238         wherever there is enough space for it, and IDATA can be anywhere
5239         in internal RAM.  For now compile using -Wl-Y[stack_size].
5240         The mem file is different for this option as well, since it
5241         makes no sense of talking about DSEG lenght.
5242
5243 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
5244
5245         * src/SDCClrange.c: fixed bug 869095 that caused segfault
5246         in certain cases, e.g. when ROM assignment, patch provided
5247         from Albert den Haan.
5248
5249 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
5250
5251         Many signedness and type propagation fixes:
5252         * src/SDCCicode.c: made geniCodeCast() static
5253         replaced SPEC_ by IS_ (cosmetic)
5254         (operandOperation): fixed div and mod operation
5255         (usualBinaryConversions): added support for promotion of char
5256         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
5257         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
5258         (geniCodeAdd): an array index will stay unsigned, even if promoted
5259         from char to int
5260         (geniCodeArray): ditto
5261         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
5262         * src/SDCCsymt.c (computeType): added more support for char;
5263         promotion of char is selectable by promoteCharToInt, fixed signedness
5264         for all cases
5265         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5266         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5267         * src/SDCCval (val*): replaced signedness calculation by
5268         computeType()
5269         rearranged if-branches (cosmetic)
5270         (valShift): added warning W_SHIFT_CHANGED
5271         (valCompare): fixed problem with different types
5272         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
5273         * support/regression/tests/literalop.c: added many cases
5274         * support/regression/tests/ast_constant_folding.c: changed finally to
5275         'unsigned int'
5276         * .version: new year, new version: 2.3.7
5277         * src/SDCCmain.c (main): applied patch #866468
5278         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
5279         provided by Scott Bronson
5280         * doc/sdccman.lyx: updated documentation for sdcdb
5281         updated and added chapter tips
5282
5283 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5284
5285         * src/SDCCsymt.h: missing from yesterday's commits
5286
5287 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5288
5289         * src/SDCC.y (struct_or_union_specifier),
5290         * support/Util/SDCCerr.c,
5291         * support/Util/SDCCerr.h: verify that struct & union tags are used
5292         as declared.
5293
5294 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5295
5296         * src/SDCCglobl.h: missing from yesterday's commits
5297
5298 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5299
5300         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
5301         sft_attributes, struct_declaration, parameter_declaration,
5302         type_name, start_block, declaration_list),
5303         * src/SDCC.lex (check_type): support redefinition of typedef names
5304
5305 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5306
5307         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
5308         aligned xdata arrays. Erik helped me with the if clause.
5309
5310 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5311
5312         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
5313         warning
5314
5315 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5316
5317         * src/SDCCast.h,
5318         * src/SDCCast.c (newAst_),
5319         * src/SDCCicode.h,
5320         * src/SDCCicode.c (ast2iCode, newiCode),
5321         * src/SDCCglobl.h,
5322         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
5323         expr, statement, expression_statement, selection_statement,
5324         iteration_statement, expr_opt, jump_statement): foundation for tracking
5325         sequence points
5326         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
5327         point code too)
5328
5329 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5330
5331         * support/Util/SDCCerr.c,
5332         * src/SDCCast.h,
5333         * src/SDCCast.c (createCase, createDefault, decorateType),
5334         * src/SDCClabel.c (labelUnreach),
5335         * src/SDCC.y (labeled_statement, jump_statement): More improvements
5336         to error messages.
5337         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
5338         (with thanks to Stas Sergeev)
5339         * device/include/time.h,
5340         * device/lib/time.c (CheckTime): suppress unreachable code warning
5341
5342 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5343
5344         * src/SDCCast.c (createIvalCharPtr),
5345         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
5346         bug #753752)
5347         * support/regression/tests/nullstring.c: tests for these two bugs
5348
5349 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5350
5351         * support/Util/SDCCerr.h,
5352         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
5353         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
5354         about storage class and 'at' used inside struct or union
5355         * src/SDCCBBlock.c (iCodeFromeBBlock),
5356         * src/SDCCcse.c (ifxOptimize),
5357         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
5358         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
5359         printIval, emitStaticSeg, emitOverlay),
5360         * src/SDCClabel.c (deleteIfx),
5361         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
5362         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
5363         gatherAutoInit, processParms),
5364         * support/Util/SDCCerr.h,
5365         * support/Util/SDCCerr.c (werrorfl): Support for better error location
5366         reporting for post-parse errors.
5367
5368 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5369
5370         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
5371         implicit casts via union; they don't work on big endian systems
5372         (possible fix for bug #861138)
5373
5374 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5375
5376         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
5377         * src/mcs51/main.c: fixed the fix for bug #737001
5378
5379 2003-12-15  Borut Razem <borut.razem AT siol.net>
5380
5381         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
5382
5383 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5384
5385         * support/makebin/makebin.c: put output in binary mode
5386
5387 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5388
5389         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
5390         xdata and data memory on startup. Set the environment variable
5391         SDCC_NOGENRAMCLEAR to disable this.
5392         * src/mcs51/peephole.def,
5393         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
5394         (allows non-interrupt and interrupt code to safely compete for a resource
5395         without the non-interrupt code having to disable interrupts)
5396
5397 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5398
5399         * src/SDCCicode.c (geniCodeAdd),
5400         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
5401         with valFromType if type might be a pointer and host is big endian).
5402         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
5403         types, not just integer types.
5404         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
5405         multiply defined with mismatching "at" address.
5406
5407 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5408
5409         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
5410         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
5411         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
5412         with embedded nulls (fixed bug #753752)
5413
5414 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5415
5416         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
5417         Apparently this did not see much testing (endless loop)
5418
5419 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5420
5421         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
5422
5423 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5424
5425         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
5426         gracefully handle NULL memmap pointers
5427
5428 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5429
5430         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
5431         instead of deleting the iCode when an operand is volatile
5432         * src/z80/gen.c (genDummyRead),
5433         * src/mcs51/gen.c (genDummyRead),
5434         * src/ds390/gen.c (genDummyRead),
5435         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
5436         not just IC_RIGHT
5437         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
5438         * src/SDCC.y: fixed bug #850420
5439
5440 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5441
5442         Applied z80 i/o port patch from Peter Townson and fixed some operators
5443         to better handle operands in A register.
5444         * device/include/z180.h
5445         * src/SDCC.y
5446         * src/SDCCglue.c
5447         * src/z80/gen.c
5448         * src/z80/gen.h
5449         * src/z80/main.c
5450         * src/z80/peeph-z80.def
5451         * src/z80/peeph.def
5452         * src/z80/z80.h
5453
5454 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5455
5456         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
5457
5458 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5459
5460         * device/lib/hc08/_mullong.c: Removed extra #endif
5461
5462 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5463
5464         * sim/ucsim/hc08.src/inst.cc,
5465         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
5466         carries from x to h
5467         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
5468         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
5469         * device/include/stdarg.h: fixed varargs for hc08
5470         * device/lib/Makefile.in,
5471         * device/lib/hc08/Makefile,
5472         * device/lib/hc08/_mulint.c,
5473         * device/lib/hc08/_mullong.c: fixed some endian problems
5474
5475 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5476
5477         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
5478         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
5479         * device/lib/_gptrget.c,
5480         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
5481
5482 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5483
5484         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
5485         * src/SDCCast.c (astErrors): fixed bug #846007
5486         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
5487
5488 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5489
5490         * src/SDCCast.c (decorateType): disabled a transformation I added in
5491         revision 1.188 (access to fields of a structure at an absolute address);
5492         it breaks with bitfields, extern declarations, and gcse analysis.
5493         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
5494         could be assigned through a pointer, so don't complain.
5495         * src/SDCCast.c (astErrors),
5496         * src/SDCCast.h,
5497         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
5498
5499 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
5500
5501         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
5502         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
5503         output of __config directives, since gpasm now supports them
5504         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
5505         pre-processor macro, i.e. -DMCU=p18f452
5506         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
5507         and modified to handle 'cast' icode similarly to '=' icode
5508         * src/pic16/device.h (typedef struct PIC_device): added field
5509         'extMIface' to indicate that chip has external memory interface
5510         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
5511         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
5512         18F8720
5513
5514 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5515
5516         * src/SDCC.y (pointer): fixed bug #846006
5517         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
5518         * src/SDCCast.c (decorateType): fixed bug #846009
5519         * src/ds390/peeph.def,
5520         * src/ds390/gen.c (genAnd, genOr),
5521         * src/mcs51/peeph.def,
5522         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
5523
5524 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5525
5526         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
5527         * src/SDCCdflow.c
5528         * src/SDCCcse.c
5529         * src/SDCCcse.h
5530         * src/SDCCBBlock.h
5531         * src/SDCCBBlock.c
5532
5533 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
5534
5535         fixed bug #845089
5536         * src/SDCCbitv.h,
5537         * src/SDCCbitv.c: added function to free a bitvector
5538         * src/SDCClrange.h,
5539         * src/SDCClrange.c: added function to recompute the liveranges
5540         * src/avr/ralloc.c,
5541         * src/ds390/ralloc.c,
5542         * src/hc08/ralloc.c,
5543         * src/mcs51/ralloc.c,
5544         * src/pic/ralloc.c,
5545         * src/pic16/ralloc.c,
5546         * src/xa51/ralloc.c,
5547         * src/z80/ralloc.c: recompute the liveranges after register packing
5548
5549 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
5550
5551         * src/SDCCloop.c (newInduction): fixed bug #845630
5552
5553 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5554
5555         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
5556         inadvertantly left behind from my 2003-11-12 change
5557
5558 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5559
5560         Updated headers I neglected to commit yesterday.
5561         * src/SDCClrange.h,
5562         * src/SDCCicode.h
5563
5564 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5565
5566         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
5567         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
5568         * src/SDCCopt.c (eBBlockFromiCode),
5569         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
5570         the creation of the key hash table from the sequencing so it can be used
5571         earlier (for some GCSE bug fixes still pending)
5572
5573 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5574
5575         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
5576         * support/regression/tests/addsub.c: testing genPlus shortcut
5577
5578 2003-11-15  Borut Razem <borut.razem AT siol.net>
5579
5580         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
5581
5582 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5583
5584         * src/SDCCcse.c (cseBBlock): fixed bug #527779
5585         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
5586         ordering is immaterial.
5587         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
5588
5589 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5590
5591         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
5592         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
5593         (SIGSEV) of bug #840381
5594         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
5595         unlink new file before rename if new and old filenames are the same)
5596
5597 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5598
5599         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
5600         uninitialized variables) for the mcs51. Set environment variable
5601         SDCC_GENRAMCLEAR to test.
5602         xdata initialization slightly shorter
5603
5604 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5605
5606         * src/SDCCsymt.h,
5607         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
5608         #838241 & 780691 (basicly the same bug)
5609         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
5610         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
5611
5612 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
5613
5614         * src/SDCCmain.c (linkEdit): "fix" #834252
5615
5616 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5617
5618         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
5619         * src/SDCCast.h,
5620         * src/SDCC.y: fixed bug #819403
5621
5622 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5623
5624         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
5625         the reentrant attribute.
5626         * src/hc08/gen.c (genPackBits): added missing stack readjustment
5627         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
5628         simulation
5629         * src/SDCCast.c (decorateType): fixed bug with storage class not being
5630         updated during pointer dereference; f.e. ~(((char *)1)*) was being
5631         erroneously reduced to a literal.
5632         * src/hc08/ralloc.c (packRegisters, rematStr),
5633         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
5634         some cases
5635
5636 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5637
5638         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
5639         * doc/sdccman.lyx: changed from 'article' to 'book'
5640         * doc/Makefile: readded test_suite_spec and cdbfileformat
5641
5642 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
5643
5644         * device/include/stdlib.h: include malloc.h to comply with ANSI
5645         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
5646
5647 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5648
5649         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
5650         * doc/clean.mk: also remove *.out files
5651         * doc/sdccman.lyx: some additions, larger top/bottom margins
5652
5653 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5654
5655         * src/SDCC.y: fixed bug #837365
5656         * support/regression/tests/bitopcse.c
5657         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
5658         a symbol (might be valop instead)
5659         * device/lib/Makefile.in: added errno.c to HC08SOURCES
5660         * device/lib/clean.mk: added hc08 to the cleaning list
5661
5662 2003-11-04  Borut Razem <borut.razem AT siol.net>
5663
5664         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
5665           made 2003-11-04
5666         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
5667           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
5668           malloc is declared in standard stdlib.h
5669
5670 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5671
5672         * device/lib/hc08/Makefile: need to clean .rel not .o files
5673         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
5674
5675 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5676
5677         * src/port.h,
5678         * src/hc08/main.c,
5679         * src/mcs51/main.c,
5680         * src/ds390/main.c,
5681         * src/z80/main.c,
5682         * src/avr/main.c,
5683         * src/pic/main.c,
5684         * src/pic16/main.c,
5685         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
5686         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
5687         tests (which uses the port's oclsExpense function)
5688         * src/SDCC.y,
5689         * src/SDCCast.c,
5690         * src/SDCCicode.c,
5691         * src/hc08/gen.c,
5692         * src/ds390/gen.c,
5693         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
5694
5695 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5696
5697         * src/SDCCcse.c (ifxOptimize),
5698         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
5699         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
5700         deleting the IFX iCode.
5701         * src/hc08/ralloc.c: reduced unneeded slocs
5702         * src/hc08/gen.c: fixed bug in asmopToBoolean
5703
5704 2003-11-04  Borut Razem <borut.razem AT siol.net>
5705
5706         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
5707           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
5708           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
5709           transferred to configure
5710
5711 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
5712
5713         Use headers defined in the C[++] standards:
5714         * sim/ucsim/gui.src/serio.src/fileio.cc
5715         * sim/ucsim/gui.src/serio.src/frontend.cc
5716         * sim/ucsim/gui.src/serio.src/main.cc
5717         * sim/ucsim/gui.src/serio.src/posix_signal.cc
5718         * support/Util/NewAlloc.c
5719         * as/hc08/lklibr.c
5720         * as/mcs51/lklibr.c
5721         * as/z80/aslist.c
5722         * as/z80/assym.c
5723
5724 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5725
5726         * Added MSVC projects for hc08 assembler and linker:
5727         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
5728         /as/hc08/link_hc08.dsp
5729
5730 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
5731
5732         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
5733
5734 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
5735
5736         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
5737
5738 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5739
5740         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
5741
5742 2003-10-31  Borut Razem <borut.razem AT siol.net>
5743
5744         * support/cpp2/cpplib.h,
5745           support/cpp2/cpplib.c,
5746           support/cpp2/cpplex.c,
5747           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
5748           to switch _asm block preprocessing on / off. Default is
5749           #pragma preproc_asm +
5750
5751 2003-10-31  Borut Razem <borut.razem AT siol.net>
5752
5753         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
5754           when outputting comment blocks (when executed with -C option) and
5755           _asm (SDCPP specific) blocks
5756
5757 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5758
5759         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
5760
5761 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
5762
5763         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
5764
5765 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
5766
5767         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
5768         * src/SDCCast.c (decorateType): fixed bug #832664
5769
5770 2003-10-31  Borut Razem <borut.razem AT siol.net>
5771
5772         * support\cpp2\cpplex.c: fixed for SDCPP:
5773           comments(when executed with -C option) and _asm blocks
5774           were included even if they where in skipped #if block.
5775           Applied solution from GCC cpp 3.3.2
5776
5777 2003-10-31  Borut Razem <borut.razem AT siol.net>
5778
5779         * src/SDCC.lex: sdcc now understands both formats:
5780           '# <line_number> <file_name>' and
5781           '#line <line_number> <file_name>'
5782         * support/cpp2/cppmain.c: sdcpp now generates the standard
5783           '# <line_number> <file_name>' instead of former
5784           '#line <line_number> <file_name>'
5785
5786 2003-10-30  Borut Razem <borut.razem AT siol.net>
5787
5788         * support/cpp2/cpphash.h,
5789         * support/cpp2/cpplib.h
5790         * support/cpp2/cpplex.c,
5791         * support/cpp2/cppmain.c,
5792         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
5793
5794 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5795
5796         Fixed a number of problems revealed by bug #827883.
5797         * src/SDCCloop.c (loopInvariants): Spill location of the
5798         result operand should be recomputed if extracted from
5799         a loop. Also, don't extract assignments of an iTemp
5800         from a literal.
5801         * src/SDCCast.c (isConformingBody): loop reversal should
5802         not occur if the control variable is involved with a
5803         relational operator.
5804
5805 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
5806
5807         * .version: bumped to 2.3.6 to reflect the big improvements
5808         made by Erik and Klaus. Thanks!
5809
5810 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
5811
5812         Replaced the livrange code.
5813         * src/SDCClrange.c: added new LR code
5814         * src/SDCCloop.c,
5815         * src/SDCCBBlock.h: removed remainig parts from old LR code
5816         * src/ds390/ralloc.c,
5817         * src/ds390/gen.c: minor fixes to make it work with new code
5818
5819 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5820
5821         * as/hc08/asm.h,
5822         * as/hc08/lkrloc.c,
5823         * src/hc08/gen.c,
5824         * src/hc08/ralloc.c: Fix various warnings related to the hc08
5825         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
5826         (tweaked fix for bug #818696)
5827
5828 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5829
5830         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
5831
5832 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5833
5834         * src/SDCCmain.c,
5835         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
5836         * src/mcs51/gen.c (gencjneshort),
5837         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
5838         more efficient (per Scott Bronson's suggestion)
5839
5840 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5841
5842         Extended the semantics of the critical keyword to include
5843         individual statements. See RFE #827755 and #799831
5844         * src/SDCC.y
5845         * src/SDCCicode.c
5846         * src/SDCCopt.c
5847         * src/SDCCast.c
5848         * support/Util/SDCCerr.c
5849         * support/Util/SDCCerr.h
5850         * src/mcs51/gen.c
5851         * src/ds390/gen.c
5852         * src/hc08/gen.c
5853
5854 2003-10-19  Borut Razem <borut.razem AT siol.net>
5855
5856         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
5857
5858 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5859
5860         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
5861         Fixed bug #818696
5862         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
5863         and predecrement operand is displayed
5864
5865 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
5866
5867         * src/SDCCval.c (valMinus): fixed bug #826041
5868
5869 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5870
5871         Some hc08 related updates that I missed earlier
5872         * sim/ucsim/stypes.h
5873         * support/regression/ports/hc08/spec.mk
5874
5875 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5876
5877         New target "hc08" for the Motorola 68hc08 family of micros
5878
5879         * configure
5880         * configure.in
5881         * Makefile
5882         * src/hc08/*
5883         * src/SDCCmain.c
5884         * src/port.h
5885         * sim/ucsim/hc08.src/*
5886         * sim/ucsim/configure.in
5887         * src/ucsim/configure
5888         * sim/ucsim/packages_in.mk
5889         * as/hc08/*
5890         * as/Makefile
5891         * device/include/mc68hc908qy.h
5892         * device/lib/hc08/*
5893         * device/lib/Makefile.in
5894         * support/regression/ports/hc08/*
5895         * support/regression/Makefile
5896
5897 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5898
5899         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
5900         regression test
5901         * src/ds390/gen.c (genCast): fixed bug #821957
5902
5903 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
5904
5905         * device/lib/logf.c: "fixed" overlay bug
5906         * support/regression/ports/host/spec.mk: added m library
5907         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
5908         * support/regression/tests/float_trans: added (for Eric)
5909
5910 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
5911
5912         * src/mcs51/gen.c (genCpl): fixed bug
5913         http://sf.net/mailarchive/message.php?msg_id=6263915
5914
5915 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
5916
5917         * src/SDCCast.c (decorateType): added extended constant folding
5918         * src/SDCCsymt.c (computeType): cleanup
5919         * src/SDCCval.c (valShift): minor optimization
5920         * support/regression/tests/ast_constant_folding.c: added
5921
5922 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5923
5924         * src/SDCCmain.c: removed some unintended changes
5925
5926 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5927
5928         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
5929         * src/z80/gen.c: fixed part of bug #817589
5930         * src/SDCCsymt.c (checkFunction): fixed bug #817895
5931
5932 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
5933
5934         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
5935         * src/SDCCcflow.c
5936         * src/SDCCcse.c
5937         * src/SDCCdflow.c
5938         * src/SDCClabel.c
5939         * src/SDCClrange.c
5940         * src/SDCCmem.c
5941         * src/SDCCopt.c
5942         * src/SDCCpeeph.c
5943         * src/SDCCset.c
5944         * src/avr/ralloc.c
5945         * src/ds390/ralloc.c
5946         * src/izt/ralloc.c
5947         * src/mcs51/ralloc.c
5948         * src/pic/ralloc.c
5949         * src/pic16/ralloc.c
5950         * src/xa51/ralloc.c
5951         * src/z80/ralloc.c
5952         * src/z80/gen.c: removed unused label "release:"
5953
5954 2003-10-06  Borut Razem <borut.razem AT siol.net>
5955
5956         * src/SDCC.lex: removed definition of unused variables
5957           save_optimize and save_options
5958
5959 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
5960
5961         * clean.mk: removed '=' in "-maxdepth=1"
5962         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
5963         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
5964
5965 2003-10-06  Borut Razem <borut.razem AT siol.net>
5966
5967         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
5968           my_unput() replaced by unput()
5969
5970 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
5971
5972         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
5973         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
5974         type-punned pointer will break strict-aliasing rules"
5975         Old LR behaviour is again default; Klaus' LR can be choosen by
5976         defining the environment variable LRKLAUS
5977         * src/SDCCBBlock.h
5978         * src/SDCCloop.c
5979         * src/SDCClrange.c
5980         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
5981         * clean.mk: fixed removal of files in bin/CVS/
5982         * device/lib/clean.mk: fixed removal of directories small and large
5983         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
5984         * src/SDCCicode.c,
5985         * src/SDCCval.c: removed superflous test for pedantic
5986
5987 2003-10-05  Borut Razem <borut.razem AT siol.net>
5988
5989         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
5990           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
5991           message "unmatched #pragma SAVE and #pragma RESTORE"
5992
5993 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5994
5995         * doc/sdccman.lyx: various additions and updates (interrupts, inline
5996           assembly, critical functions, atomic, nojtbound)
5997
5998 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
5999
6000         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
6001         * src/SDCCBBlock.h
6002         * src/SDCCloop.c
6003         * src/SDCCloop.h
6004         * src/SDCClrange.c
6005
6006 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6007
6008         * src/z80/gen.h,
6009         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6010         * src/mcs51/gen.h
6011         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6012         * src/ds390/gen.h
6013         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6014         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
6015         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
6016
6017 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6018
6019         * src/z80/gen.c (genRet): fixed bug #524753
6020         * src/z80/gen.c (genCast): fixed internal error on cast from
6021         pointer to long
6022         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
6023         fix for bug #477835 to the z80
6024         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
6025         for tracking iCodes in the peephole optimizer for z80
6026
6027 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6028
6029         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
6030         the other part of bug #814548
6031         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
6032
6033 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
6034
6035         * src/SDCCcse.c: fixed part of bug #814548
6036
6037 2003-09-28  Borut Razem <borut.razem AT siol.net>
6038
6039         * src/asm.c: rewrite of printILine() to use temporary file instead
6040           a pipe
6041         * src/xa51/main.c: commented out declaration of int rewinds
6042
6043 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6044
6045         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
6046
6047 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6048
6049         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
6050         * src/asm.c (printILine): Fixed bug #811015
6051
6052 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6053
6054         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
6055         freeing.
6056
6057 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6058
6059         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
6060         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
6061         to correctly handle general case of AOP_PAIRPTR
6062         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
6063
6064 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6065
6066         * src/mcs51/ralloc.c (fillGaps),
6067         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
6068         register positioning bug)
6069
6070 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
6071
6072         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
6073
6074 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6075
6076         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
6077         genCodePointerGet, genGenPointerGet, genFarPointerSet,
6078         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
6079         (ralloc doesn't intentionally do this now, but perhaps later)
6080         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
6081         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
6082         register positioning bugs (Fixed bug #762602 and #795325)
6083         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
6084         (Fixed bug #808779)
6085         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
6086         lines that --i-code-in-asm generates
6087
6088 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6089
6090         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
6091         trying to fclose a FILE* that was already closed.
6092
6093 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6094
6095         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
6096         of const struct should be treated as if const themselves)
6097
6098 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
6099
6100         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
6101
6102 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6103
6104         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
6105         Unix (/n) and DOS (/r/n) line terminations.
6106
6107 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6108
6109         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
6110         bug #613775
6111
6112 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6113
6114         * src/mcs51/gen.c (genFunction, genEndFunction),
6115         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
6116         and restore of EA so that stack offsets to parameters are
6117         correct when using both critical and reentrant/stack-auto.
6118         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
6119         size (can be triggered in error if sloc is shared between
6120         different sized objects)
6121         * device/include/float.h: fixed macros to explicitly use
6122         unsigned long where needed
6123
6124 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
6125
6126         Feature req. 799831: added code to allow nesting of critical functions
6127         * src/mcs51/gen.c (genFunction, genEndFunction)
6128         * src/ds390/gen.c (genFunction, genEndFunction)
6129
6130 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6131
6132         * src/SDCCsymt.c (sclsFromPtr),
6133         * src/SDCCsymt.h,
6134         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
6135         support for standard C idiom of memory mapped variables; for
6136         example, *((xdata int*)0x1234) = 1 is now internally equivalent
6137         to xdata int at 0x1234 tempvar = 1.
6138         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
6139         provided by Akiya ISHIDA
6140
6141 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
6142
6143         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
6144         * src/SDCCval.c (constVal): added reduction from int to char
6145         * src/SDCCval.c (valMult, valDiv): fixed sign handling
6146         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
6147         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
6148         to ignore the sign
6149         * support/regression/tests/shifts.c: fixed
6150
6151 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6152
6153         * src/z80/gen.c (genXor): Fixed bug #805445
6154
6155 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6156
6157         Fixed bug #621531 (const & volatile confusion in the type chain).
6158         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
6159         refer to the const or volatile state of the pointer itself.
6160
6161         * src/SDCCast.c
6162         * src/SDCCglue.c
6163         * src/SDCCicode.c
6164         * src/SDCCsymt.c
6165         * src/SDCCval.c
6166         * src/SDCC.y
6167         * src/SDCCsymt.h
6168         * src/pic/gen.c
6169         * src/pic/ralloc.c
6170         * src/pic16/gen.c
6171         * src/pic16/ralloc.c
6172         * support/regression/tests/const.c
6173
6174 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6175
6176         When checking for duplicated modules, use absolute paths
6177         instead of relative paths.  Files changed:
6178
6179         * as/mcs51/lklib.c
6180         * link/z80/lklib.c
6181
6182 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6183
6184         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
6185
6186 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6187
6188         * device/include/string.h: added size_t typedef, changed
6189         prototypes to use size_t, eliminated separate reentrant and
6190         non-reentrant declarations, added _memmove declaration
6191         * device/lib/_memcpy.c: changed to use size_t instead of int,
6192         changed /4 to >>2 to avoid division library call
6193         * device/lib/_memcmp.c,
6194         * device/lib/_memset.c,
6195         * device/lib/_strncat.c,
6196         * device/lib/_strncpy.c,
6197         * device/lib/_strncmp.c: changed to use size_t instead of int
6198         * device/lib/_memmove.c: new file (fixed bug #772294)
6199         * device/lib/Makefile.in: added _memmove.c
6200         * device/lib/z80/asm_strings.s: fixed bug #772290
6201         * support/regression/tests/bitfields.c: attempt to fix host assertion
6202         failure on amd64-unknown-linux2.2
6203
6204 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6205
6206         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
6207         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
6208         * as/z80/asmain.c (main): fixed bug #801766
6209
6210 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
6211
6212         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
6213         compilers
6214
6215 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6216
6217         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
6218         reported in bug #800609
6219
6220 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
6221
6222         * Top header beautifications in src/pic16 directory:
6223           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
6224           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
6225           pcoderegs.h, ralloc.c, ralloc.h
6226         * main.c: added top header and GPL license notice
6227         * pcode.c: fixed the if-conditional warning
6228
6229 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
6230
6231         * device/lib/_mullong.c: replaced int by short for gcc
6232
6233 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6234
6235         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
6236         and JUMPTABLE iCodes properly now (worked by accident before)
6237         * src/mcs51/gen.c (leftRightUseAcc),
6238         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
6239         iCode properly now. Use getSize instead of nRegs since a & b
6240         aren't part of the nRegs tally.
6241
6242 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
6243
6244         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
6245         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
6246           before instructions that use the _STATUS register
6247
6248 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
6249
6250         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
6251         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
6252         fetching of the pointer
6253         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
6254         copied from genNearPointerSet()
6255         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
6256         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
6257         If they pop r0/r1 they must be called in the opposite order than aopOp().
6258         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
6259         (resp. --stack-auto), prepared for --xstack
6260
6261 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6262
6263         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
6264
6265 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
6266
6267         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
6268         these ports have their own __sdcc_external_start()
6269
6270 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
6271
6272         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6273         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
6274         type for bits was changed. It resulted in bit variables becoming
6275         global, which is not permitted in PIC 14 assembly output.
6276
6277 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6278
6279         * doc/sdccman.lyx: various additions and updates. Rearranged sections
6280
6281 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6282
6283         Z80 and MCS51 linkers complaint if a public symbol is defined
6284         in more than one library module:
6285
6286         * as/mcs51/lklib.c
6287         * link/z80/lklib.c
6288         * as/mcs51/Makefile.in
6289
6290 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6291
6292         A few small changes that speed up the peephole optimizer.
6293
6294         * src/SDCCpeeph.c
6295
6296 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6297
6298         Try to make the peephole optimizer smarter by maintaining
6299         an association between the assembly source code and the
6300         iCodes that originated them. Put this information to use
6301         with a new peephole rule condition "notVolatile" so that
6302         the rules can be aggressive yet still safe.
6303
6304         * src/SDCCpeeph.c
6305         * src/SDCCpeeph.h
6306         * src/mcs51/gen.c
6307         * src/mcs51/peeph.def
6308
6309 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6310
6311         Fixed bug #741761
6312
6313         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
6314         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
6315         if the left or right operand symbols have the accuse flag set.
6316
6317 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6318
6319         Changed the type of the result of the ! (NOT) operator to char;
6320         previously it returned the same type as the source. This allows
6321         us to eliminate all the genFloatNot functions (all of its target
6322         implementations were very buggy) since !float can use the same
6323         code as !long now.
6324
6325         * src/SDCCicode.c (ast2iCode): ! returns char
6326         * src/mcs51/gen.c (genNot, genNotFloat),
6327         * src/ds390/gen.c (genNot, genNotFloat),
6328         * src/z80/gen.c (genNot, genNotFloat),
6329         * src/pic/gen.c (genNot, genNotFloat),
6330         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
6331
6332 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
6333
6334         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6335         1. Interrupt would not compile properly. Ensure PCLATH register is saved
6336            during interrupts. Ensure WSAVE is located at a shared bank address.
6337         2. Fixed page selection in some places
6338         3. Fixed BTFSS/C to where necessary use registers directly and not simply
6339            the registers name strings.
6340         4. Fixed "signed / unsigned compare" compiler warnings.
6341         5. The PIC port manages its own allocation of the general purpose
6342            registers, but makes no attempt to reuse them. As a result when
6343            compiling it soon runs out of general purpose registers. Some
6344            additional code was added to the files pcode.c and device.c to walk
6345            through the function call tree and rename the registers so that they
6346            get reused.
6347
6348         * src/pic/device.c
6349         * src/pic/gen.c
6350         * src/pic/glue.c
6351         * src/pic/pcode.c
6352         * src/pic/pcode.h
6353         * src/pic/ralloc.c
6354         * src/pic/ralloc.h
6355         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
6356         genPlus() & genMinus() when the result is the same as left or right
6357
6358 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6359
6360         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
6361
6362 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6363
6364         Made bitfield a distinct type from bit so that bitfields
6365         convert as per ANSI C and bits retain their traditional
6366         boolean style behaviour. Implemented bitfield support in
6367         the z80 port.
6368
6369         * src/SDCCsymt.h,
6370         * src/SDCCsymt.c,
6371         * src/SDCCast.c,
6372         * src/cdbFile.c,
6373         * src/mcs51/gen.c,
6374         * src/ds390/gen.c: bit v bitfield split
6375         * src/z80/gen.c: New support for bitfields
6376         * support/regression/tests/bitfields.c: reenabled z80,
6377         added more tests
6378
6379 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6380
6381         Rules 246.x, 247.x relate to bitfields, the others speed up
6382         access to xdata mapped I/O devices.
6383
6384         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
6385
6386 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6387
6388         Cleaned up genPackBits and genUnpackBits and added two helper
6389         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
6390         for literal assignments in genPackBits (thanks to Frieder for
6391         reminding me).
6392
6393         * src/mcs51/gen.c
6394         * src/ds390/gen.c
6395
6396 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6397
6398         Fixed bug #748310 (pointer to function type mishandled when the
6399         function name is omitted). Also fixed a SIGSEGV when a function
6400         attribute (reentrant, etc) is used on a non-function or on a
6401         function but misplaced before the parameter list.
6402
6403         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
6404         bug #748310
6405         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
6406         * support/Util/SDCCerr.h,
6407         * support/Util/SDCCerr.c: Added func attr misuse error msg
6408
6409 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
6410
6411         Fixed bug #787649 by anonymous
6412         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
6413         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
6414
6415 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6416
6417         Fixed numerous bitfield problems.
6418
6419         * src/SDCC.y: More bitfield related error checking
6420         * src/SDCCsymt.h,
6421         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
6422         * support/Util/SDCCerr.h,
6423         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
6424         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
6425         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
6426         * support/regression/tests/bitfields.c: tests added
6427
6428 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6429
6430         Made the constant following the "interrupt" keyword optional. If
6431         omitted, the function will not automatically be given an entry
6432         in the interrupt vector table (similar to #pragma NOIV, but
6433         less syntacticly kludgy). The interrupt number is also now
6434         range checked. Also fixed a bug in the high order bit example
6435         in the manual.
6436
6437         * src/SDCC.y
6438         * src/SDCCmem.c
6439         * src/SDCCglue.c
6440         * src/SDCCsymt.h
6441         * support/Util/SDCCerr.c
6442         * support/Util/SDCCerr.h
6443         * doc/sdccman.lyx
6444
6445 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
6446
6447         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
6448         * src/SDCCicode.c (operandOperation): rewritten some ops
6449         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
6450         * src/SDCCsymt.c (computeType): literals are handled the same way as any
6451         other type
6452         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
6453         be re-activated by defining REDUCE_LITERALS)
6454         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
6455         unsigned, but are signed by default
6456         * src/SDCCval.c (constVal): rearranged
6457         * src/SDCCval.c (valMod): preliminary fix
6458         * src/SDCCval.c (valCastLiteral): use TYPE_* types
6459         * support/regression/literalop.c: added, work in progress
6460
6461 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6462
6463         Generate warnings for useless declarations like "char data;"
6464         that don't do what new users expect.
6465
6466         * src/SDCC.y
6467         * support/Util/SDCCerr.h
6468         * support/Util/SDCCerr.c
6469
6470 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
6471
6472         * src/SDCCval.c (valMult): fix overflow detection of negative int
6473
6474 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6475
6476         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
6477
6478         Changes to support big endian targets:
6479
6480         * src/ports.h
6481         * src/SDCCglue.c
6482         * src/avr/main.c
6483         * src/ds390/main.c
6484         * src/izt/i186.c
6485         * src/mcs51/main.c
6486         * src/pic/main.c
6487         * src/pic16/main.c
6488         * src/xa51/main.c
6489         * src/z80/main.c
6490
6491 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
6492
6493         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
6494         * device/lib/time.c: fixed warning "integer overflow in expression"
6495
6496 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
6497
6498         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
6499         * src/SDCCval.c (constVal): changed default to signed; hex and octal
6500         constants are unsigned; added recognition of "u" flag for unsigned
6501         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
6502         * src/SDCCval.c (valDiv, valMod): fixed signdness
6503         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
6504         signedness of modulo, left and right shift
6505         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
6506         * support/Util/SDCCerr.h: added warning W_INT_OVL
6507         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
6508         * src/SDCCast.c (ast_print): improved output of constants
6509
6510 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6511
6512         Fixed some warnings when building with MSVC:
6513
6514         * as\mcs51\asdata.c
6515         * as\z80\asdata.c
6516         * as\mcs51\asm.h
6517         * as\z80\asm.h
6518         * link\z80\aslink.h
6519         * link\z80\lkdata.c
6520         * link\z80\lkeval.c
6521         * link\z80\lkgb.c
6522         * link\z80\lkihx.c
6523         * link\z80\lks19.c
6524         * link\z80\lksym.c
6525         * support\cpp2\cpplib.c
6526         * src\ds390\gen.c
6527         * src\mcs51\gen.c
6528
6529 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
6530
6531         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
6532
6533 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6534
6535         * support\librarian\clean.mk: Do not remove Makefile.
6536         * support\librarian\Makefile: added.
6537
6538 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6539
6540         Added librarian to MSVC build:
6541         * all.dsp
6542         * sdcc.dsw
6543         * support\librarian\librarian.dsp
6544
6545         'configure' not needed for librarian, removed:
6546         * support\librarian\configure
6547         * support\librarian\configure.in
6548         * support\librarian\config_in.h
6549         * support\librarian\Makefile.in
6550
6551         Hopefully these ones built the librarian and the rest of sdcc properly:
6552         * Makefile
6553         * Makefile.common.in
6554
6555         Messed up 'configure', so revert to previous version:
6556         * configure
6557         * configure.in
6558
6559 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
6560
6561         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
6562         there, while the mantissa of a double is "only" 53 bits wide.
6563
6564 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6565
6566         Adding sdcclib to the build.  MSVC project coming soon.
6567         Files added/changed:
6568
6569         * support\librarian\clean.mk
6570         * support\librarian\configure
6571         * support\librarian\configure.in
6572         * support\librarian\config_in.h
6573         * support\librarian\Makefile.bcc
6574         * support\librarian\Makefile.in
6575         * support\librarian\sdcclib.c
6576         * Makefile.bcc
6577         * Makefile
6578         * Makefile.common.in
6579         * configure
6580         * configure.in
6581
6582 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6583
6584         Linker now complaints if linked modules have conflicting options, for
6585         example, one compiled using --model-large and another one compiled with
6586         --model-small.  The following files were modified:
6587
6588         * as\mcs51\asdata.c
6589         * as\mcs51\aslink.h
6590         * as\mcs51\asm.h
6591         * as\mcs51\asmain.c
6592         * as\mcs51\asout.c
6593         * as\mcs51\i51pst.c
6594         * as\mcs51\lkdata.c
6595         * as\mcs51\lklibr.c
6596         * as\mcs51\lkmain.c
6597         * as\z80\asdata.c
6598         * as\z80\asm.h
6599         * as\z80\asmain.c
6600         * as\z80\asout.c
6601         * as\z80\z80pst.c
6602         * link\z80\aslink.h
6603         * link\z80\lkdata.c
6604         * link\z80\lklibr.c
6605         * link\z80\lkmain.c
6606         * src\SDCCglue.c
6607
6608 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6609
6610         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
6611         as/mcs51/lklibr.c: Generate a warning when a library is not found.
6612
6613 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
6614
6615         * src/z80/mappings.i: fix _mul[us][int,long] entries
6616
6617 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6618
6619         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
6620
6621 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
6622
6623         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
6624         * support/regression/tests/bitopcse.c: added
6625         fixed warning:
6626         * src/avr/gen.c:
6627         * src/pic/gen.c:
6628         * src/pic16/gen.c:
6629         * src/z80/gen.c:
6630         * src/xa51/gen.c:
6631
6632 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6633
6634         added support for new library format to z80, gbz80 linkers:
6635         *link/z80/aslink.h
6636         *link/z80/lklex.c
6637         *link/z80/lklib.c
6638         *link/z80/lklist.c
6639
6640 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
6641
6642         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
6643         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
6644
6645 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
6646
6647         added DUMMY_READ_VOLATILE:
6648         * src/SDCC.y:
6649         * src/avr/gen.c:
6650         * src/xa51/gen.c:
6651         * src/z80/gen.c:
6652         * src/pic/gen.c:
6653         * src/pic16/gen.c:
6654         * src/mcs51/gen.c:
6655         * src/ds390/gen.c:
6656         * src/SDCCcse.c (algebraicOpts): many improvements
6657         * src/SDCCcse.h: removed algebraicOpts()
6658         * src/SDCCicode.c (picDummyRead): added
6659
6660 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6661
6662         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
6663         "Insufficient space in data memory".
6664
6665 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6666
6667         * src/mcs51/gen.c: fixed bug #771358
6668         * src/z80/gen.c: fixed bug #759087
6669
6670 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
6671
6672         * src/pic16/glue.c: minor cleanup by Vangelis
6673
6674 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6675
6676         * device/include/regc515c.h: fixed #758477
6677         * device/lib/_gptrget.c: saving some cycles in generic pointer get
6678         * device/lib/_gptrput.c: saved a few bytes
6679         * my tab spacing is 8, yours too?)
6680         * device/lib/_ser.c: process RX bytes earlier than TX bytes
6681         * device/lib/serial.c: process RX bytes earlier than TX bytes
6682         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
6683
6684 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6685
6686         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
6687
6688 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6689
6690     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
6691
6692 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
6693
6694         * device/lib/Makefile.in: bad fix, reverted to 1.43
6695
6696 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
6697
6698         * device/lib/Makefile.in: added missing z80 object files
6699
6700 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
6701
6702         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
6703         pic16 progress by Vangelis:
6704         * src/SDCCglobl.h:
6705         * src/SDCCmain.c:
6706         * src/pic/Makefile:
6707         * src/pic:
6708         * pic/Makefile:
6709         * pic16/device.c:
6710         * pic16/device.h:
6711         * pic16/gen.c:
6712         * pic16/gen.h:
6713         * pic16/genarith.c:
6714         * pic16/glue.c:
6715         * pic16/main.c:
6716         * pic16/pcode.c:
6717         * pic16/pcode.h:
6718         * pic16/pcodepeep.c:
6719         * pic16/peeph.def:
6720
6721 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6722
6723     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
6724
6725 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6726
6727     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
6728     added gbz80 build to MSVC project.
6729     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
6730     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
6731     from 8051 stuff and setup so it links using a .lnk file.
6732
6733 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6734
6735     * support/librarian/sdcclib.c: sdcc librarian.
6736     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
6737     with sdcclib.
6738
6739 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6740
6741     * as/mcs51/lkmain.c: properly handle extensions in function afile.
6742
6743 2003-07-02  Borut Razem <borut.razem AT siol.net>
6744
6745         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
6746         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
6747         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
6748         src/xa51/main.c, src/z80/main.c:
6749         virtualization of glue() function: each port has it's own glue function,
6750         which is accessed by do_glue function pointer in PORT.general structure
6751
6752 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
6753
6754         * DS800C400 fun, improved ROM interface and tinibios.
6755
6756 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
6757
6758         * More support for DS80C400. Now includes beginning of interface to ROM.
6759
6760 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
6761
6762         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
6763
6764 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6765
6766         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
6767
6768 2003-06-19  Borut Razem <borut.razem AT siol.net>
6769
6770         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
6771
6772 2003-06-19  Borut Razem <borut.razem AT siol.net>
6773
6774         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
6775         fixed Z80 port - crt0.o: cannot open.
6776
6777 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
6778
6779         * support/Util/MySystem.c (merge_command): revert bad fix
6780
6781 2003-06-18  Borut Razem <borut.razem AT siol.net>
6782
6783         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
6784
6785 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6786
6787         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
6788         option --use-stdout sends errors to stdout instead of stderr.
6789
6790 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
6791
6792         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
6793
6794 2003-06-15  Borut Razem <borut.razem AT siol.net>
6795
6796         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
6797         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
6798         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
6799         fixed width array of pointers replaced with sets;
6800         multiple include and lib paths ared transferred to preprocessor and linker
6801         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
6802         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
6803         fixed width array of pointers
6804         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
6805         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
6806         fixupPath(), getPathDifference()
6807         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
6808         fixed width array of pointers
6809
6810 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
6811
6812         * src/pic16/ralloc.c: fix warnings
6813         * src/pic16/pcode.c: fix warning
6814
6815 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
6816
6817          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
6818         know all the details, but essentially this set of changes enable
6819         the pic16 port to generate movff instructions and generate assembler
6820         directives,
6821         * src/SDCCmain.c:
6822         * src/pic16/gen.c:
6823         * src/pic16/glue.c:
6824         * src/pic16/pcode.c:
6825         * src/pic16/device.c:
6826         * src/pic16/main.c:
6827         * src/pic16/pcode.h:
6828         * src/pic16/pcoderegs.c:
6829         * src/pic16/ralloc.c:
6830         * src/pic16/ralloc.h:
6831
6832 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6833
6834         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
6835         added option --vc, so sdcc errors and warnings are compatible with
6836         Microsoft Visual Studio.
6837
6838 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6839
6840         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
6841           device/lib/libfloat.lib: added atof function.
6842
6843 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
6844
6845         * doc/sdccman.lyx: updated to Lyx 1.3
6846         * doc/cdbfileformat.lyx: updated to Lyx 1.3
6847         * doc/test_suite_spec.lyx: updated to Lyx 1.3
6848         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
6849
6850 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
6851
6852         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
6853
6854 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6855
6856         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
6857           additions to the "related tools/documentation" section
6858
6859 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
6860
6861         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
6862
6863 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
6864
6865         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
6866         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
6867
6868 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
6869
6870         * doc/sdccman.lyx: fix double dash and other minor things
6871         * doc/Makefile: fix double dash
6872
6873 2003-05-28  Karl Bongers(patches from Martin Helmling)
6874         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
6875           condition and ignore commands.
6876
6877 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6878
6879         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
6880           is in parts still quite out of date, I did changes as far as I felt makes sense
6881           for a non-native english speaker.
6882           Please feel free to add to the manual or to correct my changes.
6883         * doc/Makefile: undid touching the date of intermediate tex files.
6884
6885 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6886
6887         * doc/sdccman.lyx: Manual has an index now
6888
6889 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
6890
6891         Finalize muluint/mulsint and mululong/mulslong merging:
6892         * device/lib/_mulint.c
6893         * device/lib/_mullong.c
6894         * device/lib/gbz80/mul.s
6895         * device/lib/gbz80/stubs.s
6896         * device/lib/z80/mul.s
6897         * device/lib/z80/stubs.s
6898         * src/SDCCsymt.c (initCSupport)
6899
6900 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6901
6902         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
6903         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
6904           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
6905           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
6906           instead of /Zm500.
6907
6908 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6909
6910         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
6911           the regression tests I'm not brave enough to enable 245.b, 245.c
6912         * doc/sdccman.lyx: added latex preamble for hyperref package.
6913           Using pdflatex this will give you a hyperlinked pdf file with
6914           bookmarks. (prepend '%' before /usepackage if this breaks something)
6915
6916 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6917
6918          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
6919
6920 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
6921
6922         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
6923
6924 2003-05-21    <johan AT balder>
6925
6926         * src/SDCCglue.c (printIval): fixed bug #739934
6927
6928 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
6929
6930         Applied patch from bug 737905 (renamed yylineo to mylineno):
6931         * src/altlex.c
6932         * src/SDCCast.c
6933         * src/SDCglobl.h
6934         * src/SDCC.lex
6935         * src/SDCCsymt.c
6936         * src/SDCCval.c
6937         * src/pic16/pcode.c: Cleaned warnings
6938         * src/pic16/pcodeflow.c: Cleaned warnings
6939         * src/pic16/pcoderegs.c: Cleaned warnings
6940
6941 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
6942
6943         * src/pic16/pcode.c: Cleaned warnings
6944         * src/pic16/pcodepeep.c: Cleaned warnings
6945         * src/pic16/ralloc.c: Cleaned warnings
6946
6947 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
6948
6949         * doc/sdccman.lyx: fixed bug 739745
6950         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
6951
6952 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
6953
6954         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
6955         it can be defined with CFLAGS when running configure
6956         * src/SDCCmain.c: fixed compiling + linking with object files
6957
6958 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
6959
6960         * configure.in: configure for pic16 port,
6961             added --disable-pic16-port
6962         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
6963         * src/SDCCmain.c: linkOptions is changed to set *,
6964             added if/endif conditional macros to remove options help
6965             messages from optionsTable when a port is not configured, added
6966             support for the PIc16 port in the ports table, when executing
6967             the compiler with no port specified on command line, a default
6968             port is selected with the new macro DEFAULT_PORT which is
6969             defined in port.h, in setDefaultOptions() linkOptions is removed
6970             from initialization assignment, since now it is a set,
6971             parseCmdLine uses setParseWithComma for linkOptions, in
6972             linkEdit() linkOptions are accessed with new function indexSet()
6973             which returns the i'th item of a set variable. See SDCCset.c, in
6974             linkEdit() when calling buildCmdLine(), added linkOptions as
6975             last argument. Now users can pass arguments to gplink via the
6976             -Wl option, main() uses pic16glue() to glue up pic16 programs
6977         * src/SDCCpeeph.c: various changes to support pic16
6978         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
6979             return the i'th item of the set
6980         * src/SDCCset.h: added function prototype for indexSet()
6981         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
6982         * src/clean.mk: added pic16 in CLEANALLPORTS variable
6983         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
6984             added macro DEFAULT_PORT
6985         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
6986         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
6987             generated
6988         * src/pic16/glue.c: commented out some error producing lines
6989         * src/pic16/main.c: __config directives are commented out to stop
6990             gpasm complaining and test the linkage with gplink, _linkCmd and
6991             _asmCmd changed to be more gplink and gpasm friendly
6992         * src/pic16/peeph.def: peep rule 3 is commented out, since it
6993             produced an error when parsed, peep rule 12 is added to utilize
6994             movff, but it is commented out since the pCode does not support
6995             yet a command with 2 address arguments
6996
6997 2003-05-18    <johan AT balder>
6998
6999         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7000         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7001 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
7002
7003         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
7004   Added feature to script commands from file.
7005
7006 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
7007
7008         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
7009         * src/SDCCutil.c: include ctype.h for win32
7010
7011 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
7012
7013         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
7014
7015 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
7016
7017         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
7018   Fixed so you can set breakpoints prior to run, run does not stop
7019   on entry now.  Add tbreak.  Other enhancements and fixes for use
7020   with ddd.
7021
7022 2003-05-12  Borut Razem <borut.razem AT siol.net>
7023
7024         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
7025
7026 2003-05-11  Borut Razem <borut.razem AT siol.net>
7027
7028         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
7029         the path of bin directory, so that PATH is the only env. variable, which has to be set
7030         in case of standard installation.
7031         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
7032         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
7033         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
7034
7035 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7036
7037         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
7038         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
7039         temp files are in the port dir; clean the gen/test directory when
7040         generating new test.c
7041         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
7042         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
7043         * support/regression/tests/zeropad.c: added
7044
7045 2003-05-09    <johan AT balder>
7046
7047         * src/SDCCglue.c: fixed bug #597940
7048
7049 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
7050
7051         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7052   cache sfr, optimize next,step, fix off by one sourceline,
7053   support ddd list function.
7054         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
7055
7056 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7057
7058         * support/regression/HTMLgen.py: added compare_s2f()
7059         * support/regression/Makefile: redo 1.27
7060         * support/regression/generate-cases.py: redo 1.5
7061
7062 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
7063
7064         * support/regression/tests/float.c: workaround 33 bit hex constant
7065         * support/regression/tests/simplefloat.c: fix division for host
7066
7067 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
7068
7069         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
7070         that tame's the PIC's over-aggressive optimizer.
7071
7072 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7073
7074          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
7075          support for MSVC.
7076
7077 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
7078
7079         Initial support for DS80C400. "Hello world" runs on TINIm400
7080         (with polled I/O).
7081
7082 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
7083
7084          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7085          * Some notes on ddd usage added in debugger/README
7086          Martin Helmling adding more features and fixes for ddd GUI debugger.
7087          Code added for nexti, stepi, up, down, and other adjustments.
7088
7089 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
7090
7091         * src/pic/pCodepeep.c non-wildcard asmops are now handled
7092         * src/pic/peeph.def Added two rules to optimize carry manipulation
7093         * src/pic/* removed debug printfs
7094
7095 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
7096
7097         * debugger/mcs51/cmd.c: added header newalloc.h
7098
7099 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
7100
7101         * as/Makefile: new EXEEXT
7102         * as/z80/Makefile: remove trailing slash of BUILDIR
7103         * as/z80/clean.mk: new EXEEXT
7104         * Makefile.common.in: add to CFLAGS (and others), don't replace it
7105         * support/cpp2/Makefile.in: new EXEEXT
7106         * src/pic/glue.c (pic14emitRegularMap): fixed warning
7107
7108 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
7109
7110         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
7111         EXEEXT was introduced to fix all related problems with targets
7112         "clean", "install" and "uninstall"; a couple of further flaws
7113         especially with "clean" have been fixed too
7114         * as/mcs51/Makefile.in
7115         * as/mcs51/clean.mk
7116         * as/z80/Makefile
7117         * Makefile
7118         * clean.mk
7119         * debugger/mcs51/Makefile.in
7120         * debugger/mcs51/clean.mk
7121         * link/z80/Makefile
7122         * link/z80/Makefile.in
7123         * link/z80/clean.mk
7124         * link/Makefile
7125         * packihx/Makefile.in
7126         * packihx/clean.mk
7127         * sim/ucsim/Makefile
7128         * sim/ucsim/clean.mk
7129         * sim/ucsim/avr.src/Makefile.in
7130         * sim/ucsim/avr.src/clean.mk
7131         * sim/ucsim/s51.src/Makefile.in
7132         * sim/ucsim/s51.src/clean.mk
7133         * sim/ucsim/xa.src/Makefile.in
7134         * sim/ucsim/xa.src/clean.mk
7135         * sim/ucsim/z80.src/Makefile.in
7136         * sim/ucsim/z80.src/clean.mk
7137         * sim/ucsim/main_in.mk
7138         * sim/ucsim/packages_in.mk
7139         * sim/ucsim/gui.src/Makefile.in
7140         * sim/ucsim/gui.src/serio.src/Makefile.in
7141         * sim/ucsim/gui.src/serio.src/clean.mk
7142         * src/Makefile.in
7143         * src/clean.mk
7144         * support/cpp2/Makefile.in
7145         * support/cpp2/clean.mk
7146         * support/makebin/Makefile
7147         * support/makebin/clean.mk
7148         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
7149         * doc/sdccman.lyx: --program-suffix no longer needed
7150
7151 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
7152
7153          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
7154          Martin Helmling added support for ddd GUI debugger.
7155          Code added to display assembly, set variables, and other commands
7156          to interface to ddd.
7157
7158 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
7159
7160         * as/Makefile: fix target clean
7161         * as/clean.mk: fix target clean
7162         * as/z80/clean.mk: fix target clean
7163
7164 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
7165
7166         * Makefile.common.in: added  AT EXEEXT AT
7167         * configure.in: removed all mingw32 stuff
7168         * configure: rebuilt from configure.in
7169         * doc/sdccman.lyx: updated section "installation"
7170         * support/scripts/sdcc_mingw32: adapted to configure
7171         * support/scripts/sdcc_cygwin_mingw32: added
7172
7173 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
7174
7175         * src/pic Added object file support for the PIC port
7176         * src/pic Applied patch from Craig Franklin (this started the object file support)
7177         * src/regression Updated the PIC regression tests for object files
7178
7179 2003-04-20  Borut Razem <borut.razem AT siol.net>
7180
7181         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
7182           lklex.c: In function `getfid':
7183           lklex.c:203: warning: array subscript has type `char'
7184         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
7185           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
7186         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
7187           stack handling macros
7188
7189 2003-04-19  Borut Razem <borut.razem AT siol.net>
7190
7191         * "handling space characters in file path" task:
7192         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
7193         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
7194         * support/Util/MySystem.h: make it self-sufficient
7195         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
7196           src/z80/main.c, sdcc/as/mcs51/lklex.c:
7197           handling space characters in file path
7198         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
7199           (it will be used by assemblers, which have their own includes, e.g. gpasm)
7200         * support/Util/MySystem.c: handling space characters in executable's path
7201
7202 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
7203
7204         * as/z80/Makefile: fix permanent rebuild of z80
7205         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
7206         * support/regression/tests/bitfields.c: added Johan's bitfields.c
7207
7208 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
7209
7210         * src/SDCCopt.c: add special case optimization to replace modulo by
7211           a power of two with a bitwise AND.
7212
7213 2003-04-18    <johan AT balder>
7214
7215         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
7216
7217 2003-04-17    <johan AT balder>
7218
7219         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
7220         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
7221
7222 2003-04-13  Borut Razem <borut.razem AT siol.net>
7223
7224         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
7225         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
7226           fixed mingw problem in adl_NORMALIZE_PATH
7227
7228 2003-04-12  Borut Razem <borut.razem AT siol.net>
7229
7230         * fixed "#pragma SAVE/RESTORE can not be nested":
7231         * src/SDCC.lex: reworked pragma handling functions
7232         * sdcc/src/SDCCglobl.h: reworked stack handling macros
7233         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
7234
7235 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7236
7237         * src/SDCCutil.c (pathEquivalent): defined but not used
7238         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
7239         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
7240         * configure: rebuilt from configure.in
7241         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7242         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7243         * device/include/Makefile.in: replace sdcc_datadir
7244         * device/lib/Makefile.in: replace sdcc_datadir
7245         * Makefile.common.in: add LDFLAGS from configure
7246         * packihx/Makefile.in: use LDFLAGS
7247         * src/Makefile.in: use LDFLAGS
7248         * support/cpp2/Makefile.in: add LDFLAGS from configure
7249         * support/makebin/Makefile: use LDFLAGS
7250         * .version: bumped version number to 2.3.5
7251
7252 2003-04-12  Borut Razem <borut.razem AT siol.net>
7253
7254         * completed "different paths" task:
7255         * src/SDCCmacro.c: fixed bug in handling quotes
7256         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
7257         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
7258
7259 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7260
7261         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
7262
7263 2003-04-11 kevin Vigor <kevin AT vigor.nu>
7264
7265         * ds390/gen.c ds390/peeph.def: fix bug 706781
7266
7267 2003-04-11  Borut Razem <borut.razem AT siol.net>
7268
7269         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
7270
7271 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
7272
7273         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
7274         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
7275          set - this bit used to not be set...).
7276         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
7277           bad code in PIC Port
7278         * src/regression/and2.c added to test bug 609268
7279         * src/regression/Makefile added and2.c to regression test
7280
7281
7282 2003-04-08    <johan AT CP255758-A>
7283
7284         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
7285         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
7286         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
7287
7288 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
7289
7290         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
7291         fix bug #487815
7292         * support/cpp2/Makefile.in: fix bug #487815
7293         * configure: rebuilt from configure.in
7294         * Makefile.common.in: docdir changed, new path suffixes
7295         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7296         * sdcc_vc_in.h: reflect changes from sdccconf.h
7297         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
7298         * src/SDCCutil.h: remove BINDIR hack
7299         * doc/sdccman.lyx: update new path hierarchy
7300
7301 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7302
7303         * src/SDCCpeeph.c: added okToRemoveSLOC test
7304
7305 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7306
7307         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
7308
7309 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7310
7311         * src/SDCCpeeph.c: added labelIsReturnOnly test
7312         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
7313
7314 2003-04-05    <johan AT balder>
7315
7316         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
7317         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
7318         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
7319         * src/SDCCast.c: fixed a warning
7320         * src/SDCCast.h: fixed a warning
7321         * src/SDCCicode.c (operandFromAst): fixed a warning
7322
7323 2003-04-04    <johan AT balder>
7324
7325         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
7326         * src/SDCCast.c (decorateType): fixed bug #715076
7327         * src/SDCC.y: fixed bug #702907
7328
7329 2003-04-03    <johan AT balder>
7330
7331         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
7332         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
7333         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
7334         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
7335         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
7336
7337 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
7338
7339         * _decdptr.c: fix return values
7340         * _gptrget.c: fix return values
7341         * _gptrgetc.c: fix return values
7342         * _gptrput.c: fix return values
7343         * _mulint.c: fix return values
7344         * as/z80/Makefile: fix 'make -j' problem
7345
7346 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
7347
7348         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
7349         * configure.in: big cleanup, updated to autoconf 2.5x
7350         * configure: rebuilt from configure.in
7351         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7352         * sdcc_vc_in.h: reflect changes from sdccconf.h
7353         * doc/Makefile: fixed a flaw in "make install"
7354
7355 2003-04-02    <johan AT balder>
7356
7357         * src/ds390/gen.c (genCmp): no comments
7358         * src/mcs51/gen.c (genCmp): no comments
7359         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
7360         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
7361
7362 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
7363
7364         * support/regression/generate-cases.py: place generated file in given sub directory
7365         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
7366         * support/regression/Makefile: improvements for 'make -j';
7367         side effect: it's simpler and faster now
7368
7369 2003-03-31  Borut Razem <borut.razem AT siol.net>
7370
7371         * src/z80/main.c: link-{port} and as-{port} defined without path
7372         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
7373
7374 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
7375
7376         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
7377
7378 2003-03-30  Borut Razem <borut.razem AT siol.net>
7379
7380         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
7381           changed type of list parameter to set
7382         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
7383         * src/port.h: changed type of do_assemble() parameter to set
7384         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
7385           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
7386           definition of "cppoutfilename" macro with NULL value in preProcess()
7387         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
7388         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
7389         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
7390           replaced with set *binPathSet
7391         * shash_add() deallocates the item, if allready exsists, before adding the new one
7392         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
7393
7394 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
7395
7396         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
7397           a nested for loop bug in the PIC port
7398         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
7399           for loops
7400
7401 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
7402
7403         * support/Util/dbuf.h: remove C++ stuff to make it portable
7404
7405 2003-03-28  Borut Razem <borut.razem AT siol.net>
7406
7407         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
7408           literal strings in stringLiteral()
7409         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
7410         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
7411           to the project
7412
7413 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
7414
7415         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
7416
7417 2003-03-26    <johan AT balder>
7418
7419         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
7420         * src/ds390/gen.c (saveRegisters): catched symbol abuse
7421         * src/SDCCast.c (decorateType): fixed " -v < 3"
7422
7423 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
7424
7425         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
7426         Added Lenny Story's debug infrastructure changes:
7427         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
7428         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
7429         * src/cdbFile.c: added
7430         * src/SDCCdebug.c: added
7431         * src/SDCCdebug.h: added
7432         * src/SDCCast.c (createFunction)
7433         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
7434         * src/SDCCmain.c (parseCmdLine, main)
7435         * src/SDCCmem.c (redoStackOffsets)
7436         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
7437         * src/SDCCsymt.h
7438         * src/common.h
7439         * src/avr/gen.c (genAVRCode)
7440         * src/ds390/gen.c (gen390Code)
7441         * src/mcs51/gen.c (gen51Code)
7442         * src/pic/gen.c (genpic14Code)
7443         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
7444         * src/xa51/gen.c (genXA51Code)
7445         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
7446
7447 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7448
7449         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
7450         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
7451
7452 2003-03-22    <johan AT balder>
7453
7454         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
7455
7456 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
7457
7458         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
7459         * doc/cdbfileformat.lyx: added, written by Lenny Story
7460         * doc/Makefile: added cdbfileformat.lyx
7461         * doc/clean.mk: added cdbfileformat.lyx
7462
7463 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
7464
7465         * src/mcs51/peeph.def: fix bug #705773
7466
7467 2003-03-20    <johan AT balder>
7468
7469         An sfr/sbit can have an "at #" AND an initializer
7470         * src/SDCCsymt.c (checkSClass):
7471         * src/SDCCmem.c (allocGlobal):
7472         * src/SDCCmem.c (allocLocal):
7473         * src/SDCCast.c (createBlock):
7474
7475 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
7476
7477         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
7478
7479 2003-03-16    <johan AT balder>
7480
7481         Undid the hackup of const and volatile, the problem is much bigger
7482         * src/SDCC.y:1.65
7483         * src/SDCCast.c:1.171
7484         * src/SDCCglue.c:1.138
7485         * src/SDCCicode.c:1.146
7486         * src/SDCCsymt.c:1.150
7487         * src/SDCCval.c:1.65
7488
7489 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
7490
7491         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
7492         * src/ds390/gen.c (genAddrOf): fixed bug #704087
7493
7494 2003-03-13    <johan AT balder>
7495
7496         Hackup const and volatile modifiers in type chains a bit:
7497         * src/SDCC.y:1.63
7498         * src/SDCCast.c:1.169
7499         * src/SDCCglue.c:1.136
7500         * src/SDCCicode.c:1.143
7501         * src/SDCCsymt.c1.146
7502         * src/SDCCsymt.h1.59
7503         * src/SDCCval.c:1.63
7504
7505 2003-03-12    <johan AT balder>
7506
7507         * src/SDCCBBlock.h: more LRH debugging junk
7508         * src/SDCCcflow.h: more LRH debugging junk
7509         * src/SDCCloop.c: more LRH debugging junk
7510         * src/SDCC.y (struct_declaration): fixed bug #697590
7511         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
7512         * src/ds390/gen.c (aopForRemat): fixed bug #700031
7513         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
7514
7515 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7516         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
7517         test function names must now match exactly).
7518         * src/SDCCcse.c: added special case in findCheaperOp to allow
7519         extending a short integer. Makes less awful code for bug 700121 test case.
7520
7521 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7522
7523         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
7524         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
7525
7526 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7527
7528         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
7529         actually called (operandsNotEqual() was called for all
7530         operandsNotEqualX tests).
7531
7532 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7533
7534         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
7535         with shorter literals. Fixes bug 700121.
7536
7537 2003-03-11    <johan AT balder>
7538
7539         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
7540
7541 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
7542
7543         * src/SDCCloop.c (mergeRegions): an evil beast is dead
7544         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
7545
7546 2003-03-10  Borut Razem <borut.razem AT siol.net>
7547
7548         * src/SDCCmain.c: pipe preprocessor's output
7549         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
7550         * sdcc_vc_in.h: define pclose as _pclose for WIN32
7551         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
7552         which closes all pipes in pipeSet set
7553         * src/SDCCset.c: free deleted item in function deleteSetItem()
7554         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
7555         moved from z80 to src subproject
7556         * .version: increased version number to 2.3.4
7557
7558 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
7559
7560         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
7561         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
7562         * support/regression/ports/xa51/spec.mk: fix typo
7563
7564 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
7565
7566         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
7567
7568 2003-03-09  Borut Razem <borut.razem AT siol.net>
7569
7570         * src/SDCCmain.c: pipe preprocessor's output
7571         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
7572         * sdcc_vc_in.h: define pclose as _pclose for WIN32
7573         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
7574         which closes all pipes in pipeSet set
7575         * src/SDCCset.c: free deleted item in function deleteSetItem()
7576         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
7577         moved from z80 to src subproject
7578
7579 2003-03-09  Borut Razem <borut.razem AT siol.net>
7580
7581         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
7582         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
7583         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
7584         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
7585         * src/SDCCglobl.h: unification of WIN32 native definitions
7586
7587 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7588
7589         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
7590
7591 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
7592
7593         * src/configure.in:   check for endianess (even while cross-compiling)
7594         * src/configure:      check for endianess (even while cross-compiling)
7595         * src/configure_in.h: check for endianess (even while cross-compiling)
7596         * src/avr/gen.c:        remove old endianess stuff
7597         * src/mcs51/gen.c:      remove old endianess stuff
7598         * src/ds390/gen.c:      remove old endianess stuff
7599         * src/pic/gen.c:        remove old endianess stuff
7600         * src/pic/genarith.c:   remove old endianess stuff
7601         * src/pic/glue.c:       fix endianess check
7602         * src/pic16/gen.c:      remove old endianess stuff
7603         * src/pic16/genarith.c: remove old endianess stuff
7604         * src/pic16/glue.c:     fix endianess check
7605         * src/xa51/gen.c:       remove old endianess stuff
7606         * src/z80/gen.c:        fix endianess check
7607         * src/SDCCglue.c:       fix endianess check
7608         * src/ds390/peeph.def: fix bug 700036
7609
7610 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
7611
7612         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
7613         * src/configure: find appropriate data-types on host for SDCC's int and long
7614         * src/configure.in: find appropriate data-types on host for SDCC's int and long
7615         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
7616         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
7617
7618 2003-03-07    <johan AT balder>
7619
7620         Just a big NOOP:
7621                 some minor cleanups before the big shot
7622                 OP_DEFS and OP_USES now use Kevin's protection
7623                 new option --nolabelopt
7624
7625         * src/SDCCBBlock.c:
7626         * src/SDCCast.c,:
7627         * src/SDCCcflow.c:
7628         * src/SDCCcse.c:
7629         * src/SDCCicode.c:
7630         * src/SDCCicode.h:
7631         * src/SDCClabel.c:
7632         * src/SDCCloop.c:
7633         * src/SDCCmain.c:
7634         * src/ds390/ralloc.c:
7635         * src/mcs51/ralloc.c:
7636         * src/pic/ralloc.c:
7637         * src/xa51/ralloc.c:
7638         * src/z80/ralloc.c:
7639
7640 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
7641
7642         * src/pic/pcode.c (get_op): fix 64 bit warnings
7643         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
7644         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
7645         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
7646         * support/regression/tests/malloc.c: fix 64 bit warnings
7647
7648 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
7649
7650         * src/mcs51/gen.c (genMinus): fixed bug 696436
7651
7652 2003-03-02  Borut Razem <borut.razem AT siol.net>
7653
7654         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
7655
7656 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
7657
7658         * configure.in: test for mkstemp
7659         * sdccconf_in.h: add HAVE_MKSTEMP
7660
7661 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
7662
7663         * device/include/ctype.h: removed warning while using --stack-auto
7664         * device/include/malloc.h: removed warning while using --stack-auto
7665         * device/include/string.h: removed warning while using --stack-auto
7666
7667 2003-02-23  Borut Razem <borut.razem AT siol.net>
7668
7669         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
7670         because NDEBUG is defined (see man assert)
7671         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
7672
7673 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7674
7675         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
7676         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
7677
7678 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7679
7680         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
7681         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
7682
7683 2003-02-18    <johan AT balder>
7684
7685         * as/mcs51/asmain.c (asmbl): module can start with a digit
7686         * as/z80/asmain.c (asmbl): module can start with a digit
7687
7688 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
7689
7690         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
7691         * src/asm.c: fix pipe() for Mingw32
7692
7693 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
7694
7695         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
7696         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
7697         make -V work again; --c1mode reads now from stdin
7698         * doc/sdccman.lyx: added --c1mode
7699         * support/Util/SDCCerr.c: new messages for c1 mode
7700         * support/Util/SDCCerr.h: new messages for c1 mode
7701         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
7702
7703 2003-02-15    <johan AT balder>
7704
7705         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
7706
7707 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
7708
7709         * doc/sdccman.lyx: Environment variables, -o and other minor things
7710
7711 2003-02-14    <johan AT balder>
7712
7713         * src/xa51/main.c: before anyone really tries to use it :)
7714
7715         * Install doc's in share/sdcc/doc
7716         * removed some obsolete files
7717         * Do a proper make distclean and uninstall
7718         M Makefile.common.in
7719         R sdccbuild.sh
7720         M as/Makefile
7721         M device/include/Makefile.in
7722         M device/lib/Makefile.in
7723         M doc/sdccman.lyx
7724         M link/Makefile
7725         M sim/ucsim/doc/Makefile.in
7726         M src/clean.mk
7727         R src/avr/peeph.rul
7728         R src/xa51/peeph.rul
7729         M support/cpp2/Makefile.in
7730         M support/makebin/Makefile
7731
7732
7733 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
7734
7735         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
7736
7737 2003-02-10  Borut Razem <borut.razem AT siol.net>
7738
7739         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
7740         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
7741         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
7742         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
7743         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
7744         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
7745         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
7746         src/z80/Makefile.bcc: Borland Makefile cleanup
7747         * as/z80/Makefile.bcc: Added Borland Makefile
7748         * support/cpp2/borland.h: Removed
7749
7750 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
7751
7752         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
7753         * src/SDCC.lex: new pragma NOIV
7754         * src/SDCCglobl.h: new pragma NOIV
7755         * src/SDCCmem.c: new pragma NOIV
7756
7757 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
7758
7759         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
7760
7761 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
7762
7763         * src/SDCCmain.c: signal handling is switched off by --debug
7764         * doc/Makefile: small fix for install; use clean.mk again
7765         * doc/clean.mk: clean *.pdf and *.html too
7766
7767 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
7768
7769         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
7770         * device/lib/printfl.c: fix a ds390 bug by making it portable
7771         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
7772         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
7773         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
7774         * debugger/mcs51/cmd.c: converted multi-line string literals
7775         * sim/ucsim/globals.cc: converted multi-line string literals
7776         * src/SDCCmain.c: introduced signal handler to remove temp files
7777         * doc/Makefile: small tweaks, implement clean
7778         * doc: removed generated files
7779
7780 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7781
7782         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
7783         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
7784         Address Record is not correctly generated for DS390."
7785
7786 2003-02-02  Borut Razem <borut.razem AT siol.net>
7787
7788         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
7789         * as/mcs51/asm.h: fixed compilation with Borland C
7790         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
7791         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
7792         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
7793         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
7794         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
7795         src/z80/Makefile.bcc: delete $(LIB) only if exist
7796         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
7797
7798 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
7799
7800         * device/include/malloc.h: introduced NULL
7801         * device/include/string.h: introduced NULL
7802         * device/include/stdlib.h: introduced NULL
7803         * device/lib/_memcpy.c: removed NULL
7804         * device/lib/_strcat.c: removed NULL
7805         * device/lib/_strchr.c: removed NULL
7806         * device/lib/_strcmp.c: removed NULL
7807         * device/lib/_strcpy.c: removed NULL
7808         * device/lib/_strcspn.c: removed NULL
7809         * device/lib/_strlen.c: removed NULL
7810         * device/lib/_strncat.c: removed NULL
7811         * device/lib/_strncmp.c: removed NULL
7812         * device/lib/_strncpy.c: removed NULL
7813         * device/lib/_strpbrk.c: removed NULL
7814         * device/lib/_strrchr.c: removed NULL
7815         * device/lib/_strspn.c: removed NULL
7816         * device/lib/_strstr.c: removed NULL
7817         * device/lib/_strtok.c: removed NULL
7818         * device/lib/malloc.c: removed NULL, include own header
7819
7820 2003-02-02    <johan AT balder>
7821
7822         * 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
7823         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
7824         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
7825         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
7826         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
7827         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
7828
7829 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7830
7831         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
7832         area 'DATA'"
7833
7834 2003-02-01    <johan AT balder>
7835
7836         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
7837
7838 2003-01-31    <johan AT CP255758-A>
7839
7840         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
7841
7842 2003-01-30    <johan AT balder>
7843
7844         * src/SDCCBBlock.c: automatic bug detection
7845         * src/SDCCicode.c: automatic bug detection
7846
7847 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7848
7849         * src/SDCCglobl.h:   now --xram-size 0 works
7850         * src/SDCCmain.c:    now --xram-size 0 works
7851
7852 2003-01-29    <johan AT balder>
7853
7854         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
7855
7856 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7857
7858         * as/mcs51/aslink.h: Added options --xram-size and --code-size
7859         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
7860         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
7861         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
7862         * src/SDCCglobl.h:   Added options --xram-size and --code-size
7863         * src/SDCCmain.c:    Added options --xram-size and --code-size
7864
7865 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
7866
7867         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
7868         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
7869
7870 2003-01-27    <johan AT balder>
7871
7872         * src/SDCC.y: fixed bug #613764
7873
7874 2003-01-26    <johan AT balder>
7875
7876         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
7877         * src/SDCCsymt.h: fixed bug #673374
7878         * src/SDCCglue.c: fixed bug #661910
7879         * src/SDCCast.c: fixed bug #458099 and 673374
7880
7881 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
7882
7883         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
7884         * as/mcs51/strcmpi.h: added
7885         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
7886         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
7887         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
7888         * as/mcs51/assym.c: strcmpi -> as_strcmpi
7889         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
7890         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
7891         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
7892         * as/mcs51/Makefile.aslink: new module strcmpi
7893         * as/mcs51/Makefile.asx8051: new module strcmpi
7894         * as/mcs51/Makefil.bcc: new module strcmpi
7895         * as/mcs51/Makefile.in: new module strcmpi
7896         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
7897
7898 2003-01-26    <johan AT balder>
7899
7900         * src/SDCCglue.c: reverted back to 1.124
7901         * src/SDCCast.c: reverted back to 1.156
7902         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
7903
7904 2003-01-25    <johan AT balder>
7905
7906         * src/SDCCglue.c: A better fix for bug #661910
7907         * src/SDCCast.c: A better fix for bug #661910
7908         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
7909
7910 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
7911
7912         * src/Makefile.in: remove spawn.o
7913         * src/SDCCmain.c: remove spawn.h
7914         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
7915         * src/spawn.c: removed
7916         * src/spawn.h: removed
7917         * support/regression/ports/ds390/spec.mk: link with -r
7918
7919 2003-01-24    <johan AT CP255758-A>
7920
7921         * src/ds390/gen.c (aopOp): fixed bug #667458
7922         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
7923         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
7924         (createIvalCharPtr): an ival doesn't always have a storage class anymore
7925
7926 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
7927
7928         * src/mcs51/peeph.def: better assembler identation by Frieder
7929         * src/mcs51/gen.c: better assembler identation by Frieder
7930
7931 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
7932
7933         * as/z80/string.h: removed for gcc 3.2
7934         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
7935         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
7936
7937 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
7938
7939         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
7940         * src/SDCCpeeph.c (replaceRule): fix bug #663503
7941         * support/regression/Makefile: separate temp files for ports
7942         * support/regression/generate-cases.py: separate temp files for ports
7943         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
7944         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
7945
7946 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
7947
7948         * moved tinitalk to device/examples/ds390
7949
7950 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
7951
7952         * as/mcs51/lkmem.c: rflag is for DS390
7953         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
7954         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
7955                          (linkEdit): move mem- and map-files the same way as ihx-files
7956         * src/z80/main.c (_setDefaultOptions): removed --generic
7957         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
7958         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
7959         * src/pic/glue.c (picglue): --c1mode works again
7960         * src/pic16/glue.c (pic16glue): --c1mode works again
7961         * src/asm.c (printCLine): fix #660034
7962
7963 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
7964
7965         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
7966         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
7967         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
7968         * as/mcs51/lkmem (summary): better fix for sp problem
7969         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
7970         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
7971         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
7972                                               remove --stack-after-data
7973
7974 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
7975
7976         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
7977         * src/SDCCutil.c (join): ugly bug: missing '\0'
7978         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
7979
7980 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
7981
7982         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
7983         * src/port.h: typo
7984         * src/pic/main.c (_asmCmd): gpasm supports -o
7985         * src/z80/main.c: more general macros
7986         * device/lib/Makefile.in: remove intermediate files
7987
7988 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
7989
7990         * .version: Bumped version number to 2.3.3
7991         * src/SDCCBBlock.c: new option -o
7992         * src/SDCCglobl.h: new option -o
7993         * src/SDCCglue.c: new option -o
7994         * src/SDCCmain.c: new option -o
7995         * src/asm.c: new option -o
7996         * src/ds390/main.c: new option -o
7997         * src/pic/glue.c: new option -o
7998         * src/pic/pcode.c: new option -o
7999         * src/pic/ralloc.c: new option -o
8000         * src/pic16/glue.c: new option -o
8001         * src/pic16/pcode.c: new option -o
8002         * src/pic16/ralloc.c: new option -o
8003         * src/z80/main.c: new option -o
8004         * device/lib/Makefile.in: use -o
8005         * support/regression/ports/ds390/spec.mk: use -o
8006         * support/regression/ports/gbz80/spec.mk: use -o
8007         * support/regression/ports/mcs51/spec.mk: use -o
8008         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
8009         * support/regression/ports/z80/spec.mk: use -o
8010         * support/regression/ports/ucz80/spec.mk: use -o
8011         * support/regression/ports/xa51/spec.mk: use -o
8012         * support/regression/fwk/lib/timeout.c: fix usage string
8013
8014 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
8015         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
8016
8017 2003-01-07    <johan AT balder>
8018
8019         * src/SDCCast.c (decorateType): fixed bug #600035
8020
8021 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
8022         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
8023         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
8024         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
8025         * src/pic/pcode.c: outcommented unused variable to remove warnings
8026         * src/pic/ralloc.c: outcommented unused variable to remove warnings
8027
8028 2003-01-06    <karl AT turbobit.com>
8029         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
8030    regression tests.
8031
8032 2003-01-06    <johan AT balder>
8033
8034         * src/SDCCicode.c: fixed array add
8035
8036 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
8037         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
8038         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
8039
8040 2003-01-04    <johan AT balder>
8041
8042         * src/SDCCval.c (getNelements): fixed the initialized array of structures
8043
8044 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8045         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
8046
8047 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8048         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
8049         * support/regression/tests/bug-524697.c: fit mem usage into 8032
8050
8051 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8052         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
8053
8054 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
8055         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
8056
8057 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
8058         * src/mcs51/main.c: removed {bindir}{sep} from aslink
8059
8060 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8061
8062     * in \sdcc\as\mcs51\ changed these files in order to create an
8063     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
8064     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
8065     following files to include the previous two files: aslink.dsp,
8066     Makefile.aslink, Makefile.bcc, and Makefile.in.
8067
8068     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
8069     .adb instead of .cdb
8070
8071 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8072
8073         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
8074         value from option --iram-size.
8075
8076 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8077
8078         * \sdcc\as\mcs51\lklist.c: added boundary check before using
8079         dram[] array.
8080
8081 2002-09-18    <wiml AT hhhh.org>
8082
8083         * SDCClrange.h: exposed setFromRange() and setToRange()
8084         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
8085           packRegsForAccUse() (bug 542397)
8086         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
8087           multiple times and emitting the fetch operations more than once
8088           added aopGetUsesAcc() function to allow binary operators to
8089           fetch their operands in the correct order; made genMinus() emit
8090           compact code for X = LITERAL - Y
8091
8092 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8093         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
8094         sprintf() in line 1267.
8095
8096 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8097         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
8098         like ports.
8099
8100 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8101         Changes to aslink (All the changes are marked with 'JCF'):
8102
8103         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
8104         summary().
8105
8106         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
8107         area BSEG.  Also moves, if possible, the DATA area down into the internal
8108         ram so more space is available.
8109
8110         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
8111         sflag.
8112
8113         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
8114         not bytes.  Function summary() which creates a memory usage summary
8115         file with extension .mem.  Reports of overlaping stack and small stack
8116         size.  If the space for the stack is less than 16 bytes aslink trows a
8117         warning.
8118
8119         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
8120         the 8051.  Option 'y' for memory summary output file.
8121
8122         Changes to sdcc (All the changes are marked with 'JCF'):
8123
8124         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
8125
8126         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
8127         overlaying area for it (uses RegBankUsed[4]).
8128
8129         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
8130         bank zero as used by default.  By default aslink locates the stack
8131         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
8132         the creation of the .mem file.  Delegates the allocation of data area
8133         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
8134         the begining of the stack area to aslink.
8135
8136         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
8137         glue() in SDCCglue.c creates an area for it.
8138
8139 2002-09-03  Borut Razem <borut.razem AT siol.net>
8140         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
8141         sdcc/src/pic/glue.c:
8142         introduced atexit() handler for teporay files removal in case of
8143         errors, assertions, ...
8144
8145 2002-08-29  Borut Razem <borut.razem AT siol.net>
8146         * sdcc/support/cpp2/auto-host_vc_in.h:
8147         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
8148         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
8149         Maybe there is a similar problem with BORLANDC? It should be checked!
8150
8151         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
8152         corrected improper use of assert: the assignment to clr variable was done inside the assert.
8153         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
8154         was not executed, and the compiler (cl) launched a warning:
8155         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
8156
8157 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8158         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
8159
8160 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
8161         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
8162
8163         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8164           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
8165           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
8166           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8167           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
8168           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
8169           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
8170         - added Release configuration in VS projects
8171         - review of compiler an linker options
8172         - VC .exe files are generated in bin_vc directory, not to interfere
8173           with binaries generated from other projects (cygwin, mingw, bcc ...)
8174
8175         * sdcc/src/yacc.dsp: added
8176
8177         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
8178         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
8179         and insert the version number definitions from .version
8180
8181         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
8182
8183         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
8184         added - genarate auto-host.h using auto-host_vc_in.h as template
8185
8186         * sdcc/sdcc_vc.h,
8187         removed from CVS, generated automatically
8188
8189 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
8190         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
8191
8192 2002-08-11  Borut Razem <borut.razem AT siol.net>
8193         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
8194
8195 2002-08-10  Borut Razem <borut.razem AT siol.net>
8196         * src/SDCCmain.c (main):
8197         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
8198         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
8199         The consequence was that some temporary files were not removed.
8200
8201         * src/SDCCglue.c:
8202         unification of code in functions tempfilename() and tempfile():
8203         function tempnam() is defined in Visual Studio 6.0 and .NET
8204
8205         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
8206
8207         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8208           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
8209         - removed compiler command line option /WX: Treats all warnings as errors
8210         - update a list of source files, included into the project
8211
8212         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8213           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
8214         changed project type to Generic Project so that can be correcly converted to VS.NET project
8215
8216         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
8217
8218         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
8219
8220         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
8221
8222         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
8223         added return 0 statements after assert() to make compiler happy
8224
8225         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
8226         added newline in the def file to keep MSC compiler satisfied
8227
8228         * sdcc/src/z80/gen.c:
8229         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
8230           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
8231         - solved MSC error in function aopDump()
8232
8233         * sdcc_vc.h: define PREFIX as "\\sdcc"
8234
8235 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
8236         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
8237
8238 2002-06-22  Scott Dattalo <scott AT dattalo.com>
8239         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
8240         - Rewrote the register banking algorithm.
8241         - Added pCode live-range analysis to registers (for now, only non-used and
8242         singly-used registers optimized away)
8243
8244         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
8245
8246         * 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.
8247
8248 2002-05-10  Scott Dattalo <scott AT dattalo.com>
8249         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
8250
8251 2002-04-22  Michael Hope  <michaelh AT vroom>
8252
8253         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
8254
8255         * configure.in (DD_COPT): Added include support required for gbdk.
8256
8257         * .version: Bumped version number just to increase it.
8258
8259         * src/SDCCmain.c: Added -nostdinc to the default options.
8260
8261 2002-04-15  Michael Hope  <michaelh AT vroom>
8262
8263         * device/lib/z80/printf.c (sprintf): Added.
8264
8265         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
8266
8267         * src/z80/peeph.def: Added transpose redundent load rule.
8268
8269         * src/z80/main.c: Added force callee saves for jaune.
8270
8271         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
8272
8273         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
8274
8275 2002-03-28  Johan Knol  <johan AT balder>
8276
8277         * src/SDCCval.c: fixed bug #532436
8278
8279 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8280         * /src/port.h:
8281         Added "char *Processor" field to the port structure.
8282
8283         * /src/SDCCmain.c:
8284         Added -p option. Allows port dependent processor to be specified.
8285
8286         * all ports:
8287         Initialized the new field char *Processor field to NULL in all ports
8288
8289         * /src/pic/*:
8290         Compiler generated registers for interrupt context saving
8291         were not getting allocated.
8292
8293 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
8294
8295         * /src/SDCCast.c:
8296         Fixed left shift. Will promote the left side of a left shift
8297         if a) left shifting more than size of operand or b) when assigned
8298         to something size > size of left side
8299
8300 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8301         * src/pic/*
8302         tons of changes. Register allocation has been
8303         rewritten. Added customization for the various PICs. Flow
8304         analysis is restructured. ...
8305
8306         * src/pic/device.h:
8307         Added
8308
8309         * src/pic/device.c:
8310         Added. device.c is a PIC port hack to accomodate variations
8311         in PIC devices.
8312
8313 2002-03-13  Michael Hope  <michaelh AT vroom>
8314
8315         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
8316
8317 2002-03-04  johanknol  <johanknol AT manik>
8318
8319         * /src/SDCCval.c: fixed
8320
8321         const unsigned char arr[][2] = { { 0, 1 } };
8322         t18.c:1: error: Initializer element is not constant
8323
8324 2002-03-04  bela  <bela AT manik>
8325
8326         * /device/include/mcs51reg.h:
8327         ds89c420 register definition update
8328
8329 2002-03-03    <johan AT FRIJA>
8330
8331         * support/Util/SDCCerr.c: did something, but don't no why anymore
8332
8333         * support/regression/tests/bug-524691.c: made it a little less shy
8334
8335         * src/SDCCast.c (decorateType): fixed bug #524697
8336
8337         * src/SDCCast.c: made some lineno improvements
8338
8339         * src/SDCCval.c (getNelements): changed warning to error
8340
8341         * src/SDCCglue.c (printIvalArray): changed warning to error
8342
8343         * src/SDCCicode.c: fixed a warning for mingw
8344
8345         * src/SDCCast.c (decorateType): fixed the << promotion for ops
8346
8347         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
8348
8349 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
8350
8351         * src/ds390/peeph.def:
8352         Added some more peephole rules
8353
8354         * src/ds390/gen.c: Various fixes & enhancements
8355
8356         * src/SDCClrange.c, src/SDCClrange.h:
8357         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
8358
8359         * src/ds390/ralloc.c:
8360         various fixes & enhancements (ds390) specific
8361
8362         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
8363         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
8364         from rallocs.
8365
8366         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
8367
8368 2002-03-02    <johan AT FRIJA>
8369
8370         * src/SDCCast.c (decorateType): fixed bug #524708
8371
8372         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
8373
8374         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
8375
8376 2002-03-01  Michael Hope  <michaelh AT vroom>
8377
8378         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
8379
8380         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
8381
8382 2002-03-01    <johan AT FRIJA>
8383
8384         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
8385
8386         * src/SDCCast.c (decorateType): fixed bug #524209
8387
8388         * src/SDCCval.c (valNot): fixed bug #524195
8389
8390 2002-02-26    <johan AT balder>
8391
8392         * src/xa51/gen.c: fixed a warning
8393
8394         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
8395
8396         * src/SDCCast.c (decorateType): fixed bug #522534
8397
8398 2002-02-23    <johan AT balder>
8399
8400         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
8401
8402 2002-02-22    <johan AT balder>
8403
8404         * src/SDCCast.c: fixed bug #514865
8405
8406         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
8407
8408 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
8409
8410         * sdcc/src/SDCCloop.c:
8411         Previous fix was not good. basic blocks that have "break" or "return" are
8412         not really partof a loop , but live ranges used in these blocks should
8413         be live thru the entire loop, so set partOfLoop but don't add them to
8414         loop region
8415
8416 2002-02-21    <johan AT FRIJA>
8417
8418         * src/SDCCcse.c: fixed bug #514308
8419
8420 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
8421
8422         * src/SDCCloop.c:
8423         Fixed BUG #519583. If a conditional block ended in a return/break
8424         statement inside a loop, it was not being considered part of the loop.
8425
8426         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
8427
8428 2002-02-10  Karl Bongers <karl AT turbobit.com>
8429
8430         * debugger/*:
8431         Fixed up SDCDB debugger somewhat.  Updated debugger/README
8432         with lots of comments and notes.
8433
8434         * device/examples/test2.c:
8435         Fix bug, "red" variable not being initialized(compiler complained).
8436
8437         * device/examples/Makefile, examples/test3.c:
8438         Add Makefile in device/examples folder, compiles test3.c
8439         for use as a multiple module SDCDB test case.
8440
8441         * sim/ucsim/cmd.src/cmdset.cc:
8442         Took out debug printfs in ucsim "next" command.
8443
8444         * sim/ucsim/xa.src:
8445         Karl and Johan start ucsim XA support.  Most dissassembly working,
8446         about 75% emulation done(plenty of work remaining).
8447
8448         * sim/ucsim/z80.src:
8449         Add Z80 support to ucsim, add test-ucz80 regression test,
8450         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
8451         Notice z80 compiler fails on examples/test3.c/crc code.
8452
8453 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
8454
8455         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
8456         Added support for --parms-in-bank1
8457
8458         * src/ds390/peeph.def:
8459         added a few more peephole optimzations
8460
8461         * src/ds390/main.c:
8462         1) added __builtin_inp & __builtin_outp used to read in data of given length
8463            from a memory mapped port
8464         2) added __builtin_memcmp
8465         3) added __builtin_swapw swap bytes of a short
8466
8467         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
8468         1) handle multiple send & receives from register bank1
8469         2) ralloc can now allocate DPTR1 to some liveRanges
8470
8471         * src/SDCCsymt.c, src/SDCCsymt.h:
8472         changes to handle multiple sends & receives
8473
8474         * src/SDCCptropt.h:
8475         added some pointer arithmetic optimization
8476
8477         * src/SDCCptropt.c:
8478         added some pointer arithmetic optimizations but not stable yet so not
8479         called from anywhere (will get this working shortly)
8480
8481         * src/SDCCopt.c: fixed for multiple sends & receives
8482
8483         * src/SDCCmain.c:
8484         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
8485         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
8486            set preprocessor defines (depending on options)
8487
8488         * src/SDCCicode.c, src/SDCCicode.h:
8489         changes made to handle multiple sends & receives
8490
8491         * src/SDCCglobl.h:
8492         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
8493
8494         * src/SDCCcse.c, src/SDCCcse.h:
8495         added function findbackward def (to be used in upcoming optimization)
8496
8497         * src/SDCCcflow.c, src/SDCCcflow.h:
8498         added function returnAtEnd - to determine if a basic block terminates with
8499         a RETURN iCode
8500
8501         * src/SDCCast.c, src/SDCCast.h:
8502         added option parms-in-bank1
8503
8504         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
8505         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
8506         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
8507         adjusted for --parms-in-bank1 option
8508
8509         * device/include/string.h:
8510         donot redefine "reentrant" keyword
8511
8512         * device/include/ds80c390.h: Added some more SFRs
8513
8514 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
8515
8516         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
8517
8518 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
8519
8520         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
8521
8522 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
8523
8524         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
8525
8526 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
8527
8528         * Added --xram-movc option
8529
8530 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
8531
8532         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
8533
8534 2002-01-11  Johan Knol
8535
8536         * Added math lib of Jesus Calvino-Fraga
8537
8538 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
8539
8540         * src/SDCCmain.c (processFile): fix processing of ../../src.c
8541         * support/regression/Makefile: new target test-mcs51-stack-auto
8542         * support/regression/ports/mcs51-stack-auto/spec.mk: added
8543
8544 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
8545
8546         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
8547
8548 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
8549
8550         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
8551
8552 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
8553
8554         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
8555
8556         * src/SDCCglue.h: add definition for printIvalChar()
8557
8558 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
8559
8560         * src/SDCCast.c: fix #498138 by Johan
8561
8562         * src/SDCCglue.c: fix #498138 by Johan
8563
8564 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
8565
8566         * support/regression/Makefile: fix clean
8567
8568         * support/regression/ports/ds390/support.c: fix transmission of last character
8569
8570 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
8571
8572         * /sdcc/src/ds390/gen.c:
8573         a) improved computing address of stack variable
8574         b) took out some #if 0 code
8575         c) improved parmBytes adjustment
8576         d) improved genPlusIncr & genMinusIncr
8577         e) genCmp could generate bad code (when left assigned to DPTR)
8578         f) Fixed bug in hasInc
8579
8580         * /sdcc/src/ds390/ralloc.c:
8581         a) packRegsForSupport could mess up live information (Fixed)
8582         b) packRegsDPTRuse could be incorrect for left & right shift
8583
8584         * /sdcc/src/mcs51/ralloc.c:
8585         packRegsForSupport could mess up the live information (Fixed)
8586
8587         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
8588
8589         * /sdcc/src/SDCCast.c:
8590         can reverse a loop even if function call is present as long
8591         as the loop control variable is local & is not passed as parameter
8592
8593 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
8594
8595         * /sdcc/ChangeLog: *** empty log message ***
8596
8597         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
8598         More builtin function additions for TININative
8599
8600         * /sdcc/src/ds390/ralloc.c:
8601         Had broken the regression testsuite
8602
8603         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
8604
8605         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
8606         Added funcattr hasStackParms will be set for reentrant functions when there
8607         are paramteres on the stack, this helps in minimizing frame pointer generation
8608         typeFromStr can handle function pointers now
8609
8610         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
8611         *** empty log message ***
8612
8613 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
8614
8615         * /src/ds390/gen.c, /src/ds390/main.c:
8616         More builtin function additions for TININative
8617
8618         * /src/ds390/ralloc.c:
8619         Had broken the regression testsuite
8620
8621         * /src/SDCCast.c: Fixed a bug in dumptree
8622
8623         * /src/SDCCsymt.c, /src/SDCCsymt.h:
8624         Added funcattr hasStackParms will be set for reentrant functions when there
8625         are paramteres on the stack, this helps in minimizing frame pointer generation
8626         typeFromStr can handle function pointers now
8627
8628         * /doc/builtins.txt, /doc/TININative.txt:
8629         *** empty log message ***
8630
8631
8632 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
8633
8634         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
8635         ALPHA version for -mTININative
8636
8637         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
8638         updated to reflect changes in the port structure
8639
8640         * /src/port.h:
8641         added function do_assemble (similar to do_link) if non-null this function
8642         will be called to do assembly (-mTININative) requires a multi command
8643         assembly
8644         added function genAssemblerEnd will be called to generate assembler Epilogue
8645
8646         * /src/SDCCsymt.c:
8647         added _JavaNative to debug info printing
8648
8649         * /src/SDCCmain.c: added option --tini-libid
8650         added port->do_assemble function (-mTININative) has a multi command assemble
8651
8652         * /src/SDCCglue.c: Disabled "constExpr" check
8653         added port->genAssemblerEnd function
8654
8655         * /src/SDCCglobl.h: Added option --tini-libid value
8656
8657         * /src/SDCCast.h:
8658         tookout optimizeCompare from the header (has no external references)
8659
8660         * /src/SDCCast.c: made one more function "static"
8661
8662 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
8663
8664         * src/z80/mappings.i: Added z80asm support.
8665
8666         * src/z80/main.c: Added z80asm support on --asm=z80asm
8667
8668         * src/z80/gen.c: Fixed asm portability issues.
8669
8670         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
8671
8672         * src/SDCCglue.c (printExterns): Added global/extern split.
8673
8674 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
8675
8676         * support/regression/Makefile: added test for mcs51 model large
8677
8678         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
8679
8680         * support/regression/ports/gbz80/spec.mk: added -mgbz80
8681
8682 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
8683
8684         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
8685
8686 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
8687
8688         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
8689
8690         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
8691
8692 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
8693
8694         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
8695
8696         * support/regression/tests/simplefloat.c: Port to mcs51.
8697
8698 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
8699         * support/regression/tests/bug-485362.c: Added.
8700
8701         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
8702
8703         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
8704
8705         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
8706
8707         * src/z80/gen.c (aopDump): Added a dump function.
8708
8709 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
8710         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
8711
8712         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
8713
8714         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
8715
8716         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
8717
8718         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
8719
8720         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
8721
8722         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
8723
8724         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
8725
8726         * support/regression/ports/ds390/support.c: Use tinibios.
8727
8728         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
8729
8730 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
8731
8732         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
8733         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
8734
8735         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
8736
8737         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
8738
8739 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
8740
8741         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
8742
8743         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
8744         (packRegsForIYUse): Created and optimised.
8745
8746 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
8747
8748         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
8749 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
8750
8751         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
8752
8753         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
8754
8755         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
8756
8757 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
8758
8759         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
8760
8761         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
8762
8763 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
8764
8765         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
8766
8767         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
8768
8769         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
8770
8771 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
8772
8773         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
8774         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
8775         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
8776
8777         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
8778
8779         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
8780         (genNotFloat): Added.
8781         (genUminusFloat): Added.
8782
8783         * device/lib/z80/Makefile: Added floating pt stubs.
8784
8785         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
8786
8787         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
8788
8789         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
8790
8791 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
8792
8793         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
8794
8795         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
8796
8797         * sdcc/support/regression/Makefile: Add port ds390.
8798
8799         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
8800
8801         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
8802
8803         * sdcc/support/regression/ports/ds390/spec.mk: Added.
8804
8805         * sdcc/support/regression/ports/ds390/support.c: Added.
8806
8807         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
8808
8809         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
8810
8811         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
8812
8813 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
8814
8815         * device/include/malloc.h: Added z80 and gbz80 support.
8816
8817         * device/lib/gbz80/heap.s: Added.
8818
8819         * device/lib/z80/heap.s: Added.
8820
8821         * device/lib/malloc.c: Added z80 and gbz80 support.
8822
8823         * support/regression/tests/malloc.c (testMalloc): Added.
8824
8825         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
8826
8827         * support/regression/tests/bug-478094.c: Added.
8828
8829         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
8830
8831 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
8832
8833         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
8834
8835         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
8836
8837         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
8838
8839         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
8840
8841         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
8842
8843 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
8844
8845         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
8846
8847 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
8848
8849         * support/regression/tests/bug-477927.c: Added.
8850
8851         * src/z80/peeph.def: Added minor rules.
8852
8853         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
8854
8855         * src/z80/peeph.def: Added jump optimisation modification.
8856
8857 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
8858
8859         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
8860
8861 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
8862
8863         * support/regression/tests/funptrs.c: Added.
8864
8865 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
8866
8867         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
8868
8869 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
8870
8871         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
8872
8873         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
8874
8875         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
8876         (movLeft2ResultLong): Created.
8877
8878         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
8879         (joinPushes): Added.  Joins two char pushes into a word push.
8880
8881 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
8882
8883         * support/cpp2/Makefile.in (install): Added creation of dest dir.
8884
8885         * support/makebin/Makefile (install): Added creation of dest dir.
8886
8887 2001-10-24 Karl Bongers <karl AT turbobit.com>
8888
8889         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
8890
8891 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
8892
8893         * src/z80/ralloc.c: Turned off faulty pack for one use.
8894
8895         * src/z80/peeph-gbz80.def: Removed redundent restart options.
8896
8897         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
8898
8899 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
8900
8901         * support/regression/Makefile: Improved clean
8902
8903         * support/regression/ports/gbz80/spec.mk: Added clean
8904
8905         * support/regression/ports/host/spec.mk: Added clean
8906
8907         * support/regression/ports/z80/spec.mk: Added clean
8908
8909         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
8910
8911         * support/regression/ports/mcs51/timeout.c: little improvements
8912
8913 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
8914
8915         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
8916
8917         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
8918
8919         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
8920
8921 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
8922
8923         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
8924
8925         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
8926
8927 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
8928         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
8929
8930         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
8931
8932         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
8933
8934         * src/mcs51/main.c (_linkCmd): Added bin path to command.
8935
8936         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
8937
8938         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
8939
8940         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
8941
8942         * support/regression/tests/longor.c: Added.
8943
8944 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
8945
8946         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
8947
8948         * as/mcs51/aslink.h: define PATH_MAX
8949
8950         * as/mcs51/asm.h: define PATH_MAX
8951
8952         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
8953
8954         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
8955
8956         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
8957
8958         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
8959
8960         * src/SDCCglobl.h: define PATH_MAX
8961
8962         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
8963
8964         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
8965
8966 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
8967
8968         * src/z80/gen.c (gencjneshort): Fixed
8969
8970         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
8971
8972 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
8973
8974         * support/regression/tests/bug-469671.c: Added.
8975
8976         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
8977
8978 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
8979
8980         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
8981
8982         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
8983
8984 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
8985
8986         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
8987
8988         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
8989
8990         * src/device/lib/_mullong.c : removed hint: nooverlay bug
8991
8992         * src/device/lib/_divuint.c : removed hint: nooverlay bug
8993
8994         * src/device/lib/_divulong.c: removed hint: nooverlay bug
8995
8996         * src/device/lib/_moduint.c : removed hint: nooverlay bug
8997
8998         * src/device/lib/_modulong.c: removed hint: nooverlay bug
8999
9000 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
9001
9002         * 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.
9003
9004         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
9005
9006         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
9007
9008 2001-10-07    <johan AT FRIJA>
9009
9010         * device/lib/gets.c (gets): fixed the return value.
9011
9012 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
9013         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
9014
9015         * 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.
9016
9017         * 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.
9018
9019         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
9020
9021         * src/pic/gen.c: Removed Safe_strdup.
9022
9023         * configure.in: Added option to enable libgc support.
9024
9025         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
9026         (bitVectUnion): Optimised.
9027         (bitVectIntersect): Optimised.
9028         (bitVectBitsInCommon): Optimised.
9029         (bitVectCplAnd): Optimised.
9030
9031         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
9032
9033 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9034
9035         * src/SDCCmain.c: distinguish between assembler debug and plain options
9036
9037         * src/avr/main.c:   remove standard assembler options
9038
9039         * src/ds390/main.c: remove standard assembler options
9040
9041         * src/mcs51/main.c: remove standard assembler options
9042
9043         * src/port.h: removed "PENDING" comment
9044
9045 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9046
9047         * src/device/lib/_mulint.c  : new, with assember functions
9048
9049         * src/device/lib/_mullong.c : new, with assember functions
9050
9051         * src/device/lib/_divuint.c : with assember functions
9052
9053         * src/device/lib/_divsint.c : with assember functions
9054
9055         * src/device/lib/_divulong.c: with assember functions
9056
9057         * src/device/lib/_divslong.c: with assember functions
9058
9059         * src/device/lib/_moduint.c : with assember functions
9060
9061         * src/device/lib/_modsint.c : with assember functions
9062
9063         * src/device/lib/_modulong.c: with assember functions
9064
9065         * src/device/lib/_modslong.c: with assember functions
9066
9067         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
9068
9069         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
9070
9071         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
9072                                       replaced _mululong.c and _mulslong.c by _mullong.c
9073
9074 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9075
9076         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
9077
9078 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9079
9080         * src/SDCCglue.c: test, if win32api is available for MINGW
9081
9082 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9083
9084         * src/SDCCsymt.c: no more _modifier in printTypeChain()
9085         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
9086         * support/regression/ports/gbz80/spec.mk: removed GENERIC
9087         * support/regression/ports/host/spec.mk: removed GENERIC
9088         * support/regression/ports/mcs51/spec.mk: removed GENERIC
9089         * support/regression/ports/z80/spec.mk: removed GENERIC
9090
9091 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
9092
9093         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
9094
9095         * support/regression/tests/bug-467035.c: Created.
9096
9097 2001-10-01    <johan AT FRIJA>
9098
9099         * src/SDCC.y: fixed bug #466586 part 1
9100
9101 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
9102
9103         * SDCCicode.c: z80 has no generic pointers
9104         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
9105
9106 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
9107
9108         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
9109
9110 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
9111
9112         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
9113
9114         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
9115
9116 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
9117
9118         * configure.in: Fixed up so that ucsim is only configured once.
9119
9120         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
9121
9122         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
9123         (getPathDifference): As above.
9124
9125         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
9126
9127         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
9128
9129 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
9130         * .version: Updated to 2.3.1
9131
9132         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
9133         Added copyright header.
9134
9135         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
9136         (assemble): Added support for macro based assembler commands.
9137         (linkEdit): Added support for macro based linker commands.
9138         (preProcess): Changed the pre-processor to use macros.
9139         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
9140         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
9141
9142         * device/lib/z80/crt0.s: Added module name for debugging.
9143
9144 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
9145
9146         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9147
9148         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
9149
9150         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
9151
9152         * src/Makefile.in: Added SDCCmacro and SDCCutil
9153
9154 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
9155
9156         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9157
9158 2001-09-16    <johan AT FRIJA>
9159
9160         * 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.
9161
9162 2001-09-15    <johan AT FRIJA>
9163
9164         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
9165         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
9166
9167 2001-09-11    <johan AT FRIJA>
9168
9169         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
9170
9171 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
9172
9173         * support/regression/tests/bug-460444.c: Added test case.
9174
9175         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
9176         (genCast): Added justification for all of the asserts.
9177
9178 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
9179
9180         * support/regression/support.c: _xdata replaced by xdata
9181
9182         * support/regression/spec.mk: removed _generic
9183
9184 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
9185
9186         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
9187
9188         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
9189         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
9190
9191         * src/z80/peeph.def: Added a rule to optimise shift then compare.
9192
9193         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
9194
9195         * support/regression/tests/bug-460010.c: Added test case.
9196
9197         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
9198
9199 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
9200
9201         * support/regression/Makefile: inter-port-clean adjusted for mcs51
9202
9203         * support/regression/testfwk.c: removed workaround for bug #436344
9204
9205         * support/regression/tests/bp.c: use less memory with mcs51
9206
9207         * support/regression/tests/bug-441448.c: use less memory
9208
9209         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
9210
9211         * support/regression/collate-results.py: typo
9212
9213 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
9214
9215         * support/regression/tests/fetchoverlap.c: Added new test case.
9216
9217         * support/regression/tests/bp.c: Added new test case.
9218
9219         * support/regression/tests/bug-448984.c: Added new test case.
9220
9221         * support/regression/tests/pow2shifts.c: Added new test case.
9222
9223         * src/z80/gen.c: Turned off the noise it normally generates for the release.
9224         (genlshTwo): Fixed right shift for count > 8.
9225
9226         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
9227
9228 2001-09-08    <johan AT FRIJA>
9229
9230         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
9231
9232 2001-09-07    <johan AT FRIJA>
9233
9234         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
9235
9236         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
9237
9238 2001-09-06    <johan AT FRIJA>
9239
9240         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
9241         * bernhard noted me at this: "() equals to (void)" (1.38)
9242
9243 2001-09-05    <johan AT FRIJA>
9244
9245         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
9246
9247 2001-09-04    <johan AT FRIJA>
9248
9249         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
9250
9251
9252 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
9253
9254         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
9255
9256 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
9257
9258         * link/z80/aslink.h: Fixed path for PATH_MAX
9259
9260 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
9261
9262         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
9263
9264         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
9265
9266         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
9267
9268         * 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.
9269
9270 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
9271
9272         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
9273         (genCmp): Fixed up genCmp for the GB with longs.
9274
9275         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
9276
9277         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
9278
9279         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
9280
9281         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
9282
9283 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
9284
9285         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
9286
9287 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
9288
9289         * 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.
9290
9291         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
9292
9293 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
9294
9295         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
9296
9297         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
9298
9299 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
9300
9301   * sim/ucsim/configure:    little improvement of Cygwin-detection
9302   * sim/ucsim/configure.in: little improvement of Cygwin-detection
9303   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
9304   * support/regression/tests/bug-221100.c: small changes for mcs51
9305   * support/regression/tests/bug-221168.c: small changes for mcs51
9306   * support/regression/tests/bug-227710.c: small changes for mcs51
9307   * support/regression/tests/staticinit.c: small changes for mcs51
9308   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
9309   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9310   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9311
9312 $Revision$