cea1c0c9ae74fd7afc024f2ee6aaa75175f9fd0a
[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
7 2005-08-03 Raphael Neider <rneider AT web.de>
8
9         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
10           to get/set values via pointers
11         * (genUnpackBits,genPackBits): changed detection of
12           ptr->bitfield vs. sym.bitfield, fixed access via generic
13           pointers, removed dead (wrong) code for multibyte bitfields
14         * (genNearPointerGet, genGenPointerGet): removed useless code,
15           fixed bitfield detection, fixes #1250594
16         * (genNearPointerSet): removed useless code
17         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
18           and introduced macro pic16_emitpcode that conditionally emits
19           the origin of the following pCode (useful for debugging SDCC)
20         * src/pic16/pcode.c: changed (and disabled) some debug outputs
21         * (createDefmap): fixed handling of LFSR for --optimize-df
22
23 2005-08-02 Borut Razem <borut.razem AT siol.net>
24
25         * device/lib/Makefile.in: pic16 libraries build enabled since
26           gputils-0.13.2 are now localy installed at sourceforge's compile farm
27
28 2005-08-02 Raphael Neider <rneider AT web.de>
29
30         * src/pic16/gen.c (genPackBits): removed deprecated warning
31         * (genGenPointerSet): fixed bitfield detection
32
33 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
34
35         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
36
37 2005-07-31 Raphael Neider <rneider AT web.de>
38
39         * device/lib/pic16/libdev/pic18f458.c,
40           device/include/pic16/pic18f458.h: added missing T0CONbits
41
42 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
43
44         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
45
46 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
47
48         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
49
50 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
51
52         * device/include/mcs51/at89c51ed2.h: added.
53
54 2005-07-23 Raphael Neider <rneider AT web.de>
55
56         * src/pic/gen.h: added emitpcode macro for debugging
57         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
58           and replace by macro adding debug information on demand
59         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
60         * (gencjne): tried to fix; replaced with correct (slower) code
61         * (gen{Unp,P}ackBits): fixed single bit access
62         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
63         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
64           previous instruction
65         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
66           register has to be handled with care (forbidding movement
67           of assignments/uses, removing assignments completely, ...)
68         * (pCodeOptime2pCodes): make use of regIsSpecial
69         * added lots of debugging output (commented out)
70         * src/pic/rallloc.c (deassignLRs): prevent operand registers
71           from being reused as result UNLESS it is known to work
72
73 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
74
75         * support/Util/dbuf.h: include <stddef.h> for size_t
76         * .version: changed to version 2.5.2
77
78 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
79
80         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
81
82 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
83
84         * src/hc08/gen.c (genMinus): fixed bug #1241835,
85           (genModOneByte): removed needless psha/pula
86
87 2005-07-22 Raphael Neider <rneider AT web.de>
88
89         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
90           have PIC14 handled like PIC16, fixes broken pic14 linker calls
91         * src/pic/gen.c (resolveIfx): do not "invent" labels
92         * (genSkipc): changed to positive logic
93         * (genSkipCond): removed as no longer needed
94         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
95           backport from PIC16
96         * (genLeftShift): check operands are in different registers
97         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
98           INCF does not update CARRY...
99         * src/pic/main.c: fixed _linkCmd
100         * src/pic/pcode.c (unlinkpCode): added inactive code
101         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
102           alive (do not assign result and operand overlapping registers)
103
104 2005-07-22 Raphael Neider <rneider AT web.de>
105
106         * src/pic/device.c (dump_sfr): replaced register declaration with
107           call to emitSymbolToFile() to avoid duplicate symbols
108         * (assignRelocatableRegisters): do not declare external symbols
109         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
110           right (take size of type, not etype)
111         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
112         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
113         * (packRegsForAccUse): disabled assignment of WREG as
114           the result reg to prevent occurence of just fixed #1235003,
115           fixes #1242954
116         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
117           symbols (avoids duplicate symbols in .asm file)
118         * (pic14emitRegularMap): use emitSymbolToFile()
119         * src/pic/gen.c (aopOp): fixed spillLocation handling
120         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
121         * (genDataPointerSet): removed unneccessary variables/output
122
123 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
124
125         * as/mcs51/lkarea.c: enlarged codemap for banked memory
126         * device/lib/mcs51/crtbank.asm: added # to 0x0F
127
128 2005-07-21 Raphael Neider <rneider AT web.de>
129
130         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
131           architecture cannot handle them efficiently, fixes bug #1235003
132         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
133           check for empty sets before using them (fixes bug #1232190)
134
135 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
136
137         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
138           (lnksect2): generate warnings for memory overlap
139         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
140           constseg to set the name of these segments so you can instruct the linker
141           to place them in banks
142         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
143         * src/SDCCglobl.h: added MODEL_HUGE to enum,
144           added code_seg and const_seg to options
145         * src/SDCCglue.c (emitMaps): use options.const_seg,
146           (createInterruptVect): put interrupt vectors in segment HOME,
147           (glue): put HOME before static segment and put the main glue in HOME,
148           (glue): use options.code_seg
149         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
150         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
151           these segments so you can instruct the linker to place them in banks
152           (linkEdit): use code_loc for HOME segment which should be the first
153           segment in code memory now
154         * src/SDCCmem.c: fixed more stuff like bug 1238386
155         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
156           (changePointer): don't change function pointers to code pointers for
157           banked functions,
158           (compareType): added exceptional check for banked function pointers
159         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
160         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
161           after static in code memory
162         * src/mcs51/gen.c: added aopLiteralLong prototype,
163           (aopForSym): use getSize for functions,
164           (genCall): generate banked calls over one trampoline __sdcc_banked_call
165           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
166           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
167           the segment,
168           (genPcall): use call for literal function pointers and generate banked
169           calls over the one trampoline so there's only one place for the user to
170           modify according to his/hers hardware,
171           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
172           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
173         * src/mcs51/main.c: added keyword banked,
174           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
175         * support/Util/SDCCerr.c,
176         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
177           needed for passing the bank and address to the trampoline
178         * device/lib/mcs51/crtbank.asm: added for bankswitching
179         * device/lib/mcs51/Makefile: added crtbank
180
181 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
182
183         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
184           for fields at offset 0 of a struct or union as reported
185           on 2005-07-07 in the developer mailing list.
186
187 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
188
189         * src/SDCCmem.c: fixed bug 1238386
190
191 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
192
193         * src/mcs51/peeph.def: added labelrefcounting for peepholes
194           (patch #1144962), added peephole 300, enabled 259.x
195         * doc/sdccman.lyx: removed screenshot and provided link instead
196
197 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
198
199         * doc/sdccman.lyx: added section about debugging with ddd
200         * doc/figures/ddd_example.eps: screenshot of debugging session
201
202 2005-07-04 Raphael Neider <rneider AT web.de>
203
204         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
205           like CODE pointers, fixes #1115683
206         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
207           call, fixes bugs #1232211, #1228110,
208           fixed wrong casts to pCodeFlow from pCodeInstructions
209
210 2005-07-04 Raphael Neider <rneider AT web.de>
211
212         * src/pic/gen.c (popGet): changed assert to allow for
213           bit operands
214         * (popGetAddr): changed signature to provide
215           an additional index, patched all call sites
216         * (genCmpEq): handle literal-like operands correctly
217         * (genAddrOf): added sanity checks on __code/__data pointers
218         * (genAssign): added handling of symbols from __code section
219         * (gencjne): do not generate code for comparisons whose result
220           is neither stored nor used, fixes bug #1171114
221         * (AccLsh, AccRsh): operate on operand instead of WREG
222         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
223           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
224           by known count
225         * rewrote complete shift-by-literal logic, commented unused
226           functions out
227         * (genConstPointerGet): get multiple bytes (if result size > 1),
228           fixed handling of non-immediate addresses
229         * (genPointerGet): handle CODE pointers like CONST pointers
230         * (genpic14Code): insert C-SRC lines as Cource-pCodes
231         * ({aop,op}_isLitLike): NEW, single place to decide whether an
232           operand is to be treated as a literal or not
233         * (mov2w,genPcall,genCmpEq),
234           src/pic/genarith.c: use aop_isLitLike() to decide between
235           literal/register contents
236         * (addSign): added missing offset
237         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
238           only emit comment in debug-mode,
239           use {aop,op}_isLitLike throughout the file
240         * src/pic/glue.c: fix initializers for pointers (work in progress)
241         * src/pic/pcode.c (get_op): honor index on _const symbols
242         * ({reset,dump}pCodeStatistics): NEW, estimate code size
243         * (dumppBlock): added pCode size estimation
244         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
245           check for IS_SYMOP before OP_SYMBOL'ing
246         * fixed indentation, compacted switch-statements
247         * (allocReg): find free register and allocate it instead of
248           allocating new registers all the time
249         * (deassignLRs): prevent POINTER_GET's from being assigned the same
250           registers as its operands (necessary only for multibyte GETs)
251
252 2005-07-01 Raphael Neider <rneider AT web.de>
253
254         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
255           debugging .asm-output macros FENTRY + FEXIT
256         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
257           way... I wonder...
258         * (emitpComment): NEW, printf to pCode
259         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
260           offset handling
261         * (popGetAddr): NEW, variant of popGet to access an immediates
262           high(er) bytes instead of the n'th byte of memory they reference,
263           replaced popGet with popGetAddr where neccessary
264         * (genDataPointerGet): reactivated and fixed implementation
265         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
266           accesses
267         * (genDataPointerSet): fixed multibyte assignments
268         * (genpic14Code): fixed --i-code-in-asm handling
269         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
270         * (genPlus): fixed index-out-of-bounds error
271         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
272         * src/pic/ralloc.c: added debugging output macro FENTRY2
273         * (spillThis): fixed indentation, enbraced for-body for clarity
274         * (rematStr): commented out as now unused
275         * (regTypeNum): commented out special spill case (overwrites
276           arbitrary values)
277         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
278
279 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
280
281         * doc/sdccman.lyx: documented sfr16/sfr32,
282           added example for using storage class with function pointers
283         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
284
285 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
286
287         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
288         * device/lib/_itoa.c,
289         * device/lib/_ltoa.c: optimized codesize
290         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
291           but don't know how to suppress the double warning.
292         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
293         * support/Util/SDCCerr.c,
294         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
295
296 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
297
298         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
299           fixed old K&R prototypes
300         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
301         * device/lib/_gptrget.c,
302         * device/lib/_gptrgetc.c,
303         * device/lib/_gptrput.c: changed versions for new memory indicator values,
304           also new versions for small generic pointers and banked generic pointers
305         * src/port.h: added const_name
306         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
307         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
308         * src/SDCCcse.c (findPrevIc): check all associative operators
309         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
310         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
311         * src/SDCCmem.c: updated comments,
312           set far-space to 0 for pdata, results in optimized code
313         * src/SDCCmem.h: added macro CONST_NAME
314         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
315           moving the info into the highest bits, see also gptrget/gptrput
316         * src/src.dsp: added sdcc.ico to project files
317         * src/avr/gen.c (genCast): fixed bug 0x%d
318         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
319         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
320           relation between ptr_type and DCL_TYPE,
321           (genCast): fixed bug 0x%d
322         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
323           (CODE)" for const_name
324         * src/hc08/gen.c (genCast): fixed bug 0x%d
325         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
326           (hc08_port): added "CONST (CODE)" for const_name
327         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
328           (aopForRemat, adjustArithmeticResult): disconnected direct relation
329           between ptr_type and DCL_TYPE,
330           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
331           operand* and took AOP() inside function so sfr-ness can be checked,
332           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
333           new prototype,
334           (genFunction, genEndFunction): optimized stack setup,
335           (genMinus): optimized for literals with ending zeroes (in bytes),
336           (genCast): fixed bug 0x%d
337         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
338           (mcs51_port): added "CONST (CODE)" for const_name
339         * src/mcs51/peeph.def: made rule 226 more generic
340         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
341         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
342         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
343         * src/z80/main.c (z80_port): added NULL for const_name,
344           (gbz80_port): added NULL for const_name
345         * support/regression/tests/bug663539.c,
346         * support/regression/tests/sfr16.c: new tests
347
348 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
349
350         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
351
352 2005-06-24 Raphael Neider <rneider AT web.de>
353
354         * device/lib/pic16/libdev/pic18f[68][567]20.c:
355           corrected typos...
356         * device/include/pic16/signal.h: added USBIF
357           and SIG_USB
358
359 2005-06-24 Raphael Neider <rneider AT web.de>
360
361         * device/lib/pic16/libdev/pic18f2455.c,
362           device/include/pic16/pic18f2455.h: NEW
363         * device/include/pic16/pic18fregs.h,
364           device/lib/pic16/pics.all,
365           src/pic16/device.c: added 18f2455
366         * device/lib/pic16/libdev/pic18f[68][567]20.c,
367           device/include/pic16/{pic18f[68][567].h,usart.h}:
368           replaced MULTIPLE_USARTS define with more relaible
369           compatibility sfrs (for USART access)
370
371 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
372
373         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
374           and the output asm file line is printed on two lines.
375
376 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
377
378         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
379           BGT, BLE, BHI, and BLS instructions
380         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
381           genCmpEq): removed
382         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
383           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
384           fixes bug #1216342
385         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
386
387 2005-06-15 Raphael Neider <rneider AT web.de>
388
389         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
390         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
391         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
392           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
393           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
394
395 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
396
397         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
398           Marcel Telka in bug #1215704
399
400 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
401
402         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
403           located in shared memory bank.
404
405 2005-05-31 Raphael Neider <rneider AT web.de>
406
407         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
408           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
409           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
410
411 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
412
413         * device/lib/_strncpy.c: fixed the fix
414
415 2005-05-26 Raphael Neider <rneider AT web.de>
416
417         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
418           initializers with \0, bug #1208187
419         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
420           intializers with \0, bug #1208187
421
422 2005-05-26 Raphael Neider <rneider AT web.de>
423
424         * src/pic16/glue.c (pic16_printIvalChar): fixed string
425           initializers with \0, bug #1208187
426         * src/pic16/main.c (_process_pragma): added sanity checks
427           for stack position and size, emit warnings when appropriate
428
429 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
430
431         * device/lib/_strncpy.c: fixed not filling with \0
432
433 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
434
435         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
436           createFunction),
437         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
438           compound_statement),
439         * src/SDCCsymt.h,
440         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
441
442 2005-05-24 Raphael Neider <rneider AT web.de>
443
444         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
445
446 2005-05-24 Raphael Neider <rneider AT web.de>
447
448         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
449           TRISE definitions, closes bug #1162453
450
451 2005-05-22 Raphael Neider <rneider AT web.de>
452
453         * src/pic16/main.c (_process_pragma): check for missing
454           arguments to pragmas code and udata
455         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
456           consistency fixes to match other headers (thanks to Jim Paris)
457         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
458
459 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
460
461         * src/SDCCicode.c (isOperandEqual): fixed missing ;
462
463 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
464
465         * support/regression/tests/bug1198642.c: new test
466         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
467         * src/SDCCcse.c (findPrevIc): added comment, please have a look
468         * support/scripts/resource.h,
469         * support/scripts/resource.rc,
470         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
471         * support/scripts/sdcc.ico: added 32x32 icon
472
473 2005-05-18 Raphael Neider <rneider AT web.de>
474
475         * device/lib/pic16/libdev/pic18f*.c,
476         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
477           keywords to "__sfr" and "__at (X)"
478         * device/include/pic16/pic18fregs.h: added pic18f4520
479         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
480           #1203088 (MPLAB compatibility)
481
482 2005-05-17 Raphael Neider <rneider AT web.de>
483
484         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
485         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
486         * device/lib/pic16/pics.all: added new devices
487         * src/pic16/device.c: added support for pic18f4520
488
489 2005-05-16 Raphael Neider <rneider AT web.de>
490         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
491         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
492         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
493           convenience function for bit access
494
495 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
496
497         * device/lib/printf_large.c: fixed bug 1193299
498         * support/regression/tests/bug1057979.c: added test %3.3s
499
500 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
501
502         * device/include/mcs51/8051.h,
503         * device/include/mcs51/8052.h: made parseable with lint
504         * device/include/mcs51/lint.h: added include file for (sp)lint
505         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
506         * doc/cdbfileformat.lyx,
507         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
508
509 2005-05-14 Raphael Neider <rneider AT web.de>
510
511         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
512         * device/lib/pic16/libc/stdlib/itoa.c (new)
513         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
514         * device/lib/pic16/libio/Makefile: exclude subdir according to
515           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
516         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
517         * src/pic16/gen.c (genFunction): prevent annoying warning
518         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
519           nameclashes on BeOS
520         * support/cpp2/cppmain.c (cpp_output_string): new
521         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
522           fixes bug 1116802
523
524 2005-05-13 Borut Razem <borut.razem AT siol.net>
525
526         * src/SDCCmain.c (linkEdit): fixed bug 1195202
527
528 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
529
530         * .version: changed to version 2.5.1; back to bleeding edge development
531
532 2005-05-11 Borut Razem <borut.razem AT siol.net>
533
534         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
535           generate PDF version 1.3 documents
536
537 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
538
539         * .version: changed to version 2.5.0
540
541 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
542
543         * doc/sdccman.lyx: updated weblinks, index and smaller updates
544
545 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
546
547         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
548         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
549         well as many smaller updates.
550         * .version: changed to version 2.5.0-pre1
551
552 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
553
554         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
555
556 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
557
558         * support/regression/tests/bug1185672.c: added
559         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
560           bug 1185672
561         * src/mcs51/gen.c (genCall): added comments, made it look safer
562         * src/mcs51/gen.c (genEndFunction): simplified
563
564 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
565
566         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
567
568 2005-04-14 Borut Razem <borut.razem AT siol.net>
569
570         * fixed bug 1045046 - SIGSEGV with really simple code?:
571           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
572           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
573
574 2005-04-14 Borut Razem <borut.razem AT siol.net>
575
576         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
577           src/pic16/device.h: temporarily disabled experimental #inline pragma
578           for 2.5.0 release
579
580 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
581
582         * device/include/z80/stdio.h,
583         * device/include/z80/string.h: removed these highly incomplete files so
584           SDCC can use the default ones in device/include/
585
586 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
587
588         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
589         gcc warning.
590         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
591         fix sdcpp warnings.
592
593 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
594
595         * device/include/malloc.h: removed redundant __reentrant prototypes
596         * device/lib/_mullong.c: added working xstack variant in asm (C version
597           doesn't pass regression tests)
598         * device/lib/bpx.c: used __data and made bpx char for mcs51
599         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
600           (createFunction): fixed bug with xstackPtr
601         * src/SDCCcse.c: corrected comments
602         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
603           (killDeadCode, eBBlockFromiCode): removed unused code
604         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
605           corrected comments
606         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
607           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
608           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
609           (genModOneByte): fixed warning in MSVC
610         * src/mcs51/main.c (): added comments
611         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
612
613 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
614
615         * src/SDCCmain.c (linkEdit): oops, changed one line too many
616
617 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
618
619         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
620
621 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
622
623         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
624         characters arrays of larger size than the declared one.
625
626 2005-04-10 Borut Razem <borut.razem AT siol.net>
627
628         * src/pic/gen.c (genInline),
629           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
630           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
631           (findNextInstruction), (findPrevInstruction),
632           (findInstructionUsingLabel),
633           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
634         * src/pic/pcode.c (findLabel): added missing '\n'
635         * src/src.dsp: added SDCCdwarf2.c to the project
636
637 2005-04-09 Borut Razem <borut.razem AT siol.net>
638
639         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
640
641 2005-04-08 Raphael Neider <rneider AT web.de>
642
643         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
644           into the chain after a given one) and mergeDefmapSymbols (combine
645           defmap entries for each symbol per pcode)
646         * (createDefmap): have defmap entries merged in the end
647         * (defmapReplaceSymRef): split defmap entries covering two accesses to
648           a symbol before replacing one access type's symbol, merge symbols in
649           the end (replacement symbol might already have an entry)
650         * (assignValnums): keep reference to written WREG intact
651
652 2005-04-08 Raphael Neider <rneider AT web.de>
653
654         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
655           Alpha)
656
657 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
658
659         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
660         bytes
661
662 2005-04-07 Raphael Neider <rneider AT web.de>
663
664         * device/include/pic16/usart.h: added compatibility defines for
665           devices with more than one USART
666         * device/include/pic16/pic18f[68][567]20.h: activated above defines
667
668 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
669
670         * device/lib/Makefile.in: updated for port specific include
671
672 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
673
674         * support/regression/ports/mcs51/spec.mk: added mcs51 include
675
676 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
677
678         * device/include/8051.h,
679         * device/include/8052.h,
680         * device/include/at89S8252.h,
681         * device/include/at89c55.h,
682         * device/include/at89x051.h,
683         * device/include/at89x51.h,
684         * device/include/at89x52.h,
685         * device/include/mcs51reg.h,
686         * device/include/reg51.h,
687         * device/include/reg764.h,
688         * device/include/regc515c.h,
689         * device/include/sab80515.h: (re)moved these 12 files
690         * device/include/mcs51/8051.h,
691         * device/include/mcs51/8052.h,
692         * device/include/mcs51/at89S8252.h,
693         * device/include/mcs51/at89c55.h,
694         * device/include/mcs51/at89x051.h,
695         * device/include/mcs51/at89x51.h,
696         * device/include/mcs51/at89x52.h,
697         * device/include/mcs51/mcs51reg.h,
698         * device/include/mcs51/reg51.h,
699         * device/include/mcs51/reg764.h,
700         * device/include/mcs51/regc515c.h,
701         * device/include/mcs51/sab80515.h: and added them here
702
703 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
704
705         * device/include/stdarg.h: changed SDCC specific keywords to double
706           underlined form.
707         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
708           mcs51 and ds390.
709         * device/include/hc08/mc68hc908gp32.h,
710         * device/include/hc08/mc68hc908jb8.h,
711         * device/include/hc08/mc68hc908jkjl.h,
712         * device/include/hc08/mc68hc908qy.h: fixed comments
713         * device/include/mcs51/README: updated
714         * device/include/mcs51/c8051f120.h: added PINRSF
715         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
716         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
717           amidst code. Also inline is not supported.
718
719 2005-04-06 Raphael Neider <rneider AT web.de>
720
721         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
722         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
723           callers stack/frame pointers
724
725 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
726
727         * device/include/pic16/usart.h: added, missing in previous commit,
728         * device/include/pic16/adc.h: fixed typo,
729         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
730         commit,
731         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
732         <p18fxxx.inc>
733         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
734         uninitialized because a bug appears with gplink
735         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
736         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
737         complains for unrecognised option
738
739 2005-04-05 Raphael Neider <rneider AT web.de>
740
741         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
742           structs as well (using memcpy)
743         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
744           on ISRs (GOTO has no label)
745         * src/pic16/device.h: added OF_OPTIMIZE_DF
746         * src/pic16/main.c: added compiler switch --optimize-df to enable the
747           new data flow analysis/optimization
748         * src/pic16/pcode.c: added (prototypes for and implementation of)
749           dataflow analysis functions, fixed pCodeInstructions' inCond and
750           outCond values, made RCALL a branch instruction
751         * (pic16_unlinkpCode): keep C line if possible
752         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
753           C line moved if possible
754         * (pic16_getRegFrompCodeOp): NEW, improved version of...
755         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
756           to use new pic16_getRegFrompCodeOp (works for more SFRs)
757         * (pic16_BuildFlow): fixed skip instructions with label (did not start
758           new flow)
759         * (pic16_getJumptabpCode): NEW, needed in...
760         * (LinkFlow): fixed handling of jumptables, calls and conditional
761           branches
762         * (pic16_InsertCommentAfter): NEW
763         * (pic16_pCodeReplace): made verbose and flow preserving
764         * (AnalyzeFlow): added call to data flow analysis
765         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
766         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
767         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
768
769 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
770
771         * src/SDCCast.c (decorateType): fixed bug #1105626
772
773 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
774
775         * device/include/asm/pic16/features.h,
776         * pic18f*.h headers,
777         * device/include/pic16/adc.h,
778         * device/include/pic16/delay.h,
779         * device/include/pic16/i2c.h,
780         * device/include/pic16/malloc.h,
781         * device/include/pic16/stdio.h,
782         * device/include/pic16/stdlib.h,
783         * device/include/pic16/string.h,
784         * device/lib/pic16/libc/stdio/printf_tiny.c,
785         * device/lib/pic16/libc/stdio/printf_small.c,
786         * device/lib/pic16/libc/stdio/strmgpsim.c,
787         * device/lib/pic16/libc/stdio/strmmssp.c,
788         * device/lib/pic16/libc/stdio/strmusart.c,
789         * device/lib/pic16/libc/stdio/vfprintf.c,
790         * device/lib/pic16/libc/stdlib/ltoa.c,
791         * device/lib/pic16/libc/stdlib/putchar.c,
792         * device/lib/pic16/libc/stdlib/x_ftoa.c,
793         * device/lib/pic16/libc/stdlib/memchrpgm.c,
794         * device/lib/pic16/libc/stdlib/memchrram.c,
795         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
796         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
797         * device/lib/pic16/libio/adc/adcbusy.c,
798         * device/lib/pic16/libio/adc/adcread.c,
799         * device/lib/pic16/libio/adc/adcsetch.c,
800         * device/lib/pic16/libio/usart/ubaud.c,
801         * device/lib/pic16/libio/usart/ubusy.c,
802         * device/lib/pic16/libio/usart/udrdy.c,
803         * device/lib/pic16/libio/usart/uopen.c,
804         * device/lib/pic16/libio/usart/uputc.c,
805         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
806         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
807         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
808         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
809         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
810         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
811         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
812         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
813         specific keywords to double underlined form,
814         * device/lib/pic16/libc/Makefile.rules,
815         * device/lib/pic16/libsdcc/Makefile.rules,
816         * device/lib/pic16/libm/Makefile,
817         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
818         to compile with C standard set in Makefile.common
819         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
820         rand.c and crc.c in compilation process,
821         * device/lib/pic16/libsdcc/int/divuint.c,
822         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
823         `c' from signed to unsigned,
824         * device/lib/pic16/startup/crt0.c,
825         * device/lib/pic16/startup/crt0i.c,
826         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
827         keywords to double underlined form, bug fixes in _do_cinit function
828         which prevented the correct initialization of the .idata segment,
829         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
830         core to enter a infinite loop
831         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
832
833 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
834
835         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
836
837 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
838
839         * device/include/Makefile.in: add support for hc08 subdirectory
840         * device/include/hc08/: new subdirectory
841         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
842         Lucas Loizaga, thanks!
843         * device/include/hc08/mc68hc908qy.h,
844         * device/include/hc08/mc68hc908gp32.h,
845         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
846         their own directory. Changed internal macro names to use the compiler
847         reserved namespace. Changed SDCC specific keywords to double
848         underlined form.
849         * device/include/math.h,
850         * device/include/malloc.h,
851         * device/include/stdarg.h,
852         * device/include/stdbool.h
853         * device/include/string.h,
854         * device/include/tinibios.h,
855         * device/include/ds400rom.h,
856         * device/include/8051.h,
857         * device/include/8052.h,
858         * device/include/80c51xa.h,
859         * device/include/at89c55.h,
860         * device/include/at89S8252.h,
861         * device/include/at89x51.h,
862         * device/include/at89x52.h,
863         * device/include/ds80c390.h,
864         * device/include/reg764.h,
865         * device/include/regc515c.h,
866         * device/include/sab80515.h,
867         * device/include/mcs51/c8051f000.h,
868         * device/include/mcs51/c8051f018.h,
869         * device/include/mcs51/c8051f020.h,
870         * device/include/mcs51/c8051f040.h,
871         * device/include/mcs51/c8051f060.h,
872         * device/include/mcs51/c8051f120.h,
873         * device/include/mcs51/c8051f300.h,
874         * device/include/mcs51/c8051f310.h,
875         * device/include/mcs51/c8051f320.h,
876         * device/include/mcs51/c8051f330.h,
877         * device/include/mcs51/c8051f350.h,
878         * device/include/z180.h: Changed SDCC specific keywords to double
879         underlined form.
880
881 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
882
883         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
884         18F4455,
885         * (pic16_assignConfigWordValue): disable testing of configuration
886         register value with config mask,
887         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
888         function with port->fun_prefix,
889         * (genFunction): when generating a naked interrupt function never
890         create an absolute segment placed in interrupt vector address, place
891         the actual interrupt function at IVA instead, when an interrupt
892         function is generated with unspecified interrupt then do not create
893         the absolute section,
894         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
895         code for generating a call to generic pointer get/put function with
896         a call to function pic16_callGenericPointer(),
897         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
898         the call to the generic pointer get/put functions with prefixing the
899         function name with port->fun_prefix,
900         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
901         * src/pic16/main.c (_process_pragma): prefix function with
902         port->fun_prefix,
903         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
904         calling assembler, old 18Fxxxx macro is deprecated,
905         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
906         PC_ASMDIR in while condition,
907         * (findInstruction): add PC_ASMDIR in while condition,
908         * (buildCallTree): prefix main with port->fun_prefix,
909         * (pic16_pCode2str): fixed bug that didn't emit the memory access
910         identifier for variable with banked access in instructions BTFSS,
911         BTFSC, BCF, BSF, BTG
912         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
913         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
914         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
915         perform optimization when enviroment variable NO_REG_OPT is set,
916         * (insideLRBlock): NEW, return 1 if register is inside an
917         INF_LOCALREGS block,
918         * (RemoveRegFromLRBlock): remove a register that is completely
919         eliminated by register optimization, but it is still left in local
920         register store/restore in/from stack block,
921         * (Remove2pcodes): after removing register, check to see if it
922         should be removed from local register store/restore in/from stack
923         block,
924         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
925         DUMMY_READ_VOLATILE,
926
927         * device/include/pic16/adc.h: minor prototype modifications and
928         update,
929         * device/include/pic16/malloc.h: added GPL notice various
930         modifications,
931         * device/include/pic16/stdint.h: NEW, standard header for ints
932         * device/include/pic16/delay.h: NEW, header for delay functions,
933         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
934         delay1mtcy,
935         * device/include/pic16/signal.h: NEW, header providing helper macros
936         for implementing signal handlers,
937         * device/include/pic16/stdio.h: added prototypes for functions,
938         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
939         prototypes for stdin and stdout, added macro PUTCHAR to
940         automatically implement putchar function prototype,
941         * device/include/pic16/usart.h: modified and updated USART library,
942         * device/lib/pic16/libio/adc/,
943         * device/lib/pic16/libio/i2c: some modifications to improve library
944         performance,
945         * device/lib/pic16/libc/stdio/: modifications for the new printf*
946         family of functions,
947         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
948         family of functions and other sources,
949         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
950         of the PIC18Fxx[28] devices,
951         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
952         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
953         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
954         _do_cinit function, because the previous failed when local variables
955         where not placed in the same memory bank,
956         * device/lib/pic16/libsdcc/char/: various modifications to improve
957         library performance,
958         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
959         information on the new functions of the c library and more...
960
961 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
962
963         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
964
965 2005-03-26 Raphael Neider <rneider AT web.de>
966
967         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
968           if condition == CARRY)
969         * (genCmp): adapted to new genSkipc semantics
970         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
971           on rIfx (genCmp was broken)
972
973 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
974
975         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
976         * src/z80/main.c (_keywords[]),
977         * src/SDCCglobal.h (struct options),
978         * src/SDCC.y,
979         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
980         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
981         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
982         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
983         always available in leading double underscore form. The C99 support is
984         mostly missing, but it's a start.
985         * support/regression/tests/bug-227710.c: fixed nonconforming use of
986         reserved identifier "__data".
987
988 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
989
990         * src/mcs51/peeph.def: fixed bug 1170013
991
992 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
993
994         * device/include/mcs51reg.h: fixed bug 842007
995
996 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
997
998         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
999         last time.
1000
1001 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1002
1003         * src/port.h (struct PORT),
1004         * src/avr/ralloc.c (avr_assignRegisters),
1005         * src/avr/main.c,
1006         * src/ds390/ralloc.c (ds390_assignRegisters),
1007         * src/ds390/main.c,
1008         * src/hc08/ralloc.c (hc08_assignRegisters),
1009         * src/hc08/main.c,
1010         * src/mcs51/ralloc.c (mcs51_assignRegisters),
1011         * src/mcs51/main.c,
1012         * src/pic/ralloc.c (pic14_assignRegisters),
1013         * src/pic/main.c,
1014         * src/pic16/ralloc.c (pic16_assignRegisters),
1015         * src/pic16/main.c,
1016         * src/xa51/ralloc.c (xa51_assignRegisters),
1017         * src/xa51/main.c,
1018         * src/z80/ralloc.c (z80_assignRegisters),
1019         * src/z80/ralloc.h,
1020         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
1021         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
1022         * src/SDCCcse.h,
1023         * src/SDCCdflow.c (computeDataFlow),
1024         * src/SDCCdflow.h,
1025         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
1026         * src/SDCCloop.h,
1027         * src/SDCCcflow.c (*),
1028         * src/SDCCcflow.h,
1029         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
1030         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
1031         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
1032         immedDom() returning wrong block; probably fixes bug #1160833)
1033
1034 2005-03-20 Borut Razem <borut.razem AT siol.net>
1035
1036         * support/scripts/inc2h.pl: WIN32 port
1037
1038 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
1039
1040         * device/lib/makefile.in: added abs.c and labs.c
1041
1042 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
1043
1044         * device/include/stdint.h: added
1045         * device/lib/abs.c: added
1046         * device/lib/labs.c: added
1047         * device/include/stdlib.h: added abs() and labs() prototypes
1048         * device/lib/libsdcc.lib: added abs and labs
1049         * device/include/float.h,
1050         * device/lib/_fsmul.c,
1051         * device/lib/printf_fast.c,
1052         * device/lib/printf_tiny.c: updated comments
1053
1054 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1055
1056         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
1057         bug #1164313
1058
1059 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1060
1061         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
1062         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
1063
1064 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
1065
1066         * device/lib/printf_large.c: removed inline assembly for portability and
1067           readability. Use printf_fast if speed or size are more important.
1068         * src/pic16/gen.c: removed conditions around use of DEBUGpc
1069         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
1070
1071 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
1072
1073         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
1074         prevent compiler warning
1075
1076 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
1077
1078         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
1079         moved to level 0 and declared as static. Also they are explicit
1080         placed in access bank. This was necessery because some times they
1081         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
1082         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
1083         optimizations. Currently only compare to unsigned char is implemented,
1084         * src/pic16/gen.c: added fReturnIdx array,
1085         * (struct resolvedIfx) is moved to gen.h and made public,
1086         * (struct _G): added sregsAlloc and sregsAllocSet fields,
1087         * (aopForSym): added an optimization to directly store in stack of
1088         the operand of a SEND iCode,
1089         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
1090         but as registers instead (AOP_REG) using the fReturnIdx array,
1091         * (pic16_freeAsmop): remove the freed register from the
1092         _G.sregsAlloc field,
1093         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
1094         a compare of 'WREG',
1095         * (pic16_popGetTempRegCond): changed function prototype, now
1096         function takes also a bitVector argument v which holds the current
1097         set of registers that are allocated for stack access by aopForSym,
1098         registers allocated in aopForSym for accessing stack symbols are not
1099         any more part of the functions usedRegs field,
1100         * (genCall): some times aopOp is called for a stack variable to be
1101         send, aopForSym might perform the push, if this is true make sure
1102         that genCall doesn't push the variable twice by testing _G.resDirect,
1103         * (genFunction): changed testing for unspecified interrupt number
1104         from 256 to INTNO_UNSPEC,
1105         * modified selection scheme of frame pointer generation. Previously
1106         if function did use local registers a frame pointer was generated,
1107         now a frame pointer is generated only if function has arguments
1108         (that need PLUSW2 register access), or has stack arguments, or the
1109         compiler is not instructed to omit the frame pointer,
1110         * (genEndFunction): before restoring local registers that were saved
1111         in the function preamble, also restore the registers that *might*
1112         have been allocated for stack access,
1113         * (genRet): removed some old comments,
1114         * (genCmp, the active (RN's) version): added a call to the
1115         pic16_genCmp_special function to perform the compare with a more
1116         robust and optimized way,
1117         * (genInline): a feature has been added in inline code generation,
1118         which allows a wildcard variable substitution when writing inline
1119         assembly. Code is incomplete and experimental therefore undocumented,
1120         * (genCast): changed order of aopOp for result and right to allow
1121         aopForSym to directly load the result if possible,
1122         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
1123         perform an optimized compare on some selected special occasions,
1124         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
1125         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
1126         generate an IVT any more,
1127         * src/pic16/main.c (pic16_optionsTable): added command line option
1128         --optimize-cmp,
1129         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
1130         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
1131         macros,
1132         * src/pic16/NOTES: Raphael Neider added in list of active developers
1133         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
1134         jumptable_end to prevent bug #,
1135         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
1136         inCond and outCond fields,
1137         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
1138         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
1139         turn off register spilling,
1140         * (packRegsForOneUse): synced with other ports' versions although it
1141         is not used currently,
1142         * (pic16_packRegisters): added an optimization while reading
1143         structure bitfields, some registers may be saved (malloc code is
1144         decreased by 80 bytes)
1145
1146 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
1147
1148         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
1149         left is a bitfield, if yes, then don't optimize assignment. Perhaps
1150         this can be optimized more?
1151
1152 2005-03-10 Raphael Neider <rneider AT web.de>
1153
1154         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
1155           genNearPointerGet): (hopefully) fixed access to bitfields via
1156           pointers (p->bitN = x; and x = p->bitN; failed)
1157
1158 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
1159
1160         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
1161
1162 2005-03-09 Raphael Neider <rneider AT web.de>
1163
1164         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
1165
1166 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
1167
1168         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
1169         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
1170           (regTypeNum): set REG_BIT type if necessary
1171         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
1172         * support/regression/tests/critical.c: check bug 1144613
1173
1174 2005-03-02 Raphael Neider <rneider AT web.de>
1175
1176         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
1177
1178 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1179
1180         * src/avr/ralloc.c (serialRegAssign),
1181         * src/ds390/ralloc.c (serialRegAssign),
1182         * src/hc08/ralloc.c (serialRegAssign),
1183         * src/mcs51/ralloc.c (serialRegAssign),
1184         * src/pic/ralloc.c (serialRegAssign),
1185         * src/pic16/ralloc.c (serialRegAssign),
1186         * src/xa51/ralloc.c (serialRegAssign),
1187         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
1188
1189 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
1190
1191         * src/SDCCast.c (decorateType): fixed bug 1124787
1192
1193 2005-02-20 Hubert Sack <sack AT digiplan.de>
1194         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1195
1196         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
1197         patch #1121755
1198
1199 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1200
1201         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
1202         to keep the correct label reference count when adding/removing references
1203         to labels. A peephole file using this is appended to patch #1144962.
1204
1205 2005-02-14 Raphael Neider <rneider AT web.de>
1206
1207         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
1208         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
1209         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
1210           retrievals of result operand's value on assignment
1211
1212 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
1213
1214         * device/include/pic16/string.h: modified prototype for memccpy()
1215         to memccpy(void *, void *, char, size_t)
1216         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
1217         check whether to omit frame pointer or not,
1218         * (genInline): convert all occurences of "\n" to LF in inline
1219         assembler blocks, this helps formatting the inline text,
1220         * (pic16_loadFSR0): modified prototype,
1221         * (genNearPointerGet, genNearPointerSet): reorganization of code,
1222         removed some 8051 legacy code,
1223         * (genPackBits): enabled handling bitfields exceeding one byte in size,
1224         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
1225         before allocating temporary registers in functions,
1226
1227 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1228
1229         * support/regression/tests/bitvars.c: corrected the "fix"
1230
1231 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1232
1233         * support/regression/tests/bitvars.c,
1234         * support/regression/tests/bitwise.c,
1235         * support/regression/tests/rotate.c: "fixed" problems on Alpha
1236
1237 2005-02-10 Raphael Neider <rneider AT web.de>
1238
1239         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
1240           different size for Alpha
1241         * src/pic16/gen.c (genCmpEq) : improved compare with 0
1242
1243 2005-02-09 Raphael Neider <rneider AT web.de>
1244
1245         * src/SDCC.lex(doPragma) : save and restore warning options as well
1246           (also added new stack plus clone- and copyAndFreeSDCCERRG())
1247         * have #pragma less_pedantic set the errorlevel to WARNING
1248           (fixes #1117001)
1249         * (cloneOptimize) : fixed wrong malloc's size
1250         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
1251           facilitate correct handling of #pragma (save|restore)
1252
1253 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1254
1255         * src/mcs51/gen.c: removed non-standard C nameless struct/union
1256
1257 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
1258
1259         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
1260
1261 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
1262
1263         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
1264
1265 2005-02-02 Raphael Neider <rneider AT web.de>
1266
1267         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
1268         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
1269         * (pic16_storeForReturn): fixed to allow returning function pointers
1270         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
1271         * device/include/pic16/{stddef.h,stdbool.h}: added
1272
1273 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
1274
1275         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
1276
1277 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
1278
1279         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
1280         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
1281          appeared to be required
1282
1283 2005-01-31 Borut Razem <borut.razem AT siol.net>
1284
1285         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
1286           include/mcs51 and include/z80 directories to the package
1287
1288 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1289
1290         * src/hc08/gen.c (genFunction): fixed bug #1112752
1291
1292 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1293
1294         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
1295
1296 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1297
1298         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
1299
1300 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
1301
1302         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
1303
1304 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
1305
1306         * device/include/c8051fxxx.h: removed these 6 files
1307         * device/include/mcs51/c8051fxxx.h: added these 11 new files
1308
1309 2005-01-26 Raphael Neider <rneider AT web.de>
1310
1311         * src/pic16/gen.c (genAssign): fixed assignment from longs
1312           in codespace (were cut to three bytes)
1313         * (genDummyRead): implemented (except for CODESPACE...),
1314           fixed bug #1108575
1315         * src/pic16/glue.c (emitStatistics): beautified
1316         * device/lib/pic16/libm/Makefile: added include path
1317
1318 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1319
1320         * src/z80/gen.c (aopPut): fixed bug #1103902
1321
1322 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1323
1324         * device/lib/expf.c: fixed bug #1095792
1325
1326 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
1327
1328         * device/lib/pic16/libm: added Math library sources
1329
1330 2005-01-24 Raphael Neider <rneider AT web.de>
1331
1332         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
1333           to enable upcast to pCodeOpReg2 (there is no type tag to
1334           differenciate the two and pic16_popGet2p cast into PCOR2)
1335         * src/pic16/main.c (_process_pragma): fixed another malloc bug
1336           (sizeof(sectNames) changed to sizeof(sectName))
1337           Both patches fix segfaults under MinGW.
1338
1339 2005-01-23 Raphael Neider <rneider AT web.de>
1340
1341         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
1342           Safe_[mc]?alloc()'ed variables
1343         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
1344           of (byte sized) temporaries (assign them to WREG for now)
1345         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
1346           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
1347           this might fix SIGSEGVs on MinGW...
1348         * src/SDCCopt.c (killDeadCode): restored original behaviour
1349           (volatile operands might get thrown away though)
1350
1351 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
1352
1353         * src/pic16/gen.c: fixed bug #1106975,
1354         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
1355         pointer update, INTCON is saved, global interrupts are disabled and
1356         restored after updateing TOS.
1357         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
1358         * added function attribute 'shadowregs' to take advantage of shadow
1359         registers,
1360         * added function attribute 'wparam' as an alternative to the wparam
1361         pragma,
1362         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
1363         user declares a non-ISR function as 'shadowregs',
1364         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
1365
1366 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
1367
1368         * .version: bumped version number to 2.4.8
1369         * device/lib/pic16/pics.all: list of PIC18F devices supported by
1370         pic16 port,
1371         * device/lib/pic16/libio/i2c/: I2C module support library,
1372         * device/include/pic16/i2c.h: I2C support library header,
1373         * device/lib/pic16/libc/stdio/: standard IO support sources,
1374         * (printf_small.c): printf_small() source, supports float print,
1375         * (printf_tiny.c): printf_tiny() source, does not support floats,
1376         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
1377         enable global optimizations for entire library source, other
1378         Makefiles in the source tree are also modified to reflect this,
1379         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
1380         function,
1381         * doc/sdccman.lyx: updated to reflect new changes,
1382         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
1383         sym->onStack if-case,
1384         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
1385         sbit, idata, _idata, xdata, _xdata,
1386         * added pragma library, to link an external library, (see doc),
1387         * removed command line options, --pomit-config-words, --pomit-ivt,
1388         --pleave-reset-vector,
1389         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
1390         when calling assembler to reflect memory model used, also define
1391         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
1392         reflect stack model used,
1393         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
1394         on stack return NULL,
1395
1396 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1397
1398         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
1399           of the operands is volatile. Fixes #1020220
1400
1401 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1402
1403         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
1404         * (OptimizeRegUsage): make sure that there is really no other flow where
1405           the first pCode is used
1406
1407 2005-01-22 Raphael Neider <rneider AT web.de>
1408
1409         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
1410           to fix #1106967 (pCode->seq are not set up correctly)
1411
1412 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1413
1414         * src/SDCCglue.c (glue): make sure code area is declared before the
1415         static initialization area.
1416
1417 2005-01-21 Raphael Neider <rneider AT web.de>
1418
1419         * device/lib/Makefile.in: fixed test for pic16 install dir
1420         * device/lib/pic16/*/Makefile*: modified compile flags to enable
1421           optimizations
1422         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
1423           added --optimize-goto compiler switch and pragma wparam documentation
1424         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
1425         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
1426           and PRODH closing bug #1071770 (peephole optimizer)
1427
1428 2005-01-19 Raphael Neider <rneider AT web.de>
1429
1430         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
1431           cmdLine buffers (used when calling sdcpp...) are large enough
1432           (MAX_PATH=256 truncates arguments leading to system halts when
1433           used in MinGW...)
1434         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
1435         * (genUminus): rewritten to for efficiency
1436         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
1437           used uninitialized in some cases)
1438         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
1439           copy the third byte from the int -- now assumes 0x80 (data memory)
1440         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
1441           operands (genAddLit expects the iCode's operands to swapped as
1442           well), fixed leftover bytes (crashed for short left operands)
1443         * (pic16_genMinusDec): performance improvements, removed false
1444           PIC14 emitSKPNCs
1445         * (pic16_genMinus): fixed to cope with differently sized operands
1446         * src/pic16/glue.c (pic16_glue): added new banksel optimization
1447           for --obanksel > 1
1448         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
1449         * src/pic16/graph.[ch]: implementation of directed graphs, used by
1450           new banksel optimization
1451         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
1452           analysis for temporary registers (segfaults...)
1453         * src/pic16/peeph.def: added rule
1454
1455 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
1456
1457         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
1458         which converts a float number to its ASCII representation
1459         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
1460         functions to convert the fractional and integer part of a float to ASCII,
1461         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
1462         realloc.c): added _MALLOC_SPEC to explicit place variables in data
1463         ram
1464         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
1465         _STATMEM macros,
1466         * device/include/pic16/adc.h: added GPL info,
1467         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
1468         a pCodeOp as tested operand,
1469         * (genNearPointerGet): optimized bit testing, does not use
1470         intermediate register for bit value, test directly instead with
1471         BTFSS, BTFSC, works only for single bits,
1472         * (genpic16Code): dump the name of the iCode in the asm,
1473         * src/pic16/ralloc.c (decodeOp): removed static declaration and
1474         renamed to pic16_decodeOp,
1475         * (serialRegAssign): do not allocate a temporary register for iCode
1476         sequences that test a single bit for 1/0
1477
1478 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
1479
1480         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
1481         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
1482         access stack and frame pointers. They are initially assigned to
1483         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
1484         accessing SFRs. Updated all occurences of modification of stack or
1485         frame pointer in gen.c and pcode.c,
1486         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
1487         assigning of a literal value to pointers,
1488         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
1489         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
1490         selected
1491
1492 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
1493
1494         * doc/sdccman.lyx: update documentation about stack pragma, added
1495         some info for stack memory models
1496
1497 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1498
1499         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
1500
1501 2005-01-08 Raphael Neider <rneider AT web.de>
1502
1503         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
1504           udata sections to fix bug #1097823
1505
1506 2005-01-05 Raphael Neider <rneider AT web.de>
1507
1508         * src/pic16/gen.c (genGenericShift): added handling of differently
1509           sized left operand and result
1510
1511 2005-01-04 Raphael Neider <rneider AT web.de>
1512
1513         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
1514         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
1515           to hold the condition bit)
1516         * added new version of genCmp (old code available via #define)
1517         * added new version of genShiftLeft/genShiftRight in a generic
1518           way, now supports shifting by negative values
1519         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
1520           shiftCount (expected by genGenericShift)
1521         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
1522         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
1523           dump
1524         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
1525           is an invalid literal too...)
1526
1527 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
1528
1529         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
1530         from Raphael Neider,
1531         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
1532         for 8-bit literals. This fixes some literal operands which are sign
1533         extended to 16-bits ints when instruction needs only 8-bits.
1534
1535 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
1536
1537         * device/lib/logf.c: added mcs51 assembly version
1538         * device/lib/expf.c: added mcs51 assembly version
1539         * device/lib/_logexpf.c: new shared asm code for expf and logf
1540         * device/include/math.h: add defines for assembly math library
1541         * device/lib/Makefile.in: build new _logexpf.c
1542         * device/lib/libfloat.lib: use new _logexpf.c
1543
1544 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
1545
1546         * src/pic/device.c
1547         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
1548           device types which have less than 0x7f registers.
1549
1550 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
1551
1552         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
1553
1554 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
1555
1556         * device/lib/printf_fast.c: only build on supported arch.
1557         * device/lib/printf_tiny.c: only build on supported arch.
1558         * device/lib/printf_fast_f.c: only build if asm float lib
1559         * device/lib/_fsget1arg.c: only build if asm float lib
1560         * device/lib/_fsget2args.c: only build if asm float lib
1561         * device/lib/_fsnormalize.c: only build if asm float lib
1562         * device/lib/_fsreturnval.c: only build if asm float lib
1563         * device/lib/_fsrshift.c: only build if asm float lib
1564         * device/lib/_fsswapargs.c: only build if asm float lib
1565         * device/include/stdio.h: don't provide print_fast,
1566           print_fast_f, print_tiny prototypes if --xstack used
1567
1568 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
1569
1570         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
1571         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
1572           to the SOURCES
1573
1574 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
1575
1576         * device/lib/printf_fast_f.c: same as printf_fast, but
1577           with floating point enabled
1578         * device/lib/printf_fast.c: minor tweaks
1579         * device/include/stdio.h: add printf_fast_f
1580
1581 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
1582
1583         * src/SDCCmain.c: make --float-reent default for mcs51
1584         * device/lib/_fsadd.c: added mcs51 assembly version
1585         * device/lib/_fssub.c: added mcs51 assembly version
1586         * device/lib/_fsmul.c: added mcs51 assembly version
1587         * device/lib/_fsdiv.c: added mcs51 assembly version
1588         * device/lib/_fseq.c: added mcs51 assembly version
1589         * device/lib/_fsneq.c: added mcs51 assembly version
1590         * device/lib/_fsgt.c: added mcs51 assembly version
1591         * device/lib/_fslt.c: added mcs51 assembly version
1592         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
1593         * device/lib/Makefile.in: add _fscmp to build
1594         * device/lib/libfloat.lib: add _fscmp to build
1595
1596 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
1597
1598         * device/lib/_fs2slong.c: added mcs51 assembly version
1599         * device/lib/_fs2sint.c: added mcs51 assembly version
1600         * device/lib/_fs2schar.c: added mcs51 assembly version
1601         * device/lib/_fs2ulong.c: added mcs51 assembly version
1602         * device/lib/_fs2uint.c: added mcs51 assembly version
1603         * device/lib/_fs2uchar.c: added mcs51 assembly version
1604         * device/lib/_slong2fs.c: added mcs51 assembly version
1605         * device/lib/_sint2fs.c: added mcs51 assembly version
1606         * device/lib/_schar2fs.c: added mcs51 assembly version
1607         * device/lib/_ulong2fs.c: added mcs51 assembly version
1608         * device/lib/_uint2fs.c: added mcs51 assembly version
1609         * device/lib/_uchar2fs.c: added mcs51 assembly version
1610         * device/include/float.h: added #define to select asm vs c
1611
1612 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
1613
1614         * device/lib/printf_fast.c: improvements to float output
1615         * device/include/float.h: add defines for assembly float library
1616         * device/lib/_fsget1arg.c: receive 1 float arg
1617         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
1618         * device/lib/_fsnormalize.c: normalize a float
1619         * device/lib/_fsreturnval.c: return float, various helper routines
1620         * device/lib/_fsrshift.c: right shift a float's mantissa
1621         * device/lib/_fsswapargs.c: swap 2 floats
1622         * device/lib/Makefile.in: build these 6 new files for mcs51
1623         * device/lib/libfloat.lib: add these 6 files to the library
1624
1625 2004-12-26 Borut Razem <borut.razem AT siol.net>
1626
1627         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
1628           built by gcc 3.4.2
1629
1630 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
1631
1632         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
1633           and fully reentrant and register bank neutral.
1634         * device/lib/printf_fast.c: added float (not enabled by default),
1635           added compact/slower integer (also not enabled by default),
1636           improved size/speed of fast integer code, other minor changes
1637         * device/include/stdio.h, device/lib/Makefile.in,
1638           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
1639
1640 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
1641
1642         * src/pic16/pcode.c: declaring variables other than at the start of a
1643           block is not supported in C by VC6.
1644
1645 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
1646
1647         * applied a previous patch from Raphael Neider that wasn't included
1648         in the previous commits, which fixes infinite loops within jumptable
1649         improvements,
1650         * made some fixes that previous patches introduced
1651
1652 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
1653
1654         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
1655         that fixes an issue with AOP_PCODE asmop's offset,
1656         * (pic16_popCopyReg): update instance field too,
1657         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
1658         function of pic port,
1659         * (genCmp, genAnd, genAssign),
1660         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
1661
1662 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
1663
1664         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
1665         variables initial values to idata section,
1666         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
1667         variables in some functions. This utilizes parmBytes field of iCode
1668         structure to hold the offset of the variable in stack. (might be
1669         able to use the stack field too?)
1670         * applied patch from Raphael Neider # ### , # ###
1671         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
1672         variable initial values in idata section,
1673         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
1674         for static variables with initial value
1675         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
1676         applied fix in while loop from Raphael Neider.
1677
1678 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
1679
1680         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
1681         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
1682         * src/ds390/ralloc.c (serialRegAssign): spill bits
1683         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
1684         * support/Util/SDCCerr.c,
1685         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
1686         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
1687         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
1688
1689 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
1690
1691         * device/include/sdcc-lib.h: inserted LGPL, added includes
1692           asm/ds390/features.h and asm/mcs51/features.h
1693         * device/include/asm/default/features.h,
1694         * device/include/asm/gbz80/features.h,
1695         * device/include/asm/z80/features.h: added empty _AUTOMEM
1696           and _STATMEM
1697         * device/include/asm/ds390/features.h,
1698         * device/include/asm/mcs51/features.h: added files with defines for
1699           _AUTOMEM and _STATMEM indicating automatic and static storage class
1700         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
1701         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
1702         * src/SDCCicode.c (geniCodeCast),
1703         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
1704         * src/SDCCloop.c (loopInduction): removed unused variable lr
1705         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
1706           to convertToFcall to include char modulo (RFE 1065037), added check
1707           if left operand is unsigned and use abs of literal value
1708         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
1709           as it doesn't work after conversion from peephole.def to peephole.rul
1710         * src/mcs51/gen.c (toBoolean): added check for size,
1711           (genModOneByte): optimized code for signed char modulo a literal
1712           power of 2 (thanks to Hubert Sack),
1713           (genRRC): removed unnecessary "clr c",
1714           (genRLC): replaced "add a,acc" with cheaper "rlc a"
1715         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
1716           jump optimization,
1717           swapped rules 256.c and 256.d,
1718           extended 256.d by using new multiple checks (thanks Erik),
1719           added rules 256.e and 256.f,
1720           updated rule 261.a and 261.b to new generated code
1721         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
1722
1723 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1724
1725         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
1726           induction related bugs, including first part of bug #1074377
1727
1728 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
1729
1730         * applied patch from bug-report #1076292,
1731         * applied patches for genAnd and Goto-optimizations for Raphael
1732         Neider,
1733         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
1734         dump a less iCode information,
1735         * src/pic16/device.h (pic16_options_t): added field debgen,
1736         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
1737         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
1738         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
1739         puclic,
1740         * (various functions): added macros FENTRY and FENTRY2 to functions,
1741         to emit function prologue,
1742         * (various functions): fixed indentation,
1743         * (genNearPointerGet): fixed loading of FSR0,
1744         * (genPackBits): applied patch from Raphael Neider to fix updating
1745         of FSR0 and touching only the modified bits,
1746         * src/pic16/genarith.c (various functions): added macros FENTRY to
1747         emit function prologue in comments,
1748         * src/pic16/pcode.h: added functions debugf2, debugf3,
1749         * src/pic16/ralloc.c: partial fix for packForPush caused
1750         segmentation fault,
1751
1752 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1753
1754         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
1755           <stsp AT users.sourceforge.net> with reversed byte order
1756         * support/regression/tests/rotate.c: added (ds390 skips some tests)
1757
1758 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1759
1760         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
1761           bug #1074377
1762         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
1763         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
1764
1765 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
1766
1767         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
1768
1769 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1770
1771         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
1772           conditions,
1773           (setFromConditionArgs): friendly operand parser for peephole rules,
1774           (operandBaseName, operandsNotRelated): new peephole condition
1775           "operandsNotRelated" -- similar to "operandsNotSame", but takes
1776           architecture specific register naming into account, handles n-way
1777           comparisons, and supports quoted literals
1778         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
1779
1780 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1781
1782         * src/mcs51/peeph.def: fixed bug #1076940
1783
1784 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
1785
1786         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
1787
1788 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1789
1790         Adding support for replacing ljmps with sjmps in jumptables
1791         generated for switch statements. For now you need to set the
1792         environment variable SDCC_SJMP_JUMPTABLE to enable this.
1793         Now 4 algorithms for mcs51 jumptable generation are used:
1794         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
1795         addresses loaded pc-relative for up to 112 cases and stack-pushing
1796         target addresses loaded with offset from dptr for up to 256 cases.
1797
1798         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
1799         * src/mcs51/main.c: adapted constants for switch table generation
1800         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
1801
1802 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
1803
1804         * device/lib/printf_large.c (_print_format): fixed bug 1073386
1805         * support/regression/tests/bug1057979.c: added test for bug 1073386
1806
1807 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
1808
1809         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
1810         compilers
1811
1812 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
1813
1814         * src/pic16/device.h,
1815         * src/pic16/genarith.c,
1816         * src/pic16/glue.c,
1817         * src/pic16/main.c,
1818         * src/pic16/pcode.c: applied patches #1068154 and #1070213
1819
1820 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
1821
1822         Large cummulative patch for pic16 port.
1823         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
1824         to call when a stack overflow occurs,
1825         * (malloc.h): added CVS Id tag,
1826         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
1827         variable,
1828         * added libc directory. The current version of LibC contains string
1829         functions, ctype functions and macros and some functions of the
1830         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
1831         be extensively tested in the future. Standard disclaimer here.
1832         Library is not automatically build yet. But one can build it by
1833         invoking 'make' inside the libc directory.
1834         * added ADC library under libio. Preliminary version yet.
1835
1836         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
1837         * src/pic16/gen.c (aopForRemat): asmop size is filled by
1838         aopForRemat() now and not by pic16_aopOp(),
1839         * (pic16_popGetTempReg): removed warning messgae when allocating
1840         temporary registers, its a buggy feature and will be removed,
1841         * (pic16_popGet): set register instance field in AOP_CRY,
1842         * (pic16_outBitC): fixed for results in size greater than 1,
1843         * (genUminusFloat): fixed for pic16, ported code from mcs51,
1844         * (pic16_storeForReturn): optimized return of 0,
1845         * (genCmp): experimental code for new genCmp which uses PIC18's
1846         special compare&skip instructions. Initial tests fail some times
1847         with variables grater than 1 byte in size, so new code is disabled,
1848         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
1849         a single bit,
1850         * (genCast): began a fix to optimize the casting of a bit to another
1851         bit, now assigning a bitfield to another bitfield will fail, sorry,
1852         * src/pic16/main.c: disabled the use of lr-support feature,
1853         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
1854         * added some function prototypes, added function _debugf prototype,
1855         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
1856         bits with offset (case PO_GPR_BIT),
1857         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
1858         command line,
1859         * (isBankInstruction): modified to return 0 for no banking instruction,
1860         and 1 for banking instruction,
1861         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
1862         caused stop processing pCodes after a inline assembly block,
1863         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
1864         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
1865         registers when it shouldn't,
1866         * src/pic16/ralloc.c (allocReg): add preliminary support for
1867         supporting a limited set of temporary registers,
1868
1869 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1870
1871         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
1872           genDataPointerSet): ensure assignments always copy in MSB to LSB
1873           order,
1874           (loadRegFromAop): recognize CLRH optimization,
1875           (genFunction): optimize RECEIVE iCodes in reentrant functions
1876
1877 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1878
1879         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
1880           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
1881           selected.
1882         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
1883         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
1884           contiguous with data
1885
1886 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1887
1888         * device/lib/_gptrget.c (_gptrget),
1889         * device/lib/_gptrgetc.c (_gptrgetc),
1890         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
1891           instead of sjmp to ret
1892         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
1893           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
1894
1895 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
1896
1897         * .version: bumped version to 2.4.7
1898         * device/lib/_gptrget.c (_gptrget): is now _naked
1899         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
1900         * device/lib/_gptrput.c (_gptrput): is now _naked
1901         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
1902           (createFunction): fixed xstack
1903         * src/SDCCglue.c (emitMaps): set allocation required for bit area
1904         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
1905           or bit either,
1906           (geniCodeCritical): store original interrupt state in an iTemp bit
1907           var unless stack-auto
1908         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
1909         * src/SDCCmain.c (setIncludePath): added include/target to search path
1910         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
1911         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
1912           prototype,
1913           (processFuncArgs): put bit vars in bit area
1914         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
1915           unsaveRBank): fixed xstack,
1916           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
1917           (genFunction, genEndFunction): fixed xstack,
1918           (genAssign): optimization don't walk backwards through mem
1919         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
1920         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
1921         * support/regression/Makefile: also make library (for stack-auto) when
1922           making "all" and added "test-mcs51-xstack-auto"
1923         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
1924         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
1925         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
1926         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
1927         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
1928           make-library by MAKE_LIBRARY
1929         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
1930           regression tests for xstack
1931         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
1932         * support/regression/tests/critical.c: test for critical on mcs51
1933
1934 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1935
1936         * support/regression/ports/ucz80/spec.mk: use include and lib files from
1937           built version of sdcc instead of installed version
1938
1939 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
1940
1941         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
1942         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
1943           vprintf.c now
1944         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
1945         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
1946           WARNING: remove device/lib/build/z80/printf.o by hand when
1947           updating from previous build!
1948         * device/lib/z80/printf.c: updated comment
1949         * support/regression/tests/bug1057979.c: test all ports now
1950         * support/regression/tests/bug1065458.c: file added
1951
1952 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1953
1954         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
1955           *_start and *_end symbols for static functions
1956
1957 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
1958
1959         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
1960           and search crt0.o in all library paths,
1961           (setIncludePath): proper handling of --nostdinc,
1962           (setLibPath): proper handling of --nostdlib
1963         * support/regression/Makefile,
1964         * support/regression/ports/ds390/spec.mk,
1965         * support/regression/ports/gbz80/spec.mk,
1966         * support/regression/ports/hc08/spec.mk,
1967         * support/regression/ports/mcs51/spec.mk,
1968         * support/regression/ports/mcs51-large/spec.mk,
1969         * support/regression/ports/mcs51-stack-auto/spec.mk,
1970         * support/regression/ports/z80/spec.mk: use include and lib files from
1971           built version of sdcc instead of installed version
1972         * doc/sdccman.lyx: fixed typo in --nostdinc
1973
1974 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
1975
1976         * src/pic/pcode.c,
1977         * src/pic/device.c,
1978         * src/pic/ralloc.c,
1979         * src/pic/gen.c : added support to generate code for struct bit fields.
1980
1981 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
1982
1983         * as/xa51/xa_version.h,
1984         * device/include/errno.h,
1985         * device/include/regc515c.h,
1986         * device/lib/_itoa.c,
1987         * device/lib/_ltoa.c,
1988         * device/lib/ser_ir_cts_rts.c,
1989         * sim/ucsim/xa.src/glob.cc,
1990         * sim/ucsim/xa.src/inst_gen.cc,
1991         * sim/ucsim/xa.src/xa_bit.cc,
1992         * sim/ucsim/xa.src/xa_sfr.cc,
1993         * sim/ucsim/z80.src/inst_dd.cc,
1994         * sim/ucsim/z80.src/inst_fdcb.cc,
1995         * support/scripts/keil2sdcc.pl,
1996         * src/pic16/pic16.dsp,
1997         * src/pic16/pic16a.dsp: corrected cvs line endings
1998         * device/lib/printf_large.c: fixed bug 1057979
1999         * src/pic16/gen.c: fixed non-C standard code
2000         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
2001         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
2002         * support/regression/ports/mcs51/support.c: reload T1 asap
2003         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
2004           pdata use and clear idata startup behaviour
2005         * support/regression/tests/bug1057979.c: added
2006
2007 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
2008
2009         * device/examples/ds390/ow390/ad26.h,
2010         * device/examples/ds390/ow390/cnt1d.h,
2011         * device/examples/ds390/ow390/crcutil.c,
2012         * device/examples/ds390/ow390/ownet.h,
2013         * device/examples/ds390/ow390/owsesu.c,
2014         * device/examples/ds390/ow390/swt12.h,
2015         * device/examples/ds390/ow390/swtoper.c,
2016         * device/examples/ds390/ow390/temp10.h,
2017         * device/examples/ds390/ow390/thermodl.c,
2018         * device/examples/ds390/tinitalk/tinitalk.dsp,
2019         * device/examples/ds390/tinitalk/tinitalk.dsw,
2020         * device/examples/mcs51/clock/hw.h,
2021         * device/examples/mcs51/simple2/go.bat,
2022         * device/examples/serialcomm/windows/serial.h,
2023         * device/examples/xa51/dummy.c,
2024         * device/examples/xa51/hello.c,
2025         * device/include/80c51xa.h,
2026         * device/include/at89x051.h: corrected cvs line endings
2027
2028 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
2029
2030         * src/pic16/main.c (options): added command line --gstack, to trace
2031         stack over/under flows,
2032         * added pragma 'wparam' to allow passing first byte of function
2033         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
2034         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
2035         call to __gstack_test function and sets up the symbol as extern,
2036         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
2037         * popaop): added call to pic16_testStackOverflow,
2038         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
2039         wparamList list,
2040         * (genCall, genPcall): now all parameters are passed via stack
2041         except in functions that are pass to wparam pragma in which WREG is
2042         used too,
2043         * (genPcall): REENTRANT flag is checked to see if variable prototype
2044         contains reentrant keyword, don't call a non-reentrant function, via
2045         a reentrant function pointer or vice versa, functions are never
2046         passed via WREG,
2047         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
2048         D.Winkler,
2049         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
2050         SIGSEGV when accessing a NULL register stucture,
2051         * (pic16_printGPointerType): modified to handle UPPER modifier for
2052         function initializers, changed prototype of function to simpler one,
2053         * (pic16_printIvalFuncPtr): check to see if function is already
2054         added in externs list,
2055         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
2056         optimized a move from W to SFR with a move to the same register
2057         later after a CALL,
2058         * device/lib/pic16/debug: NEW directory, contains debug features
2059         which are enabled when linking with libdebug.lib, currently command
2060         line option --gstack enables stack pointer tracing for over/under
2061         flow, corresponding sources are in debug/gstack
2062
2063 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
2064
2065         * doc/sdccman.lyx: updated SDCC version,
2066         * (PIC16 port): update list of command line options,
2067         * src/pic16/device.h (structure pic16_options_t): added field gstack
2068         to enable stack overflow tracing on push/pops,
2069         * src/pic16/device.c (statistics structure): added statistics
2070         structure,
2071         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
2072         pic16_dump_int_registers): increase statistics counters for each
2073         * variable which is encountered
2074         * (pic16_dump_usection): emit each .udata variable to its own udata
2075         section,
2076         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
2077         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
2078         parameters via stack, otherwise use old scheme,
2079         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
2080         assembler output file,
2081         * src/pic16/main.c: added command line options --gstack to enable
2082         push/pop tracing for stack overflow,
2083         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
2084         instructions): added size of each instruction,
2085         * (pic16_countInstruction): estimate size of instructions in
2086         the_pFile list, inline assembly blocks are not counted,
2087         * (pic16_FixRegisterBanking): trace previous register usage, when
2088         banksel optimizations is greater than 0, don't emit a redudant
2089         banksel directive,
2090
2091 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
2092
2093         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
2094         * src/pic16/ralloc.c : applied same fix for pic16.
2095         * src/pic/gen.c : tidied it up a little.
2096
2097 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2098
2099         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
2100         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
2101
2102 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2103
2104         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
2105
2106 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2107
2108         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
2109         non-reentrant function __modsint in the interrupt function (thus
2110         corrupting math operations during serial I/O)
2111         * device/lib/ser_ir.c: as above, changed buffersize
2112         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
2113         256.c,d for zeroing
2114         * doc/Makefile: added option -t for rsync
2115
2116 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2117
2118         * src/SDCCast.h (struct ast),
2119         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
2120
2121 2004-10-20 Borut Razem <borut.razem AT siol.net>
2122
2123         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
2124         package
2125
2126 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
2127
2128         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
2129         makefile targets,
2130         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
2131         support functions to replace long sequences of MOVFF's from access
2132         bank registers to stack and vice versa,
2133         * src/pic16/device.h: added new field opt_flags, where optimization
2134         flags can be set to enable certain features,
2135         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
2136         * pBlock, (genFunction, genEndFunction): surroung loop for
2137         saving/loading used registers in stack with PC_INFO pCodes,
2138         INF_LREGS. Code in between can then be optimized by pCode optimizer
2139         to support function calls,
2140         * (genDataPointerSet): fixed bug which loaded float fields in
2141         structures with corrupt data,
2142         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
2143         in a standard way debug info on stderr. Feature used for developing
2144         and debugging only,
2145         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
2146         obsolete chunks of code,
2147         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
2148         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
2149         * pic16/src/pcode.c (pic16_newpCodeInfo,
2150         * (pic16_newpCodeOpLocalRegs),
2151         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
2152         feature,
2153         * (pic16_pCodeConstString): printing of the initial value of a
2154         symbol as a comment is inhibited since parsing was already done by
2155         copyStr and output is corrupt,
2156         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
2157
2158 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2159
2160         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
2161
2162 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
2163
2164         * as/mcs51/lkarea.c: removed old K&R style,
2165           (lnksect): changed check on boundary error,
2166           (lnksect2): changed check on boundary error,
2167           (lnksect2): extend XSTK to end of page if size = 1
2168         * as/mcs51/lkmain.c: removed old K&R style,
2169           (Areas51): create l_IRAM symbol
2170         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
2171         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
2172           model-mcs51-stack-auto, added model-mcs51-xstack-auto
2173         * device/lib/_mullong.c: added version to be compiled with xstack
2174         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
2175         * device/lib/mcs51/crtxclear.asm: clear pdata as well
2176         * device/lib/mcs51/crtxstack.asm: fixed comment
2177         * src/SDCCglue.c: maxInterrupts defaults to 0,
2178           (emitMaps): added pdata,
2179           (createInterruptVect): (re)moved default,
2180           (glue): added pdata,
2181           (glue): moved __start__xstack to XSTK with default size 1
2182         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
2183           and options.float_rent when options.stackAuto is set,
2184           (linkEdit): only write XDATA_NAME if provided on command line
2185         * src/SDCCmem.h,
2186         * src/SDCCmem.c: added pdata
2187         * src/port.h: added pdata_name to PORT
2188         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
2189           (saveRegisters, unsaveRegisters): removed usage of B,
2190           (genMinus): fixed accumulator clash,
2191           (genJumpTab): added comment, this needs another look
2192         * src/mcs51/gen.c: added check for "B in use" paranoia,
2193           added pushB() and popB()
2194         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
2195           chance
2196         * src/avr/main.c,
2197         * src/ds390/main.c,
2198         * src/hc08/main.c,
2199         * src/mcs51/main.c,
2200         * src/pic/main.c,
2201         * src/pic16/main.c,
2202         * src/xa51/main.c,
2203         * src/z80/main.c: (reset_regparms) made void parameter explicit and
2204           added PSEG (PAG,XDATA) or NULL to port specifier
2205         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
2206         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
2207           (_mcs51_genInitStartup): removed __start__xstack equ,
2208           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
2209         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
2210         * src/z80/gen.c (_rleAppend): fixed warnings
2211         * support/regression/tests/zeropad.c: added pdata test
2212         * .version: bumped to 2.4.6
2213
2214 2004-10-17 Borut Razem <borut.razem AT siol.net>
2215
2216         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
2217         as a part of nightly build
2218
2219 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
2220
2221         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
2222         WREG holds the first byte function parameters,
2223         * (aopForSym): take special case for symbols which are in FARSPACE
2224         but in CODESPACE too,
2225         * (assignResultValue): modified to take into account _G.useWreg,
2226         * (genCall): don't use wreg for parameter passing when function is
2227         declared as reentrant, too, added optimization INCF to stack
2228         pointer when stack parameter count is 1,
2229         * (genFunction, genEndFunction): refurnished and fixed to not using
2230         wreg for passing parameters when function has varargs or is
2231         reentrant, fixed bug with symbol name compare for generating
2232         functions in absolute address,
2233         * (pic16_storeForReturn): refurnished,
2234         * (genCmp): began writing a new version of the function, not ready
2235         yet, therefore it is disabled,
2236         * (genAssign): do not read code memory when assigning a function to
2237         a pointer function,
2238         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
2239         array of characters, not pointer,
2240         * (pic16initialComments): in debug mode emit an .ident directive for
2241         the assembler,
2242         * (_process_pragma): emit a new warning type (internal to pic16)
2243         when setting stack to default length, emit a similar warning when
2244         placing a function at absolute address and address is not word aligned
2245         * (_pic16_parseOptions): added 'return TRUE' statement,
2246         * (_pic16_linkEdit): if compiling a source, then add the source's
2247         file object, first in the list of objects to link,
2248
2249 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
2250
2251         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
2252         * src/pic/main.c : removed VC warning.
2253         * src/pic/gen.c : changed comment.
2254
2255 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
2256
2257         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
2258         reference to a deprecated symbol _GPTRREG was causing failure to
2259         link. Thanks G. M. Gallant for the info.
2260
2261 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
2262
2263         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
2264         comments for Bugs item #954788.
2265
2266 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
2267
2268         * src/pic16/device.c (pic16_dump_gsection,
2269         * pic16_groupRegistersInSection): handle symbols declared to be in
2270         access bank differently,
2271         * src/pic16/gen.c (struct _G): added field resDirect,
2272         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
2273         send values read from stack directly to result and don't allocate
2274         temporary values,
2275         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
2276         same registers,
2277         * (pic16_sameRegsOfs): NEW,
2278         * (freeAsmop): if _G.resDirect is set then do not mark registers as
2279         free because they were not allocated from temporary pool,
2280         * pic16_popRegFromString): workaround to fix a problem with
2281         allocating variables twice or never,
2282         * (genGenPointerGet): using PRODL instead of FSR0H,
2283         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
2284         instead of FSR0H,
2285         * (genAssign): take advantage of the _G.resDirect flag,
2286         * (genCast): around line 11844, use mov2f instead of directly
2287         MOVFF'ing between operands to account for literal values,
2288         * src/pic16/genutils.c: some new debug functions for gpsim have been
2289         added,
2290         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
2291         float with integer part only,
2292         * src/pic16/main.c (_process_pragma): handle pragma udata access to
2293         place variables in access bank
2294         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
2295         updated sources to reflect recent changes in gen.c
2296
2297 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
2298
2299         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
2300         sources that searched for headers in installation path, now the
2301         device/include/pic16 is used,
2302         * src/pic16/glue.c (pic16glue),
2303         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
2304         .line directives if not in debug mode, this suppresses assembler's
2305         warnings for ignored directives
2306
2307 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
2308
2309         * src/port.h: made reset_regparms prototype void parameter explicit.
2310         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
2311         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
2312         * doc/sdccman.lyx: documented warning disabling and how to use
2313           printf_large to make it print floats.
2314         * device/include/stdbool.h: NEW
2315         * device/lib/_atof.c,
2316         * device/lib/_divuint.c,
2317         * device/lib/_divulong.c,
2318         * device/lib/expf.c,
2319         * device/lib/printf_large.c,
2320         * device/lib/sincosf.c,
2321         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
2322         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
2323           a completely reentrant lib.
2324
2325 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
2326
2327         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
2328         * device/include/pic16/stdio.h: fixed bug with colon
2329
2330 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
2331
2332         * device/include/pic16/stdio.h,
2333         * device/include/pic16/stdlib.h,
2334         * device/include/pic16/math.h: NEW
2335         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
2336         declared as _naked to reduce overhead
2337         * device/lib/Makefile.in (target port-specific-objects-pic16):
2338         changed * to *.* so to ignore the CVS directory,
2339         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
2340         stacked variables back in stack,
2341         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
2342         corruption
2343
2344 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
2345
2346         * .version: bumped version number to 2.4.5
2347         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
2348         * support/Util/SDCCerr.c (messages structure): added entry for
2349         W_POSSBUG2
2350
2351         Large cumulative patch for pic16 port and libraries.
2352         * device/include/pic16/sdcc-lib.h,
2353         * device/include/pic16/stdarg.h,
2354         * device/include/asm/pic16/features.h,
2355         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
2356         * device/include/pic16/float.h: changes reentrant keyword with
2357         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
2358         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
2359         updated target build-libraries to include objects from gptr,
2360         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
2361         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
2362         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
2363         all function headings,
2364         * src/SDCCmain.c: added global parameter userIncDirsSet,
2365         * (parseCmdLine): when option -I is encountered add directory to
2366         userIncDirsSet too,
2367         * src/version.awk: added space between control and long,
2368         * src/pic16/NOTES: added some notes for the port,
2369         * src/pic16/gen.c: added prototype for mov2fp function,
2370         * (fReturnpic16[]): properly named return value registers,
2371         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
2372         * (aopForSym): added code to handle symbols with onStack flag set,
2373         symbols onStack are allocated PTRSIZE bytes,
2374         * (aopFreeAsmop): handles special case where asmops are stack objects,
2375         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
2376         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
2377         added argument lock to trace flaws in allocating temporary registers
2378         when developing port,
2379         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
2380         * (pic16_popRegFromString): reenabled allocating a direct register
2381         from string,
2382         * (assignResultValue): various beautifications,
2383         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
2384         referenced function argument,
2385         * (genIpush): reenabled to allow stacked arguments, handles only
2386         ic->parmPush iCodes,
2387         * (genCall, genPcall): major changes to allow for variable argument
2388         functions, fixed a bug with falsely restoring stack pointer after
2389         returning from call,
2390         * (genFunction): pending code for critical function,
2391         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
2392         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
2393         * (genNearPointerGet): fixed bug with indirect reading, was always
2394         reading from INDF0
2395         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
2396         pointers,
2397         * (genAddrOf): rewrote code to take address of a stacked function parameter
2398         * (genCast): fixed casting to generic pointer type,
2399         * src/pic16/gen.h: added AOP_STA,
2400         * (struct asmop): added field stk,
2401         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
2402         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
2403         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
2404         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
2405         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
2406         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
2407         generic pointers,
2408         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
2409         and library paths,
2410         * (pic16_port structure): generic pointer size is set to 3,
2411         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
2412         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
2413         compiler warning,
2414         * src/pic16/ralloc.c (allocReg): prevent allocating register when
2415         operand is an iTemp,
2416
2417 2004-09-24 Martin Helmling <mh AT octo-soft.de>
2418
2419         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
2420         * debugger/mcs51/simi.c: addapt new syntax of s51
2421
2422 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
2423
2424         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
2425         * src/pic16/pcode.c: commented out some calls to free() in order to
2426         fix bug #989576,
2427
2428 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2429
2430         * src/SDCCicode.h,
2431         * src/SDCCicode.c (isiCodeInFunctionCall),
2432         * src/avr/ralloc.c (selectSpil),
2433         * src/pic/ralloc.c (selectSpil),
2434         * src/pic16/ralloc.c (selectSpil),
2435         * src/ds390/ralloc.c (selectSpil),
2436         * src/hc08/ralloc.c (selectSpil),
2437         * src/xa51/ralloc.c (selectSpil),
2438         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
2439         stack in the middle of a function call sequence (fixes bug #1020268)
2440         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
2441         costs associated with the minimum switch case.
2442
2443 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2444
2445         * src/SDCC.lex: fixed bug #1030549
2446
2447 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2448
2449         * src/SDCCcse.h (struct cseDef),
2450         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
2451         over a function call if the CSE is derived from a symbol whose
2452         address has been taken (fixes bug #1029883)
2453         * support/regression/tests/bug-1029883: a new regression test for
2454         this bug
2455
2456 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2457
2458         * src/hc08/gen.c (emitinline): fixed bug #1029778
2459         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
2460         to a cast object is no longer a syntax error ("fixes" bug #1030006,
2461         and starts toward RFE #905167)
2462
2463 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
2464
2465         * src/pic16/gen.c (mov2f): New function to move an operand to
2466         another without considering if it is a literal or a register,
2467         * (pic16_sameRegs): don't check if they are both AOP_REG,
2468         * (AccRsh): removed andmask=0 lines,
2469         * (genLeftShift): duplicated to be improved in future versions,
2470         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
2471         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
2472         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
2473         * (pic16initMnemonics): added initialization for POC_INFSNZW,
2474         * (insertBankSwitch): fixed inserting banksel directives algorithm
2475         for instructions that follow a skip instruction, this fixes a report
2476         for broken subtraction code generation,
2477         * src/pic16/ralloc.c (deassignLRs): do not free register if current
2478         iCode is a left op, just in case result and right share the same
2479         registers
2480
2481 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2482
2483         * src/hc08/main.c,
2484         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
2485         preservation of HX
2486         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
2487         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
2488         on 2004-09-12; it was buggy
2489
2490 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
2491
2492         * src/SDCCsymt.h: removed RESULT_CHECK
2493         * src/SDCCast.c,
2494         * src/SDCCglue.c,
2495         * src/SDCCval.c,
2496         * src/pic/glue.c,
2497         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
2498
2499 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
2500
2501         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
2502         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
2503         configuration values no more rejected by compiler, they are assigned
2504         to configuration registers with a warning message instead,
2505         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
2506         the for-loop so last conf register is emitted too,
2507         * (_pic16_initPaths): link library libsdcc.lib by default,
2508         * (_hasNativeMulFor): modified test for multiplication according to
2509         Raphael Neider's remarks. Integer multiplication is also done with
2510         support functions,
2511         * device/include/pic16/pic18fregs.h: corrected type error in while
2512         testing and including 18f6720 header file
2513
2514 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
2515
2516         * src/pic16/device.h (pic16_options): removed field use_crt,
2517         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
2518         until an optimization to handle single bits is added,
2519         * (pic16_loadFSR0): moved before genUnpackBits,
2520         * (genAnd): some white lines removed,
2521         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
2522         leave_reset flags in pic16_options when using crt modules,
2523
2524 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
2525
2526         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
2527           for bugs 898889 & 979599. Also used some safer print instructions.
2528
2529 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
2530
2531         * src/pic16/device.h (pic16_options_t): added field use_crt,
2532         crt_name, no_crt,
2533         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
2534         catch a probable future bug,
2535         * src/pic16/gen.c: aopIdx function commented out,
2536         * (genAssign): commented out old code which used aopIdx,
2537         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
2538         code, added if conditionals to take into account the --use-crt
2539         command line options,
2540         * src/pic16/main.c (pic16_optionsTable): added new command line
2541         options, --use-crt= and --no-crt,
2542         * (_pic16_linkEdit): now the proper crt object is added in the
2543         linker command line except than when --no-crt is specified,
2544         * src/pic16/pcode.c,
2545         * src/pic16/pcode.h: added some structures and functions for a new
2546         optimization scheme to compansate for instruction overhead between
2547         same iCodes, this scheme is currently under development and is not
2548         working in any way,
2549         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
2550         to && operator,
2551         * device/lib/pic16/startup/crt0i.c,
2552         * device/lib/pic16/startup/crt0iz.c: added global char variable
2553         __uflags to force the generation of an idata section
2554
2555 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
2556
2557         * doc/Makefile,
2558         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
2559         * doc/sdccman.lyx: updated sdcc version to 2.4.4
2560
2561 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2562
2563         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
2564         Frieder) and clarified the default code optimization mode
2565
2566 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2567
2568         * src/SDCC.lex (doPragma, process_pragma),
2569         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
2570         "opt_code_size", and "opt_code_balanced"
2571         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
2572         regrouped options by category, added support for category headers
2573         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
2574         and "--opt-code-size"
2575         * doc/sdccman.lyx: documented these new options and pragmas
2576         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
2577         preference into account
2578
2579 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2580
2581         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
2582           geniCodePreDec): Fixed bug 904237 by generating a warning
2583         * src/SDCCerr.h,
2584         * src/SDCCerr.c: added warning W_SIZEOF_VOID
2585
2586 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
2587
2588         * src/pic/device.c : When no max ram set validate full memory range.
2589         * src/pic/pcode.c,
2590         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
2591
2592 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2593
2594         * device/lib/_gptrget.c,
2595         * device/lib/_gptrput.c: updated comment
2596         * device/lib/calloc.c,
2597         * device/lib/free.c,
2598         * device/lib/malloc.c,
2599         * device/lib/realloc.c: added LGPL, made them reentrant-safe
2600         * src/SDCCcse.c (cseBBlock),
2601         * src/SDCCicode.c (printOperand, geniCodeArray),
2602         * src/SDCCicode.h (struct operand): fixed bug 868103
2603         * support/regression/tests/bug-868103.c: added
2604         * src/SDCCast.c (searchLitOp),
2605         * src/SDCCcse.h (struct cseDef),
2606         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
2607         * src/SDCCicode.h (struct operand),
2608         * src/SDCCsymt.h (struct sym_link),
2609         * src/avr/gen.c (hasInc),
2610         * src/ds390/gen.c (hasInc),
2611         * src/hc08/gen.c (genPlusIncr, hasInc),
2612         * src/mcs51/gen.c (hasInc),
2613         * src/pic16/glue.c (pic16_printIvalChar),
2614         * src/pic16/ralloc.c (regWithIdx),
2615         * src/xa51/gen.c (hasInc) : removed warnings
2616         * src/SDCCast.c (createBlock): added comment ???
2617         * src/hc08/ralloc.c: updated comments
2618
2619 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2620
2621         * doc/sdccman.lyx: updated section on switch statements, added
2622         section about semaphore locking
2623         * doc/Makefile: added option -info for latex2html
2624         * device/lib/_gptrget.c,
2625         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
2626
2627 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
2628
2629         * src/pic/device.h,
2630         * src/pic/device.c,
2631         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
2632          maxram is less than 0x100.
2633
2634 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
2635
2636         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
2637
2638 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2639
2640         * src/port.h,
2641         * src/mcs51/main.c,
2642         * src/ds390/main.c,
2643         * src/z80/main.c,
2644         * src/hc08/main.c,
2645         * src/pic/main.c,
2646         * src/pic16/main.c,
2647         * src/avr/main.c,
2648         * src/xa51/main.c
2649         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
2650         a jump table is the best form for a switch statement, including
2651         automatic insertion of missing cases to make the case range
2652         continuous. Developed in collaboration with Frieder Ferlemann.
2653
2654 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2655
2656         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
2657         accumulator result if it needs sign extension
2658
2659 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2660
2661         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
2662
2663 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2664
2665         * device/lib/gbz80/printf.c,
2666         * device/lib/z80/printf.c: removed define for NULL
2667
2668 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2669
2670         * as/xa51/xa_link.c,
2671         * device/examples/ds390/ow390/ad26.c,
2672         * device/examples/ds390/ow390/cnt1d.c,
2673         * device/examples/ds390/ow390/counter.c,
2674         * device/examples/ds390/ow390/ds2480.h,
2675         * device/examples/ds390/ow390/ds2480ut.c,
2676         * device/examples/ds390/ow390/findtype.c,
2677         * device/examples/ds390/ow390/gethumd.c,
2678         * device/examples/ds390/ow390/owllu.c,
2679         * device/examples/ds390/ow390/ownetu.c,
2680         * device/examples/ds390/ow390/swt12.c,
2681         * device/examples/ds390/ow390/swtloop.c,
2682         * device/examples/ds390/ow390/temp.c,
2683         * device/examples/ds390/ow390/temp10.c,
2684         * device/examples/ds390/ow390/thermo21.c,
2685         * device/examples/ds390/ow390/tinilnk.c,
2686         * device/examples/ds390/ow390/tstfind.c,
2687         * device/examples/serialcomm/windows/serial.cpp,
2688         * device/examples/serialcomm/windows/test_serialcomm.cpp,
2689         * device/include/reg51.h: fixed line endings for cvs
2690
2691 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2692
2693         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
2694         packRegsForAccUse, packRegisters): new accumulator register
2695         packing algorithm
2696         * support/regression/ports/hc08/support.c (_putchar): suppress
2697         warning of unused variable
2698         * src/SDCCicode.c: added SWAP entry to codeTable
2699
2700 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
2701
2702         * device/lib/sprintf.c: forgot to add this file before previous commit
2703
2704 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
2705
2706         * src/pic16/gen.c (genPackBits): added operand right in function
2707         parameters, load result directly if p_type is POINTER (that is
2708         called by genNearPointerSet)
2709         * (genUnPackBits): added operand left in function parameters,
2710         * (genNearPointerGet, genNearPointerSet): prevent the loading of
2711         FSR0 if accessing bitfields,
2712
2713 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
2714
2715         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
2716           _print_format; updated printf, sprintf, vsprintf
2717         * device/include/asm/default/features.h: corrected comment/define
2718         * device/lib/Makefile.in: added sprintf.c
2719         * device/lib/libsdcc.lib: added sprintf module
2720         * device/lib/printf_large.c,
2721         * device/lib/vprintf.c,
2722         * device/lib/sprintf.c: totally refactored printf_large and vprintf
2723           into these 3 files
2724         * support/regression/Makefile: changed ALL_PORTS into a usefull default
2725         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
2726         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
2727           hc08 test
2728         * support/regression/tests/zeropad.c: define idata as data for hc08
2729
2730 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2731
2732         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
2733         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
2734         labels are referenced at least once (even if a reference is not found)
2735         * src/hc08/gen.c (emitcode): set isComment flag for comments
2736         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
2737         loads), rules 6a..6b (optimize jumps to return)
2738
2739 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2740
2741         * device/lib/acosf.c (acosf),
2742         * device/lib/asinf.c (asinf),
2743         * device/lib/atanf.c (atanf),
2744         * device/lib/ceilf.c (ceilf),
2745         * device/lib/cosf.c (cosf),
2746         * device/lib/coshf.c (coshf),
2747         * device/lib/cotf.c (cotf),
2748         * device/lib/fabsf.c (fabsf),
2749         * device/lib/floorf.c (floorf),
2750         * device/lib/log10f.c (log10f),
2751         * device/lib/logf.c (logf),
2752         * device/lib/sinf.c (sinf),
2753         * device/lib/sinhf.c (sinhf),
2754         * device/lib/sqrtf.c (sqrtf),
2755         * device/lib/tanf.c (tanf),
2756         * device/lib/tanhf.c (tanhf),
2757         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
2758         replaced all instances of "reentrant" in the library functions
2759         defined in math.h with this macro.
2760         * support/regression/tests/float_trans.c: reenabled test for hc08
2761
2762 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
2763
2764         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
2765         erroneously deleted
2766
2767 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2768
2769         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
2770         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
2771         multi-byte volatile operands are used
2772         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
2773         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
2774         initialization to area GSINIT0 so that it would always precede
2775         any static initializers in GSINIT
2776         * support/regression/tests/zeropad.c: fixed idata define for hc08
2777         * support/regression/tests/bug-927659.c,
2778         * support/regression/tests/float_trans.c: disabled tests for hc08
2779         pending missing library routines
2780         * .version: increased version number to 2.4.4 - hc08 port now passes
2781         regression tests
2782
2783
2784 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
2785
2786         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
2787         * Makefile.common.in,
2788         * as/Makefile,
2789         * as/hc08/Makefile.in,
2790         * as/mcs51/Makefile.in,
2791         * as/z80/Makefile.in,
2792         * debugger/mcs51/Makefile.in,
2793         * device/include/Makefile.in,
2794         * device/lib/Makefile.in,
2795         * doc/Makefile,
2796         * link/Makefile,
2797         * link/z80/Makefile.in,
2798         * packihx/Makefile.in,
2799         * sim/ucsim/main_in.mk,
2800         * sim/ucsim/avr.src/Makefile.in,
2801         * sim/ucsim/doc/Makefile.in,
2802         * sim/ucsim/gui.src/serio.src/Makefile.in,
2803         * sim/ucsim/hc08.src/Makefile.in,
2804         * sim/ucsim/s51.src/Makefile.in,
2805         * sim/ucsim/xa.src/Makefile.in,
2806         * sim/ucsim/z80.src/Makefile.in,
2807         * src/Makefile.in,
2808         * support/cpp2/Makefile.in,
2809         * support/librarian/Makefile,
2810         * support/makebin/Makefile: added DESTDIR to the install path proposed
2811         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
2812         * doc/sdccman.lyx: added DESTDIR documentation
2813
2814 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
2815
2816         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
2817         instruction for interrupt handlers, use fast returns when returning
2818         from high priority interrupts
2819
2820 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2821
2822         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
2823         code generation
2824         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
2825         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
2826         bugs, ported much of Bernhard's code from mcs51
2827         * src/mcs51/gen.c (genSend),
2828         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
2829         than one when calling a reentrant function
2830         * device/lib/_mullong.c: defined an alternate struct layout for big
2831         endian ports (hc08)
2832
2833 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2834
2835         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
2836         test
2837
2838 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2839
2840         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
2841         are sane and complete before asking the port its prefered parameter
2842         passing method (fixes bug #1017633)
2843         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
2844         and _ret3
2845
2846 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2847
2848         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
2849         problem in bitfields >= 8 bits.
2850
2851 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
2852
2853         * src/SDCCsymt.c: undid changes that were not meant to be committed
2854
2855 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
2856
2857         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
2858
2859 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
2860
2861         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
2862           copied and wrong bit got inverted
2863
2864 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2865
2866         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
2867         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
2868         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
2869         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
2870         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
2871         assignments to bitfields at known addresses
2872         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
2873         reads from bitfields at known addresses
2874         * src/hc08/ralloc.c (packRegisters),
2875         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
2876         genhc08Code): optimize pointer get values used as conditionals
2877         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
2878         and branch
2879
2880 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2881
2882         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
2883         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
2884         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
2885         as conditionals
2886
2887 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2888
2889         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
2890
2891 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2892
2893         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
2894         related problems
2895
2896 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
2897
2898         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
2899
2900 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2901
2902         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
2903         mcs51 port
2904
2905 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
2906
2907         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
2908
2909 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2910
2911         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
2912         cases use more compact code.
2913
2914 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
2915
2916         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
2917
2918 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2919
2920         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
2921
2922 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2923
2924         * src/SDCCsymt.h,
2925         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
2926         parameter of changePointer() from symbol* to sym_link*
2927         * src/SDCCast.c (decorateType): call changePointer() for CAST op
2928         * src/SDCCsymt.c (compareType): void* type is castable to other
2929         pointers, but not necesarily an exact match.
2930         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
2931         is no longer blindly treated as an exact match.
2932         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
2933
2934 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
2935
2936         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
2937
2938 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
2939
2940         * src/pic/gen.c,
2941         * src/pic/pcode.c,
2942         * src/pic/ralloc.h,
2943         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
2944
2945 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
2946
2947         * src/pic/device.c,
2948         * src/pic/device.h,
2949         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
2950
2951 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2952
2953         * src/mcs51/gen.c (emitcode): fixed bug #992819
2954
2955 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
2956
2957         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
2958           there's no need to make it worse
2959
2960 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2961
2962         * src/mcs51/ralloc.c (deassignLR),
2963         * src/ds390/ralloc.c (deassignLR),
2964         * src/hc08/ralloc.c (deassignLR),
2965         * src/z80/ralloc.c (deassignLR),
2966         * src/pic/ralloc.c (deassignLR),
2967         * src/pic16/ralloc.c (deassignLR),
2968         * src/avr/ralloc.c (deassignLR),
2969         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
2970         rlivePoint): fixed another part of bug #971834
2971
2972 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2973
2974         * src/z80/main.c: enabled "critical" keyword
2975         * src/z80/mappings.i,
2976         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
2977         functions (fixes bug #979646)
2978         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
2979
2980 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2981
2982         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
2983           such as c:\mydir.
2984
2985 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
2986
2987         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
2988           doesn't disable too much optimizations
2989
2990 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
2991
2992         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
2993
2994 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
2995
2996         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
2997
2998 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
2999
3000         * src/pic/gen.c tidied up tabs
3001         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
3002         * src/pic/main.c tidied up tabs
3003         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
3004         * src/pic/pcoderegs.c tidied up tabs
3005         * src/pic/ralloc.c tidied up tabs
3006
3007 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
3008
3009         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
3010         to S_FIXED for pic16 port and when symbol is not in level 0,
3011         allocate for S_REGISTER storage class and pic16 port, too,
3012         * src/pic16/device.h: prototype for checkSym,
3013         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
3014         * (pic16_assignConfigWordValue): test the value and the mask to
3015         validate that the value is suitable for the configuration word,
3016         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
3017         collect extern declared symbols, don't emit symbol twice, check
3018         first if symbol is in publics set first,
3019         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
3020         * added command line '--fstack' which enables an experimental
3021         feature for stack access, too buggy to be used yet...
3022         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
3023         * (pic16_allocDirReg): when register has storage class S_REGISTER
3024         allocate in pic16_dynAccessRegs,
3025         * device/include/pic16/pic18f????.h: modified configuration word
3026         naming convention, words started as CONFIG0H but should be CONFIG1H
3027
3028 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
3029
3030         * device/include/mcs51reg.h: fixed bug 970993
3031
3032 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
3033
3034         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
3035         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
3036         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
3037         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
3038         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
3039         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
3040           error/warning numbers,
3041           added function setWarningDisabled()
3042         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
3043         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
3044           _memcmp.c _memmove.c calloc.c realloc.c free.c
3045         * support/regression/tests/malloc.c: added tests for new functionality
3046         * support/regression/tests/zeropad.c: added tests for truncated initializers
3047           and initialized char arrays starting with '\x0'
3048         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
3049
3050 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
3051
3052         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
3053
3054 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3055
3056         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
3057         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
3058         peephole 177.e. Thanks to anonymous
3059
3060 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
3061
3062         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
3063         function isn't used in the source but referenced as a
3064         variable initializer then declare it as extern in .asm file
3065
3066 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
3067
3068         * .version: increased version number to 2.4.3
3069
3070         Adding version extension according to ChangeLog CVS revision
3071         * src/Makefile.in (target all): added dependency 'version.h'
3072         * (rule version.h): added rule to create version.h from ChangeLog,
3073         * (rule dep): added dependency version.h,
3074         * src/version.awk: AWK script to create version.h
3075         * src/SDCCdwarf2.c (dwWriteModule),
3076         * src/SDCCglue.c (initialComments),
3077         * src/SDCCmain.c (printVersionInfo): modified to write after
3078         version string the version extension number,
3079         * src/SDCCutil.c: included "version.h"
3080         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
3081         number,
3082         * src/SDCCutil.h: added prototype for getBuildNumber
3083
3084         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
3085         includeDirsSet, too,
3086         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
3087         const char [] is found in function prototype...
3088
3089         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
3090         moving to WREG with source is already in WREG,
3091         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
3092         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
3093         * (aopForSym): stack'ed symbols are partially supported, added
3094         if-clause to support symbols in FARSPACE,
3095         * (sameRegs): added test for AOP_ACC to see if registers are same,
3096         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
3097         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
3098         * (pic16_popRegFromString): will not allocate a new register if it
3099         doesn't find one by name, bug may have introduced...
3100         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
3101         * (genIpush): revived to use pic16 port's stack,
3102         * (genAddrOf): added incomplete case for stack'ed operand,
3103         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
3104         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
3105         can handle multibyte operands,
3106         * src/pic16/glue.c (pic16_printIval*): some debug info added,
3107         * (pic16initialComments): added message for MPLAB compatibility
3108         mode enabled,
3109         * src/pic16/main.h: prototype for pic16_mplab_comp,
3110         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
3111         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
3112         * (_pic16_linkEdit): NEW, handles link stage, transferred here
3113         because of increased complexity of procedure,
3114         * (_process_pragma): stack pragma changed to format 'stack pos len',
3115         emit symbol '_stack_end' to conform with gplink,
3116         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
3117         to search for register,
3118         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
3119         PO_GPR_REGISTER,
3120         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
3121         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
3122         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
3123         case for PO_GPR_REGISTER,
3124         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
3125         dies, the new era is ahead !...
3126         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
3127         pic16_dynInternalRegs,
3128         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
3129         * (pic16_allocDirReg): minor optimizations and bug fixes,
3130         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
3131
3132         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
3133         load stack and frame pointer with address of 'stack_end' symbol
3134
3135 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
3136
3137         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
3138         without source code but only variable initializers
3139
3140 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
3141
3142         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
3143         external are not declared as extern to reduce overhead while linking
3144
3145 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
3146
3147         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
3148
3149 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
3150
3151         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
3152           Yee Keat for the patch
3153         * src/SDCCast.c (decorateType): fixed bug #979599
3154         * src/ds390/gen.h: removed local fReturnSizeDS390
3155         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
3156         * src/ds390/gen.c (genAnd, genOr, genXor),
3157         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
3158
3159 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
3160
3161         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
3162         add relFilesSet to $3, manipulate $2 to handle linking of object
3163         files without source files in command line,
3164         * device/include/pic16 (all headers): added ID location macros,
3165         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
3166         entries for ID location bytes,
3167         * (pic16_assignIdByteValue): NEW,
3168         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
3169         added field dumpcalltree to pic16_options_t,
3170         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
3171         is used instead of pic16_Gstack_base_addr, check if (ifx) before
3172         emitting rFalseIfx label after check_carry label,
3173         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
3174         pic16_emitDIRegs), NEW
3175         * (pic16glue): dump .calltree file when option --calltree found,
3176         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
3177         * (_pic16_genAssemblerPreamble): emit ID locations after
3178         configuration registers,
3179         * (pic16_linkCmd): modifications of the link command,
3180         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
3181         * (pic16_pCodeInitRegisters): don't init stack registers,
3182         * (pic16_findPrevInstruction): fixed bug,
3183         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
3184         bug with immediate registers,
3185         * (buildCallTree): traces stack push and pop,
3186         * (pct2): dump also stack usage for each function,
3187         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
3188         * (pic16_allocDirReg): various modifications,
3189         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
3190         fixed to 1,
3191
3192 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
3193
3194         * src/pic16/pcode.c: removed buggy double colon
3195
3196 2004-07-01 Borut Razem <borut.razem AT siol.net>
3197
3198         * support/scripts/sdcc.nsi: added include/pic16 to setup
3199
3200 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
3201
3202         * device/lib/Makefile.in: fixed bug in target objects-pic16,
3203         * device/lib/pic16/Makefile: prefixed with dash (-) command under
3204         target 'clean',
3205         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
3206         specific command line arguments. Also added sample lkr script
3207         for placing a variable at a specific memory bank.
3208         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
3209         at a specific memory bank,
3210         * (pic16_dump_isection): fixed bug which caused string literals to
3211         be omitted when dumping idata section,
3212         * (pic16_groupRegistersInSection): added code to handle registers
3213         in specific memory banks,
3214         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
3215         public, all references are renamed too,
3216         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
3217         AOP_DPTR2,
3218         * (pic16_storeForReturn): added case to handle when dest is WREG,
3219         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
3220         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
3221         pic16_rel_udata, check to see if that register is marked as being
3222         a member of a specific memory bank,
3223         * (pic16_printIvalCharPtr): added code to add string literals either
3224         to code or the idata sections,
3225         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
3226         also accept the 'udata' pragma,
3227         * src/pic16/main.h: new structure types sectName and sectSym
3228         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
3229         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
3230         * (pic16_findPrevInstruction): fixed, it returned nothing,
3231         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
3232         instruction combinations,
3233         * (pic16_FixRegisterBanking): heavily reorganised,
3234         * (pic16_AnalyzeBanking): if generating banksel directives is
3235         disabled, then don't call FixRegisterBanking at all,
3236         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
3237         completely removed,
3238         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
3239
3240 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
3241
3242         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
3243         Phuah Yee Keat <yk.phuah AT nestac.com>
3244
3245 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3246
3247         * src/pic16/glue.c (pic16createInterruptVect): function now emits
3248         correctly the IVT even if it is relocated to some other location
3249
3250 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3251
3252         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
3253         * device/include/pic16/pic18f2220.h: NEW,
3254         * device/lib/pic16/libdev/pic18f2220.c: NEW,
3255         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
3256         * src/pic16/device.c (struct Pics16): added info for 18f2220,
3257         * src/pic16/device.h (struct pic16_options): added ivt_loc and
3258         nodefaultlibs, ivt_loc is the location of the interrupt vector
3259         table, and nodefaultlibs signs that default libraries should not be
3260         linked in link stage,
3261         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
3262         according to --ivt-loc argument,
3263         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
3264         when pragma stack is found,
3265
3266 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3267
3268         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
3269         256 (range check), 257 (do while), 258.a-f (bit banging
3270         f.e. on 3-wire SPI bus)
3271
3272 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3273
3274         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
3275         variables used exclusively within a loop
3276
3277 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
3278
3279         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
3280
3281 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3282
3283         * src/SDCClrange.c (computeClash): fixed bug #971834
3284
3285 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3286
3287         * src/mcs51/gen.c (genCmp): fixed bug #975903
3288         * src/hc08/gen.c (operandsEqu),
3289         * src/ds390/gen.c (operandsEqu),
3290         * src/z80/gen.c (operandsEqu),
3291         * src/pic/gen.c (operandsEqu),
3292         * src/pic16/gen.c (operandsEqu),
3293         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
3294         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
3295
3296 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3297
3298         * src/SDCCcse.c (cseBBlock): fixed bug #966963
3299
3300 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
3301
3302         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
3303         default case in switch statement,
3304         * glue.c (pic16_initPointer): expr is initialised via decoarteType
3305         to eliminate problem with initialisation of pointers, but problem
3306         still exists,
3307         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
3308         * (emitStaticSegment): removed various lines emitting debug info,
3309         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
3310         added processor registers for utilizing EEPROM,
3311         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
3312         configurable and set 8
3313
3314 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
3315
3316         * .version: increased version number to 2.4.2,
3317
3318         Cumulative patch for pic16 port
3319         * src/pic16/device.c: changed scheme to dump initial values for
3320         variables in idata segment, all print_idata* functions were removed,
3321         now the pic16_printIval* will be called,
3322         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
3323         * _pic16_printPointerType, pic16_printPointerType,
3324         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
3325         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
3326         NEW, similar to the respective functions in SDCCglue.c,
3327         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
3328         way, emitting hex bytes,
3329         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
3330
3331 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3332
3333         * src/avr/ralloc.c (serialRegAssign),
3334         * src/xa51/ralloc.c (serialRegAssign),
3335         * src/pic/ralloc.c (serialRegAssign),
3336         * src/pic16/ralloc.c (serialRegAssign),
3337         * src/hc08/ralloc.c (serialRegAssign),
3338         * src/z80/ralloc.c (serialRegAssign),
3339         * src/ds390/ralloc.c (serialRegAssign),
3340         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
3341
3342 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3343
3344         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
3345         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
3346
3347 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
3348
3349         Cumulative patch for pic16 port:
3350         * src/pic16/device.h (typedef PIC16_device) modified fields for
3351         defining microcontrollers,
3352         * src/pic16/device.c: added new info for all devices in Pics16 array,
3353         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
3354         to be optimised out by the pCode optimiser,
3355         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
3356         specially, bug reported by G.M. Gallant,
3357         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
3358         as force'd so that cannot be optimised out by pCode optimiser,
3359         * src/pic16/pcode.c,
3360         * src/pic16/pcodepeeph.c,
3361         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
3362         they are disabled by default, but can be enabled explicit with
3363         command argument --denable-peeps, for testing,
3364         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
3365         --pomit-ivt in COMPILE_FLAGS
3366
3367 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3368
3369         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
3370           compilation on MSVC
3371
3372 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3373
3374         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
3375
3376 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3377
3378         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
3379         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
3380
3381 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
3382
3383         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
3384         would only assign 0x300001 register.
3385
3386 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
3387
3388         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
3389         in COMPILE_FLAGS. Thanks to G. Gallant for report.
3390
3391 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3392
3393         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
3394         for ds80c400
3395         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
3396         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
3397         added peephole 254 (left shift), 255 (jump table)
3398
3399 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
3400
3401         * device/lib/Makefile.in: removed comment line with model-pic16,
3402         * (target port-specific-objects-pic16): the libraries and objects
3403         are copied to the build directory form the device/lib/pic16/bin
3404         directory
3405
3406         Cumulative patch concerning pic16 port:
3407         * library directory has been re-organized,
3408         * added support for PIC18F1220,
3409         * added headers and library sources for chips 18f1220,18f6520,
3410         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
3411
3412         * configuration registers setting has changed, now each supported
3413         device has a complete description of the registers it uses,
3414         * all initialisations are moved to idata sections, these section
3415         can be absolute or relocatable,
3416         * fixed initialisation of codespace variables,
3417         * fixed warning about PCLATU and gpsim,
3418         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
3419         * (genAssign): use table reads when assigning from variables in codespace,
3420         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
3421         char/int variables placed in codespace,
3422         * (pic16_emitConfigRegs): NEW, emits a list with configuration
3423         registers set in .asm file, no need for --pomit-config-words anymore,
3424         * (pic16glue): some 8051 legacy segments are commented out
3425         (to be removed completely),
3426         * added support for alternative assembler and linker with --asm=
3427         and --link= command line arguments,
3428         * peepholes are disabled automatically in the port, no need to
3429         specify on command line,
3430         * port supports natively char/int/long multiplication, but converts
3431         all divisions to support functions,
3432         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
3433         to the file set in variable $2,
3434         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
3435         strings in ASCII format and not in hex,
3436         * ralloc.c (serialRegAssign): added a triplet of conditional calls
3437         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
3438         allocate proper register if iCodes aren't temporary,
3439
3440 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
3441
3442         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
3443
3444 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
3445
3446         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
3447         is commented out
3448
3449 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3450
3451         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
3452         computed address is reused
3453         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
3454         multi-byte bitfields
3455
3456 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3457
3458         * src/z80/gen.c: (genArrayInit): must check for pointers too
3459
3460 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3461
3462         * support/regression/tests/zeropad.c: never meant to commit the
3463           nestedstruct test: removed, added check for GCC version
3464
3465 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
3466
3467         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
3468         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
3469         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
3470           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
3471           bugs 928906 and 954082 half-empty initializers
3472         * src/SDCCsymt.h,
3473         * src/SDCCsymt.c (getAllocSize): added for above fix
3474         * src/z80/gen.c (genArrayInit): fixed bug 741044
3475         * support/regression/tests/zeropad.c: added tests
3476
3477 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
3478
3479         * src/pic16/device.c (pic16_dump_section): corrected bug which
3480         caused some symbols of the libraries to be misplaced
3481
3482 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3483
3484         * src/pic16/glue.c,
3485         * src/pic16/ralloc.h,
3486         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
3487         to fix conflict with pic port
3488
3489 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3490
3491         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
3492         externs configuration variables,
3493         * src/pic16/ralloc.h,
3494         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
3495         prototype in header, commented out some debug messages
3496
3497 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
3498
3499         * src/pic16/glue.c,
3500         * src/pic16/main.c,
3501         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
3502         for gpasm COFF object generation. Thanks to D. Hawkins for
3503         his patch info
3504
3505 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3506
3507         * src/ds390/main.c,
3508         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
3509         Brock for spotting this)
3510         * src/ds390/gen.c (genEndFunction),
3511         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
3512         interrupt handler and critical. Disable push/pop optimizations when
3513         peephole optimizations disabled.
3514
3515 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
3516
3517         Updated pic16 library sources and headers.
3518         * device/lib/pic16/pic18f*/ ,
3519         * device/include/pic16/*.h: modified to handle structured SFR
3520         definitions
3521
3522 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
3523
3524         * src/port.h (PORT structure): added hook initPaths, now each
3525         port can declare its own default search paths,
3526         which can been seen with the --print-search-dirs option,
3527         see pic16 port for example,
3528         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
3529         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
3530         * (doPrintSearchDirs): NEW, replaces in a central manner the
3531         printing of search dirs which was split in set*Paths functions,
3532         * (main): added call to port->initPaths and doPrintSearchDirs,
3533         * src/avr/main.c,
3534         * src/ds390/main.c,
3535         * src/hc08/main.c,
3536         * src/izt/i186.c,
3537         * src/izt/tlcs900h.c,
3538         * src/mcs51/main.c,
3539         * src/pic/main.c,
3540         * src/pic16/main.c: modified port structures to reflect addition of
3541         initPaths hook,
3542
3543         * src/pic16/device.c (regCompare): registers are finally sorted by name,
3544         * (pic16_dump_section): for registers in same address reserve memory once,
3545         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
3546         to no_banksel,
3547         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
3548         result is greater in size than right or left,
3549         * (pic16_genUMult8X8_8): there are some cases where the result can
3550         be 16 bits size, so handle these,
3551         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
3552         * (pic16_outBitC): modified to emit pcodes,
3553         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
3554         or not,
3555         * (genDivOneByte): implemented algorithm to divide 8-bits,
3556         * (genCmp): uncommented goto, but issues still exist,
3557         * (genAnd): fixed a bug with variables >8bits,
3558         * (genPackBits): optimization added that uses BCF/BSF to change a
3559         single bit,
3560         * (genAssign): fixed bug when assigning floating point literals,
3561         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
3562         __sdcc_gsinit_startup label,
3563         * src/pic16/main.c (_pic16_init): removed search directory
3564         initialisations,
3565         * (_pic16_initPaths): NEW, used to initialise search directories,
3566         * (_hasNativeMulFor): support functions for all except char/int
3567         multiplication, and char division,
3568         * (PIC16_port struct): modified entry for native mul support,
3569         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
3570         no_banksel option,
3571         * (buildCallTree): call to register_usage is ifdef'ed out,
3572
3573 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3574
3575         * device/include/string.h: applied Stas Sergeev's patch to make this
3576         header file compatible with the preprocessor -Wundef option
3577         * src/SDCCmain.c (main): abort compilation if preprocessor reports
3578         failure (fixes bug #941458)
3579
3580 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3581
3582         * src/SDCCopt.c (killDeadCode): fixed bug #907733
3583         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
3584         that the variable, not the function, should be static
3585         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
3586         to be consistent with non-literal case
3587
3588 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3589
3590         * src/SDCCast.c (isConformingBody): fixed bug #949967
3591         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
3592         convilong): fixed bug #952086
3593
3594 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3595
3596         * src/SDCCmem.c (allocVariables): fixed bug #955321
3597
3598 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3599
3600         * src/hc08/main.c (_hc08_genAssemblerEnd),
3601         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
3602         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
3603         completely eliminated the use of a temporary file
3604         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
3605         when more than one file linked
3606         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
3607
3608 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3609
3610         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
3611         which fixes bug #543481
3612         * support/regression/tests/bug-751703.c: fixed comments left from a
3613         cut and paste error
3614         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
3615         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
3616         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
3617         scopes
3618         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
3619         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
3620         are now changed to underscores in moduleName
3621
3622 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3623
3624         * as/mcs51/lkmem.c: better fix for bug #954173
3625
3626 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
3627         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3628
3629         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
3630         * device/include/c8051f000.h,
3631         * device/include/c8051f120.h,
3632         * device/include/c8051f300.h,
3633         * device/include/c8051f310.h,
3634         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
3635         PWM16) and detab'ed
3636
3637 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3638
3639         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
3640         and mailing lists, doc'ed --no-peep-comments, removed reference
3641         to knoppix (newest version has no LyX/LaTeX), other minor changes
3642         * src/SDCCglue.c (glue): save 2 bytes stack space with
3643         option --main-return. The ljmp could probably be avoided too
3644
3645 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3646
3647         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
3648
3649 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3650
3651         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
3652         * src/SDCCopt.c (isLocalWithoutDef),
3653         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
3654         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
3655         (credit to Maarten Brock for patch #949363, on which this is based)
3656         * support/regression/tests/bug-751703.c: some test cases of extern used
3657         within inner scopes.
3658
3659 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3660
3661         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
3662         SPEC_STRUCT
3663         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
3664         struct definitions
3665         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
3666         dwWriteLabel): fix to create valid debugger symbols even when
3667         the module name has non-alphanumeric symbols in it
3668         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
3669         when a variable's allocation has been optimized away
3670
3671
3672 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3673
3674         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
3675         * src/hc08/main.c,
3676         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
3677         * src/mcs51/main.c,
3678         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
3679         * src/ds390/main.c,
3680         * src/z80/gen.c (z80_emitDebuggerSymbol),
3681         * src/z80/main.c,
3682         * src/pic/gen.c (pic14_emitDebuggerSymbol),
3683         * src/pic/main.c,
3684         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
3685         * src/pic16/main.c,
3686         * src/avr/gen.c (avr_emitDebuggerSymbol),
3687         * src/avr/main.c,
3688         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
3689         * src/xa51/main.c,
3690         * src/SDCCdebug.c (emitDebuggerSymbol),
3691         * src/SDCCdebug.h,
3692         * src/port.h: added a debugger struct to the port struct. Added a
3693         callback for defining debugger symbols
3694
3695         * src/SDCCast.c (createLabel),
3696         * src/SDCC.y (labeled_statement): mark all compiler generated labels
3697         with isitmp = 1
3698         * src/SDCCicode.h,
3699         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
3700         iCode back to the ast for the function
3701
3702         * src/hc08/ralloc.c (hc08_assignRegisters),
3703         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
3704         unneeded fields from the regs struct.
3705         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
3706         pushReg() & pullReg() functions instead of emitcode()
3707
3708         * src/hc08/gen.c (genLabel, genhc08Code),
3709         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
3710
3711         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
3712         debugger hooks
3713
3714         * src/hc08/gen.c (genEndFunction, genhc08Code),
3715         * src/hc08/gen.h,
3716         * src/mcs51/gen.c (genEndFunction, gen51Code),
3717         * src/mcs51/gen.h,
3718         * src/ds390/gen.c (genEndFunction, gen390Code),
3719         * src/ds390/gen.h,
3720         * src/z80/gen.c (genEndFunction, genZ80Code),
3721         * src/z80/gen.h,
3722         * src/z80/z80.h,
3723         * src/pic/gen.c (genEndFunction, genpic14Code),
3724         * src/pic/gen.h,
3725         * src/pic16/gen.c (genEndFunction, genpic16Code),
3726         * src/pic16/gen.h,
3727         * src/avr/gen.c (genEndFunction, genAVRCode),
3728         * src/avr/gen.h,
3729         * src/xa51/gen.c (genEndFunction, genXA51Code),
3730         * src/xa51/gen.h,
3731         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
3732         specific code to cdbFile.c and out of the backend code generators
3733
3734         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
3735         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
3736         starting address is now 0
3737
3738         * as/hc08/asm.h,
3739         * as/hc08/m08pst.c,
3740         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
3741         assembler directive for DWARF support
3742         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
3743
3744         * src/src.dsp,
3745         * src/Makefile.in,
3746         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
3747
3748 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3749
3750         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
3751         and inappropriate peephole optimization in jump tables
3752
3753 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3754
3755         * as/hc08/m08pst.c,
3756         * src/SDCCglue.c: sdccopt works for the hc08 port now
3757
3758 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
3759
3760         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
3761
3762 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3763
3764         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
3765
3766 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3767
3768         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
3769         rules
3770         * src/SDCCmain.c,
3771         * src/SDCCglobl.h,
3772         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
3773         comments from the peephole optimizer replacement rules
3774         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
3775         symbols
3776         * src/SDCCcse.c (updateSpillLocation),
3777         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
3778         equivalents
3779         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
3780         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
3781         objects far pointers
3782
3783 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3784
3785         * src/SDCCsymt.h: a missing part of my last change
3786         * src/pic/ralloc.c (regTypeNum),
3787         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
3788
3789 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3790
3791         * src/SDCCicode.h,
3792         * src/SDCCicode.c (aggrToPtrDclType),
3793         * src/SDCCptropt.h,
3794         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
3795         ptrPseudoSymConvert),
3796         * src/pic/ralloc.c (regTypeNum),
3797         * src/pic16/ralloc.c (regTypeNum),
3798         * src/hc08/ralloc.c (regTypeNum),
3799         * src/ds390/ralloc.c (regTypeNum),
3800         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
3801         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
3802
3803 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3804
3805         * link/z80/lkmain.c (afile),
3806         * as/hc08/lkmain.c (afile),
3807         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
3808         prevent a pointer problem when a filename has no directory and
3809         no extension specified.
3810
3811 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3812
3813         * link/z80/lkmain.c (afile): allow periods in directory names
3814         * link/z80/lkmain.c (afile),
3815         * as/mcs51/lkmain.c (afile),
3816         * as/hc08/lkmain.c (afile): allow linker script file to have an
3817         extension other than ".lnk"
3818         * link/z80/lklex.c (getfid),
3819         * link/z80/lkmain.c (parse),
3820         * as/mcs51/lklex.c (getfid),
3821         * as/mcs51/lkmain.c (parse),
3822         * as/hc08/lklex.c (getfid),
3823         * as/hc08/lkmain.c (parse): Support comments in the linker script
3824         file on lines by themselves and after filenames
3825
3826 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3827
3828         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
3829
3830 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3831
3832         * src/z80/peeph-z80.def: removed some peephole rules that don't
3833         work with multibyte arithmetic (fixed bug #937126)
3834         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
3835         to registers and not global variables
3836         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
3837         geniCodePreInc, geniCodePostDec, geniCodePreDec,
3838         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
3839         checking for assignments not internally generated (fixed bug #931895)
3840         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
3841         structure member (fixed bug #930072)
3842
3843 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3844
3845         * src/SDCCmain.c (linkEdit),
3846         * src/hc08/main.c (_hc08_parseOptions),
3847         * as/hc08/Makefile.in,
3848         * as/hc08/aslink.h,
3849         * as/hc08/asm.h,
3850         * as/hc08/m08pst.c,
3851         * as/hc08/lkrloc.c (relr, rele),
3852         * as/hc08/lkarea.c (lnkarea)
3853         * as/hc08/lkmain.c (afile, parse),
3854         * as/hc08/lkelf.c: support for ELF output
3855         * as/hc08/lks19.c (s19),
3856         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
3857
3858 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3859
3860         * as/mcs51/lkihx.c: Fixed bug #899105.
3861
3862 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3863
3864         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
3865         .dsp files from Unix to DOS.
3866
3867 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3868
3869         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
3870         function pointers; we have been compliant for several months now.
3871         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
3872         change that was accidently commented out
3873         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
3874         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
3875         bug #922319
3876
3877 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3878
3879         * src/hc08/gen.c: output of all of the internal debugging information
3880         is now controlled by the D() macro; it is disabled by default
3881
3882 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3883
3884         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
3885         harder to keep the same registers during a CAST iCode
3886         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
3887         long via int can be done in a single cast, if the signedness is
3888         correct.
3889         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
3890         putchar() in tinibios.c in ds390's library
3891
3892 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
3893
3894         * src/SDCCast.c (decorateType): fixed bug #898889,
3895         cast result of a literal complement too
3896         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
3897         fixed check for bitfields
3898
3899 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
3900
3901         * src/SDCCicode.c (geniCodeLogic): made it static,
3902         (geniCodeLogicAndOr): added in order to fix bug #905492,
3903         (ast2iCode): fixed bug #905492
3904         * support/regression/tests/bug-905492.c: added
3905         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
3906         (processParms): fixed bug #927659: don't copy parms, this will clear
3907         decorated flag
3908         * support/regression/tests/bug-927659.c: added
3909
3910 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
3911
3912         * src/SDCCast.c (addCast): don't cast float to char
3913         * device/lib/libsdcc.lib: added _memmove
3914
3915 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
3916
3917         * device/lib/large/Makefile: fixed parallel execution by
3918         replacing `make` by `$(MAKE)`
3919
3920 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3921
3922         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
3923         offsets (fixes bug #923936)
3924
3925 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
3926
3927         * device/lib/small/Makefile: fixed parallel execution by
3928         replacing `make` by `$(MAKE)`
3929
3930 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
3931
3932         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
3933
3934 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
3935
3936         * src/pic/gen.c (genCpl): multi-byte complements were not working.
3937         * src/regression/Makefile: Regression test was not running.
3938
3939 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
3940
3941         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
3942         complement if possible
3943         * src/SDCCval.c (valComplement),
3944         * src/SDCCicode.c (operandOperation): fixed complement of literal
3945         * support/regression/tests/onebyte.c (testComplement): added
3946
3947 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
3948
3949         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
3950         return an optimized tree; actually replace actParm with the new tree
3951         * src/SDCCast.h: added some parantheses to remove side effects
3952         * support/regression/tests/bug-920866.c
3953
3954 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
3955         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
3956         Bit operands were not being handled properly in the pic14 port.
3957         (now src/regression/add.c passes again).
3958
3959 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3960
3961         * src/SDCC.y (labeled_statement): case and default no longer require
3962         a following statement (RFE #893037)
3963
3964 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3965
3966         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
3967         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
3968         disabled (fixes bug #916294)
3969         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
3970         "mov a,acc"; patch provided by Lenny Story
3971         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
3972
3973 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3974
3975         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
3976         functions
3977         * src/ds390/gen.c (genFunction, genEndFunction),
3978         * src/ds390/ralloc.c (ds390_assignRegisters),
3979         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
3980         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
3981         pushed if there are parameters passed on the stack. Also, a cleaner
3982         way to decide if r0/r1 should be pushed/popped. (Together they fix
3983         bug #918693)
3984
3985 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3986
3987         * doc/sdccman.lyx,
3988         * device/lib/mcs51/crtpagesfr.asm,
3989         * device/lib/mcs51/crtxinit.asm,
3990         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
3991         to avoid confusion with Si Lab's SFRPAGE register.
3992
3993 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3994
3995         * src/SDCCglue.c (emitMaps): allow public sfr variables
3996         * src/SDCCglue.c (initialComments): include compiler build date
3997         with compiler version and put the timestamp of the generated
3998         assembly file on a serperate line to be less confusing.
3999         * src/port.h: added genInitStartup hook
4000         * src/avr/main.c,
4001         * src/ds390/main.c,
4002         * src/hc08/main.c,
4003         * src/pic/main.c,
4004         * src/pic16/main.c,
4005         * src/xa51/main.c,
4006         * src/z80/main.c: genInitStartup initialize as NULL (default to
4007         historical behaviour)
4008         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
4009         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
4010         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
4011         library instead of hard coding it into the compiler.
4012         * support/regression/ports/mcs51-stack-auto/spec.mk,
4013         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
4014         * device/lib/mcs51/Makefile,
4015         * device/lib/small/Makefile,
4016         * device/lib/large/Makefile,
4017         * device/lib/mcs51/crtpagesfr.asm,
4018         * device/lib/mcs51/crtstart.asm,
4019         * device/lib/mcs51/crtxclear.asm,
4020         * device/lib/mcs51/crtxinit.asm,
4021         * device/lib/mcs51/crtclear.asm,
4022         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
4023         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
4024         and into user configurable files.
4025         * device/lib/clean.mk: clean mcs51 directory too
4026         * support/regression/tests/longlit.c: added static to T1 declaration
4027         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
4028         accesses in the initialization code
4029
4030 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4031
4032         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
4033         OSCTRIMVAL as noted in bug #916008
4034
4035 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4036
4037         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
4038         in loops with multiple exits (reported as incorrect registers
4039         used by Martin Helmling in Sdcc-user list)
4040
4041 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4042
4043         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
4044         made ds390 register extensions look less like error messages
4045
4046 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4047
4048         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
4049         reported by Adam Wozniak in Sdcc-user list
4050
4051 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
4052
4053         * src/SDCCast.c (decorateType): fixed with bug and promotion in
4054         arithmetic optimizations, added debug output
4055
4056 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
4057
4058         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
4059         * sdcc.spec: updated and split sdcc into 3 rpms
4060         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
4061         needed for literals of LEFT_OP and '+'
4062         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
4063         introduced RESULT_TYPE_NOPROM
4064         (geniCodeMultiply): fixed logic for decision if mul is optimized to
4065         left shift
4066         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
4067         limited promotion to int only for '*'
4068         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
4069
4070 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
4071
4072         * src/pic16/gen.c (genSkip),
4073         (genc16bit2lit), (gencjneshort): commented out
4074         (is_LitOp): new helper function, checks operand type
4075         (genCmpEq): rewritten
4076
4077 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
4078
4079         * support/regression/tests/bug-908454.c: added
4080
4081 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
4082
4083         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
4084         * src/SDCCicode.c (usualBinaryConversions): op needs int type
4085         (geniCodeCast): cosmetic, don't preserve bit storage class
4086         (geniCodeLeftShift): added promotion
4087         (geniCodeLogic): fixed regression
4088         * src/SDCCsymt.c (computeTypeOr): accept bits too
4089         (compareType): 2nd part of fix for bug #908454, needed for bitfields
4090
4091 2004-03-07  Borut Razem <borut.razem AT siol.net>
4092
4093         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
4094
4095 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
4096
4097         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
4098         version of pic16_genPackRegisters which does not check if ic is a
4099         CAST operator,
4100         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
4101         function cause string1.c regression test fails
4102
4103 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
4104
4105         * sim/ucsim/configure.in,
4106         * sim/ucsim/configure,
4107         * sim/ucsim/doc/Makefile.in: use docdir
4108         * src/SDCC.y: fixed sbit atrributes
4109         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
4110         * src/SDCCast.c (decorateType): |^& need special promotion handling
4111         * src/SDCCast.h,
4112         * src/SDCCsymt.h: moved definition of RESULT_TYPE
4113         * src/SDCCsymt.h (computeType),
4114         * src/SDCCicode.c: computeType() needs op
4115         * src/SDCCsymt.c (checkTypeSanity),
4116         * doc/sddman.lyx: "plain" bitfields are unsigned
4117         * src/SDCCsymt.c (computeTypeOr): added
4118         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
4119         |^& ops
4120         * src/SDCCval.c (val*): computeType() needs op
4121         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
4122         * support/regression/tests/onebyte.c: added tests for |^&
4123
4124 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
4125
4126         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
4127         for writing icode into asm output.
4128
4129 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
4130
4131         * src/pic16/device.c: added some debug lines enabled
4132         with macro DEBUG_CHECK,
4133         * src/pic16/genarith.c: more debug in genPlus,
4134         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
4135         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
4136         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
4137         * (aopForSym): onStack symbols are re-placed in data memspace,
4138         and onStack flag is cleared,
4139         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
4140         copy temporary pcodeop,
4141         * (genPcall): added warning for not updating PCLATU,
4142         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
4143         always true for pic16 port,
4144         * (genMultOneWord): NEW, supports integer multiplication,
4145         * (genMult): modified to call genMultOneWord,
4146         * (ifxForOp): added warning when return NULL,
4147         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
4148         flag is set before call to operandFromSymbol for implicit
4149         added structures,
4150         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
4151         options.intlong_rent are set by default,
4152         * (_hasNativeMulFor): modified to allow port generation of integer
4153         multiplication,
4154         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
4155         set regtype to REG_SFR for all registers, restricting seting the
4156         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
4157
4158 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4159
4160         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
4161         more than 500 times in the regression tests
4162
4163 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4164
4165         * support/Util/SDCCerr.h,
4166         * support/Util/SDCCerr.c,
4167         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4168         enumerator_list),
4169         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
4170         for symbol conflicts.
4171         * support/valdiags/tests/enum.c,
4172         * support/valdiags/tests/tentdecl.c,
4173         * support/valdiags/tests/struct.c: expect possible error messages
4174         referring to original symbol definitions.
4175         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
4176         * src/SDCCsymt.h,
4177         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
4178
4179 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
4180
4181         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
4182
4183 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
4184
4185         * src/pic16/ralloc.c (newReg): fixed bug #908929
4186
4187 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4188
4189         * src/ds390/gen.c: added missing #include "main.h"
4190
4191 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
4192
4193         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
4194         checking if symbol is already in set,
4195         * src/pic16/device.h: prototype for checkAddSym,
4196         * src/pic16/gen.c: (_G): added entry interruptvector,
4197         * (assignResultValue): removed some commented out lines,
4198         * (genFunction): check for ISR via sym->type, absolute section for
4199         interrupt code is created via a new pBlock, the goto instruction is
4200         placed now correctly at the interrupt vector position, changed all
4201         references from ivec to _G.interruptvector,
4202         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
4203         is the interrupt is a high priority one, same for return from ISR,
4204         * src/pic16/glue.c: changed all calls of addSetHead for publics and
4205         externs to calls of checkAddSym,
4206         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
4207         pic16_pcode_verbose flag is set,
4208         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
4209         * src/pic16/pcoderegs.c: message about how many registers are saved
4210         will only be emitted if pic16_pcode_verbose flag is set,
4211
4212 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4213
4214         * src/ds390/ralloc.h,
4215         * src/ds390/ralloc.c (ds390_regWithIdx),
4216         * src/ds390/gen.c (emitcode),
4217         * src/ds390/main.h,
4218         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
4219         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4220         ds390operandCompare, getRegsRead, getRegsWritten,
4221         initializeAsmLineNode): customized instruction size calculation for
4222         ds390, started basis for some register optimizations
4223         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
4224         corresponding assembly output
4225         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
4226         missing push/pop of r0/r1. Optimized push/pops
4227
4228 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4229
4230         * src/mcs51/main.c (instructionSize): fixed ACALL size
4231         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
4232
4233 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
4234
4235         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
4236         the sorting of rlist with NULL elements
4237         * (print_idataType, print_idata): NEW to create idata sections
4238         * src/pic16/device.h: idataSymSet new variable
4239         * src/pic16/gen.c (genFunction): fixed some bugs in string
4240         comparing, improved the absolute section creation for ISRs,
4241         added FSR0L/FSR0H in registers that are saved in an ISR,
4242         * (genInline): fixed the processing of inline snippets,
4243         now they undergo no process by the peephole optimizer
4244         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
4245         are placed in idataSymSet,
4246         * (pic16emitStaticSeg): extern symbols are added in externs,
4247         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
4248         switching when aboslute variables are placed in access bank memory
4249         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
4250         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
4251         commented out with #if,
4252         * (pic16_packRegisters): reintroduce the check for CAST because some
4253         symbols are not correctly handled,
4254         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
4255         pCodeInstruction instead of pCode,
4256         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
4257         pCodeAsmDir definition,
4258         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
4259         directive, then the argument directive is emitted without the leading
4260         tab, hack for inline labels which must be in the first column,
4261         * (compareLabel,pic16_findNextInstruction),
4262         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
4263         * (insertBankSwitch): modified for the new pCodeAsmDir,
4264
4265 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4266         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
4267
4268         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
4269         instance,
4270         * (pushSide): commented out with #if,
4271         * (assignResultValue): fixed some typos in saving
4272         registers,
4273         * (genPcall): FIXED and sync'ed with genCall,
4274         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
4275         * (genNearPointerGet): fixed to handle some more cases,
4276         implementation scheme via table reads,
4277         * (genConstPointerGet): modified to access code memory correct,
4278         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
4279         and improved to handle some cases
4280         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
4281         instead of "RETLW" for init data
4282         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
4283         not IN_DIRSPACE, work around to reduce bank switching when aboslute
4284         variables are placed in access bank memory (<0x80 and >=0xf80),
4285         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
4286         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
4287         TBLWT_POSTDEC,TBLWT_PREINC
4288         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
4289         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
4290         directives
4291         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
4292         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
4293         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
4294         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
4295
4296 2004-02-29  Borut Razem <borut.razem AT siol.net>
4297
4298         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
4299         support/Util/findme.h, support/Util/system.h: enhance binary relative
4300         search for lib and include by using findProgramPath()
4301
4302 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4303
4304         * src/SDCCpeeph.h,
4305         * src/SDCCpeeph.c (pcDistance),
4306         * src/port.h,
4307         * src/mcs51/ralloc.h,
4308         * src/mcs51/ralloc.c (mcs51_regWithIdx),
4309         * src/mcs51/main.h,
4310         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
4311         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4312         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
4313         size calculation port specific, started basis for some register
4314         optimizations
4315         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
4316         missing push/pop of r0/r1. Optimized push/pops
4317         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
4318         * device/lib/_modsint.c (_modsint),
4319         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
4320         and stack version so regression tests pass
4321
4322 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
4323
4324         * src/Makefile.in (dep): include SLIBOBJS in dependency check
4325         * src/SDCCast.c (decorateType): catch another small optimization
4326         with '?' operator
4327         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
4328         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
4329         modified to finally use computeType() all over SDCC,
4330         see Feature Request #877103
4331         * src/SDCCval.h: cosmetic
4332         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
4333         valCompare(); regression tested in muldiv.c
4334         * support/regression/tests/muldiv.c (testMod): mod sign follows
4335         dividend only
4336
4337 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
4338
4339         * src/SDCCast.c (decorateType): fixed bug #902362
4340         * doc/INSTALL.txt: fixed install instructions for win32
4341
4342 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
4343
4344         * device/include/Makefile.in (install): fixed by replacing spaces
4345         by tabs
4346         * doc/README.txt,
4347         * doc/INSTALL.txt: updated for release
4348         * doc/sdccman.lyx: added warning for --xstack being buggy
4349
4350 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
4351
4352         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
4353         to eliminate build warnings.
4354         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
4355
4356 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
4357            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4358
4359         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
4360         removed -penable-stack, added comment for stack pragma, added
4361         warning for not initializing the stack/frame registers, removed
4362         comment at interrupts section
4363
4364         Stack is made permanent, there is no ability to disable stack usage.
4365         * src/pic16/device.h,
4366         * src/pic16/device.c: removed all references to USE_STACK macro,
4367         * src/pic16/device.c (pic16_dump_section): when no elements in
4368         rlist, free rlist before return,
4369         * (pic16_dump_int_registers): NEW, internal registers are a new set
4370         of general purpose registers reused by each function,
4371         * (checkAddReg): returns 1 if registers is added to set,
4372         * (pic16_groupRegistersInSection): when a registers is of type
4373         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
4374         * src/pic16/device.h: memRange and Assigned Memory are deleted,
4375         SRCASECMP macro is moved here from device.c
4376         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
4377         PO_PCLATU, PO_PRODL, PO_PRODH,
4378         * (pic16_pCodeOpType, genMinus,
4379         changed compares to "a" register, with AOP_ACC,
4380         * (pic16_genPlus): fixed some bugs and indented properly,
4381         * (pic16_addSign): changed size to size+offset in the MOVWF
4382         instruction,
4383         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
4384         multiply 8-bit operand by literal, result is 8-bit,
4385         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
4386         multiply 2 8-bit operand, result is 8-bit,
4387         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
4388         genUMult8X*_16,
4389         * src/pic16/gen.c: changed accUse to contain WREG only,
4390         * (pic16_emitcomment): renamed to pic16_emitpcomment,
4391         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
4392         true, do not use immediate addressing any more unless sym is a
4393         pointer in codespace,
4394         * (aopForRemat): do not use immediate addressing when symbol not in
4395         codespace and when symbol's address is requested,
4396         * (aopOp): for-loop in if(sym->accUse) is modified for the new
4397         accUse size (= 1),
4398         * (aopGet): added case for AOP_ACC and don't return "accumulator
4399         bug" but WREG instead,
4400         * (popGetTempReg): pushes contents of temporary register in stack,
4401         * (popReleaseTempReg): pops contents of temporary register from
4402         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
4403         * (pic16_popGet): separated case AOP_ACC to return register WREG
4404         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
4405         or PO_IMMEDIATE and initializes their instance/offset appropriately,
4406         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
4407         the use of immediate pointers to certain cases only.
4408
4409         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
4410         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
4411         * (assignResultValue, genCall, genRet): modified to use the new
4412         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
4413         genPcall is still broken,
4414         * (genFunction): added code to create 'A' type pBlocks when
4415         interrupt functions are generated, code not extensively tested yet,
4416         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
4417         * (genEndFunction): modified so ISRs pop stored registers from stack,
4418         * (genMultOneByte): cleanup,
4419         * (AccRsh): added flag andmask, to and result with appropriate mask,
4420         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
4421         * (genDataPointerGet): fixed and reenabled its use,
4422         * (genNearDataPointerGet): bugs fixed,
4423         * (genDataPointerSet): bugs fixed,
4424         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
4425         pic16_DumpSymbol, pic16_DumpOp,
4426         * src/pic16/genutils.h: function prototypes for the above functions,
4427         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
4428         pointers,
4429         * (pic16emitRegularMap): many many many improvements, but needs a
4430         major cleanup,
4431         * src/pic16/main.c: enable_stack in pic16_options is removed,
4432         * (_pic16_parseOptions): removed command line options -penable-stack,
4433         * (_process_pragma): emit stack symbol only when stack pragma is
4434         processed,
4435         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
4436         redirected to FSR0L/FSR0H pair,
4437         * (pic16_get_op, pic16_get_op2): modifications and improvements,
4438         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4439         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
4440         for immediates,
4441         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
4442         * (dumpPicOptype): NEW,
4443         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
4444         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
4445         with movff instruction,
4446         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
4447         added pic16_int_regs, some packRegsFor* functions are commented out,
4448         because produce errors,
4449         * src/pic16/NOTES: minor modifications
4450
4451 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4452
4453         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
4454         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
4455         --pack-iram.
4456         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
4457         * as/mcs51/lkaomf51.c: fixed bug #895763
4458
4459 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
4460
4461         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
4462
4463 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4464
4465         * doc/sdccman.lyx: added details about the HC08 storage classes and
4466         interrupts, fixed the register usage info for z80 & gbz80
4467
4468 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
4469
4470         * doc/sdccman.lyx: added more pic16 port documentation
4471         * device/include/pic16/: added header pic18fregs.h
4472
4473 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
4474
4475         * doc/sdccman.lyx: added Vangelis' contribution
4476
4477 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4478
4479         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
4480         extend to the next CALL or PCALL, not just to the next CALL.
4481
4482 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
4483
4484         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
4485
4486 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4487
4488         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
4489         bug #895752 and a better fix for bug #716790
4490
4491 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4492
4493         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
4494
4495 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4496
4497         * doc/sdccman.lyx: minor changes, minor changed
4498
4499 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
4500
4501         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
4502         which can't handle SDCC_NEWONEBYTEOPS,
4503         (geniCodeMultiply): removed conversion from mult to shift for pic14
4504         and pic16
4505
4506 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4507
4508         * src/hc08/gen.h,
4509         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
4510         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
4511         thus fixing bug #895406
4512
4513 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
4514
4515         * device/lib/_modsint.c,
4516         * device/lib/_modslong.c: sign follows divisor only
4517         * src/hc08/gen.c (genMultOneByte): if result size is 1,
4518         signs or signedness can be ignored
4519         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
4520         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
4521         added optimization for IFX,
4522         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
4523         arguments;
4524         reenabled optimization for IFX, which was removed on 2004-01-11
4525         * src/SDCCast.h: added return type IFX
4526         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
4527         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
4528         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
4529         SDCC_OLDONEBYTEOPS selects the old behaviour
4530         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
4531         changed again and commented promotion rule
4532         * src/SDCCval.c (valDiv): promotion no longer necessary
4533         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
4534         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
4535         rewritten
4536         * support/regression/tests/onebyte.c: added
4537
4538 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
4539
4540         * gen.c (genInline): reverted to old code for assemnling inline
4541         code because of bug reported James Chadd
4542
4543 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
4544
4545         * ralloc.h: missing declarations from previous patch,
4546         seems that patch for ralloc.h was never applied, fixed
4547
4548 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4549            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
4550
4551         * pcode.c,
4552         * pcode.h,
4553         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
4554         indirect addressing. Marked FSR0 as deprecated
4555         * gen.c (pointerCode): commented out, not needed now
4556         (pic16_popGet2p): new MOVFF helper function
4557         (genGenPointerGet),
4558         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
4559         (shiftRLong): removed duplicate debugging info
4560
4561 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4562
4563         * src/ds390/gen.c (genNearPointerGet),
4564         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
4565         optimization with bits, but not bitfields.
4566         * src/ds390/ralloc.c (packRegisters),
4567         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
4568
4569 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
4570
4571         * src/SDCCcse.c (algebraicOpts): copy operands before modification
4572
4573 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4574
4575         * src/SDCCsymt.h,
4576         * src/SDCCicode.c (operandFromSymbol),
4577         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
4578         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
4579         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
4580         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
4581         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
4582         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
4583         bug #892038
4584         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
4585         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
4586         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
4587         * src/SDCCsymt.c (newSymbol),
4588         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4589         enumerator_list),
4590         * src/SDCCval.h,
4591         * src/SDCCval.c (newiList): fixed bug #885705
4592
4593 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4594
4595         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
4596         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
4597
4598 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4599
4600         * device/include/c8051f120.h,
4601         * device/include/c8051f300.h,
4602         * device/include/c8051f310.h: added/updated header files for Silicon
4603         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
4604         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
4605         in new section Submitting patches
4606
4607 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4608
4609         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
4610         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4611         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4612         genGenPointerSet),
4613         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
4614         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4615         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4616         genGenPointerSet),
4617         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
4618         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4619         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4620         genGenPointerSet),
4621         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
4622         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4623         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4624         genGenPointerSet): fixed bug #892400
4625         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
4626         to eliminate build warnings.
4627         * src/SDCCast.c (processParms),
4628         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
4629         fixed bug 751859
4630         * support/valdiag/valdiag.py: added GCC to the list of defines active
4631         when compiling with gcc
4632
4633 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4634
4635         * support/Util/SDCCerr.h,
4636         * support/Util/SDCCerr.c,
4637         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
4638         with an incomplete type (fixed bug #883734)
4639         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
4640
4641 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4642
4643         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
4644
4645 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4646
4647         * src/SDCCast.c (decorateType),
4648         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
4649         function pointer implementation
4650         * support/regression/tests/funptrs.c: added tests to verify both forms
4651         of function pointers work correctly. Added tests to verify parameters
4652         are passed in the correct order.
4653
4654 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
4655
4656         * device.c (regCompare): registers are sorted by ascending
4657         address and increasing size,
4658         * main.c (_pic16_finaliseOptions): removed the declaration
4659         of compiler macro MCU. Now a macro of the format pic18fxxxx
4660         will be defined from the command line
4661
4662 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4663             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
4664
4665         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
4666         PCOP_RLCF was overwritten!
4667         * gen.c (genSkip): commented out calls to pic16_emitcode,
4668         * (genCmpEQ): fixed "long" compares, only high word did get compared,
4669         * (genlshTwo),
4670         * (genRRC): added debugging info,
4671         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
4672         overwritten while shifting,
4673         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
4674         overwritten while shifting,
4675         * (AccLsh),
4676         * (AccRsh),
4677         * (shiftLLeftOrResult),
4678         * (shiftRLeftOrResult),
4679         * (shiftRLong),
4680         * (shiftLLong): Implemented with pic16_emitpcode
4681         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
4682         * (genLeftShift): Fixed bug, operand for shift by variable always
4683         was "and"ed with 0x0f,
4684         * (genLeftShiftLiteral),
4685         * (genrshTwo),
4686         * (genRightShiftLiteral): added debugging info,
4687         * (genrshFour): added comment,
4688         * (genRightShift): determined signedness from operand "left"
4689         instead of "result"
4690
4691 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4692
4693         * src/SDCCicode.c (geniCodeParms),
4694         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
4695         function pointers, fixed function pointer bugs #861242 and #861896
4696
4697 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4698
4699         * device/include/c8051f000.h,
4700         * device/include/c8051f120.h,
4701         * device/include/c8051f300.h: added header files for Silicon
4702         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
4703
4704 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
4705
4706         * src/SDCCast.c (processParams): added new type flow and restructured
4707         (gatherAutoInit): added new type flow
4708         (addCast): cosmetic changes
4709         (getLeftResultType): added new type flow for array indices, patch
4710         provided by Stas, see FR #877103
4711         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
4712         array index patch by Stas
4713         * src/SDCCast.h: added prototype getResultTypeFromType()
4714         * src/SDCCval.h,
4715         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
4716         * src/pic/glue.c (pic14emitStaticSeg),
4717         * src/pic16/glue.c (pic16emitStaticSeg),
4718         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
4719         for initialization of symbols
4720         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
4721         * support/Util/SDCCerr.h:
4722         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
4723         * .version: bumped version number to 2.3.8
4724         * device/include/Makefile.in (install),
4725         * doc/Makefile (install): changed to 'rm `find ...`' construct to
4726         avoid warnings
4727
4728 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
4729
4730         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
4731         Slade Rich fixed an optimization bug
4732         * src/pic/pcodepeep.c,
4733         * src/pic/pcoderegs.c
4734         * doc/Makefile (install): added test for directory
4735
4736 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4737
4738         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
4739         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
4740         * src/pic/ralloc.c (getRegPtr, getRegGpr),
4741         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
4742         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
4743         * as/mcs51/asexpr.c (term),
4744         * as/hc08/asexpr.c (term): fixed bug #887146
4745
4746 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4747
4748         * src/z80/gen.c (genMult): handle single byte result product
4749         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
4750         DUMMY_READ_VOLATILE (fixed bug #886367)
4751
4752 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
4753
4754         * support/regression/tests/libmullong.c: fixed logic, on little endian
4755         hosts we ended without a mullong_wrapper()
4756
4757 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4758
4759         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
4760         virus/worm forged address usage.
4761
4762 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
4763
4764         Fixed promotion, it should be done on AST level:
4765         * src/SDCCast.c (addCast): added promotion to int
4766         (decorateType): updated call to upCast()
4767         * src/SDCCicode.c (geniCodeLeftShift): removed call to
4768         usualUnaryConversions()
4769
4770 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
4771
4772         * support/regression/tests/literalop.c (mulWrapper): Added a
4773         wrapper to remove integer overflow warnings.
4774
4775         * support/regression/tests/float_trans.c: Made work on host.
4776
4777         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
4778         location of sz80.
4779
4780         * support/regression/generate-cases.py (main): Changed from inline
4781         to a main method.
4782
4783         * doc/Makefile (install): Changed to depth first to get rid of
4784         missing directory install warning.
4785
4786         * as/Makefile (install-doc): Made work on Mac.
4787
4788 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
4789
4790         * src/SDCCast.c: added an additional type flow in decorateType() of
4791         opposite direction, see feature request #860006; it's enabled at runtime
4792         by setting the environment variable SDCC_NEWTYPEFLOW
4793         * src/SDCCast.h: changed prototype of decorateType()
4794         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
4795         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
4796         'char' to 'int' can be omitted, if both operands are 'unsigned char';
4797         see feature request #877103
4798         * src/SDCCval.c: updated call of decorateType()
4799         (valBitwise): fixed bug #882876
4800         (valMinus): added promotion
4801         (valLogicAndOr): result is unsigned
4802         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
4803         * src/SDCCsymt.c (computeType),
4804         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
4805         must not cause an unsigned operation
4806         * src/pic/glue (pic14emitRegularMap),
4807         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
4808
4809 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
4810
4811         * src/pic/pcode.c (PCodeID): commented out left over debug code
4812
4813 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
4814
4815         * support/valdiag/tests/overflow.c: added shift tests
4816         * src/pic/device.c,
4817         * src/pic/gen.c,
4818         * src/pic/gen.h,
4819         * src/pic/glue.c,
4820         * src/pic/main.c,
4821         * src/pic/pcode.c,
4822         * src/pic/pcode.h,
4823         * src/pic/pcodepeep.c,
4824         * src/pic/pcoderegs.c,
4825         * src/pic/ralloc.c,
4826         * src/pic/ralloc.h: applied patch from Slade Rich;
4827         added support for multiple code pages and multiple RAM banks on the
4828         PIC 14 port. The ASM files now no longer simply assume all the
4829         code / RAM are in the same page / bank. This means the linker can
4830         safely allocate code/RAM of separate ASM files to different pages/banks.
4831         * doc/sdccman.lyx: added Slade's tips
4832         * src/mcs51/peeph.def: fixed bug #880768
4833
4834 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4835
4836         * src/hc08/ralloc.c (rematStr): fixed bug #879282
4837         * src/SDCCast.c (decorateType): fixed bug #880197
4838
4839 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
4840
4841         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
4842         getopt.h.
4843
4844         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
4845         strtof is not part of C89 and isn't included with Mac OS X.
4846
4847 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4848
4849         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
4850         shiftL2Left2Result): fixed bug #879326
4851         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
4852         (genMultOneByte): fixed bug in signed vs unsigned multiplication
4853         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
4854         address fetch for clr instruction
4855         * device/lib/hc08/_mulint.c: created optimized assembly version
4856         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
4857
4858 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
4859
4860         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
4861         proposed in FR #877103
4862
4863 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
4864
4865         * src/SDCCval.c (cheapestVal): added missing checks
4866         * src/SDCCicode.c (usualBinaryConversions): fixed condition
4867         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
4868
4869 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
4870
4871         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
4872         equal operands
4873
4874 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
4875
4876         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
4877         loaded with the linker search paths (-L arguments) and the libraries
4878         to be linked with the current source (-l arguments). Changes
4879         currently will affect only the pic16 port.
4880         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
4881         include path the port specific paths and port specific libraries,
4882         * gplink command now contains the $3 argument,
4883         * src/pic16/device.h,
4884         * src/pic16/device.c,: structure PIC_device is made public and
4885         renamed to PIC16_device, the same for variable Pics which is renamed
4886         to Pics16. Updated all references to them.
4887         * src/pic16/glue.c (pic16glue): corrected bug with code
4888         initialization which bypassed the variable initializations block.
4889
4890         * device/lib/pic16/Makefile.rules: removed --penable-stack from
4891         COMPILE_FLAGS and added the --nostdinc option
4892
4893 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4894
4895         * device/include/mc68hc908jb8.h: Register defs for another member
4896         of the hc08 family. Contributed by Bjorn Bringert - thanks!
4897
4898 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
4899
4900         Documenting changes from previous commits.
4901         * configure.in (version 1.56),
4902         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
4903         when generating output files to configure the pic16 library,
4904         but now I've commented it out, since gputils aren't installed in the
4905         SF compile farm, so library won't compile
4906
4907         * device/lib/Makefile.in (version 1.56): initially I've added in
4908         target 'all' the prerequestive 'model-pic16' so it compiled the
4909         pic16 library, but now I've commented it out for the same reasons
4910         above,
4911         * added targets 'model-pic16' and 'objects-pic16' to compile the
4912         library
4913         * added target 'port-specific-objects-pic16' to handle the
4914         generated libraries and copy them into the build/ directory
4915         * added target 'clean-intermediate-pic16' to clean intermediate
4916         files into pic16 directory
4917         * in target 'installdirs' added line to create directory pic16 in
4918         the installation path
4919
4920         * device/include/Makefile.in (version 1.11): in target 'install'
4921         added lines to copy all header files to installation path,
4922         * in target 'installdirs' added line create directory for pic16
4923         headers in the installation path
4924
4925 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
4926
4927         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
4928          a function call
4929
4930 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
4931
4932         * configure,
4933         * device/lib/configure.in,
4934         * device/lib/configure: fixed for autoconf 2.57
4935
4936 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4937
4938         * src/z80/main.c (_parseOptions): fixed the portmode= command line
4939         option so that it actually works. Made it specific to the z80, since
4940         the gbz80 doesn't have these kinds of I/O ports.
4941
4942 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4943
4944         * device/include/z180.h,
4945         * device/lib/_memcpy.c,
4946         * device/lib/_memmove.c,
4947         * device/lib/_mulint.c,
4948         * device/lib/ser_ir.c,
4949         * device/lib/ser_ir_cts_rts.c,
4950         * device/lib/_strcmp.c,
4951         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
4952         * src/z80/main.c (_process_pragma): add support for pragmas bank and
4953         portmode; added deprecation warning for bank= and protmode= forms.
4954         Also, guard against buffer overflow.
4955         * src/z80/gen.c (aopGet): generate better code for sfr banked read
4956
4957 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4958
4959         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
4960         changed interrupt vector table generation to only emit declared vectors.
4961         * device/include/Makefile.in: added missing backslash
4962         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
4963
4964 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
4965
4966         Mainly changes to support compilation of the device libraries
4967         * src/pic16/device.c: stack is allocated via symbol and not
4968         via literal number. The symbol is placed in the corresponding
4969         position of the data ram
4970         * (pic16_dump_section): relocatable and absolute uninitialized
4971         data are now emitted in sorted order to reduce section naming,
4972         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
4973         weren't marked as being in the access bank,
4974
4975 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
4976
4977         Added portion of GNU PIC Library under the directory
4978         device/include/pic16 and device/lib/pic16. These files
4979         contain the declarations of SFRs for the PIC18Fxx2 devices.
4980         The directory is initialized via configure from toplevel.
4981
4982 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
4983
4984         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
4985         the spilllocations to be compared correctly
4986
4987 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
4988
4989         * src/SDCCast.c (decorateType): fixed bug introduced today
4990
4991 2004-01-12  Borut Razem <borut.razem AT siol.net>
4992
4993         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
4994         doc/sdccman.lyx: upper case pragmas are deprecated
4995
4996 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
4997
4998         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
4999         in simpler and even better code
5000
5001 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
5002
5003         * src/SDCCicode.c (operandOperation): fixed bug #874819
5004         * src/SDCCast.c (decorateType): fixed
5005         char foo (unsigned long ul) { return ul > 0; }
5006
5007 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5008
5009         * doc/sdccman.lyx: Moved and added some sections, small changes
5010         all over. Telling LaTeX to be less strict with word spacing
5011         to better keep the right margin. Changed some notes about
5012         maintainance of the ports in section 3.2.1 - is it OK like this?
5013
5014 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
5015
5016         SDCC source changes:
5017         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
5018         convilong): modified to inform the pic16 port that builtin functions
5019         are external
5020
5021         PIC16 PORT specific changes:
5022         * src/pic16/device.c pic16_dump_equates() added,
5023         processor registers declared internally by the port are emitted in
5024         the translation as equates,
5025         * src/pic16/gen.c: inline code is passed unprocessed to the
5026         translation,
5027         * (pic16_popGetLit2): fnuction modified to take second operand as
5028         pCodeOp pointer and not as literal,
5029         * (popRegFromIdx): prefixed with pic16_,
5030         * (pic16_popCombine2): modified to receive already allocated pCode
5031         operands,
5032         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
5033         * (genFunction): initializes local stack frame and pushes on stack
5034         all the registers used by this function,
5035         * (genEndFunction): restores all registers from stack and restores
5036         stack frame,
5037         * src/pic16/glue.c (pic16emitRegularMap): various changes and
5038         improvements,
5039         * (pic16glue): changed the program startup sequence,
5040         * added new dbName code 'A' for functions placed in absolute section
5041         * src/pic16/main.c: added function attribute _naked,
5042         * added pragma 'code' to place a fnuction at an absolute address,
5043         * added command line arguments --debug-ralloc and --pcode-verbose,
5044         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
5045         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
5046         * (pic16_newpCodeOpLit2): modified to take the second operand as
5047         pCodeOp pointer,
5048         * (pic16_printpBlock): modified to emit each function in a separate
5049         section,
5050         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
5051         UPPER for immediate operands,
5052         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
5053         instruction,
5054         * src/pic16/peeph.def: all peepholes with movff are commented out,
5055         because there is a problem in the pcode peep optimizer,
5056         * src/pic16/ralloc.c: the register allocator can now reuse local
5057         function symbols for another function. This saves register usage.
5058         * src/pic16/ralloc.h: added flag isLocal in structure regs,
5059
5060         Added file src/pic16/NOTES with information about program writing on
5061         the current port version.
5062
5063 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5064
5065         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
5066         and peephole 252 (array access)
5067
5068 2004-01-09  Borut Razem <borut.razem AT siol.net>
5069
5070         * src/SDCCmain.c : fixed #872250: -l command line defined library
5071           files are scanned before standard library files
5072
5073 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5074
5075         * src/SDCCast.c (decorateType): fixed bug #874046
5076
5077 2004-01-09  Borut Razem <borut.razem AT siol.net>
5078
5079         * support/scripts/sdcc.nsi: remove previous installation
5080
5081 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5082
5083         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
5084         bytes for last interrupt vector (mcs51)
5085         * sdcc.spec: fixed typo
5086
5087 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5088
5089         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
5090         gen51Code): more efficient parameter receive for --model-large
5091         ("bug" #845294)
5092
5093 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5094
5095         * src/ds390/main.c,
5096         * src/z80/main.c: added missed needLinkerScript flags (more than
5097         one port structure defined in these file)
5098         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
5099         bug #795325
5100
5101 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
5102
5103         * src/SDCCmain.c: removed various references to DEFAULT_PORT
5104         * src/port.h: added flag needLinkerScript in port->linker
5105         structure to inform whether to create a .lnk file or not,
5106         * src/avr/main.c,
5107         * src/ds390/main.c,
5108         * src/hc08/main.c,
5109         * src/mcs51/main.c,
5110         * src/pic/main.c,
5111         * src/pic16/main.c,
5112         * src/xa51/main.c,
5113         * src/z80/main.c: changed appropriately to configure
5114         needLinkerScript flag
5115         * src/pic/gen.c,
5116         * src/pic16/gen.c (genAddrOf): fixed bug #863624
5117         * src/pic/glue.c: added variable udata_section_name to
5118         override default uninitialized data segment definition for
5119         devices only with SHAREBANK memory (reported from Erik Epetrich)
5120         * (pic14emitOverlay): modified to emit a commented overlay segment
5121         directive when no overlay data exist
5122         * (picglue): modified to emit uninitialized data segment
5123         according to udata_section_name
5124         * src/pic/main.c (_pic14_parseOptions): added command line
5125         options --udata-section-name=[name] to override default
5126         udata definition name
5127         * modified _linkCmd and _asmCmd to include compiler passed
5128         arguments via -W option
5129         * src/pic16/main.c: added $l in _asmCmd, changed extension for
5130         object file from '.rel' to '.o' in port->linker structure,
5131         changed size of fptr from 2 to 3 in port structure
5132
5133 2004-01-07  Borut Razem <borut.razem AT siol.net>
5134
5135         * support/scripts/sdcc.nsi: update PATH
5136         * support/scripts/sdcc.ico: craeted
5137
5138 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
5139
5140         * device/include/Makefile.in: fix install
5141         * doc/Makefile: fix install
5142
5143 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5144
5145         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
5146         in bug #860505
5147         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
5148         how the function variable allocation summary is displayed; also
5149         include information about variables allocated to the overlay
5150         segment
5151
5152 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5153
5154         * as/mcs51/lkmain.c: Help about -Y option
5155         * as/mcs51/lkarea.c: Fixed gcc warnings
5156
5157 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5158
5159         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
5160         fixed warning
5161         * support/valdiag/tests/overflow.c: added
5162         * src/SDCCast.c (decorateType),
5163         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
5164         LEFT_OP (left shift)
5165
5166 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5167
5168         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
5169         (default behaviour).
5170
5171 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5172
5173         A python script to validate compiler diagnostic messages. It can be
5174         used to verify that sdcc complains about bad c source code and
5175         gives a good location of the error.
5176         * support/valdiag/Makefile,
5177         * support/valdiag/valdiag.py,
5178         * support/valdiag/tests/*
5179
5180 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5181
5182         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
5183         * src/SDCCsymt.c (newEnumType),
5184         * src/SDCCsymt.h
5185         * support/Util/SDCCerr.c,
5186         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
5187         enum related bugs.
5188         * support/regression/tests/enum.c: added test for enum values that
5189         require at least 2 bytes of storage.
5190
5191 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5192
5193         * src/common.h: added ifndef/define/endif macros
5194         around the header file.
5195         Bug reported from Jesus Calvino-Fraga
5196
5197 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5198
5199         * sdcc.spec: updated
5200         * device/include/Makefile.in: don't install CVS directories
5201         * device/lib/Makefile.in: added removal of CVS directories after install
5202         * doc/Makefile: fixed install, added local_icons
5203         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
5204         * src/mcs51/gen.c (genRightShift): fixed bug #870788
5205         * src/ds390/gen.c (genRightShift): fixed bug #870788
5206         * src/SDCCast.c (decorateType): fixed bug #870781
5207
5208 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5209
5210         PIC16 port related changes:
5211         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
5212         added variable stackPos,
5213
5214         * gen.c: genCall, assignResultValue: added support for
5215         pushing/retrieving function parameters to/from stack,
5216         genFunction,genEndFunction: setup stack frame for the
5217         generated function,
5218         genAddrOf: will be changed according to bug 863624
5219
5220         * added files genutils.c and genutils.h which contain gen*
5221         debugged and optimised functions extracted from gen.c
5222
5223         * glue.c: added variable 'externs' which holds extern symbols,
5224         pic16emitRegularMap: is modified to properly handle relocatable
5225          symbols under the new scheme,
5226         pic16createInterruptVect: is modified
5227         pic16printPublics: is modified to emit 'global' assembler directives,
5228         added pic16_printExterns to print extern symbols,
5229         pic16glue: initializes stack/frame pointer in the beginning of
5230         the assembly output. Temporary hack, will be corrected later,
5231         because gplink yet does not support stack and SDCC does not
5232         yet support a type of crt0.o object to create the final binary.
5233
5234         * Removed many lines that contain 8051 legacy code.
5235         * The code is finally placed under a 'code' directive.
5236         * Added port specific options.
5237
5238         * _process_pragma: simplified since now we do not need *special*
5239         include file to define SFR registers. But a separate header
5240         will be needed. This will be developed later.
5241         * _pic16_parseOptions: added, parses port specific options:
5242         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
5243         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
5244         --preplace-udata-with=
5245
5246         * _pic16_setDefaultOptions: modified to initialize section names,
5247         but hack is temporarly out of order since it needs improvement.
5248         * _pic16_genAssemblerPreamble: configuration words are emitted by
5249         their address instead of their name. This part is incomplete and
5250         supports only the 18Fxx2 devices. Other devices will emit an error
5251         during assembly since they do not contain the same set of config
5252         registers
5253         * _pic16_genIVT: is modified,
5254
5255         * pcode.c: added definitions for some hardware registers that are needed
5256         for stack support
5257         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
5258         All PCI entries are updated. Now LFSR is supported.
5259         * Removed pic16_pciTRIS is mentioned by mdubuc in source
5260         * added pic16_newpCodeOpLit2 to support instructions with
5261         two literal arguments
5262         * pic16_pCode2str: corrected code that emits assembler instructions
5263         with two literal operands and those that have an access bit modifier
5264         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
5265         this fixes a bug which caused some labels to be lost, when an
5266         assembler directive was added, i.e. banksel,
5267         * pic16_FixRegisterBanking: improved logic that causes the insertion
5268         of bank switching,
5269         * InlineFunction: functions that are called once, are not any more
5270         inlined. This can be a port option in the future,
5271
5272         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
5273
5274         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
5275         hold the corresponding uninitialized symbols,
5276         * pic16_allocProcessorRegister: registers have explicit marked the
5277         accessBank field,
5278         * pic16_allocInternalRegister: registers are explicit marked as
5279         not used,
5280         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
5281         processing list, so bit registers were lost,
5282         *
5283
5284         * ralloc.h: added field 'accessBank' and original symbol operand
5285         in register definition,
5286         * removed the field isMapped from register definition,
5287
5288         ** Several functions have been removed from various sources:
5289         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
5290         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
5291         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
5292         pic16_assignRelocatableRegisters
5293
5294         ** others have been introduced:
5295         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
5296         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
5297
5298 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
5299
5300         * support/scripts/inc2h.pl: changed definition of BIT_AT
5301         to emit 'sbit at' instead of 'bit at'. This was a request.
5302
5303         PIC16 port related preliminary changes:
5304         * gen.c: prefixed function popRegFromString with
5305         pic16_ and all references to it corrected
5306         * pcode.c: all pic16_pc_* hardware registers prefixed
5307         with underscore (_),
5308         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
5309         * ralloc.c: newReg(): when register is REG_SFR then
5310         set address to rIdx,
5311         pic16_allocProcessorRegister(): marks register wasUsed=0
5312         pic16_writeUsedRegs(): added a call to assign processor
5313         registers via pic16_assignFixedRegisters
5314
5315 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5316
5317         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
5318         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
5319         variables in unused register banks.  Also the SSEG is placed
5320         wherever there is enough space for it, and IDATA can be anywhere
5321         in internal RAM.  For now compile using -Wl-Y[stack_size].
5322         The mem file is different for this option as well, since it
5323         makes no sense of talking about DSEG lenght.
5324
5325 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
5326
5327         * src/SDCClrange.c: fixed bug 869095 that caused segfault
5328         in certain cases, e.g. when ROM assignment, patch provided
5329         from Albert den Haan.
5330
5331 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
5332
5333         Many signedness and type propagation fixes:
5334         * src/SDCCicode.c: made geniCodeCast() static
5335         replaced SPEC_ by IS_ (cosmetic)
5336         (operandOperation): fixed div and mod operation
5337         (usualBinaryConversions): added support for promotion of char
5338         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
5339         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
5340         (geniCodeAdd): an array index will stay unsigned, even if promoted
5341         from char to int
5342         (geniCodeArray): ditto
5343         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
5344         * src/SDCCsymt.c (computeType): added more support for char;
5345         promotion of char is selectable by promoteCharToInt, fixed signedness
5346         for all cases
5347         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5348         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5349         * src/SDCCval (val*): replaced signedness calculation by
5350         computeType()
5351         rearranged if-branches (cosmetic)
5352         (valShift): added warning W_SHIFT_CHANGED
5353         (valCompare): fixed problem with different types
5354         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
5355         * support/regression/tests/literalop.c: added many cases
5356         * support/regression/tests/ast_constant_folding.c: changed finally to
5357         'unsigned int'
5358         * .version: new year, new version: 2.3.7
5359         * src/SDCCmain.c (main): applied patch #866468
5360         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
5361         provided by Scott Bronson
5362         * doc/sdccman.lyx: updated documentation for sdcdb
5363         updated and added chapter tips
5364
5365 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5366
5367         * src/SDCCsymt.h: missing from yesterday's commits
5368
5369 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5370
5371         * src/SDCC.y (struct_or_union_specifier),
5372         * support/Util/SDCCerr.c,
5373         * support/Util/SDCCerr.h: verify that struct & union tags are used
5374         as declared.
5375
5376 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5377
5378         * src/SDCCglobl.h: missing from yesterday's commits
5379
5380 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5381
5382         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
5383         sft_attributes, struct_declaration, parameter_declaration,
5384         type_name, start_block, declaration_list),
5385         * src/SDCC.lex (check_type): support redefinition of typedef names
5386
5387 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5388
5389         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
5390         aligned xdata arrays. Erik helped me with the if clause.
5391
5392 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5393
5394         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
5395         warning
5396
5397 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5398
5399         * src/SDCCast.h,
5400         * src/SDCCast.c (newAst_),
5401         * src/SDCCicode.h,
5402         * src/SDCCicode.c (ast2iCode, newiCode),
5403         * src/SDCCglobl.h,
5404         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
5405         expr, statement, expression_statement, selection_statement,
5406         iteration_statement, expr_opt, jump_statement): foundation for tracking
5407         sequence points
5408         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
5409         point code too)
5410
5411 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5412
5413         * support/Util/SDCCerr.c,
5414         * src/SDCCast.h,
5415         * src/SDCCast.c (createCase, createDefault, decorateType),
5416         * src/SDCClabel.c (labelUnreach),
5417         * src/SDCC.y (labeled_statement, jump_statement): More improvements
5418         to error messages.
5419         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
5420         (with thanks to Stas Sergeev)
5421         * device/include/time.h,
5422         * device/lib/time.c (CheckTime): suppress unreachable code warning
5423
5424 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5425
5426         * src/SDCCast.c (createIvalCharPtr),
5427         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
5428         bug #753752)
5429         * support/regression/tests/nullstring.c: tests for these two bugs
5430
5431 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5432
5433         * support/Util/SDCCerr.h,
5434         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
5435         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
5436         about storage class and 'at' used inside struct or union
5437         * src/SDCCBBlock.c (iCodeFromeBBlock),
5438         * src/SDCCcse.c (ifxOptimize),
5439         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
5440         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
5441         printIval, emitStaticSeg, emitOverlay),
5442         * src/SDCClabel.c (deleteIfx),
5443         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
5444         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
5445         gatherAutoInit, processParms),
5446         * support/Util/SDCCerr.h,
5447         * support/Util/SDCCerr.c (werrorfl): Support for better error location
5448         reporting for post-parse errors.
5449
5450 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5451
5452         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
5453         implicit casts via union; they don't work on big endian systems
5454         (possible fix for bug #861138)
5455
5456 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5457
5458         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
5459         * src/mcs51/main.c: fixed the fix for bug #737001
5460
5461 2003-12-15  Borut Razem <borut.razem AT siol.net>
5462
5463         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
5464
5465 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5466
5467         * support/makebin/makebin.c: put output in binary mode
5468
5469 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5470
5471         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
5472         xdata and data memory on startup. Set the environment variable
5473         SDCC_NOGENRAMCLEAR to disable this.
5474         * src/mcs51/peephole.def,
5475         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
5476         (allows non-interrupt and interrupt code to safely compete for a resource
5477         without the non-interrupt code having to disable interrupts)
5478
5479 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5480
5481         * src/SDCCicode.c (geniCodeAdd),
5482         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
5483         with valFromType if type might be a pointer and host is big endian).
5484         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
5485         types, not just integer types.
5486         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
5487         multiply defined with mismatching "at" address.
5488
5489 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5490
5491         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
5492         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
5493         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
5494         with embedded nulls (fixed bug #753752)
5495
5496 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5497
5498         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
5499         Apparently this did not see much testing (endless loop)
5500
5501 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5502
5503         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
5504
5505 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5506
5507         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
5508         gracefully handle NULL memmap pointers
5509
5510 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5511
5512         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
5513         instead of deleting the iCode when an operand is volatile
5514         * src/z80/gen.c (genDummyRead),
5515         * src/mcs51/gen.c (genDummyRead),
5516         * src/ds390/gen.c (genDummyRead),
5517         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
5518         not just IC_RIGHT
5519         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
5520         * src/SDCC.y: fixed bug #850420
5521
5522 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5523
5524         Applied z80 i/o port patch from Peter Townson and fixed some operators
5525         to better handle operands in A register.
5526         * device/include/z180.h
5527         * src/SDCC.y
5528         * src/SDCCglue.c
5529         * src/z80/gen.c
5530         * src/z80/gen.h
5531         * src/z80/main.c
5532         * src/z80/peeph-z80.def
5533         * src/z80/peeph.def
5534         * src/z80/z80.h
5535
5536 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5537
5538         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
5539
5540 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5541
5542         * device/lib/hc08/_mullong.c: Removed extra #endif
5543
5544 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5545
5546         * sim/ucsim/hc08.src/inst.cc,
5547         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
5548         carries from x to h
5549         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
5550         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
5551         * device/include/stdarg.h: fixed varargs for hc08
5552         * device/lib/Makefile.in,
5553         * device/lib/hc08/Makefile,
5554         * device/lib/hc08/_mulint.c,
5555         * device/lib/hc08/_mullong.c: fixed some endian problems
5556
5557 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5558
5559         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
5560         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
5561         * device/lib/_gptrget.c,
5562         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
5563
5564 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5565
5566         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
5567         * src/SDCCast.c (astErrors): fixed bug #846007
5568         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
5569
5570 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5571
5572         * src/SDCCast.c (decorateType): disabled a transformation I added in
5573         revision 1.188 (access to fields of a structure at an absolute address);
5574         it breaks with bitfields, extern declarations, and gcse analysis.
5575         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
5576         could be assigned through a pointer, so don't complain.
5577         * src/SDCCast.c (astErrors),
5578         * src/SDCCast.h,
5579         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
5580
5581 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
5582
5583         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
5584         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
5585         output of __config directives, since gpasm now supports them
5586         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
5587         pre-processor macro, i.e. -DMCU=p18f452
5588         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
5589         and modified to handle 'cast' icode similarly to '=' icode
5590         * src/pic16/device.h (typedef struct PIC_device): added field
5591         'extMIface' to indicate that chip has external memory interface
5592         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
5593         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
5594         18F8720
5595
5596 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5597
5598         * src/SDCC.y (pointer): fixed bug #846006
5599         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
5600         * src/SDCCast.c (decorateType): fixed bug #846009
5601         * src/ds390/peeph.def,
5602         * src/ds390/gen.c (genAnd, genOr),
5603         * src/mcs51/peeph.def,
5604         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
5605
5606 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5607
5608         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
5609         * src/SDCCdflow.c
5610         * src/SDCCcse.c
5611         * src/SDCCcse.h
5612         * src/SDCCBBlock.h
5613         * src/SDCCBBlock.c
5614
5615 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
5616
5617         fixed bug #845089
5618         * src/SDCCbitv.h,
5619         * src/SDCCbitv.c: added function to free a bitvector
5620         * src/SDCClrange.h,
5621         * src/SDCClrange.c: added function to recompute the liveranges
5622         * src/avr/ralloc.c,
5623         * src/ds390/ralloc.c,
5624         * src/hc08/ralloc.c,
5625         * src/mcs51/ralloc.c,
5626         * src/pic/ralloc.c,
5627         * src/pic16/ralloc.c,
5628         * src/xa51/ralloc.c,
5629         * src/z80/ralloc.c: recompute the liveranges after register packing
5630
5631 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
5632
5633         * src/SDCCloop.c (newInduction): fixed bug #845630
5634
5635 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5636
5637         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
5638         inadvertantly left behind from my 2003-11-12 change
5639
5640 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5641
5642         Updated headers I neglected to commit yesterday.
5643         * src/SDCClrange.h,
5644         * src/SDCCicode.h
5645
5646 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5647
5648         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
5649         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
5650         * src/SDCCopt.c (eBBlockFromiCode),
5651         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
5652         the creation of the key hash table from the sequencing so it can be used
5653         earlier (for some GCSE bug fixes still pending)
5654
5655 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5656
5657         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
5658         * support/regression/tests/addsub.c: testing genPlus shortcut
5659
5660 2003-11-15  Borut Razem <borut.razem AT siol.net>
5661
5662         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
5663
5664 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5665
5666         * src/SDCCcse.c (cseBBlock): fixed bug #527779
5667         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
5668         ordering is immaterial.
5669         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
5670
5671 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5672
5673         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
5674         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
5675         (SIGSEV) of bug #840381
5676         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
5677         unlink new file before rename if new and old filenames are the same)
5678
5679 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5680
5681         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
5682         uninitialized variables) for the mcs51. Set environment variable
5683         SDCC_GENRAMCLEAR to test.
5684         xdata initialization slightly shorter
5685
5686 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5687
5688         * src/SDCCsymt.h,
5689         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
5690         #838241 & 780691 (basicly the same bug)
5691         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
5692         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
5693
5694 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
5695
5696         * src/SDCCmain.c (linkEdit): "fix" #834252
5697
5698 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5699
5700         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
5701         * src/SDCCast.h,
5702         * src/SDCC.y: fixed bug #819403
5703
5704 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5705
5706         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
5707         the reentrant attribute.
5708         * src/hc08/gen.c (genPackBits): added missing stack readjustment
5709         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
5710         simulation
5711         * src/SDCCast.c (decorateType): fixed bug with storage class not being
5712         updated during pointer dereference; f.e. ~(((char *)1)*) was being
5713         erroneously reduced to a literal.
5714         * src/hc08/ralloc.c (packRegisters, rematStr),
5715         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
5716         some cases
5717
5718 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5719
5720         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
5721         * doc/sdccman.lyx: changed from 'article' to 'book'
5722         * doc/Makefile: readded test_suite_spec and cdbfileformat
5723
5724 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
5725
5726         * device/include/stdlib.h: include malloc.h to comply with ANSI
5727         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
5728
5729 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5730
5731         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
5732         * doc/clean.mk: also remove *.out files
5733         * doc/sdccman.lyx: some additions, larger top/bottom margins
5734
5735 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5736
5737         * src/SDCC.y: fixed bug #837365
5738         * support/regression/tests/bitopcse.c
5739         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
5740         a symbol (might be valop instead)
5741         * device/lib/Makefile.in: added errno.c to HC08SOURCES
5742         * device/lib/clean.mk: added hc08 to the cleaning list
5743
5744 2003-11-04  Borut Razem <borut.razem AT siol.net>
5745
5746         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
5747           made 2003-11-04
5748         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
5749           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
5750           malloc is declared in standard stdlib.h
5751
5752 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5753
5754         * device/lib/hc08/Makefile: need to clean .rel not .o files
5755         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
5756
5757 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5758
5759         * src/port.h,
5760         * src/hc08/main.c,
5761         * src/mcs51/main.c,
5762         * src/ds390/main.c,
5763         * src/z80/main.c,
5764         * src/avr/main.c,
5765         * src/pic/main.c,
5766         * src/pic16/main.c,
5767         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
5768         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
5769         tests (which uses the port's oclsExpense function)
5770         * src/SDCC.y,
5771         * src/SDCCast.c,
5772         * src/SDCCicode.c,
5773         * src/hc08/gen.c,
5774         * src/ds390/gen.c,
5775         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
5776
5777 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5778
5779         * src/SDCCcse.c (ifxOptimize),
5780         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
5781         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
5782         deleting the IFX iCode.
5783         * src/hc08/ralloc.c: reduced unneeded slocs
5784         * src/hc08/gen.c: fixed bug in asmopToBoolean
5785
5786 2003-11-04  Borut Razem <borut.razem AT siol.net>
5787
5788         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
5789           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
5790           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
5791           transferred to configure
5792
5793 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
5794
5795         Use headers defined in the C[++] standards:
5796         * sim/ucsim/gui.src/serio.src/fileio.cc
5797         * sim/ucsim/gui.src/serio.src/frontend.cc
5798         * sim/ucsim/gui.src/serio.src/main.cc
5799         * sim/ucsim/gui.src/serio.src/posix_signal.cc
5800         * support/Util/NewAlloc.c
5801         * as/hc08/lklibr.c
5802         * as/mcs51/lklibr.c
5803         * as/z80/aslist.c
5804         * as/z80/assym.c
5805
5806 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5807
5808         * Added MSVC projects for hc08 assembler and linker:
5809         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
5810         /as/hc08/link_hc08.dsp
5811
5812 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
5813
5814         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
5815
5816 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
5817
5818         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
5819
5820 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5821
5822         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
5823
5824 2003-10-31  Borut Razem <borut.razem AT siol.net>
5825
5826         * support/cpp2/cpplib.h,
5827           support/cpp2/cpplib.c,
5828           support/cpp2/cpplex.c,
5829           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
5830           to switch _asm block preprocessing on / off. Default is
5831           #pragma preproc_asm +
5832
5833 2003-10-31  Borut Razem <borut.razem AT siol.net>
5834
5835         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
5836           when outputting comment blocks (when executed with -C option) and
5837           _asm (SDCPP specific) blocks
5838
5839 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5840
5841         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
5842
5843 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
5844
5845         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
5846
5847 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
5848
5849         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
5850         * src/SDCCast.c (decorateType): fixed bug #832664
5851
5852 2003-10-31  Borut Razem <borut.razem AT siol.net>
5853
5854         * support\cpp2\cpplex.c: fixed for SDCPP:
5855           comments(when executed with -C option) and _asm blocks
5856           were included even if they where in skipped #if block.
5857           Applied solution from GCC cpp 3.3.2
5858
5859 2003-10-31  Borut Razem <borut.razem AT siol.net>
5860
5861         * src/SDCC.lex: sdcc now understands both formats:
5862           '# <line_number> <file_name>' and
5863           '#line <line_number> <file_name>'
5864         * support/cpp2/cppmain.c: sdcpp now generates the standard
5865           '# <line_number> <file_name>' instead of former
5866           '#line <line_number> <file_name>'
5867
5868 2003-10-30  Borut Razem <borut.razem AT siol.net>
5869
5870         * support/cpp2/cpphash.h,
5871         * support/cpp2/cpplib.h
5872         * support/cpp2/cpplex.c,
5873         * support/cpp2/cppmain.c,
5874         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
5875
5876 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5877
5878         Fixed a number of problems revealed by bug #827883.
5879         * src/SDCCloop.c (loopInvariants): Spill location of the
5880         result operand should be recomputed if extracted from
5881         a loop. Also, don't extract assignments of an iTemp
5882         from a literal.
5883         * src/SDCCast.c (isConformingBody): loop reversal should
5884         not occur if the control variable is involved with a
5885         relational operator.
5886
5887 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
5888
5889         * .version: bumped to 2.3.6 to reflect the big improvements
5890         made by Erik and Klaus. Thanks!
5891
5892 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
5893
5894         Replaced the livrange code.
5895         * src/SDCClrange.c: added new LR code
5896         * src/SDCCloop.c,
5897         * src/SDCCBBlock.h: removed remainig parts from old LR code
5898         * src/ds390/ralloc.c,
5899         * src/ds390/gen.c: minor fixes to make it work with new code
5900
5901 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5902
5903         * as/hc08/asm.h,
5904         * as/hc08/lkrloc.c,
5905         * src/hc08/gen.c,
5906         * src/hc08/ralloc.c: Fix various warnings related to the hc08
5907         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
5908         (tweaked fix for bug #818696)
5909
5910 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5911
5912         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
5913
5914 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5915
5916         * src/SDCCmain.c,
5917         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
5918         * src/mcs51/gen.c (gencjneshort),
5919         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
5920         more efficient (per Scott Bronson's suggestion)
5921
5922 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5923
5924         Extended the semantics of the critical keyword to include
5925         individual statements. See RFE #827755 and #799831
5926         * src/SDCC.y
5927         * src/SDCCicode.c
5928         * src/SDCCopt.c
5929         * src/SDCCast.c
5930         * support/Util/SDCCerr.c
5931         * support/Util/SDCCerr.h
5932         * src/mcs51/gen.c
5933         * src/ds390/gen.c
5934         * src/hc08/gen.c
5935
5936 2003-10-19  Borut Razem <borut.razem AT siol.net>
5937
5938         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
5939
5940 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5941
5942         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
5943         Fixed bug #818696
5944         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
5945         and predecrement operand is displayed
5946
5947 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
5948
5949         * src/SDCCval.c (valMinus): fixed bug #826041
5950
5951 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5952
5953         Some hc08 related updates that I missed earlier
5954         * sim/ucsim/stypes.h
5955         * support/regression/ports/hc08/spec.mk
5956
5957 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5958
5959         New target "hc08" for the Motorola 68hc08 family of micros
5960
5961         * configure
5962         * configure.in
5963         * Makefile
5964         * src/hc08/*
5965         * src/SDCCmain.c
5966         * src/port.h
5967         * sim/ucsim/hc08.src/*
5968         * sim/ucsim/configure.in
5969         * src/ucsim/configure
5970         * sim/ucsim/packages_in.mk
5971         * as/hc08/*
5972         * as/Makefile
5973         * device/include/mc68hc908qy.h
5974         * device/lib/hc08/*
5975         * device/lib/Makefile.in
5976         * support/regression/ports/hc08/*
5977         * support/regression/Makefile
5978
5979 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5980
5981         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
5982         regression test
5983         * src/ds390/gen.c (genCast): fixed bug #821957
5984
5985 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
5986
5987         * device/lib/logf.c: "fixed" overlay bug
5988         * support/regression/ports/host/spec.mk: added m library
5989         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
5990         * support/regression/tests/float_trans: added (for Eric)
5991
5992 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
5993
5994         * src/mcs51/gen.c (genCpl): fixed bug
5995         http://sf.net/mailarchive/message.php?msg_id=6263915
5996
5997 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
5998
5999         * src/SDCCast.c (decorateType): added extended constant folding
6000         * src/SDCCsymt.c (computeType): cleanup
6001         * src/SDCCval.c (valShift): minor optimization
6002         * support/regression/tests/ast_constant_folding.c: added
6003
6004 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6005
6006         * src/SDCCmain.c: removed some unintended changes
6007
6008 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6009
6010         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
6011         * src/z80/gen.c: fixed part of bug #817589
6012         * src/SDCCsymt.c (checkFunction): fixed bug #817895
6013
6014 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
6015
6016         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
6017         * src/SDCCcflow.c
6018         * src/SDCCcse.c
6019         * src/SDCCdflow.c
6020         * src/SDCClabel.c
6021         * src/SDCClrange.c
6022         * src/SDCCmem.c
6023         * src/SDCCopt.c
6024         * src/SDCCpeeph.c
6025         * src/SDCCset.c
6026         * src/avr/ralloc.c
6027         * src/ds390/ralloc.c
6028         * src/izt/ralloc.c
6029         * src/mcs51/ralloc.c
6030         * src/pic/ralloc.c
6031         * src/pic16/ralloc.c
6032         * src/xa51/ralloc.c
6033         * src/z80/ralloc.c
6034         * src/z80/gen.c: removed unused label "release:"
6035
6036 2003-10-06  Borut Razem <borut.razem AT siol.net>
6037
6038         * src/SDCC.lex: removed definition of unused variables
6039           save_optimize and save_options
6040
6041 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
6042
6043         * clean.mk: removed '=' in "-maxdepth=1"
6044         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
6045         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
6046
6047 2003-10-06  Borut Razem <borut.razem AT siol.net>
6048
6049         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
6050           my_unput() replaced by unput()
6051
6052 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
6053
6054         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
6055         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
6056         type-punned pointer will break strict-aliasing rules"
6057         Old LR behaviour is again default; Klaus' LR can be choosen by
6058         defining the environment variable LRKLAUS
6059         * src/SDCCBBlock.h
6060         * src/SDCCloop.c
6061         * src/SDCClrange.c
6062         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
6063         * clean.mk: fixed removal of files in bin/CVS/
6064         * device/lib/clean.mk: fixed removal of directories small and large
6065         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
6066         * src/SDCCicode.c,
6067         * src/SDCCval.c: removed superflous test for pedantic
6068
6069 2003-10-05  Borut Razem <borut.razem AT siol.net>
6070
6071         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
6072           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
6073           message "unmatched #pragma SAVE and #pragma RESTORE"
6074
6075 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6076
6077         * doc/sdccman.lyx: various additions and updates (interrupts, inline
6078           assembly, critical functions, atomic, nojtbound)
6079
6080 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
6081
6082         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
6083         * src/SDCCBBlock.h
6084         * src/SDCCloop.c
6085         * src/SDCCloop.h
6086         * src/SDCClrange.c
6087
6088 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6089
6090         * src/z80/gen.h,
6091         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6092         * src/mcs51/gen.h
6093         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6094         * src/ds390/gen.h
6095         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6096         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
6097         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
6098
6099 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6100
6101         * src/z80/gen.c (genRet): fixed bug #524753
6102         * src/z80/gen.c (genCast): fixed internal error on cast from
6103         pointer to long
6104         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
6105         fix for bug #477835 to the z80
6106         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
6107         for tracking iCodes in the peephole optimizer for z80
6108
6109 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6110
6111         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
6112         the other part of bug #814548
6113         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
6114
6115 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
6116
6117         * src/SDCCcse.c: fixed part of bug #814548
6118
6119 2003-09-28  Borut Razem <borut.razem AT siol.net>
6120
6121         * src/asm.c: rewrite of printILine() to use temporary file instead
6122           a pipe
6123         * src/xa51/main.c: commented out declaration of int rewinds
6124
6125 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6126
6127         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
6128
6129 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6130
6131         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
6132         * src/asm.c (printILine): Fixed bug #811015
6133
6134 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6135
6136         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
6137         freeing.
6138
6139 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6140
6141         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
6142         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
6143         to correctly handle general case of AOP_PAIRPTR
6144         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
6145
6146 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6147
6148         * src/mcs51/ralloc.c (fillGaps),
6149         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
6150         register positioning bug)
6151
6152 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
6153
6154         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
6155
6156 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6157
6158         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
6159         genCodePointerGet, genGenPointerGet, genFarPointerSet,
6160         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
6161         (ralloc doesn't intentionally do this now, but perhaps later)
6162         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
6163         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
6164         register positioning bugs (Fixed bug #762602 and #795325)
6165         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
6166         (Fixed bug #808779)
6167         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
6168         lines that --i-code-in-asm generates
6169
6170 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6171
6172         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
6173         trying to fclose a FILE* that was already closed.
6174
6175 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6176
6177         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
6178         of const struct should be treated as if const themselves)
6179
6180 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
6181
6182         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
6183
6184 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6185
6186         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
6187         Unix (/n) and DOS (/r/n) line terminations.
6188
6189 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6190
6191         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
6192         bug #613775
6193
6194 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6195
6196         * src/mcs51/gen.c (genFunction, genEndFunction),
6197         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
6198         and restore of EA so that stack offsets to parameters are
6199         correct when using both critical and reentrant/stack-auto.
6200         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
6201         size (can be triggered in error if sloc is shared between
6202         different sized objects)
6203         * device/include/float.h: fixed macros to explicitly use
6204         unsigned long where needed
6205
6206 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
6207
6208         Feature req. 799831: added code to allow nesting of critical functions
6209         * src/mcs51/gen.c (genFunction, genEndFunction)
6210         * src/ds390/gen.c (genFunction, genEndFunction)
6211
6212 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6213
6214         * src/SDCCsymt.c (sclsFromPtr),
6215         * src/SDCCsymt.h,
6216         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
6217         support for standard C idiom of memory mapped variables; for
6218         example, *((xdata int*)0x1234) = 1 is now internally equivalent
6219         to xdata int at 0x1234 tempvar = 1.
6220         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
6221         provided by Akiya ISHIDA
6222
6223 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
6224
6225         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
6226         * src/SDCCval.c (constVal): added reduction from int to char
6227         * src/SDCCval.c (valMult, valDiv): fixed sign handling
6228         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
6229         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
6230         to ignore the sign
6231         * support/regression/tests/shifts.c: fixed
6232
6233 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6234
6235         * src/z80/gen.c (genXor): Fixed bug #805445
6236
6237 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6238
6239         Fixed bug #621531 (const & volatile confusion in the type chain).
6240         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
6241         refer to the const or volatile state of the pointer itself.
6242
6243         * src/SDCCast.c
6244         * src/SDCCglue.c
6245         * src/SDCCicode.c
6246         * src/SDCCsymt.c
6247         * src/SDCCval.c
6248         * src/SDCC.y
6249         * src/SDCCsymt.h
6250         * src/pic/gen.c
6251         * src/pic/ralloc.c
6252         * src/pic16/gen.c
6253         * src/pic16/ralloc.c
6254         * support/regression/tests/const.c
6255
6256 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6257
6258         When checking for duplicated modules, use absolute paths
6259         instead of relative paths.  Files changed:
6260
6261         * as/mcs51/lklib.c
6262         * link/z80/lklib.c
6263
6264 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6265
6266         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
6267
6268 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6269
6270         * device/include/string.h: added size_t typedef, changed
6271         prototypes to use size_t, eliminated separate reentrant and
6272         non-reentrant declarations, added _memmove declaration
6273         * device/lib/_memcpy.c: changed to use size_t instead of int,
6274         changed /4 to >>2 to avoid division library call
6275         * device/lib/_memcmp.c,
6276         * device/lib/_memset.c,
6277         * device/lib/_strncat.c,
6278         * device/lib/_strncpy.c,
6279         * device/lib/_strncmp.c: changed to use size_t instead of int
6280         * device/lib/_memmove.c: new file (fixed bug #772294)
6281         * device/lib/Makefile.in: added _memmove.c
6282         * device/lib/z80/asm_strings.s: fixed bug #772290
6283         * support/regression/tests/bitfields.c: attempt to fix host assertion
6284         failure on amd64-unknown-linux2.2
6285
6286 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6287
6288         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
6289         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
6290         * as/z80/asmain.c (main): fixed bug #801766
6291
6292 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
6293
6294         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
6295         compilers
6296
6297 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6298
6299         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
6300         reported in bug #800609
6301
6302 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
6303
6304         * Top header beautifications in src/pic16 directory:
6305           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
6306           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
6307           pcoderegs.h, ralloc.c, ralloc.h
6308         * main.c: added top header and GPL license notice
6309         * pcode.c: fixed the if-conditional warning
6310
6311 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
6312
6313         * device/lib/_mullong.c: replaced int by short for gcc
6314
6315 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6316
6317         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
6318         and JUMPTABLE iCodes properly now (worked by accident before)
6319         * src/mcs51/gen.c (leftRightUseAcc),
6320         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
6321         iCode properly now. Use getSize instead of nRegs since a & b
6322         aren't part of the nRegs tally.
6323
6324 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
6325
6326         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
6327         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
6328           before instructions that use the _STATUS register
6329
6330 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
6331
6332         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
6333         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
6334         fetching of the pointer
6335         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
6336         copied from genNearPointerSet()
6337         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
6338         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
6339         If they pop r0/r1 they must be called in the opposite order than aopOp().
6340         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
6341         (resp. --stack-auto), prepared for --xstack
6342
6343 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6344
6345         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
6346
6347 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
6348
6349         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
6350         these ports have their own __sdcc_external_start()
6351
6352 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
6353
6354         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6355         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
6356         type for bits was changed. It resulted in bit variables becoming
6357         global, which is not permitted in PIC 14 assembly output.
6358
6359 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6360
6361         * doc/sdccman.lyx: various additions and updates. Rearranged sections
6362
6363 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6364
6365         Z80 and MCS51 linkers complaint if a public symbol is defined
6366         in more than one library module:
6367
6368         * as/mcs51/lklib.c
6369         * link/z80/lklib.c
6370         * as/mcs51/Makefile.in
6371
6372 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6373
6374         A few small changes that speed up the peephole optimizer.
6375
6376         * src/SDCCpeeph.c
6377
6378 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6379
6380         Try to make the peephole optimizer smarter by maintaining
6381         an association between the assembly source code and the
6382         iCodes that originated them. Put this information to use
6383         with a new peephole rule condition "notVolatile" so that
6384         the rules can be aggressive yet still safe.
6385
6386         * src/SDCCpeeph.c
6387         * src/SDCCpeeph.h
6388         * src/mcs51/gen.c
6389         * src/mcs51/peeph.def
6390
6391 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6392
6393         Fixed bug #741761
6394
6395         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
6396         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
6397         if the left or right operand symbols have the accuse flag set.
6398
6399 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6400
6401         Changed the type of the result of the ! (NOT) operator to char;
6402         previously it returned the same type as the source. This allows
6403         us to eliminate all the genFloatNot functions (all of its target
6404         implementations were very buggy) since !float can use the same
6405         code as !long now.
6406
6407         * src/SDCCicode.c (ast2iCode): ! returns char
6408         * src/mcs51/gen.c (genNot, genNotFloat),
6409         * src/ds390/gen.c (genNot, genNotFloat),
6410         * src/z80/gen.c (genNot, genNotFloat),
6411         * src/pic/gen.c (genNot, genNotFloat),
6412         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
6413
6414 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
6415
6416         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6417         1. Interrupt would not compile properly. Ensure PCLATH register is saved
6418            during interrupts. Ensure WSAVE is located at a shared bank address.
6419         2. Fixed page selection in some places
6420         3. Fixed BTFSS/C to where necessary use registers directly and not simply
6421            the registers name strings.
6422         4. Fixed "signed / unsigned compare" compiler warnings.
6423         5. The PIC port manages its own allocation of the general purpose
6424            registers, but makes no attempt to reuse them. As a result when
6425            compiling it soon runs out of general purpose registers. Some
6426            additional code was added to the files pcode.c and device.c to walk
6427            through the function call tree and rename the registers so that they
6428            get reused.
6429
6430         * src/pic/device.c
6431         * src/pic/gen.c
6432         * src/pic/glue.c
6433         * src/pic/pcode.c
6434         * src/pic/pcode.h
6435         * src/pic/ralloc.c
6436         * src/pic/ralloc.h
6437         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
6438         genPlus() & genMinus() when the result is the same as left or right
6439
6440 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6441
6442         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
6443
6444 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6445
6446         Made bitfield a distinct type from bit so that bitfields
6447         convert as per ANSI C and bits retain their traditional
6448         boolean style behaviour. Implemented bitfield support in
6449         the z80 port.
6450
6451         * src/SDCCsymt.h,
6452         * src/SDCCsymt.c,
6453         * src/SDCCast.c,
6454         * src/cdbFile.c,
6455         * src/mcs51/gen.c,
6456         * src/ds390/gen.c: bit v bitfield split
6457         * src/z80/gen.c: New support for bitfields
6458         * support/regression/tests/bitfields.c: reenabled z80,
6459         added more tests
6460
6461 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6462
6463         Rules 246.x, 247.x relate to bitfields, the others speed up
6464         access to xdata mapped I/O devices.
6465
6466         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
6467
6468 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6469
6470         Cleaned up genPackBits and genUnpackBits and added two helper
6471         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
6472         for literal assignments in genPackBits (thanks to Frieder for
6473         reminding me).
6474
6475         * src/mcs51/gen.c
6476         * src/ds390/gen.c
6477
6478 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6479
6480         Fixed bug #748310 (pointer to function type mishandled when the
6481         function name is omitted). Also fixed a SIGSEGV when a function
6482         attribute (reentrant, etc) is used on a non-function or on a
6483         function but misplaced before the parameter list.
6484
6485         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
6486         bug #748310
6487         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
6488         * support/Util/SDCCerr.h,
6489         * support/Util/SDCCerr.c: Added func attr misuse error msg
6490
6491 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
6492
6493         Fixed bug #787649 by anonymous
6494         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
6495         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
6496
6497 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6498
6499         Fixed numerous bitfield problems.
6500
6501         * src/SDCC.y: More bitfield related error checking
6502         * src/SDCCsymt.h,
6503         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
6504         * support/Util/SDCCerr.h,
6505         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
6506         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
6507         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
6508         * support/regression/tests/bitfields.c: tests added
6509
6510 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6511
6512         Made the constant following the "interrupt" keyword optional. If
6513         omitted, the function will not automatically be given an entry
6514         in the interrupt vector table (similar to #pragma NOIV, but
6515         less syntacticly kludgy). The interrupt number is also now
6516         range checked. Also fixed a bug in the high order bit example
6517         in the manual.
6518
6519         * src/SDCC.y
6520         * src/SDCCmem.c
6521         * src/SDCCglue.c
6522         * src/SDCCsymt.h
6523         * support/Util/SDCCerr.c
6524         * support/Util/SDCCerr.h
6525         * doc/sdccman.lyx
6526
6527 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
6528
6529         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
6530         * src/SDCCicode.c (operandOperation): rewritten some ops
6531         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
6532         * src/SDCCsymt.c (computeType): literals are handled the same way as any
6533         other type
6534         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
6535         be re-activated by defining REDUCE_LITERALS)
6536         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
6537         unsigned, but are signed by default
6538         * src/SDCCval.c (constVal): rearranged
6539         * src/SDCCval.c (valMod): preliminary fix
6540         * src/SDCCval.c (valCastLiteral): use TYPE_* types
6541         * support/regression/literalop.c: added, work in progress
6542
6543 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6544
6545         Generate warnings for useless declarations like "char data;"
6546         that don't do what new users expect.
6547
6548         * src/SDCC.y
6549         * support/Util/SDCCerr.h
6550         * support/Util/SDCCerr.c
6551
6552 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
6553
6554         * src/SDCCval.c (valMult): fix overflow detection of negative int
6555
6556 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6557
6558         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
6559
6560         Changes to support big endian targets:
6561
6562         * src/ports.h
6563         * src/SDCCglue.c
6564         * src/avr/main.c
6565         * src/ds390/main.c
6566         * src/izt/i186.c
6567         * src/mcs51/main.c
6568         * src/pic/main.c
6569         * src/pic16/main.c
6570         * src/xa51/main.c
6571         * src/z80/main.c
6572
6573 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
6574
6575         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
6576         * device/lib/time.c: fixed warning "integer overflow in expression"
6577
6578 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
6579
6580         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
6581         * src/SDCCval.c (constVal): changed default to signed; hex and octal
6582         constants are unsigned; added recognition of "u" flag for unsigned
6583         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
6584         * src/SDCCval.c (valDiv, valMod): fixed signdness
6585         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
6586         signedness of modulo, left and right shift
6587         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
6588         * support/Util/SDCCerr.h: added warning W_INT_OVL
6589         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
6590         * src/SDCCast.c (ast_print): improved output of constants
6591
6592 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6593
6594         Fixed some warnings when building with MSVC:
6595
6596         * as\mcs51\asdata.c
6597         * as\z80\asdata.c
6598         * as\mcs51\asm.h
6599         * as\z80\asm.h
6600         * link\z80\aslink.h
6601         * link\z80\lkdata.c
6602         * link\z80\lkeval.c
6603         * link\z80\lkgb.c
6604         * link\z80\lkihx.c
6605         * link\z80\lks19.c
6606         * link\z80\lksym.c
6607         * support\cpp2\cpplib.c
6608         * src\ds390\gen.c
6609         * src\mcs51\gen.c
6610
6611 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
6612
6613         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
6614
6615 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6616
6617         * support\librarian\clean.mk: Do not remove Makefile.
6618         * support\librarian\Makefile: added.
6619
6620 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6621
6622         Added librarian to MSVC build:
6623         * all.dsp
6624         * sdcc.dsw
6625         * support\librarian\librarian.dsp
6626
6627         'configure' not needed for librarian, removed:
6628         * support\librarian\configure
6629         * support\librarian\configure.in
6630         * support\librarian\config_in.h
6631         * support\librarian\Makefile.in
6632
6633         Hopefully these ones built the librarian and the rest of sdcc properly:
6634         * Makefile
6635         * Makefile.common.in
6636
6637         Messed up 'configure', so revert to previous version:
6638         * configure
6639         * configure.in
6640
6641 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
6642
6643         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
6644         there, while the mantissa of a double is "only" 53 bits wide.
6645
6646 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6647
6648         Adding sdcclib to the build.  MSVC project coming soon.
6649         Files added/changed:
6650
6651         * support\librarian\clean.mk
6652         * support\librarian\configure
6653         * support\librarian\configure.in
6654         * support\librarian\config_in.h
6655         * support\librarian\Makefile.bcc
6656         * support\librarian\Makefile.in
6657         * support\librarian\sdcclib.c
6658         * Makefile.bcc
6659         * Makefile
6660         * Makefile.common.in
6661         * configure
6662         * configure.in
6663
6664 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6665
6666         Linker now complaints if linked modules have conflicting options, for
6667         example, one compiled using --model-large and another one compiled with
6668         --model-small.  The following files were modified:
6669
6670         * as\mcs51\asdata.c
6671         * as\mcs51\aslink.h
6672         * as\mcs51\asm.h
6673         * as\mcs51\asmain.c
6674         * as\mcs51\asout.c
6675         * as\mcs51\i51pst.c
6676         * as\mcs51\lkdata.c
6677         * as\mcs51\lklibr.c
6678         * as\mcs51\lkmain.c
6679         * as\z80\asdata.c
6680         * as\z80\asm.h
6681         * as\z80\asmain.c
6682         * as\z80\asout.c
6683         * as\z80\z80pst.c
6684         * link\z80\aslink.h
6685         * link\z80\lkdata.c
6686         * link\z80\lklibr.c
6687         * link\z80\lkmain.c
6688         * src\SDCCglue.c
6689
6690 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6691
6692         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
6693         as/mcs51/lklibr.c: Generate a warning when a library is not found.
6694
6695 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
6696
6697         * src/z80/mappings.i: fix _mul[us][int,long] entries
6698
6699 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6700
6701         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
6702
6703 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
6704
6705         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
6706         * support/regression/tests/bitopcse.c: added
6707         fixed warning:
6708         * src/avr/gen.c:
6709         * src/pic/gen.c:
6710         * src/pic16/gen.c:
6711         * src/z80/gen.c:
6712         * src/xa51/gen.c:
6713
6714 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6715
6716         added support for new library format to z80, gbz80 linkers:
6717         *link/z80/aslink.h
6718         *link/z80/lklex.c
6719         *link/z80/lklib.c
6720         *link/z80/lklist.c
6721
6722 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
6723
6724         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
6725         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
6726
6727 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
6728
6729         added DUMMY_READ_VOLATILE:
6730         * src/SDCC.y:
6731         * src/avr/gen.c:
6732         * src/xa51/gen.c:
6733         * src/z80/gen.c:
6734         * src/pic/gen.c:
6735         * src/pic16/gen.c:
6736         * src/mcs51/gen.c:
6737         * src/ds390/gen.c:
6738         * src/SDCCcse.c (algebraicOpts): many improvements
6739         * src/SDCCcse.h: removed algebraicOpts()
6740         * src/SDCCicode.c (picDummyRead): added
6741
6742 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6743
6744         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
6745         "Insufficient space in data memory".
6746
6747 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6748
6749         * src/mcs51/gen.c: fixed bug #771358
6750         * src/z80/gen.c: fixed bug #759087
6751
6752 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
6753
6754         * src/pic16/glue.c: minor cleanup by Vangelis
6755
6756 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6757
6758         * device/include/regc515c.h: fixed #758477
6759         * device/lib/_gptrget.c: saving some cycles in generic pointer get
6760         * device/lib/_gptrput.c: saved a few bytes
6761         * my tab spacing is 8, yours too?)
6762         * device/lib/_ser.c: process RX bytes earlier than TX bytes
6763         * device/lib/serial.c: process RX bytes earlier than TX bytes
6764         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
6765
6766 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6767
6768         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
6769
6770 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6771
6772     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
6773
6774 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
6775
6776         * device/lib/Makefile.in: bad fix, reverted to 1.43
6777
6778 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
6779
6780         * device/lib/Makefile.in: added missing z80 object files
6781
6782 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
6783
6784         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
6785         pic16 progress by Vangelis:
6786         * src/SDCCglobl.h:
6787         * src/SDCCmain.c:
6788         * src/pic/Makefile:
6789         * src/pic:
6790         * pic/Makefile:
6791         * pic16/device.c:
6792         * pic16/device.h:
6793         * pic16/gen.c:
6794         * pic16/gen.h:
6795         * pic16/genarith.c:
6796         * pic16/glue.c:
6797         * pic16/main.c:
6798         * pic16/pcode.c:
6799         * pic16/pcode.h:
6800         * pic16/pcodepeep.c:
6801         * pic16/peeph.def:
6802
6803 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6804
6805     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
6806
6807 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6808
6809     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
6810     added gbz80 build to MSVC project.
6811     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
6812     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
6813     from 8051 stuff and setup so it links using a .lnk file.
6814
6815 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6816
6817     * support/librarian/sdcclib.c: sdcc librarian.
6818     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
6819     with sdcclib.
6820
6821 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6822
6823     * as/mcs51/lkmain.c: properly handle extensions in function afile.
6824
6825 2003-07-02  Borut Razem <borut.razem AT siol.net>
6826
6827         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
6828         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
6829         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
6830         src/xa51/main.c, src/z80/main.c:
6831         virtualization of glue() function: each port has it's own glue function,
6832         which is accessed by do_glue function pointer in PORT.general structure
6833
6834 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
6835
6836         * DS800C400 fun, improved ROM interface and tinibios.
6837
6838 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
6839
6840         * More support for DS80C400. Now includes beginning of interface to ROM.
6841
6842 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
6843
6844         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
6845
6846 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6847
6848         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
6849
6850 2003-06-19  Borut Razem <borut.razem AT siol.net>
6851
6852         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
6853
6854 2003-06-19  Borut Razem <borut.razem AT siol.net>
6855
6856         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
6857         fixed Z80 port - crt0.o: cannot open.
6858
6859 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
6860
6861         * support/Util/MySystem.c (merge_command): revert bad fix
6862
6863 2003-06-18  Borut Razem <borut.razem AT siol.net>
6864
6865         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
6866
6867 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6868
6869         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
6870         option --use-stdout sends errors to stdout instead of stderr.
6871
6872 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
6873
6874         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
6875
6876 2003-06-15  Borut Razem <borut.razem AT siol.net>
6877
6878         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
6879         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
6880         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
6881         fixed width array of pointers replaced with sets;
6882         multiple include and lib paths ared transferred to preprocessor and linker
6883         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
6884         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
6885         fixed width array of pointers
6886         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
6887         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
6888         fixupPath(), getPathDifference()
6889         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
6890         fixed width array of pointers
6891
6892 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
6893
6894         * src/pic16/ralloc.c: fix warnings
6895         * src/pic16/pcode.c: fix warning
6896
6897 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
6898
6899          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
6900         know all the details, but essentially this set of changes enable
6901         the pic16 port to generate movff instructions and generate assembler
6902         directives,
6903         * src/SDCCmain.c:
6904         * src/pic16/gen.c:
6905         * src/pic16/glue.c:
6906         * src/pic16/pcode.c:
6907         * src/pic16/device.c:
6908         * src/pic16/main.c:
6909         * src/pic16/pcode.h:
6910         * src/pic16/pcoderegs.c:
6911         * src/pic16/ralloc.c:
6912         * src/pic16/ralloc.h:
6913
6914 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6915
6916         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
6917         added option --vc, so sdcc errors and warnings are compatible with
6918         Microsoft Visual Studio.
6919
6920 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6921
6922         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
6923           device/lib/libfloat.lib: added atof function.
6924
6925 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
6926
6927         * doc/sdccman.lyx: updated to Lyx 1.3
6928         * doc/cdbfileformat.lyx: updated to Lyx 1.3
6929         * doc/test_suite_spec.lyx: updated to Lyx 1.3
6930         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
6931
6932 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
6933
6934         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
6935
6936 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6937
6938         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
6939           additions to the "related tools/documentation" section
6940
6941 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
6942
6943         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
6944
6945 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
6946
6947         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
6948         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
6949
6950 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
6951
6952         * doc/sdccman.lyx: fix double dash and other minor things
6953         * doc/Makefile: fix double dash
6954
6955 2003-05-28  Karl Bongers(patches from Martin Helmling)
6956         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
6957           condition and ignore commands.
6958
6959 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6960
6961         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
6962           is in parts still quite out of date, I did changes as far as I felt makes sense
6963           for a non-native english speaker.
6964           Please feel free to add to the manual or to correct my changes.
6965         * doc/Makefile: undid touching the date of intermediate tex files.
6966
6967 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6968
6969         * doc/sdccman.lyx: Manual has an index now
6970
6971 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
6972
6973         Finalize muluint/mulsint and mululong/mulslong merging:
6974         * device/lib/_mulint.c
6975         * device/lib/_mullong.c
6976         * device/lib/gbz80/mul.s
6977         * device/lib/gbz80/stubs.s
6978         * device/lib/z80/mul.s
6979         * device/lib/z80/stubs.s
6980         * src/SDCCsymt.c (initCSupport)
6981
6982 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6983
6984         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
6985         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
6986           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
6987           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
6988           instead of /Zm500.
6989
6990 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6991
6992         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
6993           the regression tests I'm not brave enough to enable 245.b, 245.c
6994         * doc/sdccman.lyx: added latex preamble for hyperref package.
6995           Using pdflatex this will give you a hyperlinked pdf file with
6996           bookmarks. (prepend '%' before /usepackage if this breaks something)
6997
6998 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6999
7000          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
7001
7002 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
7003
7004         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
7005
7006 2003-05-21    <johan AT balder>
7007
7008         * src/SDCCglue.c (printIval): fixed bug #739934
7009
7010 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7011
7012         Applied patch from bug 737905 (renamed yylineo to mylineno):
7013         * src/altlex.c
7014         * src/SDCCast.c
7015         * src/SDCglobl.h
7016         * src/SDCC.lex
7017         * src/SDCCsymt.c
7018         * src/SDCCval.c
7019         * src/pic16/pcode.c: Cleaned warnings
7020         * src/pic16/pcodeflow.c: Cleaned warnings
7021         * src/pic16/pcoderegs.c: Cleaned warnings
7022
7023 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
7024
7025         * src/pic16/pcode.c: Cleaned warnings
7026         * src/pic16/pcodepeep.c: Cleaned warnings
7027         * src/pic16/ralloc.c: Cleaned warnings
7028
7029 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7030
7031         * doc/sdccman.lyx: fixed bug 739745
7032         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
7033
7034 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
7035
7036         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
7037         it can be defined with CFLAGS when running configure
7038         * src/SDCCmain.c: fixed compiling + linking with object files
7039
7040 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
7041
7042         * configure.in: configure for pic16 port,
7043             added --disable-pic16-port
7044         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
7045         * src/SDCCmain.c: linkOptions is changed to set *,
7046             added if/endif conditional macros to remove options help
7047             messages from optionsTable when a port is not configured, added
7048             support for the PIc16 port in the ports table, when executing
7049             the compiler with no port specified on command line, a default
7050             port is selected with the new macro DEFAULT_PORT which is
7051             defined in port.h, in setDefaultOptions() linkOptions is removed
7052             from initialization assignment, since now it is a set,
7053             parseCmdLine uses setParseWithComma for linkOptions, in
7054             linkEdit() linkOptions are accessed with new function indexSet()
7055             which returns the i'th item of a set variable. See SDCCset.c, in
7056             linkEdit() when calling buildCmdLine(), added linkOptions as
7057             last argument. Now users can pass arguments to gplink via the
7058             -Wl option, main() uses pic16glue() to glue up pic16 programs
7059         * src/SDCCpeeph.c: various changes to support pic16
7060         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
7061             return the i'th item of the set
7062         * src/SDCCset.h: added function prototype for indexSet()
7063         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
7064         * src/clean.mk: added pic16 in CLEANALLPORTS variable
7065         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
7066             added macro DEFAULT_PORT
7067         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
7068         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
7069             generated
7070         * src/pic16/glue.c: commented out some error producing lines
7071         * src/pic16/main.c: __config directives are commented out to stop
7072             gpasm complaining and test the linkage with gplink, _linkCmd and
7073             _asmCmd changed to be more gplink and gpasm friendly
7074         * src/pic16/peeph.def: peep rule 3 is commented out, since it
7075             produced an error when parsed, peep rule 12 is added to utilize
7076             movff, but it is commented out since the pCode does not support
7077             yet a command with 2 address arguments
7078
7079 2003-05-18    <johan AT balder>
7080
7081         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7082         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7083 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
7084
7085         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
7086   Added feature to script commands from file.
7087
7088 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
7089
7090         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
7091         * src/SDCCutil.c: include ctype.h for win32
7092
7093 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
7094
7095         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
7096
7097 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
7098
7099         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
7100   Fixed so you can set breakpoints prior to run, run does not stop
7101   on entry now.  Add tbreak.  Other enhancements and fixes for use
7102   with ddd.
7103
7104 2003-05-12  Borut Razem <borut.razem AT siol.net>
7105
7106         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
7107
7108 2003-05-11  Borut Razem <borut.razem AT siol.net>
7109
7110         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
7111         the path of bin directory, so that PATH is the only env. variable, which has to be set
7112         in case of standard installation.
7113         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
7114         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
7115         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
7116
7117 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7118
7119         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
7120         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
7121         temp files are in the port dir; clean the gen/test directory when
7122         generating new test.c
7123         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
7124         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
7125         * support/regression/tests/zeropad.c: added
7126
7127 2003-05-09    <johan AT balder>
7128
7129         * src/SDCCglue.c: fixed bug #597940
7130
7131 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
7132
7133         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7134   cache sfr, optimize next,step, fix off by one sourceline,
7135   support ddd list function.
7136         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
7137
7138 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7139
7140         * support/regression/HTMLgen.py: added compare_s2f()
7141         * support/regression/Makefile: redo 1.27
7142         * support/regression/generate-cases.py: redo 1.5
7143
7144 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
7145
7146         * support/regression/tests/float.c: workaround 33 bit hex constant
7147         * support/regression/tests/simplefloat.c: fix division for host
7148
7149 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
7150
7151         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
7152         that tame's the PIC's over-aggressive optimizer.
7153
7154 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7155
7156          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
7157          support for MSVC.
7158
7159 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
7160
7161         Initial support for DS80C400. "Hello world" runs on TINIm400
7162         (with polled I/O).
7163
7164 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
7165
7166          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7167          * Some notes on ddd usage added in debugger/README
7168          Martin Helmling adding more features and fixes for ddd GUI debugger.
7169          Code added for nexti, stepi, up, down, and other adjustments.
7170
7171 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
7172
7173         * src/pic/pCodepeep.c non-wildcard asmops are now handled
7174         * src/pic/peeph.def Added two rules to optimize carry manipulation
7175         * src/pic/* removed debug printfs
7176
7177 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
7178
7179         * debugger/mcs51/cmd.c: added header newalloc.h
7180
7181 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
7182
7183         * as/Makefile: new EXEEXT
7184         * as/z80/Makefile: remove trailing slash of BUILDIR
7185         * as/z80/clean.mk: new EXEEXT
7186         * Makefile.common.in: add to CFLAGS (and others), don't replace it
7187         * support/cpp2/Makefile.in: new EXEEXT
7188         * src/pic/glue.c (pic14emitRegularMap): fixed warning
7189
7190 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
7191
7192         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
7193         EXEEXT was introduced to fix all related problems with targets
7194         "clean", "install" and "uninstall"; a couple of further flaws
7195         especially with "clean" have been fixed too
7196         * as/mcs51/Makefile.in
7197         * as/mcs51/clean.mk
7198         * as/z80/Makefile
7199         * Makefile
7200         * clean.mk
7201         * debugger/mcs51/Makefile.in
7202         * debugger/mcs51/clean.mk
7203         * link/z80/Makefile
7204         * link/z80/Makefile.in
7205         * link/z80/clean.mk
7206         * link/Makefile
7207         * packihx/Makefile.in
7208         * packihx/clean.mk
7209         * sim/ucsim/Makefile
7210         * sim/ucsim/clean.mk
7211         * sim/ucsim/avr.src/Makefile.in
7212         * sim/ucsim/avr.src/clean.mk
7213         * sim/ucsim/s51.src/Makefile.in
7214         * sim/ucsim/s51.src/clean.mk
7215         * sim/ucsim/xa.src/Makefile.in
7216         * sim/ucsim/xa.src/clean.mk
7217         * sim/ucsim/z80.src/Makefile.in
7218         * sim/ucsim/z80.src/clean.mk
7219         * sim/ucsim/main_in.mk
7220         * sim/ucsim/packages_in.mk
7221         * sim/ucsim/gui.src/Makefile.in
7222         * sim/ucsim/gui.src/serio.src/Makefile.in
7223         * sim/ucsim/gui.src/serio.src/clean.mk
7224         * src/Makefile.in
7225         * src/clean.mk
7226         * support/cpp2/Makefile.in
7227         * support/cpp2/clean.mk
7228         * support/makebin/Makefile
7229         * support/makebin/clean.mk
7230         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
7231         * doc/sdccman.lyx: --program-suffix no longer needed
7232
7233 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
7234
7235          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
7236          Martin Helmling added support for ddd GUI debugger.
7237          Code added to display assembly, set variables, and other commands
7238          to interface to ddd.
7239
7240 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
7241
7242         * as/Makefile: fix target clean
7243         * as/clean.mk: fix target clean
7244         * as/z80/clean.mk: fix target clean
7245
7246 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
7247
7248         * Makefile.common.in: added  AT EXEEXT AT
7249         * configure.in: removed all mingw32 stuff
7250         * configure: rebuilt from configure.in
7251         * doc/sdccman.lyx: updated section "installation"
7252         * support/scripts/sdcc_mingw32: adapted to configure
7253         * support/scripts/sdcc_cygwin_mingw32: added
7254
7255 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
7256
7257         * src/pic Added object file support for the PIC port
7258         * src/pic Applied patch from Craig Franklin (this started the object file support)
7259         * src/regression Updated the PIC regression tests for object files
7260
7261 2003-04-20  Borut Razem <borut.razem AT siol.net>
7262
7263         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
7264           lklex.c: In function `getfid':
7265           lklex.c:203: warning: array subscript has type `char'
7266         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
7267           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
7268         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
7269           stack handling macros
7270
7271 2003-04-19  Borut Razem <borut.razem AT siol.net>
7272
7273         * "handling space characters in file path" task:
7274         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
7275         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
7276         * support/Util/MySystem.h: make it self-sufficient
7277         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
7278           src/z80/main.c, sdcc/as/mcs51/lklex.c:
7279           handling space characters in file path
7280         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
7281           (it will be used by assemblers, which have their own includes, e.g. gpasm)
7282         * support/Util/MySystem.c: handling space characters in executable's path
7283
7284 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
7285
7286         * as/z80/Makefile: fix permanent rebuild of z80
7287         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
7288         * support/regression/tests/bitfields.c: added Johan's bitfields.c
7289
7290 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
7291
7292         * src/SDCCopt.c: add special case optimization to replace modulo by
7293           a power of two with a bitwise AND.
7294
7295 2003-04-18    <johan AT balder>
7296
7297         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
7298
7299 2003-04-17    <johan AT balder>
7300
7301         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
7302         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
7303
7304 2003-04-13  Borut Razem <borut.razem AT siol.net>
7305
7306         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
7307         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
7308           fixed mingw problem in adl_NORMALIZE_PATH
7309
7310 2003-04-12  Borut Razem <borut.razem AT siol.net>
7311
7312         * fixed "#pragma SAVE/RESTORE can not be nested":
7313         * src/SDCC.lex: reworked pragma handling functions
7314         * sdcc/src/SDCCglobl.h: reworked stack handling macros
7315         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
7316
7317 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7318
7319         * src/SDCCutil.c (pathEquivalent): defined but not used
7320         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
7321         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
7322         * configure: rebuilt from configure.in
7323         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7324         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7325         * device/include/Makefile.in: replace sdcc_datadir
7326         * device/lib/Makefile.in: replace sdcc_datadir
7327         * Makefile.common.in: add LDFLAGS from configure
7328         * packihx/Makefile.in: use LDFLAGS
7329         * src/Makefile.in: use LDFLAGS
7330         * support/cpp2/Makefile.in: add LDFLAGS from configure
7331         * support/makebin/Makefile: use LDFLAGS
7332         * .version: bumped version number to 2.3.5
7333
7334 2003-04-12  Borut Razem <borut.razem AT siol.net>
7335
7336         * completed "different paths" task:
7337         * src/SDCCmacro.c: fixed bug in handling quotes
7338         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
7339         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
7340
7341 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7342
7343         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
7344
7345 2003-04-11 kevin Vigor <kevin AT vigor.nu>
7346
7347         * ds390/gen.c ds390/peeph.def: fix bug 706781
7348
7349 2003-04-11  Borut Razem <borut.razem AT siol.net>
7350
7351         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
7352
7353 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
7354
7355         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
7356         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
7357          set - this bit used to not be set...).
7358         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
7359           bad code in PIC Port
7360         * src/regression/and2.c added to test bug 609268
7361         * src/regression/Makefile added and2.c to regression test
7362
7363
7364 2003-04-08    <johan AT CP255758-A>
7365
7366         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
7367         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
7368         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
7369
7370 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
7371
7372         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
7373         fix bug #487815
7374         * support/cpp2/Makefile.in: fix bug #487815
7375         * configure: rebuilt from configure.in
7376         * Makefile.common.in: docdir changed, new path suffixes
7377         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7378         * sdcc_vc_in.h: reflect changes from sdccconf.h
7379         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
7380         * src/SDCCutil.h: remove BINDIR hack
7381         * doc/sdccman.lyx: update new path hierarchy
7382
7383 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7384
7385         * src/SDCCpeeph.c: added okToRemoveSLOC test
7386
7387 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7388
7389         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
7390
7391 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7392
7393         * src/SDCCpeeph.c: added labelIsReturnOnly test
7394         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
7395
7396 2003-04-05    <johan AT balder>
7397
7398         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
7399         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
7400         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
7401         * src/SDCCast.c: fixed a warning
7402         * src/SDCCast.h: fixed a warning
7403         * src/SDCCicode.c (operandFromAst): fixed a warning
7404
7405 2003-04-04    <johan AT balder>
7406
7407         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
7408         * src/SDCCast.c (decorateType): fixed bug #715076
7409         * src/SDCC.y: fixed bug #702907
7410
7411 2003-04-03    <johan AT balder>
7412
7413         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
7414         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
7415         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
7416         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
7417         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
7418
7419 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
7420
7421         * _decdptr.c: fix return values
7422         * _gptrget.c: fix return values
7423         * _gptrgetc.c: fix return values
7424         * _gptrput.c: fix return values
7425         * _mulint.c: fix return values
7426         * as/z80/Makefile: fix 'make -j' problem
7427
7428 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
7429
7430         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
7431         * configure.in: big cleanup, updated to autoconf 2.5x
7432         * configure: rebuilt from configure.in
7433         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7434         * sdcc_vc_in.h: reflect changes from sdccconf.h
7435         * doc/Makefile: fixed a flaw in "make install"
7436
7437 2003-04-02    <johan AT balder>
7438
7439         * src/ds390/gen.c (genCmp): no comments
7440         * src/mcs51/gen.c (genCmp): no comments
7441         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
7442         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
7443
7444 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
7445
7446         * support/regression/generate-cases.py: place generated file in given sub directory
7447         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
7448         * support/regression/Makefile: improvements for 'make -j';
7449         side effect: it's simpler and faster now
7450
7451 2003-03-31  Borut Razem <borut.razem AT siol.net>
7452
7453         * src/z80/main.c: link-{port} and as-{port} defined without path
7454         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
7455
7456 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
7457
7458         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
7459
7460 2003-03-30  Borut Razem <borut.razem AT siol.net>
7461
7462         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
7463           changed type of list parameter to set
7464         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
7465         * src/port.h: changed type of do_assemble() parameter to set
7466         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
7467           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
7468           definition of "cppoutfilename" macro with NULL value in preProcess()
7469         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
7470         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
7471         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
7472           replaced with set *binPathSet
7473         * shash_add() deallocates the item, if allready exsists, before adding the new one
7474         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
7475
7476 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
7477
7478         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
7479           a nested for loop bug in the PIC port
7480         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
7481           for loops
7482
7483 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
7484
7485         * support/Util/dbuf.h: remove C++ stuff to make it portable
7486
7487 2003-03-28  Borut Razem <borut.razem AT siol.net>
7488
7489         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
7490           literal strings in stringLiteral()
7491         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
7492         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
7493           to the project
7494
7495 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
7496
7497         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
7498
7499 2003-03-26    <johan AT balder>
7500
7501         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
7502         * src/ds390/gen.c (saveRegisters): catched symbol abuse
7503         * src/SDCCast.c (decorateType): fixed " -v < 3"
7504
7505 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
7506
7507         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
7508         Added Lenny Story's debug infrastructure changes:
7509         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
7510         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
7511         * src/cdbFile.c: added
7512         * src/SDCCdebug.c: added
7513         * src/SDCCdebug.h: added
7514         * src/SDCCast.c (createFunction)
7515         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
7516         * src/SDCCmain.c (parseCmdLine, main)
7517         * src/SDCCmem.c (redoStackOffsets)
7518         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
7519         * src/SDCCsymt.h
7520         * src/common.h
7521         * src/avr/gen.c (genAVRCode)
7522         * src/ds390/gen.c (gen390Code)
7523         * src/mcs51/gen.c (gen51Code)
7524         * src/pic/gen.c (genpic14Code)
7525         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
7526         * src/xa51/gen.c (genXA51Code)
7527         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
7528
7529 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7530
7531         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
7532         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
7533
7534 2003-03-22    <johan AT balder>
7535
7536         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
7537
7538 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
7539
7540         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
7541         * doc/cdbfileformat.lyx: added, written by Lenny Story
7542         * doc/Makefile: added cdbfileformat.lyx
7543         * doc/clean.mk: added cdbfileformat.lyx
7544
7545 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
7546
7547         * src/mcs51/peeph.def: fix bug #705773
7548
7549 2003-03-20    <johan AT balder>
7550
7551         An sfr/sbit can have an "at #" AND an initializer
7552         * src/SDCCsymt.c (checkSClass):
7553         * src/SDCCmem.c (allocGlobal):
7554         * src/SDCCmem.c (allocLocal):
7555         * src/SDCCast.c (createBlock):
7556
7557 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
7558
7559         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
7560
7561 2003-03-16    <johan AT balder>
7562
7563         Undid the hackup of const and volatile, the problem is much bigger
7564         * src/SDCC.y:1.65
7565         * src/SDCCast.c:1.171
7566         * src/SDCCglue.c:1.138
7567         * src/SDCCicode.c:1.146
7568         * src/SDCCsymt.c:1.150
7569         * src/SDCCval.c:1.65
7570
7571 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
7572
7573         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
7574         * src/ds390/gen.c (genAddrOf): fixed bug #704087
7575
7576 2003-03-13    <johan AT balder>
7577
7578         Hackup const and volatile modifiers in type chains a bit:
7579         * src/SDCC.y:1.63
7580         * src/SDCCast.c:1.169
7581         * src/SDCCglue.c:1.136
7582         * src/SDCCicode.c:1.143
7583         * src/SDCCsymt.c1.146
7584         * src/SDCCsymt.h1.59
7585         * src/SDCCval.c:1.63
7586
7587 2003-03-12    <johan AT balder>
7588
7589         * src/SDCCBBlock.h: more LRH debugging junk
7590         * src/SDCCcflow.h: more LRH debugging junk
7591         * src/SDCCloop.c: more LRH debugging junk
7592         * src/SDCC.y (struct_declaration): fixed bug #697590
7593         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
7594         * src/ds390/gen.c (aopForRemat): fixed bug #700031
7595         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
7596
7597 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7598         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
7599         test function names must now match exactly).
7600         * src/SDCCcse.c: added special case in findCheaperOp to allow
7601         extending a short integer. Makes less awful code for bug 700121 test case.
7602
7603 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7604
7605         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
7606         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
7607
7608 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7609
7610         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
7611         actually called (operandsNotEqual() was called for all
7612         operandsNotEqualX tests).
7613
7614 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7615
7616         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
7617         with shorter literals. Fixes bug 700121.
7618
7619 2003-03-11    <johan AT balder>
7620
7621         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
7622
7623 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
7624
7625         * src/SDCCloop.c (mergeRegions): an evil beast is dead
7626         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
7627
7628 2003-03-10  Borut Razem <borut.razem AT siol.net>
7629
7630         * src/SDCCmain.c: pipe preprocessor's output
7631         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
7632         * sdcc_vc_in.h: define pclose as _pclose for WIN32
7633         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
7634         which closes all pipes in pipeSet set
7635         * src/SDCCset.c: free deleted item in function deleteSetItem()
7636         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
7637         moved from z80 to src subproject
7638         * .version: increased version number to 2.3.4
7639
7640 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
7641
7642         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
7643         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
7644         * support/regression/ports/xa51/spec.mk: fix typo
7645
7646 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
7647
7648         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
7649
7650 2003-03-09  Borut Razem <borut.razem AT siol.net>
7651
7652         * src/SDCCmain.c: pipe preprocessor's output
7653         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
7654         * sdcc_vc_in.h: define pclose as _pclose for WIN32
7655         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
7656         which closes all pipes in pipeSet set
7657         * src/SDCCset.c: free deleted item in function deleteSetItem()
7658         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
7659         moved from z80 to src subproject
7660
7661 2003-03-09  Borut Razem <borut.razem AT siol.net>
7662
7663         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
7664         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
7665         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
7666         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
7667         * src/SDCCglobl.h: unification of WIN32 native definitions
7668
7669 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7670
7671         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
7672
7673 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
7674
7675         * src/configure.in:   check for endianess (even while cross-compiling)
7676         * src/configure:      check for endianess (even while cross-compiling)
7677         * src/configure_in.h: check for endianess (even while cross-compiling)
7678         * src/avr/gen.c:        remove old endianess stuff
7679         * src/mcs51/gen.c:      remove old endianess stuff
7680         * src/ds390/gen.c:      remove old endianess stuff
7681         * src/pic/gen.c:        remove old endianess stuff
7682         * src/pic/genarith.c:   remove old endianess stuff
7683         * src/pic/glue.c:       fix endianess check
7684         * src/pic16/gen.c:      remove old endianess stuff
7685         * src/pic16/genarith.c: remove old endianess stuff
7686         * src/pic16/glue.c:     fix endianess check
7687         * src/xa51/gen.c:       remove old endianess stuff
7688         * src/z80/gen.c:        fix endianess check
7689         * src/SDCCglue.c:       fix endianess check
7690         * src/ds390/peeph.def: fix bug 700036
7691
7692 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
7693
7694         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
7695         * src/configure: find appropriate data-types on host for SDCC's int and long
7696         * src/configure.in: find appropriate data-types on host for SDCC's int and long
7697         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
7698         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
7699
7700 2003-03-07    <johan AT balder>
7701
7702         Just a big NOOP:
7703                 some minor cleanups before the big shot
7704                 OP_DEFS and OP_USES now use Kevin's protection
7705                 new option --nolabelopt
7706
7707         * src/SDCCBBlock.c:
7708         * src/SDCCast.c,:
7709         * src/SDCCcflow.c:
7710         * src/SDCCcse.c:
7711         * src/SDCCicode.c:
7712         * src/SDCCicode.h:
7713         * src/SDCClabel.c:
7714         * src/SDCCloop.c:
7715         * src/SDCCmain.c:
7716         * src/ds390/ralloc.c:
7717         * src/mcs51/ralloc.c:
7718         * src/pic/ralloc.c:
7719         * src/xa51/ralloc.c:
7720         * src/z80/ralloc.c:
7721
7722 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
7723
7724         * src/pic/pcode.c (get_op): fix 64 bit warnings
7725         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
7726         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
7727         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
7728         * support/regression/tests/malloc.c: fix 64 bit warnings
7729
7730 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
7731
7732         * src/mcs51/gen.c (genMinus): fixed bug 696436
7733
7734 2003-03-02  Borut Razem <borut.razem AT siol.net>
7735
7736         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
7737
7738 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
7739
7740         * configure.in: test for mkstemp
7741         * sdccconf_in.h: add HAVE_MKSTEMP
7742
7743 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
7744
7745         * device/include/ctype.h: removed warning while using --stack-auto
7746         * device/include/malloc.h: removed warning while using --stack-auto
7747         * device/include/string.h: removed warning while using --stack-auto
7748
7749 2003-02-23  Borut Razem <borut.razem AT siol.net>
7750
7751         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
7752         because NDEBUG is defined (see man assert)
7753         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
7754
7755 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7756
7757         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
7758         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
7759
7760 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7761
7762         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
7763         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
7764
7765 2003-02-18    <johan AT balder>
7766
7767         * as/mcs51/asmain.c (asmbl): module can start with a digit
7768         * as/z80/asmain.c (asmbl): module can start with a digit
7769
7770 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
7771
7772         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
7773         * src/asm.c: fix pipe() for Mingw32
7774
7775 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
7776
7777         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
7778         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
7779         make -V work again; --c1mode reads now from stdin
7780         * doc/sdccman.lyx: added --c1mode
7781         * support/Util/SDCCerr.c: new messages for c1 mode
7782         * support/Util/SDCCerr.h: new messages for c1 mode
7783         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
7784
7785 2003-02-15    <johan AT balder>
7786
7787         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
7788
7789 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
7790
7791         * doc/sdccman.lyx: Environment variables, -o and other minor things
7792
7793 2003-02-14    <johan AT balder>
7794
7795         * src/xa51/main.c: before anyone really tries to use it :)
7796
7797         * Install doc's in share/sdcc/doc
7798         * removed some obsolete files
7799         * Do a proper make distclean and uninstall
7800         M Makefile.common.in
7801         R sdccbuild.sh
7802         M as/Makefile
7803         M device/include/Makefile.in
7804         M device/lib/Makefile.in
7805         M doc/sdccman.lyx
7806         M link/Makefile
7807         M sim/ucsim/doc/Makefile.in
7808         M src/clean.mk
7809         R src/avr/peeph.rul
7810         R src/xa51/peeph.rul
7811         M support/cpp2/Makefile.in
7812         M support/makebin/Makefile
7813
7814
7815 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
7816
7817         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
7818
7819 2003-02-10  Borut Razem <borut.razem AT siol.net>
7820
7821         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
7822         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
7823         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
7824         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
7825         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
7826         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
7827         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
7828         src/z80/Makefile.bcc: Borland Makefile cleanup
7829         * as/z80/Makefile.bcc: Added Borland Makefile
7830         * support/cpp2/borland.h: Removed
7831
7832 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
7833
7834         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
7835         * src/SDCC.lex: new pragma NOIV
7836         * src/SDCCglobl.h: new pragma NOIV
7837         * src/SDCCmem.c: new pragma NOIV
7838
7839 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
7840
7841         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
7842
7843 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
7844
7845         * src/SDCCmain.c: signal handling is switched off by --debug
7846         * doc/Makefile: small fix for install; use clean.mk again
7847         * doc/clean.mk: clean *.pdf and *.html too
7848
7849 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
7850
7851         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
7852         * device/lib/printfl.c: fix a ds390 bug by making it portable
7853         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
7854         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
7855         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
7856         * debugger/mcs51/cmd.c: converted multi-line string literals
7857         * sim/ucsim/globals.cc: converted multi-line string literals
7858         * src/SDCCmain.c: introduced signal handler to remove temp files
7859         * doc/Makefile: small tweaks, implement clean
7860         * doc: removed generated files
7861
7862 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7863
7864         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
7865         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
7866         Address Record is not correctly generated for DS390."
7867
7868 2003-02-02  Borut Razem <borut.razem AT siol.net>
7869
7870         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
7871         * as/mcs51/asm.h: fixed compilation with Borland C
7872         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
7873         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
7874         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
7875         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
7876         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
7877         src/z80/Makefile.bcc: delete $(LIB) only if exist
7878         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
7879
7880 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
7881
7882         * device/include/malloc.h: introduced NULL
7883         * device/include/string.h: introduced NULL
7884         * device/include/stdlib.h: introduced NULL
7885         * device/lib/_memcpy.c: removed NULL
7886         * device/lib/_strcat.c: removed NULL
7887         * device/lib/_strchr.c: removed NULL
7888         * device/lib/_strcmp.c: removed NULL
7889         * device/lib/_strcpy.c: removed NULL
7890         * device/lib/_strcspn.c: removed NULL
7891         * device/lib/_strlen.c: removed NULL
7892         * device/lib/_strncat.c: removed NULL
7893         * device/lib/_strncmp.c: removed NULL
7894         * device/lib/_strncpy.c: removed NULL
7895         * device/lib/_strpbrk.c: removed NULL
7896         * device/lib/_strrchr.c: removed NULL
7897         * device/lib/_strspn.c: removed NULL
7898         * device/lib/_strstr.c: removed NULL
7899         * device/lib/_strtok.c: removed NULL
7900         * device/lib/malloc.c: removed NULL, include own header
7901
7902 2003-02-02    <johan AT balder>
7903
7904         * 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
7905         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
7906         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
7907         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
7908         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
7909         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
7910
7911 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7912
7913         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
7914         area 'DATA'"
7915
7916 2003-02-01    <johan AT balder>
7917
7918         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
7919
7920 2003-01-31    <johan AT CP255758-A>
7921
7922         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
7923
7924 2003-01-30    <johan AT balder>
7925
7926         * src/SDCCBBlock.c: automatic bug detection
7927         * src/SDCCicode.c: automatic bug detection
7928
7929 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7930
7931         * src/SDCCglobl.h:   now --xram-size 0 works
7932         * src/SDCCmain.c:    now --xram-size 0 works
7933
7934 2003-01-29    <johan AT balder>
7935
7936         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
7937
7938 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7939
7940         * as/mcs51/aslink.h: Added options --xram-size and --code-size
7941         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
7942         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
7943         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
7944         * src/SDCCglobl.h:   Added options --xram-size and --code-size
7945         * src/SDCCmain.c:    Added options --xram-size and --code-size
7946
7947 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
7948
7949         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
7950         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
7951
7952 2003-01-27    <johan AT balder>
7953
7954         * src/SDCC.y: fixed bug #613764
7955
7956 2003-01-26    <johan AT balder>
7957
7958         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
7959         * src/SDCCsymt.h: fixed bug #673374
7960         * src/SDCCglue.c: fixed bug #661910
7961         * src/SDCCast.c: fixed bug #458099 and 673374
7962
7963 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
7964
7965         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
7966         * as/mcs51/strcmpi.h: added
7967         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
7968         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
7969         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
7970         * as/mcs51/assym.c: strcmpi -> as_strcmpi
7971         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
7972         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
7973         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
7974         * as/mcs51/Makefile.aslink: new module strcmpi
7975         * as/mcs51/Makefile.asx8051: new module strcmpi
7976         * as/mcs51/Makefil.bcc: new module strcmpi
7977         * as/mcs51/Makefile.in: new module strcmpi
7978         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
7979
7980 2003-01-26    <johan AT balder>
7981
7982         * src/SDCCglue.c: reverted back to 1.124
7983         * src/SDCCast.c: reverted back to 1.156
7984         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
7985
7986 2003-01-25    <johan AT balder>
7987
7988         * src/SDCCglue.c: A better fix for bug #661910
7989         * src/SDCCast.c: A better fix for bug #661910
7990         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
7991
7992 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
7993
7994         * src/Makefile.in: remove spawn.o
7995         * src/SDCCmain.c: remove spawn.h
7996         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
7997         * src/spawn.c: removed
7998         * src/spawn.h: removed
7999         * support/regression/ports/ds390/spec.mk: link with -r
8000
8001 2003-01-24    <johan AT CP255758-A>
8002
8003         * src/ds390/gen.c (aopOp): fixed bug #667458
8004         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
8005         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
8006         (createIvalCharPtr): an ival doesn't always have a storage class anymore
8007
8008 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8009
8010         * src/mcs51/peeph.def: better assembler identation by Frieder
8011         * src/mcs51/gen.c: better assembler identation by Frieder
8012
8013 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
8014
8015         * as/z80/string.h: removed for gcc 3.2
8016         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
8017         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
8018
8019 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8020
8021         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
8022         * src/SDCCpeeph.c (replaceRule): fix bug #663503
8023         * support/regression/Makefile: separate temp files for ports
8024         * support/regression/generate-cases.py: separate temp files for ports
8025         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8026         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8027
8028 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8029
8030         * moved tinitalk to device/examples/ds390
8031
8032 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
8033
8034         * as/mcs51/lkmem.c: rflag is for DS390
8035         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
8036         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
8037                          (linkEdit): move mem- and map-files the same way as ihx-files
8038         * src/z80/main.c (_setDefaultOptions): removed --generic
8039         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
8040         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
8041         * src/pic/glue.c (picglue): --c1mode works again
8042         * src/pic16/glue.c (pic16glue): --c1mode works again
8043         * src/asm.c (printCLine): fix #660034
8044
8045 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
8046
8047         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
8048         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
8049         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
8050         * as/mcs51/lkmem (summary): better fix for sp problem
8051         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
8052         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
8053         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
8054                                               remove --stack-after-data
8055
8056 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
8057
8058         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
8059         * src/SDCCutil.c (join): ugly bug: missing '\0'
8060         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
8061
8062 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8063
8064         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
8065         * src/port.h: typo
8066         * src/pic/main.c (_asmCmd): gpasm supports -o
8067         * src/z80/main.c: more general macros
8068         * device/lib/Makefile.in: remove intermediate files
8069
8070 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8071
8072         * .version: Bumped version number to 2.3.3
8073         * src/SDCCBBlock.c: new option -o
8074         * src/SDCCglobl.h: new option -o
8075         * src/SDCCglue.c: new option -o
8076         * src/SDCCmain.c: new option -o
8077         * src/asm.c: new option -o
8078         * src/ds390/main.c: new option -o
8079         * src/pic/glue.c: new option -o
8080         * src/pic/pcode.c: new option -o
8081         * src/pic/ralloc.c: new option -o
8082         * src/pic16/glue.c: new option -o
8083         * src/pic16/pcode.c: new option -o
8084         * src/pic16/ralloc.c: new option -o
8085         * src/z80/main.c: new option -o
8086         * device/lib/Makefile.in: use -o
8087         * support/regression/ports/ds390/spec.mk: use -o
8088         * support/regression/ports/gbz80/spec.mk: use -o
8089         * support/regression/ports/mcs51/spec.mk: use -o
8090         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
8091         * support/regression/ports/z80/spec.mk: use -o
8092         * support/regression/ports/ucz80/spec.mk: use -o
8093         * support/regression/ports/xa51/spec.mk: use -o
8094         * support/regression/fwk/lib/timeout.c: fix usage string
8095
8096 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
8097         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
8098
8099 2003-01-07    <johan AT balder>
8100
8101         * src/SDCCast.c (decorateType): fixed bug #600035
8102
8103 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
8104         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
8105         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
8106         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
8107         * src/pic/pcode.c: outcommented unused variable to remove warnings
8108         * src/pic/ralloc.c: outcommented unused variable to remove warnings
8109
8110 2003-01-06    <karl AT turbobit.com>
8111         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
8112    regression tests.
8113
8114 2003-01-06    <johan AT balder>
8115
8116         * src/SDCCicode.c: fixed array add
8117
8118 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
8119         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
8120         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
8121
8122 2003-01-04    <johan AT balder>
8123
8124         * src/SDCCval.c (getNelements): fixed the initialized array of structures
8125
8126 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8127         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
8128
8129 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8130         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
8131         * support/regression/tests/bug-524697.c: fit mem usage into 8032
8132
8133 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8134         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
8135
8136 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
8137         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
8138
8139 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
8140         * src/mcs51/main.c: removed {bindir}{sep} from aslink
8141
8142 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8143
8144     * in \sdcc\as\mcs51\ changed these files in order to create an
8145     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
8146     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
8147     following files to include the previous two files: aslink.dsp,
8148     Makefile.aslink, Makefile.bcc, and Makefile.in.
8149
8150     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
8151     .adb instead of .cdb
8152
8153 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8154
8155         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
8156         value from option --iram-size.
8157
8158 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8159
8160         * \sdcc\as\mcs51\lklist.c: added boundary check before using
8161         dram[] array.
8162
8163 2002-09-18    <wiml AT hhhh.org>
8164
8165         * SDCClrange.h: exposed setFromRange() and setToRange()
8166         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
8167           packRegsForAccUse() (bug 542397)
8168         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
8169           multiple times and emitting the fetch operations more than once
8170           added aopGetUsesAcc() function to allow binary operators to
8171           fetch their operands in the correct order; made genMinus() emit
8172           compact code for X = LITERAL - Y
8173
8174 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8175         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
8176         sprintf() in line 1267.
8177
8178 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8179         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
8180         like ports.
8181
8182 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8183         Changes to aslink (All the changes are marked with 'JCF'):
8184
8185         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
8186         summary().
8187
8188         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
8189         area BSEG.  Also moves, if possible, the DATA area down into the internal
8190         ram so more space is available.
8191
8192         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
8193         sflag.
8194
8195         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
8196         not bytes.  Function summary() which creates a memory usage summary
8197         file with extension .mem.  Reports of overlaping stack and small stack
8198         size.  If the space for the stack is less than 16 bytes aslink trows a
8199         warning.
8200
8201         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
8202         the 8051.  Option 'y' for memory summary output file.
8203
8204         Changes to sdcc (All the changes are marked with 'JCF'):
8205
8206         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
8207
8208         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
8209         overlaying area for it (uses RegBankUsed[4]).
8210
8211         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
8212         bank zero as used by default.  By default aslink locates the stack
8213         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
8214         the creation of the .mem file.  Delegates the allocation of data area
8215         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
8216         the begining of the stack area to aslink.
8217
8218         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
8219         glue() in SDCCglue.c creates an area for it.
8220
8221 2002-09-03  Borut Razem <borut.razem AT siol.net>
8222         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
8223         sdcc/src/pic/glue.c:
8224         introduced atexit() handler for teporay files removal in case of
8225         errors, assertions, ...
8226
8227 2002-08-29  Borut Razem <borut.razem AT siol.net>
8228         * sdcc/support/cpp2/auto-host_vc_in.h:
8229         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
8230         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
8231         Maybe there is a similar problem with BORLANDC? It should be checked!
8232
8233         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
8234         corrected improper use of assert: the assignment to clr variable was done inside the assert.
8235         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
8236         was not executed, and the compiler (cl) launched a warning:
8237         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
8238
8239 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8240         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
8241
8242 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
8243         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
8244
8245         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8246           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
8247           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
8248           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8249           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
8250           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
8251           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
8252         - added Release configuration in VS projects
8253         - review of compiler an linker options
8254         - VC .exe files are generated in bin_vc directory, not to interfere
8255           with binaries generated from other projects (cygwin, mingw, bcc ...)
8256
8257         * sdcc/src/yacc.dsp: added
8258
8259         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
8260         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
8261         and insert the version number definitions from .version
8262
8263         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
8264
8265         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
8266         added - genarate auto-host.h using auto-host_vc_in.h as template
8267
8268         * sdcc/sdcc_vc.h,
8269         removed from CVS, generated automatically
8270
8271 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
8272         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
8273
8274 2002-08-11  Borut Razem <borut.razem AT siol.net>
8275         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
8276
8277 2002-08-10  Borut Razem <borut.razem AT siol.net>
8278         * src/SDCCmain.c (main):
8279         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
8280         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
8281         The consequence was that some temporary files were not removed.
8282
8283         * src/SDCCglue.c:
8284         unification of code in functions tempfilename() and tempfile():
8285         function tempnam() is defined in Visual Studio 6.0 and .NET
8286
8287         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
8288
8289         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8290           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
8291         - removed compiler command line option /WX: Treats all warnings as errors
8292         - update a list of source files, included into the project
8293
8294         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8295           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
8296         changed project type to Generic Project so that can be correcly converted to VS.NET project
8297
8298         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
8299
8300         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
8301
8302         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
8303
8304         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
8305         added return 0 statements after assert() to make compiler happy
8306
8307         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
8308         added newline in the def file to keep MSC compiler satisfied
8309
8310         * sdcc/src/z80/gen.c:
8311         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
8312           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
8313         - solved MSC error in function aopDump()
8314
8315         * sdcc_vc.h: define PREFIX as "\\sdcc"
8316
8317 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
8318         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
8319
8320 2002-06-22  Scott Dattalo <scott AT dattalo.com>
8321         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
8322         - Rewrote the register banking algorithm.
8323         - Added pCode live-range analysis to registers (for now, only non-used and
8324         singly-used registers optimized away)
8325
8326         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
8327
8328         * 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.
8329
8330 2002-05-10  Scott Dattalo <scott AT dattalo.com>
8331         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
8332
8333 2002-04-22  Michael Hope  <michaelh AT vroom>
8334
8335         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
8336
8337         * configure.in (DD_COPT): Added include support required for gbdk.
8338
8339         * .version: Bumped version number just to increase it.
8340
8341         * src/SDCCmain.c: Added -nostdinc to the default options.
8342
8343 2002-04-15  Michael Hope  <michaelh AT vroom>
8344
8345         * device/lib/z80/printf.c (sprintf): Added.
8346
8347         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
8348
8349         * src/z80/peeph.def: Added transpose redundent load rule.
8350
8351         * src/z80/main.c: Added force callee saves for jaune.
8352
8353         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
8354
8355         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
8356
8357 2002-03-28  Johan Knol  <johan AT balder>
8358
8359         * src/SDCCval.c: fixed bug #532436
8360
8361 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8362         * /src/port.h:
8363         Added "char *Processor" field to the port structure.
8364
8365         * /src/SDCCmain.c:
8366         Added -p option. Allows port dependent processor to be specified.
8367
8368         * all ports:
8369         Initialized the new field char *Processor field to NULL in all ports
8370
8371         * /src/pic/*:
8372         Compiler generated registers for interrupt context saving
8373         were not getting allocated.
8374
8375 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
8376
8377         * /src/SDCCast.c:
8378         Fixed left shift. Will promote the left side of a left shift
8379         if a) left shifting more than size of operand or b) when assigned
8380         to something size > size of left side
8381
8382 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8383         * src/pic/*
8384         tons of changes. Register allocation has been
8385         rewritten. Added customization for the various PICs. Flow
8386         analysis is restructured. ...
8387
8388         * src/pic/device.h:
8389         Added
8390
8391         * src/pic/device.c:
8392         Added. device.c is a PIC port hack to accomodate variations
8393         in PIC devices.
8394
8395 2002-03-13  Michael Hope  <michaelh AT vroom>
8396
8397         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
8398
8399 2002-03-04  johanknol  <johanknol AT manik>
8400
8401         * /src/SDCCval.c: fixed
8402
8403         const unsigned char arr[][2] = { { 0, 1 } };
8404         t18.c:1: error: Initializer element is not constant
8405
8406 2002-03-04  bela  <bela AT manik>
8407
8408         * /device/include/mcs51reg.h:
8409         ds89c420 register definition update
8410
8411 2002-03-03    <johan AT FRIJA>
8412
8413         * support/Util/SDCCerr.c: did something, but don't no why anymore
8414
8415         * support/regression/tests/bug-524691.c: made it a little less shy
8416
8417         * src/SDCCast.c (decorateType): fixed bug #524697
8418
8419         * src/SDCCast.c: made some lineno improvements
8420
8421         * src/SDCCval.c (getNelements): changed warning to error
8422
8423         * src/SDCCglue.c (printIvalArray): changed warning to error
8424
8425         * src/SDCCicode.c: fixed a warning for mingw
8426
8427         * src/SDCCast.c (decorateType): fixed the << promotion for ops
8428
8429         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
8430
8431 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
8432
8433         * src/ds390/peeph.def:
8434         Added some more peephole rules
8435
8436         * src/ds390/gen.c: Various fixes & enhancements
8437
8438         * src/SDCClrange.c, src/SDCClrange.h:
8439         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
8440
8441         * src/ds390/ralloc.c:
8442         various fixes & enhancements (ds390) specific
8443
8444         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
8445         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
8446         from rallocs.
8447
8448         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
8449
8450 2002-03-02    <johan AT FRIJA>
8451
8452         * src/SDCCast.c (decorateType): fixed bug #524708
8453
8454         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
8455
8456         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
8457
8458 2002-03-01  Michael Hope  <michaelh AT vroom>
8459
8460         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
8461
8462         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
8463
8464 2002-03-01    <johan AT FRIJA>
8465
8466         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
8467
8468         * src/SDCCast.c (decorateType): fixed bug #524209
8469
8470         * src/SDCCval.c (valNot): fixed bug #524195
8471
8472 2002-02-26    <johan AT balder>
8473
8474         * src/xa51/gen.c: fixed a warning
8475
8476         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
8477
8478         * src/SDCCast.c (decorateType): fixed bug #522534
8479
8480 2002-02-23    <johan AT balder>
8481
8482         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
8483
8484 2002-02-22    <johan AT balder>
8485
8486         * src/SDCCast.c: fixed bug #514865
8487
8488         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
8489
8490 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
8491
8492         * sdcc/src/SDCCloop.c:
8493         Previous fix was not good. basic blocks that have "break" or "return" are
8494         not really partof a loop , but live ranges used in these blocks should
8495         be live thru the entire loop, so set partOfLoop but don't add them to
8496         loop region
8497
8498 2002-02-21    <johan AT FRIJA>
8499
8500         * src/SDCCcse.c: fixed bug #514308
8501
8502 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
8503
8504         * src/SDCCloop.c:
8505         Fixed BUG #519583. If a conditional block ended in a return/break
8506         statement inside a loop, it was not being considered part of the loop.
8507
8508         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
8509
8510 2002-02-10  Karl Bongers <karl AT turbobit.com>
8511
8512         * debugger/*:
8513         Fixed up SDCDB debugger somewhat.  Updated debugger/README
8514         with lots of comments and notes.
8515
8516         * device/examples/test2.c:
8517         Fix bug, "red" variable not being initialized(compiler complained).
8518
8519         * device/examples/Makefile, examples/test3.c:
8520         Add Makefile in device/examples folder, compiles test3.c
8521         for use as a multiple module SDCDB test case.
8522
8523         * sim/ucsim/cmd.src/cmdset.cc:
8524         Took out debug printfs in ucsim "next" command.
8525
8526         * sim/ucsim/xa.src:
8527         Karl and Johan start ucsim XA support.  Most dissassembly working,
8528         about 75% emulation done(plenty of work remaining).
8529
8530         * sim/ucsim/z80.src:
8531         Add Z80 support to ucsim, add test-ucz80 regression test,
8532         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
8533         Notice z80 compiler fails on examples/test3.c/crc code.
8534
8535 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
8536
8537         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
8538         Added support for --parms-in-bank1
8539
8540         * src/ds390/peeph.def:
8541         added a few more peephole optimzations
8542
8543         * src/ds390/main.c:
8544         1) added __builtin_inp & __builtin_outp used to read in data of given length
8545            from a memory mapped port
8546         2) added __builtin_memcmp
8547         3) added __builtin_swapw swap bytes of a short
8548
8549         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
8550         1) handle multiple send & receives from register bank1
8551         2) ralloc can now allocate DPTR1 to some liveRanges
8552
8553         * src/SDCCsymt.c, src/SDCCsymt.h:
8554         changes to handle multiple sends & receives
8555
8556         * src/SDCCptropt.h:
8557         added some pointer arithmetic optimization
8558
8559         * src/SDCCptropt.c:
8560         added some pointer arithmetic optimizations but not stable yet so not
8561         called from anywhere (will get this working shortly)
8562
8563         * src/SDCCopt.c: fixed for multiple sends & receives
8564
8565         * src/SDCCmain.c:
8566         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
8567         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
8568            set preprocessor defines (depending on options)
8569
8570         * src/SDCCicode.c, src/SDCCicode.h:
8571         changes made to handle multiple sends & receives
8572
8573         * src/SDCCglobl.h:
8574         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
8575
8576         * src/SDCCcse.c, src/SDCCcse.h:
8577         added function findbackward def (to be used in upcoming optimization)
8578
8579         * src/SDCCcflow.c, src/SDCCcflow.h:
8580         added function returnAtEnd - to determine if a basic block terminates with
8581         a RETURN iCode
8582
8583         * src/SDCCast.c, src/SDCCast.h:
8584         added option parms-in-bank1
8585
8586         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
8587         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
8588         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
8589         adjusted for --parms-in-bank1 option
8590
8591         * device/include/string.h:
8592         donot redefine "reentrant" keyword
8593
8594         * device/include/ds80c390.h: Added some more SFRs
8595
8596 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
8597
8598         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
8599
8600 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
8601
8602         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
8603
8604 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
8605
8606         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
8607
8608 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
8609
8610         * Added --xram-movc option
8611
8612 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
8613
8614         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
8615
8616 2002-01-11  Johan Knol
8617
8618         * Added math lib of Jesus Calvino-Fraga
8619
8620 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
8621
8622         * src/SDCCmain.c (processFile): fix processing of ../../src.c
8623         * support/regression/Makefile: new target test-mcs51-stack-auto
8624         * support/regression/ports/mcs51-stack-auto/spec.mk: added
8625
8626 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
8627
8628         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
8629
8630 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
8631
8632         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
8633
8634 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
8635
8636         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
8637
8638         * src/SDCCglue.h: add definition for printIvalChar()
8639
8640 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
8641
8642         * src/SDCCast.c: fix #498138 by Johan
8643
8644         * src/SDCCglue.c: fix #498138 by Johan
8645
8646 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
8647
8648         * support/regression/Makefile: fix clean
8649
8650         * support/regression/ports/ds390/support.c: fix transmission of last character
8651
8652 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
8653
8654         * /sdcc/src/ds390/gen.c:
8655         a) improved computing address of stack variable
8656         b) took out some #if 0 code
8657         c) improved parmBytes adjustment
8658         d) improved genPlusIncr & genMinusIncr
8659         e) genCmp could generate bad code (when left assigned to DPTR)
8660         f) Fixed bug in hasInc
8661
8662         * /sdcc/src/ds390/ralloc.c:
8663         a) packRegsForSupport could mess up live information (Fixed)
8664         b) packRegsDPTRuse could be incorrect for left & right shift
8665
8666         * /sdcc/src/mcs51/ralloc.c:
8667         packRegsForSupport could mess up the live information (Fixed)
8668
8669         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
8670
8671         * /sdcc/src/SDCCast.c:
8672         can reverse a loop even if function call is present as long
8673         as the loop control variable is local & is not passed as parameter
8674
8675 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
8676
8677         * /sdcc/ChangeLog: *** empty log message ***
8678
8679         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
8680         More builtin function additions for TININative
8681
8682         * /sdcc/src/ds390/ralloc.c:
8683         Had broken the regression testsuite
8684
8685         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
8686
8687         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
8688         Added funcattr hasStackParms will be set for reentrant functions when there
8689         are paramteres on the stack, this helps in minimizing frame pointer generation
8690         typeFromStr can handle function pointers now
8691
8692         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
8693         *** empty log message ***
8694
8695 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
8696
8697         * /src/ds390/gen.c, /src/ds390/main.c:
8698         More builtin function additions for TININative
8699
8700         * /src/ds390/ralloc.c:
8701         Had broken the regression testsuite
8702
8703         * /src/SDCCast.c: Fixed a bug in dumptree
8704
8705         * /src/SDCCsymt.c, /src/SDCCsymt.h:
8706         Added funcattr hasStackParms will be set for reentrant functions when there
8707         are paramteres on the stack, this helps in minimizing frame pointer generation
8708         typeFromStr can handle function pointers now
8709
8710         * /doc/builtins.txt, /doc/TININative.txt:
8711         *** empty log message ***
8712
8713
8714 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
8715
8716         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
8717         ALPHA version for -mTININative
8718
8719         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
8720         updated to reflect changes in the port structure
8721
8722         * /src/port.h:
8723         added function do_assemble (similar to do_link) if non-null this function
8724         will be called to do assembly (-mTININative) requires a multi command
8725         assembly
8726         added function genAssemblerEnd will be called to generate assembler Epilogue
8727
8728         * /src/SDCCsymt.c:
8729         added _JavaNative to debug info printing
8730
8731         * /src/SDCCmain.c: added option --tini-libid
8732         added port->do_assemble function (-mTININative) has a multi command assemble
8733
8734         * /src/SDCCglue.c: Disabled "constExpr" check
8735         added port->genAssemblerEnd function
8736
8737         * /src/SDCCglobl.h: Added option --tini-libid value
8738
8739         * /src/SDCCast.h:
8740         tookout optimizeCompare from the header (has no external references)
8741
8742         * /src/SDCCast.c: made one more function "static"
8743
8744 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
8745
8746         * src/z80/mappings.i: Added z80asm support.
8747
8748         * src/z80/main.c: Added z80asm support on --asm=z80asm
8749
8750         * src/z80/gen.c: Fixed asm portability issues.
8751
8752         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
8753
8754         * src/SDCCglue.c (printExterns): Added global/extern split.
8755
8756 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
8757
8758         * support/regression/Makefile: added test for mcs51 model large
8759
8760         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
8761
8762         * support/regression/ports/gbz80/spec.mk: added -mgbz80
8763
8764 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
8765
8766         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
8767
8768 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
8769
8770         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
8771
8772         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
8773
8774 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
8775
8776         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
8777
8778         * support/regression/tests/simplefloat.c: Port to mcs51.
8779
8780 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
8781         * support/regression/tests/bug-485362.c: Added.
8782
8783         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
8784
8785         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
8786
8787         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
8788
8789         * src/z80/gen.c (aopDump): Added a dump function.
8790
8791 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
8792         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
8793
8794         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
8795
8796         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
8797
8798         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
8799
8800         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
8801
8802         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
8803
8804         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
8805
8806         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
8807
8808         * support/regression/ports/ds390/support.c: Use tinibios.
8809
8810         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
8811
8812 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
8813
8814         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
8815         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
8816
8817         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
8818
8819         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
8820
8821 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
8822
8823         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
8824
8825         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
8826         (packRegsForIYUse): Created and optimised.
8827
8828 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
8829
8830         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
8831 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
8832
8833         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
8834
8835         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
8836
8837         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
8838
8839 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
8840
8841         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
8842
8843         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
8844
8845 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
8846
8847         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
8848
8849         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
8850
8851         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
8852
8853 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
8854
8855         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
8856         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
8857         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
8858
8859         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
8860
8861         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
8862         (genNotFloat): Added.
8863         (genUminusFloat): Added.
8864
8865         * device/lib/z80/Makefile: Added floating pt stubs.
8866
8867         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
8868
8869         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
8870
8871         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
8872
8873 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
8874
8875         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
8876
8877         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
8878
8879         * sdcc/support/regression/Makefile: Add port ds390.
8880
8881         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
8882
8883         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
8884
8885         * sdcc/support/regression/ports/ds390/spec.mk: Added.
8886
8887         * sdcc/support/regression/ports/ds390/support.c: Added.
8888
8889         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
8890
8891         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
8892
8893         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
8894
8895 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
8896
8897         * device/include/malloc.h: Added z80 and gbz80 support.
8898
8899         * device/lib/gbz80/heap.s: Added.
8900
8901         * device/lib/z80/heap.s: Added.
8902
8903         * device/lib/malloc.c: Added z80 and gbz80 support.
8904
8905         * support/regression/tests/malloc.c (testMalloc): Added.
8906
8907         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
8908
8909         * support/regression/tests/bug-478094.c: Added.
8910
8911         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
8912
8913 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
8914
8915         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
8916
8917         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
8918
8919         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
8920
8921         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
8922
8923         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
8924
8925 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
8926
8927         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
8928
8929 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
8930
8931         * support/regression/tests/bug-477927.c: Added.
8932
8933         * src/z80/peeph.def: Added minor rules.
8934
8935         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
8936
8937         * src/z80/peeph.def: Added jump optimisation modification.
8938
8939 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
8940
8941         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
8942
8943 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
8944
8945         * support/regression/tests/funptrs.c: Added.
8946
8947 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
8948
8949         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
8950
8951 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
8952
8953         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
8954
8955         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
8956
8957         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
8958         (movLeft2ResultLong): Created.
8959
8960         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
8961         (joinPushes): Added.  Joins two char pushes into a word push.
8962
8963 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
8964
8965         * support/cpp2/Makefile.in (install): Added creation of dest dir.
8966
8967         * support/makebin/Makefile (install): Added creation of dest dir.
8968
8969 2001-10-24 Karl Bongers <karl AT turbobit.com>
8970
8971         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
8972
8973 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
8974
8975         * src/z80/ralloc.c: Turned off faulty pack for one use.
8976
8977         * src/z80/peeph-gbz80.def: Removed redundent restart options.
8978
8979         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
8980
8981 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
8982
8983         * support/regression/Makefile: Improved clean
8984
8985         * support/regression/ports/gbz80/spec.mk: Added clean
8986
8987         * support/regression/ports/host/spec.mk: Added clean
8988
8989         * support/regression/ports/z80/spec.mk: Added clean
8990
8991         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
8992
8993         * support/regression/ports/mcs51/timeout.c: little improvements
8994
8995 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
8996
8997         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
8998
8999         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
9000
9001         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
9002
9003 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
9004
9005         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
9006
9007         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
9008
9009 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
9010         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
9011
9012         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
9013
9014         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
9015
9016         * src/mcs51/main.c (_linkCmd): Added bin path to command.
9017
9018         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
9019
9020         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
9021
9022         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
9023
9024         * support/regression/tests/longor.c: Added.
9025
9026 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
9027
9028         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
9029
9030         * as/mcs51/aslink.h: define PATH_MAX
9031
9032         * as/mcs51/asm.h: define PATH_MAX
9033
9034         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
9035
9036         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
9037
9038         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
9039
9040         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
9041
9042         * src/SDCCglobl.h: define PATH_MAX
9043
9044         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
9045
9046         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
9047
9048 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
9049
9050         * src/z80/gen.c (gencjneshort): Fixed
9051
9052         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
9053
9054 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
9055
9056         * support/regression/tests/bug-469671.c: Added.
9057
9058         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
9059
9060 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
9061
9062         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
9063
9064         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
9065
9066 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
9067
9068         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
9069
9070         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
9071
9072         * src/device/lib/_mullong.c : removed hint: nooverlay bug
9073
9074         * src/device/lib/_divuint.c : removed hint: nooverlay bug
9075
9076         * src/device/lib/_divulong.c: removed hint: nooverlay bug
9077
9078         * src/device/lib/_moduint.c : removed hint: nooverlay bug
9079
9080         * src/device/lib/_modulong.c: removed hint: nooverlay bug
9081
9082 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
9083
9084         * 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.
9085
9086         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
9087
9088         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
9089
9090 2001-10-07    <johan AT FRIJA>
9091
9092         * device/lib/gets.c (gets): fixed the return value.
9093
9094 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
9095         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
9096
9097         * 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.
9098
9099         * 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.
9100
9101         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
9102
9103         * src/pic/gen.c: Removed Safe_strdup.
9104
9105         * configure.in: Added option to enable libgc support.
9106
9107         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
9108         (bitVectUnion): Optimised.
9109         (bitVectIntersect): Optimised.
9110         (bitVectBitsInCommon): Optimised.
9111         (bitVectCplAnd): Optimised.
9112
9113         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
9114
9115 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9116
9117         * src/SDCCmain.c: distinguish between assembler debug and plain options
9118
9119         * src/avr/main.c:   remove standard assembler options
9120
9121         * src/ds390/main.c: remove standard assembler options
9122
9123         * src/mcs51/main.c: remove standard assembler options
9124
9125         * src/port.h: removed "PENDING" comment
9126
9127 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9128
9129         * src/device/lib/_mulint.c  : new, with assember functions
9130
9131         * src/device/lib/_mullong.c : new, with assember functions
9132
9133         * src/device/lib/_divuint.c : with assember functions
9134
9135         * src/device/lib/_divsint.c : with assember functions
9136
9137         * src/device/lib/_divulong.c: with assember functions
9138
9139         * src/device/lib/_divslong.c: with assember functions
9140
9141         * src/device/lib/_moduint.c : with assember functions
9142
9143         * src/device/lib/_modsint.c : with assember functions
9144
9145         * src/device/lib/_modulong.c: with assember functions
9146
9147         * src/device/lib/_modslong.c: with assember functions
9148
9149         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
9150
9151         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
9152
9153         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
9154                                       replaced _mululong.c and _mulslong.c by _mullong.c
9155
9156 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9157
9158         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
9159
9160 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9161
9162         * src/SDCCglue.c: test, if win32api is available for MINGW
9163
9164 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9165
9166         * src/SDCCsymt.c: no more _modifier in printTypeChain()
9167         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
9168         * support/regression/ports/gbz80/spec.mk: removed GENERIC
9169         * support/regression/ports/host/spec.mk: removed GENERIC
9170         * support/regression/ports/mcs51/spec.mk: removed GENERIC
9171         * support/regression/ports/z80/spec.mk: removed GENERIC
9172
9173 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
9174
9175         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
9176
9177         * support/regression/tests/bug-467035.c: Created.
9178
9179 2001-10-01    <johan AT FRIJA>
9180
9181         * src/SDCC.y: fixed bug #466586 part 1
9182
9183 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
9184
9185         * SDCCicode.c: z80 has no generic pointers
9186         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
9187
9188 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
9189
9190         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
9191
9192 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
9193
9194         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
9195
9196         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
9197
9198 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
9199
9200         * configure.in: Fixed up so that ucsim is only configured once.
9201
9202         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
9203
9204         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
9205         (getPathDifference): As above.
9206
9207         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
9208
9209         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
9210
9211 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
9212         * .version: Updated to 2.3.1
9213
9214         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
9215         Added copyright header.
9216
9217         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
9218         (assemble): Added support for macro based assembler commands.
9219         (linkEdit): Added support for macro based linker commands.
9220         (preProcess): Changed the pre-processor to use macros.
9221         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
9222         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
9223
9224         * device/lib/z80/crt0.s: Added module name for debugging.
9225
9226 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
9227
9228         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9229
9230         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
9231
9232         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
9233
9234         * src/Makefile.in: Added SDCCmacro and SDCCutil
9235
9236 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
9237
9238         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9239
9240 2001-09-16    <johan AT FRIJA>
9241
9242         * 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.
9243
9244 2001-09-15    <johan AT FRIJA>
9245
9246         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
9247         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
9248
9249 2001-09-11    <johan AT FRIJA>
9250
9251         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
9252
9253 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
9254
9255         * support/regression/tests/bug-460444.c: Added test case.
9256
9257         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
9258         (genCast): Added justification for all of the asserts.
9259
9260 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
9261
9262         * support/regression/support.c: _xdata replaced by xdata
9263
9264         * support/regression/spec.mk: removed _generic
9265
9266 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
9267
9268         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
9269
9270         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
9271         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
9272
9273         * src/z80/peeph.def: Added a rule to optimise shift then compare.
9274
9275         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
9276
9277         * support/regression/tests/bug-460010.c: Added test case.
9278
9279         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
9280
9281 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
9282
9283         * support/regression/Makefile: inter-port-clean adjusted for mcs51
9284
9285         * support/regression/testfwk.c: removed workaround for bug #436344
9286
9287         * support/regression/tests/bp.c: use less memory with mcs51
9288
9289         * support/regression/tests/bug-441448.c: use less memory
9290
9291         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
9292
9293         * support/regression/collate-results.py: typo
9294
9295 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
9296
9297         * support/regression/tests/fetchoverlap.c: Added new test case.
9298
9299         * support/regression/tests/bp.c: Added new test case.
9300
9301         * support/regression/tests/bug-448984.c: Added new test case.
9302
9303         * support/regression/tests/pow2shifts.c: Added new test case.
9304
9305         * src/z80/gen.c: Turned off the noise it normally generates for the release.
9306         (genlshTwo): Fixed right shift for count > 8.
9307
9308         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
9309
9310 2001-09-08    <johan AT FRIJA>
9311
9312         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
9313
9314 2001-09-07    <johan AT FRIJA>
9315
9316         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
9317
9318         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
9319
9320 2001-09-06    <johan AT FRIJA>
9321
9322         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
9323         * bernhard noted me at this: "() equals to (void)" (1.38)
9324
9325 2001-09-05    <johan AT FRIJA>
9326
9327         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
9328
9329 2001-09-04    <johan AT FRIJA>
9330
9331         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
9332
9333
9334 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
9335
9336         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
9337
9338 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
9339
9340         * link/z80/aslink.h: Fixed path for PATH_MAX
9341
9342 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
9343
9344         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
9345
9346         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
9347
9348         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
9349
9350         * 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.
9351
9352 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
9353
9354         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
9355         (genCmp): Fixed up genCmp for the GB with longs.
9356
9357         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
9358
9359         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
9360
9361         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
9362
9363         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
9364
9365 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
9366
9367         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
9368
9369 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
9370
9371         * 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.
9372
9373         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
9374
9375 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
9376
9377         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
9378
9379         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
9380
9381 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
9382
9383   * sim/ucsim/configure:    little improvement of Cygwin-detection
9384   * sim/ucsim/configure.in: little improvement of Cygwin-detection
9385   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
9386   * support/regression/tests/bug-221100.c: small changes for mcs51
9387   * support/regression/tests/bug-221168.c: small changes for mcs51
9388   * support/regression/tests/bug-227710.c: small changes for mcs51
9389   * support/regression/tests/staticinit.c: small changes for mcs51
9390   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
9391   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9392   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9393
9394 $Revision$