a77ec28c6378068479d33f00c742b38eaad65fa4
[fw/sdcc] / ChangeLog
1 2005-08-04 Borut Razem <borut.razem AT siol.net>
2
3         * configure.in: pic16 libraries build 2nd try - enable running
4           configure in device/lib/pic16
5         * configure: regenerated from configure.in
6         * device/lib/Makefile.in: create $(PORT)/bin directory
7
8 2005-08-03 Raphael Neider <rneider AT web.de>
9
10         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
11           to get/set values via pointers
12         * (genUnpackBits,genPackBits): changed detection of
13           ptr->bitfield vs. sym.bitfield, fixed access via generic
14           pointers, removed dead (wrong) code for multibyte bitfields
15         * (genNearPointerGet, genGenPointerGet): removed useless code,
16           fixed bitfield detection, fixes #1250594
17         * (genNearPointerSet): removed useless code
18         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
19           and introduced macro pic16_emitpcode that conditionally emits
20           the origin of the following pCode (useful for debugging SDCC)
21         * src/pic16/pcode.c: changed (and disabled) some debug outputs
22         * (createDefmap): fixed handling of LFSR for --optimize-df
23
24 2005-08-02 Borut Razem <borut.razem AT siol.net>
25
26         * device/lib/Makefile.in: pic16 libraries build enabled since
27           gputils-0.13.2 are now localy installed at sourceforge's compile farm
28
29 2005-08-02 Raphael Neider <rneider AT web.de>
30
31         * src/pic16/gen.c (genPackBits): removed deprecated warning
32         * (genGenPointerSet): fixed bitfield detection
33
34 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
35
36         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
37
38 2005-07-31 Raphael Neider <rneider AT web.de>
39
40         * device/lib/pic16/libdev/pic18f458.c,
41           device/include/pic16/pic18f458.h: added missing T0CONbits
42
43 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
44
45         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
46
47 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
48
49         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
50
51 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
52
53         * device/include/mcs51/at89c51ed2.h: added.
54
55 2005-07-23 Raphael Neider <rneider AT web.de>
56
57         * src/pic/gen.h: added emitpcode macro for debugging
58         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
59           and replace by macro adding debug information on demand
60         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
61         * (gencjne): tried to fix; replaced with correct (slower) code
62         * (gen{Unp,P}ackBits): fixed single bit access
63         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
64         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
65           previous instruction
66         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
67           register has to be handled with care (forbidding movement
68           of assignments/uses, removing assignments completely, ...)
69         * (pCodeOptime2pCodes): make use of regIsSpecial
70         * added lots of debugging output (commented out)
71         * src/pic/rallloc.c (deassignLRs): prevent operand registers
72           from being reused as result UNLESS it is known to work
73
74 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
75
76         * support/Util/dbuf.h: include <stddef.h> for size_t
77         * .version: changed to version 2.5.2
78
79 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
80
81         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
82
83 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
84
85         * src/hc08/gen.c (genMinus): fixed bug #1241835,
86           (genModOneByte): removed needless psha/pula
87
88 2005-07-22 Raphael Neider <rneider AT web.de>
89
90         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
91           have PIC14 handled like PIC16, fixes broken pic14 linker calls
92         * src/pic/gen.c (resolveIfx): do not "invent" labels
93         * (genSkipc): changed to positive logic
94         * (genSkipCond): removed as no longer needed
95         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
96           backport from PIC16
97         * (genLeftShift): check operands are in different registers
98         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
99           INCF does not update CARRY...
100         * src/pic/main.c: fixed _linkCmd
101         * src/pic/pcode.c (unlinkpCode): added inactive code
102         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
103           alive (do not assign result and operand overlapping registers)
104
105 2005-07-22 Raphael Neider <rneider AT web.de>
106
107         * src/pic/device.c (dump_sfr): replaced register declaration with
108           call to emitSymbolToFile() to avoid duplicate symbols
109         * (assignRelocatableRegisters): do not declare external symbols
110         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
111           right (take size of type, not etype)
112         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
113         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
114         * (packRegsForAccUse): disabled assignment of WREG as
115           the result reg to prevent occurence of just fixed #1235003,
116           fixes #1242954
117         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
118           symbols (avoids duplicate symbols in .asm file)
119         * (pic14emitRegularMap): use emitSymbolToFile()
120         * src/pic/gen.c (aopOp): fixed spillLocation handling
121         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
122         * (genDataPointerSet): removed unneccessary variables/output
123
124 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
125
126         * as/mcs51/lkarea.c: enlarged codemap for banked memory
127         * device/lib/mcs51/crtbank.asm: added # to 0x0F
128
129 2005-07-21 Raphael Neider <rneider AT web.de>
130
131         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
132           architecture cannot handle them efficiently, fixes bug #1235003
133         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
134           check for empty sets before using them (fixes bug #1232190)
135
136 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
137
138         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
139           (lnksect2): generate warnings for memory overlap
140         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
141           constseg to set the name of these segments so you can instruct the linker
142           to place them in banks
143         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
144         * src/SDCCglobl.h: added MODEL_HUGE to enum,
145           added code_seg and const_seg to options
146         * src/SDCCglue.c (emitMaps): use options.const_seg,
147           (createInterruptVect): put interrupt vectors in segment HOME,
148           (glue): put HOME before static segment and put the main glue in HOME,
149           (glue): use options.code_seg
150         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
151         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
152           these segments so you can instruct the linker to place them in banks
153           (linkEdit): use code_loc for HOME segment which should be the first
154           segment in code memory now
155         * src/SDCCmem.c: fixed more stuff like bug 1238386
156         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
157           (changePointer): don't change function pointers to code pointers for
158           banked functions,
159           (compareType): added exceptional check for banked function pointers
160         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
161         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
162           after static in code memory
163         * src/mcs51/gen.c: added aopLiteralLong prototype,
164           (aopForSym): use getSize for functions,
165           (genCall): generate banked calls over one trampoline __sdcc_banked_call
166           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
167           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
168           the segment,
169           (genPcall): use call for literal function pointers and generate banked
170           calls over the one trampoline so there's only one place for the user to
171           modify according to his/hers hardware,
172           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
173           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
174         * src/mcs51/main.c: added keyword banked,
175           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
176         * support/Util/SDCCerr.c,
177         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
178           needed for passing the bank and address to the trampoline
179         * device/lib/mcs51/crtbank.asm: added for bankswitching
180         * device/lib/mcs51/Makefile: added crtbank
181
182 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
183
184         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
185           for fields at offset 0 of a struct or union as reported
186           on 2005-07-07 in the developer mailing list.
187
188 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
189
190         * src/SDCCmem.c: fixed bug 1238386
191
192 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
193
194         * src/mcs51/peeph.def: added labelrefcounting for peepholes
195           (patch #1144962), added peephole 300, enabled 259.x
196         * doc/sdccman.lyx: removed screenshot and provided link instead
197
198 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
199
200         * doc/sdccman.lyx: added section about debugging with ddd
201         * doc/figures/ddd_example.eps: screenshot of debugging session
202
203 2005-07-04 Raphael Neider <rneider AT web.de>
204
205         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
206           like CODE pointers, fixes #1115683
207         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
208           call, fixes bugs #1232211, #1228110,
209           fixed wrong casts to pCodeFlow from pCodeInstructions
210
211 2005-07-04 Raphael Neider <rneider AT web.de>
212
213         * src/pic/gen.c (popGet): changed assert to allow for
214           bit operands
215         * (popGetAddr): changed signature to provide
216           an additional index, patched all call sites
217         * (genCmpEq): handle literal-like operands correctly
218         * (genAddrOf): added sanity checks on __code/__data pointers
219         * (genAssign): added handling of symbols from __code section
220         * (gencjne): do not generate code for comparisons whose result
221           is neither stored nor used, fixes bug #1171114
222         * (AccLsh, AccRsh): operate on operand instead of WREG
223         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
224           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
225           by known count
226         * rewrote complete shift-by-literal logic, commented unused
227           functions out
228         * (genConstPointerGet): get multiple bytes (if result size > 1),
229           fixed handling of non-immediate addresses
230         * (genPointerGet): handle CODE pointers like CONST pointers
231         * (genpic14Code): insert C-SRC lines as Cource-pCodes
232         * ({aop,op}_isLitLike): NEW, single place to decide whether an
233           operand is to be treated as a literal or not
234         * (mov2w,genPcall,genCmpEq),
235           src/pic/genarith.c: use aop_isLitLike() to decide between
236           literal/register contents
237         * (addSign): added missing offset
238         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
239           only emit comment in debug-mode,
240           use {aop,op}_isLitLike throughout the file
241         * src/pic/glue.c: fix initializers for pointers (work in progress)
242         * src/pic/pcode.c (get_op): honor index on _const symbols
243         * ({reset,dump}pCodeStatistics): NEW, estimate code size
244         * (dumppBlock): added pCode size estimation
245         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
246           check for IS_SYMOP before OP_SYMBOL'ing
247         * fixed indentation, compacted switch-statements
248         * (allocReg): find free register and allocate it instead of
249           allocating new registers all the time
250         * (deassignLRs): prevent POINTER_GET's from being assigned the same
251           registers as its operands (necessary only for multibyte GETs)
252
253 2005-07-01 Raphael Neider <rneider AT web.de>
254
255         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
256           debugging .asm-output macros FENTRY + FEXIT
257         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
258           way... I wonder...
259         * (emitpComment): NEW, printf to pCode
260         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
261           offset handling
262         * (popGetAddr): NEW, variant of popGet to access an immediates
263           high(er) bytes instead of the n'th byte of memory they reference,
264           replaced popGet with popGetAddr where neccessary
265         * (genDataPointerGet): reactivated and fixed implementation
266         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
267           accesses
268         * (genDataPointerSet): fixed multibyte assignments
269         * (genpic14Code): fixed --i-code-in-asm handling
270         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
271         * (genPlus): fixed index-out-of-bounds error
272         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
273         * src/pic/ralloc.c: added debugging output macro FENTRY2
274         * (spillThis): fixed indentation, enbraced for-body for clarity
275         * (rematStr): commented out as now unused
276         * (regTypeNum): commented out special spill case (overwrites
277           arbitrary values)
278         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
279
280 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
281
282         * doc/sdccman.lyx: documented sfr16/sfr32,
283           added example for using storage class with function pointers
284         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
285
286 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
287
288         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
289         * device/lib/_itoa.c,
290         * device/lib/_ltoa.c: optimized codesize
291         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
292           but don't know how to suppress the double warning.
293         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
294         * support/Util/SDCCerr.c,
295         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
296
297 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
298
299         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
300           fixed old K&R prototypes
301         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
302         * device/lib/_gptrget.c,
303         * device/lib/_gptrgetc.c,
304         * device/lib/_gptrput.c: changed versions for new memory indicator values,
305           also new versions for small generic pointers and banked generic pointers
306         * src/port.h: added const_name
307         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
308         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
309         * src/SDCCcse.c (findPrevIc): check all associative operators
310         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
311         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
312         * src/SDCCmem.c: updated comments,
313           set far-space to 0 for pdata, results in optimized code
314         * src/SDCCmem.h: added macro CONST_NAME
315         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
316           moving the info into the highest bits, see also gptrget/gptrput
317         * src/src.dsp: added sdcc.ico to project files
318         * src/avr/gen.c (genCast): fixed bug 0x%d
319         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
320         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
321           relation between ptr_type and DCL_TYPE,
322           (genCast): fixed bug 0x%d
323         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
324           (CODE)" for const_name
325         * src/hc08/gen.c (genCast): fixed bug 0x%d
326         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
327           (hc08_port): added "CONST (CODE)" for const_name
328         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
329           (aopForRemat, adjustArithmeticResult): disconnected direct relation
330           between ptr_type and DCL_TYPE,
331           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
332           operand* and took AOP() inside function so sfr-ness can be checked,
333           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
334           new prototype,
335           (genFunction, genEndFunction): optimized stack setup,
336           (genMinus): optimized for literals with ending zeroes (in bytes),
337           (genCast): fixed bug 0x%d
338         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
339           (mcs51_port): added "CONST (CODE)" for const_name
340         * src/mcs51/peeph.def: made rule 226 more generic
341         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
342         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
343         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
344         * src/z80/main.c (z80_port): added NULL for const_name,
345           (gbz80_port): added NULL for const_name
346         * support/regression/tests/bug663539.c,
347         * support/regression/tests/sfr16.c: new tests
348
349 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
350
351         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
352
353 2005-06-24 Raphael Neider <rneider AT web.de>
354
355         * device/lib/pic16/libdev/pic18f[68][567]20.c:
356           corrected typos...
357         * device/include/pic16/signal.h: added USBIF
358           and SIG_USB
359
360 2005-06-24 Raphael Neider <rneider AT web.de>
361
362         * device/lib/pic16/libdev/pic18f2455.c,
363           device/include/pic16/pic18f2455.h: NEW
364         * device/include/pic16/pic18fregs.h,
365           device/lib/pic16/pics.all,
366           src/pic16/device.c: added 18f2455
367         * device/lib/pic16/libdev/pic18f[68][567]20.c,
368           device/include/pic16/{pic18f[68][567].h,usart.h}:
369           replaced MULTIPLE_USARTS define with more relaible
370           compatibility sfrs (for USART access)
371
372 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
373
374         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
375           and the output asm file line is printed on two lines.
376
377 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
378
379         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
380           BGT, BLE, BHI, and BLS instructions
381         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
382           genCmpEq): removed
383         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
384           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
385           fixes bug #1216342
386         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
387
388 2005-06-15 Raphael Neider <rneider AT web.de>
389
390         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
391         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
392         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
393           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
394           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
395
396 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
397
398         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
399           Marcel Telka in bug #1215704
400
401 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
402
403         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
404           located in shared memory bank.
405
406 2005-05-31 Raphael Neider <rneider AT web.de>
407
408         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
409           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
410           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
411
412 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
413
414         * device/lib/_strncpy.c: fixed the fix
415
416 2005-05-26 Raphael Neider <rneider AT web.de>
417
418         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
419           initializers with \0, bug #1208187
420         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
421           intializers with \0, bug #1208187
422
423 2005-05-26 Raphael Neider <rneider AT web.de>
424
425         * src/pic16/glue.c (pic16_printIvalChar): fixed string
426           initializers with \0, bug #1208187
427         * src/pic16/main.c (_process_pragma): added sanity checks
428           for stack position and size, emit warnings when appropriate
429
430 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
431
432         * device/lib/_strncpy.c: fixed not filling with \0
433
434 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
435
436         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
437           createFunction),
438         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
439           compound_statement),
440         * src/SDCCsymt.h,
441         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
442
443 2005-05-24 Raphael Neider <rneider AT web.de>
444
445         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
446
447 2005-05-24 Raphael Neider <rneider AT web.de>
448
449         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
450           TRISE definitions, closes bug #1162453
451
452 2005-05-22 Raphael Neider <rneider AT web.de>
453
454         * src/pic16/main.c (_process_pragma): check for missing
455           arguments to pragmas code and udata
456         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
457           consistency fixes to match other headers (thanks to Jim Paris)
458         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
459
460 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
461
462         * src/SDCCicode.c (isOperandEqual): fixed missing ;
463
464 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
465
466         * support/regression/tests/bug1198642.c: new test
467         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
468         * src/SDCCcse.c (findPrevIc): added comment, please have a look
469         * support/scripts/resource.h,
470         * support/scripts/resource.rc,
471         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
472         * support/scripts/sdcc.ico: added 32x32 icon
473
474 2005-05-18 Raphael Neider <rneider AT web.de>
475
476         * device/lib/pic16/libdev/pic18f*.c,
477         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
478           keywords to "__sfr" and "__at (X)"
479         * device/include/pic16/pic18fregs.h: added pic18f4520
480         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
481           #1203088 (MPLAB compatibility)
482
483 2005-05-17 Raphael Neider <rneider AT web.de>
484
485         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
486         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
487         * device/lib/pic16/pics.all: added new devices
488         * src/pic16/device.c: added support for pic18f4520
489
490 2005-05-16 Raphael Neider <rneider AT web.de>
491         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
492         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
493         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
494           convenience function for bit access
495
496 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
497
498         * device/lib/printf_large.c: fixed bug 1193299
499         * support/regression/tests/bug1057979.c: added test %3.3s
500
501 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
502
503         * device/include/mcs51/8051.h,
504         * device/include/mcs51/8052.h: made parseable with lint
505         * device/include/mcs51/lint.h: added include file for (sp)lint
506         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
507         * doc/cdbfileformat.lyx,
508         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
509
510 2005-05-14 Raphael Neider <rneider AT web.de>
511
512         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
513         * device/lib/pic16/libc/stdlib/itoa.c (new)
514         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
515         * device/lib/pic16/libio/Makefile: exclude subdir according to
516           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
517         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
518         * src/pic16/gen.c (genFunction): prevent annoying warning
519         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
520           nameclashes on BeOS
521         * support/cpp2/cppmain.c (cpp_output_string): new
522         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
523           fixes bug 1116802
524
525 2005-05-13 Borut Razem <borut.razem AT siol.net>
526
527         * src/SDCCmain.c (linkEdit): fixed bug 1195202
528
529 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
530
531         * .version: changed to version 2.5.1; back to bleeding edge development
532
533 2005-05-11 Borut Razem <borut.razem AT siol.net>
534
535         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
536           generate PDF version 1.3 documents
537
538 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
539
540         * .version: changed to version 2.5.0
541
542 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
543
544         * doc/sdccman.lyx: updated weblinks, index and smaller updates
545
546 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
547
548         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
549         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
550         well as many smaller updates.
551         * .version: changed to version 2.5.0-pre1
552
553 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
554
555         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
556
557 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
558
559         * support/regression/tests/bug1185672.c: added
560         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
561           bug 1185672
562         * src/mcs51/gen.c (genCall): added comments, made it look safer
563         * src/mcs51/gen.c (genEndFunction): simplified
564
565 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
566
567         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
568
569 2005-04-14 Borut Razem <borut.razem AT siol.net>
570
571         * fixed bug 1045046 - SIGSEGV with really simple code?:
572           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
573           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
574
575 2005-04-14 Borut Razem <borut.razem AT siol.net>
576
577         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
578           src/pic16/device.h: temporarily disabled experimental #inline pragma
579           for 2.5.0 release
580
581 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
582
583         * device/include/z80/stdio.h,
584         * device/include/z80/string.h: removed these highly incomplete files so
585           SDCC can use the default ones in device/include/
586
587 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
588
589         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
590         gcc warning.
591         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
592         fix sdcpp warnings.
593
594 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
595
596         * device/include/malloc.h: removed redundant __reentrant prototypes
597         * device/lib/_mullong.c: added working xstack variant in asm (C version
598           doesn't pass regression tests)
599         * device/lib/bpx.c: used __data and made bpx char for mcs51
600         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
601           (createFunction): fixed bug with xstackPtr
602         * src/SDCCcse.c: corrected comments
603         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
604           (killDeadCode, eBBlockFromiCode): removed unused code
605         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
606           corrected comments
607         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
608           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
609           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
610           (genModOneByte): fixed warning in MSVC
611         * src/mcs51/main.c (): added comments
612         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
613
614 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
615
616         * src/SDCCmain.c (linkEdit): oops, changed one line too many
617
618 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
619
620         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
621
622 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
623
624         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
625         characters arrays of larger size than the declared one.
626
627 2005-04-10 Borut Razem <borut.razem AT siol.net>
628
629         * src/pic/gen.c (genInline),
630           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
631           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
632           (findNextInstruction), (findPrevInstruction),
633           (findInstructionUsingLabel),
634           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
635         * src/pic/pcode.c (findLabel): added missing '\n'
636         * src/src.dsp: added SDCCdwarf2.c to the project
637
638 2005-04-09 Borut Razem <borut.razem AT siol.net>
639
640         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
641
642 2005-04-08 Raphael Neider <rneider AT web.de>
643
644         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
645           into the chain after a given one) and mergeDefmapSymbols (combine
646           defmap entries for each symbol per pcode)
647         * (createDefmap): have defmap entries merged in the end
648         * (defmapReplaceSymRef): split defmap entries covering two accesses to
649           a symbol before replacing one access type's symbol, merge symbols in
650           the end (replacement symbol might already have an entry)
651         * (assignValnums): keep reference to written WREG intact
652
653 2005-04-08 Raphael Neider <rneider AT web.de>
654
655         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
656           Alpha)
657
658 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
659
660         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
661         bytes
662
663 2005-04-07 Raphael Neider <rneider AT web.de>
664
665         * device/include/pic16/usart.h: added compatibility defines for
666           devices with more than one USART
667         * device/include/pic16/pic18f[68][567]20.h: activated above defines
668
669 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
670
671         * device/lib/Makefile.in: updated for port specific include
672
673 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
674
675         * support/regression/ports/mcs51/spec.mk: added mcs51 include
676
677 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
678
679         * device/include/8051.h,
680         * device/include/8052.h,
681         * device/include/at89S8252.h,
682         * device/include/at89c55.h,
683         * device/include/at89x051.h,
684         * device/include/at89x51.h,
685         * device/include/at89x52.h,
686         * device/include/mcs51reg.h,
687         * device/include/reg51.h,
688         * device/include/reg764.h,
689         * device/include/regc515c.h,
690         * device/include/sab80515.h: (re)moved these 12 files
691         * device/include/mcs51/8051.h,
692         * device/include/mcs51/8052.h,
693         * device/include/mcs51/at89S8252.h,
694         * device/include/mcs51/at89c55.h,
695         * device/include/mcs51/at89x051.h,
696         * device/include/mcs51/at89x51.h,
697         * device/include/mcs51/at89x52.h,
698         * device/include/mcs51/mcs51reg.h,
699         * device/include/mcs51/reg51.h,
700         * device/include/mcs51/reg764.h,
701         * device/include/mcs51/regc515c.h,
702         * device/include/mcs51/sab80515.h: and added them here
703
704 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
705
706         * device/include/stdarg.h: changed SDCC specific keywords to double
707           underlined form.
708         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
709           mcs51 and ds390.
710         * device/include/hc08/mc68hc908gp32.h,
711         * device/include/hc08/mc68hc908jb8.h,
712         * device/include/hc08/mc68hc908jkjl.h,
713         * device/include/hc08/mc68hc908qy.h: fixed comments
714         * device/include/mcs51/README: updated
715         * device/include/mcs51/c8051f120.h: added PINRSF
716         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
717         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
718           amidst code. Also inline is not supported.
719
720 2005-04-06 Raphael Neider <rneider AT web.de>
721
722         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
723         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
724           callers stack/frame pointers
725
726 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
727
728         * device/include/pic16/usart.h: added, missing in previous commit,
729         * device/include/pic16/adc.h: fixed typo,
730         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
731         commit,
732         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
733         <p18fxxx.inc>
734         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
735         uninitialized because a bug appears with gplink
736         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
737         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
738         complains for unrecognised option
739
740 2005-04-05 Raphael Neider <rneider AT web.de>
741
742         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
743           structs as well (using memcpy)
744         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
745           on ISRs (GOTO has no label)
746         * src/pic16/device.h: added OF_OPTIMIZE_DF
747         * src/pic16/main.c: added compiler switch --optimize-df to enable the
748           new data flow analysis/optimization
749         * src/pic16/pcode.c: added (prototypes for and implementation of)
750           dataflow analysis functions, fixed pCodeInstructions' inCond and
751           outCond values, made RCALL a branch instruction
752         * (pic16_unlinkpCode): keep C line if possible
753         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
754           C line moved if possible
755         * (pic16_getRegFrompCodeOp): NEW, improved version of...
756         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
757           to use new pic16_getRegFrompCodeOp (works for more SFRs)
758         * (pic16_BuildFlow): fixed skip instructions with label (did not start
759           new flow)
760         * (pic16_getJumptabpCode): NEW, needed in...
761         * (LinkFlow): fixed handling of jumptables, calls and conditional
762           branches
763         * (pic16_InsertCommentAfter): NEW
764         * (pic16_pCodeReplace): made verbose and flow preserving
765         * (AnalyzeFlow): added call to data flow analysis
766         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
767         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
768         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
769
770 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
771
772         * src/SDCCast.c (decorateType): fixed bug #1105626
773
774 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
775
776         * device/include/asm/pic16/features.h,
777         * pic18f*.h headers,
778         * device/include/pic16/adc.h,
779         * device/include/pic16/delay.h,
780         * device/include/pic16/i2c.h,
781         * device/include/pic16/malloc.h,
782         * device/include/pic16/stdio.h,
783         * device/include/pic16/stdlib.h,
784         * device/include/pic16/string.h,
785         * device/lib/pic16/libc/stdio/printf_tiny.c,
786         * device/lib/pic16/libc/stdio/printf_small.c,
787         * device/lib/pic16/libc/stdio/strmgpsim.c,
788         * device/lib/pic16/libc/stdio/strmmssp.c,
789         * device/lib/pic16/libc/stdio/strmusart.c,
790         * device/lib/pic16/libc/stdio/vfprintf.c,
791         * device/lib/pic16/libc/stdlib/ltoa.c,
792         * device/lib/pic16/libc/stdlib/putchar.c,
793         * device/lib/pic16/libc/stdlib/x_ftoa.c,
794         * device/lib/pic16/libc/stdlib/memchrpgm.c,
795         * device/lib/pic16/libc/stdlib/memchrram.c,
796         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
797         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
798         * device/lib/pic16/libio/adc/adcbusy.c,
799         * device/lib/pic16/libio/adc/adcread.c,
800         * device/lib/pic16/libio/adc/adcsetch.c,
801         * device/lib/pic16/libio/usart/ubaud.c,
802         * device/lib/pic16/libio/usart/ubusy.c,
803         * device/lib/pic16/libio/usart/udrdy.c,
804         * device/lib/pic16/libio/usart/uopen.c,
805         * device/lib/pic16/libio/usart/uputc.c,
806         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
807         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
808         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
809         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
810         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
811         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
812         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
813         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
814         specific keywords to double underlined form,
815         * device/lib/pic16/libc/Makefile.rules,
816         * device/lib/pic16/libsdcc/Makefile.rules,
817         * device/lib/pic16/libm/Makefile,
818         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
819         to compile with C standard set in Makefile.common
820         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
821         rand.c and crc.c in compilation process,
822         * device/lib/pic16/libsdcc/int/divuint.c,
823         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
824         `c' from signed to unsigned,
825         * device/lib/pic16/startup/crt0.c,
826         * device/lib/pic16/startup/crt0i.c,
827         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
828         keywords to double underlined form, bug fixes in _do_cinit function
829         which prevented the correct initialization of the .idata segment,
830         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
831         core to enter a infinite loop
832         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
833
834 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
835
836         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
837
838 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
839
840         * device/include/Makefile.in: add support for hc08 subdirectory
841         * device/include/hc08/: new subdirectory
842         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
843         Lucas Loizaga, thanks!
844         * device/include/hc08/mc68hc908qy.h,
845         * device/include/hc08/mc68hc908gp32.h,
846         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
847         their own directory. Changed internal macro names to use the compiler
848         reserved namespace. Changed SDCC specific keywords to double
849         underlined form.
850         * device/include/math.h,
851         * device/include/malloc.h,
852         * device/include/stdarg.h,
853         * device/include/stdbool.h
854         * device/include/string.h,
855         * device/include/tinibios.h,
856         * device/include/ds400rom.h,
857         * device/include/8051.h,
858         * device/include/8052.h,
859         * device/include/80c51xa.h,
860         * device/include/at89c55.h,
861         * device/include/at89S8252.h,
862         * device/include/at89x51.h,
863         * device/include/at89x52.h,
864         * device/include/ds80c390.h,
865         * device/include/reg764.h,
866         * device/include/regc515c.h,
867         * device/include/sab80515.h,
868         * device/include/mcs51/c8051f000.h,
869         * device/include/mcs51/c8051f018.h,
870         * device/include/mcs51/c8051f020.h,
871         * device/include/mcs51/c8051f040.h,
872         * device/include/mcs51/c8051f060.h,
873         * device/include/mcs51/c8051f120.h,
874         * device/include/mcs51/c8051f300.h,
875         * device/include/mcs51/c8051f310.h,
876         * device/include/mcs51/c8051f320.h,
877         * device/include/mcs51/c8051f330.h,
878         * device/include/mcs51/c8051f350.h,
879         * device/include/z180.h: Changed SDCC specific keywords to double
880         underlined form.
881
882 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
883
884         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
885         18F4455,
886         * (pic16_assignConfigWordValue): disable testing of configuration
887         register value with config mask,
888         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
889         function with port->fun_prefix,
890         * (genFunction): when generating a naked interrupt function never
891         create an absolute segment placed in interrupt vector address, place
892         the actual interrupt function at IVA instead, when an interrupt
893         function is generated with unspecified interrupt then do not create
894         the absolute section,
895         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
896         code for generating a call to generic pointer get/put function with
897         a call to function pic16_callGenericPointer(),
898         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
899         the call to the generic pointer get/put functions with prefixing the
900         function name with port->fun_prefix,
901         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
902         * src/pic16/main.c (_process_pragma): prefix function with
903         port->fun_prefix,
904         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
905         calling assembler, old 18Fxxxx macro is deprecated,
906         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
907         PC_ASMDIR in while condition,
908         * (findInstruction): add PC_ASMDIR in while condition,
909         * (buildCallTree): prefix main with port->fun_prefix,
910         * (pic16_pCode2str): fixed bug that didn't emit the memory access
911         identifier for variable with banked access in instructions BTFSS,
912         BTFSC, BCF, BSF, BTG
913         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
914         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
915         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
916         perform optimization when enviroment variable NO_REG_OPT is set,
917         * (insideLRBlock): NEW, return 1 if register is inside an
918         INF_LOCALREGS block,
919         * (RemoveRegFromLRBlock): remove a register that is completely
920         eliminated by register optimization, but it is still left in local
921         register store/restore in/from stack block,
922         * (Remove2pcodes): after removing register, check to see if it
923         should be removed from local register store/restore in/from stack
924         block,
925         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
926         DUMMY_READ_VOLATILE,
927
928         * device/include/pic16/adc.h: minor prototype modifications and
929         update,
930         * device/include/pic16/malloc.h: added GPL notice various
931         modifications,
932         * device/include/pic16/stdint.h: NEW, standard header for ints
933         * device/include/pic16/delay.h: NEW, header for delay functions,
934         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
935         delay1mtcy,
936         * device/include/pic16/signal.h: NEW, header providing helper macros
937         for implementing signal handlers,
938         * device/include/pic16/stdio.h: added prototypes for functions,
939         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
940         prototypes for stdin and stdout, added macro PUTCHAR to
941         automatically implement putchar function prototype,
942         * device/include/pic16/usart.h: modified and updated USART library,
943         * device/lib/pic16/libio/adc/,
944         * device/lib/pic16/libio/i2c: some modifications to improve library
945         performance,
946         * device/lib/pic16/libc/stdio/: modifications for the new printf*
947         family of functions,
948         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
949         family of functions and other sources,
950         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
951         of the PIC18Fxx[28] devices,
952         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
953         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
954         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
955         _do_cinit function, because the previous failed when local variables
956         where not placed in the same memory bank,
957         * device/lib/pic16/libsdcc/char/: various modifications to improve
958         library performance,
959         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
960         information on the new functions of the c library and more...
961
962 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
963
964         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
965
966 2005-03-26 Raphael Neider <rneider AT web.de>
967
968         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
969           if condition == CARRY)
970         * (genCmp): adapted to new genSkipc semantics
971         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
972           on rIfx (genCmp was broken)
973
974 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
975
976         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
977         * src/z80/main.c (_keywords[]),
978         * src/SDCCglobal.h (struct options),
979         * src/SDCC.y,
980         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
981         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
982         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
983         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
984         always available in leading double underscore form. The C99 support is
985         mostly missing, but it's a start.
986         * support/regression/tests/bug-227710.c: fixed nonconforming use of
987         reserved identifier "__data".
988
989 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
990
991         * src/mcs51/peeph.def: fixed bug 1170013
992
993 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
994
995         * device/include/mcs51reg.h: fixed bug 842007
996
997 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
998
999         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
1000         last time.
1001
1002 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1003
1004         * src/port.h (struct PORT),
1005         * src/avr/ralloc.c (avr_assignRegisters),
1006         * src/avr/main.c,
1007         * src/ds390/ralloc.c (ds390_assignRegisters),
1008         * src/ds390/main.c,
1009         * src/hc08/ralloc.c (hc08_assignRegisters),
1010         * src/hc08/main.c,
1011         * src/mcs51/ralloc.c (mcs51_assignRegisters),
1012         * src/mcs51/main.c,
1013         * src/pic/ralloc.c (pic14_assignRegisters),
1014         * src/pic/main.c,
1015         * src/pic16/ralloc.c (pic16_assignRegisters),
1016         * src/pic16/main.c,
1017         * src/xa51/ralloc.c (xa51_assignRegisters),
1018         * src/xa51/main.c,
1019         * src/z80/ralloc.c (z80_assignRegisters),
1020         * src/z80/ralloc.h,
1021         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
1022         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
1023         * src/SDCCcse.h,
1024         * src/SDCCdflow.c (computeDataFlow),
1025         * src/SDCCdflow.h,
1026         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
1027         * src/SDCCloop.h,
1028         * src/SDCCcflow.c (*),
1029         * src/SDCCcflow.h,
1030         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
1031         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
1032         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
1033         immedDom() returning wrong block; probably fixes bug #1160833)
1034
1035 2005-03-20 Borut Razem <borut.razem AT siol.net>
1036
1037         * support/scripts/inc2h.pl: WIN32 port
1038
1039 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
1040
1041         * device/lib/makefile.in: added abs.c and labs.c
1042
1043 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
1044
1045         * device/include/stdint.h: added
1046         * device/lib/abs.c: added
1047         * device/lib/labs.c: added
1048         * device/include/stdlib.h: added abs() and labs() prototypes
1049         * device/lib/libsdcc.lib: added abs and labs
1050         * device/include/float.h,
1051         * device/lib/_fsmul.c,
1052         * device/lib/printf_fast.c,
1053         * device/lib/printf_tiny.c: updated comments
1054
1055 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1056
1057         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
1058         bug #1164313
1059
1060 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1061
1062         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
1063         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
1064
1065 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
1066
1067         * device/lib/printf_large.c: removed inline assembly for portability and
1068           readability. Use printf_fast if speed or size are more important.
1069         * src/pic16/gen.c: removed conditions around use of DEBUGpc
1070         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
1071
1072 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
1073
1074         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
1075         prevent compiler warning
1076
1077 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
1078
1079         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
1080         moved to level 0 and declared as static. Also they are explicit
1081         placed in access bank. This was necessery because some times they
1082         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
1083         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
1084         optimizations. Currently only compare to unsigned char is implemented,
1085         * src/pic16/gen.c: added fReturnIdx array,
1086         * (struct resolvedIfx) is moved to gen.h and made public,
1087         * (struct _G): added sregsAlloc and sregsAllocSet fields,
1088         * (aopForSym): added an optimization to directly store in stack of
1089         the operand of a SEND iCode,
1090         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
1091         but as registers instead (AOP_REG) using the fReturnIdx array,
1092         * (pic16_freeAsmop): remove the freed register from the
1093         _G.sregsAlloc field,
1094         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
1095         a compare of 'WREG',
1096         * (pic16_popGetTempRegCond): changed function prototype, now
1097         function takes also a bitVector argument v which holds the current
1098         set of registers that are allocated for stack access by aopForSym,
1099         registers allocated in aopForSym for accessing stack symbols are not
1100         any more part of the functions usedRegs field,
1101         * (genCall): some times aopOp is called for a stack variable to be
1102         send, aopForSym might perform the push, if this is true make sure
1103         that genCall doesn't push the variable twice by testing _G.resDirect,
1104         * (genFunction): changed testing for unspecified interrupt number
1105         from 256 to INTNO_UNSPEC,
1106         * modified selection scheme of frame pointer generation. Previously
1107         if function did use local registers a frame pointer was generated,
1108         now a frame pointer is generated only if function has arguments
1109         (that need PLUSW2 register access), or has stack arguments, or the
1110         compiler is not instructed to omit the frame pointer,
1111         * (genEndFunction): before restoring local registers that were saved
1112         in the function preamble, also restore the registers that *might*
1113         have been allocated for stack access,
1114         * (genRet): removed some old comments,
1115         * (genCmp, the active (RN's) version): added a call to the
1116         pic16_genCmp_special function to perform the compare with a more
1117         robust and optimized way,
1118         * (genInline): a feature has been added in inline code generation,
1119         which allows a wildcard variable substitution when writing inline
1120         assembly. Code is incomplete and experimental therefore undocumented,
1121         * (genCast): changed order of aopOp for result and right to allow
1122         aopForSym to directly load the result if possible,
1123         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
1124         perform an optimized compare on some selected special occasions,
1125         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
1126         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
1127         generate an IVT any more,
1128         * src/pic16/main.c (pic16_optionsTable): added command line option
1129         --optimize-cmp,
1130         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
1131         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
1132         macros,
1133         * src/pic16/NOTES: Raphael Neider added in list of active developers
1134         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
1135         jumptable_end to prevent bug #,
1136         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
1137         inCond and outCond fields,
1138         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
1139         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
1140         turn off register spilling,
1141         * (packRegsForOneUse): synced with other ports' versions although it
1142         is not used currently,
1143         * (pic16_packRegisters): added an optimization while reading
1144         structure bitfields, some registers may be saved (malloc code is
1145         decreased by 80 bytes)
1146
1147 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
1148
1149         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
1150         left is a bitfield, if yes, then don't optimize assignment. Perhaps
1151         this can be optimized more?
1152
1153 2005-03-10 Raphael Neider <rneider AT web.de>
1154
1155         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
1156           genNearPointerGet): (hopefully) fixed access to bitfields via
1157           pointers (p->bitN = x; and x = p->bitN; failed)
1158
1159 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
1160
1161         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
1162
1163 2005-03-09 Raphael Neider <rneider AT web.de>
1164
1165         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
1166
1167 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
1168
1169         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
1170         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
1171           (regTypeNum): set REG_BIT type if necessary
1172         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
1173         * support/regression/tests/critical.c: check bug 1144613
1174
1175 2005-03-02 Raphael Neider <rneider AT web.de>
1176
1177         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
1178
1179 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1180
1181         * src/avr/ralloc.c (serialRegAssign),
1182         * src/ds390/ralloc.c (serialRegAssign),
1183         * src/hc08/ralloc.c (serialRegAssign),
1184         * src/mcs51/ralloc.c (serialRegAssign),
1185         * src/pic/ralloc.c (serialRegAssign),
1186         * src/pic16/ralloc.c (serialRegAssign),
1187         * src/xa51/ralloc.c (serialRegAssign),
1188         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
1189
1190 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
1191
1192         * src/SDCCast.c (decorateType): fixed bug 1124787
1193
1194 2005-02-20 Hubert Sack <sack AT digiplan.de>
1195         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1196
1197         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
1198         patch #1121755
1199
1200 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1201
1202         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
1203         to keep the correct label reference count when adding/removing references
1204         to labels. A peephole file using this is appended to patch #1144962.
1205
1206 2005-02-14 Raphael Neider <rneider AT web.de>
1207
1208         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
1209         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
1210         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
1211           retrievals of result operand's value on assignment
1212
1213 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
1214
1215         * device/include/pic16/string.h: modified prototype for memccpy()
1216         to memccpy(void *, void *, char, size_t)
1217         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
1218         check whether to omit frame pointer or not,
1219         * (genInline): convert all occurences of "\n" to LF in inline
1220         assembler blocks, this helps formatting the inline text,
1221         * (pic16_loadFSR0): modified prototype,
1222         * (genNearPointerGet, genNearPointerSet): reorganization of code,
1223         removed some 8051 legacy code,
1224         * (genPackBits): enabled handling bitfields exceeding one byte in size,
1225         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
1226         before allocating temporary registers in functions,
1227
1228 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1229
1230         * support/regression/tests/bitvars.c: corrected the "fix"
1231
1232 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1233
1234         * support/regression/tests/bitvars.c,
1235         * support/regression/tests/bitwise.c,
1236         * support/regression/tests/rotate.c: "fixed" problems on Alpha
1237
1238 2005-02-10 Raphael Neider <rneider AT web.de>
1239
1240         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
1241           different size for Alpha
1242         * src/pic16/gen.c (genCmpEq) : improved compare with 0
1243
1244 2005-02-09 Raphael Neider <rneider AT web.de>
1245
1246         * src/SDCC.lex(doPragma) : save and restore warning options as well
1247           (also added new stack plus clone- and copyAndFreeSDCCERRG())
1248         * have #pragma less_pedantic set the errorlevel to WARNING
1249           (fixes #1117001)
1250         * (cloneOptimize) : fixed wrong malloc's size
1251         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
1252           facilitate correct handling of #pragma (save|restore)
1253
1254 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1255
1256         * src/mcs51/gen.c: removed non-standard C nameless struct/union
1257
1258 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
1259
1260         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
1261
1262 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
1263
1264         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
1265
1266 2005-02-02 Raphael Neider <rneider AT web.de>
1267
1268         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
1269         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
1270         * (pic16_storeForReturn): fixed to allow returning function pointers
1271         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
1272         * device/include/pic16/{stddef.h,stdbool.h}: added
1273
1274 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
1275
1276         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
1277
1278 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
1279
1280         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
1281         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
1282          appeared to be required
1283
1284 2005-01-31 Borut Razem <borut.razem AT siol.net>
1285
1286         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
1287           include/mcs51 and include/z80 directories to the package
1288
1289 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1290
1291         * src/hc08/gen.c (genFunction): fixed bug #1112752
1292
1293 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1294
1295         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
1296
1297 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1298
1299         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
1300
1301 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
1302
1303         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
1304
1305 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
1306
1307         * device/include/c8051fxxx.h: removed these 6 files
1308         * device/include/mcs51/c8051fxxx.h: added these 11 new files
1309
1310 2005-01-26 Raphael Neider <rneider AT web.de>
1311
1312         * src/pic16/gen.c (genAssign): fixed assignment from longs
1313           in codespace (were cut to three bytes)
1314         * (genDummyRead): implemented (except for CODESPACE...),
1315           fixed bug #1108575
1316         * src/pic16/glue.c (emitStatistics): beautified
1317         * device/lib/pic16/libm/Makefile: added include path
1318
1319 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1320
1321         * src/z80/gen.c (aopPut): fixed bug #1103902
1322
1323 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1324
1325         * device/lib/expf.c: fixed bug #1095792
1326
1327 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
1328
1329         * device/lib/pic16/libm: added Math library sources
1330
1331 2005-01-24 Raphael Neider <rneider AT web.de>
1332
1333         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
1334           to enable upcast to pCodeOpReg2 (there is no type tag to
1335           differenciate the two and pic16_popGet2p cast into PCOR2)
1336         * src/pic16/main.c (_process_pragma): fixed another malloc bug
1337           (sizeof(sectNames) changed to sizeof(sectName))
1338           Both patches fix segfaults under MinGW.
1339
1340 2005-01-23 Raphael Neider <rneider AT web.de>
1341
1342         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
1343           Safe_[mc]?alloc()'ed variables
1344         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
1345           of (byte sized) temporaries (assign them to WREG for now)
1346         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
1347           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
1348           this might fix SIGSEGVs on MinGW...
1349         * src/SDCCopt.c (killDeadCode): restored original behaviour
1350           (volatile operands might get thrown away though)
1351
1352 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
1353
1354         * src/pic16/gen.c: fixed bug #1106975,
1355         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
1356         pointer update, INTCON is saved, global interrupts are disabled and
1357         restored after updateing TOS.
1358         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
1359         * added function attribute 'shadowregs' to take advantage of shadow
1360         registers,
1361         * added function attribute 'wparam' as an alternative to the wparam
1362         pragma,
1363         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
1364         user declares a non-ISR function as 'shadowregs',
1365         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
1366
1367 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
1368
1369         * .version: bumped version number to 2.4.8
1370         * device/lib/pic16/pics.all: list of PIC18F devices supported by
1371         pic16 port,
1372         * device/lib/pic16/libio/i2c/: I2C module support library,
1373         * device/include/pic16/i2c.h: I2C support library header,
1374         * device/lib/pic16/libc/stdio/: standard IO support sources,
1375         * (printf_small.c): printf_small() source, supports float print,
1376         * (printf_tiny.c): printf_tiny() source, does not support floats,
1377         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
1378         enable global optimizations for entire library source, other
1379         Makefiles in the source tree are also modified to reflect this,
1380         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
1381         function,
1382         * doc/sdccman.lyx: updated to reflect new changes,
1383         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
1384         sym->onStack if-case,
1385         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
1386         sbit, idata, _idata, xdata, _xdata,
1387         * added pragma library, to link an external library, (see doc),
1388         * removed command line options, --pomit-config-words, --pomit-ivt,
1389         --pleave-reset-vector,
1390         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
1391         when calling assembler to reflect memory model used, also define
1392         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
1393         reflect stack model used,
1394         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
1395         on stack return NULL,
1396
1397 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1398
1399         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
1400           of the operands is volatile. Fixes #1020220
1401
1402 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1403
1404         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
1405         * (OptimizeRegUsage): make sure that there is really no other flow where
1406           the first pCode is used
1407
1408 2005-01-22 Raphael Neider <rneider AT web.de>
1409
1410         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
1411           to fix #1106967 (pCode->seq are not set up correctly)
1412
1413 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1414
1415         * src/SDCCglue.c (glue): make sure code area is declared before the
1416         static initialization area.
1417
1418 2005-01-21 Raphael Neider <rneider AT web.de>
1419
1420         * device/lib/Makefile.in: fixed test for pic16 install dir
1421         * device/lib/pic16/*/Makefile*: modified compile flags to enable
1422           optimizations
1423         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
1424           added --optimize-goto compiler switch and pragma wparam documentation
1425         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
1426         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
1427           and PRODH closing bug #1071770 (peephole optimizer)
1428
1429 2005-01-19 Raphael Neider <rneider AT web.de>
1430
1431         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
1432           cmdLine buffers (used when calling sdcpp...) are large enough
1433           (MAX_PATH=256 truncates arguments leading to system halts when
1434           used in MinGW...)
1435         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
1436         * (genUminus): rewritten to for efficiency
1437         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
1438           used uninitialized in some cases)
1439         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
1440           copy the third byte from the int -- now assumes 0x80 (data memory)
1441         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
1442           operands (genAddLit expects the iCode's operands to swapped as
1443           well), fixed leftover bytes (crashed for short left operands)
1444         * (pic16_genMinusDec): performance improvements, removed false
1445           PIC14 emitSKPNCs
1446         * (pic16_genMinus): fixed to cope with differently sized operands
1447         * src/pic16/glue.c (pic16_glue): added new banksel optimization
1448           for --obanksel > 1
1449         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
1450         * src/pic16/graph.[ch]: implementation of directed graphs, used by
1451           new banksel optimization
1452         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
1453           analysis for temporary registers (segfaults...)
1454         * src/pic16/peeph.def: added rule
1455
1456 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
1457
1458         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
1459         which converts a float number to its ASCII representation
1460         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
1461         functions to convert the fractional and integer part of a float to ASCII,
1462         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
1463         realloc.c): added _MALLOC_SPEC to explicit place variables in data
1464         ram
1465         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
1466         _STATMEM macros,
1467         * device/include/pic16/adc.h: added GPL info,
1468         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
1469         a pCodeOp as tested operand,
1470         * (genNearPointerGet): optimized bit testing, does not use
1471         intermediate register for bit value, test directly instead with
1472         BTFSS, BTFSC, works only for single bits,
1473         * (genpic16Code): dump the name of the iCode in the asm,
1474         * src/pic16/ralloc.c (decodeOp): removed static declaration and
1475         renamed to pic16_decodeOp,
1476         * (serialRegAssign): do not allocate a temporary register for iCode
1477         sequences that test a single bit for 1/0
1478
1479 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
1480
1481         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
1482         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
1483         access stack and frame pointers. They are initially assigned to
1484         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
1485         accessing SFRs. Updated all occurences of modification of stack or
1486         frame pointer in gen.c and pcode.c,
1487         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
1488         assigning of a literal value to pointers,
1489         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
1490         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
1491         selected
1492
1493 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
1494
1495         * doc/sdccman.lyx: update documentation about stack pragma, added
1496         some info for stack memory models
1497
1498 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1499
1500         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
1501
1502 2005-01-08 Raphael Neider <rneider AT web.de>
1503
1504         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
1505           udata sections to fix bug #1097823
1506
1507 2005-01-05 Raphael Neider <rneider AT web.de>
1508
1509         * src/pic16/gen.c (genGenericShift): added handling of differently
1510           sized left operand and result
1511
1512 2005-01-04 Raphael Neider <rneider AT web.de>
1513
1514         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
1515         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
1516           to hold the condition bit)
1517         * added new version of genCmp (old code available via #define)
1518         * added new version of genShiftLeft/genShiftRight in a generic
1519           way, now supports shifting by negative values
1520         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
1521           shiftCount (expected by genGenericShift)
1522         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
1523         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
1524           dump
1525         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
1526           is an invalid literal too...)
1527
1528 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
1529
1530         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
1531         from Raphael Neider,
1532         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
1533         for 8-bit literals. This fixes some literal operands which are sign
1534         extended to 16-bits ints when instruction needs only 8-bits.
1535
1536 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
1537
1538         * device/lib/logf.c: added mcs51 assembly version
1539         * device/lib/expf.c: added mcs51 assembly version
1540         * device/lib/_logexpf.c: new shared asm code for expf and logf
1541         * device/include/math.h: add defines for assembly math library
1542         * device/lib/Makefile.in: build new _logexpf.c
1543         * device/lib/libfloat.lib: use new _logexpf.c
1544
1545 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
1546
1547         * src/pic/device.c
1548         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
1549           device types which have less than 0x7f registers.
1550
1551 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
1552
1553         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
1554
1555 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
1556
1557         * device/lib/printf_fast.c: only build on supported arch.
1558         * device/lib/printf_tiny.c: only build on supported arch.
1559         * device/lib/printf_fast_f.c: only build if asm float lib
1560         * device/lib/_fsget1arg.c: only build if asm float lib
1561         * device/lib/_fsget2args.c: only build if asm float lib
1562         * device/lib/_fsnormalize.c: only build if asm float lib
1563         * device/lib/_fsreturnval.c: only build if asm float lib
1564         * device/lib/_fsrshift.c: only build if asm float lib
1565         * device/lib/_fsswapargs.c: only build if asm float lib
1566         * device/include/stdio.h: don't provide print_fast,
1567           print_fast_f, print_tiny prototypes if --xstack used
1568
1569 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
1570
1571         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
1572         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
1573           to the SOURCES
1574
1575 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
1576
1577         * device/lib/printf_fast_f.c: same as printf_fast, but
1578           with floating point enabled
1579         * device/lib/printf_fast.c: minor tweaks
1580         * device/include/stdio.h: add printf_fast_f
1581
1582 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
1583
1584         * src/SDCCmain.c: make --float-reent default for mcs51
1585         * device/lib/_fsadd.c: added mcs51 assembly version
1586         * device/lib/_fssub.c: added mcs51 assembly version
1587         * device/lib/_fsmul.c: added mcs51 assembly version
1588         * device/lib/_fsdiv.c: added mcs51 assembly version
1589         * device/lib/_fseq.c: added mcs51 assembly version
1590         * device/lib/_fsneq.c: added mcs51 assembly version
1591         * device/lib/_fsgt.c: added mcs51 assembly version
1592         * device/lib/_fslt.c: added mcs51 assembly version
1593         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
1594         * device/lib/Makefile.in: add _fscmp to build
1595         * device/lib/libfloat.lib: add _fscmp to build
1596
1597 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
1598
1599         * device/lib/_fs2slong.c: added mcs51 assembly version
1600         * device/lib/_fs2sint.c: added mcs51 assembly version
1601         * device/lib/_fs2schar.c: added mcs51 assembly version
1602         * device/lib/_fs2ulong.c: added mcs51 assembly version
1603         * device/lib/_fs2uint.c: added mcs51 assembly version
1604         * device/lib/_fs2uchar.c: added mcs51 assembly version
1605         * device/lib/_slong2fs.c: added mcs51 assembly version
1606         * device/lib/_sint2fs.c: added mcs51 assembly version
1607         * device/lib/_schar2fs.c: added mcs51 assembly version
1608         * device/lib/_ulong2fs.c: added mcs51 assembly version
1609         * device/lib/_uint2fs.c: added mcs51 assembly version
1610         * device/lib/_uchar2fs.c: added mcs51 assembly version
1611         * device/include/float.h: added #define to select asm vs c
1612
1613 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
1614
1615         * device/lib/printf_fast.c: improvements to float output
1616         * device/include/float.h: add defines for assembly float library
1617         * device/lib/_fsget1arg.c: receive 1 float arg
1618         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
1619         * device/lib/_fsnormalize.c: normalize a float
1620         * device/lib/_fsreturnval.c: return float, various helper routines
1621         * device/lib/_fsrshift.c: right shift a float's mantissa
1622         * device/lib/_fsswapargs.c: swap 2 floats
1623         * device/lib/Makefile.in: build these 6 new files for mcs51
1624         * device/lib/libfloat.lib: add these 6 files to the library
1625
1626 2004-12-26 Borut Razem <borut.razem AT siol.net>
1627
1628         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
1629           built by gcc 3.4.2
1630
1631 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
1632
1633         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
1634           and fully reentrant and register bank neutral.
1635         * device/lib/printf_fast.c: added float (not enabled by default),
1636           added compact/slower integer (also not enabled by default),
1637           improved size/speed of fast integer code, other minor changes
1638         * device/include/stdio.h, device/lib/Makefile.in,
1639           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
1640
1641 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
1642
1643         * src/pic16/pcode.c: declaring variables other than at the start of a
1644           block is not supported in C by VC6.
1645
1646 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
1647
1648         * applied a previous patch from Raphael Neider that wasn't included
1649         in the previous commits, which fixes infinite loops within jumptable
1650         improvements,
1651         * made some fixes that previous patches introduced
1652
1653 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
1654
1655         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
1656         that fixes an issue with AOP_PCODE asmop's offset,
1657         * (pic16_popCopyReg): update instance field too,
1658         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
1659         function of pic port,
1660         * (genCmp, genAnd, genAssign),
1661         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
1662
1663 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
1664
1665         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
1666         variables initial values to idata section,
1667         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
1668         variables in some functions. This utilizes parmBytes field of iCode
1669         structure to hold the offset of the variable in stack. (might be
1670         able to use the stack field too?)
1671         * applied patch from Raphael Neider # ### , # ###
1672         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
1673         variable initial values in idata section,
1674         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
1675         for static variables with initial value
1676         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
1677         applied fix in while loop from Raphael Neider.
1678
1679 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
1680
1681         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
1682         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
1683         * src/ds390/ralloc.c (serialRegAssign): spill bits
1684         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
1685         * support/Util/SDCCerr.c,
1686         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
1687         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
1688         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
1689
1690 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
1691
1692         * device/include/sdcc-lib.h: inserted LGPL, added includes
1693           asm/ds390/features.h and asm/mcs51/features.h
1694         * device/include/asm/default/features.h,
1695         * device/include/asm/gbz80/features.h,
1696         * device/include/asm/z80/features.h: added empty _AUTOMEM
1697           and _STATMEM
1698         * device/include/asm/ds390/features.h,
1699         * device/include/asm/mcs51/features.h: added files with defines for
1700           _AUTOMEM and _STATMEM indicating automatic and static storage class
1701         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
1702         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
1703         * src/SDCCicode.c (geniCodeCast),
1704         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
1705         * src/SDCCloop.c (loopInduction): removed unused variable lr
1706         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
1707           to convertToFcall to include char modulo (RFE 1065037), added check
1708           if left operand is unsigned and use abs of literal value
1709         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
1710           as it doesn't work after conversion from peephole.def to peephole.rul
1711         * src/mcs51/gen.c (toBoolean): added check for size,
1712           (genModOneByte): optimized code for signed char modulo a literal
1713           power of 2 (thanks to Hubert Sack),
1714           (genRRC): removed unnecessary "clr c",
1715           (genRLC): replaced "add a,acc" with cheaper "rlc a"
1716         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
1717           jump optimization,
1718           swapped rules 256.c and 256.d,
1719           extended 256.d by using new multiple checks (thanks Erik),
1720           added rules 256.e and 256.f,
1721           updated rule 261.a and 261.b to new generated code
1722         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
1723
1724 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1725
1726         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
1727           induction related bugs, including first part of bug #1074377
1728
1729 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
1730
1731         * applied patch from bug-report #1076292,
1732         * applied patches for genAnd and Goto-optimizations for Raphael
1733         Neider,
1734         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
1735         dump a less iCode information,
1736         * src/pic16/device.h (pic16_options_t): added field debgen,
1737         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
1738         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
1739         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
1740         puclic,
1741         * (various functions): added macros FENTRY and FENTRY2 to functions,
1742         to emit function prologue,
1743         * (various functions): fixed indentation,
1744         * (genNearPointerGet): fixed loading of FSR0,
1745         * (genPackBits): applied patch from Raphael Neider to fix updating
1746         of FSR0 and touching only the modified bits,
1747         * src/pic16/genarith.c (various functions): added macros FENTRY to
1748         emit function prologue in comments,
1749         * src/pic16/pcode.h: added functions debugf2, debugf3,
1750         * src/pic16/ralloc.c: partial fix for packForPush caused
1751         segmentation fault,
1752
1753 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1754
1755         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
1756           <stsp AT users.sourceforge.net> with reversed byte order
1757         * support/regression/tests/rotate.c: added (ds390 skips some tests)
1758
1759 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1760
1761         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
1762           bug #1074377
1763         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
1764         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
1765
1766 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
1767
1768         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
1769
1770 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1771
1772         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
1773           conditions,
1774           (setFromConditionArgs): friendly operand parser for peephole rules,
1775           (operandBaseName, operandsNotRelated): new peephole condition
1776           "operandsNotRelated" -- similar to "operandsNotSame", but takes
1777           architecture specific register naming into account, handles n-way
1778           comparisons, and supports quoted literals
1779         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
1780
1781 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1782
1783         * src/mcs51/peeph.def: fixed bug #1076940
1784
1785 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
1786
1787         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
1788
1789 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1790
1791         Adding support for replacing ljmps with sjmps in jumptables
1792         generated for switch statements. For now you need to set the
1793         environment variable SDCC_SJMP_JUMPTABLE to enable this.
1794         Now 4 algorithms for mcs51 jumptable generation are used:
1795         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
1796         addresses loaded pc-relative for up to 112 cases and stack-pushing
1797         target addresses loaded with offset from dptr for up to 256 cases.
1798
1799         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
1800         * src/mcs51/main.c: adapted constants for switch table generation
1801         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
1802
1803 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
1804
1805         * device/lib/printf_large.c (_print_format): fixed bug 1073386
1806         * support/regression/tests/bug1057979.c: added test for bug 1073386
1807
1808 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
1809
1810         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
1811         compilers
1812
1813 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
1814
1815         * src/pic16/device.h,
1816         * src/pic16/genarith.c,
1817         * src/pic16/glue.c,
1818         * src/pic16/main.c,
1819         * src/pic16/pcode.c: applied patches #1068154 and #1070213
1820
1821 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
1822
1823         Large cummulative patch for pic16 port.
1824         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
1825         to call when a stack overflow occurs,
1826         * (malloc.h): added CVS Id tag,
1827         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
1828         variable,
1829         * added libc directory. The current version of LibC contains string
1830         functions, ctype functions and macros and some functions of the
1831         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
1832         be extensively tested in the future. Standard disclaimer here.
1833         Library is not automatically build yet. But one can build it by
1834         invoking 'make' inside the libc directory.
1835         * added ADC library under libio. Preliminary version yet.
1836
1837         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
1838         * src/pic16/gen.c (aopForRemat): asmop size is filled by
1839         aopForRemat() now and not by pic16_aopOp(),
1840         * (pic16_popGetTempReg): removed warning messgae when allocating
1841         temporary registers, its a buggy feature and will be removed,
1842         * (pic16_popGet): set register instance field in AOP_CRY,
1843         * (pic16_outBitC): fixed for results in size greater than 1,
1844         * (genUminusFloat): fixed for pic16, ported code from mcs51,
1845         * (pic16_storeForReturn): optimized return of 0,
1846         * (genCmp): experimental code for new genCmp which uses PIC18's
1847         special compare&skip instructions. Initial tests fail some times
1848         with variables grater than 1 byte in size, so new code is disabled,
1849         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
1850         a single bit,
1851         * (genCast): began a fix to optimize the casting of a bit to another
1852         bit, now assigning a bitfield to another bitfield will fail, sorry,
1853         * src/pic16/main.c: disabled the use of lr-support feature,
1854         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
1855         * added some function prototypes, added function _debugf prototype,
1856         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
1857         bits with offset (case PO_GPR_BIT),
1858         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
1859         command line,
1860         * (isBankInstruction): modified to return 0 for no banking instruction,
1861         and 1 for banking instruction,
1862         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
1863         caused stop processing pCodes after a inline assembly block,
1864         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
1865         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
1866         registers when it shouldn't,
1867         * src/pic16/ralloc.c (allocReg): add preliminary support for
1868         supporting a limited set of temporary registers,
1869
1870 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1871
1872         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
1873           genDataPointerSet): ensure assignments always copy in MSB to LSB
1874           order,
1875           (loadRegFromAop): recognize CLRH optimization,
1876           (genFunction): optimize RECEIVE iCodes in reentrant functions
1877
1878 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1879
1880         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
1881           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
1882           selected.
1883         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
1884         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
1885           contiguous with data
1886
1887 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1888
1889         * device/lib/_gptrget.c (_gptrget),
1890         * device/lib/_gptrgetc.c (_gptrgetc),
1891         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
1892           instead of sjmp to ret
1893         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
1894           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
1895
1896 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
1897
1898         * .version: bumped version to 2.4.7
1899         * device/lib/_gptrget.c (_gptrget): is now _naked
1900         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
1901         * device/lib/_gptrput.c (_gptrput): is now _naked
1902         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
1903           (createFunction): fixed xstack
1904         * src/SDCCglue.c (emitMaps): set allocation required for bit area
1905         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
1906           or bit either,
1907           (geniCodeCritical): store original interrupt state in an iTemp bit
1908           var unless stack-auto
1909         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
1910         * src/SDCCmain.c (setIncludePath): added include/target to search path
1911         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
1912         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
1913           prototype,
1914           (processFuncArgs): put bit vars in bit area
1915         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
1916           unsaveRBank): fixed xstack,
1917           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
1918           (genFunction, genEndFunction): fixed xstack,
1919           (genAssign): optimization don't walk backwards through mem
1920         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
1921         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
1922         * support/regression/Makefile: also make library (for stack-auto) when
1923           making "all" and added "test-mcs51-xstack-auto"
1924         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
1925         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
1926         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
1927         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
1928         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
1929           make-library by MAKE_LIBRARY
1930         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
1931           regression tests for xstack
1932         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
1933         * support/regression/tests/critical.c: test for critical on mcs51
1934
1935 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1936
1937         * support/regression/ports/ucz80/spec.mk: use include and lib files from
1938           built version of sdcc instead of installed version
1939
1940 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
1941
1942         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
1943         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
1944           vprintf.c now
1945         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
1946         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
1947           WARNING: remove device/lib/build/z80/printf.o by hand when
1948           updating from previous build!
1949         * device/lib/z80/printf.c: updated comment
1950         * support/regression/tests/bug1057979.c: test all ports now
1951         * support/regression/tests/bug1065458.c: file added
1952
1953 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1954
1955         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
1956           *_start and *_end symbols for static functions
1957
1958 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
1959
1960         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
1961           and search crt0.o in all library paths,
1962           (setIncludePath): proper handling of --nostdinc,
1963           (setLibPath): proper handling of --nostdlib
1964         * support/regression/Makefile,
1965         * support/regression/ports/ds390/spec.mk,
1966         * support/regression/ports/gbz80/spec.mk,
1967         * support/regression/ports/hc08/spec.mk,
1968         * support/regression/ports/mcs51/spec.mk,
1969         * support/regression/ports/mcs51-large/spec.mk,
1970         * support/regression/ports/mcs51-stack-auto/spec.mk,
1971         * support/regression/ports/z80/spec.mk: use include and lib files from
1972           built version of sdcc instead of installed version
1973         * doc/sdccman.lyx: fixed typo in --nostdinc
1974
1975 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
1976
1977         * src/pic/pcode.c,
1978         * src/pic/device.c,
1979         * src/pic/ralloc.c,
1980         * src/pic/gen.c : added support to generate code for struct bit fields.
1981
1982 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
1983
1984         * as/xa51/xa_version.h,
1985         * device/include/errno.h,
1986         * device/include/regc515c.h,
1987         * device/lib/_itoa.c,
1988         * device/lib/_ltoa.c,
1989         * device/lib/ser_ir_cts_rts.c,
1990         * sim/ucsim/xa.src/glob.cc,
1991         * sim/ucsim/xa.src/inst_gen.cc,
1992         * sim/ucsim/xa.src/xa_bit.cc,
1993         * sim/ucsim/xa.src/xa_sfr.cc,
1994         * sim/ucsim/z80.src/inst_dd.cc,
1995         * sim/ucsim/z80.src/inst_fdcb.cc,
1996         * support/scripts/keil2sdcc.pl,
1997         * src/pic16/pic16.dsp,
1998         * src/pic16/pic16a.dsp: corrected cvs line endings
1999         * device/lib/printf_large.c: fixed bug 1057979
2000         * src/pic16/gen.c: fixed non-C standard code
2001         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
2002         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
2003         * support/regression/ports/mcs51/support.c: reload T1 asap
2004         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
2005           pdata use and clear idata startup behaviour
2006         * support/regression/tests/bug1057979.c: added
2007
2008 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
2009
2010         * device/examples/ds390/ow390/ad26.h,
2011         * device/examples/ds390/ow390/cnt1d.h,
2012         * device/examples/ds390/ow390/crcutil.c,
2013         * device/examples/ds390/ow390/ownet.h,
2014         * device/examples/ds390/ow390/owsesu.c,
2015         * device/examples/ds390/ow390/swt12.h,
2016         * device/examples/ds390/ow390/swtoper.c,
2017         * device/examples/ds390/ow390/temp10.h,
2018         * device/examples/ds390/ow390/thermodl.c,
2019         * device/examples/ds390/tinitalk/tinitalk.dsp,
2020         * device/examples/ds390/tinitalk/tinitalk.dsw,
2021         * device/examples/mcs51/clock/hw.h,
2022         * device/examples/mcs51/simple2/go.bat,
2023         * device/examples/serialcomm/windows/serial.h,
2024         * device/examples/xa51/dummy.c,
2025         * device/examples/xa51/hello.c,
2026         * device/include/80c51xa.h,
2027         * device/include/at89x051.h: corrected cvs line endings
2028
2029 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
2030
2031         * src/pic16/main.c (options): added command line --gstack, to trace
2032         stack over/under flows,
2033         * added pragma 'wparam' to allow passing first byte of function
2034         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
2035         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
2036         call to __gstack_test function and sets up the symbol as extern,
2037         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
2038         * popaop): added call to pic16_testStackOverflow,
2039         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
2040         wparamList list,
2041         * (genCall, genPcall): now all parameters are passed via stack
2042         except in functions that are pass to wparam pragma in which WREG is
2043         used too,
2044         * (genPcall): REENTRANT flag is checked to see if variable prototype
2045         contains reentrant keyword, don't call a non-reentrant function, via
2046         a reentrant function pointer or vice versa, functions are never
2047         passed via WREG,
2048         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
2049         D.Winkler,
2050         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
2051         SIGSEGV when accessing a NULL register stucture,
2052         * (pic16_printGPointerType): modified to handle UPPER modifier for
2053         function initializers, changed prototype of function to simpler one,
2054         * (pic16_printIvalFuncPtr): check to see if function is already
2055         added in externs list,
2056         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
2057         optimized a move from W to SFR with a move to the same register
2058         later after a CALL,
2059         * device/lib/pic16/debug: NEW directory, contains debug features
2060         which are enabled when linking with libdebug.lib, currently command
2061         line option --gstack enables stack pointer tracing for over/under
2062         flow, corresponding sources are in debug/gstack
2063
2064 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
2065
2066         * doc/sdccman.lyx: updated SDCC version,
2067         * (PIC16 port): update list of command line options,
2068         * src/pic16/device.h (structure pic16_options_t): added field gstack
2069         to enable stack overflow tracing on push/pops,
2070         * src/pic16/device.c (statistics structure): added statistics
2071         structure,
2072         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
2073         pic16_dump_int_registers): increase statistics counters for each
2074         * variable which is encountered
2075         * (pic16_dump_usection): emit each .udata variable to its own udata
2076         section,
2077         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
2078         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
2079         parameters via stack, otherwise use old scheme,
2080         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
2081         assembler output file,
2082         * src/pic16/main.c: added command line options --gstack to enable
2083         push/pop tracing for stack overflow,
2084         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
2085         instructions): added size of each instruction,
2086         * (pic16_countInstruction): estimate size of instructions in
2087         the_pFile list, inline assembly blocks are not counted,
2088         * (pic16_FixRegisterBanking): trace previous register usage, when
2089         banksel optimizations is greater than 0, don't emit a redudant
2090         banksel directive,
2091
2092 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
2093
2094         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
2095         * src/pic16/ralloc.c : applied same fix for pic16.
2096         * src/pic/gen.c : tidied it up a little.
2097
2098 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2099
2100         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
2101         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
2102
2103 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2104
2105         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
2106
2107 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2108
2109         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
2110         non-reentrant function __modsint in the interrupt function (thus
2111         corrupting math operations during serial I/O)
2112         * device/lib/ser_ir.c: as above, changed buffersize
2113         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
2114         256.c,d for zeroing
2115         * doc/Makefile: added option -t for rsync
2116
2117 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2118
2119         * src/SDCCast.h (struct ast),
2120         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
2121
2122 2004-10-20 Borut Razem <borut.razem AT siol.net>
2123
2124         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
2125         package
2126
2127 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
2128
2129         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
2130         makefile targets,
2131         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
2132         support functions to replace long sequences of MOVFF's from access
2133         bank registers to stack and vice versa,
2134         * src/pic16/device.h: added new field opt_flags, where optimization
2135         flags can be set to enable certain features,
2136         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
2137         * pBlock, (genFunction, genEndFunction): surroung loop for
2138         saving/loading used registers in stack with PC_INFO pCodes,
2139         INF_LREGS. Code in between can then be optimized by pCode optimizer
2140         to support function calls,
2141         * (genDataPointerSet): fixed bug which loaded float fields in
2142         structures with corrupt data,
2143         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
2144         in a standard way debug info on stderr. Feature used for developing
2145         and debugging only,
2146         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
2147         obsolete chunks of code,
2148         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
2149         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
2150         * pic16/src/pcode.c (pic16_newpCodeInfo,
2151         * (pic16_newpCodeOpLocalRegs),
2152         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
2153         feature,
2154         * (pic16_pCodeConstString): printing of the initial value of a
2155         symbol as a comment is inhibited since parsing was already done by
2156         copyStr and output is corrupt,
2157         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
2158
2159 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2160
2161         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
2162
2163 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
2164
2165         * as/mcs51/lkarea.c: removed old K&R style,
2166           (lnksect): changed check on boundary error,
2167           (lnksect2): changed check on boundary error,
2168           (lnksect2): extend XSTK to end of page if size = 1
2169         * as/mcs51/lkmain.c: removed old K&R style,
2170           (Areas51): create l_IRAM symbol
2171         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
2172         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
2173           model-mcs51-stack-auto, added model-mcs51-xstack-auto
2174         * device/lib/_mullong.c: added version to be compiled with xstack
2175         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
2176         * device/lib/mcs51/crtxclear.asm: clear pdata as well
2177         * device/lib/mcs51/crtxstack.asm: fixed comment
2178         * src/SDCCglue.c: maxInterrupts defaults to 0,
2179           (emitMaps): added pdata,
2180           (createInterruptVect): (re)moved default,
2181           (glue): added pdata,
2182           (glue): moved __start__xstack to XSTK with default size 1
2183         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
2184           and options.float_rent when options.stackAuto is set,
2185           (linkEdit): only write XDATA_NAME if provided on command line
2186         * src/SDCCmem.h,
2187         * src/SDCCmem.c: added pdata
2188         * src/port.h: added pdata_name to PORT
2189         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
2190           (saveRegisters, unsaveRegisters): removed usage of B,
2191           (genMinus): fixed accumulator clash,
2192           (genJumpTab): added comment, this needs another look
2193         * src/mcs51/gen.c: added check for "B in use" paranoia,
2194           added pushB() and popB()
2195         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
2196           chance
2197         * src/avr/main.c,
2198         * src/ds390/main.c,
2199         * src/hc08/main.c,
2200         * src/mcs51/main.c,
2201         * src/pic/main.c,
2202         * src/pic16/main.c,
2203         * src/xa51/main.c,
2204         * src/z80/main.c: (reset_regparms) made void parameter explicit and
2205           added PSEG (PAG,XDATA) or NULL to port specifier
2206         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
2207         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
2208           (_mcs51_genInitStartup): removed __start__xstack equ,
2209           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
2210         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
2211         * src/z80/gen.c (_rleAppend): fixed warnings
2212         * support/regression/tests/zeropad.c: added pdata test
2213         * .version: bumped to 2.4.6
2214
2215 2004-10-17 Borut Razem <borut.razem AT siol.net>
2216
2217         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
2218         as a part of nightly build
2219
2220 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
2221
2222         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
2223         WREG holds the first byte function parameters,
2224         * (aopForSym): take special case for symbols which are in FARSPACE
2225         but in CODESPACE too,
2226         * (assignResultValue): modified to take into account _G.useWreg,
2227         * (genCall): don't use wreg for parameter passing when function is
2228         declared as reentrant, too, added optimization INCF to stack
2229         pointer when stack parameter count is 1,
2230         * (genFunction, genEndFunction): refurnished and fixed to not using
2231         wreg for passing parameters when function has varargs or is
2232         reentrant, fixed bug with symbol name compare for generating
2233         functions in absolute address,
2234         * (pic16_storeForReturn): refurnished,
2235         * (genCmp): began writing a new version of the function, not ready
2236         yet, therefore it is disabled,
2237         * (genAssign): do not read code memory when assigning a function to
2238         a pointer function,
2239         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
2240         array of characters, not pointer,
2241         * (pic16initialComments): in debug mode emit an .ident directive for
2242         the assembler,
2243         * (_process_pragma): emit a new warning type (internal to pic16)
2244         when setting stack to default length, emit a similar warning when
2245         placing a function at absolute address and address is not word aligned
2246         * (_pic16_parseOptions): added 'return TRUE' statement,
2247         * (_pic16_linkEdit): if compiling a source, then add the source's
2248         file object, first in the list of objects to link,
2249
2250 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
2251
2252         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
2253         * src/pic/main.c : removed VC warning.
2254         * src/pic/gen.c : changed comment.
2255
2256 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
2257
2258         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
2259         reference to a deprecated symbol _GPTRREG was causing failure to
2260         link. Thanks G. M. Gallant for the info.
2261
2262 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
2263
2264         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
2265         comments for Bugs item #954788.
2266
2267 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
2268
2269         * src/pic16/device.c (pic16_dump_gsection,
2270         * pic16_groupRegistersInSection): handle symbols declared to be in
2271         access bank differently,
2272         * src/pic16/gen.c (struct _G): added field resDirect,
2273         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
2274         send values read from stack directly to result and don't allocate
2275         temporary values,
2276         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
2277         same registers,
2278         * (pic16_sameRegsOfs): NEW,
2279         * (freeAsmop): if _G.resDirect is set then do not mark registers as
2280         free because they were not allocated from temporary pool,
2281         * pic16_popRegFromString): workaround to fix a problem with
2282         allocating variables twice or never,
2283         * (genGenPointerGet): using PRODL instead of FSR0H,
2284         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
2285         instead of FSR0H,
2286         * (genAssign): take advantage of the _G.resDirect flag,
2287         * (genCast): around line 11844, use mov2f instead of directly
2288         MOVFF'ing between operands to account for literal values,
2289         * src/pic16/genutils.c: some new debug functions for gpsim have been
2290         added,
2291         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
2292         float with integer part only,
2293         * src/pic16/main.c (_process_pragma): handle pragma udata access to
2294         place variables in access bank
2295         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
2296         updated sources to reflect recent changes in gen.c
2297
2298 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
2299
2300         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
2301         sources that searched for headers in installation path, now the
2302         device/include/pic16 is used,
2303         * src/pic16/glue.c (pic16glue),
2304         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
2305         .line directives if not in debug mode, this suppresses assembler's
2306         warnings for ignored directives
2307
2308 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
2309
2310         * src/port.h: made reset_regparms prototype void parameter explicit.
2311         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
2312         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
2313         * doc/sdccman.lyx: documented warning disabling and how to use
2314           printf_large to make it print floats.
2315         * device/include/stdbool.h: NEW
2316         * device/lib/_atof.c,
2317         * device/lib/_divuint.c,
2318         * device/lib/_divulong.c,
2319         * device/lib/expf.c,
2320         * device/lib/printf_large.c,
2321         * device/lib/sincosf.c,
2322         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
2323         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
2324           a completely reentrant lib.
2325
2326 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
2327
2328         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
2329         * device/include/pic16/stdio.h: fixed bug with colon
2330
2331 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
2332
2333         * device/include/pic16/stdio.h,
2334         * device/include/pic16/stdlib.h,
2335         * device/include/pic16/math.h: NEW
2336         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
2337         declared as _naked to reduce overhead
2338         * device/lib/Makefile.in (target port-specific-objects-pic16):
2339         changed * to *.* so to ignore the CVS directory,
2340         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
2341         stacked variables back in stack,
2342         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
2343         corruption
2344
2345 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
2346
2347         * .version: bumped version number to 2.4.5
2348         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
2349         * support/Util/SDCCerr.c (messages structure): added entry for
2350         W_POSSBUG2
2351
2352         Large cumulative patch for pic16 port and libraries.
2353         * device/include/pic16/sdcc-lib.h,
2354         * device/include/pic16/stdarg.h,
2355         * device/include/asm/pic16/features.h,
2356         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
2357         * device/include/pic16/float.h: changes reentrant keyword with
2358         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
2359         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
2360         updated target build-libraries to include objects from gptr,
2361         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
2362         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
2363         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
2364         all function headings,
2365         * src/SDCCmain.c: added global parameter userIncDirsSet,
2366         * (parseCmdLine): when option -I is encountered add directory to
2367         userIncDirsSet too,
2368         * src/version.awk: added space between control and long,
2369         * src/pic16/NOTES: added some notes for the port,
2370         * src/pic16/gen.c: added prototype for mov2fp function,
2371         * (fReturnpic16[]): properly named return value registers,
2372         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
2373         * (aopForSym): added code to handle symbols with onStack flag set,
2374         symbols onStack are allocated PTRSIZE bytes,
2375         * (aopFreeAsmop): handles special case where asmops are stack objects,
2376         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
2377         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
2378         added argument lock to trace flaws in allocating temporary registers
2379         when developing port,
2380         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
2381         * (pic16_popRegFromString): reenabled allocating a direct register
2382         from string,
2383         * (assignResultValue): various beautifications,
2384         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
2385         referenced function argument,
2386         * (genIpush): reenabled to allow stacked arguments, handles only
2387         ic->parmPush iCodes,
2388         * (genCall, genPcall): major changes to allow for variable argument
2389         functions, fixed a bug with falsely restoring stack pointer after
2390         returning from call,
2391         * (genFunction): pending code for critical function,
2392         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
2393         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
2394         * (genNearPointerGet): fixed bug with indirect reading, was always
2395         reading from INDF0
2396         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
2397         pointers,
2398         * (genAddrOf): rewrote code to take address of a stacked function parameter
2399         * (genCast): fixed casting to generic pointer type,
2400         * src/pic16/gen.h: added AOP_STA,
2401         * (struct asmop): added field stk,
2402         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
2403         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
2404         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
2405         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
2406         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
2407         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
2408         generic pointers,
2409         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
2410         and library paths,
2411         * (pic16_port structure): generic pointer size is set to 3,
2412         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
2413         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
2414         compiler warning,
2415         * src/pic16/ralloc.c (allocReg): prevent allocating register when
2416         operand is an iTemp,
2417
2418 2004-09-24 Martin Helmling <mh AT octo-soft.de>
2419
2420         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
2421         * debugger/mcs51/simi.c: addapt new syntax of s51
2422
2423 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
2424
2425         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
2426         * src/pic16/pcode.c: commented out some calls to free() in order to
2427         fix bug #989576,
2428
2429 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2430
2431         * src/SDCCicode.h,
2432         * src/SDCCicode.c (isiCodeInFunctionCall),
2433         * src/avr/ralloc.c (selectSpil),
2434         * src/pic/ralloc.c (selectSpil),
2435         * src/pic16/ralloc.c (selectSpil),
2436         * src/ds390/ralloc.c (selectSpil),
2437         * src/hc08/ralloc.c (selectSpil),
2438         * src/xa51/ralloc.c (selectSpil),
2439         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
2440         stack in the middle of a function call sequence (fixes bug #1020268)
2441         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
2442         costs associated with the minimum switch case.
2443
2444 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2445
2446         * src/SDCC.lex: fixed bug #1030549
2447
2448 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2449
2450         * src/SDCCcse.h (struct cseDef),
2451         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
2452         over a function call if the CSE is derived from a symbol whose
2453         address has been taken (fixes bug #1029883)
2454         * support/regression/tests/bug-1029883: a new regression test for
2455         this bug
2456
2457 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2458
2459         * src/hc08/gen.c (emitinline): fixed bug #1029778
2460         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
2461         to a cast object is no longer a syntax error ("fixes" bug #1030006,
2462         and starts toward RFE #905167)
2463
2464 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
2465
2466         * src/pic16/gen.c (mov2f): New function to move an operand to
2467         another without considering if it is a literal or a register,
2468         * (pic16_sameRegs): don't check if they are both AOP_REG,
2469         * (AccRsh): removed andmask=0 lines,
2470         * (genLeftShift): duplicated to be improved in future versions,
2471         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
2472         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
2473         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
2474         * (pic16initMnemonics): added initialization for POC_INFSNZW,
2475         * (insertBankSwitch): fixed inserting banksel directives algorithm
2476         for instructions that follow a skip instruction, this fixes a report
2477         for broken subtraction code generation,
2478         * src/pic16/ralloc.c (deassignLRs): do not free register if current
2479         iCode is a left op, just in case result and right share the same
2480         registers
2481
2482 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2483
2484         * src/hc08/main.c,
2485         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
2486         preservation of HX
2487         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
2488         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
2489         on 2004-09-12; it was buggy
2490
2491 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
2492
2493         * src/SDCCsymt.h: removed RESULT_CHECK
2494         * src/SDCCast.c,
2495         * src/SDCCglue.c,
2496         * src/SDCCval.c,
2497         * src/pic/glue.c,
2498         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
2499
2500 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
2501
2502         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
2503         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
2504         configuration values no more rejected by compiler, they are assigned
2505         to configuration registers with a warning message instead,
2506         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
2507         the for-loop so last conf register is emitted too,
2508         * (_pic16_initPaths): link library libsdcc.lib by default,
2509         * (_hasNativeMulFor): modified test for multiplication according to
2510         Raphael Neider's remarks. Integer multiplication is also done with
2511         support functions,
2512         * device/include/pic16/pic18fregs.h: corrected type error in while
2513         testing and including 18f6720 header file
2514
2515 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
2516
2517         * src/pic16/device.h (pic16_options): removed field use_crt,
2518         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
2519         until an optimization to handle single bits is added,
2520         * (pic16_loadFSR0): moved before genUnpackBits,
2521         * (genAnd): some white lines removed,
2522         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
2523         leave_reset flags in pic16_options when using crt modules,
2524
2525 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
2526
2527         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
2528           for bugs 898889 & 979599. Also used some safer print instructions.
2529
2530 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
2531
2532         * src/pic16/device.h (pic16_options_t): added field use_crt,
2533         crt_name, no_crt,
2534         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
2535         catch a probable future bug,
2536         * src/pic16/gen.c: aopIdx function commented out,
2537         * (genAssign): commented out old code which used aopIdx,
2538         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
2539         code, added if conditionals to take into account the --use-crt
2540         command line options,
2541         * src/pic16/main.c (pic16_optionsTable): added new command line
2542         options, --use-crt= and --no-crt,
2543         * (_pic16_linkEdit): now the proper crt object is added in the
2544         linker command line except than when --no-crt is specified,
2545         * src/pic16/pcode.c,
2546         * src/pic16/pcode.h: added some structures and functions for a new
2547         optimization scheme to compansate for instruction overhead between
2548         same iCodes, this scheme is currently under development and is not
2549         working in any way,
2550         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
2551         to && operator,
2552         * device/lib/pic16/startup/crt0i.c,
2553         * device/lib/pic16/startup/crt0iz.c: added global char variable
2554         __uflags to force the generation of an idata section
2555
2556 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
2557
2558         * doc/Makefile,
2559         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
2560         * doc/sdccman.lyx: updated sdcc version to 2.4.4
2561
2562 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2563
2564         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
2565         Frieder) and clarified the default code optimization mode
2566
2567 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2568
2569         * src/SDCC.lex (doPragma, process_pragma),
2570         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
2571         "opt_code_size", and "opt_code_balanced"
2572         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
2573         regrouped options by category, added support for category headers
2574         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
2575         and "--opt-code-size"
2576         * doc/sdccman.lyx: documented these new options and pragmas
2577         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
2578         preference into account
2579
2580 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2581
2582         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
2583           geniCodePreDec): Fixed bug 904237 by generating a warning
2584         * src/SDCCerr.h,
2585         * src/SDCCerr.c: added warning W_SIZEOF_VOID
2586
2587 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
2588
2589         * src/pic/device.c : When no max ram set validate full memory range.
2590         * src/pic/pcode.c,
2591         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
2592
2593 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2594
2595         * device/lib/_gptrget.c,
2596         * device/lib/_gptrput.c: updated comment
2597         * device/lib/calloc.c,
2598         * device/lib/free.c,
2599         * device/lib/malloc.c,
2600         * device/lib/realloc.c: added LGPL, made them reentrant-safe
2601         * src/SDCCcse.c (cseBBlock),
2602         * src/SDCCicode.c (printOperand, geniCodeArray),
2603         * src/SDCCicode.h (struct operand): fixed bug 868103
2604         * support/regression/tests/bug-868103.c: added
2605         * src/SDCCast.c (searchLitOp),
2606         * src/SDCCcse.h (struct cseDef),
2607         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
2608         * src/SDCCicode.h (struct operand),
2609         * src/SDCCsymt.h (struct sym_link),
2610         * src/avr/gen.c (hasInc),
2611         * src/ds390/gen.c (hasInc),
2612         * src/hc08/gen.c (genPlusIncr, hasInc),
2613         * src/mcs51/gen.c (hasInc),
2614         * src/pic16/glue.c (pic16_printIvalChar),
2615         * src/pic16/ralloc.c (regWithIdx),
2616         * src/xa51/gen.c (hasInc) : removed warnings
2617         * src/SDCCast.c (createBlock): added comment ???
2618         * src/hc08/ralloc.c: updated comments
2619
2620 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2621
2622         * doc/sdccman.lyx: updated section on switch statements, added
2623         section about semaphore locking
2624         * doc/Makefile: added option -info for latex2html
2625         * device/lib/_gptrget.c,
2626         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
2627
2628 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
2629
2630         * src/pic/device.h,
2631         * src/pic/device.c,
2632         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
2633          maxram is less than 0x100.
2634
2635 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
2636
2637         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
2638
2639 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2640
2641         * src/port.h,
2642         * src/mcs51/main.c,
2643         * src/ds390/main.c,
2644         * src/z80/main.c,
2645         * src/hc08/main.c,
2646         * src/pic/main.c,
2647         * src/pic16/main.c,
2648         * src/avr/main.c,
2649         * src/xa51/main.c
2650         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
2651         a jump table is the best form for a switch statement, including
2652         automatic insertion of missing cases to make the case range
2653         continuous. Developed in collaboration with Frieder Ferlemann.
2654
2655 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2656
2657         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
2658         accumulator result if it needs sign extension
2659
2660 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2661
2662         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
2663
2664 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2665
2666         * device/lib/gbz80/printf.c,
2667         * device/lib/z80/printf.c: removed define for NULL
2668
2669 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2670
2671         * as/xa51/xa_link.c,
2672         * device/examples/ds390/ow390/ad26.c,
2673         * device/examples/ds390/ow390/cnt1d.c,
2674         * device/examples/ds390/ow390/counter.c,
2675         * device/examples/ds390/ow390/ds2480.h,
2676         * device/examples/ds390/ow390/ds2480ut.c,
2677         * device/examples/ds390/ow390/findtype.c,
2678         * device/examples/ds390/ow390/gethumd.c,
2679         * device/examples/ds390/ow390/owllu.c,
2680         * device/examples/ds390/ow390/ownetu.c,
2681         * device/examples/ds390/ow390/swt12.c,
2682         * device/examples/ds390/ow390/swtloop.c,
2683         * device/examples/ds390/ow390/temp.c,
2684         * device/examples/ds390/ow390/temp10.c,
2685         * device/examples/ds390/ow390/thermo21.c,
2686         * device/examples/ds390/ow390/tinilnk.c,
2687         * device/examples/ds390/ow390/tstfind.c,
2688         * device/examples/serialcomm/windows/serial.cpp,
2689         * device/examples/serialcomm/windows/test_serialcomm.cpp,
2690         * device/include/reg51.h: fixed line endings for cvs
2691
2692 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2693
2694         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
2695         packRegsForAccUse, packRegisters): new accumulator register
2696         packing algorithm
2697         * support/regression/ports/hc08/support.c (_putchar): suppress
2698         warning of unused variable
2699         * src/SDCCicode.c: added SWAP entry to codeTable
2700
2701 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
2702
2703         * device/lib/sprintf.c: forgot to add this file before previous commit
2704
2705 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
2706
2707         * src/pic16/gen.c (genPackBits): added operand right in function
2708         parameters, load result directly if p_type is POINTER (that is
2709         called by genNearPointerSet)
2710         * (genUnPackBits): added operand left in function parameters,
2711         * (genNearPointerGet, genNearPointerSet): prevent the loading of
2712         FSR0 if accessing bitfields,
2713
2714 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
2715
2716         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
2717           _print_format; updated printf, sprintf, vsprintf
2718         * device/include/asm/default/features.h: corrected comment/define
2719         * device/lib/Makefile.in: added sprintf.c
2720         * device/lib/libsdcc.lib: added sprintf module
2721         * device/lib/printf_large.c,
2722         * device/lib/vprintf.c,
2723         * device/lib/sprintf.c: totally refactored printf_large and vprintf
2724           into these 3 files
2725         * support/regression/Makefile: changed ALL_PORTS into a usefull default
2726         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
2727         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
2728           hc08 test
2729         * support/regression/tests/zeropad.c: define idata as data for hc08
2730
2731 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2732
2733         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
2734         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
2735         labels are referenced at least once (even if a reference is not found)
2736         * src/hc08/gen.c (emitcode): set isComment flag for comments
2737         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
2738         loads), rules 6a..6b (optimize jumps to return)
2739
2740 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2741
2742         * device/lib/acosf.c (acosf),
2743         * device/lib/asinf.c (asinf),
2744         * device/lib/atanf.c (atanf),
2745         * device/lib/ceilf.c (ceilf),
2746         * device/lib/cosf.c (cosf),
2747         * device/lib/coshf.c (coshf),
2748         * device/lib/cotf.c (cotf),
2749         * device/lib/fabsf.c (fabsf),
2750         * device/lib/floorf.c (floorf),
2751         * device/lib/log10f.c (log10f),
2752         * device/lib/logf.c (logf),
2753         * device/lib/sinf.c (sinf),
2754         * device/lib/sinhf.c (sinhf),
2755         * device/lib/sqrtf.c (sqrtf),
2756         * device/lib/tanf.c (tanf),
2757         * device/lib/tanhf.c (tanhf),
2758         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
2759         replaced all instances of "reentrant" in the library functions
2760         defined in math.h with this macro.
2761         * support/regression/tests/float_trans.c: reenabled test for hc08
2762
2763 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
2764
2765         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
2766         erroneously deleted
2767
2768 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2769
2770         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
2771         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
2772         multi-byte volatile operands are used
2773         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
2774         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
2775         initialization to area GSINIT0 so that it would always precede
2776         any static initializers in GSINIT
2777         * support/regression/tests/zeropad.c: fixed idata define for hc08
2778         * support/regression/tests/bug-927659.c,
2779         * support/regression/tests/float_trans.c: disabled tests for hc08
2780         pending missing library routines
2781         * .version: increased version number to 2.4.4 - hc08 port now passes
2782         regression tests
2783
2784
2785 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
2786
2787         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
2788         * Makefile.common.in,
2789         * as/Makefile,
2790         * as/hc08/Makefile.in,
2791         * as/mcs51/Makefile.in,
2792         * as/z80/Makefile.in,
2793         * debugger/mcs51/Makefile.in,
2794         * device/include/Makefile.in,
2795         * device/lib/Makefile.in,
2796         * doc/Makefile,
2797         * link/Makefile,
2798         * link/z80/Makefile.in,
2799         * packihx/Makefile.in,
2800         * sim/ucsim/main_in.mk,
2801         * sim/ucsim/avr.src/Makefile.in,
2802         * sim/ucsim/doc/Makefile.in,
2803         * sim/ucsim/gui.src/serio.src/Makefile.in,
2804         * sim/ucsim/hc08.src/Makefile.in,
2805         * sim/ucsim/s51.src/Makefile.in,
2806         * sim/ucsim/xa.src/Makefile.in,
2807         * sim/ucsim/z80.src/Makefile.in,
2808         * src/Makefile.in,
2809         * support/cpp2/Makefile.in,
2810         * support/librarian/Makefile,
2811         * support/makebin/Makefile: added DESTDIR to the install path proposed
2812         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
2813         * doc/sdccman.lyx: added DESTDIR documentation
2814
2815 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
2816
2817         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
2818         instruction for interrupt handlers, use fast returns when returning
2819         from high priority interrupts
2820
2821 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2822
2823         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
2824         code generation
2825         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
2826         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
2827         bugs, ported much of Bernhard's code from mcs51
2828         * src/mcs51/gen.c (genSend),
2829         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
2830         than one when calling a reentrant function
2831         * device/lib/_mullong.c: defined an alternate struct layout for big
2832         endian ports (hc08)
2833
2834 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2835
2836         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
2837         test
2838
2839 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2840
2841         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
2842         are sane and complete before asking the port its prefered parameter
2843         passing method (fixes bug #1017633)
2844         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
2845         and _ret3
2846
2847 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2848
2849         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
2850         problem in bitfields >= 8 bits.
2851
2852 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
2853
2854         * src/SDCCsymt.c: undid changes that were not meant to be committed
2855
2856 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
2857
2858         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
2859
2860 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
2861
2862         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
2863           copied and wrong bit got inverted
2864
2865 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2866
2867         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
2868         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
2869         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
2870         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
2871         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
2872         assignments to bitfields at known addresses
2873         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
2874         reads from bitfields at known addresses
2875         * src/hc08/ralloc.c (packRegisters),
2876         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
2877         genhc08Code): optimize pointer get values used as conditionals
2878         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
2879         and branch
2880
2881 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2882
2883         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
2884         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
2885         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
2886         as conditionals
2887
2888 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2889
2890         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
2891
2892 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2893
2894         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
2895         related problems
2896
2897 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
2898
2899         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
2900
2901 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2902
2903         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
2904         mcs51 port
2905
2906 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
2907
2908         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
2909
2910 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2911
2912         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
2913         cases use more compact code.
2914
2915 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
2916
2917         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
2918
2919 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2920
2921         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
2922
2923 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2924
2925         * src/SDCCsymt.h,
2926         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
2927         parameter of changePointer() from symbol* to sym_link*
2928         * src/SDCCast.c (decorateType): call changePointer() for CAST op
2929         * src/SDCCsymt.c (compareType): void* type is castable to other
2930         pointers, but not necesarily an exact match.
2931         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
2932         is no longer blindly treated as an exact match.
2933         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
2934
2935 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
2936
2937         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
2938
2939 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
2940
2941         * src/pic/gen.c,
2942         * src/pic/pcode.c,
2943         * src/pic/ralloc.h,
2944         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
2945
2946 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
2947
2948         * src/pic/device.c,
2949         * src/pic/device.h,
2950         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
2951
2952 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2953
2954         * src/mcs51/gen.c (emitcode): fixed bug #992819
2955
2956 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
2957
2958         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
2959           there's no need to make it worse
2960
2961 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2962
2963         * src/mcs51/ralloc.c (deassignLR),
2964         * src/ds390/ralloc.c (deassignLR),
2965         * src/hc08/ralloc.c (deassignLR),
2966         * src/z80/ralloc.c (deassignLR),
2967         * src/pic/ralloc.c (deassignLR),
2968         * src/pic16/ralloc.c (deassignLR),
2969         * src/avr/ralloc.c (deassignLR),
2970         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
2971         rlivePoint): fixed another part of bug #971834
2972
2973 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2974
2975         * src/z80/main.c: enabled "critical" keyword
2976         * src/z80/mappings.i,
2977         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
2978         functions (fixes bug #979646)
2979         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
2980
2981 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2982
2983         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
2984           such as c:\mydir.
2985
2986 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
2987
2988         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
2989           doesn't disable too much optimizations
2990
2991 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
2992
2993         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
2994
2995 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
2996
2997         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
2998
2999 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3000
3001         * src/pic/gen.c tidied up tabs
3002         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
3003         * src/pic/main.c tidied up tabs
3004         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
3005         * src/pic/pcoderegs.c tidied up tabs
3006         * src/pic/ralloc.c tidied up tabs
3007
3008 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
3009
3010         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
3011         to S_FIXED for pic16 port and when symbol is not in level 0,
3012         allocate for S_REGISTER storage class and pic16 port, too,
3013         * src/pic16/device.h: prototype for checkSym,
3014         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
3015         * (pic16_assignConfigWordValue): test the value and the mask to
3016         validate that the value is suitable for the configuration word,
3017         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
3018         collect extern declared symbols, don't emit symbol twice, check
3019         first if symbol is in publics set first,
3020         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
3021         * added command line '--fstack' which enables an experimental
3022         feature for stack access, too buggy to be used yet...
3023         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
3024         * (pic16_allocDirReg): when register has storage class S_REGISTER
3025         allocate in pic16_dynAccessRegs,
3026         * device/include/pic16/pic18f????.h: modified configuration word
3027         naming convention, words started as CONFIG0H but should be CONFIG1H
3028
3029 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
3030
3031         * device/include/mcs51reg.h: fixed bug 970993
3032
3033 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
3034
3035         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
3036         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
3037         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
3038         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
3039         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
3040         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
3041           error/warning numbers,
3042           added function setWarningDisabled()
3043         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
3044         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
3045           _memcmp.c _memmove.c calloc.c realloc.c free.c
3046         * support/regression/tests/malloc.c: added tests for new functionality
3047         * support/regression/tests/zeropad.c: added tests for truncated initializers
3048           and initialized char arrays starting with '\x0'
3049         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
3050
3051 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
3052
3053         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
3054
3055 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3056
3057         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
3058         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
3059         peephole 177.e. Thanks to anonymous
3060
3061 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
3062
3063         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
3064         function isn't used in the source but referenced as a
3065         variable initializer then declare it as extern in .asm file
3066
3067 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
3068
3069         * .version: increased version number to 2.4.3
3070
3071         Adding version extension according to ChangeLog CVS revision
3072         * src/Makefile.in (target all): added dependency 'version.h'
3073         * (rule version.h): added rule to create version.h from ChangeLog,
3074         * (rule dep): added dependency version.h,
3075         * src/version.awk: AWK script to create version.h
3076         * src/SDCCdwarf2.c (dwWriteModule),
3077         * src/SDCCglue.c (initialComments),
3078         * src/SDCCmain.c (printVersionInfo): modified to write after
3079         version string the version extension number,
3080         * src/SDCCutil.c: included "version.h"
3081         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
3082         number,
3083         * src/SDCCutil.h: added prototype for getBuildNumber
3084
3085         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
3086         includeDirsSet, too,
3087         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
3088         const char [] is found in function prototype...
3089
3090         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
3091         moving to WREG with source is already in WREG,
3092         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
3093         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
3094         * (aopForSym): stack'ed symbols are partially supported, added
3095         if-clause to support symbols in FARSPACE,
3096         * (sameRegs): added test for AOP_ACC to see if registers are same,
3097         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
3098         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
3099         * (pic16_popRegFromString): will not allocate a new register if it
3100         doesn't find one by name, bug may have introduced...
3101         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
3102         * (genIpush): revived to use pic16 port's stack,
3103         * (genAddrOf): added incomplete case for stack'ed operand,
3104         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
3105         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
3106         can handle multibyte operands,
3107         * src/pic16/glue.c (pic16_printIval*): some debug info added,
3108         * (pic16initialComments): added message for MPLAB compatibility
3109         mode enabled,
3110         * src/pic16/main.h: prototype for pic16_mplab_comp,
3111         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
3112         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
3113         * (_pic16_linkEdit): NEW, handles link stage, transferred here
3114         because of increased complexity of procedure,
3115         * (_process_pragma): stack pragma changed to format 'stack pos len',
3116         emit symbol '_stack_end' to conform with gplink,
3117         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
3118         to search for register,
3119         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
3120         PO_GPR_REGISTER,
3121         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
3122         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
3123         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
3124         case for PO_GPR_REGISTER,
3125         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
3126         dies, the new era is ahead !...
3127         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
3128         pic16_dynInternalRegs,
3129         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
3130         * (pic16_allocDirReg): minor optimizations and bug fixes,
3131         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
3132
3133         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
3134         load stack and frame pointer with address of 'stack_end' symbol
3135
3136 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
3137
3138         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
3139         without source code but only variable initializers
3140
3141 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
3142
3143         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
3144         external are not declared as extern to reduce overhead while linking
3145
3146 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
3147
3148         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
3149
3150 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
3151
3152         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
3153           Yee Keat for the patch
3154         * src/SDCCast.c (decorateType): fixed bug #979599
3155         * src/ds390/gen.h: removed local fReturnSizeDS390
3156         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
3157         * src/ds390/gen.c (genAnd, genOr, genXor),
3158         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
3159
3160 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
3161
3162         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
3163         add relFilesSet to $3, manipulate $2 to handle linking of object
3164         files without source files in command line,
3165         * device/include/pic16 (all headers): added ID location macros,
3166         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
3167         entries for ID location bytes,
3168         * (pic16_assignIdByteValue): NEW,
3169         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
3170         added field dumpcalltree to pic16_options_t,
3171         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
3172         is used instead of pic16_Gstack_base_addr, check if (ifx) before
3173         emitting rFalseIfx label after check_carry label,
3174         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
3175         pic16_emitDIRegs), NEW
3176         * (pic16glue): dump .calltree file when option --calltree found,
3177         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
3178         * (_pic16_genAssemblerPreamble): emit ID locations after
3179         configuration registers,
3180         * (pic16_linkCmd): modifications of the link command,
3181         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
3182         * (pic16_pCodeInitRegisters): don't init stack registers,
3183         * (pic16_findPrevInstruction): fixed bug,
3184         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
3185         bug with immediate registers,
3186         * (buildCallTree): traces stack push and pop,
3187         * (pct2): dump also stack usage for each function,
3188         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
3189         * (pic16_allocDirReg): various modifications,
3190         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
3191         fixed to 1,
3192
3193 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
3194
3195         * src/pic16/pcode.c: removed buggy double colon
3196
3197 2004-07-01 Borut Razem <borut.razem AT siol.net>
3198
3199         * support/scripts/sdcc.nsi: added include/pic16 to setup
3200
3201 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
3202
3203         * device/lib/Makefile.in: fixed bug in target objects-pic16,
3204         * device/lib/pic16/Makefile: prefixed with dash (-) command under
3205         target 'clean',
3206         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
3207         specific command line arguments. Also added sample lkr script
3208         for placing a variable at a specific memory bank.
3209         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
3210         at a specific memory bank,
3211         * (pic16_dump_isection): fixed bug which caused string literals to
3212         be omitted when dumping idata section,
3213         * (pic16_groupRegistersInSection): added code to handle registers
3214         in specific memory banks,
3215         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
3216         public, all references are renamed too,
3217         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
3218         AOP_DPTR2,
3219         * (pic16_storeForReturn): added case to handle when dest is WREG,
3220         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
3221         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
3222         pic16_rel_udata, check to see if that register is marked as being
3223         a member of a specific memory bank,
3224         * (pic16_printIvalCharPtr): added code to add string literals either
3225         to code or the idata sections,
3226         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
3227         also accept the 'udata' pragma,
3228         * src/pic16/main.h: new structure types sectName and sectSym
3229         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
3230         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
3231         * (pic16_findPrevInstruction): fixed, it returned nothing,
3232         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
3233         instruction combinations,
3234         * (pic16_FixRegisterBanking): heavily reorganised,
3235         * (pic16_AnalyzeBanking): if generating banksel directives is
3236         disabled, then don't call FixRegisterBanking at all,
3237         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
3238         completely removed,
3239         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
3240
3241 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
3242
3243         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
3244         Phuah Yee Keat <yk.phuah AT nestac.com>
3245
3246 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3247
3248         * src/pic16/glue.c (pic16createInterruptVect): function now emits
3249         correctly the IVT even if it is relocated to some other location
3250
3251 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3252
3253         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
3254         * device/include/pic16/pic18f2220.h: NEW,
3255         * device/lib/pic16/libdev/pic18f2220.c: NEW,
3256         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
3257         * src/pic16/device.c (struct Pics16): added info for 18f2220,
3258         * src/pic16/device.h (struct pic16_options): added ivt_loc and
3259         nodefaultlibs, ivt_loc is the location of the interrupt vector
3260         table, and nodefaultlibs signs that default libraries should not be
3261         linked in link stage,
3262         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
3263         according to --ivt-loc argument,
3264         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
3265         when pragma stack is found,
3266
3267 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3268
3269         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
3270         256 (range check), 257 (do while), 258.a-f (bit banging
3271         f.e. on 3-wire SPI bus)
3272
3273 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3274
3275         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
3276         variables used exclusively within a loop
3277
3278 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
3279
3280         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
3281
3282 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3283
3284         * src/SDCClrange.c (computeClash): fixed bug #971834
3285
3286 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3287
3288         * src/mcs51/gen.c (genCmp): fixed bug #975903
3289         * src/hc08/gen.c (operandsEqu),
3290         * src/ds390/gen.c (operandsEqu),
3291         * src/z80/gen.c (operandsEqu),
3292         * src/pic/gen.c (operandsEqu),
3293         * src/pic16/gen.c (operandsEqu),
3294         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
3295         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
3296
3297 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3298
3299         * src/SDCCcse.c (cseBBlock): fixed bug #966963
3300
3301 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
3302
3303         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
3304         default case in switch statement,
3305         * glue.c (pic16_initPointer): expr is initialised via decoarteType
3306         to eliminate problem with initialisation of pointers, but problem
3307         still exists,
3308         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
3309         * (emitStaticSegment): removed various lines emitting debug info,
3310         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
3311         added processor registers for utilizing EEPROM,
3312         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
3313         configurable and set 8
3314
3315 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
3316
3317         * .version: increased version number to 2.4.2,
3318
3319         Cumulative patch for pic16 port
3320         * src/pic16/device.c: changed scheme to dump initial values for
3321         variables in idata segment, all print_idata* functions were removed,
3322         now the pic16_printIval* will be called,
3323         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
3324         * _pic16_printPointerType, pic16_printPointerType,
3325         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
3326         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
3327         NEW, similar to the respective functions in SDCCglue.c,
3328         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
3329         way, emitting hex bytes,
3330         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
3331
3332 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3333
3334         * src/avr/ralloc.c (serialRegAssign),
3335         * src/xa51/ralloc.c (serialRegAssign),
3336         * src/pic/ralloc.c (serialRegAssign),
3337         * src/pic16/ralloc.c (serialRegAssign),
3338         * src/hc08/ralloc.c (serialRegAssign),
3339         * src/z80/ralloc.c (serialRegAssign),
3340         * src/ds390/ralloc.c (serialRegAssign),
3341         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
3342
3343 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3344
3345         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
3346         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
3347
3348 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
3349
3350         Cumulative patch for pic16 port:
3351         * src/pic16/device.h (typedef PIC16_device) modified fields for
3352         defining microcontrollers,
3353         * src/pic16/device.c: added new info for all devices in Pics16 array,
3354         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
3355         to be optimised out by the pCode optimiser,
3356         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
3357         specially, bug reported by G.M. Gallant,
3358         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
3359         as force'd so that cannot be optimised out by pCode optimiser,
3360         * src/pic16/pcode.c,
3361         * src/pic16/pcodepeeph.c,
3362         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
3363         they are disabled by default, but can be enabled explicit with
3364         command argument --denable-peeps, for testing,
3365         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
3366         --pomit-ivt in COMPILE_FLAGS
3367
3368 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3369
3370         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
3371           compilation on MSVC
3372
3373 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3374
3375         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
3376
3377 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3378
3379         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
3380         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
3381
3382 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
3383
3384         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
3385         would only assign 0x300001 register.
3386
3387 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
3388
3389         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
3390         in COMPILE_FLAGS. Thanks to G. Gallant for report.
3391
3392 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3393
3394         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
3395         for ds80c400
3396         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
3397         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
3398         added peephole 254 (left shift), 255 (jump table)
3399
3400 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
3401
3402         * device/lib/Makefile.in: removed comment line with model-pic16,
3403         * (target port-specific-objects-pic16): the libraries and objects
3404         are copied to the build directory form the device/lib/pic16/bin
3405         directory
3406
3407         Cumulative patch concerning pic16 port:
3408         * library directory has been re-organized,
3409         * added support for PIC18F1220,
3410         * added headers and library sources for chips 18f1220,18f6520,
3411         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
3412
3413         * configuration registers setting has changed, now each supported
3414         device has a complete description of the registers it uses,
3415         * all initialisations are moved to idata sections, these section
3416         can be absolute or relocatable,
3417         * fixed initialisation of codespace variables,
3418         * fixed warning about PCLATU and gpsim,
3419         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
3420         * (genAssign): use table reads when assigning from variables in codespace,
3421         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
3422         char/int variables placed in codespace,
3423         * (pic16_emitConfigRegs): NEW, emits a list with configuration
3424         registers set in .asm file, no need for --pomit-config-words anymore,
3425         * (pic16glue): some 8051 legacy segments are commented out
3426         (to be removed completely),
3427         * added support for alternative assembler and linker with --asm=
3428         and --link= command line arguments,
3429         * peepholes are disabled automatically in the port, no need to
3430         specify on command line,
3431         * port supports natively char/int/long multiplication, but converts
3432         all divisions to support functions,
3433         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
3434         to the file set in variable $2,
3435         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
3436         strings in ASCII format and not in hex,
3437         * ralloc.c (serialRegAssign): added a triplet of conditional calls
3438         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
3439         allocate proper register if iCodes aren't temporary,
3440
3441 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
3442
3443         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
3444
3445 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
3446
3447         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
3448         is commented out
3449
3450 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3451
3452         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
3453         computed address is reused
3454         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
3455         multi-byte bitfields
3456
3457 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3458
3459         * src/z80/gen.c: (genArrayInit): must check for pointers too
3460
3461 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3462
3463         * support/regression/tests/zeropad.c: never meant to commit the
3464           nestedstruct test: removed, added check for GCC version
3465
3466 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
3467
3468         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
3469         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
3470         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
3471           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
3472           bugs 928906 and 954082 half-empty initializers
3473         * src/SDCCsymt.h,
3474         * src/SDCCsymt.c (getAllocSize): added for above fix
3475         * src/z80/gen.c (genArrayInit): fixed bug 741044
3476         * support/regression/tests/zeropad.c: added tests
3477
3478 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
3479
3480         * src/pic16/device.c (pic16_dump_section): corrected bug which
3481         caused some symbols of the libraries to be misplaced
3482
3483 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3484
3485         * src/pic16/glue.c,
3486         * src/pic16/ralloc.h,
3487         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
3488         to fix conflict with pic port
3489
3490 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3491
3492         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
3493         externs configuration variables,
3494         * src/pic16/ralloc.h,
3495         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
3496         prototype in header, commented out some debug messages
3497
3498 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
3499
3500         * src/pic16/glue.c,
3501         * src/pic16/main.c,
3502         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
3503         for gpasm COFF object generation. Thanks to D. Hawkins for
3504         his patch info
3505
3506 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3507
3508         * src/ds390/main.c,
3509         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
3510         Brock for spotting this)
3511         * src/ds390/gen.c (genEndFunction),
3512         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
3513         interrupt handler and critical. Disable push/pop optimizations when
3514         peephole optimizations disabled.
3515
3516 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
3517
3518         Updated pic16 library sources and headers.
3519         * device/lib/pic16/pic18f*/ ,
3520         * device/include/pic16/*.h: modified to handle structured SFR
3521         definitions
3522
3523 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
3524
3525         * src/port.h (PORT structure): added hook initPaths, now each
3526         port can declare its own default search paths,
3527         which can been seen with the --print-search-dirs option,
3528         see pic16 port for example,
3529         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
3530         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
3531         * (doPrintSearchDirs): NEW, replaces in a central manner the
3532         printing of search dirs which was split in set*Paths functions,
3533         * (main): added call to port->initPaths and doPrintSearchDirs,
3534         * src/avr/main.c,
3535         * src/ds390/main.c,
3536         * src/hc08/main.c,
3537         * src/izt/i186.c,
3538         * src/izt/tlcs900h.c,
3539         * src/mcs51/main.c,
3540         * src/pic/main.c,
3541         * src/pic16/main.c: modified port structures to reflect addition of
3542         initPaths hook,
3543
3544         * src/pic16/device.c (regCompare): registers are finally sorted by name,
3545         * (pic16_dump_section): for registers in same address reserve memory once,
3546         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
3547         to no_banksel,
3548         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
3549         result is greater in size than right or left,
3550         * (pic16_genUMult8X8_8): there are some cases where the result can
3551         be 16 bits size, so handle these,
3552         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
3553         * (pic16_outBitC): modified to emit pcodes,
3554         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
3555         or not,
3556         * (genDivOneByte): implemented algorithm to divide 8-bits,
3557         * (genCmp): uncommented goto, but issues still exist,
3558         * (genAnd): fixed a bug with variables >8bits,
3559         * (genPackBits): optimization added that uses BCF/BSF to change a
3560         single bit,
3561         * (genAssign): fixed bug when assigning floating point literals,
3562         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
3563         __sdcc_gsinit_startup label,
3564         * src/pic16/main.c (_pic16_init): removed search directory
3565         initialisations,
3566         * (_pic16_initPaths): NEW, used to initialise search directories,
3567         * (_hasNativeMulFor): support functions for all except char/int
3568         multiplication, and char division,
3569         * (PIC16_port struct): modified entry for native mul support,
3570         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
3571         no_banksel option,
3572         * (buildCallTree): call to register_usage is ifdef'ed out,
3573
3574 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3575
3576         * device/include/string.h: applied Stas Sergeev's patch to make this
3577         header file compatible with the preprocessor -Wundef option
3578         * src/SDCCmain.c (main): abort compilation if preprocessor reports
3579         failure (fixes bug #941458)
3580
3581 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3582
3583         * src/SDCCopt.c (killDeadCode): fixed bug #907733
3584         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
3585         that the variable, not the function, should be static
3586         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
3587         to be consistent with non-literal case
3588
3589 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3590
3591         * src/SDCCast.c (isConformingBody): fixed bug #949967
3592         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
3593         convilong): fixed bug #952086
3594
3595 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3596
3597         * src/SDCCmem.c (allocVariables): fixed bug #955321
3598
3599 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3600
3601         * src/hc08/main.c (_hc08_genAssemblerEnd),
3602         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
3603         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
3604         completely eliminated the use of a temporary file
3605         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
3606         when more than one file linked
3607         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
3608
3609 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3610
3611         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
3612         which fixes bug #543481
3613         * support/regression/tests/bug-751703.c: fixed comments left from a
3614         cut and paste error
3615         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
3616         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
3617         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
3618         scopes
3619         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
3620         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
3621         are now changed to underscores in moduleName
3622
3623 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3624
3625         * as/mcs51/lkmem.c: better fix for bug #954173
3626
3627 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
3628         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3629
3630         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
3631         * device/include/c8051f000.h,
3632         * device/include/c8051f120.h,
3633         * device/include/c8051f300.h,
3634         * device/include/c8051f310.h,
3635         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
3636         PWM16) and detab'ed
3637
3638 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3639
3640         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
3641         and mailing lists, doc'ed --no-peep-comments, removed reference
3642         to knoppix (newest version has no LyX/LaTeX), other minor changes
3643         * src/SDCCglue.c (glue): save 2 bytes stack space with
3644         option --main-return. The ljmp could probably be avoided too
3645
3646 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3647
3648         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
3649
3650 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3651
3652         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
3653         * src/SDCCopt.c (isLocalWithoutDef),
3654         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
3655         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
3656         (credit to Maarten Brock for patch #949363, on which this is based)
3657         * support/regression/tests/bug-751703.c: some test cases of extern used
3658         within inner scopes.
3659
3660 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3661
3662         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
3663         SPEC_STRUCT
3664         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
3665         struct definitions
3666         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
3667         dwWriteLabel): fix to create valid debugger symbols even when
3668         the module name has non-alphanumeric symbols in it
3669         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
3670         when a variable's allocation has been optimized away
3671
3672
3673 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3674
3675         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
3676         * src/hc08/main.c,
3677         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
3678         * src/mcs51/main.c,
3679         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
3680         * src/ds390/main.c,
3681         * src/z80/gen.c (z80_emitDebuggerSymbol),
3682         * src/z80/main.c,
3683         * src/pic/gen.c (pic14_emitDebuggerSymbol),
3684         * src/pic/main.c,
3685         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
3686         * src/pic16/main.c,
3687         * src/avr/gen.c (avr_emitDebuggerSymbol),
3688         * src/avr/main.c,
3689         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
3690         * src/xa51/main.c,
3691         * src/SDCCdebug.c (emitDebuggerSymbol),
3692         * src/SDCCdebug.h,
3693         * src/port.h: added a debugger struct to the port struct. Added a
3694         callback for defining debugger symbols
3695
3696         * src/SDCCast.c (createLabel),
3697         * src/SDCC.y (labeled_statement): mark all compiler generated labels
3698         with isitmp = 1
3699         * src/SDCCicode.h,
3700         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
3701         iCode back to the ast for the function
3702
3703         * src/hc08/ralloc.c (hc08_assignRegisters),
3704         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
3705         unneeded fields from the regs struct.
3706         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
3707         pushReg() & pullReg() functions instead of emitcode()
3708
3709         * src/hc08/gen.c (genLabel, genhc08Code),
3710         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
3711
3712         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
3713         debugger hooks
3714
3715         * src/hc08/gen.c (genEndFunction, genhc08Code),
3716         * src/hc08/gen.h,
3717         * src/mcs51/gen.c (genEndFunction, gen51Code),
3718         * src/mcs51/gen.h,
3719         * src/ds390/gen.c (genEndFunction, gen390Code),
3720         * src/ds390/gen.h,
3721         * src/z80/gen.c (genEndFunction, genZ80Code),
3722         * src/z80/gen.h,
3723         * src/z80/z80.h,
3724         * src/pic/gen.c (genEndFunction, genpic14Code),
3725         * src/pic/gen.h,
3726         * src/pic16/gen.c (genEndFunction, genpic16Code),
3727         * src/pic16/gen.h,
3728         * src/avr/gen.c (genEndFunction, genAVRCode),
3729         * src/avr/gen.h,
3730         * src/xa51/gen.c (genEndFunction, genXA51Code),
3731         * src/xa51/gen.h,
3732         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
3733         specific code to cdbFile.c and out of the backend code generators
3734
3735         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
3736         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
3737         starting address is now 0
3738
3739         * as/hc08/asm.h,
3740         * as/hc08/m08pst.c,
3741         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
3742         assembler directive for DWARF support
3743         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
3744
3745         * src/src.dsp,
3746         * src/Makefile.in,
3747         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
3748
3749 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3750
3751         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
3752         and inappropriate peephole optimization in jump tables
3753
3754 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3755
3756         * as/hc08/m08pst.c,
3757         * src/SDCCglue.c: sdccopt works for the hc08 port now
3758
3759 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
3760
3761         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
3762
3763 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3764
3765         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
3766
3767 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3768
3769         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
3770         rules
3771         * src/SDCCmain.c,
3772         * src/SDCCglobl.h,
3773         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
3774         comments from the peephole optimizer replacement rules
3775         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
3776         symbols
3777         * src/SDCCcse.c (updateSpillLocation),
3778         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
3779         equivalents
3780         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
3781         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
3782         objects far pointers
3783
3784 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3785
3786         * src/SDCCsymt.h: a missing part of my last change
3787         * src/pic/ralloc.c (regTypeNum),
3788         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
3789
3790 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3791
3792         * src/SDCCicode.h,
3793         * src/SDCCicode.c (aggrToPtrDclType),
3794         * src/SDCCptropt.h,
3795         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
3796         ptrPseudoSymConvert),
3797         * src/pic/ralloc.c (regTypeNum),
3798         * src/pic16/ralloc.c (regTypeNum),
3799         * src/hc08/ralloc.c (regTypeNum),
3800         * src/ds390/ralloc.c (regTypeNum),
3801         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
3802         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
3803
3804 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3805
3806         * link/z80/lkmain.c (afile),
3807         * as/hc08/lkmain.c (afile),
3808         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
3809         prevent a pointer problem when a filename has no directory and
3810         no extension specified.
3811
3812 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3813
3814         * link/z80/lkmain.c (afile): allow periods in directory names
3815         * link/z80/lkmain.c (afile),
3816         * as/mcs51/lkmain.c (afile),
3817         * as/hc08/lkmain.c (afile): allow linker script file to have an
3818         extension other than ".lnk"
3819         * link/z80/lklex.c (getfid),
3820         * link/z80/lkmain.c (parse),
3821         * as/mcs51/lklex.c (getfid),
3822         * as/mcs51/lkmain.c (parse),
3823         * as/hc08/lklex.c (getfid),
3824         * as/hc08/lkmain.c (parse): Support comments in the linker script
3825         file on lines by themselves and after filenames
3826
3827 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3828
3829         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
3830
3831 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3832
3833         * src/z80/peeph-z80.def: removed some peephole rules that don't
3834         work with multibyte arithmetic (fixed bug #937126)
3835         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
3836         to registers and not global variables
3837         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
3838         geniCodePreInc, geniCodePostDec, geniCodePreDec,
3839         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
3840         checking for assignments not internally generated (fixed bug #931895)
3841         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
3842         structure member (fixed bug #930072)
3843
3844 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3845
3846         * src/SDCCmain.c (linkEdit),
3847         * src/hc08/main.c (_hc08_parseOptions),
3848         * as/hc08/Makefile.in,
3849         * as/hc08/aslink.h,
3850         * as/hc08/asm.h,
3851         * as/hc08/m08pst.c,
3852         * as/hc08/lkrloc.c (relr, rele),
3853         * as/hc08/lkarea.c (lnkarea)
3854         * as/hc08/lkmain.c (afile, parse),
3855         * as/hc08/lkelf.c: support for ELF output
3856         * as/hc08/lks19.c (s19),
3857         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
3858
3859 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3860
3861         * as/mcs51/lkihx.c: Fixed bug #899105.
3862
3863 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3864
3865         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
3866         .dsp files from Unix to DOS.
3867
3868 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3869
3870         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
3871         function pointers; we have been compliant for several months now.
3872         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
3873         change that was accidently commented out
3874         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
3875         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
3876         bug #922319
3877
3878 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3879
3880         * src/hc08/gen.c: output of all of the internal debugging information
3881         is now controlled by the D() macro; it is disabled by default
3882
3883 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3884
3885         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
3886         harder to keep the same registers during a CAST iCode
3887         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
3888         long via int can be done in a single cast, if the signedness is
3889         correct.
3890         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
3891         putchar() in tinibios.c in ds390's library
3892
3893 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
3894
3895         * src/SDCCast.c (decorateType): fixed bug #898889,
3896         cast result of a literal complement too
3897         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
3898         fixed check for bitfields
3899
3900 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
3901
3902         * src/SDCCicode.c (geniCodeLogic): made it static,
3903         (geniCodeLogicAndOr): added in order to fix bug #905492,
3904         (ast2iCode): fixed bug #905492
3905         * support/regression/tests/bug-905492.c: added
3906         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
3907         (processParms): fixed bug #927659: don't copy parms, this will clear
3908         decorated flag
3909         * support/regression/tests/bug-927659.c: added
3910
3911 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
3912
3913         * src/SDCCast.c (addCast): don't cast float to char
3914         * device/lib/libsdcc.lib: added _memmove
3915
3916 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
3917
3918         * device/lib/large/Makefile: fixed parallel execution by
3919         replacing `make` by `$(MAKE)`
3920
3921 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3922
3923         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
3924         offsets (fixes bug #923936)
3925
3926 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
3927
3928         * device/lib/small/Makefile: fixed parallel execution by
3929         replacing `make` by `$(MAKE)`
3930
3931 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
3932
3933         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
3934
3935 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
3936
3937         * src/pic/gen.c (genCpl): multi-byte complements were not working.
3938         * src/regression/Makefile: Regression test was not running.
3939
3940 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
3941
3942         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
3943         complement if possible
3944         * src/SDCCval.c (valComplement),
3945         * src/SDCCicode.c (operandOperation): fixed complement of literal
3946         * support/regression/tests/onebyte.c (testComplement): added
3947
3948 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
3949
3950         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
3951         return an optimized tree; actually replace actParm with the new tree
3952         * src/SDCCast.h: added some parantheses to remove side effects
3953         * support/regression/tests/bug-920866.c
3954
3955 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
3956         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
3957         Bit operands were not being handled properly in the pic14 port.
3958         (now src/regression/add.c passes again).
3959
3960 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3961
3962         * src/SDCC.y (labeled_statement): case and default no longer require
3963         a following statement (RFE #893037)
3964
3965 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3966
3967         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
3968         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
3969         disabled (fixes bug #916294)
3970         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
3971         "mov a,acc"; patch provided by Lenny Story
3972         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
3973
3974 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3975
3976         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
3977         functions
3978         * src/ds390/gen.c (genFunction, genEndFunction),
3979         * src/ds390/ralloc.c (ds390_assignRegisters),
3980         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
3981         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
3982         pushed if there are parameters passed on the stack. Also, a cleaner
3983         way to decide if r0/r1 should be pushed/popped. (Together they fix
3984         bug #918693)
3985
3986 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3987
3988         * doc/sdccman.lyx,
3989         * device/lib/mcs51/crtpagesfr.asm,
3990         * device/lib/mcs51/crtxinit.asm,
3991         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
3992         to avoid confusion with Si Lab's SFRPAGE register.
3993
3994 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3995
3996         * src/SDCCglue.c (emitMaps): allow public sfr variables
3997         * src/SDCCglue.c (initialComments): include compiler build date
3998         with compiler version and put the timestamp of the generated
3999         assembly file on a serperate line to be less confusing.
4000         * src/port.h: added genInitStartup hook
4001         * src/avr/main.c,
4002         * src/ds390/main.c,
4003         * src/hc08/main.c,
4004         * src/pic/main.c,
4005         * src/pic16/main.c,
4006         * src/xa51/main.c,
4007         * src/z80/main.c: genInitStartup initialize as NULL (default to
4008         historical behaviour)
4009         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
4010         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
4011         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
4012         library instead of hard coding it into the compiler.
4013         * support/regression/ports/mcs51-stack-auto/spec.mk,
4014         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
4015         * device/lib/mcs51/Makefile,
4016         * device/lib/small/Makefile,
4017         * device/lib/large/Makefile,
4018         * device/lib/mcs51/crtpagesfr.asm,
4019         * device/lib/mcs51/crtstart.asm,
4020         * device/lib/mcs51/crtxclear.asm,
4021         * device/lib/mcs51/crtxinit.asm,
4022         * device/lib/mcs51/crtclear.asm,
4023         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
4024         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
4025         and into user configurable files.
4026         * device/lib/clean.mk: clean mcs51 directory too
4027         * support/regression/tests/longlit.c: added static to T1 declaration
4028         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
4029         accesses in the initialization code
4030
4031 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4032
4033         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
4034         OSCTRIMVAL as noted in bug #916008
4035
4036 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4037
4038         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
4039         in loops with multiple exits (reported as incorrect registers
4040         used by Martin Helmling in Sdcc-user list)
4041
4042 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4043
4044         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
4045         made ds390 register extensions look less like error messages
4046
4047 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4048
4049         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
4050         reported by Adam Wozniak in Sdcc-user list
4051
4052 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
4053
4054         * src/SDCCast.c (decorateType): fixed with bug and promotion in
4055         arithmetic optimizations, added debug output
4056
4057 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
4058
4059         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
4060         * sdcc.spec: updated and split sdcc into 3 rpms
4061         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
4062         needed for literals of LEFT_OP and '+'
4063         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
4064         introduced RESULT_TYPE_NOPROM
4065         (geniCodeMultiply): fixed logic for decision if mul is optimized to
4066         left shift
4067         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
4068         limited promotion to int only for '*'
4069         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
4070
4071 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
4072
4073         * src/pic16/gen.c (genSkip),
4074         (genc16bit2lit), (gencjneshort): commented out
4075         (is_LitOp): new helper function, checks operand type
4076         (genCmpEq): rewritten
4077
4078 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
4079
4080         * support/regression/tests/bug-908454.c: added
4081
4082 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
4083
4084         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
4085         * src/SDCCicode.c (usualBinaryConversions): op needs int type
4086         (geniCodeCast): cosmetic, don't preserve bit storage class
4087         (geniCodeLeftShift): added promotion
4088         (geniCodeLogic): fixed regression
4089         * src/SDCCsymt.c (computeTypeOr): accept bits too
4090         (compareType): 2nd part of fix for bug #908454, needed for bitfields
4091
4092 2004-03-07  Borut Razem <borut.razem AT siol.net>
4093
4094         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
4095
4096 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
4097
4098         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
4099         version of pic16_genPackRegisters which does not check if ic is a
4100         CAST operator,
4101         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
4102         function cause string1.c regression test fails
4103
4104 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
4105
4106         * sim/ucsim/configure.in,
4107         * sim/ucsim/configure,
4108         * sim/ucsim/doc/Makefile.in: use docdir
4109         * src/SDCC.y: fixed sbit atrributes
4110         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
4111         * src/SDCCast.c (decorateType): |^& need special promotion handling
4112         * src/SDCCast.h,
4113         * src/SDCCsymt.h: moved definition of RESULT_TYPE
4114         * src/SDCCsymt.h (computeType),
4115         * src/SDCCicode.c: computeType() needs op
4116         * src/SDCCsymt.c (checkTypeSanity),
4117         * doc/sddman.lyx: "plain" bitfields are unsigned
4118         * src/SDCCsymt.c (computeTypeOr): added
4119         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
4120         |^& ops
4121         * src/SDCCval.c (val*): computeType() needs op
4122         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
4123         * support/regression/tests/onebyte.c: added tests for |^&
4124
4125 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
4126
4127         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
4128         for writing icode into asm output.
4129
4130 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
4131
4132         * src/pic16/device.c: added some debug lines enabled
4133         with macro DEBUG_CHECK,
4134         * src/pic16/genarith.c: more debug in genPlus,
4135         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
4136         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
4137         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
4138         * (aopForSym): onStack symbols are re-placed in data memspace,
4139         and onStack flag is cleared,
4140         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
4141         copy temporary pcodeop,
4142         * (genPcall): added warning for not updating PCLATU,
4143         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
4144         always true for pic16 port,
4145         * (genMultOneWord): NEW, supports integer multiplication,
4146         * (genMult): modified to call genMultOneWord,
4147         * (ifxForOp): added warning when return NULL,
4148         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
4149         flag is set before call to operandFromSymbol for implicit
4150         added structures,
4151         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
4152         options.intlong_rent are set by default,
4153         * (_hasNativeMulFor): modified to allow port generation of integer
4154         multiplication,
4155         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
4156         set regtype to REG_SFR for all registers, restricting seting the
4157         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
4158
4159 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4160
4161         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
4162         more than 500 times in the regression tests
4163
4164 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4165
4166         * support/Util/SDCCerr.h,
4167         * support/Util/SDCCerr.c,
4168         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4169         enumerator_list),
4170         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
4171         for symbol conflicts.
4172         * support/valdiags/tests/enum.c,
4173         * support/valdiags/tests/tentdecl.c,
4174         * support/valdiags/tests/struct.c: expect possible error messages
4175         referring to original symbol definitions.
4176         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
4177         * src/SDCCsymt.h,
4178         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
4179
4180 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
4181
4182         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
4183
4184 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
4185
4186         * src/pic16/ralloc.c (newReg): fixed bug #908929
4187
4188 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4189
4190         * src/ds390/gen.c: added missing #include "main.h"
4191
4192 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
4193
4194         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
4195         checking if symbol is already in set,
4196         * src/pic16/device.h: prototype for checkAddSym,
4197         * src/pic16/gen.c: (_G): added entry interruptvector,
4198         * (assignResultValue): removed some commented out lines,
4199         * (genFunction): check for ISR via sym->type, absolute section for
4200         interrupt code is created via a new pBlock, the goto instruction is
4201         placed now correctly at the interrupt vector position, changed all
4202         references from ivec to _G.interruptvector,
4203         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
4204         is the interrupt is a high priority one, same for return from ISR,
4205         * src/pic16/glue.c: changed all calls of addSetHead for publics and
4206         externs to calls of checkAddSym,
4207         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
4208         pic16_pcode_verbose flag is set,
4209         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
4210         * src/pic16/pcoderegs.c: message about how many registers are saved
4211         will only be emitted if pic16_pcode_verbose flag is set,
4212
4213 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4214
4215         * src/ds390/ralloc.h,
4216         * src/ds390/ralloc.c (ds390_regWithIdx),
4217         * src/ds390/gen.c (emitcode),
4218         * src/ds390/main.h,
4219         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
4220         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4221         ds390operandCompare, getRegsRead, getRegsWritten,
4222         initializeAsmLineNode): customized instruction size calculation for
4223         ds390, started basis for some register optimizations
4224         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
4225         corresponding assembly output
4226         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
4227         missing push/pop of r0/r1. Optimized push/pops
4228
4229 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4230
4231         * src/mcs51/main.c (instructionSize): fixed ACALL size
4232         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
4233
4234 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
4235
4236         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
4237         the sorting of rlist with NULL elements
4238         * (print_idataType, print_idata): NEW to create idata sections
4239         * src/pic16/device.h: idataSymSet new variable
4240         * src/pic16/gen.c (genFunction): fixed some bugs in string
4241         comparing, improved the absolute section creation for ISRs,
4242         added FSR0L/FSR0H in registers that are saved in an ISR,
4243         * (genInline): fixed the processing of inline snippets,
4244         now they undergo no process by the peephole optimizer
4245         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
4246         are placed in idataSymSet,
4247         * (pic16emitStaticSeg): extern symbols are added in externs,
4248         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
4249         switching when aboslute variables are placed in access bank memory
4250         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
4251         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
4252         commented out with #if,
4253         * (pic16_packRegisters): reintroduce the check for CAST because some
4254         symbols are not correctly handled,
4255         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
4256         pCodeInstruction instead of pCode,
4257         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
4258         pCodeAsmDir definition,
4259         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
4260         directive, then the argument directive is emitted without the leading
4261         tab, hack for inline labels which must be in the first column,
4262         * (compareLabel,pic16_findNextInstruction),
4263         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
4264         * (insertBankSwitch): modified for the new pCodeAsmDir,
4265
4266 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4267         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
4268
4269         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
4270         instance,
4271         * (pushSide): commented out with #if,
4272         * (assignResultValue): fixed some typos in saving
4273         registers,
4274         * (genPcall): FIXED and sync'ed with genCall,
4275         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
4276         * (genNearPointerGet): fixed to handle some more cases,
4277         implementation scheme via table reads,
4278         * (genConstPointerGet): modified to access code memory correct,
4279         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
4280         and improved to handle some cases
4281         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
4282         instead of "RETLW" for init data
4283         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
4284         not IN_DIRSPACE, work around to reduce bank switching when aboslute
4285         variables are placed in access bank memory (<0x80 and >=0xf80),
4286         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
4287         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
4288         TBLWT_POSTDEC,TBLWT_PREINC
4289         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
4290         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
4291         directives
4292         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
4293         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
4294         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
4295         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
4296
4297 2004-02-29  Borut Razem <borut.razem AT siol.net>
4298
4299         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
4300         support/Util/findme.h, support/Util/system.h: enhance binary relative
4301         search for lib and include by using findProgramPath()
4302
4303 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4304
4305         * src/SDCCpeeph.h,
4306         * src/SDCCpeeph.c (pcDistance),
4307         * src/port.h,
4308         * src/mcs51/ralloc.h,
4309         * src/mcs51/ralloc.c (mcs51_regWithIdx),
4310         * src/mcs51/main.h,
4311         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
4312         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4313         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
4314         size calculation port specific, started basis for some register
4315         optimizations
4316         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
4317         missing push/pop of r0/r1. Optimized push/pops
4318         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
4319         * device/lib/_modsint.c (_modsint),
4320         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
4321         and stack version so regression tests pass
4322
4323 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
4324
4325         * src/Makefile.in (dep): include SLIBOBJS in dependency check
4326         * src/SDCCast.c (decorateType): catch another small optimization
4327         with '?' operator
4328         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
4329         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
4330         modified to finally use computeType() all over SDCC,
4331         see Feature Request #877103
4332         * src/SDCCval.h: cosmetic
4333         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
4334         valCompare(); regression tested in muldiv.c
4335         * support/regression/tests/muldiv.c (testMod): mod sign follows
4336         dividend only
4337
4338 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
4339
4340         * src/SDCCast.c (decorateType): fixed bug #902362
4341         * doc/INSTALL.txt: fixed install instructions for win32
4342
4343 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
4344
4345         * device/include/Makefile.in (install): fixed by replacing spaces
4346         by tabs
4347         * doc/README.txt,
4348         * doc/INSTALL.txt: updated for release
4349         * doc/sdccman.lyx: added warning for --xstack being buggy
4350
4351 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
4352
4353         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
4354         to eliminate build warnings.
4355         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
4356
4357 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
4358            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4359
4360         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
4361         removed -penable-stack, added comment for stack pragma, added
4362         warning for not initializing the stack/frame registers, removed
4363         comment at interrupts section
4364
4365         Stack is made permanent, there is no ability to disable stack usage.
4366         * src/pic16/device.h,
4367         * src/pic16/device.c: removed all references to USE_STACK macro,
4368         * src/pic16/device.c (pic16_dump_section): when no elements in
4369         rlist, free rlist before return,
4370         * (pic16_dump_int_registers): NEW, internal registers are a new set
4371         of general purpose registers reused by each function,
4372         * (checkAddReg): returns 1 if registers is added to set,
4373         * (pic16_groupRegistersInSection): when a registers is of type
4374         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
4375         * src/pic16/device.h: memRange and Assigned Memory are deleted,
4376         SRCASECMP macro is moved here from device.c
4377         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
4378         PO_PCLATU, PO_PRODL, PO_PRODH,
4379         * (pic16_pCodeOpType, genMinus,
4380         changed compares to "a" register, with AOP_ACC,
4381         * (pic16_genPlus): fixed some bugs and indented properly,
4382         * (pic16_addSign): changed size to size+offset in the MOVWF
4383         instruction,
4384         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
4385         multiply 8-bit operand by literal, result is 8-bit,
4386         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
4387         multiply 2 8-bit operand, result is 8-bit,
4388         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
4389         genUMult8X*_16,
4390         * src/pic16/gen.c: changed accUse to contain WREG only,
4391         * (pic16_emitcomment): renamed to pic16_emitpcomment,
4392         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
4393         true, do not use immediate addressing any more unless sym is a
4394         pointer in codespace,
4395         * (aopForRemat): do not use immediate addressing when symbol not in
4396         codespace and when symbol's address is requested,
4397         * (aopOp): for-loop in if(sym->accUse) is modified for the new
4398         accUse size (= 1),
4399         * (aopGet): added case for AOP_ACC and don't return "accumulator
4400         bug" but WREG instead,
4401         * (popGetTempReg): pushes contents of temporary register in stack,
4402         * (popReleaseTempReg): pops contents of temporary register from
4403         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
4404         * (pic16_popGet): separated case AOP_ACC to return register WREG
4405         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
4406         or PO_IMMEDIATE and initializes their instance/offset appropriately,
4407         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
4408         the use of immediate pointers to certain cases only.
4409
4410         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
4411         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
4412         * (assignResultValue, genCall, genRet): modified to use the new
4413         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
4414         genPcall is still broken,
4415         * (genFunction): added code to create 'A' type pBlocks when
4416         interrupt functions are generated, code not extensively tested yet,
4417         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
4418         * (genEndFunction): modified so ISRs pop stored registers from stack,
4419         * (genMultOneByte): cleanup,
4420         * (AccRsh): added flag andmask, to and result with appropriate mask,
4421         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
4422         * (genDataPointerGet): fixed and reenabled its use,
4423         * (genNearDataPointerGet): bugs fixed,
4424         * (genDataPointerSet): bugs fixed,
4425         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
4426         pic16_DumpSymbol, pic16_DumpOp,
4427         * src/pic16/genutils.h: function prototypes for the above functions,
4428         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
4429         pointers,
4430         * (pic16emitRegularMap): many many many improvements, but needs a
4431         major cleanup,
4432         * src/pic16/main.c: enable_stack in pic16_options is removed,
4433         * (_pic16_parseOptions): removed command line options -penable-stack,
4434         * (_process_pragma): emit stack symbol only when stack pragma is
4435         processed,
4436         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
4437         redirected to FSR0L/FSR0H pair,
4438         * (pic16_get_op, pic16_get_op2): modifications and improvements,
4439         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4440         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
4441         for immediates,
4442         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
4443         * (dumpPicOptype): NEW,
4444         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
4445         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
4446         with movff instruction,
4447         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
4448         added pic16_int_regs, some packRegsFor* functions are commented out,
4449         because produce errors,
4450         * src/pic16/NOTES: minor modifications
4451
4452 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4453
4454         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
4455         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
4456         --pack-iram.
4457         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
4458         * as/mcs51/lkaomf51.c: fixed bug #895763
4459
4460 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
4461
4462         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
4463
4464 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4465
4466         * doc/sdccman.lyx: added details about the HC08 storage classes and
4467         interrupts, fixed the register usage info for z80 & gbz80
4468
4469 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
4470
4471         * doc/sdccman.lyx: added more pic16 port documentation
4472         * device/include/pic16/: added header pic18fregs.h
4473
4474 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
4475
4476         * doc/sdccman.lyx: added Vangelis' contribution
4477
4478 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4479
4480         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
4481         extend to the next CALL or PCALL, not just to the next CALL.
4482
4483 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
4484
4485         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
4486
4487 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4488
4489         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
4490         bug #895752 and a better fix for bug #716790
4491
4492 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4493
4494         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
4495
4496 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4497
4498         * doc/sdccman.lyx: minor changes, minor changed
4499
4500 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
4501
4502         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
4503         which can't handle SDCC_NEWONEBYTEOPS,
4504         (geniCodeMultiply): removed conversion from mult to shift for pic14
4505         and pic16
4506
4507 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4508
4509         * src/hc08/gen.h,
4510         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
4511         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
4512         thus fixing bug #895406
4513
4514 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
4515
4516         * device/lib/_modsint.c,
4517         * device/lib/_modslong.c: sign follows divisor only
4518         * src/hc08/gen.c (genMultOneByte): if result size is 1,
4519         signs or signedness can be ignored
4520         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
4521         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
4522         added optimization for IFX,
4523         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
4524         arguments;
4525         reenabled optimization for IFX, which was removed on 2004-01-11
4526         * src/SDCCast.h: added return type IFX
4527         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
4528         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
4529         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
4530         SDCC_OLDONEBYTEOPS selects the old behaviour
4531         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
4532         changed again and commented promotion rule
4533         * src/SDCCval.c (valDiv): promotion no longer necessary
4534         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
4535         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
4536         rewritten
4537         * support/regression/tests/onebyte.c: added
4538
4539 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
4540
4541         * gen.c (genInline): reverted to old code for assemnling inline
4542         code because of bug reported James Chadd
4543
4544 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
4545
4546         * ralloc.h: missing declarations from previous patch,
4547         seems that patch for ralloc.h was never applied, fixed
4548
4549 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4550            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
4551
4552         * pcode.c,
4553         * pcode.h,
4554         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
4555         indirect addressing. Marked FSR0 as deprecated
4556         * gen.c (pointerCode): commented out, not needed now
4557         (pic16_popGet2p): new MOVFF helper function
4558         (genGenPointerGet),
4559         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
4560         (shiftRLong): removed duplicate debugging info
4561
4562 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4563
4564         * src/ds390/gen.c (genNearPointerGet),
4565         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
4566         optimization with bits, but not bitfields.
4567         * src/ds390/ralloc.c (packRegisters),
4568         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
4569
4570 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
4571
4572         * src/SDCCcse.c (algebraicOpts): copy operands before modification
4573
4574 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4575
4576         * src/SDCCsymt.h,
4577         * src/SDCCicode.c (operandFromSymbol),
4578         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
4579         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
4580         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
4581         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
4582         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
4583         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
4584         bug #892038
4585         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
4586         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
4587         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
4588         * src/SDCCsymt.c (newSymbol),
4589         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4590         enumerator_list),
4591         * src/SDCCval.h,
4592         * src/SDCCval.c (newiList): fixed bug #885705
4593
4594 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4595
4596         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
4597         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
4598
4599 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4600
4601         * device/include/c8051f120.h,
4602         * device/include/c8051f300.h,
4603         * device/include/c8051f310.h: added/updated header files for Silicon
4604         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
4605         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
4606         in new section Submitting patches
4607
4608 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4609
4610         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
4611         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4612         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4613         genGenPointerSet),
4614         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
4615         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4616         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4617         genGenPointerSet),
4618         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
4619         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4620         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4621         genGenPointerSet),
4622         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
4623         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4624         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4625         genGenPointerSet): fixed bug #892400
4626         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
4627         to eliminate build warnings.
4628         * src/SDCCast.c (processParms),
4629         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
4630         fixed bug 751859
4631         * support/valdiag/valdiag.py: added GCC to the list of defines active
4632         when compiling with gcc
4633
4634 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4635
4636         * support/Util/SDCCerr.h,
4637         * support/Util/SDCCerr.c,
4638         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
4639         with an incomplete type (fixed bug #883734)
4640         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
4641
4642 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4643
4644         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
4645
4646 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4647
4648         * src/SDCCast.c (decorateType),
4649         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
4650         function pointer implementation
4651         * support/regression/tests/funptrs.c: added tests to verify both forms
4652         of function pointers work correctly. Added tests to verify parameters
4653         are passed in the correct order.
4654
4655 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
4656
4657         * device.c (regCompare): registers are sorted by ascending
4658         address and increasing size,
4659         * main.c (_pic16_finaliseOptions): removed the declaration
4660         of compiler macro MCU. Now a macro of the format pic18fxxxx
4661         will be defined from the command line
4662
4663 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4664             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
4665
4666         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
4667         PCOP_RLCF was overwritten!
4668         * gen.c (genSkip): commented out calls to pic16_emitcode,
4669         * (genCmpEQ): fixed "long" compares, only high word did get compared,
4670         * (genlshTwo),
4671         * (genRRC): added debugging info,
4672         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
4673         overwritten while shifting,
4674         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
4675         overwritten while shifting,
4676         * (AccLsh),
4677         * (AccRsh),
4678         * (shiftLLeftOrResult),
4679         * (shiftRLeftOrResult),
4680         * (shiftRLong),
4681         * (shiftLLong): Implemented with pic16_emitpcode
4682         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
4683         * (genLeftShift): Fixed bug, operand for shift by variable always
4684         was "and"ed with 0x0f,
4685         * (genLeftShiftLiteral),
4686         * (genrshTwo),
4687         * (genRightShiftLiteral): added debugging info,
4688         * (genrshFour): added comment,
4689         * (genRightShift): determined signedness from operand "left"
4690         instead of "result"
4691
4692 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4693
4694         * src/SDCCicode.c (geniCodeParms),
4695         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
4696         function pointers, fixed function pointer bugs #861242 and #861896
4697
4698 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4699
4700         * device/include/c8051f000.h,
4701         * device/include/c8051f120.h,
4702         * device/include/c8051f300.h: added header files for Silicon
4703         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
4704
4705 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
4706
4707         * src/SDCCast.c (processParams): added new type flow and restructured
4708         (gatherAutoInit): added new type flow
4709         (addCast): cosmetic changes
4710         (getLeftResultType): added new type flow for array indices, patch
4711         provided by Stas, see FR #877103
4712         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
4713         array index patch by Stas
4714         * src/SDCCast.h: added prototype getResultTypeFromType()
4715         * src/SDCCval.h,
4716         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
4717         * src/pic/glue.c (pic14emitStaticSeg),
4718         * src/pic16/glue.c (pic16emitStaticSeg),
4719         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
4720         for initialization of symbols
4721         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
4722         * support/Util/SDCCerr.h:
4723         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
4724         * .version: bumped version number to 2.3.8
4725         * device/include/Makefile.in (install),
4726         * doc/Makefile (install): changed to 'rm `find ...`' construct to
4727         avoid warnings
4728
4729 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
4730
4731         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
4732         Slade Rich fixed an optimization bug
4733         * src/pic/pcodepeep.c,
4734         * src/pic/pcoderegs.c
4735         * doc/Makefile (install): added test for directory
4736
4737 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4738
4739         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
4740         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
4741         * src/pic/ralloc.c (getRegPtr, getRegGpr),
4742         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
4743         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
4744         * as/mcs51/asexpr.c (term),
4745         * as/hc08/asexpr.c (term): fixed bug #887146
4746
4747 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4748
4749         * src/z80/gen.c (genMult): handle single byte result product
4750         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
4751         DUMMY_READ_VOLATILE (fixed bug #886367)
4752
4753 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
4754
4755         * support/regression/tests/libmullong.c: fixed logic, on little endian
4756         hosts we ended without a mullong_wrapper()
4757
4758 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4759
4760         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
4761         virus/worm forged address usage.
4762
4763 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
4764
4765         Fixed promotion, it should be done on AST level:
4766         * src/SDCCast.c (addCast): added promotion to int
4767         (decorateType): updated call to upCast()
4768         * src/SDCCicode.c (geniCodeLeftShift): removed call to
4769         usualUnaryConversions()
4770
4771 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
4772
4773         * support/regression/tests/literalop.c (mulWrapper): Added a
4774         wrapper to remove integer overflow warnings.
4775
4776         * support/regression/tests/float_trans.c: Made work on host.
4777
4778         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
4779         location of sz80.
4780
4781         * support/regression/generate-cases.py (main): Changed from inline
4782         to a main method.
4783
4784         * doc/Makefile (install): Changed to depth first to get rid of
4785         missing directory install warning.
4786
4787         * as/Makefile (install-doc): Made work on Mac.
4788
4789 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
4790
4791         * src/SDCCast.c: added an additional type flow in decorateType() of
4792         opposite direction, see feature request #860006; it's enabled at runtime
4793         by setting the environment variable SDCC_NEWTYPEFLOW
4794         * src/SDCCast.h: changed prototype of decorateType()
4795         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
4796         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
4797         'char' to 'int' can be omitted, if both operands are 'unsigned char';
4798         see feature request #877103
4799         * src/SDCCval.c: updated call of decorateType()
4800         (valBitwise): fixed bug #882876
4801         (valMinus): added promotion
4802         (valLogicAndOr): result is unsigned
4803         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
4804         * src/SDCCsymt.c (computeType),
4805         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
4806         must not cause an unsigned operation
4807         * src/pic/glue (pic14emitRegularMap),
4808         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
4809
4810 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
4811
4812         * src/pic/pcode.c (PCodeID): commented out left over debug code
4813
4814 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
4815
4816         * support/valdiag/tests/overflow.c: added shift tests
4817         * src/pic/device.c,
4818         * src/pic/gen.c,
4819         * src/pic/gen.h,
4820         * src/pic/glue.c,
4821         * src/pic/main.c,
4822         * src/pic/pcode.c,
4823         * src/pic/pcode.h,
4824         * src/pic/pcodepeep.c,
4825         * src/pic/pcoderegs.c,
4826         * src/pic/ralloc.c,
4827         * src/pic/ralloc.h: applied patch from Slade Rich;
4828         added support for multiple code pages and multiple RAM banks on the
4829         PIC 14 port. The ASM files now no longer simply assume all the
4830         code / RAM are in the same page / bank. This means the linker can
4831         safely allocate code/RAM of separate ASM files to different pages/banks.
4832         * doc/sdccman.lyx: added Slade's tips
4833         * src/mcs51/peeph.def: fixed bug #880768
4834
4835 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4836
4837         * src/hc08/ralloc.c (rematStr): fixed bug #879282
4838         * src/SDCCast.c (decorateType): fixed bug #880197
4839
4840 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
4841
4842         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
4843         getopt.h.
4844
4845         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
4846         strtof is not part of C89 and isn't included with Mac OS X.
4847
4848 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4849
4850         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
4851         shiftL2Left2Result): fixed bug #879326
4852         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
4853         (genMultOneByte): fixed bug in signed vs unsigned multiplication
4854         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
4855         address fetch for clr instruction
4856         * device/lib/hc08/_mulint.c: created optimized assembly version
4857         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
4858
4859 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
4860
4861         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
4862         proposed in FR #877103
4863
4864 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
4865
4866         * src/SDCCval.c (cheapestVal): added missing checks
4867         * src/SDCCicode.c (usualBinaryConversions): fixed condition
4868         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
4869
4870 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
4871
4872         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
4873         equal operands
4874
4875 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
4876
4877         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
4878         loaded with the linker search paths (-L arguments) and the libraries
4879         to be linked with the current source (-l arguments). Changes
4880         currently will affect only the pic16 port.
4881         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
4882         include path the port specific paths and port specific libraries,
4883         * gplink command now contains the $3 argument,
4884         * src/pic16/device.h,
4885         * src/pic16/device.c,: structure PIC_device is made public and
4886         renamed to PIC16_device, the same for variable Pics which is renamed
4887         to Pics16. Updated all references to them.
4888         * src/pic16/glue.c (pic16glue): corrected bug with code
4889         initialization which bypassed the variable initializations block.
4890
4891         * device/lib/pic16/Makefile.rules: removed --penable-stack from
4892         COMPILE_FLAGS and added the --nostdinc option
4893
4894 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4895
4896         * device/include/mc68hc908jb8.h: Register defs for another member
4897         of the hc08 family. Contributed by Bjorn Bringert - thanks!
4898
4899 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
4900
4901         Documenting changes from previous commits.
4902         * configure.in (version 1.56),
4903         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
4904         when generating output files to configure the pic16 library,
4905         but now I've commented it out, since gputils aren't installed in the
4906         SF compile farm, so library won't compile
4907
4908         * device/lib/Makefile.in (version 1.56): initially I've added in
4909         target 'all' the prerequestive 'model-pic16' so it compiled the
4910         pic16 library, but now I've commented it out for the same reasons
4911         above,
4912         * added targets 'model-pic16' and 'objects-pic16' to compile the
4913         library
4914         * added target 'port-specific-objects-pic16' to handle the
4915         generated libraries and copy them into the build/ directory
4916         * added target 'clean-intermediate-pic16' to clean intermediate
4917         files into pic16 directory
4918         * in target 'installdirs' added line to create directory pic16 in
4919         the installation path
4920
4921         * device/include/Makefile.in (version 1.11): in target 'install'
4922         added lines to copy all header files to installation path,
4923         * in target 'installdirs' added line create directory for pic16
4924         headers in the installation path
4925
4926 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
4927
4928         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
4929          a function call
4930
4931 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
4932
4933         * configure,
4934         * device/lib/configure.in,
4935         * device/lib/configure: fixed for autoconf 2.57
4936
4937 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4938
4939         * src/z80/main.c (_parseOptions): fixed the portmode= command line
4940         option so that it actually works. Made it specific to the z80, since
4941         the gbz80 doesn't have these kinds of I/O ports.
4942
4943 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4944
4945         * device/include/z180.h,
4946         * device/lib/_memcpy.c,
4947         * device/lib/_memmove.c,
4948         * device/lib/_mulint.c,
4949         * device/lib/ser_ir.c,
4950         * device/lib/ser_ir_cts_rts.c,
4951         * device/lib/_strcmp.c,
4952         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
4953         * src/z80/main.c (_process_pragma): add support for pragmas bank and
4954         portmode; added deprecation warning for bank= and protmode= forms.
4955         Also, guard against buffer overflow.
4956         * src/z80/gen.c (aopGet): generate better code for sfr banked read
4957
4958 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4959
4960         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
4961         changed interrupt vector table generation to only emit declared vectors.
4962         * device/include/Makefile.in: added missing backslash
4963         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
4964
4965 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
4966
4967         Mainly changes to support compilation of the device libraries
4968         * src/pic16/device.c: stack is allocated via symbol and not
4969         via literal number. The symbol is placed in the corresponding
4970         position of the data ram
4971         * (pic16_dump_section): relocatable and absolute uninitialized
4972         data are now emitted in sorted order to reduce section naming,
4973         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
4974         weren't marked as being in the access bank,
4975
4976 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
4977
4978         Added portion of GNU PIC Library under the directory
4979         device/include/pic16 and device/lib/pic16. These files
4980         contain the declarations of SFRs for the PIC18Fxx2 devices.
4981         The directory is initialized via configure from toplevel.
4982
4983 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
4984
4985         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
4986         the spilllocations to be compared correctly
4987
4988 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
4989
4990         * src/SDCCast.c (decorateType): fixed bug introduced today
4991
4992 2004-01-12  Borut Razem <borut.razem AT siol.net>
4993
4994         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
4995         doc/sdccman.lyx: upper case pragmas are deprecated
4996
4997 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
4998
4999         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
5000         in simpler and even better code
5001
5002 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
5003
5004         * src/SDCCicode.c (operandOperation): fixed bug #874819
5005         * src/SDCCast.c (decorateType): fixed
5006         char foo (unsigned long ul) { return ul > 0; }
5007
5008 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5009
5010         * doc/sdccman.lyx: Moved and added some sections, small changes
5011         all over. Telling LaTeX to be less strict with word spacing
5012         to better keep the right margin. Changed some notes about
5013         maintainance of the ports in section 3.2.1 - is it OK like this?
5014
5015 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
5016
5017         SDCC source changes:
5018         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
5019         convilong): modified to inform the pic16 port that builtin functions
5020         are external
5021
5022         PIC16 PORT specific changes:
5023         * src/pic16/device.c pic16_dump_equates() added,
5024         processor registers declared internally by the port are emitted in
5025         the translation as equates,
5026         * src/pic16/gen.c: inline code is passed unprocessed to the
5027         translation,
5028         * (pic16_popGetLit2): fnuction modified to take second operand as
5029         pCodeOp pointer and not as literal,
5030         * (popRegFromIdx): prefixed with pic16_,
5031         * (pic16_popCombine2): modified to receive already allocated pCode
5032         operands,
5033         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
5034         * (genFunction): initializes local stack frame and pushes on stack
5035         all the registers used by this function,
5036         * (genEndFunction): restores all registers from stack and restores
5037         stack frame,
5038         * src/pic16/glue.c (pic16emitRegularMap): various changes and
5039         improvements,
5040         * (pic16glue): changed the program startup sequence,
5041         * added new dbName code 'A' for functions placed in absolute section
5042         * src/pic16/main.c: added function attribute _naked,
5043         * added pragma 'code' to place a fnuction at an absolute address,
5044         * added command line arguments --debug-ralloc and --pcode-verbose,
5045         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
5046         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
5047         * (pic16_newpCodeOpLit2): modified to take the second operand as
5048         pCodeOp pointer,
5049         * (pic16_printpBlock): modified to emit each function in a separate
5050         section,
5051         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
5052         UPPER for immediate operands,
5053         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
5054         instruction,
5055         * src/pic16/peeph.def: all peepholes with movff are commented out,
5056         because there is a problem in the pcode peep optimizer,
5057         * src/pic16/ralloc.c: the register allocator can now reuse local
5058         function symbols for another function. This saves register usage.
5059         * src/pic16/ralloc.h: added flag isLocal in structure regs,
5060
5061         Added file src/pic16/NOTES with information about program writing on
5062         the current port version.
5063
5064 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5065
5066         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
5067         and peephole 252 (array access)
5068
5069 2004-01-09  Borut Razem <borut.razem AT siol.net>
5070
5071         * src/SDCCmain.c : fixed #872250: -l command line defined library
5072           files are scanned before standard library files
5073
5074 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5075
5076         * src/SDCCast.c (decorateType): fixed bug #874046
5077
5078 2004-01-09  Borut Razem <borut.razem AT siol.net>
5079
5080         * support/scripts/sdcc.nsi: remove previous installation
5081
5082 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5083
5084         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
5085         bytes for last interrupt vector (mcs51)
5086         * sdcc.spec: fixed typo
5087
5088 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5089
5090         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
5091         gen51Code): more efficient parameter receive for --model-large
5092         ("bug" #845294)
5093
5094 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5095
5096         * src/ds390/main.c,
5097         * src/z80/main.c: added missed needLinkerScript flags (more than
5098         one port structure defined in these file)
5099         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
5100         bug #795325
5101
5102 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
5103
5104         * src/SDCCmain.c: removed various references to DEFAULT_PORT
5105         * src/port.h: added flag needLinkerScript in port->linker
5106         structure to inform whether to create a .lnk file or not,
5107         * src/avr/main.c,
5108         * src/ds390/main.c,
5109         * src/hc08/main.c,
5110         * src/mcs51/main.c,
5111         * src/pic/main.c,
5112         * src/pic16/main.c,
5113         * src/xa51/main.c,
5114         * src/z80/main.c: changed appropriately to configure
5115         needLinkerScript flag
5116         * src/pic/gen.c,
5117         * src/pic16/gen.c (genAddrOf): fixed bug #863624
5118         * src/pic/glue.c: added variable udata_section_name to
5119         override default uninitialized data segment definition for
5120         devices only with SHAREBANK memory (reported from Erik Epetrich)
5121         * (pic14emitOverlay): modified to emit a commented overlay segment
5122         directive when no overlay data exist
5123         * (picglue): modified to emit uninitialized data segment
5124         according to udata_section_name
5125         * src/pic/main.c (_pic14_parseOptions): added command line
5126         options --udata-section-name=[name] to override default
5127         udata definition name
5128         * modified _linkCmd and _asmCmd to include compiler passed
5129         arguments via -W option
5130         * src/pic16/main.c: added $l in _asmCmd, changed extension for
5131         object file from '.rel' to '.o' in port->linker structure,
5132         changed size of fptr from 2 to 3 in port structure
5133
5134 2004-01-07  Borut Razem <borut.razem AT siol.net>
5135
5136         * support/scripts/sdcc.nsi: update PATH
5137         * support/scripts/sdcc.ico: craeted
5138
5139 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
5140
5141         * device/include/Makefile.in: fix install
5142         * doc/Makefile: fix install
5143
5144 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5145
5146         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
5147         in bug #860505
5148         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
5149         how the function variable allocation summary is displayed; also
5150         include information about variables allocated to the overlay
5151         segment
5152
5153 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5154
5155         * as/mcs51/lkmain.c: Help about -Y option
5156         * as/mcs51/lkarea.c: Fixed gcc warnings
5157
5158 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5159
5160         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
5161         fixed warning
5162         * support/valdiag/tests/overflow.c: added
5163         * src/SDCCast.c (decorateType),
5164         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
5165         LEFT_OP (left shift)
5166
5167 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5168
5169         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
5170         (default behaviour).
5171
5172 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5173
5174         A python script to validate compiler diagnostic messages. It can be
5175         used to verify that sdcc complains about bad c source code and
5176         gives a good location of the error.
5177         * support/valdiag/Makefile,
5178         * support/valdiag/valdiag.py,
5179         * support/valdiag/tests/*
5180
5181 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5182
5183         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
5184         * src/SDCCsymt.c (newEnumType),
5185         * src/SDCCsymt.h
5186         * support/Util/SDCCerr.c,
5187         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
5188         enum related bugs.
5189         * support/regression/tests/enum.c: added test for enum values that
5190         require at least 2 bytes of storage.
5191
5192 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5193
5194         * src/common.h: added ifndef/define/endif macros
5195         around the header file.
5196         Bug reported from Jesus Calvino-Fraga
5197
5198 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5199
5200         * sdcc.spec: updated
5201         * device/include/Makefile.in: don't install CVS directories
5202         * device/lib/Makefile.in: added removal of CVS directories after install
5203         * doc/Makefile: fixed install, added local_icons
5204         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
5205         * src/mcs51/gen.c (genRightShift): fixed bug #870788
5206         * src/ds390/gen.c (genRightShift): fixed bug #870788
5207         * src/SDCCast.c (decorateType): fixed bug #870781
5208
5209 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5210
5211         PIC16 port related changes:
5212         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
5213         added variable stackPos,
5214
5215         * gen.c: genCall, assignResultValue: added support for
5216         pushing/retrieving function parameters to/from stack,
5217         genFunction,genEndFunction: setup stack frame for the
5218         generated function,
5219         genAddrOf: will be changed according to bug 863624
5220
5221         * added files genutils.c and genutils.h which contain gen*
5222         debugged and optimised functions extracted from gen.c
5223
5224         * glue.c: added variable 'externs' which holds extern symbols,
5225         pic16emitRegularMap: is modified to properly handle relocatable
5226          symbols under the new scheme,
5227         pic16createInterruptVect: is modified
5228         pic16printPublics: is modified to emit 'global' assembler directives,
5229         added pic16_printExterns to print extern symbols,
5230         pic16glue: initializes stack/frame pointer in the beginning of
5231         the assembly output. Temporary hack, will be corrected later,
5232         because gplink yet does not support stack and SDCC does not
5233         yet support a type of crt0.o object to create the final binary.
5234
5235         * Removed many lines that contain 8051 legacy code.
5236         * The code is finally placed under a 'code' directive.
5237         * Added port specific options.
5238
5239         * _process_pragma: simplified since now we do not need *special*
5240         include file to define SFR registers. But a separate header
5241         will be needed. This will be developed later.
5242         * _pic16_parseOptions: added, parses port specific options:
5243         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
5244         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
5245         --preplace-udata-with=
5246
5247         * _pic16_setDefaultOptions: modified to initialize section names,
5248         but hack is temporarly out of order since it needs improvement.
5249         * _pic16_genAssemblerPreamble: configuration words are emitted by
5250         their address instead of their name. This part is incomplete and
5251         supports only the 18Fxx2 devices. Other devices will emit an error
5252         during assembly since they do not contain the same set of config
5253         registers
5254         * _pic16_genIVT: is modified,
5255
5256         * pcode.c: added definitions for some hardware registers that are needed
5257         for stack support
5258         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
5259         All PCI entries are updated. Now LFSR is supported.
5260         * Removed pic16_pciTRIS is mentioned by mdubuc in source
5261         * added pic16_newpCodeOpLit2 to support instructions with
5262         two literal arguments
5263         * pic16_pCode2str: corrected code that emits assembler instructions
5264         with two literal operands and those that have an access bit modifier
5265         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
5266         this fixes a bug which caused some labels to be lost, when an
5267         assembler directive was added, i.e. banksel,
5268         * pic16_FixRegisterBanking: improved logic that causes the insertion
5269         of bank switching,
5270         * InlineFunction: functions that are called once, are not any more
5271         inlined. This can be a port option in the future,
5272
5273         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
5274
5275         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
5276         hold the corresponding uninitialized symbols,
5277         * pic16_allocProcessorRegister: registers have explicit marked the
5278         accessBank field,
5279         * pic16_allocInternalRegister: registers are explicit marked as
5280         not used,
5281         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
5282         processing list, so bit registers were lost,
5283         *
5284
5285         * ralloc.h: added field 'accessBank' and original symbol operand
5286         in register definition,
5287         * removed the field isMapped from register definition,
5288
5289         ** Several functions have been removed from various sources:
5290         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
5291         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
5292         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
5293         pic16_assignRelocatableRegisters
5294
5295         ** others have been introduced:
5296         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
5297         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
5298
5299 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
5300
5301         * support/scripts/inc2h.pl: changed definition of BIT_AT
5302         to emit 'sbit at' instead of 'bit at'. This was a request.
5303
5304         PIC16 port related preliminary changes:
5305         * gen.c: prefixed function popRegFromString with
5306         pic16_ and all references to it corrected
5307         * pcode.c: all pic16_pc_* hardware registers prefixed
5308         with underscore (_),
5309         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
5310         * ralloc.c: newReg(): when register is REG_SFR then
5311         set address to rIdx,
5312         pic16_allocProcessorRegister(): marks register wasUsed=0
5313         pic16_writeUsedRegs(): added a call to assign processor
5314         registers via pic16_assignFixedRegisters
5315
5316 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5317
5318         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
5319         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
5320         variables in unused register banks.  Also the SSEG is placed
5321         wherever there is enough space for it, and IDATA can be anywhere
5322         in internal RAM.  For now compile using -Wl-Y[stack_size].
5323         The mem file is different for this option as well, since it
5324         makes no sense of talking about DSEG lenght.
5325
5326 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
5327
5328         * src/SDCClrange.c: fixed bug 869095 that caused segfault
5329         in certain cases, e.g. when ROM assignment, patch provided
5330         from Albert den Haan.
5331
5332 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
5333
5334         Many signedness and type propagation fixes:
5335         * src/SDCCicode.c: made geniCodeCast() static
5336         replaced SPEC_ by IS_ (cosmetic)
5337         (operandOperation): fixed div and mod operation
5338         (usualBinaryConversions): added support for promotion of char
5339         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
5340         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
5341         (geniCodeAdd): an array index will stay unsigned, even if promoted
5342         from char to int
5343         (geniCodeArray): ditto
5344         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
5345         * src/SDCCsymt.c (computeType): added more support for char;
5346         promotion of char is selectable by promoteCharToInt, fixed signedness
5347         for all cases
5348         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5349         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5350         * src/SDCCval (val*): replaced signedness calculation by
5351         computeType()
5352         rearranged if-branches (cosmetic)
5353         (valShift): added warning W_SHIFT_CHANGED
5354         (valCompare): fixed problem with different types
5355         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
5356         * support/regression/tests/literalop.c: added many cases
5357         * support/regression/tests/ast_constant_folding.c: changed finally to
5358         'unsigned int'
5359         * .version: new year, new version: 2.3.7
5360         * src/SDCCmain.c (main): applied patch #866468
5361         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
5362         provided by Scott Bronson
5363         * doc/sdccman.lyx: updated documentation for sdcdb
5364         updated and added chapter tips
5365
5366 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5367
5368         * src/SDCCsymt.h: missing from yesterday's commits
5369
5370 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5371
5372         * src/SDCC.y (struct_or_union_specifier),
5373         * support/Util/SDCCerr.c,
5374         * support/Util/SDCCerr.h: verify that struct & union tags are used
5375         as declared.
5376
5377 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5378
5379         * src/SDCCglobl.h: missing from yesterday's commits
5380
5381 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5382
5383         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
5384         sft_attributes, struct_declaration, parameter_declaration,
5385         type_name, start_block, declaration_list),
5386         * src/SDCC.lex (check_type): support redefinition of typedef names
5387
5388 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5389
5390         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
5391         aligned xdata arrays. Erik helped me with the if clause.
5392
5393 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5394
5395         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
5396         warning
5397
5398 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5399
5400         * src/SDCCast.h,
5401         * src/SDCCast.c (newAst_),
5402         * src/SDCCicode.h,
5403         * src/SDCCicode.c (ast2iCode, newiCode),
5404         * src/SDCCglobl.h,
5405         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
5406         expr, statement, expression_statement, selection_statement,
5407         iteration_statement, expr_opt, jump_statement): foundation for tracking
5408         sequence points
5409         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
5410         point code too)
5411
5412 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5413
5414         * support/Util/SDCCerr.c,
5415         * src/SDCCast.h,
5416         * src/SDCCast.c (createCase, createDefault, decorateType),
5417         * src/SDCClabel.c (labelUnreach),
5418         * src/SDCC.y (labeled_statement, jump_statement): More improvements
5419         to error messages.
5420         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
5421         (with thanks to Stas Sergeev)
5422         * device/include/time.h,
5423         * device/lib/time.c (CheckTime): suppress unreachable code warning
5424
5425 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5426
5427         * src/SDCCast.c (createIvalCharPtr),
5428         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
5429         bug #753752)
5430         * support/regression/tests/nullstring.c: tests for these two bugs
5431
5432 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5433
5434         * support/Util/SDCCerr.h,
5435         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
5436         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
5437         about storage class and 'at' used inside struct or union
5438         * src/SDCCBBlock.c (iCodeFromeBBlock),
5439         * src/SDCCcse.c (ifxOptimize),
5440         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
5441         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
5442         printIval, emitStaticSeg, emitOverlay),
5443         * src/SDCClabel.c (deleteIfx),
5444         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
5445         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
5446         gatherAutoInit, processParms),
5447         * support/Util/SDCCerr.h,
5448         * support/Util/SDCCerr.c (werrorfl): Support for better error location
5449         reporting for post-parse errors.
5450
5451 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5452
5453         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
5454         implicit casts via union; they don't work on big endian systems
5455         (possible fix for bug #861138)
5456
5457 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5458
5459         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
5460         * src/mcs51/main.c: fixed the fix for bug #737001
5461
5462 2003-12-15  Borut Razem <borut.razem AT siol.net>
5463
5464         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
5465
5466 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5467
5468         * support/makebin/makebin.c: put output in binary mode
5469
5470 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5471
5472         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
5473         xdata and data memory on startup. Set the environment variable
5474         SDCC_NOGENRAMCLEAR to disable this.
5475         * src/mcs51/peephole.def,
5476         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
5477         (allows non-interrupt and interrupt code to safely compete for a resource
5478         without the non-interrupt code having to disable interrupts)
5479
5480 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5481
5482         * src/SDCCicode.c (geniCodeAdd),
5483         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
5484         with valFromType if type might be a pointer and host is big endian).
5485         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
5486         types, not just integer types.
5487         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
5488         multiply defined with mismatching "at" address.
5489
5490 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5491
5492         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
5493         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
5494         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
5495         with embedded nulls (fixed bug #753752)
5496
5497 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5498
5499         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
5500         Apparently this did not see much testing (endless loop)
5501
5502 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5503
5504         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
5505
5506 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5507
5508         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
5509         gracefully handle NULL memmap pointers
5510
5511 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5512
5513         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
5514         instead of deleting the iCode when an operand is volatile
5515         * src/z80/gen.c (genDummyRead),
5516         * src/mcs51/gen.c (genDummyRead),
5517         * src/ds390/gen.c (genDummyRead),
5518         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
5519         not just IC_RIGHT
5520         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
5521         * src/SDCC.y: fixed bug #850420
5522
5523 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5524
5525         Applied z80 i/o port patch from Peter Townson and fixed some operators
5526         to better handle operands in A register.
5527         * device/include/z180.h
5528         * src/SDCC.y
5529         * src/SDCCglue.c
5530         * src/z80/gen.c
5531         * src/z80/gen.h
5532         * src/z80/main.c
5533         * src/z80/peeph-z80.def
5534         * src/z80/peeph.def
5535         * src/z80/z80.h
5536
5537 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5538
5539         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
5540
5541 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5542
5543         * device/lib/hc08/_mullong.c: Removed extra #endif
5544
5545 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5546
5547         * sim/ucsim/hc08.src/inst.cc,
5548         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
5549         carries from x to h
5550         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
5551         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
5552         * device/include/stdarg.h: fixed varargs for hc08
5553         * device/lib/Makefile.in,
5554         * device/lib/hc08/Makefile,
5555         * device/lib/hc08/_mulint.c,
5556         * device/lib/hc08/_mullong.c: fixed some endian problems
5557
5558 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5559
5560         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
5561         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
5562         * device/lib/_gptrget.c,
5563         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
5564
5565 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5566
5567         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
5568         * src/SDCCast.c (astErrors): fixed bug #846007
5569         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
5570
5571 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5572
5573         * src/SDCCast.c (decorateType): disabled a transformation I added in
5574         revision 1.188 (access to fields of a structure at an absolute address);
5575         it breaks with bitfields, extern declarations, and gcse analysis.
5576         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
5577         could be assigned through a pointer, so don't complain.
5578         * src/SDCCast.c (astErrors),
5579         * src/SDCCast.h,
5580         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
5581
5582 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
5583
5584         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
5585         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
5586         output of __config directives, since gpasm now supports them
5587         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
5588         pre-processor macro, i.e. -DMCU=p18f452
5589         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
5590         and modified to handle 'cast' icode similarly to '=' icode
5591         * src/pic16/device.h (typedef struct PIC_device): added field
5592         'extMIface' to indicate that chip has external memory interface
5593         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
5594         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
5595         18F8720
5596
5597 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5598
5599         * src/SDCC.y (pointer): fixed bug #846006
5600         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
5601         * src/SDCCast.c (decorateType): fixed bug #846009
5602         * src/ds390/peeph.def,
5603         * src/ds390/gen.c (genAnd, genOr),
5604         * src/mcs51/peeph.def,
5605         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
5606
5607 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5608
5609         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
5610         * src/SDCCdflow.c
5611         * src/SDCCcse.c
5612         * src/SDCCcse.h
5613         * src/SDCCBBlock.h
5614         * src/SDCCBBlock.c
5615
5616 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
5617
5618         fixed bug #845089
5619         * src/SDCCbitv.h,
5620         * src/SDCCbitv.c: added function to free a bitvector
5621         * src/SDCClrange.h,
5622         * src/SDCClrange.c: added function to recompute the liveranges
5623         * src/avr/ralloc.c,
5624         * src/ds390/ralloc.c,
5625         * src/hc08/ralloc.c,
5626         * src/mcs51/ralloc.c,
5627         * src/pic/ralloc.c,
5628         * src/pic16/ralloc.c,
5629         * src/xa51/ralloc.c,
5630         * src/z80/ralloc.c: recompute the liveranges after register packing
5631
5632 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
5633
5634         * src/SDCCloop.c (newInduction): fixed bug #845630
5635
5636 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5637
5638         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
5639         inadvertantly left behind from my 2003-11-12 change
5640
5641 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5642
5643         Updated headers I neglected to commit yesterday.
5644         * src/SDCClrange.h,
5645         * src/SDCCicode.h
5646
5647 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5648
5649         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
5650         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
5651         * src/SDCCopt.c (eBBlockFromiCode),
5652         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
5653         the creation of the key hash table from the sequencing so it can be used
5654         earlier (for some GCSE bug fixes still pending)
5655
5656 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5657
5658         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
5659         * support/regression/tests/addsub.c: testing genPlus shortcut
5660
5661 2003-11-15  Borut Razem <borut.razem AT siol.net>
5662
5663         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
5664
5665 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5666
5667         * src/SDCCcse.c (cseBBlock): fixed bug #527779
5668         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
5669         ordering is immaterial.
5670         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
5671
5672 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5673
5674         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
5675         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
5676         (SIGSEV) of bug #840381
5677         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
5678         unlink new file before rename if new and old filenames are the same)
5679
5680 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5681
5682         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
5683         uninitialized variables) for the mcs51. Set environment variable
5684         SDCC_GENRAMCLEAR to test.
5685         xdata initialization slightly shorter
5686
5687 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5688
5689         * src/SDCCsymt.h,
5690         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
5691         #838241 & 780691 (basicly the same bug)
5692         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
5693         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
5694
5695 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
5696
5697         * src/SDCCmain.c (linkEdit): "fix" #834252
5698
5699 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5700
5701         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
5702         * src/SDCCast.h,
5703         * src/SDCC.y: fixed bug #819403
5704
5705 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5706
5707         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
5708         the reentrant attribute.
5709         * src/hc08/gen.c (genPackBits): added missing stack readjustment
5710         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
5711         simulation
5712         * src/SDCCast.c (decorateType): fixed bug with storage class not being
5713         updated during pointer dereference; f.e. ~(((char *)1)*) was being
5714         erroneously reduced to a literal.
5715         * src/hc08/ralloc.c (packRegisters, rematStr),
5716         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
5717         some cases
5718
5719 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5720
5721         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
5722         * doc/sdccman.lyx: changed from 'article' to 'book'
5723         * doc/Makefile: readded test_suite_spec and cdbfileformat
5724
5725 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
5726
5727         * device/include/stdlib.h: include malloc.h to comply with ANSI
5728         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
5729
5730 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5731
5732         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
5733         * doc/clean.mk: also remove *.out files
5734         * doc/sdccman.lyx: some additions, larger top/bottom margins
5735
5736 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5737
5738         * src/SDCC.y: fixed bug #837365
5739         * support/regression/tests/bitopcse.c
5740         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
5741         a symbol (might be valop instead)
5742         * device/lib/Makefile.in: added errno.c to HC08SOURCES
5743         * device/lib/clean.mk: added hc08 to the cleaning list
5744
5745 2003-11-04  Borut Razem <borut.razem AT siol.net>
5746
5747         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
5748           made 2003-11-04
5749         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
5750           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
5751           malloc is declared in standard stdlib.h
5752
5753 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5754
5755         * device/lib/hc08/Makefile: need to clean .rel not .o files
5756         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
5757
5758 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5759
5760         * src/port.h,
5761         * src/hc08/main.c,
5762         * src/mcs51/main.c,
5763         * src/ds390/main.c,
5764         * src/z80/main.c,
5765         * src/avr/main.c,
5766         * src/pic/main.c,
5767         * src/pic16/main.c,
5768         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
5769         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
5770         tests (which uses the port's oclsExpense function)
5771         * src/SDCC.y,
5772         * src/SDCCast.c,
5773         * src/SDCCicode.c,
5774         * src/hc08/gen.c,
5775         * src/ds390/gen.c,
5776         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
5777
5778 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5779
5780         * src/SDCCcse.c (ifxOptimize),
5781         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
5782         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
5783         deleting the IFX iCode.
5784         * src/hc08/ralloc.c: reduced unneeded slocs
5785         * src/hc08/gen.c: fixed bug in asmopToBoolean
5786
5787 2003-11-04  Borut Razem <borut.razem AT siol.net>
5788
5789         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
5790           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
5791           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
5792           transferred to configure
5793
5794 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
5795
5796         Use headers defined in the C[++] standards:
5797         * sim/ucsim/gui.src/serio.src/fileio.cc
5798         * sim/ucsim/gui.src/serio.src/frontend.cc
5799         * sim/ucsim/gui.src/serio.src/main.cc
5800         * sim/ucsim/gui.src/serio.src/posix_signal.cc
5801         * support/Util/NewAlloc.c
5802         * as/hc08/lklibr.c
5803         * as/mcs51/lklibr.c
5804         * as/z80/aslist.c
5805         * as/z80/assym.c
5806
5807 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5808
5809         * Added MSVC projects for hc08 assembler and linker:
5810         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
5811         /as/hc08/link_hc08.dsp
5812
5813 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
5814
5815         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
5816
5817 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
5818
5819         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
5820
5821 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5822
5823         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
5824
5825 2003-10-31  Borut Razem <borut.razem AT siol.net>
5826
5827         * support/cpp2/cpplib.h,
5828           support/cpp2/cpplib.c,
5829           support/cpp2/cpplex.c,
5830           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
5831           to switch _asm block preprocessing on / off. Default is
5832           #pragma preproc_asm +
5833
5834 2003-10-31  Borut Razem <borut.razem AT siol.net>
5835
5836         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
5837           when outputting comment blocks (when executed with -C option) and
5838           _asm (SDCPP specific) blocks
5839
5840 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5841
5842         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
5843
5844 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
5845
5846         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
5847
5848 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
5849
5850         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
5851         * src/SDCCast.c (decorateType): fixed bug #832664
5852
5853 2003-10-31  Borut Razem <borut.razem AT siol.net>
5854
5855         * support\cpp2\cpplex.c: fixed for SDCPP:
5856           comments(when executed with -C option) and _asm blocks
5857           were included even if they where in skipped #if block.
5858           Applied solution from GCC cpp 3.3.2
5859
5860 2003-10-31  Borut Razem <borut.razem AT siol.net>
5861
5862         * src/SDCC.lex: sdcc now understands both formats:
5863           '# <line_number> <file_name>' and
5864           '#line <line_number> <file_name>'
5865         * support/cpp2/cppmain.c: sdcpp now generates the standard
5866           '# <line_number> <file_name>' instead of former
5867           '#line <line_number> <file_name>'
5868
5869 2003-10-30  Borut Razem <borut.razem AT siol.net>
5870
5871         * support/cpp2/cpphash.h,
5872         * support/cpp2/cpplib.h
5873         * support/cpp2/cpplex.c,
5874         * support/cpp2/cppmain.c,
5875         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
5876
5877 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5878
5879         Fixed a number of problems revealed by bug #827883.
5880         * src/SDCCloop.c (loopInvariants): Spill location of the
5881         result operand should be recomputed if extracted from
5882         a loop. Also, don't extract assignments of an iTemp
5883         from a literal.
5884         * src/SDCCast.c (isConformingBody): loop reversal should
5885         not occur if the control variable is involved with a
5886         relational operator.
5887
5888 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
5889
5890         * .version: bumped to 2.3.6 to reflect the big improvements
5891         made by Erik and Klaus. Thanks!
5892
5893 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
5894
5895         Replaced the livrange code.
5896         * src/SDCClrange.c: added new LR code
5897         * src/SDCCloop.c,
5898         * src/SDCCBBlock.h: removed remainig parts from old LR code
5899         * src/ds390/ralloc.c,
5900         * src/ds390/gen.c: minor fixes to make it work with new code
5901
5902 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5903
5904         * as/hc08/asm.h,
5905         * as/hc08/lkrloc.c,
5906         * src/hc08/gen.c,
5907         * src/hc08/ralloc.c: Fix various warnings related to the hc08
5908         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
5909         (tweaked fix for bug #818696)
5910
5911 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5912
5913         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
5914
5915 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5916
5917         * src/SDCCmain.c,
5918         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
5919         * src/mcs51/gen.c (gencjneshort),
5920         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
5921         more efficient (per Scott Bronson's suggestion)
5922
5923 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5924
5925         Extended the semantics of the critical keyword to include
5926         individual statements. See RFE #827755 and #799831
5927         * src/SDCC.y
5928         * src/SDCCicode.c
5929         * src/SDCCopt.c
5930         * src/SDCCast.c
5931         * support/Util/SDCCerr.c
5932         * support/Util/SDCCerr.h
5933         * src/mcs51/gen.c
5934         * src/ds390/gen.c
5935         * src/hc08/gen.c
5936
5937 2003-10-19  Borut Razem <borut.razem AT siol.net>
5938
5939         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
5940
5941 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5942
5943         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
5944         Fixed bug #818696
5945         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
5946         and predecrement operand is displayed
5947
5948 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
5949
5950         * src/SDCCval.c (valMinus): fixed bug #826041
5951
5952 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5953
5954         Some hc08 related updates that I missed earlier
5955         * sim/ucsim/stypes.h
5956         * support/regression/ports/hc08/spec.mk
5957
5958 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5959
5960         New target "hc08" for the Motorola 68hc08 family of micros
5961
5962         * configure
5963         * configure.in
5964         * Makefile
5965         * src/hc08/*
5966         * src/SDCCmain.c
5967         * src/port.h
5968         * sim/ucsim/hc08.src/*
5969         * sim/ucsim/configure.in
5970         * src/ucsim/configure
5971         * sim/ucsim/packages_in.mk
5972         * as/hc08/*
5973         * as/Makefile
5974         * device/include/mc68hc908qy.h
5975         * device/lib/hc08/*
5976         * device/lib/Makefile.in
5977         * support/regression/ports/hc08/*
5978         * support/regression/Makefile
5979
5980 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5981
5982         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
5983         regression test
5984         * src/ds390/gen.c (genCast): fixed bug #821957
5985
5986 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
5987
5988         * device/lib/logf.c: "fixed" overlay bug
5989         * support/regression/ports/host/spec.mk: added m library
5990         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
5991         * support/regression/tests/float_trans: added (for Eric)
5992
5993 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
5994
5995         * src/mcs51/gen.c (genCpl): fixed bug
5996         http://sf.net/mailarchive/message.php?msg_id=6263915
5997
5998 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
5999
6000         * src/SDCCast.c (decorateType): added extended constant folding
6001         * src/SDCCsymt.c (computeType): cleanup
6002         * src/SDCCval.c (valShift): minor optimization
6003         * support/regression/tests/ast_constant_folding.c: added
6004
6005 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6006
6007         * src/SDCCmain.c: removed some unintended changes
6008
6009 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6010
6011         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
6012         * src/z80/gen.c: fixed part of bug #817589
6013         * src/SDCCsymt.c (checkFunction): fixed bug #817895
6014
6015 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
6016
6017         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
6018         * src/SDCCcflow.c
6019         * src/SDCCcse.c
6020         * src/SDCCdflow.c
6021         * src/SDCClabel.c
6022         * src/SDCClrange.c
6023         * src/SDCCmem.c
6024         * src/SDCCopt.c
6025         * src/SDCCpeeph.c
6026         * src/SDCCset.c
6027         * src/avr/ralloc.c
6028         * src/ds390/ralloc.c
6029         * src/izt/ralloc.c
6030         * src/mcs51/ralloc.c
6031         * src/pic/ralloc.c
6032         * src/pic16/ralloc.c
6033         * src/xa51/ralloc.c
6034         * src/z80/ralloc.c
6035         * src/z80/gen.c: removed unused label "release:"
6036
6037 2003-10-06  Borut Razem <borut.razem AT siol.net>
6038
6039         * src/SDCC.lex: removed definition of unused variables
6040           save_optimize and save_options
6041
6042 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
6043
6044         * clean.mk: removed '=' in "-maxdepth=1"
6045         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
6046         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
6047
6048 2003-10-06  Borut Razem <borut.razem AT siol.net>
6049
6050         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
6051           my_unput() replaced by unput()
6052
6053 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
6054
6055         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
6056         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
6057         type-punned pointer will break strict-aliasing rules"
6058         Old LR behaviour is again default; Klaus' LR can be choosen by
6059         defining the environment variable LRKLAUS
6060         * src/SDCCBBlock.h
6061         * src/SDCCloop.c
6062         * src/SDCClrange.c
6063         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
6064         * clean.mk: fixed removal of files in bin/CVS/
6065         * device/lib/clean.mk: fixed removal of directories small and large
6066         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
6067         * src/SDCCicode.c,
6068         * src/SDCCval.c: removed superflous test for pedantic
6069
6070 2003-10-05  Borut Razem <borut.razem AT siol.net>
6071
6072         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
6073           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
6074           message "unmatched #pragma SAVE and #pragma RESTORE"
6075
6076 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6077
6078         * doc/sdccman.lyx: various additions and updates (interrupts, inline
6079           assembly, critical functions, atomic, nojtbound)
6080
6081 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
6082
6083         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
6084         * src/SDCCBBlock.h
6085         * src/SDCCloop.c
6086         * src/SDCCloop.h
6087         * src/SDCClrange.c
6088
6089 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6090
6091         * src/z80/gen.h,
6092         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6093         * src/mcs51/gen.h
6094         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6095         * src/ds390/gen.h
6096         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6097         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
6098         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
6099
6100 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6101
6102         * src/z80/gen.c (genRet): fixed bug #524753
6103         * src/z80/gen.c (genCast): fixed internal error on cast from
6104         pointer to long
6105         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
6106         fix for bug #477835 to the z80
6107         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
6108         for tracking iCodes in the peephole optimizer for z80
6109
6110 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6111
6112         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
6113         the other part of bug #814548
6114         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
6115
6116 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
6117
6118         * src/SDCCcse.c: fixed part of bug #814548
6119
6120 2003-09-28  Borut Razem <borut.razem AT siol.net>
6121
6122         * src/asm.c: rewrite of printILine() to use temporary file instead
6123           a pipe
6124         * src/xa51/main.c: commented out declaration of int rewinds
6125
6126 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6127
6128         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
6129
6130 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6131
6132         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
6133         * src/asm.c (printILine): Fixed bug #811015
6134
6135 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6136
6137         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
6138         freeing.
6139
6140 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6141
6142         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
6143         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
6144         to correctly handle general case of AOP_PAIRPTR
6145         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
6146
6147 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6148
6149         * src/mcs51/ralloc.c (fillGaps),
6150         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
6151         register positioning bug)
6152
6153 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
6154
6155         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
6156
6157 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6158
6159         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
6160         genCodePointerGet, genGenPointerGet, genFarPointerSet,
6161         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
6162         (ralloc doesn't intentionally do this now, but perhaps later)
6163         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
6164         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
6165         register positioning bugs (Fixed bug #762602 and #795325)
6166         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
6167         (Fixed bug #808779)
6168         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
6169         lines that --i-code-in-asm generates
6170
6171 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6172
6173         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
6174         trying to fclose a FILE* that was already closed.
6175
6176 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6177
6178         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
6179         of const struct should be treated as if const themselves)
6180
6181 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
6182
6183         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
6184
6185 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6186
6187         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
6188         Unix (/n) and DOS (/r/n) line terminations.
6189
6190 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6191
6192         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
6193         bug #613775
6194
6195 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6196
6197         * src/mcs51/gen.c (genFunction, genEndFunction),
6198         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
6199         and restore of EA so that stack offsets to parameters are
6200         correct when using both critical and reentrant/stack-auto.
6201         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
6202         size (can be triggered in error if sloc is shared between
6203         different sized objects)
6204         * device/include/float.h: fixed macros to explicitly use
6205         unsigned long where needed
6206
6207 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
6208
6209         Feature req. 799831: added code to allow nesting of critical functions
6210         * src/mcs51/gen.c (genFunction, genEndFunction)
6211         * src/ds390/gen.c (genFunction, genEndFunction)
6212
6213 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6214
6215         * src/SDCCsymt.c (sclsFromPtr),
6216         * src/SDCCsymt.h,
6217         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
6218         support for standard C idiom of memory mapped variables; for
6219         example, *((xdata int*)0x1234) = 1 is now internally equivalent
6220         to xdata int at 0x1234 tempvar = 1.
6221         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
6222         provided by Akiya ISHIDA
6223
6224 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
6225
6226         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
6227         * src/SDCCval.c (constVal): added reduction from int to char
6228         * src/SDCCval.c (valMult, valDiv): fixed sign handling
6229         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
6230         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
6231         to ignore the sign
6232         * support/regression/tests/shifts.c: fixed
6233
6234 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6235
6236         * src/z80/gen.c (genXor): Fixed bug #805445
6237
6238 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6239
6240         Fixed bug #621531 (const & volatile confusion in the type chain).
6241         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
6242         refer to the const or volatile state of the pointer itself.
6243
6244         * src/SDCCast.c
6245         * src/SDCCglue.c
6246         * src/SDCCicode.c
6247         * src/SDCCsymt.c
6248         * src/SDCCval.c
6249         * src/SDCC.y
6250         * src/SDCCsymt.h
6251         * src/pic/gen.c
6252         * src/pic/ralloc.c
6253         * src/pic16/gen.c
6254         * src/pic16/ralloc.c
6255         * support/regression/tests/const.c
6256
6257 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6258
6259         When checking for duplicated modules, use absolute paths
6260         instead of relative paths.  Files changed:
6261
6262         * as/mcs51/lklib.c
6263         * link/z80/lklib.c
6264
6265 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6266
6267         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
6268
6269 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6270
6271         * device/include/string.h: added size_t typedef, changed
6272         prototypes to use size_t, eliminated separate reentrant and
6273         non-reentrant declarations, added _memmove declaration
6274         * device/lib/_memcpy.c: changed to use size_t instead of int,
6275         changed /4 to >>2 to avoid division library call
6276         * device/lib/_memcmp.c,
6277         * device/lib/_memset.c,
6278         * device/lib/_strncat.c,
6279         * device/lib/_strncpy.c,
6280         * device/lib/_strncmp.c: changed to use size_t instead of int
6281         * device/lib/_memmove.c: new file (fixed bug #772294)
6282         * device/lib/Makefile.in: added _memmove.c
6283         * device/lib/z80/asm_strings.s: fixed bug #772290
6284         * support/regression/tests/bitfields.c: attempt to fix host assertion
6285         failure on amd64-unknown-linux2.2
6286
6287 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6288
6289         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
6290         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
6291         * as/z80/asmain.c (main): fixed bug #801766
6292
6293 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
6294
6295         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
6296         compilers
6297
6298 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6299
6300         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
6301         reported in bug #800609
6302
6303 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
6304
6305         * Top header beautifications in src/pic16 directory:
6306           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
6307           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
6308           pcoderegs.h, ralloc.c, ralloc.h
6309         * main.c: added top header and GPL license notice
6310         * pcode.c: fixed the if-conditional warning
6311
6312 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
6313
6314         * device/lib/_mullong.c: replaced int by short for gcc
6315
6316 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6317
6318         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
6319         and JUMPTABLE iCodes properly now (worked by accident before)
6320         * src/mcs51/gen.c (leftRightUseAcc),
6321         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
6322         iCode properly now. Use getSize instead of nRegs since a & b
6323         aren't part of the nRegs tally.
6324
6325 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
6326
6327         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
6328         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
6329           before instructions that use the _STATUS register
6330
6331 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
6332
6333         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
6334         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
6335         fetching of the pointer
6336         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
6337         copied from genNearPointerSet()
6338         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
6339         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
6340         If they pop r0/r1 they must be called in the opposite order than aopOp().
6341         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
6342         (resp. --stack-auto), prepared for --xstack
6343
6344 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6345
6346         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
6347
6348 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
6349
6350         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
6351         these ports have their own __sdcc_external_start()
6352
6353 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
6354
6355         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6356         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
6357         type for bits was changed. It resulted in bit variables becoming
6358         global, which is not permitted in PIC 14 assembly output.
6359
6360 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6361
6362         * doc/sdccman.lyx: various additions and updates. Rearranged sections
6363
6364 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6365
6366         Z80 and MCS51 linkers complaint if a public symbol is defined
6367         in more than one library module:
6368
6369         * as/mcs51/lklib.c
6370         * link/z80/lklib.c
6371         * as/mcs51/Makefile.in
6372
6373 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6374
6375         A few small changes that speed up the peephole optimizer.
6376
6377         * src/SDCCpeeph.c
6378
6379 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6380
6381         Try to make the peephole optimizer smarter by maintaining
6382         an association between the assembly source code and the
6383         iCodes that originated them. Put this information to use
6384         with a new peephole rule condition "notVolatile" so that
6385         the rules can be aggressive yet still safe.
6386
6387         * src/SDCCpeeph.c
6388         * src/SDCCpeeph.h
6389         * src/mcs51/gen.c
6390         * src/mcs51/peeph.def
6391
6392 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6393
6394         Fixed bug #741761
6395
6396         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
6397         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
6398         if the left or right operand symbols have the accuse flag set.
6399
6400 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6401
6402         Changed the type of the result of the ! (NOT) operator to char;
6403         previously it returned the same type as the source. This allows
6404         us to eliminate all the genFloatNot functions (all of its target
6405         implementations were very buggy) since !float can use the same
6406         code as !long now.
6407
6408         * src/SDCCicode.c (ast2iCode): ! returns char
6409         * src/mcs51/gen.c (genNot, genNotFloat),
6410         * src/ds390/gen.c (genNot, genNotFloat),
6411         * src/z80/gen.c (genNot, genNotFloat),
6412         * src/pic/gen.c (genNot, genNotFloat),
6413         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
6414
6415 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
6416
6417         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6418         1. Interrupt would not compile properly. Ensure PCLATH register is saved
6419            during interrupts. Ensure WSAVE is located at a shared bank address.
6420         2. Fixed page selection in some places
6421         3. Fixed BTFSS/C to where necessary use registers directly and not simply
6422            the registers name strings.
6423         4. Fixed "signed / unsigned compare" compiler warnings.
6424         5. The PIC port manages its own allocation of the general purpose
6425            registers, but makes no attempt to reuse them. As a result when
6426            compiling it soon runs out of general purpose registers. Some
6427            additional code was added to the files pcode.c and device.c to walk
6428            through the function call tree and rename the registers so that they
6429            get reused.
6430
6431         * src/pic/device.c
6432         * src/pic/gen.c
6433         * src/pic/glue.c
6434         * src/pic/pcode.c
6435         * src/pic/pcode.h
6436         * src/pic/ralloc.c
6437         * src/pic/ralloc.h
6438         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
6439         genPlus() & genMinus() when the result is the same as left or right
6440
6441 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6442
6443         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
6444
6445 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6446
6447         Made bitfield a distinct type from bit so that bitfields
6448         convert as per ANSI C and bits retain their traditional
6449         boolean style behaviour. Implemented bitfield support in
6450         the z80 port.
6451
6452         * src/SDCCsymt.h,
6453         * src/SDCCsymt.c,
6454         * src/SDCCast.c,
6455         * src/cdbFile.c,
6456         * src/mcs51/gen.c,
6457         * src/ds390/gen.c: bit v bitfield split
6458         * src/z80/gen.c: New support for bitfields
6459         * support/regression/tests/bitfields.c: reenabled z80,
6460         added more tests
6461
6462 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6463
6464         Rules 246.x, 247.x relate to bitfields, the others speed up
6465         access to xdata mapped I/O devices.
6466
6467         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
6468
6469 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6470
6471         Cleaned up genPackBits and genUnpackBits and added two helper
6472         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
6473         for literal assignments in genPackBits (thanks to Frieder for
6474         reminding me).
6475
6476         * src/mcs51/gen.c
6477         * src/ds390/gen.c
6478
6479 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6480
6481         Fixed bug #748310 (pointer to function type mishandled when the
6482         function name is omitted). Also fixed a SIGSEGV when a function
6483         attribute (reentrant, etc) is used on a non-function or on a
6484         function but misplaced before the parameter list.
6485
6486         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
6487         bug #748310
6488         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
6489         * support/Util/SDCCerr.h,
6490         * support/Util/SDCCerr.c: Added func attr misuse error msg
6491
6492 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
6493
6494         Fixed bug #787649 by anonymous
6495         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
6496         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
6497
6498 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6499
6500         Fixed numerous bitfield problems.
6501
6502         * src/SDCC.y: More bitfield related error checking
6503         * src/SDCCsymt.h,
6504         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
6505         * support/Util/SDCCerr.h,
6506         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
6507         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
6508         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
6509         * support/regression/tests/bitfields.c: tests added
6510
6511 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6512
6513         Made the constant following the "interrupt" keyword optional. If
6514         omitted, the function will not automatically be given an entry
6515         in the interrupt vector table (similar to #pragma NOIV, but
6516         less syntacticly kludgy). The interrupt number is also now
6517         range checked. Also fixed a bug in the high order bit example
6518         in the manual.
6519
6520         * src/SDCC.y
6521         * src/SDCCmem.c
6522         * src/SDCCglue.c
6523         * src/SDCCsymt.h
6524         * support/Util/SDCCerr.c
6525         * support/Util/SDCCerr.h
6526         * doc/sdccman.lyx
6527
6528 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
6529
6530         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
6531         * src/SDCCicode.c (operandOperation): rewritten some ops
6532         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
6533         * src/SDCCsymt.c (computeType): literals are handled the same way as any
6534         other type
6535         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
6536         be re-activated by defining REDUCE_LITERALS)
6537         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
6538         unsigned, but are signed by default
6539         * src/SDCCval.c (constVal): rearranged
6540         * src/SDCCval.c (valMod): preliminary fix
6541         * src/SDCCval.c (valCastLiteral): use TYPE_* types
6542         * support/regression/literalop.c: added, work in progress
6543
6544 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6545
6546         Generate warnings for useless declarations like "char data;"
6547         that don't do what new users expect.
6548
6549         * src/SDCC.y
6550         * support/Util/SDCCerr.h
6551         * support/Util/SDCCerr.c
6552
6553 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
6554
6555         * src/SDCCval.c (valMult): fix overflow detection of negative int
6556
6557 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6558
6559         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
6560
6561         Changes to support big endian targets:
6562
6563         * src/ports.h
6564         * src/SDCCglue.c
6565         * src/avr/main.c
6566         * src/ds390/main.c
6567         * src/izt/i186.c
6568         * src/mcs51/main.c
6569         * src/pic/main.c
6570         * src/pic16/main.c
6571         * src/xa51/main.c
6572         * src/z80/main.c
6573
6574 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
6575
6576         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
6577         * device/lib/time.c: fixed warning "integer overflow in expression"
6578
6579 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
6580
6581         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
6582         * src/SDCCval.c (constVal): changed default to signed; hex and octal
6583         constants are unsigned; added recognition of "u" flag for unsigned
6584         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
6585         * src/SDCCval.c (valDiv, valMod): fixed signdness
6586         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
6587         signedness of modulo, left and right shift
6588         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
6589         * support/Util/SDCCerr.h: added warning W_INT_OVL
6590         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
6591         * src/SDCCast.c (ast_print): improved output of constants
6592
6593 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6594
6595         Fixed some warnings when building with MSVC:
6596
6597         * as\mcs51\asdata.c
6598         * as\z80\asdata.c
6599         * as\mcs51\asm.h
6600         * as\z80\asm.h
6601         * link\z80\aslink.h
6602         * link\z80\lkdata.c
6603         * link\z80\lkeval.c
6604         * link\z80\lkgb.c
6605         * link\z80\lkihx.c
6606         * link\z80\lks19.c
6607         * link\z80\lksym.c
6608         * support\cpp2\cpplib.c
6609         * src\ds390\gen.c
6610         * src\mcs51\gen.c
6611
6612 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
6613
6614         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
6615
6616 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6617
6618         * support\librarian\clean.mk: Do not remove Makefile.
6619         * support\librarian\Makefile: added.
6620
6621 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6622
6623         Added librarian to MSVC build:
6624         * all.dsp
6625         * sdcc.dsw
6626         * support\librarian\librarian.dsp
6627
6628         'configure' not needed for librarian, removed:
6629         * support\librarian\configure
6630         * support\librarian\configure.in
6631         * support\librarian\config_in.h
6632         * support\librarian\Makefile.in
6633
6634         Hopefully these ones built the librarian and the rest of sdcc properly:
6635         * Makefile
6636         * Makefile.common.in
6637
6638         Messed up 'configure', so revert to previous version:
6639         * configure
6640         * configure.in
6641
6642 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
6643
6644         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
6645         there, while the mantissa of a double is "only" 53 bits wide.
6646
6647 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6648
6649         Adding sdcclib to the build.  MSVC project coming soon.
6650         Files added/changed:
6651
6652         * support\librarian\clean.mk
6653         * support\librarian\configure
6654         * support\librarian\configure.in
6655         * support\librarian\config_in.h
6656         * support\librarian\Makefile.bcc
6657         * support\librarian\Makefile.in
6658         * support\librarian\sdcclib.c
6659         * Makefile.bcc
6660         * Makefile
6661         * Makefile.common.in
6662         * configure
6663         * configure.in
6664
6665 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6666
6667         Linker now complaints if linked modules have conflicting options, for
6668         example, one compiled using --model-large and another one compiled with
6669         --model-small.  The following files were modified:
6670
6671         * as\mcs51\asdata.c
6672         * as\mcs51\aslink.h
6673         * as\mcs51\asm.h
6674         * as\mcs51\asmain.c
6675         * as\mcs51\asout.c
6676         * as\mcs51\i51pst.c
6677         * as\mcs51\lkdata.c
6678         * as\mcs51\lklibr.c
6679         * as\mcs51\lkmain.c
6680         * as\z80\asdata.c
6681         * as\z80\asm.h
6682         * as\z80\asmain.c
6683         * as\z80\asout.c
6684         * as\z80\z80pst.c
6685         * link\z80\aslink.h
6686         * link\z80\lkdata.c
6687         * link\z80\lklibr.c
6688         * link\z80\lkmain.c
6689         * src\SDCCglue.c
6690
6691 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6692
6693         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
6694         as/mcs51/lklibr.c: Generate a warning when a library is not found.
6695
6696 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
6697
6698         * src/z80/mappings.i: fix _mul[us][int,long] entries
6699
6700 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6701
6702         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
6703
6704 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
6705
6706         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
6707         * support/regression/tests/bitopcse.c: added
6708         fixed warning:
6709         * src/avr/gen.c:
6710         * src/pic/gen.c:
6711         * src/pic16/gen.c:
6712         * src/z80/gen.c:
6713         * src/xa51/gen.c:
6714
6715 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6716
6717         added support for new library format to z80, gbz80 linkers:
6718         *link/z80/aslink.h
6719         *link/z80/lklex.c
6720         *link/z80/lklib.c
6721         *link/z80/lklist.c
6722
6723 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
6724
6725         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
6726         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
6727
6728 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
6729
6730         added DUMMY_READ_VOLATILE:
6731         * src/SDCC.y:
6732         * src/avr/gen.c:
6733         * src/xa51/gen.c:
6734         * src/z80/gen.c:
6735         * src/pic/gen.c:
6736         * src/pic16/gen.c:
6737         * src/mcs51/gen.c:
6738         * src/ds390/gen.c:
6739         * src/SDCCcse.c (algebraicOpts): many improvements
6740         * src/SDCCcse.h: removed algebraicOpts()
6741         * src/SDCCicode.c (picDummyRead): added
6742
6743 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6744
6745         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
6746         "Insufficient space in data memory".
6747
6748 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6749
6750         * src/mcs51/gen.c: fixed bug #771358
6751         * src/z80/gen.c: fixed bug #759087
6752
6753 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
6754
6755         * src/pic16/glue.c: minor cleanup by Vangelis
6756
6757 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6758
6759         * device/include/regc515c.h: fixed #758477
6760         * device/lib/_gptrget.c: saving some cycles in generic pointer get
6761         * device/lib/_gptrput.c: saved a few bytes
6762         * my tab spacing is 8, yours too?)
6763         * device/lib/_ser.c: process RX bytes earlier than TX bytes
6764         * device/lib/serial.c: process RX bytes earlier than TX bytes
6765         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
6766
6767 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6768
6769         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
6770
6771 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6772
6773     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
6774
6775 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
6776
6777         * device/lib/Makefile.in: bad fix, reverted to 1.43
6778
6779 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
6780
6781         * device/lib/Makefile.in: added missing z80 object files
6782
6783 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
6784
6785         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
6786         pic16 progress by Vangelis:
6787         * src/SDCCglobl.h:
6788         * src/SDCCmain.c:
6789         * src/pic/Makefile:
6790         * src/pic:
6791         * pic/Makefile:
6792         * pic16/device.c:
6793         * pic16/device.h:
6794         * pic16/gen.c:
6795         * pic16/gen.h:
6796         * pic16/genarith.c:
6797         * pic16/glue.c:
6798         * pic16/main.c:
6799         * pic16/pcode.c:
6800         * pic16/pcode.h:
6801         * pic16/pcodepeep.c:
6802         * pic16/peeph.def:
6803
6804 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6805
6806     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
6807
6808 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6809
6810     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
6811     added gbz80 build to MSVC project.
6812     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
6813     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
6814     from 8051 stuff and setup so it links using a .lnk file.
6815
6816 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6817
6818     * support/librarian/sdcclib.c: sdcc librarian.
6819     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
6820     with sdcclib.
6821
6822 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6823
6824     * as/mcs51/lkmain.c: properly handle extensions in function afile.
6825
6826 2003-07-02  Borut Razem <borut.razem AT siol.net>
6827
6828         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
6829         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
6830         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
6831         src/xa51/main.c, src/z80/main.c:
6832         virtualization of glue() function: each port has it's own glue function,
6833         which is accessed by do_glue function pointer in PORT.general structure
6834
6835 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
6836
6837         * DS800C400 fun, improved ROM interface and tinibios.
6838
6839 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
6840
6841         * More support for DS80C400. Now includes beginning of interface to ROM.
6842
6843 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
6844
6845         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
6846
6847 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6848
6849         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
6850
6851 2003-06-19  Borut Razem <borut.razem AT siol.net>
6852
6853         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
6854
6855 2003-06-19  Borut Razem <borut.razem AT siol.net>
6856
6857         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
6858         fixed Z80 port - crt0.o: cannot open.
6859
6860 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
6861
6862         * support/Util/MySystem.c (merge_command): revert bad fix
6863
6864 2003-06-18  Borut Razem <borut.razem AT siol.net>
6865
6866         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
6867
6868 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6869
6870         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
6871         option --use-stdout sends errors to stdout instead of stderr.
6872
6873 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
6874
6875         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
6876
6877 2003-06-15  Borut Razem <borut.razem AT siol.net>
6878
6879         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
6880         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
6881         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
6882         fixed width array of pointers replaced with sets;
6883         multiple include and lib paths ared transferred to preprocessor and linker
6884         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
6885         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
6886         fixed width array of pointers
6887         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
6888         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
6889         fixupPath(), getPathDifference()
6890         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
6891         fixed width array of pointers
6892
6893 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
6894
6895         * src/pic16/ralloc.c: fix warnings
6896         * src/pic16/pcode.c: fix warning
6897
6898 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
6899
6900          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
6901         know all the details, but essentially this set of changes enable
6902         the pic16 port to generate movff instructions and generate assembler
6903         directives,
6904         * src/SDCCmain.c:
6905         * src/pic16/gen.c:
6906         * src/pic16/glue.c:
6907         * src/pic16/pcode.c:
6908         * src/pic16/device.c:
6909         * src/pic16/main.c:
6910         * src/pic16/pcode.h:
6911         * src/pic16/pcoderegs.c:
6912         * src/pic16/ralloc.c:
6913         * src/pic16/ralloc.h:
6914
6915 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6916
6917         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
6918         added option --vc, so sdcc errors and warnings are compatible with
6919         Microsoft Visual Studio.
6920
6921 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6922
6923         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
6924           device/lib/libfloat.lib: added atof function.
6925
6926 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
6927
6928         * doc/sdccman.lyx: updated to Lyx 1.3
6929         * doc/cdbfileformat.lyx: updated to Lyx 1.3
6930         * doc/test_suite_spec.lyx: updated to Lyx 1.3
6931         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
6932
6933 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
6934
6935         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
6936
6937 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6938
6939         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
6940           additions to the "related tools/documentation" section
6941
6942 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
6943
6944         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
6945
6946 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
6947
6948         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
6949         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
6950
6951 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
6952
6953         * doc/sdccman.lyx: fix double dash and other minor things
6954         * doc/Makefile: fix double dash
6955
6956 2003-05-28  Karl Bongers(patches from Martin Helmling)
6957         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
6958           condition and ignore commands.
6959
6960 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6961
6962         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
6963           is in parts still quite out of date, I did changes as far as I felt makes sense
6964           for a non-native english speaker.
6965           Please feel free to add to the manual or to correct my changes.
6966         * doc/Makefile: undid touching the date of intermediate tex files.
6967
6968 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6969
6970         * doc/sdccman.lyx: Manual has an index now
6971
6972 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
6973
6974         Finalize muluint/mulsint and mululong/mulslong merging:
6975         * device/lib/_mulint.c
6976         * device/lib/_mullong.c
6977         * device/lib/gbz80/mul.s
6978         * device/lib/gbz80/stubs.s
6979         * device/lib/z80/mul.s
6980         * device/lib/z80/stubs.s
6981         * src/SDCCsymt.c (initCSupport)
6982
6983 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6984
6985         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
6986         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
6987           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
6988           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
6989           instead of /Zm500.
6990
6991 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6992
6993         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
6994           the regression tests I'm not brave enough to enable 245.b, 245.c
6995         * doc/sdccman.lyx: added latex preamble for hyperref package.
6996           Using pdflatex this will give you a hyperlinked pdf file with
6997           bookmarks. (prepend '%' before /usepackage if this breaks something)
6998
6999 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7000
7001          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
7002
7003 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
7004
7005         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
7006
7007 2003-05-21    <johan AT balder>
7008
7009         * src/SDCCglue.c (printIval): fixed bug #739934
7010
7011 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7012
7013         Applied patch from bug 737905 (renamed yylineo to mylineno):
7014         * src/altlex.c
7015         * src/SDCCast.c
7016         * src/SDCglobl.h
7017         * src/SDCC.lex
7018         * src/SDCCsymt.c
7019         * src/SDCCval.c
7020         * src/pic16/pcode.c: Cleaned warnings
7021         * src/pic16/pcodeflow.c: Cleaned warnings
7022         * src/pic16/pcoderegs.c: Cleaned warnings
7023
7024 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
7025
7026         * src/pic16/pcode.c: Cleaned warnings
7027         * src/pic16/pcodepeep.c: Cleaned warnings
7028         * src/pic16/ralloc.c: Cleaned warnings
7029
7030 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7031
7032         * doc/sdccman.lyx: fixed bug 739745
7033         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
7034
7035 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
7036
7037         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
7038         it can be defined with CFLAGS when running configure
7039         * src/SDCCmain.c: fixed compiling + linking with object files
7040
7041 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
7042
7043         * configure.in: configure for pic16 port,
7044             added --disable-pic16-port
7045         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
7046         * src/SDCCmain.c: linkOptions is changed to set *,
7047             added if/endif conditional macros to remove options help
7048             messages from optionsTable when a port is not configured, added
7049             support for the PIc16 port in the ports table, when executing
7050             the compiler with no port specified on command line, a default
7051             port is selected with the new macro DEFAULT_PORT which is
7052             defined in port.h, in setDefaultOptions() linkOptions is removed
7053             from initialization assignment, since now it is a set,
7054             parseCmdLine uses setParseWithComma for linkOptions, in
7055             linkEdit() linkOptions are accessed with new function indexSet()
7056             which returns the i'th item of a set variable. See SDCCset.c, in
7057             linkEdit() when calling buildCmdLine(), added linkOptions as
7058             last argument. Now users can pass arguments to gplink via the
7059             -Wl option, main() uses pic16glue() to glue up pic16 programs
7060         * src/SDCCpeeph.c: various changes to support pic16
7061         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
7062             return the i'th item of the set
7063         * src/SDCCset.h: added function prototype for indexSet()
7064         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
7065         * src/clean.mk: added pic16 in CLEANALLPORTS variable
7066         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
7067             added macro DEFAULT_PORT
7068         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
7069         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
7070             generated
7071         * src/pic16/glue.c: commented out some error producing lines
7072         * src/pic16/main.c: __config directives are commented out to stop
7073             gpasm complaining and test the linkage with gplink, _linkCmd and
7074             _asmCmd changed to be more gplink and gpasm friendly
7075         * src/pic16/peeph.def: peep rule 3 is commented out, since it
7076             produced an error when parsed, peep rule 12 is added to utilize
7077             movff, but it is commented out since the pCode does not support
7078             yet a command with 2 address arguments
7079
7080 2003-05-18    <johan AT balder>
7081
7082         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7083         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7084 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
7085
7086         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
7087   Added feature to script commands from file.
7088
7089 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
7090
7091         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
7092         * src/SDCCutil.c: include ctype.h for win32
7093
7094 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
7095
7096         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
7097
7098 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
7099
7100         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
7101   Fixed so you can set breakpoints prior to run, run does not stop
7102   on entry now.  Add tbreak.  Other enhancements and fixes for use
7103   with ddd.
7104
7105 2003-05-12  Borut Razem <borut.razem AT siol.net>
7106
7107         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
7108
7109 2003-05-11  Borut Razem <borut.razem AT siol.net>
7110
7111         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
7112         the path of bin directory, so that PATH is the only env. variable, which has to be set
7113         in case of standard installation.
7114         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
7115         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
7116         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
7117
7118 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7119
7120         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
7121         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
7122         temp files are in the port dir; clean the gen/test directory when
7123         generating new test.c
7124         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
7125         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
7126         * support/regression/tests/zeropad.c: added
7127
7128 2003-05-09    <johan AT balder>
7129
7130         * src/SDCCglue.c: fixed bug #597940
7131
7132 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
7133
7134         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7135   cache sfr, optimize next,step, fix off by one sourceline,
7136   support ddd list function.
7137         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
7138
7139 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7140
7141         * support/regression/HTMLgen.py: added compare_s2f()
7142         * support/regression/Makefile: redo 1.27
7143         * support/regression/generate-cases.py: redo 1.5
7144
7145 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
7146
7147         * support/regression/tests/float.c: workaround 33 bit hex constant
7148         * support/regression/tests/simplefloat.c: fix division for host
7149
7150 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
7151
7152         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
7153         that tame's the PIC's over-aggressive optimizer.
7154
7155 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7156
7157          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
7158          support for MSVC.
7159
7160 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
7161
7162         Initial support for DS80C400. "Hello world" runs on TINIm400
7163         (with polled I/O).
7164
7165 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
7166
7167          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7168          * Some notes on ddd usage added in debugger/README
7169          Martin Helmling adding more features and fixes for ddd GUI debugger.
7170          Code added for nexti, stepi, up, down, and other adjustments.
7171
7172 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
7173
7174         * src/pic/pCodepeep.c non-wildcard asmops are now handled
7175         * src/pic/peeph.def Added two rules to optimize carry manipulation
7176         * src/pic/* removed debug printfs
7177
7178 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
7179
7180         * debugger/mcs51/cmd.c: added header newalloc.h
7181
7182 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
7183
7184         * as/Makefile: new EXEEXT
7185         * as/z80/Makefile: remove trailing slash of BUILDIR
7186         * as/z80/clean.mk: new EXEEXT
7187         * Makefile.common.in: add to CFLAGS (and others), don't replace it
7188         * support/cpp2/Makefile.in: new EXEEXT
7189         * src/pic/glue.c (pic14emitRegularMap): fixed warning
7190
7191 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
7192
7193         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
7194         EXEEXT was introduced to fix all related problems with targets
7195         "clean", "install" and "uninstall"; a couple of further flaws
7196         especially with "clean" have been fixed too
7197         * as/mcs51/Makefile.in
7198         * as/mcs51/clean.mk
7199         * as/z80/Makefile
7200         * Makefile
7201         * clean.mk
7202         * debugger/mcs51/Makefile.in
7203         * debugger/mcs51/clean.mk
7204         * link/z80/Makefile
7205         * link/z80/Makefile.in
7206         * link/z80/clean.mk
7207         * link/Makefile
7208         * packihx/Makefile.in
7209         * packihx/clean.mk
7210         * sim/ucsim/Makefile
7211         * sim/ucsim/clean.mk
7212         * sim/ucsim/avr.src/Makefile.in
7213         * sim/ucsim/avr.src/clean.mk
7214         * sim/ucsim/s51.src/Makefile.in
7215         * sim/ucsim/s51.src/clean.mk
7216         * sim/ucsim/xa.src/Makefile.in
7217         * sim/ucsim/xa.src/clean.mk
7218         * sim/ucsim/z80.src/Makefile.in
7219         * sim/ucsim/z80.src/clean.mk
7220         * sim/ucsim/main_in.mk
7221         * sim/ucsim/packages_in.mk
7222         * sim/ucsim/gui.src/Makefile.in
7223         * sim/ucsim/gui.src/serio.src/Makefile.in
7224         * sim/ucsim/gui.src/serio.src/clean.mk
7225         * src/Makefile.in
7226         * src/clean.mk
7227         * support/cpp2/Makefile.in
7228         * support/cpp2/clean.mk
7229         * support/makebin/Makefile
7230         * support/makebin/clean.mk
7231         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
7232         * doc/sdccman.lyx: --program-suffix no longer needed
7233
7234 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
7235
7236          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
7237          Martin Helmling added support for ddd GUI debugger.
7238          Code added to display assembly, set variables, and other commands
7239          to interface to ddd.
7240
7241 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
7242
7243         * as/Makefile: fix target clean
7244         * as/clean.mk: fix target clean
7245         * as/z80/clean.mk: fix target clean
7246
7247 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
7248
7249         * Makefile.common.in: added  AT EXEEXT AT
7250         * configure.in: removed all mingw32 stuff
7251         * configure: rebuilt from configure.in
7252         * doc/sdccman.lyx: updated section "installation"
7253         * support/scripts/sdcc_mingw32: adapted to configure
7254         * support/scripts/sdcc_cygwin_mingw32: added
7255
7256 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
7257
7258         * src/pic Added object file support for the PIC port
7259         * src/pic Applied patch from Craig Franklin (this started the object file support)
7260         * src/regression Updated the PIC regression tests for object files
7261
7262 2003-04-20  Borut Razem <borut.razem AT siol.net>
7263
7264         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
7265           lklex.c: In function `getfid':
7266           lklex.c:203: warning: array subscript has type `char'
7267         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
7268           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
7269         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
7270           stack handling macros
7271
7272 2003-04-19  Borut Razem <borut.razem AT siol.net>
7273
7274         * "handling space characters in file path" task:
7275         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
7276         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
7277         * support/Util/MySystem.h: make it self-sufficient
7278         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
7279           src/z80/main.c, sdcc/as/mcs51/lklex.c:
7280           handling space characters in file path
7281         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
7282           (it will be used by assemblers, which have their own includes, e.g. gpasm)
7283         * support/Util/MySystem.c: handling space characters in executable's path
7284
7285 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
7286
7287         * as/z80/Makefile: fix permanent rebuild of z80
7288         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
7289         * support/regression/tests/bitfields.c: added Johan's bitfields.c
7290
7291 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
7292
7293         * src/SDCCopt.c: add special case optimization to replace modulo by
7294           a power of two with a bitwise AND.
7295
7296 2003-04-18    <johan AT balder>
7297
7298         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
7299
7300 2003-04-17    <johan AT balder>
7301
7302         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
7303         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
7304
7305 2003-04-13  Borut Razem <borut.razem AT siol.net>
7306
7307         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
7308         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
7309           fixed mingw problem in adl_NORMALIZE_PATH
7310
7311 2003-04-12  Borut Razem <borut.razem AT siol.net>
7312
7313         * fixed "#pragma SAVE/RESTORE can not be nested":
7314         * src/SDCC.lex: reworked pragma handling functions
7315         * sdcc/src/SDCCglobl.h: reworked stack handling macros
7316         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
7317
7318 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7319
7320         * src/SDCCutil.c (pathEquivalent): defined but not used
7321         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
7322         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
7323         * configure: rebuilt from configure.in
7324         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7325         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7326         * device/include/Makefile.in: replace sdcc_datadir
7327         * device/lib/Makefile.in: replace sdcc_datadir
7328         * Makefile.common.in: add LDFLAGS from configure
7329         * packihx/Makefile.in: use LDFLAGS
7330         * src/Makefile.in: use LDFLAGS
7331         * support/cpp2/Makefile.in: add LDFLAGS from configure
7332         * support/makebin/Makefile: use LDFLAGS
7333         * .version: bumped version number to 2.3.5
7334
7335 2003-04-12  Borut Razem <borut.razem AT siol.net>
7336
7337         * completed "different paths" task:
7338         * src/SDCCmacro.c: fixed bug in handling quotes
7339         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
7340         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
7341
7342 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7343
7344         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
7345
7346 2003-04-11 kevin Vigor <kevin AT vigor.nu>
7347
7348         * ds390/gen.c ds390/peeph.def: fix bug 706781
7349
7350 2003-04-11  Borut Razem <borut.razem AT siol.net>
7351
7352         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
7353
7354 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
7355
7356         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
7357         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
7358          set - this bit used to not be set...).
7359         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
7360           bad code in PIC Port
7361         * src/regression/and2.c added to test bug 609268
7362         * src/regression/Makefile added and2.c to regression test
7363
7364
7365 2003-04-08    <johan AT CP255758-A>
7366
7367         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
7368         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
7369         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
7370
7371 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
7372
7373         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
7374         fix bug #487815
7375         * support/cpp2/Makefile.in: fix bug #487815
7376         * configure: rebuilt from configure.in
7377         * Makefile.common.in: docdir changed, new path suffixes
7378         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7379         * sdcc_vc_in.h: reflect changes from sdccconf.h
7380         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
7381         * src/SDCCutil.h: remove BINDIR hack
7382         * doc/sdccman.lyx: update new path hierarchy
7383
7384 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7385
7386         * src/SDCCpeeph.c: added okToRemoveSLOC test
7387
7388 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7389
7390         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
7391
7392 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7393
7394         * src/SDCCpeeph.c: added labelIsReturnOnly test
7395         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
7396
7397 2003-04-05    <johan AT balder>
7398
7399         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
7400         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
7401         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
7402         * src/SDCCast.c: fixed a warning
7403         * src/SDCCast.h: fixed a warning
7404         * src/SDCCicode.c (operandFromAst): fixed a warning
7405
7406 2003-04-04    <johan AT balder>
7407
7408         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
7409         * src/SDCCast.c (decorateType): fixed bug #715076
7410         * src/SDCC.y: fixed bug #702907
7411
7412 2003-04-03    <johan AT balder>
7413
7414         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
7415         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
7416         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
7417         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
7418         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
7419
7420 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
7421
7422         * _decdptr.c: fix return values
7423         * _gptrget.c: fix return values
7424         * _gptrgetc.c: fix return values
7425         * _gptrput.c: fix return values
7426         * _mulint.c: fix return values
7427         * as/z80/Makefile: fix 'make -j' problem
7428
7429 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
7430
7431         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
7432         * configure.in: big cleanup, updated to autoconf 2.5x
7433         * configure: rebuilt from configure.in
7434         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7435         * sdcc_vc_in.h: reflect changes from sdccconf.h
7436         * doc/Makefile: fixed a flaw in "make install"
7437
7438 2003-04-02    <johan AT balder>
7439
7440         * src/ds390/gen.c (genCmp): no comments
7441         * src/mcs51/gen.c (genCmp): no comments
7442         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
7443         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
7444
7445 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
7446
7447         * support/regression/generate-cases.py: place generated file in given sub directory
7448         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
7449         * support/regression/Makefile: improvements for 'make -j';
7450         side effect: it's simpler and faster now
7451
7452 2003-03-31  Borut Razem <borut.razem AT siol.net>
7453
7454         * src/z80/main.c: link-{port} and as-{port} defined without path
7455         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
7456
7457 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
7458
7459         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
7460
7461 2003-03-30  Borut Razem <borut.razem AT siol.net>
7462
7463         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
7464           changed type of list parameter to set
7465         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
7466         * src/port.h: changed type of do_assemble() parameter to set
7467         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
7468           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
7469           definition of "cppoutfilename" macro with NULL value in preProcess()
7470         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
7471         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
7472         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
7473           replaced with set *binPathSet
7474         * shash_add() deallocates the item, if allready exsists, before adding the new one
7475         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
7476
7477 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
7478
7479         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
7480           a nested for loop bug in the PIC port
7481         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
7482           for loops
7483
7484 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
7485
7486         * support/Util/dbuf.h: remove C++ stuff to make it portable
7487
7488 2003-03-28  Borut Razem <borut.razem AT siol.net>
7489
7490         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
7491           literal strings in stringLiteral()
7492         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
7493         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
7494           to the project
7495
7496 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
7497
7498         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
7499
7500 2003-03-26    <johan AT balder>
7501
7502         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
7503         * src/ds390/gen.c (saveRegisters): catched symbol abuse
7504         * src/SDCCast.c (decorateType): fixed " -v < 3"
7505
7506 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
7507
7508         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
7509         Added Lenny Story's debug infrastructure changes:
7510         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
7511         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
7512         * src/cdbFile.c: added
7513         * src/SDCCdebug.c: added
7514         * src/SDCCdebug.h: added
7515         * src/SDCCast.c (createFunction)
7516         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
7517         * src/SDCCmain.c (parseCmdLine, main)
7518         * src/SDCCmem.c (redoStackOffsets)
7519         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
7520         * src/SDCCsymt.h
7521         * src/common.h
7522         * src/avr/gen.c (genAVRCode)
7523         * src/ds390/gen.c (gen390Code)
7524         * src/mcs51/gen.c (gen51Code)
7525         * src/pic/gen.c (genpic14Code)
7526         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
7527         * src/xa51/gen.c (genXA51Code)
7528         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
7529
7530 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7531
7532         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
7533         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
7534
7535 2003-03-22    <johan AT balder>
7536
7537         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
7538
7539 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
7540
7541         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
7542         * doc/cdbfileformat.lyx: added, written by Lenny Story
7543         * doc/Makefile: added cdbfileformat.lyx
7544         * doc/clean.mk: added cdbfileformat.lyx
7545
7546 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
7547
7548         * src/mcs51/peeph.def: fix bug #705773
7549
7550 2003-03-20    <johan AT balder>
7551
7552         An sfr/sbit can have an "at #" AND an initializer
7553         * src/SDCCsymt.c (checkSClass):
7554         * src/SDCCmem.c (allocGlobal):
7555         * src/SDCCmem.c (allocLocal):
7556         * src/SDCCast.c (createBlock):
7557
7558 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
7559
7560         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
7561
7562 2003-03-16    <johan AT balder>
7563
7564         Undid the hackup of const and volatile, the problem is much bigger
7565         * src/SDCC.y:1.65
7566         * src/SDCCast.c:1.171
7567         * src/SDCCglue.c:1.138
7568         * src/SDCCicode.c:1.146
7569         * src/SDCCsymt.c:1.150
7570         * src/SDCCval.c:1.65
7571
7572 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
7573
7574         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
7575         * src/ds390/gen.c (genAddrOf): fixed bug #704087
7576
7577 2003-03-13    <johan AT balder>
7578
7579         Hackup const and volatile modifiers in type chains a bit:
7580         * src/SDCC.y:1.63
7581         * src/SDCCast.c:1.169
7582         * src/SDCCglue.c:1.136
7583         * src/SDCCicode.c:1.143
7584         * src/SDCCsymt.c1.146
7585         * src/SDCCsymt.h1.59
7586         * src/SDCCval.c:1.63
7587
7588 2003-03-12    <johan AT balder>
7589
7590         * src/SDCCBBlock.h: more LRH debugging junk
7591         * src/SDCCcflow.h: more LRH debugging junk
7592         * src/SDCCloop.c: more LRH debugging junk
7593         * src/SDCC.y (struct_declaration): fixed bug #697590
7594         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
7595         * src/ds390/gen.c (aopForRemat): fixed bug #700031
7596         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
7597
7598 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7599         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
7600         test function names must now match exactly).
7601         * src/SDCCcse.c: added special case in findCheaperOp to allow
7602         extending a short integer. Makes less awful code for bug 700121 test case.
7603
7604 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7605
7606         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
7607         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
7608
7609 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7610
7611         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
7612         actually called (operandsNotEqual() was called for all
7613         operandsNotEqualX tests).
7614
7615 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7616
7617         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
7618         with shorter literals. Fixes bug 700121.
7619
7620 2003-03-11    <johan AT balder>
7621
7622         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
7623
7624 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
7625
7626         * src/SDCCloop.c (mergeRegions): an evil beast is dead
7627         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
7628
7629 2003-03-10  Borut Razem <borut.razem AT siol.net>
7630
7631         * src/SDCCmain.c: pipe preprocessor's output
7632         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
7633         * sdcc_vc_in.h: define pclose as _pclose for WIN32
7634         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
7635         which closes all pipes in pipeSet set
7636         * src/SDCCset.c: free deleted item in function deleteSetItem()
7637         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
7638         moved from z80 to src subproject
7639         * .version: increased version number to 2.3.4
7640
7641 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
7642
7643         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
7644         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
7645         * support/regression/ports/xa51/spec.mk: fix typo
7646
7647 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
7648
7649         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
7650
7651 2003-03-09  Borut Razem <borut.razem AT siol.net>
7652
7653         * src/SDCCmain.c: pipe preprocessor's output
7654         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
7655         * sdcc_vc_in.h: define pclose as _pclose for WIN32
7656         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
7657         which closes all pipes in pipeSet set
7658         * src/SDCCset.c: free deleted item in function deleteSetItem()
7659         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
7660         moved from z80 to src subproject
7661
7662 2003-03-09  Borut Razem <borut.razem AT siol.net>
7663
7664         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
7665         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
7666         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
7667         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
7668         * src/SDCCglobl.h: unification of WIN32 native definitions
7669
7670 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7671
7672         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
7673
7674 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
7675
7676         * src/configure.in:   check for endianess (even while cross-compiling)
7677         * src/configure:      check for endianess (even while cross-compiling)
7678         * src/configure_in.h: check for endianess (even while cross-compiling)
7679         * src/avr/gen.c:        remove old endianess stuff
7680         * src/mcs51/gen.c:      remove old endianess stuff
7681         * src/ds390/gen.c:      remove old endianess stuff
7682         * src/pic/gen.c:        remove old endianess stuff
7683         * src/pic/genarith.c:   remove old endianess stuff
7684         * src/pic/glue.c:       fix endianess check
7685         * src/pic16/gen.c:      remove old endianess stuff
7686         * src/pic16/genarith.c: remove old endianess stuff
7687         * src/pic16/glue.c:     fix endianess check
7688         * src/xa51/gen.c:       remove old endianess stuff
7689         * src/z80/gen.c:        fix endianess check
7690         * src/SDCCglue.c:       fix endianess check
7691         * src/ds390/peeph.def: fix bug 700036
7692
7693 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
7694
7695         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
7696         * src/configure: find appropriate data-types on host for SDCC's int and long
7697         * src/configure.in: find appropriate data-types on host for SDCC's int and long
7698         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
7699         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
7700
7701 2003-03-07    <johan AT balder>
7702
7703         Just a big NOOP:
7704                 some minor cleanups before the big shot
7705                 OP_DEFS and OP_USES now use Kevin's protection
7706                 new option --nolabelopt
7707
7708         * src/SDCCBBlock.c:
7709         * src/SDCCast.c,:
7710         * src/SDCCcflow.c:
7711         * src/SDCCcse.c:
7712         * src/SDCCicode.c:
7713         * src/SDCCicode.h:
7714         * src/SDCClabel.c:
7715         * src/SDCCloop.c:
7716         * src/SDCCmain.c:
7717         * src/ds390/ralloc.c:
7718         * src/mcs51/ralloc.c:
7719         * src/pic/ralloc.c:
7720         * src/xa51/ralloc.c:
7721         * src/z80/ralloc.c:
7722
7723 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
7724
7725         * src/pic/pcode.c (get_op): fix 64 bit warnings
7726         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
7727         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
7728         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
7729         * support/regression/tests/malloc.c: fix 64 bit warnings
7730
7731 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
7732
7733         * src/mcs51/gen.c (genMinus): fixed bug 696436
7734
7735 2003-03-02  Borut Razem <borut.razem AT siol.net>
7736
7737         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
7738
7739 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
7740
7741         * configure.in: test for mkstemp
7742         * sdccconf_in.h: add HAVE_MKSTEMP
7743
7744 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
7745
7746         * device/include/ctype.h: removed warning while using --stack-auto
7747         * device/include/malloc.h: removed warning while using --stack-auto
7748         * device/include/string.h: removed warning while using --stack-auto
7749
7750 2003-02-23  Borut Razem <borut.razem AT siol.net>
7751
7752         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
7753         because NDEBUG is defined (see man assert)
7754         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
7755
7756 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7757
7758         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
7759         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
7760
7761 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7762
7763         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
7764         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
7765
7766 2003-02-18    <johan AT balder>
7767
7768         * as/mcs51/asmain.c (asmbl): module can start with a digit
7769         * as/z80/asmain.c (asmbl): module can start with a digit
7770
7771 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
7772
7773         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
7774         * src/asm.c: fix pipe() for Mingw32
7775
7776 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
7777
7778         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
7779         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
7780         make -V work again; --c1mode reads now from stdin
7781         * doc/sdccman.lyx: added --c1mode
7782         * support/Util/SDCCerr.c: new messages for c1 mode
7783         * support/Util/SDCCerr.h: new messages for c1 mode
7784         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
7785
7786 2003-02-15    <johan AT balder>
7787
7788         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
7789
7790 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
7791
7792         * doc/sdccman.lyx: Environment variables, -o and other minor things
7793
7794 2003-02-14    <johan AT balder>
7795
7796         * src/xa51/main.c: before anyone really tries to use it :)
7797
7798         * Install doc's in share/sdcc/doc
7799         * removed some obsolete files
7800         * Do a proper make distclean and uninstall
7801         M Makefile.common.in
7802         R sdccbuild.sh
7803         M as/Makefile
7804         M device/include/Makefile.in
7805         M device/lib/Makefile.in
7806         M doc/sdccman.lyx
7807         M link/Makefile
7808         M sim/ucsim/doc/Makefile.in
7809         M src/clean.mk
7810         R src/avr/peeph.rul
7811         R src/xa51/peeph.rul
7812         M support/cpp2/Makefile.in
7813         M support/makebin/Makefile
7814
7815
7816 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
7817
7818         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
7819
7820 2003-02-10  Borut Razem <borut.razem AT siol.net>
7821
7822         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
7823         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
7824         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
7825         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
7826         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
7827         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
7828         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
7829         src/z80/Makefile.bcc: Borland Makefile cleanup
7830         * as/z80/Makefile.bcc: Added Borland Makefile
7831         * support/cpp2/borland.h: Removed
7832
7833 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
7834
7835         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
7836         * src/SDCC.lex: new pragma NOIV
7837         * src/SDCCglobl.h: new pragma NOIV
7838         * src/SDCCmem.c: new pragma NOIV
7839
7840 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
7841
7842         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
7843
7844 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
7845
7846         * src/SDCCmain.c: signal handling is switched off by --debug
7847         * doc/Makefile: small fix for install; use clean.mk again
7848         * doc/clean.mk: clean *.pdf and *.html too
7849
7850 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
7851
7852         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
7853         * device/lib/printfl.c: fix a ds390 bug by making it portable
7854         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
7855         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
7856         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
7857         * debugger/mcs51/cmd.c: converted multi-line string literals
7858         * sim/ucsim/globals.cc: converted multi-line string literals
7859         * src/SDCCmain.c: introduced signal handler to remove temp files
7860         * doc/Makefile: small tweaks, implement clean
7861         * doc: removed generated files
7862
7863 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7864
7865         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
7866         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
7867         Address Record is not correctly generated for DS390."
7868
7869 2003-02-02  Borut Razem <borut.razem AT siol.net>
7870
7871         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
7872         * as/mcs51/asm.h: fixed compilation with Borland C
7873         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
7874         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
7875         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
7876         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
7877         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
7878         src/z80/Makefile.bcc: delete $(LIB) only if exist
7879         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
7880
7881 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
7882
7883         * device/include/malloc.h: introduced NULL
7884         * device/include/string.h: introduced NULL
7885         * device/include/stdlib.h: introduced NULL
7886         * device/lib/_memcpy.c: removed NULL
7887         * device/lib/_strcat.c: removed NULL
7888         * device/lib/_strchr.c: removed NULL
7889         * device/lib/_strcmp.c: removed NULL
7890         * device/lib/_strcpy.c: removed NULL
7891         * device/lib/_strcspn.c: removed NULL
7892         * device/lib/_strlen.c: removed NULL
7893         * device/lib/_strncat.c: removed NULL
7894         * device/lib/_strncmp.c: removed NULL
7895         * device/lib/_strncpy.c: removed NULL
7896         * device/lib/_strpbrk.c: removed NULL
7897         * device/lib/_strrchr.c: removed NULL
7898         * device/lib/_strspn.c: removed NULL
7899         * device/lib/_strstr.c: removed NULL
7900         * device/lib/_strtok.c: removed NULL
7901         * device/lib/malloc.c: removed NULL, include own header
7902
7903 2003-02-02    <johan AT balder>
7904
7905         * 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
7906         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
7907         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
7908         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
7909         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
7910         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
7911
7912 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7913
7914         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
7915         area 'DATA'"
7916
7917 2003-02-01    <johan AT balder>
7918
7919         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
7920
7921 2003-01-31    <johan AT CP255758-A>
7922
7923         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
7924
7925 2003-01-30    <johan AT balder>
7926
7927         * src/SDCCBBlock.c: automatic bug detection
7928         * src/SDCCicode.c: automatic bug detection
7929
7930 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7931
7932         * src/SDCCglobl.h:   now --xram-size 0 works
7933         * src/SDCCmain.c:    now --xram-size 0 works
7934
7935 2003-01-29    <johan AT balder>
7936
7937         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
7938
7939 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7940
7941         * as/mcs51/aslink.h: Added options --xram-size and --code-size
7942         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
7943         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
7944         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
7945         * src/SDCCglobl.h:   Added options --xram-size and --code-size
7946         * src/SDCCmain.c:    Added options --xram-size and --code-size
7947
7948 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
7949
7950         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
7951         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
7952
7953 2003-01-27    <johan AT balder>
7954
7955         * src/SDCC.y: fixed bug #613764
7956
7957 2003-01-26    <johan AT balder>
7958
7959         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
7960         * src/SDCCsymt.h: fixed bug #673374
7961         * src/SDCCglue.c: fixed bug #661910
7962         * src/SDCCast.c: fixed bug #458099 and 673374
7963
7964 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
7965
7966         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
7967         * as/mcs51/strcmpi.h: added
7968         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
7969         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
7970         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
7971         * as/mcs51/assym.c: strcmpi -> as_strcmpi
7972         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
7973         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
7974         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
7975         * as/mcs51/Makefile.aslink: new module strcmpi
7976         * as/mcs51/Makefile.asx8051: new module strcmpi
7977         * as/mcs51/Makefil.bcc: new module strcmpi
7978         * as/mcs51/Makefile.in: new module strcmpi
7979         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
7980
7981 2003-01-26    <johan AT balder>
7982
7983         * src/SDCCglue.c: reverted back to 1.124
7984         * src/SDCCast.c: reverted back to 1.156
7985         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
7986
7987 2003-01-25    <johan AT balder>
7988
7989         * src/SDCCglue.c: A better fix for bug #661910
7990         * src/SDCCast.c: A better fix for bug #661910
7991         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
7992
7993 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
7994
7995         * src/Makefile.in: remove spawn.o
7996         * src/SDCCmain.c: remove spawn.h
7997         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
7998         * src/spawn.c: removed
7999         * src/spawn.h: removed
8000         * support/regression/ports/ds390/spec.mk: link with -r
8001
8002 2003-01-24    <johan AT CP255758-A>
8003
8004         * src/ds390/gen.c (aopOp): fixed bug #667458
8005         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
8006         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
8007         (createIvalCharPtr): an ival doesn't always have a storage class anymore
8008
8009 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8010
8011         * src/mcs51/peeph.def: better assembler identation by Frieder
8012         * src/mcs51/gen.c: better assembler identation by Frieder
8013
8014 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
8015
8016         * as/z80/string.h: removed for gcc 3.2
8017         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
8018         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
8019
8020 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8021
8022         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
8023         * src/SDCCpeeph.c (replaceRule): fix bug #663503
8024         * support/regression/Makefile: separate temp files for ports
8025         * support/regression/generate-cases.py: separate temp files for ports
8026         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8027         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8028
8029 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8030
8031         * moved tinitalk to device/examples/ds390
8032
8033 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
8034
8035         * as/mcs51/lkmem.c: rflag is for DS390
8036         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
8037         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
8038                          (linkEdit): move mem- and map-files the same way as ihx-files
8039         * src/z80/main.c (_setDefaultOptions): removed --generic
8040         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
8041         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
8042         * src/pic/glue.c (picglue): --c1mode works again
8043         * src/pic16/glue.c (pic16glue): --c1mode works again
8044         * src/asm.c (printCLine): fix #660034
8045
8046 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
8047
8048         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
8049         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
8050         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
8051         * as/mcs51/lkmem (summary): better fix for sp problem
8052         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
8053         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
8054         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
8055                                               remove --stack-after-data
8056
8057 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
8058
8059         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
8060         * src/SDCCutil.c (join): ugly bug: missing '\0'
8061         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
8062
8063 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8064
8065         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
8066         * src/port.h: typo
8067         * src/pic/main.c (_asmCmd): gpasm supports -o
8068         * src/z80/main.c: more general macros
8069         * device/lib/Makefile.in: remove intermediate files
8070
8071 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8072
8073         * .version: Bumped version number to 2.3.3
8074         * src/SDCCBBlock.c: new option -o
8075         * src/SDCCglobl.h: new option -o
8076         * src/SDCCglue.c: new option -o
8077         * src/SDCCmain.c: new option -o
8078         * src/asm.c: new option -o
8079         * src/ds390/main.c: new option -o
8080         * src/pic/glue.c: new option -o
8081         * src/pic/pcode.c: new option -o
8082         * src/pic/ralloc.c: new option -o
8083         * src/pic16/glue.c: new option -o
8084         * src/pic16/pcode.c: new option -o
8085         * src/pic16/ralloc.c: new option -o
8086         * src/z80/main.c: new option -o
8087         * device/lib/Makefile.in: use -o
8088         * support/regression/ports/ds390/spec.mk: use -o
8089         * support/regression/ports/gbz80/spec.mk: use -o
8090         * support/regression/ports/mcs51/spec.mk: use -o
8091         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
8092         * support/regression/ports/z80/spec.mk: use -o
8093         * support/regression/ports/ucz80/spec.mk: use -o
8094         * support/regression/ports/xa51/spec.mk: use -o
8095         * support/regression/fwk/lib/timeout.c: fix usage string
8096
8097 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
8098         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
8099
8100 2003-01-07    <johan AT balder>
8101
8102         * src/SDCCast.c (decorateType): fixed bug #600035
8103
8104 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
8105         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
8106         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
8107         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
8108         * src/pic/pcode.c: outcommented unused variable to remove warnings
8109         * src/pic/ralloc.c: outcommented unused variable to remove warnings
8110
8111 2003-01-06    <karl AT turbobit.com>
8112         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
8113    regression tests.
8114
8115 2003-01-06    <johan AT balder>
8116
8117         * src/SDCCicode.c: fixed array add
8118
8119 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
8120         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
8121         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
8122
8123 2003-01-04    <johan AT balder>
8124
8125         * src/SDCCval.c (getNelements): fixed the initialized array of structures
8126
8127 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8128         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
8129
8130 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8131         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
8132         * support/regression/tests/bug-524697.c: fit mem usage into 8032
8133
8134 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8135         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
8136
8137 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
8138         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
8139
8140 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
8141         * src/mcs51/main.c: removed {bindir}{sep} from aslink
8142
8143 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8144
8145     * in \sdcc\as\mcs51\ changed these files in order to create an
8146     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
8147     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
8148     following files to include the previous two files: aslink.dsp,
8149     Makefile.aslink, Makefile.bcc, and Makefile.in.
8150
8151     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
8152     .adb instead of .cdb
8153
8154 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8155
8156         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
8157         value from option --iram-size.
8158
8159 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8160
8161         * \sdcc\as\mcs51\lklist.c: added boundary check before using
8162         dram[] array.
8163
8164 2002-09-18    <wiml AT hhhh.org>
8165
8166         * SDCClrange.h: exposed setFromRange() and setToRange()
8167         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
8168           packRegsForAccUse() (bug 542397)
8169         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
8170           multiple times and emitting the fetch operations more than once
8171           added aopGetUsesAcc() function to allow binary operators to
8172           fetch their operands in the correct order; made genMinus() emit
8173           compact code for X = LITERAL - Y
8174
8175 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8176         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
8177         sprintf() in line 1267.
8178
8179 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8180         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
8181         like ports.
8182
8183 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8184         Changes to aslink (All the changes are marked with 'JCF'):
8185
8186         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
8187         summary().
8188
8189         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
8190         area BSEG.  Also moves, if possible, the DATA area down into the internal
8191         ram so more space is available.
8192
8193         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
8194         sflag.
8195
8196         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
8197         not bytes.  Function summary() which creates a memory usage summary
8198         file with extension .mem.  Reports of overlaping stack and small stack
8199         size.  If the space for the stack is less than 16 bytes aslink trows a
8200         warning.
8201
8202         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
8203         the 8051.  Option 'y' for memory summary output file.
8204
8205         Changes to sdcc (All the changes are marked with 'JCF'):
8206
8207         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
8208
8209         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
8210         overlaying area for it (uses RegBankUsed[4]).
8211
8212         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
8213         bank zero as used by default.  By default aslink locates the stack
8214         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
8215         the creation of the .mem file.  Delegates the allocation of data area
8216         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
8217         the begining of the stack area to aslink.
8218
8219         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
8220         glue() in SDCCglue.c creates an area for it.
8221
8222 2002-09-03  Borut Razem <borut.razem AT siol.net>
8223         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
8224         sdcc/src/pic/glue.c:
8225         introduced atexit() handler for teporay files removal in case of
8226         errors, assertions, ...
8227
8228 2002-08-29  Borut Razem <borut.razem AT siol.net>
8229         * sdcc/support/cpp2/auto-host_vc_in.h:
8230         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
8231         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
8232         Maybe there is a similar problem with BORLANDC? It should be checked!
8233
8234         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
8235         corrected improper use of assert: the assignment to clr variable was done inside the assert.
8236         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
8237         was not executed, and the compiler (cl) launched a warning:
8238         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
8239
8240 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8241         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
8242
8243 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
8244         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
8245
8246         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8247           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
8248           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
8249           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8250           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
8251           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
8252           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
8253         - added Release configuration in VS projects
8254         - review of compiler an linker options
8255         - VC .exe files are generated in bin_vc directory, not to interfere
8256           with binaries generated from other projects (cygwin, mingw, bcc ...)
8257
8258         * sdcc/src/yacc.dsp: added
8259
8260         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
8261         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
8262         and insert the version number definitions from .version
8263
8264         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
8265
8266         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
8267         added - genarate auto-host.h using auto-host_vc_in.h as template
8268
8269         * sdcc/sdcc_vc.h,
8270         removed from CVS, generated automatically
8271
8272 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
8273         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
8274
8275 2002-08-11  Borut Razem <borut.razem AT siol.net>
8276         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
8277
8278 2002-08-10  Borut Razem <borut.razem AT siol.net>
8279         * src/SDCCmain.c (main):
8280         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
8281         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
8282         The consequence was that some temporary files were not removed.
8283
8284         * src/SDCCglue.c:
8285         unification of code in functions tempfilename() and tempfile():
8286         function tempnam() is defined in Visual Studio 6.0 and .NET
8287
8288         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
8289
8290         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8291           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
8292         - removed compiler command line option /WX: Treats all warnings as errors
8293         - update a list of source files, included into the project
8294
8295         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8296           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
8297         changed project type to Generic Project so that can be correcly converted to VS.NET project
8298
8299         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
8300
8301         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
8302
8303         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
8304
8305         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
8306         added return 0 statements after assert() to make compiler happy
8307
8308         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
8309         added newline in the def file to keep MSC compiler satisfied
8310
8311         * sdcc/src/z80/gen.c:
8312         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
8313           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
8314         - solved MSC error in function aopDump()
8315
8316         * sdcc_vc.h: define PREFIX as "\\sdcc"
8317
8318 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
8319         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
8320
8321 2002-06-22  Scott Dattalo <scott AT dattalo.com>
8322         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
8323         - Rewrote the register banking algorithm.
8324         - Added pCode live-range analysis to registers (for now, only non-used and
8325         singly-used registers optimized away)
8326
8327         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
8328
8329         * 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.
8330
8331 2002-05-10  Scott Dattalo <scott AT dattalo.com>
8332         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
8333
8334 2002-04-22  Michael Hope  <michaelh AT vroom>
8335
8336         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
8337
8338         * configure.in (DD_COPT): Added include support required for gbdk.
8339
8340         * .version: Bumped version number just to increase it.
8341
8342         * src/SDCCmain.c: Added -nostdinc to the default options.
8343
8344 2002-04-15  Michael Hope  <michaelh AT vroom>
8345
8346         * device/lib/z80/printf.c (sprintf): Added.
8347
8348         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
8349
8350         * src/z80/peeph.def: Added transpose redundent load rule.
8351
8352         * src/z80/main.c: Added force callee saves for jaune.
8353
8354         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
8355
8356         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
8357
8358 2002-03-28  Johan Knol  <johan AT balder>
8359
8360         * src/SDCCval.c: fixed bug #532436
8361
8362 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8363         * /src/port.h:
8364         Added "char *Processor" field to the port structure.
8365
8366         * /src/SDCCmain.c:
8367         Added -p option. Allows port dependent processor to be specified.
8368
8369         * all ports:
8370         Initialized the new field char *Processor field to NULL in all ports
8371
8372         * /src/pic/*:
8373         Compiler generated registers for interrupt context saving
8374         were not getting allocated.
8375
8376 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
8377
8378         * /src/SDCCast.c:
8379         Fixed left shift. Will promote the left side of a left shift
8380         if a) left shifting more than size of operand or b) when assigned
8381         to something size > size of left side
8382
8383 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8384         * src/pic/*
8385         tons of changes. Register allocation has been
8386         rewritten. Added customization for the various PICs. Flow
8387         analysis is restructured. ...
8388
8389         * src/pic/device.h:
8390         Added
8391
8392         * src/pic/device.c:
8393         Added. device.c is a PIC port hack to accomodate variations
8394         in PIC devices.
8395
8396 2002-03-13  Michael Hope  <michaelh AT vroom>
8397
8398         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
8399
8400 2002-03-04  johanknol  <johanknol AT manik>
8401
8402         * /src/SDCCval.c: fixed
8403
8404         const unsigned char arr[][2] = { { 0, 1 } };
8405         t18.c:1: error: Initializer element is not constant
8406
8407 2002-03-04  bela  <bela AT manik>
8408
8409         * /device/include/mcs51reg.h:
8410         ds89c420 register definition update
8411
8412 2002-03-03    <johan AT FRIJA>
8413
8414         * support/Util/SDCCerr.c: did something, but don't no why anymore
8415
8416         * support/regression/tests/bug-524691.c: made it a little less shy
8417
8418         * src/SDCCast.c (decorateType): fixed bug #524697
8419
8420         * src/SDCCast.c: made some lineno improvements
8421
8422         * src/SDCCval.c (getNelements): changed warning to error
8423
8424         * src/SDCCglue.c (printIvalArray): changed warning to error
8425
8426         * src/SDCCicode.c: fixed a warning for mingw
8427
8428         * src/SDCCast.c (decorateType): fixed the << promotion for ops
8429
8430         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
8431
8432 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
8433
8434         * src/ds390/peeph.def:
8435         Added some more peephole rules
8436
8437         * src/ds390/gen.c: Various fixes & enhancements
8438
8439         * src/SDCClrange.c, src/SDCClrange.h:
8440         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
8441
8442         * src/ds390/ralloc.c:
8443         various fixes & enhancements (ds390) specific
8444
8445         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
8446         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
8447         from rallocs.
8448
8449         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
8450
8451 2002-03-02    <johan AT FRIJA>
8452
8453         * src/SDCCast.c (decorateType): fixed bug #524708
8454
8455         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
8456
8457         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
8458
8459 2002-03-01  Michael Hope  <michaelh AT vroom>
8460
8461         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
8462
8463         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
8464
8465 2002-03-01    <johan AT FRIJA>
8466
8467         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
8468
8469         * src/SDCCast.c (decorateType): fixed bug #524209
8470
8471         * src/SDCCval.c (valNot): fixed bug #524195
8472
8473 2002-02-26    <johan AT balder>
8474
8475         * src/xa51/gen.c: fixed a warning
8476
8477         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
8478
8479         * src/SDCCast.c (decorateType): fixed bug #522534
8480
8481 2002-02-23    <johan AT balder>
8482
8483         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
8484
8485 2002-02-22    <johan AT balder>
8486
8487         * src/SDCCast.c: fixed bug #514865
8488
8489         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
8490
8491 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
8492
8493         * sdcc/src/SDCCloop.c:
8494         Previous fix was not good. basic blocks that have "break" or "return" are
8495         not really partof a loop , but live ranges used in these blocks should
8496         be live thru the entire loop, so set partOfLoop but don't add them to
8497         loop region
8498
8499 2002-02-21    <johan AT FRIJA>
8500
8501         * src/SDCCcse.c: fixed bug #514308
8502
8503 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
8504
8505         * src/SDCCloop.c:
8506         Fixed BUG #519583. If a conditional block ended in a return/break
8507         statement inside a loop, it was not being considered part of the loop.
8508
8509         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
8510
8511 2002-02-10  Karl Bongers <karl AT turbobit.com>
8512
8513         * debugger/*:
8514         Fixed up SDCDB debugger somewhat.  Updated debugger/README
8515         with lots of comments and notes.
8516
8517         * device/examples/test2.c:
8518         Fix bug, "red" variable not being initialized(compiler complained).
8519
8520         * device/examples/Makefile, examples/test3.c:
8521         Add Makefile in device/examples folder, compiles test3.c
8522         for use as a multiple module SDCDB test case.
8523
8524         * sim/ucsim/cmd.src/cmdset.cc:
8525         Took out debug printfs in ucsim "next" command.
8526
8527         * sim/ucsim/xa.src:
8528         Karl and Johan start ucsim XA support.  Most dissassembly working,
8529         about 75% emulation done(plenty of work remaining).
8530
8531         * sim/ucsim/z80.src:
8532         Add Z80 support to ucsim, add test-ucz80 regression test,
8533         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
8534         Notice z80 compiler fails on examples/test3.c/crc code.
8535
8536 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
8537
8538         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
8539         Added support for --parms-in-bank1
8540
8541         * src/ds390/peeph.def:
8542         added a few more peephole optimzations
8543
8544         * src/ds390/main.c:
8545         1) added __builtin_inp & __builtin_outp used to read in data of given length
8546            from a memory mapped port
8547         2) added __builtin_memcmp
8548         3) added __builtin_swapw swap bytes of a short
8549
8550         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
8551         1) handle multiple send & receives from register bank1
8552         2) ralloc can now allocate DPTR1 to some liveRanges
8553
8554         * src/SDCCsymt.c, src/SDCCsymt.h:
8555         changes to handle multiple sends & receives
8556
8557         * src/SDCCptropt.h:
8558         added some pointer arithmetic optimization
8559
8560         * src/SDCCptropt.c:
8561         added some pointer arithmetic optimizations but not stable yet so not
8562         called from anywhere (will get this working shortly)
8563
8564         * src/SDCCopt.c: fixed for multiple sends & receives
8565
8566         * src/SDCCmain.c:
8567         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
8568         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
8569            set preprocessor defines (depending on options)
8570
8571         * src/SDCCicode.c, src/SDCCicode.h:
8572         changes made to handle multiple sends & receives
8573
8574         * src/SDCCglobl.h:
8575         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
8576
8577         * src/SDCCcse.c, src/SDCCcse.h:
8578         added function findbackward def (to be used in upcoming optimization)
8579
8580         * src/SDCCcflow.c, src/SDCCcflow.h:
8581         added function returnAtEnd - to determine if a basic block terminates with
8582         a RETURN iCode
8583
8584         * src/SDCCast.c, src/SDCCast.h:
8585         added option parms-in-bank1
8586
8587         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
8588         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
8589         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
8590         adjusted for --parms-in-bank1 option
8591
8592         * device/include/string.h:
8593         donot redefine "reentrant" keyword
8594
8595         * device/include/ds80c390.h: Added some more SFRs
8596
8597 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
8598
8599         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
8600
8601 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
8602
8603         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
8604
8605 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
8606
8607         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
8608
8609 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
8610
8611         * Added --xram-movc option
8612
8613 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
8614
8615         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
8616
8617 2002-01-11  Johan Knol
8618
8619         * Added math lib of Jesus Calvino-Fraga
8620
8621 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
8622
8623         * src/SDCCmain.c (processFile): fix processing of ../../src.c
8624         * support/regression/Makefile: new target test-mcs51-stack-auto
8625         * support/regression/ports/mcs51-stack-auto/spec.mk: added
8626
8627 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
8628
8629         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
8630
8631 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
8632
8633         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
8634
8635 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
8636
8637         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
8638
8639         * src/SDCCglue.h: add definition for printIvalChar()
8640
8641 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
8642
8643         * src/SDCCast.c: fix #498138 by Johan
8644
8645         * src/SDCCglue.c: fix #498138 by Johan
8646
8647 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
8648
8649         * support/regression/Makefile: fix clean
8650
8651         * support/regression/ports/ds390/support.c: fix transmission of last character
8652
8653 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
8654
8655         * /sdcc/src/ds390/gen.c:
8656         a) improved computing address of stack variable
8657         b) took out some #if 0 code
8658         c) improved parmBytes adjustment
8659         d) improved genPlusIncr & genMinusIncr
8660         e) genCmp could generate bad code (when left assigned to DPTR)
8661         f) Fixed bug in hasInc
8662
8663         * /sdcc/src/ds390/ralloc.c:
8664         a) packRegsForSupport could mess up live information (Fixed)
8665         b) packRegsDPTRuse could be incorrect for left & right shift
8666
8667         * /sdcc/src/mcs51/ralloc.c:
8668         packRegsForSupport could mess up the live information (Fixed)
8669
8670         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
8671
8672         * /sdcc/src/SDCCast.c:
8673         can reverse a loop even if function call is present as long
8674         as the loop control variable is local & is not passed as parameter
8675
8676 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
8677
8678         * /sdcc/ChangeLog: *** empty log message ***
8679
8680         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
8681         More builtin function additions for TININative
8682
8683         * /sdcc/src/ds390/ralloc.c:
8684         Had broken the regression testsuite
8685
8686         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
8687
8688         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
8689         Added funcattr hasStackParms will be set for reentrant functions when there
8690         are paramteres on the stack, this helps in minimizing frame pointer generation
8691         typeFromStr can handle function pointers now
8692
8693         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
8694         *** empty log message ***
8695
8696 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
8697
8698         * /src/ds390/gen.c, /src/ds390/main.c:
8699         More builtin function additions for TININative
8700
8701         * /src/ds390/ralloc.c:
8702         Had broken the regression testsuite
8703
8704         * /src/SDCCast.c: Fixed a bug in dumptree
8705
8706         * /src/SDCCsymt.c, /src/SDCCsymt.h:
8707         Added funcattr hasStackParms will be set for reentrant functions when there
8708         are paramteres on the stack, this helps in minimizing frame pointer generation
8709         typeFromStr can handle function pointers now
8710
8711         * /doc/builtins.txt, /doc/TININative.txt:
8712         *** empty log message ***
8713
8714
8715 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
8716
8717         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
8718         ALPHA version for -mTININative
8719
8720         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
8721         updated to reflect changes in the port structure
8722
8723         * /src/port.h:
8724         added function do_assemble (similar to do_link) if non-null this function
8725         will be called to do assembly (-mTININative) requires a multi command
8726         assembly
8727         added function genAssemblerEnd will be called to generate assembler Epilogue
8728
8729         * /src/SDCCsymt.c:
8730         added _JavaNative to debug info printing
8731
8732         * /src/SDCCmain.c: added option --tini-libid
8733         added port->do_assemble function (-mTININative) has a multi command assemble
8734
8735         * /src/SDCCglue.c: Disabled "constExpr" check
8736         added port->genAssemblerEnd function
8737
8738         * /src/SDCCglobl.h: Added option --tini-libid value
8739
8740         * /src/SDCCast.h:
8741         tookout optimizeCompare from the header (has no external references)
8742
8743         * /src/SDCCast.c: made one more function "static"
8744
8745 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
8746
8747         * src/z80/mappings.i: Added z80asm support.
8748
8749         * src/z80/main.c: Added z80asm support on --asm=z80asm
8750
8751         * src/z80/gen.c: Fixed asm portability issues.
8752
8753         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
8754
8755         * src/SDCCglue.c (printExterns): Added global/extern split.
8756
8757 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
8758
8759         * support/regression/Makefile: added test for mcs51 model large
8760
8761         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
8762
8763         * support/regression/ports/gbz80/spec.mk: added -mgbz80
8764
8765 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
8766
8767         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
8768
8769 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
8770
8771         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
8772
8773         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
8774
8775 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
8776
8777         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
8778
8779         * support/regression/tests/simplefloat.c: Port to mcs51.
8780
8781 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
8782         * support/regression/tests/bug-485362.c: Added.
8783
8784         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
8785
8786         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
8787
8788         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
8789
8790         * src/z80/gen.c (aopDump): Added a dump function.
8791
8792 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
8793         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
8794
8795         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
8796
8797         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
8798
8799         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
8800
8801         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
8802
8803         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
8804
8805         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
8806
8807         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
8808
8809         * support/regression/ports/ds390/support.c: Use tinibios.
8810
8811         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
8812
8813 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
8814
8815         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
8816         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
8817
8818         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
8819
8820         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
8821
8822 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
8823
8824         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
8825
8826         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
8827         (packRegsForIYUse): Created and optimised.
8828
8829 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
8830
8831         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
8832 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
8833
8834         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
8835
8836         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
8837
8838         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
8839
8840 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
8841
8842         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
8843
8844         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
8845
8846 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
8847
8848         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
8849
8850         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
8851
8852         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
8853
8854 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
8855
8856         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
8857         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
8858         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
8859
8860         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
8861
8862         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
8863         (genNotFloat): Added.
8864         (genUminusFloat): Added.
8865
8866         * device/lib/z80/Makefile: Added floating pt stubs.
8867
8868         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
8869
8870         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
8871
8872         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
8873
8874 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
8875
8876         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
8877
8878         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
8879
8880         * sdcc/support/regression/Makefile: Add port ds390.
8881
8882         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
8883
8884         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
8885
8886         * sdcc/support/regression/ports/ds390/spec.mk: Added.
8887
8888         * sdcc/support/regression/ports/ds390/support.c: Added.
8889
8890         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
8891
8892         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
8893
8894         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
8895
8896 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
8897
8898         * device/include/malloc.h: Added z80 and gbz80 support.
8899
8900         * device/lib/gbz80/heap.s: Added.
8901
8902         * device/lib/z80/heap.s: Added.
8903
8904         * device/lib/malloc.c: Added z80 and gbz80 support.
8905
8906         * support/regression/tests/malloc.c (testMalloc): Added.
8907
8908         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
8909
8910         * support/regression/tests/bug-478094.c: Added.
8911
8912         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
8913
8914 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
8915
8916         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
8917
8918         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
8919
8920         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
8921
8922         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
8923
8924         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
8925
8926 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
8927
8928         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
8929
8930 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
8931
8932         * support/regression/tests/bug-477927.c: Added.
8933
8934         * src/z80/peeph.def: Added minor rules.
8935
8936         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
8937
8938         * src/z80/peeph.def: Added jump optimisation modification.
8939
8940 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
8941
8942         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
8943
8944 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
8945
8946         * support/regression/tests/funptrs.c: Added.
8947
8948 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
8949
8950         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
8951
8952 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
8953
8954         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
8955
8956         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
8957
8958         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
8959         (movLeft2ResultLong): Created.
8960
8961         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
8962         (joinPushes): Added.  Joins two char pushes into a word push.
8963
8964 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
8965
8966         * support/cpp2/Makefile.in (install): Added creation of dest dir.
8967
8968         * support/makebin/Makefile (install): Added creation of dest dir.
8969
8970 2001-10-24 Karl Bongers <karl AT turbobit.com>
8971
8972         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
8973
8974 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
8975
8976         * src/z80/ralloc.c: Turned off faulty pack for one use.
8977
8978         * src/z80/peeph-gbz80.def: Removed redundent restart options.
8979
8980         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
8981
8982 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
8983
8984         * support/regression/Makefile: Improved clean
8985
8986         * support/regression/ports/gbz80/spec.mk: Added clean
8987
8988         * support/regression/ports/host/spec.mk: Added clean
8989
8990         * support/regression/ports/z80/spec.mk: Added clean
8991
8992         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
8993
8994         * support/regression/ports/mcs51/timeout.c: little improvements
8995
8996 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
8997
8998         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
8999
9000         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
9001
9002         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
9003
9004 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
9005
9006         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
9007
9008         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
9009
9010 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
9011         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
9012
9013         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
9014
9015         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
9016
9017         * src/mcs51/main.c (_linkCmd): Added bin path to command.
9018
9019         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
9020
9021         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
9022
9023         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
9024
9025         * support/regression/tests/longor.c: Added.
9026
9027 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
9028
9029         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
9030
9031         * as/mcs51/aslink.h: define PATH_MAX
9032
9033         * as/mcs51/asm.h: define PATH_MAX
9034
9035         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
9036
9037         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
9038
9039         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
9040
9041         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
9042
9043         * src/SDCCglobl.h: define PATH_MAX
9044
9045         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
9046
9047         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
9048
9049 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
9050
9051         * src/z80/gen.c (gencjneshort): Fixed
9052
9053         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
9054
9055 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
9056
9057         * support/regression/tests/bug-469671.c: Added.
9058
9059         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
9060
9061 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
9062
9063         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
9064
9065         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
9066
9067 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
9068
9069         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
9070
9071         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
9072
9073         * src/device/lib/_mullong.c : removed hint: nooverlay bug
9074
9075         * src/device/lib/_divuint.c : removed hint: nooverlay bug
9076
9077         * src/device/lib/_divulong.c: removed hint: nooverlay bug
9078
9079         * src/device/lib/_moduint.c : removed hint: nooverlay bug
9080
9081         * src/device/lib/_modulong.c: removed hint: nooverlay bug
9082
9083 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
9084
9085         * 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.
9086
9087         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
9088
9089         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
9090
9091 2001-10-07    <johan AT FRIJA>
9092
9093         * device/lib/gets.c (gets): fixed the return value.
9094
9095 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
9096         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
9097
9098         * 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.
9099
9100         * 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.
9101
9102         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
9103
9104         * src/pic/gen.c: Removed Safe_strdup.
9105
9106         * configure.in: Added option to enable libgc support.
9107
9108         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
9109         (bitVectUnion): Optimised.
9110         (bitVectIntersect): Optimised.
9111         (bitVectBitsInCommon): Optimised.
9112         (bitVectCplAnd): Optimised.
9113
9114         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
9115
9116 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9117
9118         * src/SDCCmain.c: distinguish between assembler debug and plain options
9119
9120         * src/avr/main.c:   remove standard assembler options
9121
9122         * src/ds390/main.c: remove standard assembler options
9123
9124         * src/mcs51/main.c: remove standard assembler options
9125
9126         * src/port.h: removed "PENDING" comment
9127
9128 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9129
9130         * src/device/lib/_mulint.c  : new, with assember functions
9131
9132         * src/device/lib/_mullong.c : new, with assember functions
9133
9134         * src/device/lib/_divuint.c : with assember functions
9135
9136         * src/device/lib/_divsint.c : with assember functions
9137
9138         * src/device/lib/_divulong.c: with assember functions
9139
9140         * src/device/lib/_divslong.c: with assember functions
9141
9142         * src/device/lib/_moduint.c : with assember functions
9143
9144         * src/device/lib/_modsint.c : with assember functions
9145
9146         * src/device/lib/_modulong.c: with assember functions
9147
9148         * src/device/lib/_modslong.c: with assember functions
9149
9150         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
9151
9152         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
9153
9154         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
9155                                       replaced _mululong.c and _mulslong.c by _mullong.c
9156
9157 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9158
9159         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
9160
9161 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9162
9163         * src/SDCCglue.c: test, if win32api is available for MINGW
9164
9165 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9166
9167         * src/SDCCsymt.c: no more _modifier in printTypeChain()
9168         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
9169         * support/regression/ports/gbz80/spec.mk: removed GENERIC
9170         * support/regression/ports/host/spec.mk: removed GENERIC
9171         * support/regression/ports/mcs51/spec.mk: removed GENERIC
9172         * support/regression/ports/z80/spec.mk: removed GENERIC
9173
9174 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
9175
9176         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
9177
9178         * support/regression/tests/bug-467035.c: Created.
9179
9180 2001-10-01    <johan AT FRIJA>
9181
9182         * src/SDCC.y: fixed bug #466586 part 1
9183
9184 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
9185
9186         * SDCCicode.c: z80 has no generic pointers
9187         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
9188
9189 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
9190
9191         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
9192
9193 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
9194
9195         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
9196
9197         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
9198
9199 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
9200
9201         * configure.in: Fixed up so that ucsim is only configured once.
9202
9203         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
9204
9205         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
9206         (getPathDifference): As above.
9207
9208         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
9209
9210         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
9211
9212 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
9213         * .version: Updated to 2.3.1
9214
9215         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
9216         Added copyright header.
9217
9218         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
9219         (assemble): Added support for macro based assembler commands.
9220         (linkEdit): Added support for macro based linker commands.
9221         (preProcess): Changed the pre-processor to use macros.
9222         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
9223         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
9224
9225         * device/lib/z80/crt0.s: Added module name for debugging.
9226
9227 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
9228
9229         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9230
9231         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
9232
9233         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
9234
9235         * src/Makefile.in: Added SDCCmacro and SDCCutil
9236
9237 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
9238
9239         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9240
9241 2001-09-16    <johan AT FRIJA>
9242
9243         * 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.
9244
9245 2001-09-15    <johan AT FRIJA>
9246
9247         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
9248         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
9249
9250 2001-09-11    <johan AT FRIJA>
9251
9252         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
9253
9254 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
9255
9256         * support/regression/tests/bug-460444.c: Added test case.
9257
9258         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
9259         (genCast): Added justification for all of the asserts.
9260
9261 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
9262
9263         * support/regression/support.c: _xdata replaced by xdata
9264
9265         * support/regression/spec.mk: removed _generic
9266
9267 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
9268
9269         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
9270
9271         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
9272         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
9273
9274         * src/z80/peeph.def: Added a rule to optimise shift then compare.
9275
9276         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
9277
9278         * support/regression/tests/bug-460010.c: Added test case.
9279
9280         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
9281
9282 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
9283
9284         * support/regression/Makefile: inter-port-clean adjusted for mcs51
9285
9286         * support/regression/testfwk.c: removed workaround for bug #436344
9287
9288         * support/regression/tests/bp.c: use less memory with mcs51
9289
9290         * support/regression/tests/bug-441448.c: use less memory
9291
9292         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
9293
9294         * support/regression/collate-results.py: typo
9295
9296 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
9297
9298         * support/regression/tests/fetchoverlap.c: Added new test case.
9299
9300         * support/regression/tests/bp.c: Added new test case.
9301
9302         * support/regression/tests/bug-448984.c: Added new test case.
9303
9304         * support/regression/tests/pow2shifts.c: Added new test case.
9305
9306         * src/z80/gen.c: Turned off the noise it normally generates for the release.
9307         (genlshTwo): Fixed right shift for count > 8.
9308
9309         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
9310
9311 2001-09-08    <johan AT FRIJA>
9312
9313         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
9314
9315 2001-09-07    <johan AT FRIJA>
9316
9317         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
9318
9319         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
9320
9321 2001-09-06    <johan AT FRIJA>
9322
9323         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
9324         * bernhard noted me at this: "() equals to (void)" (1.38)
9325
9326 2001-09-05    <johan AT FRIJA>
9327
9328         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
9329
9330 2001-09-04    <johan AT FRIJA>
9331
9332         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
9333
9334
9335 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
9336
9337         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
9338
9339 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
9340
9341         * link/z80/aslink.h: Fixed path for PATH_MAX
9342
9343 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
9344
9345         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
9346
9347         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
9348
9349         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
9350
9351         * 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.
9352
9353 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
9354
9355         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
9356         (genCmp): Fixed up genCmp for the GB with longs.
9357
9358         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
9359
9360         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
9361
9362         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
9363
9364         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
9365
9366 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
9367
9368         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
9369
9370 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
9371
9372         * 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.
9373
9374         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
9375
9376 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
9377
9378         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
9379
9380         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
9381
9382 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
9383
9384   * sim/ucsim/configure:    little improvement of Cygwin-detection
9385   * sim/ucsim/configure.in: little improvement of Cygwin-detection
9386   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
9387   * support/regression/tests/bug-221100.c: small changes for mcs51
9388   * support/regression/tests/bug-221168.c: small changes for mcs51
9389   * support/regression/tests/bug-227710.c: small changes for mcs51
9390   * support/regression/tests/staticinit.c: small changes for mcs51
9391   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
9392   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9393   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9394
9395 $Revision$