device/lib/_gptrget.c,
[fw/sdcc] / ChangeLog
1 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2
3         * device/lib/_gptrget.c,
4         * device/lib/_gptrput.c: slightly shorter
5         * doc/sdccman.lyx: incremented version
6         * src/mcs51/peeph.def: moved peephole comments to the line of first
7           change to better keep line correlation, reanimated 186.e
8         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
9
10 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
11
12         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
13           David Saxton with quotes around file name.
14
15 2005-08-15 Borut Razem <borut.razem AT siol.net>
16
17         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
18           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
19           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
20           make tests run on x86_64 platform
21
22 2005-08-13 Raphael Neider <rneider AT web.de>
23
24         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
25           as it might be executed DURING a build (parallel make is wonderful)
26
27 2005-08-13 Raphael Neider <rneider AT web.de>
28
29         * device/lib/Makefile.in (port-specific-objects-pic16):
30           revert to cp $(PORT)/bin/*.* $(PORTDIR)
31         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
32           dependency
33         * device/lib/pic16/Makefile.rules: build subdirs before creating
34           the library, removed builddir rule, create $(builddir) early in
35           recurse rule, use empty recurse rule for leaf directories
36         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
37           mkdir errors (race condition), removed duplicate suffix "hex"
38           from clean rules
39         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
40         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
41           prevents mkdir -p from aborting on Alpha
42         
43 2005-08-12 Raphael Neider <rneider AT web.de>
44
45         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
46           db-statements in order to allow for arrays of pointers in code
47           sections to be placed without interspersed 0-padding, fixes
48           bug #1256215
49         * (emitStatistics): fixed division by zero for pic18f1220
50         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
51           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
52         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
53         * (pic16_pCodeConstString): keep track of already emitted string
54           literals to prevent "duplicate definitions of symbol _str_NR"
55         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
56           debug message
57         * device/lib/Makefile.in: ignore failing PIC16 library builds
58         * device/lib/pic16/Makefile: do not build if gputils are missing
59         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
60
61 2005-08-10 Raphael Neider <rneider AT web.de>
62
63         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
64           my last commit)
65
66 2005-08-10 Raphael Neider <rneider AT web.de>
67
68         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
69           Rokas' patch to add the new fixed point type "__fixed16x16"
70         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
71           functions for __fixed16x16 arithmetics
72         * device/lib/pic16: reimplemented the build system to support
73           a separate build directory, better handling of libio (create
74           the library in a separate subdir for each architecture) and
75           easier configuration (centralized in Makefile.common)
76
77 2005-08-07 Raphael Neider <rneider AT web.de>
78
79         * src/pic16/gen.c (genrshTwo): fixed sign extension
80         * src/pic16/device.c: added pic18f2320, 4220 and 4320
81         * device/include/pic16/pic18f2220.h: changed some bit definitions,
82           added T0CONbits
83         * device/include/pic16/pic18f4220.h: NEW, header for
84           pic18f4220 and pic18f4320
85         * device/include/pic16/pic18fregs.h: added new devices,
86           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
87         * device/include/pic16/signal.h: resolved name clashes
88           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
89           to also allow testing for interrupt enable bits, added
90           comments on how to use the macros
91         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
92         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
93           register definitions for the devices
94         * device/lib/pic16/pics.all: added new devices
95         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
96           allocated memory
97         * device/lib/pic16/libc/stdlib/memfree: do not count
98           the block header as free memory
99         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
100           simplified and added missing end-of-blocklist-marker
101           (reported by Peter Onion, fixes #1252814)
102         * (_mergeHeapBlock): fixed loop condition
103         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
104           len==0, restructured code
105         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
106           up a bit, reduced bitfield accesses, prevent endless loops
107           in case of heap corruption
108         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
109           "unreferenced arguments/must return a value" warnings
110         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
111           replaced BAUDREG with SPBRG
112         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
113           device/lib/pic16/debug/gstack/gstack.c: replaced
114           _naked, _asm, _endasm with __naked, __asm, __endasm
115
116 2005-08-05 Raphael Neider <rneider AT web.de>
117
118         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
119           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
120
121 2005-08-05 Borut Razem <borut.razem AT siol.net>
122
123         * device/lib/Makefile.in: added missing ';'
124         * configure: removed ^M characters
125
126 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
127
128         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
129           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
130           License
131
132 2005-08-04 Borut Razem <borut.razem AT siol.net>
133
134         * configure.in: pic16 libraries build 2nd try - enable running
135           configure in device/lib/pic16
136         * configure: regenerated from configure.in
137         * device/lib/Makefile.in: create $(PORT)/bin directory
138
139 2005-08-03 Raphael Neider <rneider AT web.de>
140
141         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
142           to get/set values via pointers
143         * (genUnpackBits,genPackBits): changed detection of
144           ptr->bitfield vs. sym.bitfield, fixed access via generic
145           pointers, removed dead (wrong) code for multibyte bitfields
146         * (genNearPointerGet, genGenPointerGet): removed useless code,
147           fixed bitfield detection, fixes #1250594
148         * (genNearPointerSet): removed useless code
149         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
150           and introduced macro pic16_emitpcode that conditionally emits
151           the origin of the following pCode (useful for debugging SDCC)
152         * src/pic16/pcode.c: changed (and disabled) some debug outputs
153         * (createDefmap): fixed handling of LFSR for --optimize-df
154
155 2005-08-02 Borut Razem <borut.razem AT siol.net>
156
157         * device/lib/Makefile.in: pic16 libraries build enabled since
158           gputils-0.13.2 are now localy installed at sourceforge's compile farm
159
160 2005-08-02 Raphael Neider <rneider AT web.de>
161
162         * src/pic16/gen.c (genPackBits): removed deprecated warning
163         * (genGenPointerSet): fixed bitfield detection
164
165 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
166
167         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
168
169 2005-07-31 Raphael Neider <rneider AT web.de>
170
171         * device/lib/pic16/libdev/pic18f458.c,
172           device/include/pic16/pic18f458.h: added missing T0CONbits
173
174 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
175
176         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
177
178 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
179
180         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
181
182 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
183
184         * device/include/mcs51/at89c51ed2.h: added.
185
186 2005-07-23 Raphael Neider <rneider AT web.de>
187
188         * src/pic/gen.h: added emitpcode macro for debugging
189         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
190           and replace by macro adding debug information on demand
191         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
192         * (gencjne): tried to fix; replaced with correct (slower) code
193         * (gen{Unp,P}ackBits): fixed single bit access
194         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
195         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
196           previous instruction
197         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
198           register has to be handled with care (forbidding movement
199           of assignments/uses, removing assignments completely, ...)
200         * (pCodeOptime2pCodes): make use of regIsSpecial
201         * added lots of debugging output (commented out)
202         * src/pic/rallloc.c (deassignLRs): prevent operand registers
203           from being reused as result UNLESS it is known to work
204
205 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
206
207         * support/Util/dbuf.h: include <stddef.h> for size_t
208         * .version: changed to version 2.5.2
209
210 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
211
212         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
213
214 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
215
216         * src/hc08/gen.c (genMinus): fixed bug #1241835,
217           (genModOneByte): removed needless psha/pula
218
219 2005-07-22 Raphael Neider <rneider AT web.de>
220
221         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
222           have PIC14 handled like PIC16, fixes broken pic14 linker calls
223         * src/pic/gen.c (resolveIfx): do not "invent" labels
224         * (genSkipc): changed to positive logic
225         * (genSkipCond): removed as no longer needed
226         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
227           backport from PIC16
228         * (genLeftShift): check operands are in different registers
229         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
230           INCF does not update CARRY...
231         * src/pic/main.c: fixed _linkCmd
232         * src/pic/pcode.c (unlinkpCode): added inactive code
233         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
234           alive (do not assign result and operand overlapping registers)
235
236 2005-07-22 Raphael Neider <rneider AT web.de>
237
238         * src/pic/device.c (dump_sfr): replaced register declaration with
239           call to emitSymbolToFile() to avoid duplicate symbols
240         * (assignRelocatableRegisters): do not declare external symbols
241         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
242           right (take size of type, not etype)
243         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
244         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
245         * (packRegsForAccUse): disabled assignment of WREG as
246           the result reg to prevent occurence of just fixed #1235003,
247           fixes #1242954
248         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
249           symbols (avoids duplicate symbols in .asm file)
250         * (pic14emitRegularMap): use emitSymbolToFile()
251         * src/pic/gen.c (aopOp): fixed spillLocation handling
252         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
253         * (genDataPointerSet): removed unneccessary variables/output
254
255 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
256
257         * as/mcs51/lkarea.c: enlarged codemap for banked memory
258         * device/lib/mcs51/crtbank.asm: added # to 0x0F
259
260 2005-07-21 Raphael Neider <rneider AT web.de>
261
262         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
263           architecture cannot handle them efficiently, fixes bug #1235003
264         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
265           check for empty sets before using them (fixes bug #1232190)
266
267 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
268
269         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
270           (lnksect2): generate warnings for memory overlap
271         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
272           constseg to set the name of these segments so you can instruct the linker
273           to place them in banks
274         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
275         * src/SDCCglobl.h: added MODEL_HUGE to enum,
276           added code_seg and const_seg to options
277         * src/SDCCglue.c (emitMaps): use options.const_seg,
278           (createInterruptVect): put interrupt vectors in segment HOME,
279           (glue): put HOME before static segment and put the main glue in HOME,
280           (glue): use options.code_seg
281         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
282         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
283           these segments so you can instruct the linker to place them in banks
284           (linkEdit): use code_loc for HOME segment which should be the first
285           segment in code memory now
286         * src/SDCCmem.c: fixed more stuff like bug 1238386
287         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
288           (changePointer): don't change function pointers to code pointers for
289           banked functions,
290           (compareType): added exceptional check for banked function pointers
291         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
292         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
293           after static in code memory
294         * src/mcs51/gen.c: added aopLiteralLong prototype,
295           (aopForSym): use getSize for functions,
296           (genCall): generate banked calls over one trampoline __sdcc_banked_call
297           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
298           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
299           the segment,
300           (genPcall): use call for literal function pointers and generate banked
301           calls over the one trampoline so there's only one place for the user to
302           modify according to his/hers hardware,
303           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
304           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
305         * src/mcs51/main.c: added keyword banked,
306           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
307         * support/Util/SDCCerr.c,
308         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
309           needed for passing the bank and address to the trampoline
310         * device/lib/mcs51/crtbank.asm: added for bankswitching
311         * device/lib/mcs51/Makefile: added crtbank
312
313 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
314
315         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
316           for fields at offset 0 of a struct or union as reported
317           on 2005-07-07 in the developer mailing list.
318
319 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
320
321         * src/SDCCmem.c: fixed bug 1238386
322
323 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
324
325         * src/mcs51/peeph.def: added labelrefcounting for peepholes
326           (patch #1144962), added peephole 300, enabled 259.x
327         * doc/sdccman.lyx: removed screenshot and provided link instead
328
329 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
330
331         * doc/sdccman.lyx: added section about debugging with ddd
332         * doc/figures/ddd_example.eps: screenshot of debugging session
333
334 2005-07-04 Raphael Neider <rneider AT web.de>
335
336         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
337           like CODE pointers, fixes #1115683
338         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
339           call, fixes bugs #1232211, #1228110,
340           fixed wrong casts to pCodeFlow from pCodeInstructions
341
342 2005-07-04 Raphael Neider <rneider AT web.de>
343
344         * src/pic/gen.c (popGet): changed assert to allow for
345           bit operands
346         * (popGetAddr): changed signature to provide
347           an additional index, patched all call sites
348         * (genCmpEq): handle literal-like operands correctly
349         * (genAddrOf): added sanity checks on __code/__data pointers
350         * (genAssign): added handling of symbols from __code section
351         * (gencjne): do not generate code for comparisons whose result
352           is neither stored nor used, fixes bug #1171114
353         * (AccLsh, AccRsh): operate on operand instead of WREG
354         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
355           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
356           by known count
357         * rewrote complete shift-by-literal logic, commented unused
358           functions out
359         * (genConstPointerGet): get multiple bytes (if result size > 1),
360           fixed handling of non-immediate addresses
361         * (genPointerGet): handle CODE pointers like CONST pointers
362         * (genpic14Code): insert C-SRC lines as Cource-pCodes
363         * ({aop,op}_isLitLike): NEW, single place to decide whether an
364           operand is to be treated as a literal or not
365         * (mov2w,genPcall,genCmpEq),
366           src/pic/genarith.c: use aop_isLitLike() to decide between
367           literal/register contents
368         * (addSign): added missing offset
369         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
370           only emit comment in debug-mode,
371           use {aop,op}_isLitLike throughout the file
372         * src/pic/glue.c: fix initializers for pointers (work in progress)
373         * src/pic/pcode.c (get_op): honor index on _const symbols
374         * ({reset,dump}pCodeStatistics): NEW, estimate code size
375         * (dumppBlock): added pCode size estimation
376         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
377           check for IS_SYMOP before OP_SYMBOL'ing
378         * fixed indentation, compacted switch-statements
379         * (allocReg): find free register and allocate it instead of
380           allocating new registers all the time
381         * (deassignLRs): prevent POINTER_GET's from being assigned the same
382           registers as its operands (necessary only for multibyte GETs)
383
384 2005-07-01 Raphael Neider <rneider AT web.de>
385
386         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
387           debugging .asm-output macros FENTRY + FEXIT
388         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
389           way... I wonder...
390         * (emitpComment): NEW, printf to pCode
391         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
392           offset handling
393         * (popGetAddr): NEW, variant of popGet to access an immediates
394           high(er) bytes instead of the n'th byte of memory they reference,
395           replaced popGet with popGetAddr where neccessary
396         * (genDataPointerGet): reactivated and fixed implementation
397         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
398           accesses
399         * (genDataPointerSet): fixed multibyte assignments
400         * (genpic14Code): fixed --i-code-in-asm handling
401         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
402         * (genPlus): fixed index-out-of-bounds error
403         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
404         * src/pic/ralloc.c: added debugging output macro FENTRY2
405         * (spillThis): fixed indentation, enbraced for-body for clarity
406         * (rematStr): commented out as now unused
407         * (regTypeNum): commented out special spill case (overwrites
408           arbitrary values)
409         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
410
411 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
412
413         * doc/sdccman.lyx: documented sfr16/sfr32,
414           added example for using storage class with function pointers
415         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
416
417 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
418
419         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
420         * device/lib/_itoa.c,
421         * device/lib/_ltoa.c: optimized codesize
422         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
423           but don't know how to suppress the double warning.
424         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
425         * support/Util/SDCCerr.c,
426         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
427
428 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
429
430         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
431           fixed old K&R prototypes
432         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
433         * device/lib/_gptrget.c,
434         * device/lib/_gptrgetc.c,
435         * device/lib/_gptrput.c: changed versions for new memory indicator values,
436           also new versions for small generic pointers and banked generic pointers
437         * src/port.h: added const_name
438         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
439         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
440         * src/SDCCcse.c (findPrevIc): check all associative operators
441         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
442         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
443         * src/SDCCmem.c: updated comments,
444           set far-space to 0 for pdata, results in optimized code
445         * src/SDCCmem.h: added macro CONST_NAME
446         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
447           moving the info into the highest bits, see also gptrget/gptrput
448         * src/src.dsp: added sdcc.ico to project files
449         * src/avr/gen.c (genCast): fixed bug 0x%d
450         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
451         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
452           relation between ptr_type and DCL_TYPE,
453           (genCast): fixed bug 0x%d
454         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
455           (CODE)" for const_name
456         * src/hc08/gen.c (genCast): fixed bug 0x%d
457         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
458           (hc08_port): added "CONST (CODE)" for const_name
459         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
460           (aopForRemat, adjustArithmeticResult): disconnected direct relation
461           between ptr_type and DCL_TYPE,
462           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
463           operand* and took AOP() inside function so sfr-ness can be checked,
464           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
465           new prototype,
466           (genFunction, genEndFunction): optimized stack setup,
467           (genMinus): optimized for literals with ending zeroes (in bytes),
468           (genCast): fixed bug 0x%d
469         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
470           (mcs51_port): added "CONST (CODE)" for const_name
471         * src/mcs51/peeph.def: made rule 226 more generic
472         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
473         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
474         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
475         * src/z80/main.c (z80_port): added NULL for const_name,
476           (gbz80_port): added NULL for const_name
477         * support/regression/tests/bug663539.c,
478         * support/regression/tests/sfr16.c: new tests
479
480 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
481
482         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
483
484 2005-06-24 Raphael Neider <rneider AT web.de>
485
486         * device/lib/pic16/libdev/pic18f[68][567]20.c:
487           corrected typos...
488         * device/include/pic16/signal.h: added USBIF
489           and SIG_USB
490
491 2005-06-24 Raphael Neider <rneider AT web.de>
492
493         * device/lib/pic16/libdev/pic18f2455.c,
494           device/include/pic16/pic18f2455.h: NEW
495         * device/include/pic16/pic18fregs.h,
496           device/lib/pic16/pics.all,
497           src/pic16/device.c: added 18f2455
498         * device/lib/pic16/libdev/pic18f[68][567]20.c,
499           device/include/pic16/{pic18f[68][567].h,usart.h}:
500           replaced MULTIPLE_USARTS define with more relaible
501           compatibility sfrs (for USART access)
502
503 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
504
505         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
506           and the output asm file line is printed on two lines.
507
508 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
509
510         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
511           BGT, BLE, BHI, and BLS instructions
512         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
513           genCmpEq): removed
514         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
515           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
516           fixes bug #1216342
517         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
518
519 2005-06-15 Raphael Neider <rneider AT web.de>
520
521         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
522         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
523         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
524           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
525           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
526
527 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
528
529         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
530           Marcel Telka in bug #1215704
531
532 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
533
534         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
535           located in shared memory bank.
536
537 2005-05-31 Raphael Neider <rneider AT web.de>
538
539         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
540           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
541           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
542
543 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
544
545         * device/lib/_strncpy.c: fixed the fix
546
547 2005-05-26 Raphael Neider <rneider AT web.de>
548
549         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
550           initializers with \0, bug #1208187
551         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
552           intializers with \0, bug #1208187
553
554 2005-05-26 Raphael Neider <rneider AT web.de>
555
556         * src/pic16/glue.c (pic16_printIvalChar): fixed string
557           initializers with \0, bug #1208187
558         * src/pic16/main.c (_process_pragma): added sanity checks
559           for stack position and size, emit warnings when appropriate
560
561 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
562
563         * device/lib/_strncpy.c: fixed not filling with \0
564
565 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
566
567         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
568           createFunction),
569         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
570           compound_statement),
571         * src/SDCCsymt.h,
572         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
573
574 2005-05-24 Raphael Neider <rneider AT web.de>
575
576         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
577
578 2005-05-24 Raphael Neider <rneider AT web.de>
579
580         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
581           TRISE definitions, closes bug #1162453
582
583 2005-05-22 Raphael Neider <rneider AT web.de>
584
585         * src/pic16/main.c (_process_pragma): check for missing
586           arguments to pragmas code and udata
587         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
588           consistency fixes to match other headers (thanks to Jim Paris)
589         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
590
591 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
592
593         * src/SDCCicode.c (isOperandEqual): fixed missing ;
594
595 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
596
597         * support/regression/tests/bug1198642.c: new test
598         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
599         * src/SDCCcse.c (findPrevIc): added comment, please have a look
600         * support/scripts/resource.h,
601         * support/scripts/resource.rc,
602         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
603         * support/scripts/sdcc.ico: added 32x32 icon
604
605 2005-05-18 Raphael Neider <rneider AT web.de>
606
607         * device/lib/pic16/libdev/pic18f*.c,
608         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
609           keywords to "__sfr" and "__at (X)"
610         * device/include/pic16/pic18fregs.h: added pic18f4520
611         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
612           #1203088 (MPLAB compatibility)
613
614 2005-05-17 Raphael Neider <rneider AT web.de>
615
616         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
617         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
618         * device/lib/pic16/pics.all: added new devices
619         * src/pic16/device.c: added support for pic18f4520
620
621 2005-05-16 Raphael Neider <rneider AT web.de>
622         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
623         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
624         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
625           convenience function for bit access
626
627 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
628
629         * device/lib/printf_large.c: fixed bug 1193299
630         * support/regression/tests/bug1057979.c: added test %3.3s
631
632 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
633
634         * device/include/mcs51/8051.h,
635         * device/include/mcs51/8052.h: made parseable with lint
636         * device/include/mcs51/lint.h: added include file for (sp)lint
637         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
638         * doc/cdbfileformat.lyx,
639         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
640
641 2005-05-14 Raphael Neider <rneider AT web.de>
642
643         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
644         * device/lib/pic16/libc/stdlib/itoa.c (new)
645         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
646         * device/lib/pic16/libio/Makefile: exclude subdir according to
647           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
648         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
649         * src/pic16/gen.c (genFunction): prevent annoying warning
650         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
651           nameclashes on BeOS
652         * support/cpp2/cppmain.c (cpp_output_string): new
653         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
654           fixes bug 1116802
655
656 2005-05-13 Borut Razem <borut.razem AT siol.net>
657
658         * src/SDCCmain.c (linkEdit): fixed bug 1195202
659
660 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
661
662         * .version: changed to version 2.5.1; back to bleeding edge development
663
664 2005-05-11 Borut Razem <borut.razem AT siol.net>
665
666         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
667           generate PDF version 1.3 documents
668
669 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
670
671         * .version: changed to version 2.5.0
672
673 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
674
675         * doc/sdccman.lyx: updated weblinks, index and smaller updates
676
677 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
678
679         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
680         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
681         well as many smaller updates.
682         * .version: changed to version 2.5.0-pre1
683
684 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
685
686         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
687
688 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
689
690         * support/regression/tests/bug1185672.c: added
691         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
692           bug 1185672
693         * src/mcs51/gen.c (genCall): added comments, made it look safer
694         * src/mcs51/gen.c (genEndFunction): simplified
695
696 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
697
698         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
699
700 2005-04-14 Borut Razem <borut.razem AT siol.net>
701
702         * fixed bug 1045046 - SIGSEGV with really simple code?:
703           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
704           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
705
706 2005-04-14 Borut Razem <borut.razem AT siol.net>
707
708         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
709           src/pic16/device.h: temporarily disabled experimental #inline pragma
710           for 2.5.0 release
711
712 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
713
714         * device/include/z80/stdio.h,
715         * device/include/z80/string.h: removed these highly incomplete files so
716           SDCC can use the default ones in device/include/
717
718 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
719
720         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
721         gcc warning.
722         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
723         fix sdcpp warnings.
724
725 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
726
727         * device/include/malloc.h: removed redundant __reentrant prototypes
728         * device/lib/_mullong.c: added working xstack variant in asm (C version
729           doesn't pass regression tests)
730         * device/lib/bpx.c: used __data and made bpx char for mcs51
731         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
732           (createFunction): fixed bug with xstackPtr
733         * src/SDCCcse.c: corrected comments
734         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
735           (killDeadCode, eBBlockFromiCode): removed unused code
736         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
737           corrected comments
738         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
739           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
740           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
741           (genModOneByte): fixed warning in MSVC
742         * src/mcs51/main.c (): added comments
743         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
744
745 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
746
747         * src/SDCCmain.c (linkEdit): oops, changed one line too many
748
749 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
750
751         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
752
753 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
754
755         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
756         characters arrays of larger size than the declared one.
757
758 2005-04-10 Borut Razem <borut.razem AT siol.net>
759
760         * src/pic/gen.c (genInline),
761           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
762           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
763           (findNextInstruction), (findPrevInstruction),
764           (findInstructionUsingLabel),
765           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
766         * src/pic/pcode.c (findLabel): added missing '\n'
767         * src/src.dsp: added SDCCdwarf2.c to the project
768
769 2005-04-09 Borut Razem <borut.razem AT siol.net>
770
771         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
772
773 2005-04-08 Raphael Neider <rneider AT web.de>
774
775         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
776           into the chain after a given one) and mergeDefmapSymbols (combine
777           defmap entries for each symbol per pcode)
778         * (createDefmap): have defmap entries merged in the end
779         * (defmapReplaceSymRef): split defmap entries covering two accesses to
780           a symbol before replacing one access type's symbol, merge symbols in
781           the end (replacement symbol might already have an entry)
782         * (assignValnums): keep reference to written WREG intact
783
784 2005-04-08 Raphael Neider <rneider AT web.de>
785
786         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
787           Alpha)
788
789 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
790
791         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
792         bytes
793
794 2005-04-07 Raphael Neider <rneider AT web.de>
795
796         * device/include/pic16/usart.h: added compatibility defines for
797           devices with more than one USART
798         * device/include/pic16/pic18f[68][567]20.h: activated above defines
799
800 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
801
802         * device/lib/Makefile.in: updated for port specific include
803
804 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
805
806         * support/regression/ports/mcs51/spec.mk: added mcs51 include
807
808 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
809
810         * device/include/8051.h,
811         * device/include/8052.h,
812         * device/include/at89S8252.h,
813         * device/include/at89c55.h,
814         * device/include/at89x051.h,
815         * device/include/at89x51.h,
816         * device/include/at89x52.h,
817         * device/include/mcs51reg.h,
818         * device/include/reg51.h,
819         * device/include/reg764.h,
820         * device/include/regc515c.h,
821         * device/include/sab80515.h: (re)moved these 12 files
822         * device/include/mcs51/8051.h,
823         * device/include/mcs51/8052.h,
824         * device/include/mcs51/at89S8252.h,
825         * device/include/mcs51/at89c55.h,
826         * device/include/mcs51/at89x051.h,
827         * device/include/mcs51/at89x51.h,
828         * device/include/mcs51/at89x52.h,
829         * device/include/mcs51/mcs51reg.h,
830         * device/include/mcs51/reg51.h,
831         * device/include/mcs51/reg764.h,
832         * device/include/mcs51/regc515c.h,
833         * device/include/mcs51/sab80515.h: and added them here
834
835 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
836
837         * device/include/stdarg.h: changed SDCC specific keywords to double
838           underlined form.
839         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
840           mcs51 and ds390.
841         * device/include/hc08/mc68hc908gp32.h,
842         * device/include/hc08/mc68hc908jb8.h,
843         * device/include/hc08/mc68hc908jkjl.h,
844         * device/include/hc08/mc68hc908qy.h: fixed comments
845         * device/include/mcs51/README: updated
846         * device/include/mcs51/c8051f120.h: added PINRSF
847         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
848         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
849           amidst code. Also inline is not supported.
850
851 2005-04-06 Raphael Neider <rneider AT web.de>
852
853         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
854         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
855           callers stack/frame pointers
856
857 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
858
859         * device/include/pic16/usart.h: added, missing in previous commit,
860         * device/include/pic16/adc.h: fixed typo,
861         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
862         commit,
863         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
864         <p18fxxx.inc>
865         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
866         uninitialized because a bug appears with gplink
867         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
868         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
869         complains for unrecognised option
870
871 2005-04-05 Raphael Neider <rneider AT web.de>
872
873         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
874           structs as well (using memcpy)
875         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
876           on ISRs (GOTO has no label)
877         * src/pic16/device.h: added OF_OPTIMIZE_DF
878         * src/pic16/main.c: added compiler switch --optimize-df to enable the
879           new data flow analysis/optimization
880         * src/pic16/pcode.c: added (prototypes for and implementation of)
881           dataflow analysis functions, fixed pCodeInstructions' inCond and
882           outCond values, made RCALL a branch instruction
883         * (pic16_unlinkpCode): keep C line if possible
884         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
885           C line moved if possible
886         * (pic16_getRegFrompCodeOp): NEW, improved version of...
887         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
888           to use new pic16_getRegFrompCodeOp (works for more SFRs)
889         * (pic16_BuildFlow): fixed skip instructions with label (did not start
890           new flow)
891         * (pic16_getJumptabpCode): NEW, needed in...
892         * (LinkFlow): fixed handling of jumptables, calls and conditional
893           branches
894         * (pic16_InsertCommentAfter): NEW
895         * (pic16_pCodeReplace): made verbose and flow preserving
896         * (AnalyzeFlow): added call to data flow analysis
897         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
898         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
899         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
900
901 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
902
903         * src/SDCCast.c (decorateType): fixed bug #1105626
904
905 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
906
907         * device/include/asm/pic16/features.h,
908         * pic18f*.h headers,
909         * device/include/pic16/adc.h,
910         * device/include/pic16/delay.h,
911         * device/include/pic16/i2c.h,
912         * device/include/pic16/malloc.h,
913         * device/include/pic16/stdio.h,
914         * device/include/pic16/stdlib.h,
915         * device/include/pic16/string.h,
916         * device/lib/pic16/libc/stdio/printf_tiny.c,
917         * device/lib/pic16/libc/stdio/printf_small.c,
918         * device/lib/pic16/libc/stdio/strmgpsim.c,
919         * device/lib/pic16/libc/stdio/strmmssp.c,
920         * device/lib/pic16/libc/stdio/strmusart.c,
921         * device/lib/pic16/libc/stdio/vfprintf.c,
922         * device/lib/pic16/libc/stdlib/ltoa.c,
923         * device/lib/pic16/libc/stdlib/putchar.c,
924         * device/lib/pic16/libc/stdlib/x_ftoa.c,
925         * device/lib/pic16/libc/stdlib/memchrpgm.c,
926         * device/lib/pic16/libc/stdlib/memchrram.c,
927         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
928         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
929         * device/lib/pic16/libio/adc/adcbusy.c,
930         * device/lib/pic16/libio/adc/adcread.c,
931         * device/lib/pic16/libio/adc/adcsetch.c,
932         * device/lib/pic16/libio/usart/ubaud.c,
933         * device/lib/pic16/libio/usart/ubusy.c,
934         * device/lib/pic16/libio/usart/udrdy.c,
935         * device/lib/pic16/libio/usart/uopen.c,
936         * device/lib/pic16/libio/usart/uputc.c,
937         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
938         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
939         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
940         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
941         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
942         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
943         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
944         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
945         specific keywords to double underlined form,
946         * device/lib/pic16/libc/Makefile.rules,
947         * device/lib/pic16/libsdcc/Makefile.rules,
948         * device/lib/pic16/libm/Makefile,
949         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
950         to compile with C standard set in Makefile.common
951         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
952         rand.c and crc.c in compilation process,
953         * device/lib/pic16/libsdcc/int/divuint.c,
954         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
955         `c' from signed to unsigned,
956         * device/lib/pic16/startup/crt0.c,
957         * device/lib/pic16/startup/crt0i.c,
958         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
959         keywords to double underlined form, bug fixes in _do_cinit function
960         which prevented the correct initialization of the .idata segment,
961         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
962         core to enter a infinite loop
963         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
964
965 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
966
967         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
968
969 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
970
971         * device/include/Makefile.in: add support for hc08 subdirectory
972         * device/include/hc08/: new subdirectory
973         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
974         Lucas Loizaga, thanks!
975         * device/include/hc08/mc68hc908qy.h,
976         * device/include/hc08/mc68hc908gp32.h,
977         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
978         their own directory. Changed internal macro names to use the compiler
979         reserved namespace. Changed SDCC specific keywords to double
980         underlined form.
981         * device/include/math.h,
982         * device/include/malloc.h,
983         * device/include/stdarg.h,
984         * device/include/stdbool.h
985         * device/include/string.h,
986         * device/include/tinibios.h,
987         * device/include/ds400rom.h,
988         * device/include/8051.h,
989         * device/include/8052.h,
990         * device/include/80c51xa.h,
991         * device/include/at89c55.h,
992         * device/include/at89S8252.h,
993         * device/include/at89x51.h,
994         * device/include/at89x52.h,
995         * device/include/ds80c390.h,
996         * device/include/reg764.h,
997         * device/include/regc515c.h,
998         * device/include/sab80515.h,
999         * device/include/mcs51/c8051f000.h,
1000         * device/include/mcs51/c8051f018.h,
1001         * device/include/mcs51/c8051f020.h,
1002         * device/include/mcs51/c8051f040.h,
1003         * device/include/mcs51/c8051f060.h,
1004         * device/include/mcs51/c8051f120.h,
1005         * device/include/mcs51/c8051f300.h,
1006         * device/include/mcs51/c8051f310.h,
1007         * device/include/mcs51/c8051f320.h,
1008         * device/include/mcs51/c8051f330.h,
1009         * device/include/mcs51/c8051f350.h,
1010         * device/include/z180.h: Changed SDCC specific keywords to double
1011         underlined form.
1012
1013 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
1014
1015         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
1016         18F4455,
1017         * (pic16_assignConfigWordValue): disable testing of configuration
1018         register value with config mask,
1019         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
1020         function with port->fun_prefix,
1021         * (genFunction): when generating a naked interrupt function never
1022         create an absolute segment placed in interrupt vector address, place
1023         the actual interrupt function at IVA instead, when an interrupt
1024         function is generated with unspecified interrupt then do not create
1025         the absolute section,
1026         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
1027         code for generating a call to generic pointer get/put function with
1028         a call to function pic16_callGenericPointer(),
1029         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
1030         the call to the generic pointer get/put functions with prefixing the
1031         function name with port->fun_prefix,
1032         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
1033         * src/pic16/main.c (_process_pragma): prefix function with
1034         port->fun_prefix,
1035         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
1036         calling assembler, old 18Fxxxx macro is deprecated,
1037         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
1038         PC_ASMDIR in while condition,
1039         * (findInstruction): add PC_ASMDIR in while condition,
1040         * (buildCallTree): prefix main with port->fun_prefix,
1041         * (pic16_pCode2str): fixed bug that didn't emit the memory access
1042         identifier for variable with banked access in instructions BTFSS,
1043         BTFSC, BCF, BSF, BTG
1044         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
1045         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
1046         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
1047         perform optimization when enviroment variable NO_REG_OPT is set,
1048         * (insideLRBlock): NEW, return 1 if register is inside an
1049         INF_LOCALREGS block,
1050         * (RemoveRegFromLRBlock): remove a register that is completely
1051         eliminated by register optimization, but it is still left in local
1052         register store/restore in/from stack block,
1053         * (Remove2pcodes): after removing register, check to see if it
1054         should be removed from local register store/restore in/from stack
1055         block,
1056         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
1057         DUMMY_READ_VOLATILE,
1058
1059         * device/include/pic16/adc.h: minor prototype modifications and
1060         update,
1061         * device/include/pic16/malloc.h: added GPL notice various
1062         modifications,
1063         * device/include/pic16/stdint.h: NEW, standard header for ints
1064         * device/include/pic16/delay.h: NEW, header for delay functions,
1065         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
1066         delay1mtcy,
1067         * device/include/pic16/signal.h: NEW, header providing helper macros
1068         for implementing signal handlers,
1069         * device/include/pic16/stdio.h: added prototypes for functions,
1070         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
1071         prototypes for stdin and stdout, added macro PUTCHAR to
1072         automatically implement putchar function prototype,
1073         * device/include/pic16/usart.h: modified and updated USART library,
1074         * device/lib/pic16/libio/adc/,
1075         * device/lib/pic16/libio/i2c: some modifications to improve library
1076         performance,
1077         * device/lib/pic16/libc/stdio/: modifications for the new printf*
1078         family of functions,
1079         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
1080         family of functions and other sources,
1081         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
1082         of the PIC18Fxx[28] devices,
1083         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
1084         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
1085         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
1086         _do_cinit function, because the previous failed when local variables
1087         where not placed in the same memory bank,
1088         * device/lib/pic16/libsdcc/char/: various modifications to improve
1089         library performance,
1090         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
1091         information on the new functions of the c library and more...
1092
1093 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1094
1095         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
1096
1097 2005-03-26 Raphael Neider <rneider AT web.de>
1098
1099         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
1100           if condition == CARRY)
1101         * (genCmp): adapted to new genSkipc semantics
1102         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
1103           on rIfx (genCmp was broken)
1104
1105 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1106
1107         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
1108         * src/z80/main.c (_keywords[]),
1109         * src/SDCCglobal.h (struct options),
1110         * src/SDCC.y,
1111         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
1112         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
1113         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
1114         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
1115         always available in leading double underscore form. The C99 support is
1116         mostly missing, but it's a start.
1117         * support/regression/tests/bug-227710.c: fixed nonconforming use of
1118         reserved identifier "__data".
1119
1120 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
1121
1122         * src/mcs51/peeph.def: fixed bug 1170013
1123
1124 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
1125
1126         * device/include/mcs51reg.h: fixed bug 842007
1127
1128 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1129
1130         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
1131         last time.
1132
1133 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1134
1135         * src/port.h (struct PORT),
1136         * src/avr/ralloc.c (avr_assignRegisters),
1137         * src/avr/main.c,
1138         * src/ds390/ralloc.c (ds390_assignRegisters),
1139         * src/ds390/main.c,
1140         * src/hc08/ralloc.c (hc08_assignRegisters),
1141         * src/hc08/main.c,
1142         * src/mcs51/ralloc.c (mcs51_assignRegisters),
1143         * src/mcs51/main.c,
1144         * src/pic/ralloc.c (pic14_assignRegisters),
1145         * src/pic/main.c,
1146         * src/pic16/ralloc.c (pic16_assignRegisters),
1147         * src/pic16/main.c,
1148         * src/xa51/ralloc.c (xa51_assignRegisters),
1149         * src/xa51/main.c,
1150         * src/z80/ralloc.c (z80_assignRegisters),
1151         * src/z80/ralloc.h,
1152         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
1153         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
1154         * src/SDCCcse.h,
1155         * src/SDCCdflow.c (computeDataFlow),
1156         * src/SDCCdflow.h,
1157         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
1158         * src/SDCCloop.h,
1159         * src/SDCCcflow.c (*),
1160         * src/SDCCcflow.h,
1161         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
1162         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
1163         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
1164         immedDom() returning wrong block; probably fixes bug #1160833)
1165
1166 2005-03-20 Borut Razem <borut.razem AT siol.net>
1167
1168         * support/scripts/inc2h.pl: WIN32 port
1169
1170 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
1171
1172         * device/lib/makefile.in: added abs.c and labs.c
1173
1174 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
1175
1176         * device/include/stdint.h: added
1177         * device/lib/abs.c: added
1178         * device/lib/labs.c: added
1179         * device/include/stdlib.h: added abs() and labs() prototypes
1180         * device/lib/libsdcc.lib: added abs and labs
1181         * device/include/float.h,
1182         * device/lib/_fsmul.c,
1183         * device/lib/printf_fast.c,
1184         * device/lib/printf_tiny.c: updated comments
1185
1186 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1187
1188         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
1189         bug #1164313
1190
1191 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1192
1193         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
1194         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
1195
1196 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
1197
1198         * device/lib/printf_large.c: removed inline assembly for portability and
1199           readability. Use printf_fast if speed or size are more important.
1200         * src/pic16/gen.c: removed conditions around use of DEBUGpc
1201         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
1202
1203 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
1204
1205         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
1206         prevent compiler warning
1207
1208 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
1209
1210         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
1211         moved to level 0 and declared as static. Also they are explicit
1212         placed in access bank. This was necessery because some times they
1213         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
1214         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
1215         optimizations. Currently only compare to unsigned char is implemented,
1216         * src/pic16/gen.c: added fReturnIdx array,
1217         * (struct resolvedIfx) is moved to gen.h and made public,
1218         * (struct _G): added sregsAlloc and sregsAllocSet fields,
1219         * (aopForSym): added an optimization to directly store in stack of
1220         the operand of a SEND iCode,
1221         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
1222         but as registers instead (AOP_REG) using the fReturnIdx array,
1223         * (pic16_freeAsmop): remove the freed register from the
1224         _G.sregsAlloc field,
1225         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
1226         a compare of 'WREG',
1227         * (pic16_popGetTempRegCond): changed function prototype, now
1228         function takes also a bitVector argument v which holds the current
1229         set of registers that are allocated for stack access by aopForSym,
1230         registers allocated in aopForSym for accessing stack symbols are not
1231         any more part of the functions usedRegs field,
1232         * (genCall): some times aopOp is called for a stack variable to be
1233         send, aopForSym might perform the push, if this is true make sure
1234         that genCall doesn't push the variable twice by testing _G.resDirect,
1235         * (genFunction): changed testing for unspecified interrupt number
1236         from 256 to INTNO_UNSPEC,
1237         * modified selection scheme of frame pointer generation. Previously
1238         if function did use local registers a frame pointer was generated,
1239         now a frame pointer is generated only if function has arguments
1240         (that need PLUSW2 register access), or has stack arguments, or the
1241         compiler is not instructed to omit the frame pointer,
1242         * (genEndFunction): before restoring local registers that were saved
1243         in the function preamble, also restore the registers that *might*
1244         have been allocated for stack access,
1245         * (genRet): removed some old comments,
1246         * (genCmp, the active (RN's) version): added a call to the
1247         pic16_genCmp_special function to perform the compare with a more
1248         robust and optimized way,
1249         * (genInline): a feature has been added in inline code generation,
1250         which allows a wildcard variable substitution when writing inline
1251         assembly. Code is incomplete and experimental therefore undocumented,
1252         * (genCast): changed order of aopOp for result and right to allow
1253         aopForSym to directly load the result if possible,
1254         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
1255         perform an optimized compare on some selected special occasions,
1256         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
1257         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
1258         generate an IVT any more,
1259         * src/pic16/main.c (pic16_optionsTable): added command line option
1260         --optimize-cmp,
1261         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
1262         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
1263         macros,
1264         * src/pic16/NOTES: Raphael Neider added in list of active developers
1265         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
1266         jumptable_end to prevent bug #,
1267         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
1268         inCond and outCond fields,
1269         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
1270         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
1271         turn off register spilling,
1272         * (packRegsForOneUse): synced with other ports' versions although it
1273         is not used currently,
1274         * (pic16_packRegisters): added an optimization while reading
1275         structure bitfields, some registers may be saved (malloc code is
1276         decreased by 80 bytes)
1277
1278 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
1279
1280         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
1281         left is a bitfield, if yes, then don't optimize assignment. Perhaps
1282         this can be optimized more?
1283
1284 2005-03-10 Raphael Neider <rneider AT web.de>
1285
1286         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
1287           genNearPointerGet): (hopefully) fixed access to bitfields via
1288           pointers (p->bitN = x; and x = p->bitN; failed)
1289
1290 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
1291
1292         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
1293
1294 2005-03-09 Raphael Neider <rneider AT web.de>
1295
1296         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
1297
1298 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
1299
1300         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
1301         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
1302           (regTypeNum): set REG_BIT type if necessary
1303         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
1304         * support/regression/tests/critical.c: check bug 1144613
1305
1306 2005-03-02 Raphael Neider <rneider AT web.de>
1307
1308         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
1309
1310 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1311
1312         * src/avr/ralloc.c (serialRegAssign),
1313         * src/ds390/ralloc.c (serialRegAssign),
1314         * src/hc08/ralloc.c (serialRegAssign),
1315         * src/mcs51/ralloc.c (serialRegAssign),
1316         * src/pic/ralloc.c (serialRegAssign),
1317         * src/pic16/ralloc.c (serialRegAssign),
1318         * src/xa51/ralloc.c (serialRegAssign),
1319         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
1320
1321 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
1322
1323         * src/SDCCast.c (decorateType): fixed bug 1124787
1324
1325 2005-02-20 Hubert Sack <sack AT digiplan.de>
1326         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1327
1328         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
1329         patch #1121755
1330
1331 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1332
1333         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
1334         to keep the correct label reference count when adding/removing references
1335         to labels. A peephole file using this is appended to patch #1144962.
1336
1337 2005-02-14 Raphael Neider <rneider AT web.de>
1338
1339         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
1340         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
1341         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
1342           retrievals of result operand's value on assignment
1343
1344 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
1345
1346         * device/include/pic16/string.h: modified prototype for memccpy()
1347         to memccpy(void *, void *, char, size_t)
1348         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
1349         check whether to omit frame pointer or not,
1350         * (genInline): convert all occurences of "\n" to LF in inline
1351         assembler blocks, this helps formatting the inline text,
1352         * (pic16_loadFSR0): modified prototype,
1353         * (genNearPointerGet, genNearPointerSet): reorganization of code,
1354         removed some 8051 legacy code,
1355         * (genPackBits): enabled handling bitfields exceeding one byte in size,
1356         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
1357         before allocating temporary registers in functions,
1358
1359 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1360
1361         * support/regression/tests/bitvars.c: corrected the "fix"
1362
1363 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1364
1365         * support/regression/tests/bitvars.c,
1366         * support/regression/tests/bitwise.c,
1367         * support/regression/tests/rotate.c: "fixed" problems on Alpha
1368
1369 2005-02-10 Raphael Neider <rneider AT web.de>
1370
1371         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
1372           different size for Alpha
1373         * src/pic16/gen.c (genCmpEq) : improved compare with 0
1374
1375 2005-02-09 Raphael Neider <rneider AT web.de>
1376
1377         * src/SDCC.lex(doPragma) : save and restore warning options as well
1378           (also added new stack plus clone- and copyAndFreeSDCCERRG())
1379         * have #pragma less_pedantic set the errorlevel to WARNING
1380           (fixes #1117001)
1381         * (cloneOptimize) : fixed wrong malloc's size
1382         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
1383           facilitate correct handling of #pragma (save|restore)
1384
1385 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1386
1387         * src/mcs51/gen.c: removed non-standard C nameless struct/union
1388
1389 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
1390
1391         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
1392
1393 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
1394
1395         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
1396
1397 2005-02-02 Raphael Neider <rneider AT web.de>
1398
1399         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
1400         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
1401         * (pic16_storeForReturn): fixed to allow returning function pointers
1402         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
1403         * device/include/pic16/{stddef.h,stdbool.h}: added
1404
1405 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
1406
1407         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
1408
1409 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
1410
1411         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
1412         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
1413          appeared to be required
1414
1415 2005-01-31 Borut Razem <borut.razem AT siol.net>
1416
1417         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
1418           include/mcs51 and include/z80 directories to the package
1419
1420 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1421
1422         * src/hc08/gen.c (genFunction): fixed bug #1112752
1423
1424 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1425
1426         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
1427
1428 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1429
1430         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
1431
1432 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
1433
1434         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
1435
1436 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
1437
1438         * device/include/c8051fxxx.h: removed these 6 files
1439         * device/include/mcs51/c8051fxxx.h: added these 11 new files
1440
1441 2005-01-26 Raphael Neider <rneider AT web.de>
1442
1443         * src/pic16/gen.c (genAssign): fixed assignment from longs
1444           in codespace (were cut to three bytes)
1445         * (genDummyRead): implemented (except for CODESPACE...),
1446           fixed bug #1108575
1447         * src/pic16/glue.c (emitStatistics): beautified
1448         * device/lib/pic16/libm/Makefile: added include path
1449
1450 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1451
1452         * src/z80/gen.c (aopPut): fixed bug #1103902
1453
1454 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1455
1456         * device/lib/expf.c: fixed bug #1095792
1457
1458 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
1459
1460         * device/lib/pic16/libm: added Math library sources
1461
1462 2005-01-24 Raphael Neider <rneider AT web.de>
1463
1464         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
1465           to enable upcast to pCodeOpReg2 (there is no type tag to
1466           differenciate the two and pic16_popGet2p cast into PCOR2)
1467         * src/pic16/main.c (_process_pragma): fixed another malloc bug
1468           (sizeof(sectNames) changed to sizeof(sectName))
1469           Both patches fix segfaults under MinGW.
1470
1471 2005-01-23 Raphael Neider <rneider AT web.de>
1472
1473         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
1474           Safe_[mc]?alloc()'ed variables
1475         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
1476           of (byte sized) temporaries (assign them to WREG for now)
1477         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
1478           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
1479           this might fix SIGSEGVs on MinGW...
1480         * src/SDCCopt.c (killDeadCode): restored original behaviour
1481           (volatile operands might get thrown away though)
1482
1483 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
1484
1485         * src/pic16/gen.c: fixed bug #1106975,
1486         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
1487         pointer update, INTCON is saved, global interrupts are disabled and
1488         restored after updateing TOS.
1489         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
1490         * added function attribute 'shadowregs' to take advantage of shadow
1491         registers,
1492         * added function attribute 'wparam' as an alternative to the wparam
1493         pragma,
1494         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
1495         user declares a non-ISR function as 'shadowregs',
1496         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
1497
1498 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
1499
1500         * .version: bumped version number to 2.4.8
1501         * device/lib/pic16/pics.all: list of PIC18F devices supported by
1502         pic16 port,
1503         * device/lib/pic16/libio/i2c/: I2C module support library,
1504         * device/include/pic16/i2c.h: I2C support library header,
1505         * device/lib/pic16/libc/stdio/: standard IO support sources,
1506         * (printf_small.c): printf_small() source, supports float print,
1507         * (printf_tiny.c): printf_tiny() source, does not support floats,
1508         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
1509         enable global optimizations for entire library source, other
1510         Makefiles in the source tree are also modified to reflect this,
1511         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
1512         function,
1513         * doc/sdccman.lyx: updated to reflect new changes,
1514         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
1515         sym->onStack if-case,
1516         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
1517         sbit, idata, _idata, xdata, _xdata,
1518         * added pragma library, to link an external library, (see doc),
1519         * removed command line options, --pomit-config-words, --pomit-ivt,
1520         --pleave-reset-vector,
1521         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
1522         when calling assembler to reflect memory model used, also define
1523         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
1524         reflect stack model used,
1525         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
1526         on stack return NULL,
1527
1528 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1529
1530         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
1531           of the operands is volatile. Fixes #1020220
1532
1533 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1534
1535         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
1536         * (OptimizeRegUsage): make sure that there is really no other flow where
1537           the first pCode is used
1538
1539 2005-01-22 Raphael Neider <rneider AT web.de>
1540
1541         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
1542           to fix #1106967 (pCode->seq are not set up correctly)
1543
1544 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1545
1546         * src/SDCCglue.c (glue): make sure code area is declared before the
1547         static initialization area.
1548
1549 2005-01-21 Raphael Neider <rneider AT web.de>
1550
1551         * device/lib/Makefile.in: fixed test for pic16 install dir
1552         * device/lib/pic16/*/Makefile*: modified compile flags to enable
1553           optimizations
1554         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
1555           added --optimize-goto compiler switch and pragma wparam documentation
1556         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
1557         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
1558           and PRODH closing bug #1071770 (peephole optimizer)
1559
1560 2005-01-19 Raphael Neider <rneider AT web.de>
1561
1562         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
1563           cmdLine buffers (used when calling sdcpp...) are large enough
1564           (MAX_PATH=256 truncates arguments leading to system halts when
1565           used in MinGW...)
1566         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
1567         * (genUminus): rewritten to for efficiency
1568         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
1569           used uninitialized in some cases)
1570         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
1571           copy the third byte from the int -- now assumes 0x80 (data memory)
1572         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
1573           operands (genAddLit expects the iCode's operands to swapped as
1574           well), fixed leftover bytes (crashed for short left operands)
1575         * (pic16_genMinusDec): performance improvements, removed false
1576           PIC14 emitSKPNCs
1577         * (pic16_genMinus): fixed to cope with differently sized operands
1578         * src/pic16/glue.c (pic16_glue): added new banksel optimization
1579           for --obanksel > 1
1580         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
1581         * src/pic16/graph.[ch]: implementation of directed graphs, used by
1582           new banksel optimization
1583         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
1584           analysis for temporary registers (segfaults...)
1585         * src/pic16/peeph.def: added rule
1586
1587 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
1588
1589         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
1590         which converts a float number to its ASCII representation
1591         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
1592         functions to convert the fractional and integer part of a float to ASCII,
1593         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
1594         realloc.c): added _MALLOC_SPEC to explicit place variables in data
1595         ram
1596         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
1597         _STATMEM macros,
1598         * device/include/pic16/adc.h: added GPL info,
1599         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
1600         a pCodeOp as tested operand,
1601         * (genNearPointerGet): optimized bit testing, does not use
1602         intermediate register for bit value, test directly instead with
1603         BTFSS, BTFSC, works only for single bits,
1604         * (genpic16Code): dump the name of the iCode in the asm,
1605         * src/pic16/ralloc.c (decodeOp): removed static declaration and
1606         renamed to pic16_decodeOp,
1607         * (serialRegAssign): do not allocate a temporary register for iCode
1608         sequences that test a single bit for 1/0
1609
1610 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
1611
1612         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
1613         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
1614         access stack and frame pointers. They are initially assigned to
1615         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
1616         accessing SFRs. Updated all occurences of modification of stack or
1617         frame pointer in gen.c and pcode.c,
1618         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
1619         assigning of a literal value to pointers,
1620         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
1621         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
1622         selected
1623
1624 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
1625
1626         * doc/sdccman.lyx: update documentation about stack pragma, added
1627         some info for stack memory models
1628
1629 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1630
1631         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
1632
1633 2005-01-08 Raphael Neider <rneider AT web.de>
1634
1635         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
1636           udata sections to fix bug #1097823
1637
1638 2005-01-05 Raphael Neider <rneider AT web.de>
1639
1640         * src/pic16/gen.c (genGenericShift): added handling of differently
1641           sized left operand and result
1642
1643 2005-01-04 Raphael Neider <rneider AT web.de>
1644
1645         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
1646         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
1647           to hold the condition bit)
1648         * added new version of genCmp (old code available via #define)
1649         * added new version of genShiftLeft/genShiftRight in a generic
1650           way, now supports shifting by negative values
1651         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
1652           shiftCount (expected by genGenericShift)
1653         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
1654         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
1655           dump
1656         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
1657           is an invalid literal too...)
1658
1659 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
1660
1661         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
1662         from Raphael Neider,
1663         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
1664         for 8-bit literals. This fixes some literal operands which are sign
1665         extended to 16-bits ints when instruction needs only 8-bits.
1666
1667 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
1668
1669         * device/lib/logf.c: added mcs51 assembly version
1670         * device/lib/expf.c: added mcs51 assembly version
1671         * device/lib/_logexpf.c: new shared asm code for expf and logf
1672         * device/include/math.h: add defines for assembly math library
1673         * device/lib/Makefile.in: build new _logexpf.c
1674         * device/lib/libfloat.lib: use new _logexpf.c
1675
1676 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
1677
1678         * src/pic/device.c
1679         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
1680           device types which have less than 0x7f registers.
1681
1682 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
1683
1684         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
1685
1686 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
1687
1688         * device/lib/printf_fast.c: only build on supported arch.
1689         * device/lib/printf_tiny.c: only build on supported arch.
1690         * device/lib/printf_fast_f.c: only build if asm float lib
1691         * device/lib/_fsget1arg.c: only build if asm float lib
1692         * device/lib/_fsget2args.c: only build if asm float lib
1693         * device/lib/_fsnormalize.c: only build if asm float lib
1694         * device/lib/_fsreturnval.c: only build if asm float lib
1695         * device/lib/_fsrshift.c: only build if asm float lib
1696         * device/lib/_fsswapargs.c: only build if asm float lib
1697         * device/include/stdio.h: don't provide print_fast,
1698           print_fast_f, print_tiny prototypes if --xstack used
1699
1700 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
1701
1702         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
1703         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
1704           to the SOURCES
1705
1706 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
1707
1708         * device/lib/printf_fast_f.c: same as printf_fast, but
1709           with floating point enabled
1710         * device/lib/printf_fast.c: minor tweaks
1711         * device/include/stdio.h: add printf_fast_f
1712
1713 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
1714
1715         * src/SDCCmain.c: make --float-reent default for mcs51
1716         * device/lib/_fsadd.c: added mcs51 assembly version
1717         * device/lib/_fssub.c: added mcs51 assembly version
1718         * device/lib/_fsmul.c: added mcs51 assembly version
1719         * device/lib/_fsdiv.c: added mcs51 assembly version
1720         * device/lib/_fseq.c: added mcs51 assembly version
1721         * device/lib/_fsneq.c: added mcs51 assembly version
1722         * device/lib/_fsgt.c: added mcs51 assembly version
1723         * device/lib/_fslt.c: added mcs51 assembly version
1724         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
1725         * device/lib/Makefile.in: add _fscmp to build
1726         * device/lib/libfloat.lib: add _fscmp to build
1727
1728 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
1729
1730         * device/lib/_fs2slong.c: added mcs51 assembly version
1731         * device/lib/_fs2sint.c: added mcs51 assembly version
1732         * device/lib/_fs2schar.c: added mcs51 assembly version
1733         * device/lib/_fs2ulong.c: added mcs51 assembly version
1734         * device/lib/_fs2uint.c: added mcs51 assembly version
1735         * device/lib/_fs2uchar.c: added mcs51 assembly version
1736         * device/lib/_slong2fs.c: added mcs51 assembly version
1737         * device/lib/_sint2fs.c: added mcs51 assembly version
1738         * device/lib/_schar2fs.c: added mcs51 assembly version
1739         * device/lib/_ulong2fs.c: added mcs51 assembly version
1740         * device/lib/_uint2fs.c: added mcs51 assembly version
1741         * device/lib/_uchar2fs.c: added mcs51 assembly version
1742         * device/include/float.h: added #define to select asm vs c
1743
1744 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
1745
1746         * device/lib/printf_fast.c: improvements to float output
1747         * device/include/float.h: add defines for assembly float library
1748         * device/lib/_fsget1arg.c: receive 1 float arg
1749         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
1750         * device/lib/_fsnormalize.c: normalize a float
1751         * device/lib/_fsreturnval.c: return float, various helper routines
1752         * device/lib/_fsrshift.c: right shift a float's mantissa
1753         * device/lib/_fsswapargs.c: swap 2 floats
1754         * device/lib/Makefile.in: build these 6 new files for mcs51
1755         * device/lib/libfloat.lib: add these 6 files to the library
1756
1757 2004-12-26 Borut Razem <borut.razem AT siol.net>
1758
1759         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
1760           built by gcc 3.4.2
1761
1762 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
1763
1764         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
1765           and fully reentrant and register bank neutral.
1766         * device/lib/printf_fast.c: added float (not enabled by default),
1767           added compact/slower integer (also not enabled by default),
1768           improved size/speed of fast integer code, other minor changes
1769         * device/include/stdio.h, device/lib/Makefile.in,
1770           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
1771
1772 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
1773
1774         * src/pic16/pcode.c: declaring variables other than at the start of a
1775           block is not supported in C by VC6.
1776
1777 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
1778
1779         * applied a previous patch from Raphael Neider that wasn't included
1780         in the previous commits, which fixes infinite loops within jumptable
1781         improvements,
1782         * made some fixes that previous patches introduced
1783
1784 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
1785
1786         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
1787         that fixes an issue with AOP_PCODE asmop's offset,
1788         * (pic16_popCopyReg): update instance field too,
1789         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
1790         function of pic port,
1791         * (genCmp, genAnd, genAssign),
1792         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
1793
1794 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
1795
1796         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
1797         variables initial values to idata section,
1798         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
1799         variables in some functions. This utilizes parmBytes field of iCode
1800         structure to hold the offset of the variable in stack. (might be
1801         able to use the stack field too?)
1802         * applied patch from Raphael Neider # ### , # ###
1803         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
1804         variable initial values in idata section,
1805         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
1806         for static variables with initial value
1807         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
1808         applied fix in while loop from Raphael Neider.
1809
1810 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
1811
1812         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
1813         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
1814         * src/ds390/ralloc.c (serialRegAssign): spill bits
1815         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
1816         * support/Util/SDCCerr.c,
1817         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
1818         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
1819         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
1820
1821 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
1822
1823         * device/include/sdcc-lib.h: inserted LGPL, added includes
1824           asm/ds390/features.h and asm/mcs51/features.h
1825         * device/include/asm/default/features.h,
1826         * device/include/asm/gbz80/features.h,
1827         * device/include/asm/z80/features.h: added empty _AUTOMEM
1828           and _STATMEM
1829         * device/include/asm/ds390/features.h,
1830         * device/include/asm/mcs51/features.h: added files with defines for
1831           _AUTOMEM and _STATMEM indicating automatic and static storage class
1832         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
1833         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
1834         * src/SDCCicode.c (geniCodeCast),
1835         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
1836         * src/SDCCloop.c (loopInduction): removed unused variable lr
1837         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
1838           to convertToFcall to include char modulo (RFE 1065037), added check
1839           if left operand is unsigned and use abs of literal value
1840         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
1841           as it doesn't work after conversion from peephole.def to peephole.rul
1842         * src/mcs51/gen.c (toBoolean): added check for size,
1843           (genModOneByte): optimized code for signed char modulo a literal
1844           power of 2 (thanks to Hubert Sack),
1845           (genRRC): removed unnecessary "clr c",
1846           (genRLC): replaced "add a,acc" with cheaper "rlc a"
1847         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
1848           jump optimization,
1849           swapped rules 256.c and 256.d,
1850           extended 256.d by using new multiple checks (thanks Erik),
1851           added rules 256.e and 256.f,
1852           updated rule 261.a and 261.b to new generated code
1853         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
1854
1855 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1856
1857         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
1858           induction related bugs, including first part of bug #1074377
1859
1860 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
1861
1862         * applied patch from bug-report #1076292,
1863         * applied patches for genAnd and Goto-optimizations for Raphael
1864         Neider,
1865         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
1866         dump a less iCode information,
1867         * src/pic16/device.h (pic16_options_t): added field debgen,
1868         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
1869         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
1870         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
1871         puclic,
1872         * (various functions): added macros FENTRY and FENTRY2 to functions,
1873         to emit function prologue,
1874         * (various functions): fixed indentation,
1875         * (genNearPointerGet): fixed loading of FSR0,
1876         * (genPackBits): applied patch from Raphael Neider to fix updating
1877         of FSR0 and touching only the modified bits,
1878         * src/pic16/genarith.c (various functions): added macros FENTRY to
1879         emit function prologue in comments,
1880         * src/pic16/pcode.h: added functions debugf2, debugf3,
1881         * src/pic16/ralloc.c: partial fix for packForPush caused
1882         segmentation fault,
1883
1884 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1885
1886         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
1887           <stsp AT users.sourceforge.net> with reversed byte order
1888         * support/regression/tests/rotate.c: added (ds390 skips some tests)
1889
1890 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1891
1892         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
1893           bug #1074377
1894         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
1895         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
1896
1897 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
1898
1899         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
1900
1901 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1902
1903         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
1904           conditions,
1905           (setFromConditionArgs): friendly operand parser for peephole rules,
1906           (operandBaseName, operandsNotRelated): new peephole condition
1907           "operandsNotRelated" -- similar to "operandsNotSame", but takes
1908           architecture specific register naming into account, handles n-way
1909           comparisons, and supports quoted literals
1910         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
1911
1912 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1913
1914         * src/mcs51/peeph.def: fixed bug #1076940
1915
1916 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
1917
1918         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
1919
1920 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1921
1922         Adding support for replacing ljmps with sjmps in jumptables
1923         generated for switch statements. For now you need to set the
1924         environment variable SDCC_SJMP_JUMPTABLE to enable this.
1925         Now 4 algorithms for mcs51 jumptable generation are used:
1926         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
1927         addresses loaded pc-relative for up to 112 cases and stack-pushing
1928         target addresses loaded with offset from dptr for up to 256 cases.
1929
1930         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
1931         * src/mcs51/main.c: adapted constants for switch table generation
1932         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
1933
1934 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
1935
1936         * device/lib/printf_large.c (_print_format): fixed bug 1073386
1937         * support/regression/tests/bug1057979.c: added test for bug 1073386
1938
1939 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
1940
1941         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
1942         compilers
1943
1944 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
1945
1946         * src/pic16/device.h,
1947         * src/pic16/genarith.c,
1948         * src/pic16/glue.c,
1949         * src/pic16/main.c,
1950         * src/pic16/pcode.c: applied patches #1068154 and #1070213
1951
1952 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
1953
1954         Large cummulative patch for pic16 port.
1955         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
1956         to call when a stack overflow occurs,
1957         * (malloc.h): added CVS Id tag,
1958         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
1959         variable,
1960         * added libc directory. The current version of LibC contains string
1961         functions, ctype functions and macros and some functions of the
1962         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
1963         be extensively tested in the future. Standard disclaimer here.
1964         Library is not automatically build yet. But one can build it by
1965         invoking 'make' inside the libc directory.
1966         * added ADC library under libio. Preliminary version yet.
1967
1968         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
1969         * src/pic16/gen.c (aopForRemat): asmop size is filled by
1970         aopForRemat() now and not by pic16_aopOp(),
1971         * (pic16_popGetTempReg): removed warning messgae when allocating
1972         temporary registers, its a buggy feature and will be removed,
1973         * (pic16_popGet): set register instance field in AOP_CRY,
1974         * (pic16_outBitC): fixed for results in size greater than 1,
1975         * (genUminusFloat): fixed for pic16, ported code from mcs51,
1976         * (pic16_storeForReturn): optimized return of 0,
1977         * (genCmp): experimental code for new genCmp which uses PIC18's
1978         special compare&skip instructions. Initial tests fail some times
1979         with variables grater than 1 byte in size, so new code is disabled,
1980         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
1981         a single bit,
1982         * (genCast): began a fix to optimize the casting of a bit to another
1983         bit, now assigning a bitfield to another bitfield will fail, sorry,
1984         * src/pic16/main.c: disabled the use of lr-support feature,
1985         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
1986         * added some function prototypes, added function _debugf prototype,
1987         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
1988         bits with offset (case PO_GPR_BIT),
1989         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
1990         command line,
1991         * (isBankInstruction): modified to return 0 for no banking instruction,
1992         and 1 for banking instruction,
1993         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
1994         caused stop processing pCodes after a inline assembly block,
1995         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
1996         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
1997         registers when it shouldn't,
1998         * src/pic16/ralloc.c (allocReg): add preliminary support for
1999         supporting a limited set of temporary registers,
2000
2001 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2002
2003         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
2004           genDataPointerSet): ensure assignments always copy in MSB to LSB
2005           order,
2006           (loadRegFromAop): recognize CLRH optimization,
2007           (genFunction): optimize RECEIVE iCodes in reentrant functions
2008
2009 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2010
2011         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
2012           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
2013           selected.
2014         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
2015         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
2016           contiguous with data
2017
2018 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2019
2020         * device/lib/_gptrget.c (_gptrget),
2021         * device/lib/_gptrgetc.c (_gptrgetc),
2022         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
2023           instead of sjmp to ret
2024         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
2025           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
2026
2027 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
2028
2029         * .version: bumped version to 2.4.7
2030         * device/lib/_gptrget.c (_gptrget): is now _naked
2031         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
2032         * device/lib/_gptrput.c (_gptrput): is now _naked
2033         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
2034           (createFunction): fixed xstack
2035         * src/SDCCglue.c (emitMaps): set allocation required for bit area
2036         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
2037           or bit either,
2038           (geniCodeCritical): store original interrupt state in an iTemp bit
2039           var unless stack-auto
2040         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
2041         * src/SDCCmain.c (setIncludePath): added include/target to search path
2042         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
2043         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
2044           prototype,
2045           (processFuncArgs): put bit vars in bit area
2046         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
2047           unsaveRBank): fixed xstack,
2048           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
2049           (genFunction, genEndFunction): fixed xstack,
2050           (genAssign): optimization don't walk backwards through mem
2051         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
2052         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
2053         * support/regression/Makefile: also make library (for stack-auto) when
2054           making "all" and added "test-mcs51-xstack-auto"
2055         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
2056         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
2057         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
2058         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
2059         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
2060           make-library by MAKE_LIBRARY
2061         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
2062           regression tests for xstack
2063         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
2064         * support/regression/tests/critical.c: test for critical on mcs51
2065
2066 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2067
2068         * support/regression/ports/ucz80/spec.mk: use include and lib files from
2069           built version of sdcc instead of installed version
2070
2071 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
2072
2073         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
2074         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
2075           vprintf.c now
2076         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
2077         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
2078           WARNING: remove device/lib/build/z80/printf.o by hand when
2079           updating from previous build!
2080         * device/lib/z80/printf.c: updated comment
2081         * support/regression/tests/bug1057979.c: test all ports now
2082         * support/regression/tests/bug1065458.c: file added
2083
2084 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2085
2086         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
2087           *_start and *_end symbols for static functions
2088
2089 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
2090
2091         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
2092           and search crt0.o in all library paths,
2093           (setIncludePath): proper handling of --nostdinc,
2094           (setLibPath): proper handling of --nostdlib
2095         * support/regression/Makefile,
2096         * support/regression/ports/ds390/spec.mk,
2097         * support/regression/ports/gbz80/spec.mk,
2098         * support/regression/ports/hc08/spec.mk,
2099         * support/regression/ports/mcs51/spec.mk,
2100         * support/regression/ports/mcs51-large/spec.mk,
2101         * support/regression/ports/mcs51-stack-auto/spec.mk,
2102         * support/regression/ports/z80/spec.mk: use include and lib files from
2103           built version of sdcc instead of installed version
2104         * doc/sdccman.lyx: fixed typo in --nostdinc
2105
2106 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
2107
2108         * src/pic/pcode.c,
2109         * src/pic/device.c,
2110         * src/pic/ralloc.c,
2111         * src/pic/gen.c : added support to generate code for struct bit fields.
2112
2113 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
2114
2115         * as/xa51/xa_version.h,
2116         * device/include/errno.h,
2117         * device/include/regc515c.h,
2118         * device/lib/_itoa.c,
2119         * device/lib/_ltoa.c,
2120         * device/lib/ser_ir_cts_rts.c,
2121         * sim/ucsim/xa.src/glob.cc,
2122         * sim/ucsim/xa.src/inst_gen.cc,
2123         * sim/ucsim/xa.src/xa_bit.cc,
2124         * sim/ucsim/xa.src/xa_sfr.cc,
2125         * sim/ucsim/z80.src/inst_dd.cc,
2126         * sim/ucsim/z80.src/inst_fdcb.cc,
2127         * support/scripts/keil2sdcc.pl,
2128         * src/pic16/pic16.dsp,
2129         * src/pic16/pic16a.dsp: corrected cvs line endings
2130         * device/lib/printf_large.c: fixed bug 1057979
2131         * src/pic16/gen.c: fixed non-C standard code
2132         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
2133         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
2134         * support/regression/ports/mcs51/support.c: reload T1 asap
2135         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
2136           pdata use and clear idata startup behaviour
2137         * support/regression/tests/bug1057979.c: added
2138
2139 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
2140
2141         * device/examples/ds390/ow390/ad26.h,
2142         * device/examples/ds390/ow390/cnt1d.h,
2143         * device/examples/ds390/ow390/crcutil.c,
2144         * device/examples/ds390/ow390/ownet.h,
2145         * device/examples/ds390/ow390/owsesu.c,
2146         * device/examples/ds390/ow390/swt12.h,
2147         * device/examples/ds390/ow390/swtoper.c,
2148         * device/examples/ds390/ow390/temp10.h,
2149         * device/examples/ds390/ow390/thermodl.c,
2150         * device/examples/ds390/tinitalk/tinitalk.dsp,
2151         * device/examples/ds390/tinitalk/tinitalk.dsw,
2152         * device/examples/mcs51/clock/hw.h,
2153         * device/examples/mcs51/simple2/go.bat,
2154         * device/examples/serialcomm/windows/serial.h,
2155         * device/examples/xa51/dummy.c,
2156         * device/examples/xa51/hello.c,
2157         * device/include/80c51xa.h,
2158         * device/include/at89x051.h: corrected cvs line endings
2159
2160 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
2161
2162         * src/pic16/main.c (options): added command line --gstack, to trace
2163         stack over/under flows,
2164         * added pragma 'wparam' to allow passing first byte of function
2165         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
2166         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
2167         call to __gstack_test function and sets up the symbol as extern,
2168         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
2169         * popaop): added call to pic16_testStackOverflow,
2170         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
2171         wparamList list,
2172         * (genCall, genPcall): now all parameters are passed via stack
2173         except in functions that are pass to wparam pragma in which WREG is
2174         used too,
2175         * (genPcall): REENTRANT flag is checked to see if variable prototype
2176         contains reentrant keyword, don't call a non-reentrant function, via
2177         a reentrant function pointer or vice versa, functions are never
2178         passed via WREG,
2179         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
2180         D.Winkler,
2181         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
2182         SIGSEGV when accessing a NULL register stucture,
2183         * (pic16_printGPointerType): modified to handle UPPER modifier for
2184         function initializers, changed prototype of function to simpler one,
2185         * (pic16_printIvalFuncPtr): check to see if function is already
2186         added in externs list,
2187         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
2188         optimized a move from W to SFR with a move to the same register
2189         later after a CALL,
2190         * device/lib/pic16/debug: NEW directory, contains debug features
2191         which are enabled when linking with libdebug.lib, currently command
2192         line option --gstack enables stack pointer tracing for over/under
2193         flow, corresponding sources are in debug/gstack
2194
2195 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
2196
2197         * doc/sdccman.lyx: updated SDCC version,
2198         * (PIC16 port): update list of command line options,
2199         * src/pic16/device.h (structure pic16_options_t): added field gstack
2200         to enable stack overflow tracing on push/pops,
2201         * src/pic16/device.c (statistics structure): added statistics
2202         structure,
2203         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
2204         pic16_dump_int_registers): increase statistics counters for each
2205         * variable which is encountered
2206         * (pic16_dump_usection): emit each .udata variable to its own udata
2207         section,
2208         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
2209         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
2210         parameters via stack, otherwise use old scheme,
2211         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
2212         assembler output file,
2213         * src/pic16/main.c: added command line options --gstack to enable
2214         push/pop tracing for stack overflow,
2215         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
2216         instructions): added size of each instruction,
2217         * (pic16_countInstruction): estimate size of instructions in
2218         the_pFile list, inline assembly blocks are not counted,
2219         * (pic16_FixRegisterBanking): trace previous register usage, when
2220         banksel optimizations is greater than 0, don't emit a redudant
2221         banksel directive,
2222
2223 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
2224
2225         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
2226         * src/pic16/ralloc.c : applied same fix for pic16.
2227         * src/pic/gen.c : tidied it up a little.
2228
2229 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2230
2231         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
2232         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
2233
2234 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2235
2236         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
2237
2238 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2239
2240         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
2241         non-reentrant function __modsint in the interrupt function (thus
2242         corrupting math operations during serial I/O)
2243         * device/lib/ser_ir.c: as above, changed buffersize
2244         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
2245         256.c,d for zeroing
2246         * doc/Makefile: added option -t for rsync
2247
2248 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2249
2250         * src/SDCCast.h (struct ast),
2251         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
2252
2253 2004-10-20 Borut Razem <borut.razem AT siol.net>
2254
2255         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
2256         package
2257
2258 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
2259
2260         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
2261         makefile targets,
2262         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
2263         support functions to replace long sequences of MOVFF's from access
2264         bank registers to stack and vice versa,
2265         * src/pic16/device.h: added new field opt_flags, where optimization
2266         flags can be set to enable certain features,
2267         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
2268         * pBlock, (genFunction, genEndFunction): surroung loop for
2269         saving/loading used registers in stack with PC_INFO pCodes,
2270         INF_LREGS. Code in between can then be optimized by pCode optimizer
2271         to support function calls,
2272         * (genDataPointerSet): fixed bug which loaded float fields in
2273         structures with corrupt data,
2274         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
2275         in a standard way debug info on stderr. Feature used for developing
2276         and debugging only,
2277         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
2278         obsolete chunks of code,
2279         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
2280         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
2281         * pic16/src/pcode.c (pic16_newpCodeInfo,
2282         * (pic16_newpCodeOpLocalRegs),
2283         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
2284         feature,
2285         * (pic16_pCodeConstString): printing of the initial value of a
2286         symbol as a comment is inhibited since parsing was already done by
2287         copyStr and output is corrupt,
2288         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
2289
2290 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2291
2292         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
2293
2294 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
2295
2296         * as/mcs51/lkarea.c: removed old K&R style,
2297           (lnksect): changed check on boundary error,
2298           (lnksect2): changed check on boundary error,
2299           (lnksect2): extend XSTK to end of page if size = 1
2300         * as/mcs51/lkmain.c: removed old K&R style,
2301           (Areas51): create l_IRAM symbol
2302         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
2303         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
2304           model-mcs51-stack-auto, added model-mcs51-xstack-auto
2305         * device/lib/_mullong.c: added version to be compiled with xstack
2306         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
2307         * device/lib/mcs51/crtxclear.asm: clear pdata as well
2308         * device/lib/mcs51/crtxstack.asm: fixed comment
2309         * src/SDCCglue.c: maxInterrupts defaults to 0,
2310           (emitMaps): added pdata,
2311           (createInterruptVect): (re)moved default,
2312           (glue): added pdata,
2313           (glue): moved __start__xstack to XSTK with default size 1
2314         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
2315           and options.float_rent when options.stackAuto is set,
2316           (linkEdit): only write XDATA_NAME if provided on command line
2317         * src/SDCCmem.h,
2318         * src/SDCCmem.c: added pdata
2319         * src/port.h: added pdata_name to PORT
2320         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
2321           (saveRegisters, unsaveRegisters): removed usage of B,
2322           (genMinus): fixed accumulator clash,
2323           (genJumpTab): added comment, this needs another look
2324         * src/mcs51/gen.c: added check for "B in use" paranoia,
2325           added pushB() and popB()
2326         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
2327           chance
2328         * src/avr/main.c,
2329         * src/ds390/main.c,
2330         * src/hc08/main.c,
2331         * src/mcs51/main.c,
2332         * src/pic/main.c,
2333         * src/pic16/main.c,
2334         * src/xa51/main.c,
2335         * src/z80/main.c: (reset_regparms) made void parameter explicit and
2336           added PSEG (PAG,XDATA) or NULL to port specifier
2337         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
2338         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
2339           (_mcs51_genInitStartup): removed __start__xstack equ,
2340           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
2341         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
2342         * src/z80/gen.c (_rleAppend): fixed warnings
2343         * support/regression/tests/zeropad.c: added pdata test
2344         * .version: bumped to 2.4.6
2345
2346 2004-10-17 Borut Razem <borut.razem AT siol.net>
2347
2348         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
2349         as a part of nightly build
2350
2351 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
2352
2353         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
2354         WREG holds the first byte function parameters,
2355         * (aopForSym): take special case for symbols which are in FARSPACE
2356         but in CODESPACE too,
2357         * (assignResultValue): modified to take into account _G.useWreg,
2358         * (genCall): don't use wreg for parameter passing when function is
2359         declared as reentrant, too, added optimization INCF to stack
2360         pointer when stack parameter count is 1,
2361         * (genFunction, genEndFunction): refurnished and fixed to not using
2362         wreg for passing parameters when function has varargs or is
2363         reentrant, fixed bug with symbol name compare for generating
2364         functions in absolute address,
2365         * (pic16_storeForReturn): refurnished,
2366         * (genCmp): began writing a new version of the function, not ready
2367         yet, therefore it is disabled,
2368         * (genAssign): do not read code memory when assigning a function to
2369         a pointer function,
2370         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
2371         array of characters, not pointer,
2372         * (pic16initialComments): in debug mode emit an .ident directive for
2373         the assembler,
2374         * (_process_pragma): emit a new warning type (internal to pic16)
2375         when setting stack to default length, emit a similar warning when
2376         placing a function at absolute address and address is not word aligned
2377         * (_pic16_parseOptions): added 'return TRUE' statement,
2378         * (_pic16_linkEdit): if compiling a source, then add the source's
2379         file object, first in the list of objects to link,
2380
2381 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
2382
2383         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
2384         * src/pic/main.c : removed VC warning.
2385         * src/pic/gen.c : changed comment.
2386
2387 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
2388
2389         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
2390         reference to a deprecated symbol _GPTRREG was causing failure to
2391         link. Thanks G. M. Gallant for the info.
2392
2393 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
2394
2395         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
2396         comments for Bugs item #954788.
2397
2398 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
2399
2400         * src/pic16/device.c (pic16_dump_gsection,
2401         * pic16_groupRegistersInSection): handle symbols declared to be in
2402         access bank differently,
2403         * src/pic16/gen.c (struct _G): added field resDirect,
2404         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
2405         send values read from stack directly to result and don't allocate
2406         temporary values,
2407         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
2408         same registers,
2409         * (pic16_sameRegsOfs): NEW,
2410         * (freeAsmop): if _G.resDirect is set then do not mark registers as
2411         free because they were not allocated from temporary pool,
2412         * pic16_popRegFromString): workaround to fix a problem with
2413         allocating variables twice or never,
2414         * (genGenPointerGet): using PRODL instead of FSR0H,
2415         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
2416         instead of FSR0H,
2417         * (genAssign): take advantage of the _G.resDirect flag,
2418         * (genCast): around line 11844, use mov2f instead of directly
2419         MOVFF'ing between operands to account for literal values,
2420         * src/pic16/genutils.c: some new debug functions for gpsim have been
2421         added,
2422         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
2423         float with integer part only,
2424         * src/pic16/main.c (_process_pragma): handle pragma udata access to
2425         place variables in access bank
2426         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
2427         updated sources to reflect recent changes in gen.c
2428
2429 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
2430
2431         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
2432         sources that searched for headers in installation path, now the
2433         device/include/pic16 is used,
2434         * src/pic16/glue.c (pic16glue),
2435         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
2436         .line directives if not in debug mode, this suppresses assembler's
2437         warnings for ignored directives
2438
2439 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
2440
2441         * src/port.h: made reset_regparms prototype void parameter explicit.
2442         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
2443         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
2444         * doc/sdccman.lyx: documented warning disabling and how to use
2445           printf_large to make it print floats.
2446         * device/include/stdbool.h: NEW
2447         * device/lib/_atof.c,
2448         * device/lib/_divuint.c,
2449         * device/lib/_divulong.c,
2450         * device/lib/expf.c,
2451         * device/lib/printf_large.c,
2452         * device/lib/sincosf.c,
2453         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
2454         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
2455           a completely reentrant lib.
2456
2457 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
2458
2459         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
2460         * device/include/pic16/stdio.h: fixed bug with colon
2461
2462 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
2463
2464         * device/include/pic16/stdio.h,
2465         * device/include/pic16/stdlib.h,
2466         * device/include/pic16/math.h: NEW
2467         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
2468         declared as _naked to reduce overhead
2469         * device/lib/Makefile.in (target port-specific-objects-pic16):
2470         changed * to *.* so to ignore the CVS directory,
2471         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
2472         stacked variables back in stack,
2473         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
2474         corruption
2475
2476 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
2477
2478         * .version: bumped version number to 2.4.5
2479         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
2480         * support/Util/SDCCerr.c (messages structure): added entry for
2481         W_POSSBUG2
2482
2483         Large cumulative patch for pic16 port and libraries.
2484         * device/include/pic16/sdcc-lib.h,
2485         * device/include/pic16/stdarg.h,
2486         * device/include/asm/pic16/features.h,
2487         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
2488         * device/include/pic16/float.h: changes reentrant keyword with
2489         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
2490         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
2491         updated target build-libraries to include objects from gptr,
2492         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
2493         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
2494         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
2495         all function headings,
2496         * src/SDCCmain.c: added global parameter userIncDirsSet,
2497         * (parseCmdLine): when option -I is encountered add directory to
2498         userIncDirsSet too,
2499         * src/version.awk: added space between control and long,
2500         * src/pic16/NOTES: added some notes for the port,
2501         * src/pic16/gen.c: added prototype for mov2fp function,
2502         * (fReturnpic16[]): properly named return value registers,
2503         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
2504         * (aopForSym): added code to handle symbols with onStack flag set,
2505         symbols onStack are allocated PTRSIZE bytes,
2506         * (aopFreeAsmop): handles special case where asmops are stack objects,
2507         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
2508         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
2509         added argument lock to trace flaws in allocating temporary registers
2510         when developing port,
2511         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
2512         * (pic16_popRegFromString): reenabled allocating a direct register
2513         from string,
2514         * (assignResultValue): various beautifications,
2515         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
2516         referenced function argument,
2517         * (genIpush): reenabled to allow stacked arguments, handles only
2518         ic->parmPush iCodes,
2519         * (genCall, genPcall): major changes to allow for variable argument
2520         functions, fixed a bug with falsely restoring stack pointer after
2521         returning from call,
2522         * (genFunction): pending code for critical function,
2523         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
2524         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
2525         * (genNearPointerGet): fixed bug with indirect reading, was always
2526         reading from INDF0
2527         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
2528         pointers,
2529         * (genAddrOf): rewrote code to take address of a stacked function parameter
2530         * (genCast): fixed casting to generic pointer type,
2531         * src/pic16/gen.h: added AOP_STA,
2532         * (struct asmop): added field stk,
2533         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
2534         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
2535         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
2536         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
2537         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
2538         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
2539         generic pointers,
2540         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
2541         and library paths,
2542         * (pic16_port structure): generic pointer size is set to 3,
2543         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
2544         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
2545         compiler warning,
2546         * src/pic16/ralloc.c (allocReg): prevent allocating register when
2547         operand is an iTemp,
2548
2549 2004-09-24 Martin Helmling <mh AT octo-soft.de>
2550
2551         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
2552         * debugger/mcs51/simi.c: addapt new syntax of s51
2553
2554 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
2555
2556         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
2557         * src/pic16/pcode.c: commented out some calls to free() in order to
2558         fix bug #989576,
2559
2560 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2561
2562         * src/SDCCicode.h,
2563         * src/SDCCicode.c (isiCodeInFunctionCall),
2564         * src/avr/ralloc.c (selectSpil),
2565         * src/pic/ralloc.c (selectSpil),
2566         * src/pic16/ralloc.c (selectSpil),
2567         * src/ds390/ralloc.c (selectSpil),
2568         * src/hc08/ralloc.c (selectSpil),
2569         * src/xa51/ralloc.c (selectSpil),
2570         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
2571         stack in the middle of a function call sequence (fixes bug #1020268)
2572         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
2573         costs associated with the minimum switch case.
2574
2575 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2576
2577         * src/SDCC.lex: fixed bug #1030549
2578
2579 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2580
2581         * src/SDCCcse.h (struct cseDef),
2582         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
2583         over a function call if the CSE is derived from a symbol whose
2584         address has been taken (fixes bug #1029883)
2585         * support/regression/tests/bug-1029883: a new regression test for
2586         this bug
2587
2588 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2589
2590         * src/hc08/gen.c (emitinline): fixed bug #1029778
2591         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
2592         to a cast object is no longer a syntax error ("fixes" bug #1030006,
2593         and starts toward RFE #905167)
2594
2595 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
2596
2597         * src/pic16/gen.c (mov2f): New function to move an operand to
2598         another without considering if it is a literal or a register,
2599         * (pic16_sameRegs): don't check if they are both AOP_REG,
2600         * (AccRsh): removed andmask=0 lines,
2601         * (genLeftShift): duplicated to be improved in future versions,
2602         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
2603         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
2604         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
2605         * (pic16initMnemonics): added initialization for POC_INFSNZW,
2606         * (insertBankSwitch): fixed inserting banksel directives algorithm
2607         for instructions that follow a skip instruction, this fixes a report
2608         for broken subtraction code generation,
2609         * src/pic16/ralloc.c (deassignLRs): do not free register if current
2610         iCode is a left op, just in case result and right share the same
2611         registers
2612
2613 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2614
2615         * src/hc08/main.c,
2616         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
2617         preservation of HX
2618         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
2619         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
2620         on 2004-09-12; it was buggy
2621
2622 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
2623
2624         * src/SDCCsymt.h: removed RESULT_CHECK
2625         * src/SDCCast.c,
2626         * src/SDCCglue.c,
2627         * src/SDCCval.c,
2628         * src/pic/glue.c,
2629         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
2630
2631 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
2632
2633         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
2634         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
2635         configuration values no more rejected by compiler, they are assigned
2636         to configuration registers with a warning message instead,
2637         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
2638         the for-loop so last conf register is emitted too,
2639         * (_pic16_initPaths): link library libsdcc.lib by default,
2640         * (_hasNativeMulFor): modified test for multiplication according to
2641         Raphael Neider's remarks. Integer multiplication is also done with
2642         support functions,
2643         * device/include/pic16/pic18fregs.h: corrected type error in while
2644         testing and including 18f6720 header file
2645
2646 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
2647
2648         * src/pic16/device.h (pic16_options): removed field use_crt,
2649         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
2650         until an optimization to handle single bits is added,
2651         * (pic16_loadFSR0): moved before genUnpackBits,
2652         * (genAnd): some white lines removed,
2653         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
2654         leave_reset flags in pic16_options when using crt modules,
2655
2656 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
2657
2658         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
2659           for bugs 898889 & 979599. Also used some safer print instructions.
2660
2661 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
2662
2663         * src/pic16/device.h (pic16_options_t): added field use_crt,
2664         crt_name, no_crt,
2665         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
2666         catch a probable future bug,
2667         * src/pic16/gen.c: aopIdx function commented out,
2668         * (genAssign): commented out old code which used aopIdx,
2669         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
2670         code, added if conditionals to take into account the --use-crt
2671         command line options,
2672         * src/pic16/main.c (pic16_optionsTable): added new command line
2673         options, --use-crt= and --no-crt,
2674         * (_pic16_linkEdit): now the proper crt object is added in the
2675         linker command line except than when --no-crt is specified,
2676         * src/pic16/pcode.c,
2677         * src/pic16/pcode.h: added some structures and functions for a new
2678         optimization scheme to compansate for instruction overhead between
2679         same iCodes, this scheme is currently under development and is not
2680         working in any way,
2681         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
2682         to && operator,
2683         * device/lib/pic16/startup/crt0i.c,
2684         * device/lib/pic16/startup/crt0iz.c: added global char variable
2685         __uflags to force the generation of an idata section
2686
2687 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
2688
2689         * doc/Makefile,
2690         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
2691         * doc/sdccman.lyx: updated sdcc version to 2.4.4
2692
2693 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2694
2695         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
2696         Frieder) and clarified the default code optimization mode
2697
2698 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2699
2700         * src/SDCC.lex (doPragma, process_pragma),
2701         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
2702         "opt_code_size", and "opt_code_balanced"
2703         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
2704         regrouped options by category, added support for category headers
2705         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
2706         and "--opt-code-size"
2707         * doc/sdccman.lyx: documented these new options and pragmas
2708         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
2709         preference into account
2710
2711 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2712
2713         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
2714           geniCodePreDec): Fixed bug 904237 by generating a warning
2715         * src/SDCCerr.h,
2716         * src/SDCCerr.c: added warning W_SIZEOF_VOID
2717
2718 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
2719
2720         * src/pic/device.c : When no max ram set validate full memory range.
2721         * src/pic/pcode.c,
2722         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
2723
2724 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2725
2726         * device/lib/_gptrget.c,
2727         * device/lib/_gptrput.c: updated comment
2728         * device/lib/calloc.c,
2729         * device/lib/free.c,
2730         * device/lib/malloc.c,
2731         * device/lib/realloc.c: added LGPL, made them reentrant-safe
2732         * src/SDCCcse.c (cseBBlock),
2733         * src/SDCCicode.c (printOperand, geniCodeArray),
2734         * src/SDCCicode.h (struct operand): fixed bug 868103
2735         * support/regression/tests/bug-868103.c: added
2736         * src/SDCCast.c (searchLitOp),
2737         * src/SDCCcse.h (struct cseDef),
2738         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
2739         * src/SDCCicode.h (struct operand),
2740         * src/SDCCsymt.h (struct sym_link),
2741         * src/avr/gen.c (hasInc),
2742         * src/ds390/gen.c (hasInc),
2743         * src/hc08/gen.c (genPlusIncr, hasInc),
2744         * src/mcs51/gen.c (hasInc),
2745         * src/pic16/glue.c (pic16_printIvalChar),
2746         * src/pic16/ralloc.c (regWithIdx),
2747         * src/xa51/gen.c (hasInc) : removed warnings
2748         * src/SDCCast.c (createBlock): added comment ???
2749         * src/hc08/ralloc.c: updated comments
2750
2751 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2752
2753         * doc/sdccman.lyx: updated section on switch statements, added
2754         section about semaphore locking
2755         * doc/Makefile: added option -info for latex2html
2756         * device/lib/_gptrget.c,
2757         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
2758
2759 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
2760
2761         * src/pic/device.h,
2762         * src/pic/device.c,
2763         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
2764          maxram is less than 0x100.
2765
2766 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
2767
2768         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
2769
2770 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2771
2772         * src/port.h,
2773         * src/mcs51/main.c,
2774         * src/ds390/main.c,
2775         * src/z80/main.c,
2776         * src/hc08/main.c,
2777         * src/pic/main.c,
2778         * src/pic16/main.c,
2779         * src/avr/main.c,
2780         * src/xa51/main.c
2781         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
2782         a jump table is the best form for a switch statement, including
2783         automatic insertion of missing cases to make the case range
2784         continuous. Developed in collaboration with Frieder Ferlemann.
2785
2786 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2787
2788         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
2789         accumulator result if it needs sign extension
2790
2791 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2792
2793         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
2794
2795 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2796
2797         * device/lib/gbz80/printf.c,
2798         * device/lib/z80/printf.c: removed define for NULL
2799
2800 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2801
2802         * as/xa51/xa_link.c,
2803         * device/examples/ds390/ow390/ad26.c,
2804         * device/examples/ds390/ow390/cnt1d.c,
2805         * device/examples/ds390/ow390/counter.c,
2806         * device/examples/ds390/ow390/ds2480.h,
2807         * device/examples/ds390/ow390/ds2480ut.c,
2808         * device/examples/ds390/ow390/findtype.c,
2809         * device/examples/ds390/ow390/gethumd.c,
2810         * device/examples/ds390/ow390/owllu.c,
2811         * device/examples/ds390/ow390/ownetu.c,
2812         * device/examples/ds390/ow390/swt12.c,
2813         * device/examples/ds390/ow390/swtloop.c,
2814         * device/examples/ds390/ow390/temp.c,
2815         * device/examples/ds390/ow390/temp10.c,
2816         * device/examples/ds390/ow390/thermo21.c,
2817         * device/examples/ds390/ow390/tinilnk.c,
2818         * device/examples/ds390/ow390/tstfind.c,
2819         * device/examples/serialcomm/windows/serial.cpp,
2820         * device/examples/serialcomm/windows/test_serialcomm.cpp,
2821         * device/include/reg51.h: fixed line endings for cvs
2822
2823 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2824
2825         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
2826         packRegsForAccUse, packRegisters): new accumulator register
2827         packing algorithm
2828         * support/regression/ports/hc08/support.c (_putchar): suppress
2829         warning of unused variable
2830         * src/SDCCicode.c: added SWAP entry to codeTable
2831
2832 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
2833
2834         * device/lib/sprintf.c: forgot to add this file before previous commit
2835
2836 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
2837
2838         * src/pic16/gen.c (genPackBits): added operand right in function
2839         parameters, load result directly if p_type is POINTER (that is
2840         called by genNearPointerSet)
2841         * (genUnPackBits): added operand left in function parameters,
2842         * (genNearPointerGet, genNearPointerSet): prevent the loading of
2843         FSR0 if accessing bitfields,
2844
2845 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
2846
2847         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
2848           _print_format; updated printf, sprintf, vsprintf
2849         * device/include/asm/default/features.h: corrected comment/define
2850         * device/lib/Makefile.in: added sprintf.c
2851         * device/lib/libsdcc.lib: added sprintf module
2852         * device/lib/printf_large.c,
2853         * device/lib/vprintf.c,
2854         * device/lib/sprintf.c: totally refactored printf_large and vprintf
2855           into these 3 files
2856         * support/regression/Makefile: changed ALL_PORTS into a usefull default
2857         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
2858         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
2859           hc08 test
2860         * support/regression/tests/zeropad.c: define idata as data for hc08
2861
2862 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2863
2864         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
2865         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
2866         labels are referenced at least once (even if a reference is not found)
2867         * src/hc08/gen.c (emitcode): set isComment flag for comments
2868         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
2869         loads), rules 6a..6b (optimize jumps to return)
2870
2871 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2872
2873         * device/lib/acosf.c (acosf),
2874         * device/lib/asinf.c (asinf),
2875         * device/lib/atanf.c (atanf),
2876         * device/lib/ceilf.c (ceilf),
2877         * device/lib/cosf.c (cosf),
2878         * device/lib/coshf.c (coshf),
2879         * device/lib/cotf.c (cotf),
2880         * device/lib/fabsf.c (fabsf),
2881         * device/lib/floorf.c (floorf),
2882         * device/lib/log10f.c (log10f),
2883         * device/lib/logf.c (logf),
2884         * device/lib/sinf.c (sinf),
2885         * device/lib/sinhf.c (sinhf),
2886         * device/lib/sqrtf.c (sqrtf),
2887         * device/lib/tanf.c (tanf),
2888         * device/lib/tanhf.c (tanhf),
2889         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
2890         replaced all instances of "reentrant" in the library functions
2891         defined in math.h with this macro.
2892         * support/regression/tests/float_trans.c: reenabled test for hc08
2893
2894 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
2895
2896         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
2897         erroneously deleted
2898
2899 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2900
2901         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
2902         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
2903         multi-byte volatile operands are used
2904         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
2905         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
2906         initialization to area GSINIT0 so that it would always precede
2907         any static initializers in GSINIT
2908         * support/regression/tests/zeropad.c: fixed idata define for hc08
2909         * support/regression/tests/bug-927659.c,
2910         * support/regression/tests/float_trans.c: disabled tests for hc08
2911         pending missing library routines
2912         * .version: increased version number to 2.4.4 - hc08 port now passes
2913         regression tests
2914
2915
2916 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
2917
2918         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
2919         * Makefile.common.in,
2920         * as/Makefile,
2921         * as/hc08/Makefile.in,
2922         * as/mcs51/Makefile.in,
2923         * as/z80/Makefile.in,
2924         * debugger/mcs51/Makefile.in,
2925         * device/include/Makefile.in,
2926         * device/lib/Makefile.in,
2927         * doc/Makefile,
2928         * link/Makefile,
2929         * link/z80/Makefile.in,
2930         * packihx/Makefile.in,
2931         * sim/ucsim/main_in.mk,
2932         * sim/ucsim/avr.src/Makefile.in,
2933         * sim/ucsim/doc/Makefile.in,
2934         * sim/ucsim/gui.src/serio.src/Makefile.in,
2935         * sim/ucsim/hc08.src/Makefile.in,
2936         * sim/ucsim/s51.src/Makefile.in,
2937         * sim/ucsim/xa.src/Makefile.in,
2938         * sim/ucsim/z80.src/Makefile.in,
2939         * src/Makefile.in,
2940         * support/cpp2/Makefile.in,
2941         * support/librarian/Makefile,
2942         * support/makebin/Makefile: added DESTDIR to the install path proposed
2943         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
2944         * doc/sdccman.lyx: added DESTDIR documentation
2945
2946 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
2947
2948         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
2949         instruction for interrupt handlers, use fast returns when returning
2950         from high priority interrupts
2951
2952 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2953
2954         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
2955         code generation
2956         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
2957         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
2958         bugs, ported much of Bernhard's code from mcs51
2959         * src/mcs51/gen.c (genSend),
2960         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
2961         than one when calling a reentrant function
2962         * device/lib/_mullong.c: defined an alternate struct layout for big
2963         endian ports (hc08)
2964
2965 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2966
2967         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
2968         test
2969
2970 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2971
2972         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
2973         are sane and complete before asking the port its prefered parameter
2974         passing method (fixes bug #1017633)
2975         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
2976         and _ret3
2977
2978 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2979
2980         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
2981         problem in bitfields >= 8 bits.
2982
2983 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
2984
2985         * src/SDCCsymt.c: undid changes that were not meant to be committed
2986
2987 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
2988
2989         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
2990
2991 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
2992
2993         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
2994           copied and wrong bit got inverted
2995
2996 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2997
2998         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
2999         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
3000         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
3001         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
3002         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
3003         assignments to bitfields at known addresses
3004         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
3005         reads from bitfields at known addresses
3006         * src/hc08/ralloc.c (packRegisters),
3007         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
3008         genhc08Code): optimize pointer get values used as conditionals
3009         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
3010         and branch
3011
3012 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3013
3014         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
3015         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
3016         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
3017         as conditionals
3018
3019 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3020
3021         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
3022
3023 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3024
3025         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
3026         related problems
3027
3028 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
3029
3030         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
3031
3032 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3033
3034         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
3035         mcs51 port
3036
3037 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
3038
3039         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
3040
3041 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3042
3043         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
3044         cases use more compact code.
3045
3046 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
3047
3048         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
3049
3050 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3051
3052         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
3053
3054 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3055
3056         * src/SDCCsymt.h,
3057         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
3058         parameter of changePointer() from symbol* to sym_link*
3059         * src/SDCCast.c (decorateType): call changePointer() for CAST op
3060         * src/SDCCsymt.c (compareType): void* type is castable to other
3061         pointers, but not necesarily an exact match.
3062         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
3063         is no longer blindly treated as an exact match.
3064         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
3065
3066 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
3067
3068         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
3069
3070 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
3071
3072         * src/pic/gen.c,
3073         * src/pic/pcode.c,
3074         * src/pic/ralloc.h,
3075         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
3076
3077 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
3078
3079         * src/pic/device.c,
3080         * src/pic/device.h,
3081         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
3082
3083 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3084
3085         * src/mcs51/gen.c (emitcode): fixed bug #992819
3086
3087 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
3088
3089         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
3090           there's no need to make it worse
3091
3092 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3093
3094         * src/mcs51/ralloc.c (deassignLR),
3095         * src/ds390/ralloc.c (deassignLR),
3096         * src/hc08/ralloc.c (deassignLR),
3097         * src/z80/ralloc.c (deassignLR),
3098         * src/pic/ralloc.c (deassignLR),
3099         * src/pic16/ralloc.c (deassignLR),
3100         * src/avr/ralloc.c (deassignLR),
3101         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
3102         rlivePoint): fixed another part of bug #971834
3103
3104 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3105
3106         * src/z80/main.c: enabled "critical" keyword
3107         * src/z80/mappings.i,
3108         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
3109         functions (fixes bug #979646)
3110         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
3111
3112 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3113
3114         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
3115           such as c:\mydir.
3116
3117 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
3118
3119         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
3120           doesn't disable too much optimizations
3121
3122 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3123
3124         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
3125
3126 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
3127
3128         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
3129
3130 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3131
3132         * src/pic/gen.c tidied up tabs
3133         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
3134         * src/pic/main.c tidied up tabs
3135         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
3136         * src/pic/pcoderegs.c tidied up tabs
3137         * src/pic/ralloc.c tidied up tabs
3138
3139 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
3140
3141         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
3142         to S_FIXED for pic16 port and when symbol is not in level 0,
3143         allocate for S_REGISTER storage class and pic16 port, too,
3144         * src/pic16/device.h: prototype for checkSym,
3145         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
3146         * (pic16_assignConfigWordValue): test the value and the mask to
3147         validate that the value is suitable for the configuration word,
3148         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
3149         collect extern declared symbols, don't emit symbol twice, check
3150         first if symbol is in publics set first,
3151         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
3152         * added command line '--fstack' which enables an experimental
3153         feature for stack access, too buggy to be used yet...
3154         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
3155         * (pic16_allocDirReg): when register has storage class S_REGISTER
3156         allocate in pic16_dynAccessRegs,
3157         * device/include/pic16/pic18f????.h: modified configuration word
3158         naming convention, words started as CONFIG0H but should be CONFIG1H
3159
3160 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
3161
3162         * device/include/mcs51reg.h: fixed bug 970993
3163
3164 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
3165
3166         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
3167         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
3168         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
3169         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
3170         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
3171         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
3172           error/warning numbers,
3173           added function setWarningDisabled()
3174         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
3175         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
3176           _memcmp.c _memmove.c calloc.c realloc.c free.c
3177         * support/regression/tests/malloc.c: added tests for new functionality
3178         * support/regression/tests/zeropad.c: added tests for truncated initializers
3179           and initialized char arrays starting with '\x0'
3180         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
3181
3182 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
3183
3184         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
3185
3186 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3187
3188         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
3189         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
3190         peephole 177.e. Thanks to anonymous
3191
3192 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
3193
3194         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
3195         function isn't used in the source but referenced as a
3196         variable initializer then declare it as extern in .asm file
3197
3198 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
3199
3200         * .version: increased version number to 2.4.3
3201
3202         Adding version extension according to ChangeLog CVS revision
3203         * src/Makefile.in (target all): added dependency 'version.h'
3204         * (rule version.h): added rule to create version.h from ChangeLog,
3205         * (rule dep): added dependency version.h,
3206         * src/version.awk: AWK script to create version.h
3207         * src/SDCCdwarf2.c (dwWriteModule),
3208         * src/SDCCglue.c (initialComments),
3209         * src/SDCCmain.c (printVersionInfo): modified to write after
3210         version string the version extension number,
3211         * src/SDCCutil.c: included "version.h"
3212         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
3213         number,
3214         * src/SDCCutil.h: added prototype for getBuildNumber
3215
3216         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
3217         includeDirsSet, too,
3218         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
3219         const char [] is found in function prototype...
3220
3221         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
3222         moving to WREG with source is already in WREG,
3223         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
3224         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
3225         * (aopForSym): stack'ed symbols are partially supported, added
3226         if-clause to support symbols in FARSPACE,
3227         * (sameRegs): added test for AOP_ACC to see if registers are same,
3228         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
3229         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
3230         * (pic16_popRegFromString): will not allocate a new register if it
3231         doesn't find one by name, bug may have introduced...
3232         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
3233         * (genIpush): revived to use pic16 port's stack,
3234         * (genAddrOf): added incomplete case for stack'ed operand,
3235         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
3236         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
3237         can handle multibyte operands,
3238         * src/pic16/glue.c (pic16_printIval*): some debug info added,
3239         * (pic16initialComments): added message for MPLAB compatibility
3240         mode enabled,
3241         * src/pic16/main.h: prototype for pic16_mplab_comp,
3242         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
3243         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
3244         * (_pic16_linkEdit): NEW, handles link stage, transferred here
3245         because of increased complexity of procedure,
3246         * (_process_pragma): stack pragma changed to format 'stack pos len',
3247         emit symbol '_stack_end' to conform with gplink,
3248         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
3249         to search for register,
3250         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
3251         PO_GPR_REGISTER,
3252         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
3253         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
3254         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
3255         case for PO_GPR_REGISTER,
3256         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
3257         dies, the new era is ahead !...
3258         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
3259         pic16_dynInternalRegs,
3260         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
3261         * (pic16_allocDirReg): minor optimizations and bug fixes,
3262         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
3263
3264         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
3265         load stack and frame pointer with address of 'stack_end' symbol
3266
3267 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
3268
3269         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
3270         without source code but only variable initializers
3271
3272 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
3273
3274         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
3275         external are not declared as extern to reduce overhead while linking
3276
3277 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
3278
3279         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
3280
3281 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
3282
3283         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
3284           Yee Keat for the patch
3285         * src/SDCCast.c (decorateType): fixed bug #979599
3286         * src/ds390/gen.h: removed local fReturnSizeDS390
3287         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
3288         * src/ds390/gen.c (genAnd, genOr, genXor),
3289         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
3290
3291 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
3292
3293         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
3294         add relFilesSet to $3, manipulate $2 to handle linking of object
3295         files without source files in command line,
3296         * device/include/pic16 (all headers): added ID location macros,
3297         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
3298         entries for ID location bytes,
3299         * (pic16_assignIdByteValue): NEW,
3300         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
3301         added field dumpcalltree to pic16_options_t,
3302         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
3303         is used instead of pic16_Gstack_base_addr, check if (ifx) before
3304         emitting rFalseIfx label after check_carry label,
3305         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
3306         pic16_emitDIRegs), NEW
3307         * (pic16glue): dump .calltree file when option --calltree found,
3308         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
3309         * (_pic16_genAssemblerPreamble): emit ID locations after
3310         configuration registers,
3311         * (pic16_linkCmd): modifications of the link command,
3312         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
3313         * (pic16_pCodeInitRegisters): don't init stack registers,
3314         * (pic16_findPrevInstruction): fixed bug,
3315         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
3316         bug with immediate registers,
3317         * (buildCallTree): traces stack push and pop,
3318         * (pct2): dump also stack usage for each function,
3319         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
3320         * (pic16_allocDirReg): various modifications,
3321         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
3322         fixed to 1,
3323
3324 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
3325
3326         * src/pic16/pcode.c: removed buggy double colon
3327
3328 2004-07-01 Borut Razem <borut.razem AT siol.net>
3329
3330         * support/scripts/sdcc.nsi: added include/pic16 to setup
3331
3332 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
3333
3334         * device/lib/Makefile.in: fixed bug in target objects-pic16,
3335         * device/lib/pic16/Makefile: prefixed with dash (-) command under
3336         target 'clean',
3337         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
3338         specific command line arguments. Also added sample lkr script
3339         for placing a variable at a specific memory bank.
3340         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
3341         at a specific memory bank,
3342         * (pic16_dump_isection): fixed bug which caused string literals to
3343         be omitted when dumping idata section,
3344         * (pic16_groupRegistersInSection): added code to handle registers
3345         in specific memory banks,
3346         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
3347         public, all references are renamed too,
3348         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
3349         AOP_DPTR2,
3350         * (pic16_storeForReturn): added case to handle when dest is WREG,
3351         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
3352         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
3353         pic16_rel_udata, check to see if that register is marked as being
3354         a member of a specific memory bank,
3355         * (pic16_printIvalCharPtr): added code to add string literals either
3356         to code or the idata sections,
3357         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
3358         also accept the 'udata' pragma,
3359         * src/pic16/main.h: new structure types sectName and sectSym
3360         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
3361         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
3362         * (pic16_findPrevInstruction): fixed, it returned nothing,
3363         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
3364         instruction combinations,
3365         * (pic16_FixRegisterBanking): heavily reorganised,
3366         * (pic16_AnalyzeBanking): if generating banksel directives is
3367         disabled, then don't call FixRegisterBanking at all,
3368         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
3369         completely removed,
3370         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
3371
3372 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
3373
3374         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
3375         Phuah Yee Keat <yk.phuah AT nestac.com>
3376
3377 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3378
3379         * src/pic16/glue.c (pic16createInterruptVect): function now emits
3380         correctly the IVT even if it is relocated to some other location
3381
3382 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3383
3384         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
3385         * device/include/pic16/pic18f2220.h: NEW,
3386         * device/lib/pic16/libdev/pic18f2220.c: NEW,
3387         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
3388         * src/pic16/device.c (struct Pics16): added info for 18f2220,
3389         * src/pic16/device.h (struct pic16_options): added ivt_loc and
3390         nodefaultlibs, ivt_loc is the location of the interrupt vector
3391         table, and nodefaultlibs signs that default libraries should not be
3392         linked in link stage,
3393         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
3394         according to --ivt-loc argument,
3395         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
3396         when pragma stack is found,
3397
3398 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3399
3400         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
3401         256 (range check), 257 (do while), 258.a-f (bit banging
3402         f.e. on 3-wire SPI bus)
3403
3404 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3405
3406         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
3407         variables used exclusively within a loop
3408
3409 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
3410
3411         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
3412
3413 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3414
3415         * src/SDCClrange.c (computeClash): fixed bug #971834
3416
3417 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3418
3419         * src/mcs51/gen.c (genCmp): fixed bug #975903
3420         * src/hc08/gen.c (operandsEqu),
3421         * src/ds390/gen.c (operandsEqu),
3422         * src/z80/gen.c (operandsEqu),
3423         * src/pic/gen.c (operandsEqu),
3424         * src/pic16/gen.c (operandsEqu),
3425         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
3426         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
3427
3428 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3429
3430         * src/SDCCcse.c (cseBBlock): fixed bug #966963
3431
3432 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
3433
3434         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
3435         default case in switch statement,
3436         * glue.c (pic16_initPointer): expr is initialised via decoarteType
3437         to eliminate problem with initialisation of pointers, but problem
3438         still exists,
3439         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
3440         * (emitStaticSegment): removed various lines emitting debug info,
3441         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
3442         added processor registers for utilizing EEPROM,
3443         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
3444         configurable and set 8
3445
3446 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
3447
3448         * .version: increased version number to 2.4.2,
3449
3450         Cumulative patch for pic16 port
3451         * src/pic16/device.c: changed scheme to dump initial values for
3452         variables in idata segment, all print_idata* functions were removed,
3453         now the pic16_printIval* will be called,
3454         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
3455         * _pic16_printPointerType, pic16_printPointerType,
3456         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
3457         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
3458         NEW, similar to the respective functions in SDCCglue.c,
3459         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
3460         way, emitting hex bytes,
3461         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
3462
3463 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3464
3465         * src/avr/ralloc.c (serialRegAssign),
3466         * src/xa51/ralloc.c (serialRegAssign),
3467         * src/pic/ralloc.c (serialRegAssign),
3468         * src/pic16/ralloc.c (serialRegAssign),
3469         * src/hc08/ralloc.c (serialRegAssign),
3470         * src/z80/ralloc.c (serialRegAssign),
3471         * src/ds390/ralloc.c (serialRegAssign),
3472         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
3473
3474 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3475
3476         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
3477         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
3478
3479 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
3480
3481         Cumulative patch for pic16 port:
3482         * src/pic16/device.h (typedef PIC16_device) modified fields for
3483         defining microcontrollers,
3484         * src/pic16/device.c: added new info for all devices in Pics16 array,
3485         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
3486         to be optimised out by the pCode optimiser,
3487         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
3488         specially, bug reported by G.M. Gallant,
3489         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
3490         as force'd so that cannot be optimised out by pCode optimiser,
3491         * src/pic16/pcode.c,
3492         * src/pic16/pcodepeeph.c,
3493         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
3494         they are disabled by default, but can be enabled explicit with
3495         command argument --denable-peeps, for testing,
3496         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
3497         --pomit-ivt in COMPILE_FLAGS
3498
3499 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3500
3501         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
3502           compilation on MSVC
3503
3504 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3505
3506         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
3507
3508 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3509
3510         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
3511         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
3512
3513 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
3514
3515         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
3516         would only assign 0x300001 register.
3517
3518 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
3519
3520         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
3521         in COMPILE_FLAGS. Thanks to G. Gallant for report.
3522
3523 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3524
3525         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
3526         for ds80c400
3527         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
3528         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
3529         added peephole 254 (left shift), 255 (jump table)
3530
3531 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
3532
3533         * device/lib/Makefile.in: removed comment line with model-pic16,
3534         * (target port-specific-objects-pic16): the libraries and objects
3535         are copied to the build directory form the device/lib/pic16/bin
3536         directory
3537
3538         Cumulative patch concerning pic16 port:
3539         * library directory has been re-organized,
3540         * added support for PIC18F1220,
3541         * added headers and library sources for chips 18f1220,18f6520,
3542         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
3543
3544         * configuration registers setting has changed, now each supported
3545         device has a complete description of the registers it uses,
3546         * all initialisations are moved to idata sections, these section
3547         can be absolute or relocatable,
3548         * fixed initialisation of codespace variables,
3549         * fixed warning about PCLATU and gpsim,
3550         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
3551         * (genAssign): use table reads when assigning from variables in codespace,
3552         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
3553         char/int variables placed in codespace,
3554         * (pic16_emitConfigRegs): NEW, emits a list with configuration
3555         registers set in .asm file, no need for --pomit-config-words anymore,
3556         * (pic16glue): some 8051 legacy segments are commented out
3557         (to be removed completely),
3558         * added support for alternative assembler and linker with --asm=
3559         and --link= command line arguments,
3560         * peepholes are disabled automatically in the port, no need to
3561         specify on command line,
3562         * port supports natively char/int/long multiplication, but converts
3563         all divisions to support functions,
3564         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
3565         to the file set in variable $2,
3566         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
3567         strings in ASCII format and not in hex,
3568         * ralloc.c (serialRegAssign): added a triplet of conditional calls
3569         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
3570         allocate proper register if iCodes aren't temporary,
3571
3572 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
3573
3574         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
3575
3576 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
3577
3578         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
3579         is commented out
3580
3581 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3582
3583         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
3584         computed address is reused
3585         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
3586         multi-byte bitfields
3587
3588 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3589
3590         * src/z80/gen.c: (genArrayInit): must check for pointers too
3591
3592 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3593
3594         * support/regression/tests/zeropad.c: never meant to commit the
3595           nestedstruct test: removed, added check for GCC version
3596
3597 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
3598
3599         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
3600         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
3601         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
3602           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
3603           bugs 928906 and 954082 half-empty initializers
3604         * src/SDCCsymt.h,
3605         * src/SDCCsymt.c (getAllocSize): added for above fix
3606         * src/z80/gen.c (genArrayInit): fixed bug 741044
3607         * support/regression/tests/zeropad.c: added tests
3608
3609 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
3610
3611         * src/pic16/device.c (pic16_dump_section): corrected bug which
3612         caused some symbols of the libraries to be misplaced
3613
3614 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3615
3616         * src/pic16/glue.c,
3617         * src/pic16/ralloc.h,
3618         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
3619         to fix conflict with pic port
3620
3621 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3622
3623         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
3624         externs configuration variables,
3625         * src/pic16/ralloc.h,
3626         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
3627         prototype in header, commented out some debug messages
3628
3629 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
3630
3631         * src/pic16/glue.c,
3632         * src/pic16/main.c,
3633         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
3634         for gpasm COFF object generation. Thanks to D. Hawkins for
3635         his patch info
3636
3637 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3638
3639         * src/ds390/main.c,
3640         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
3641         Brock for spotting this)
3642         * src/ds390/gen.c (genEndFunction),
3643         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
3644         interrupt handler and critical. Disable push/pop optimizations when
3645         peephole optimizations disabled.
3646
3647 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
3648
3649         Updated pic16 library sources and headers.
3650         * device/lib/pic16/pic18f*/ ,
3651         * device/include/pic16/*.h: modified to handle structured SFR
3652         definitions
3653
3654 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
3655
3656         * src/port.h (PORT structure): added hook initPaths, now each
3657         port can declare its own default search paths,
3658         which can been seen with the --print-search-dirs option,
3659         see pic16 port for example,
3660         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
3661         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
3662         * (doPrintSearchDirs): NEW, replaces in a central manner the
3663         printing of search dirs which was split in set*Paths functions,
3664         * (main): added call to port->initPaths and doPrintSearchDirs,
3665         * src/avr/main.c,
3666         * src/ds390/main.c,
3667         * src/hc08/main.c,
3668         * src/izt/i186.c,
3669         * src/izt/tlcs900h.c,
3670         * src/mcs51/main.c,
3671         * src/pic/main.c,
3672         * src/pic16/main.c: modified port structures to reflect addition of
3673         initPaths hook,
3674
3675         * src/pic16/device.c (regCompare): registers are finally sorted by name,
3676         * (pic16_dump_section): for registers in same address reserve memory once,
3677         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
3678         to no_banksel,
3679         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
3680         result is greater in size than right or left,
3681         * (pic16_genUMult8X8_8): there are some cases where the result can
3682         be 16 bits size, so handle these,
3683         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
3684         * (pic16_outBitC): modified to emit pcodes,
3685         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
3686         or not,
3687         * (genDivOneByte): implemented algorithm to divide 8-bits,
3688         * (genCmp): uncommented goto, but issues still exist,
3689         * (genAnd): fixed a bug with variables >8bits,
3690         * (genPackBits): optimization added that uses BCF/BSF to change a
3691         single bit,
3692         * (genAssign): fixed bug when assigning floating point literals,
3693         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
3694         __sdcc_gsinit_startup label,
3695         * src/pic16/main.c (_pic16_init): removed search directory
3696         initialisations,
3697         * (_pic16_initPaths): NEW, used to initialise search directories,
3698         * (_hasNativeMulFor): support functions for all except char/int
3699         multiplication, and char division,
3700         * (PIC16_port struct): modified entry for native mul support,
3701         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
3702         no_banksel option,
3703         * (buildCallTree): call to register_usage is ifdef'ed out,
3704
3705 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3706
3707         * device/include/string.h: applied Stas Sergeev's patch to make this
3708         header file compatible with the preprocessor -Wundef option
3709         * src/SDCCmain.c (main): abort compilation if preprocessor reports
3710         failure (fixes bug #941458)
3711
3712 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3713
3714         * src/SDCCopt.c (killDeadCode): fixed bug #907733
3715         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
3716         that the variable, not the function, should be static
3717         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
3718         to be consistent with non-literal case
3719
3720 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3721
3722         * src/SDCCast.c (isConformingBody): fixed bug #949967
3723         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
3724         convilong): fixed bug #952086
3725
3726 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3727
3728         * src/SDCCmem.c (allocVariables): fixed bug #955321
3729
3730 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3731
3732         * src/hc08/main.c (_hc08_genAssemblerEnd),
3733         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
3734         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
3735         completely eliminated the use of a temporary file
3736         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
3737         when more than one file linked
3738         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
3739
3740 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3741
3742         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
3743         which fixes bug #543481
3744         * support/regression/tests/bug-751703.c: fixed comments left from a
3745         cut and paste error
3746         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
3747         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
3748         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
3749         scopes
3750         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
3751         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
3752         are now changed to underscores in moduleName
3753
3754 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3755
3756         * as/mcs51/lkmem.c: better fix for bug #954173
3757
3758 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
3759         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3760
3761         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
3762         * device/include/c8051f000.h,
3763         * device/include/c8051f120.h,
3764         * device/include/c8051f300.h,
3765         * device/include/c8051f310.h,
3766         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
3767         PWM16) and detab'ed
3768
3769 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3770
3771         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
3772         and mailing lists, doc'ed --no-peep-comments, removed reference
3773         to knoppix (newest version has no LyX/LaTeX), other minor changes
3774         * src/SDCCglue.c (glue): save 2 bytes stack space with
3775         option --main-return. The ljmp could probably be avoided too
3776
3777 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3778
3779         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
3780
3781 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3782
3783         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
3784         * src/SDCCopt.c (isLocalWithoutDef),
3785         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
3786         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
3787         (credit to Maarten Brock for patch #949363, on which this is based)
3788         * support/regression/tests/bug-751703.c: some test cases of extern used
3789         within inner scopes.
3790
3791 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3792
3793         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
3794         SPEC_STRUCT
3795         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
3796         struct definitions
3797         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
3798         dwWriteLabel): fix to create valid debugger symbols even when
3799         the module name has non-alphanumeric symbols in it
3800         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
3801         when a variable's allocation has been optimized away
3802
3803
3804 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3805
3806         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
3807         * src/hc08/main.c,
3808         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
3809         * src/mcs51/main.c,
3810         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
3811         * src/ds390/main.c,
3812         * src/z80/gen.c (z80_emitDebuggerSymbol),
3813         * src/z80/main.c,
3814         * src/pic/gen.c (pic14_emitDebuggerSymbol),
3815         * src/pic/main.c,
3816         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
3817         * src/pic16/main.c,
3818         * src/avr/gen.c (avr_emitDebuggerSymbol),
3819         * src/avr/main.c,
3820         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
3821         * src/xa51/main.c,
3822         * src/SDCCdebug.c (emitDebuggerSymbol),
3823         * src/SDCCdebug.h,
3824         * src/port.h: added a debugger struct to the port struct. Added a
3825         callback for defining debugger symbols
3826
3827         * src/SDCCast.c (createLabel),
3828         * src/SDCC.y (labeled_statement): mark all compiler generated labels
3829         with isitmp = 1
3830         * src/SDCCicode.h,
3831         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
3832         iCode back to the ast for the function
3833
3834         * src/hc08/ralloc.c (hc08_assignRegisters),
3835         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
3836         unneeded fields from the regs struct.
3837         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
3838         pushReg() & pullReg() functions instead of emitcode()
3839
3840         * src/hc08/gen.c (genLabel, genhc08Code),
3841         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
3842
3843         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
3844         debugger hooks
3845
3846         * src/hc08/gen.c (genEndFunction, genhc08Code),
3847         * src/hc08/gen.h,
3848         * src/mcs51/gen.c (genEndFunction, gen51Code),
3849         * src/mcs51/gen.h,
3850         * src/ds390/gen.c (genEndFunction, gen390Code),
3851         * src/ds390/gen.h,
3852         * src/z80/gen.c (genEndFunction, genZ80Code),
3853         * src/z80/gen.h,
3854         * src/z80/z80.h,
3855         * src/pic/gen.c (genEndFunction, genpic14Code),
3856         * src/pic/gen.h,
3857         * src/pic16/gen.c (genEndFunction, genpic16Code),
3858         * src/pic16/gen.h,
3859         * src/avr/gen.c (genEndFunction, genAVRCode),
3860         * src/avr/gen.h,
3861         * src/xa51/gen.c (genEndFunction, genXA51Code),
3862         * src/xa51/gen.h,
3863         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
3864         specific code to cdbFile.c and out of the backend code generators
3865
3866         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
3867         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
3868         starting address is now 0
3869
3870         * as/hc08/asm.h,
3871         * as/hc08/m08pst.c,
3872         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
3873         assembler directive for DWARF support
3874         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
3875
3876         * src/src.dsp,
3877         * src/Makefile.in,
3878         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
3879
3880 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3881
3882         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
3883         and inappropriate peephole optimization in jump tables
3884
3885 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3886
3887         * as/hc08/m08pst.c,
3888         * src/SDCCglue.c: sdccopt works for the hc08 port now
3889
3890 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
3891
3892         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
3893
3894 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3895
3896         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
3897
3898 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3899
3900         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
3901         rules
3902         * src/SDCCmain.c,
3903         * src/SDCCglobl.h,
3904         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
3905         comments from the peephole optimizer replacement rules
3906         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
3907         symbols
3908         * src/SDCCcse.c (updateSpillLocation),
3909         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
3910         equivalents
3911         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
3912         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
3913         objects far pointers
3914
3915 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3916
3917         * src/SDCCsymt.h: a missing part of my last change
3918         * src/pic/ralloc.c (regTypeNum),
3919         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
3920
3921 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3922
3923         * src/SDCCicode.h,
3924         * src/SDCCicode.c (aggrToPtrDclType),
3925         * src/SDCCptropt.h,
3926         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
3927         ptrPseudoSymConvert),
3928         * src/pic/ralloc.c (regTypeNum),
3929         * src/pic16/ralloc.c (regTypeNum),
3930         * src/hc08/ralloc.c (regTypeNum),
3931         * src/ds390/ralloc.c (regTypeNum),
3932         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
3933         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
3934
3935 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3936
3937         * link/z80/lkmain.c (afile),
3938         * as/hc08/lkmain.c (afile),
3939         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
3940         prevent a pointer problem when a filename has no directory and
3941         no extension specified.
3942
3943 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3944
3945         * link/z80/lkmain.c (afile): allow periods in directory names
3946         * link/z80/lkmain.c (afile),
3947         * as/mcs51/lkmain.c (afile),
3948         * as/hc08/lkmain.c (afile): allow linker script file to have an
3949         extension other than ".lnk"
3950         * link/z80/lklex.c (getfid),
3951         * link/z80/lkmain.c (parse),
3952         * as/mcs51/lklex.c (getfid),
3953         * as/mcs51/lkmain.c (parse),
3954         * as/hc08/lklex.c (getfid),
3955         * as/hc08/lkmain.c (parse): Support comments in the linker script
3956         file on lines by themselves and after filenames
3957
3958 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3959
3960         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
3961
3962 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3963
3964         * src/z80/peeph-z80.def: removed some peephole rules that don't
3965         work with multibyte arithmetic (fixed bug #937126)
3966         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
3967         to registers and not global variables
3968         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
3969         geniCodePreInc, geniCodePostDec, geniCodePreDec,
3970         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
3971         checking for assignments not internally generated (fixed bug #931895)
3972         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
3973         structure member (fixed bug #930072)
3974
3975 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3976
3977         * src/SDCCmain.c (linkEdit),
3978         * src/hc08/main.c (_hc08_parseOptions),
3979         * as/hc08/Makefile.in,
3980         * as/hc08/aslink.h,
3981         * as/hc08/asm.h,
3982         * as/hc08/m08pst.c,
3983         * as/hc08/lkrloc.c (relr, rele),
3984         * as/hc08/lkarea.c (lnkarea)
3985         * as/hc08/lkmain.c (afile, parse),
3986         * as/hc08/lkelf.c: support for ELF output
3987         * as/hc08/lks19.c (s19),
3988         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
3989
3990 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3991
3992         * as/mcs51/lkihx.c: Fixed bug #899105.
3993
3994 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3995
3996         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
3997         .dsp files from Unix to DOS.
3998
3999 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4000
4001         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
4002         function pointers; we have been compliant for several months now.
4003         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
4004         change that was accidently commented out
4005         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
4006         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
4007         bug #922319
4008
4009 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4010
4011         * src/hc08/gen.c: output of all of the internal debugging information
4012         is now controlled by the D() macro; it is disabled by default
4013
4014 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4015
4016         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
4017         harder to keep the same registers during a CAST iCode
4018         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
4019         long via int can be done in a single cast, if the signedness is
4020         correct.
4021         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
4022         putchar() in tinibios.c in ds390's library
4023
4024 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
4025
4026         * src/SDCCast.c (decorateType): fixed bug #898889,
4027         cast result of a literal complement too
4028         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
4029         fixed check for bitfields
4030
4031 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
4032
4033         * src/SDCCicode.c (geniCodeLogic): made it static,
4034         (geniCodeLogicAndOr): added in order to fix bug #905492,
4035         (ast2iCode): fixed bug #905492
4036         * support/regression/tests/bug-905492.c: added
4037         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
4038         (processParms): fixed bug #927659: don't copy parms, this will clear
4039         decorated flag
4040         * support/regression/tests/bug-927659.c: added
4041
4042 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
4043
4044         * src/SDCCast.c (addCast): don't cast float to char
4045         * device/lib/libsdcc.lib: added _memmove
4046
4047 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
4048
4049         * device/lib/large/Makefile: fixed parallel execution by
4050         replacing `make` by `$(MAKE)`
4051
4052 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4053
4054         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
4055         offsets (fixes bug #923936)
4056
4057 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
4058
4059         * device/lib/small/Makefile: fixed parallel execution by
4060         replacing `make` by `$(MAKE)`
4061
4062 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4063
4064         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
4065
4066 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
4067
4068         * src/pic/gen.c (genCpl): multi-byte complements were not working.
4069         * src/regression/Makefile: Regression test was not running.
4070
4071 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4072
4073         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
4074         complement if possible
4075         * src/SDCCval.c (valComplement),
4076         * src/SDCCicode.c (operandOperation): fixed complement of literal
4077         * support/regression/tests/onebyte.c (testComplement): added
4078
4079 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
4080
4081         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
4082         return an optimized tree; actually replace actParm with the new tree
4083         * src/SDCCast.h: added some parantheses to remove side effects
4084         * support/regression/tests/bug-920866.c
4085
4086 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
4087         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
4088         Bit operands were not being handled properly in the pic14 port.
4089         (now src/regression/add.c passes again).
4090
4091 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4092
4093         * src/SDCC.y (labeled_statement): case and default no longer require
4094         a following statement (RFE #893037)
4095
4096 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4097
4098         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
4099         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
4100         disabled (fixes bug #916294)
4101         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
4102         "mov a,acc"; patch provided by Lenny Story
4103         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
4104
4105 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4106
4107         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
4108         functions
4109         * src/ds390/gen.c (genFunction, genEndFunction),
4110         * src/ds390/ralloc.c (ds390_assignRegisters),
4111         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
4112         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
4113         pushed if there are parameters passed on the stack. Also, a cleaner
4114         way to decide if r0/r1 should be pushed/popped. (Together they fix
4115         bug #918693)
4116
4117 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4118
4119         * doc/sdccman.lyx,
4120         * device/lib/mcs51/crtpagesfr.asm,
4121         * device/lib/mcs51/crtxinit.asm,
4122         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
4123         to avoid confusion with Si Lab's SFRPAGE register.
4124
4125 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4126
4127         * src/SDCCglue.c (emitMaps): allow public sfr variables
4128         * src/SDCCglue.c (initialComments): include compiler build date
4129         with compiler version and put the timestamp of the generated
4130         assembly file on a serperate line to be less confusing.
4131         * src/port.h: added genInitStartup hook
4132         * src/avr/main.c,
4133         * src/ds390/main.c,
4134         * src/hc08/main.c,
4135         * src/pic/main.c,
4136         * src/pic16/main.c,
4137         * src/xa51/main.c,
4138         * src/z80/main.c: genInitStartup initialize as NULL (default to
4139         historical behaviour)
4140         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
4141         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
4142         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
4143         library instead of hard coding it into the compiler.
4144         * support/regression/ports/mcs51-stack-auto/spec.mk,
4145         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
4146         * device/lib/mcs51/Makefile,
4147         * device/lib/small/Makefile,
4148         * device/lib/large/Makefile,
4149         * device/lib/mcs51/crtpagesfr.asm,
4150         * device/lib/mcs51/crtstart.asm,
4151         * device/lib/mcs51/crtxclear.asm,
4152         * device/lib/mcs51/crtxinit.asm,
4153         * device/lib/mcs51/crtclear.asm,
4154         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
4155         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
4156         and into user configurable files.
4157         * device/lib/clean.mk: clean mcs51 directory too
4158         * support/regression/tests/longlit.c: added static to T1 declaration
4159         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
4160         accesses in the initialization code
4161
4162 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4163
4164         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
4165         OSCTRIMVAL as noted in bug #916008
4166
4167 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4168
4169         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
4170         in loops with multiple exits (reported as incorrect registers
4171         used by Martin Helmling in Sdcc-user list)
4172
4173 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4174
4175         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
4176         made ds390 register extensions look less like error messages
4177
4178 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4179
4180         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
4181         reported by Adam Wozniak in Sdcc-user list
4182
4183 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
4184
4185         * src/SDCCast.c (decorateType): fixed with bug and promotion in
4186         arithmetic optimizations, added debug output
4187
4188 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
4189
4190         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
4191         * sdcc.spec: updated and split sdcc into 3 rpms
4192         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
4193         needed for literals of LEFT_OP and '+'
4194         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
4195         introduced RESULT_TYPE_NOPROM
4196         (geniCodeMultiply): fixed logic for decision if mul is optimized to
4197         left shift
4198         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
4199         limited promotion to int only for '*'
4200         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
4201
4202 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
4203
4204         * src/pic16/gen.c (genSkip),
4205         (genc16bit2lit), (gencjneshort): commented out
4206         (is_LitOp): new helper function, checks operand type
4207         (genCmpEq): rewritten
4208
4209 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
4210
4211         * support/regression/tests/bug-908454.c: added
4212
4213 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
4214
4215         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
4216         * src/SDCCicode.c (usualBinaryConversions): op needs int type
4217         (geniCodeCast): cosmetic, don't preserve bit storage class
4218         (geniCodeLeftShift): added promotion
4219         (geniCodeLogic): fixed regression
4220         * src/SDCCsymt.c (computeTypeOr): accept bits too
4221         (compareType): 2nd part of fix for bug #908454, needed for bitfields
4222
4223 2004-03-07  Borut Razem <borut.razem AT siol.net>
4224
4225         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
4226
4227 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
4228
4229         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
4230         version of pic16_genPackRegisters which does not check if ic is a
4231         CAST operator,
4232         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
4233         function cause string1.c regression test fails
4234
4235 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
4236
4237         * sim/ucsim/configure.in,
4238         * sim/ucsim/configure,
4239         * sim/ucsim/doc/Makefile.in: use docdir
4240         * src/SDCC.y: fixed sbit atrributes
4241         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
4242         * src/SDCCast.c (decorateType): |^& need special promotion handling
4243         * src/SDCCast.h,
4244         * src/SDCCsymt.h: moved definition of RESULT_TYPE
4245         * src/SDCCsymt.h (computeType),
4246         * src/SDCCicode.c: computeType() needs op
4247         * src/SDCCsymt.c (checkTypeSanity),
4248         * doc/sddman.lyx: "plain" bitfields are unsigned
4249         * src/SDCCsymt.c (computeTypeOr): added
4250         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
4251         |^& ops
4252         * src/SDCCval.c (val*): computeType() needs op
4253         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
4254         * support/regression/tests/onebyte.c: added tests for |^&
4255
4256 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
4257
4258         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
4259         for writing icode into asm output.
4260
4261 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
4262
4263         * src/pic16/device.c: added some debug lines enabled
4264         with macro DEBUG_CHECK,
4265         * src/pic16/genarith.c: more debug in genPlus,
4266         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
4267         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
4268         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
4269         * (aopForSym): onStack symbols are re-placed in data memspace,
4270         and onStack flag is cleared,
4271         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
4272         copy temporary pcodeop,
4273         * (genPcall): added warning for not updating PCLATU,
4274         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
4275         always true for pic16 port,
4276         * (genMultOneWord): NEW, supports integer multiplication,
4277         * (genMult): modified to call genMultOneWord,
4278         * (ifxForOp): added warning when return NULL,
4279         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
4280         flag is set before call to operandFromSymbol for implicit
4281         added structures,
4282         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
4283         options.intlong_rent are set by default,
4284         * (_hasNativeMulFor): modified to allow port generation of integer
4285         multiplication,
4286         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
4287         set regtype to REG_SFR for all registers, restricting seting the
4288         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
4289
4290 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4291
4292         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
4293         more than 500 times in the regression tests
4294
4295 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4296
4297         * support/Util/SDCCerr.h,
4298         * support/Util/SDCCerr.c,
4299         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4300         enumerator_list),
4301         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
4302         for symbol conflicts.
4303         * support/valdiags/tests/enum.c,
4304         * support/valdiags/tests/tentdecl.c,
4305         * support/valdiags/tests/struct.c: expect possible error messages
4306         referring to original symbol definitions.
4307         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
4308         * src/SDCCsymt.h,
4309         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
4310
4311 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
4312
4313         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
4314
4315 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
4316
4317         * src/pic16/ralloc.c (newReg): fixed bug #908929
4318
4319 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4320
4321         * src/ds390/gen.c: added missing #include "main.h"
4322
4323 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
4324
4325         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
4326         checking if symbol is already in set,
4327         * src/pic16/device.h: prototype for checkAddSym,
4328         * src/pic16/gen.c: (_G): added entry interruptvector,
4329         * (assignResultValue): removed some commented out lines,
4330         * (genFunction): check for ISR via sym->type, absolute section for
4331         interrupt code is created via a new pBlock, the goto instruction is
4332         placed now correctly at the interrupt vector position, changed all
4333         references from ivec to _G.interruptvector,
4334         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
4335         is the interrupt is a high priority one, same for return from ISR,
4336         * src/pic16/glue.c: changed all calls of addSetHead for publics and
4337         externs to calls of checkAddSym,
4338         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
4339         pic16_pcode_verbose flag is set,
4340         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
4341         * src/pic16/pcoderegs.c: message about how many registers are saved
4342         will only be emitted if pic16_pcode_verbose flag is set,
4343
4344 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4345
4346         * src/ds390/ralloc.h,
4347         * src/ds390/ralloc.c (ds390_regWithIdx),
4348         * src/ds390/gen.c (emitcode),
4349         * src/ds390/main.h,
4350         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
4351         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4352         ds390operandCompare, getRegsRead, getRegsWritten,
4353         initializeAsmLineNode): customized instruction size calculation for
4354         ds390, started basis for some register optimizations
4355         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
4356         corresponding assembly output
4357         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
4358         missing push/pop of r0/r1. Optimized push/pops
4359
4360 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4361
4362         * src/mcs51/main.c (instructionSize): fixed ACALL size
4363         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
4364
4365 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
4366
4367         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
4368         the sorting of rlist with NULL elements
4369         * (print_idataType, print_idata): NEW to create idata sections
4370         * src/pic16/device.h: idataSymSet new variable
4371         * src/pic16/gen.c (genFunction): fixed some bugs in string
4372         comparing, improved the absolute section creation for ISRs,
4373         added FSR0L/FSR0H in registers that are saved in an ISR,
4374         * (genInline): fixed the processing of inline snippets,
4375         now they undergo no process by the peephole optimizer
4376         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
4377         are placed in idataSymSet,
4378         * (pic16emitStaticSeg): extern symbols are added in externs,
4379         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
4380         switching when aboslute variables are placed in access bank memory
4381         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
4382         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
4383         commented out with #if,
4384         * (pic16_packRegisters): reintroduce the check for CAST because some
4385         symbols are not correctly handled,
4386         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
4387         pCodeInstruction instead of pCode,
4388         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
4389         pCodeAsmDir definition,
4390         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
4391         directive, then the argument directive is emitted without the leading
4392         tab, hack for inline labels which must be in the first column,
4393         * (compareLabel,pic16_findNextInstruction),
4394         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
4395         * (insertBankSwitch): modified for the new pCodeAsmDir,
4396
4397 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4398         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
4399
4400         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
4401         instance,
4402         * (pushSide): commented out with #if,
4403         * (assignResultValue): fixed some typos in saving
4404         registers,
4405         * (genPcall): FIXED and sync'ed with genCall,
4406         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
4407         * (genNearPointerGet): fixed to handle some more cases,
4408         implementation scheme via table reads,
4409         * (genConstPointerGet): modified to access code memory correct,
4410         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
4411         and improved to handle some cases
4412         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
4413         instead of "RETLW" for init data
4414         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
4415         not IN_DIRSPACE, work around to reduce bank switching when aboslute
4416         variables are placed in access bank memory (<0x80 and >=0xf80),
4417         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
4418         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
4419         TBLWT_POSTDEC,TBLWT_PREINC
4420         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
4421         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
4422         directives
4423         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
4424         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
4425         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
4426         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
4427
4428 2004-02-29  Borut Razem <borut.razem AT siol.net>
4429
4430         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
4431         support/Util/findme.h, support/Util/system.h: enhance binary relative
4432         search for lib and include by using findProgramPath()
4433
4434 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4435
4436         * src/SDCCpeeph.h,
4437         * src/SDCCpeeph.c (pcDistance),
4438         * src/port.h,
4439         * src/mcs51/ralloc.h,
4440         * src/mcs51/ralloc.c (mcs51_regWithIdx),
4441         * src/mcs51/main.h,
4442         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
4443         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4444         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
4445         size calculation port specific, started basis for some register
4446         optimizations
4447         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
4448         missing push/pop of r0/r1. Optimized push/pops
4449         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
4450         * device/lib/_modsint.c (_modsint),
4451         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
4452         and stack version so regression tests pass
4453
4454 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
4455
4456         * src/Makefile.in (dep): include SLIBOBJS in dependency check
4457         * src/SDCCast.c (decorateType): catch another small optimization
4458         with '?' operator
4459         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
4460         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
4461         modified to finally use computeType() all over SDCC,
4462         see Feature Request #877103
4463         * src/SDCCval.h: cosmetic
4464         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
4465         valCompare(); regression tested in muldiv.c
4466         * support/regression/tests/muldiv.c (testMod): mod sign follows
4467         dividend only
4468
4469 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
4470
4471         * src/SDCCast.c (decorateType): fixed bug #902362
4472         * doc/INSTALL.txt: fixed install instructions for win32
4473
4474 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
4475
4476         * device/include/Makefile.in (install): fixed by replacing spaces
4477         by tabs
4478         * doc/README.txt,
4479         * doc/INSTALL.txt: updated for release
4480         * doc/sdccman.lyx: added warning for --xstack being buggy
4481
4482 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
4483
4484         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
4485         to eliminate build warnings.
4486         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
4487
4488 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
4489            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4490
4491         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
4492         removed -penable-stack, added comment for stack pragma, added
4493         warning for not initializing the stack/frame registers, removed
4494         comment at interrupts section
4495
4496         Stack is made permanent, there is no ability to disable stack usage.
4497         * src/pic16/device.h,
4498         * src/pic16/device.c: removed all references to USE_STACK macro,
4499         * src/pic16/device.c (pic16_dump_section): when no elements in
4500         rlist, free rlist before return,
4501         * (pic16_dump_int_registers): NEW, internal registers are a new set
4502         of general purpose registers reused by each function,
4503         * (checkAddReg): returns 1 if registers is added to set,
4504         * (pic16_groupRegistersInSection): when a registers is of type
4505         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
4506         * src/pic16/device.h: memRange and Assigned Memory are deleted,
4507         SRCASECMP macro is moved here from device.c
4508         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
4509         PO_PCLATU, PO_PRODL, PO_PRODH,
4510         * (pic16_pCodeOpType, genMinus,
4511         changed compares to "a" register, with AOP_ACC,
4512         * (pic16_genPlus): fixed some bugs and indented properly,
4513         * (pic16_addSign): changed size to size+offset in the MOVWF
4514         instruction,
4515         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
4516         multiply 8-bit operand by literal, result is 8-bit,
4517         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
4518         multiply 2 8-bit operand, result is 8-bit,
4519         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
4520         genUMult8X*_16,
4521         * src/pic16/gen.c: changed accUse to contain WREG only,
4522         * (pic16_emitcomment): renamed to pic16_emitpcomment,
4523         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
4524         true, do not use immediate addressing any more unless sym is a
4525         pointer in codespace,
4526         * (aopForRemat): do not use immediate addressing when symbol not in
4527         codespace and when symbol's address is requested,
4528         * (aopOp): for-loop in if(sym->accUse) is modified for the new
4529         accUse size (= 1),
4530         * (aopGet): added case for AOP_ACC and don't return "accumulator
4531         bug" but WREG instead,
4532         * (popGetTempReg): pushes contents of temporary register in stack,
4533         * (popReleaseTempReg): pops contents of temporary register from
4534         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
4535         * (pic16_popGet): separated case AOP_ACC to return register WREG
4536         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
4537         or PO_IMMEDIATE and initializes their instance/offset appropriately,
4538         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
4539         the use of immediate pointers to certain cases only.
4540
4541         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
4542         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
4543         * (assignResultValue, genCall, genRet): modified to use the new
4544         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
4545         genPcall is still broken,
4546         * (genFunction): added code to create 'A' type pBlocks when
4547         interrupt functions are generated, code not extensively tested yet,
4548         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
4549         * (genEndFunction): modified so ISRs pop stored registers from stack,
4550         * (genMultOneByte): cleanup,
4551         * (AccRsh): added flag andmask, to and result with appropriate mask,
4552         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
4553         * (genDataPointerGet): fixed and reenabled its use,
4554         * (genNearDataPointerGet): bugs fixed,
4555         * (genDataPointerSet): bugs fixed,
4556         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
4557         pic16_DumpSymbol, pic16_DumpOp,
4558         * src/pic16/genutils.h: function prototypes for the above functions,
4559         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
4560         pointers,
4561         * (pic16emitRegularMap): many many many improvements, but needs a
4562         major cleanup,
4563         * src/pic16/main.c: enable_stack in pic16_options is removed,
4564         * (_pic16_parseOptions): removed command line options -penable-stack,
4565         * (_process_pragma): emit stack symbol only when stack pragma is
4566         processed,
4567         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
4568         redirected to FSR0L/FSR0H pair,
4569         * (pic16_get_op, pic16_get_op2): modifications and improvements,
4570         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4571         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
4572         for immediates,
4573         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
4574         * (dumpPicOptype): NEW,
4575         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
4576         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
4577         with movff instruction,
4578         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
4579         added pic16_int_regs, some packRegsFor* functions are commented out,
4580         because produce errors,
4581         * src/pic16/NOTES: minor modifications
4582
4583 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4584
4585         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
4586         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
4587         --pack-iram.
4588         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
4589         * as/mcs51/lkaomf51.c: fixed bug #895763
4590
4591 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
4592
4593         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
4594
4595 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4596
4597         * doc/sdccman.lyx: added details about the HC08 storage classes and
4598         interrupts, fixed the register usage info for z80 & gbz80
4599
4600 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
4601
4602         * doc/sdccman.lyx: added more pic16 port documentation
4603         * device/include/pic16/: added header pic18fregs.h
4604
4605 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
4606
4607         * doc/sdccman.lyx: added Vangelis' contribution
4608
4609 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4610
4611         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
4612         extend to the next CALL or PCALL, not just to the next CALL.
4613
4614 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
4615
4616         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
4617
4618 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4619
4620         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
4621         bug #895752 and a better fix for bug #716790
4622
4623 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4624
4625         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
4626
4627 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4628
4629         * doc/sdccman.lyx: minor changes, minor changed
4630
4631 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
4632
4633         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
4634         which can't handle SDCC_NEWONEBYTEOPS,
4635         (geniCodeMultiply): removed conversion from mult to shift for pic14
4636         and pic16
4637
4638 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4639
4640         * src/hc08/gen.h,
4641         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
4642         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
4643         thus fixing bug #895406
4644
4645 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
4646
4647         * device/lib/_modsint.c,
4648         * device/lib/_modslong.c: sign follows divisor only
4649         * src/hc08/gen.c (genMultOneByte): if result size is 1,
4650         signs or signedness can be ignored
4651         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
4652         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
4653         added optimization for IFX,
4654         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
4655         arguments;
4656         reenabled optimization for IFX, which was removed on 2004-01-11
4657         * src/SDCCast.h: added return type IFX
4658         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
4659         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
4660         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
4661         SDCC_OLDONEBYTEOPS selects the old behaviour
4662         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
4663         changed again and commented promotion rule
4664         * src/SDCCval.c (valDiv): promotion no longer necessary
4665         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
4666         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
4667         rewritten
4668         * support/regression/tests/onebyte.c: added
4669
4670 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
4671
4672         * gen.c (genInline): reverted to old code for assemnling inline
4673         code because of bug reported James Chadd
4674
4675 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
4676
4677         * ralloc.h: missing declarations from previous patch,
4678         seems that patch for ralloc.h was never applied, fixed
4679
4680 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4681            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
4682
4683         * pcode.c,
4684         * pcode.h,
4685         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
4686         indirect addressing. Marked FSR0 as deprecated
4687         * gen.c (pointerCode): commented out, not needed now
4688         (pic16_popGet2p): new MOVFF helper function
4689         (genGenPointerGet),
4690         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
4691         (shiftRLong): removed duplicate debugging info
4692
4693 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4694
4695         * src/ds390/gen.c (genNearPointerGet),
4696         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
4697         optimization with bits, but not bitfields.
4698         * src/ds390/ralloc.c (packRegisters),
4699         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
4700
4701 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
4702
4703         * src/SDCCcse.c (algebraicOpts): copy operands before modification
4704
4705 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4706
4707         * src/SDCCsymt.h,
4708         * src/SDCCicode.c (operandFromSymbol),
4709         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
4710         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
4711         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
4712         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
4713         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
4714         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
4715         bug #892038
4716         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
4717         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
4718         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
4719         * src/SDCCsymt.c (newSymbol),
4720         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4721         enumerator_list),
4722         * src/SDCCval.h,
4723         * src/SDCCval.c (newiList): fixed bug #885705
4724
4725 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4726
4727         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
4728         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
4729
4730 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4731
4732         * device/include/c8051f120.h,
4733         * device/include/c8051f300.h,
4734         * device/include/c8051f310.h: added/updated header files for Silicon
4735         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
4736         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
4737         in new section Submitting patches
4738
4739 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4740
4741         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
4742         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4743         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4744         genGenPointerSet),
4745         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
4746         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4747         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4748         genGenPointerSet),
4749         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
4750         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4751         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4752         genGenPointerSet),
4753         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
4754         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4755         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4756         genGenPointerSet): fixed bug #892400
4757         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
4758         to eliminate build warnings.
4759         * src/SDCCast.c (processParms),
4760         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
4761         fixed bug 751859
4762         * support/valdiag/valdiag.py: added GCC to the list of defines active
4763         when compiling with gcc
4764
4765 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4766
4767         * support/Util/SDCCerr.h,
4768         * support/Util/SDCCerr.c,
4769         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
4770         with an incomplete type (fixed bug #883734)
4771         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
4772
4773 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4774
4775         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
4776
4777 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4778
4779         * src/SDCCast.c (decorateType),
4780         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
4781         function pointer implementation
4782         * support/regression/tests/funptrs.c: added tests to verify both forms
4783         of function pointers work correctly. Added tests to verify parameters
4784         are passed in the correct order.
4785
4786 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
4787
4788         * device.c (regCompare): registers are sorted by ascending
4789         address and increasing size,
4790         * main.c (_pic16_finaliseOptions): removed the declaration
4791         of compiler macro MCU. Now a macro of the format pic18fxxxx
4792         will be defined from the command line
4793
4794 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4795             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
4796
4797         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
4798         PCOP_RLCF was overwritten!
4799         * gen.c (genSkip): commented out calls to pic16_emitcode,
4800         * (genCmpEQ): fixed "long" compares, only high word did get compared,
4801         * (genlshTwo),
4802         * (genRRC): added debugging info,
4803         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
4804         overwritten while shifting,
4805         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
4806         overwritten while shifting,
4807         * (AccLsh),
4808         * (AccRsh),
4809         * (shiftLLeftOrResult),
4810         * (shiftRLeftOrResult),
4811         * (shiftRLong),
4812         * (shiftLLong): Implemented with pic16_emitpcode
4813         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
4814         * (genLeftShift): Fixed bug, operand for shift by variable always
4815         was "and"ed with 0x0f,
4816         * (genLeftShiftLiteral),
4817         * (genrshTwo),
4818         * (genRightShiftLiteral): added debugging info,
4819         * (genrshFour): added comment,
4820         * (genRightShift): determined signedness from operand "left"
4821         instead of "result"
4822
4823 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4824
4825         * src/SDCCicode.c (geniCodeParms),
4826         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
4827         function pointers, fixed function pointer bugs #861242 and #861896
4828
4829 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4830
4831         * device/include/c8051f000.h,
4832         * device/include/c8051f120.h,
4833         * device/include/c8051f300.h: added header files for Silicon
4834         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
4835
4836 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
4837
4838         * src/SDCCast.c (processParams): added new type flow and restructured
4839         (gatherAutoInit): added new type flow
4840         (addCast): cosmetic changes
4841         (getLeftResultType): added new type flow for array indices, patch
4842         provided by Stas, see FR #877103
4843         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
4844         array index patch by Stas
4845         * src/SDCCast.h: added prototype getResultTypeFromType()
4846         * src/SDCCval.h,
4847         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
4848         * src/pic/glue.c (pic14emitStaticSeg),
4849         * src/pic16/glue.c (pic16emitStaticSeg),
4850         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
4851         for initialization of symbols
4852         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
4853         * support/Util/SDCCerr.h:
4854         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
4855         * .version: bumped version number to 2.3.8
4856         * device/include/Makefile.in (install),
4857         * doc/Makefile (install): changed to 'rm `find ...`' construct to
4858         avoid warnings
4859
4860 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
4861
4862         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
4863         Slade Rich fixed an optimization bug
4864         * src/pic/pcodepeep.c,
4865         * src/pic/pcoderegs.c
4866         * doc/Makefile (install): added test for directory
4867
4868 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4869
4870         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
4871         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
4872         * src/pic/ralloc.c (getRegPtr, getRegGpr),
4873         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
4874         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
4875         * as/mcs51/asexpr.c (term),
4876         * as/hc08/asexpr.c (term): fixed bug #887146
4877
4878 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4879
4880         * src/z80/gen.c (genMult): handle single byte result product
4881         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
4882         DUMMY_READ_VOLATILE (fixed bug #886367)
4883
4884 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
4885
4886         * support/regression/tests/libmullong.c: fixed logic, on little endian
4887         hosts we ended without a mullong_wrapper()
4888
4889 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4890
4891         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
4892         virus/worm forged address usage.
4893
4894 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
4895
4896         Fixed promotion, it should be done on AST level:
4897         * src/SDCCast.c (addCast): added promotion to int
4898         (decorateType): updated call to upCast()
4899         * src/SDCCicode.c (geniCodeLeftShift): removed call to
4900         usualUnaryConversions()
4901
4902 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
4903
4904         * support/regression/tests/literalop.c (mulWrapper): Added a
4905         wrapper to remove integer overflow warnings.
4906
4907         * support/regression/tests/float_trans.c: Made work on host.
4908
4909         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
4910         location of sz80.
4911
4912         * support/regression/generate-cases.py (main): Changed from inline
4913         to a main method.
4914
4915         * doc/Makefile (install): Changed to depth first to get rid of
4916         missing directory install warning.
4917
4918         * as/Makefile (install-doc): Made work on Mac.
4919
4920 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
4921
4922         * src/SDCCast.c: added an additional type flow in decorateType() of
4923         opposite direction, see feature request #860006; it's enabled at runtime
4924         by setting the environment variable SDCC_NEWTYPEFLOW
4925         * src/SDCCast.h: changed prototype of decorateType()
4926         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
4927         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
4928         'char' to 'int' can be omitted, if both operands are 'unsigned char';
4929         see feature request #877103
4930         * src/SDCCval.c: updated call of decorateType()
4931         (valBitwise): fixed bug #882876
4932         (valMinus): added promotion
4933         (valLogicAndOr): result is unsigned
4934         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
4935         * src/SDCCsymt.c (computeType),
4936         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
4937         must not cause an unsigned operation
4938         * src/pic/glue (pic14emitRegularMap),
4939         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
4940
4941 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
4942
4943         * src/pic/pcode.c (PCodeID): commented out left over debug code
4944
4945 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
4946
4947         * support/valdiag/tests/overflow.c: added shift tests
4948         * src/pic/device.c,
4949         * src/pic/gen.c,
4950         * src/pic/gen.h,
4951         * src/pic/glue.c,
4952         * src/pic/main.c,
4953         * src/pic/pcode.c,
4954         * src/pic/pcode.h,
4955         * src/pic/pcodepeep.c,
4956         * src/pic/pcoderegs.c,
4957         * src/pic/ralloc.c,
4958         * src/pic/ralloc.h: applied patch from Slade Rich;
4959         added support for multiple code pages and multiple RAM banks on the
4960         PIC 14 port. The ASM files now no longer simply assume all the
4961         code / RAM are in the same page / bank. This means the linker can
4962         safely allocate code/RAM of separate ASM files to different pages/banks.
4963         * doc/sdccman.lyx: added Slade's tips
4964         * src/mcs51/peeph.def: fixed bug #880768
4965
4966 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4967
4968         * src/hc08/ralloc.c (rematStr): fixed bug #879282
4969         * src/SDCCast.c (decorateType): fixed bug #880197
4970
4971 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
4972
4973         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
4974         getopt.h.
4975
4976         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
4977         strtof is not part of C89 and isn't included with Mac OS X.
4978
4979 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4980
4981         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
4982         shiftL2Left2Result): fixed bug #879326
4983         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
4984         (genMultOneByte): fixed bug in signed vs unsigned multiplication
4985         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
4986         address fetch for clr instruction
4987         * device/lib/hc08/_mulint.c: created optimized assembly version
4988         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
4989
4990 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
4991
4992         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
4993         proposed in FR #877103
4994
4995 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
4996
4997         * src/SDCCval.c (cheapestVal): added missing checks
4998         * src/SDCCicode.c (usualBinaryConversions): fixed condition
4999         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
5000
5001 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
5002
5003         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
5004         equal operands
5005
5006 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
5007
5008         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
5009         loaded with the linker search paths (-L arguments) and the libraries
5010         to be linked with the current source (-l arguments). Changes
5011         currently will affect only the pic16 port.
5012         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
5013         include path the port specific paths and port specific libraries,
5014         * gplink command now contains the $3 argument,
5015         * src/pic16/device.h,
5016         * src/pic16/device.c,: structure PIC_device is made public and
5017         renamed to PIC16_device, the same for variable Pics which is renamed
5018         to Pics16. Updated all references to them.
5019         * src/pic16/glue.c (pic16glue): corrected bug with code
5020         initialization which bypassed the variable initializations block.
5021
5022         * device/lib/pic16/Makefile.rules: removed --penable-stack from
5023         COMPILE_FLAGS and added the --nostdinc option
5024
5025 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5026
5027         * device/include/mc68hc908jb8.h: Register defs for another member
5028         of the hc08 family. Contributed by Bjorn Bringert - thanks!
5029
5030 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
5031
5032         Documenting changes from previous commits.
5033         * configure.in (version 1.56),
5034         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
5035         when generating output files to configure the pic16 library,
5036         but now I've commented it out, since gputils aren't installed in the
5037         SF compile farm, so library won't compile
5038
5039         * device/lib/Makefile.in (version 1.56): initially I've added in
5040         target 'all' the prerequestive 'model-pic16' so it compiled the
5041         pic16 library, but now I've commented it out for the same reasons
5042         above,
5043         * added targets 'model-pic16' and 'objects-pic16' to compile the
5044         library
5045         * added target 'port-specific-objects-pic16' to handle the
5046         generated libraries and copy them into the build/ directory
5047         * added target 'clean-intermediate-pic16' to clean intermediate
5048         files into pic16 directory
5049         * in target 'installdirs' added line to create directory pic16 in
5050         the installation path
5051
5052         * device/include/Makefile.in (version 1.11): in target 'install'
5053         added lines to copy all header files to installation path,
5054         * in target 'installdirs' added line create directory for pic16
5055         headers in the installation path
5056
5057 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
5058
5059         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
5060          a function call
5061
5062 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
5063
5064         * configure,
5065         * device/lib/configure.in,
5066         * device/lib/configure: fixed for autoconf 2.57
5067
5068 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5069
5070         * src/z80/main.c (_parseOptions): fixed the portmode= command line
5071         option so that it actually works. Made it specific to the z80, since
5072         the gbz80 doesn't have these kinds of I/O ports.
5073
5074 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5075
5076         * device/include/z180.h,
5077         * device/lib/_memcpy.c,
5078         * device/lib/_memmove.c,
5079         * device/lib/_mulint.c,
5080         * device/lib/ser_ir.c,
5081         * device/lib/ser_ir_cts_rts.c,
5082         * device/lib/_strcmp.c,
5083         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
5084         * src/z80/main.c (_process_pragma): add support for pragmas bank and
5085         portmode; added deprecation warning for bank= and protmode= forms.
5086         Also, guard against buffer overflow.
5087         * src/z80/gen.c (aopGet): generate better code for sfr banked read
5088
5089 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5090
5091         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
5092         changed interrupt vector table generation to only emit declared vectors.
5093         * device/include/Makefile.in: added missing backslash
5094         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
5095
5096 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5097
5098         Mainly changes to support compilation of the device libraries
5099         * src/pic16/device.c: stack is allocated via symbol and not
5100         via literal number. The symbol is placed in the corresponding
5101         position of the data ram
5102         * (pic16_dump_section): relocatable and absolute uninitialized
5103         data are now emitted in sorted order to reduce section naming,
5104         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
5105         weren't marked as being in the access bank,
5106
5107 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5108
5109         Added portion of GNU PIC Library under the directory
5110         device/include/pic16 and device/lib/pic16. These files
5111         contain the declarations of SFRs for the PIC18Fxx2 devices.
5112         The directory is initialized via configure from toplevel.
5113
5114 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
5115
5116         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
5117         the spilllocations to be compared correctly
5118
5119 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5120
5121         * src/SDCCast.c (decorateType): fixed bug introduced today
5122
5123 2004-01-12  Borut Razem <borut.razem AT siol.net>
5124
5125         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
5126         doc/sdccman.lyx: upper case pragmas are deprecated
5127
5128 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5129
5130         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
5131         in simpler and even better code
5132
5133 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
5134
5135         * src/SDCCicode.c (operandOperation): fixed bug #874819
5136         * src/SDCCast.c (decorateType): fixed
5137         char foo (unsigned long ul) { return ul > 0; }
5138
5139 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5140
5141         * doc/sdccman.lyx: Moved and added some sections, small changes
5142         all over. Telling LaTeX to be less strict with word spacing
5143         to better keep the right margin. Changed some notes about
5144         maintainance of the ports in section 3.2.1 - is it OK like this?
5145
5146 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
5147
5148         SDCC source changes:
5149         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
5150         convilong): modified to inform the pic16 port that builtin functions
5151         are external
5152
5153         PIC16 PORT specific changes:
5154         * src/pic16/device.c pic16_dump_equates() added,
5155         processor registers declared internally by the port are emitted in
5156         the translation as equates,
5157         * src/pic16/gen.c: inline code is passed unprocessed to the
5158         translation,
5159         * (pic16_popGetLit2): fnuction modified to take second operand as
5160         pCodeOp pointer and not as literal,
5161         * (popRegFromIdx): prefixed with pic16_,
5162         * (pic16_popCombine2): modified to receive already allocated pCode
5163         operands,
5164         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
5165         * (genFunction): initializes local stack frame and pushes on stack
5166         all the registers used by this function,
5167         * (genEndFunction): restores all registers from stack and restores
5168         stack frame,
5169         * src/pic16/glue.c (pic16emitRegularMap): various changes and
5170         improvements,
5171         * (pic16glue): changed the program startup sequence,
5172         * added new dbName code 'A' for functions placed in absolute section
5173         * src/pic16/main.c: added function attribute _naked,
5174         * added pragma 'code' to place a fnuction at an absolute address,
5175         * added command line arguments --debug-ralloc and --pcode-verbose,
5176         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
5177         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
5178         * (pic16_newpCodeOpLit2): modified to take the second operand as
5179         pCodeOp pointer,
5180         * (pic16_printpBlock): modified to emit each function in a separate
5181         section,
5182         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
5183         UPPER for immediate operands,
5184         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
5185         instruction,
5186         * src/pic16/peeph.def: all peepholes with movff are commented out,
5187         because there is a problem in the pcode peep optimizer,
5188         * src/pic16/ralloc.c: the register allocator can now reuse local
5189         function symbols for another function. This saves register usage.
5190         * src/pic16/ralloc.h: added flag isLocal in structure regs,
5191
5192         Added file src/pic16/NOTES with information about program writing on
5193         the current port version.
5194
5195 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5196
5197         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
5198         and peephole 252 (array access)
5199
5200 2004-01-09  Borut Razem <borut.razem AT siol.net>
5201
5202         * src/SDCCmain.c : fixed #872250: -l command line defined library
5203           files are scanned before standard library files
5204
5205 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5206
5207         * src/SDCCast.c (decorateType): fixed bug #874046
5208
5209 2004-01-09  Borut Razem <borut.razem AT siol.net>
5210
5211         * support/scripts/sdcc.nsi: remove previous installation
5212
5213 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5214
5215         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
5216         bytes for last interrupt vector (mcs51)
5217         * sdcc.spec: fixed typo
5218
5219 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5220
5221         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
5222         gen51Code): more efficient parameter receive for --model-large
5223         ("bug" #845294)
5224
5225 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5226
5227         * src/ds390/main.c,
5228         * src/z80/main.c: added missed needLinkerScript flags (more than
5229         one port structure defined in these file)
5230         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
5231         bug #795325
5232
5233 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
5234
5235         * src/SDCCmain.c: removed various references to DEFAULT_PORT
5236         * src/port.h: added flag needLinkerScript in port->linker
5237         structure to inform whether to create a .lnk file or not,
5238         * src/avr/main.c,
5239         * src/ds390/main.c,
5240         * src/hc08/main.c,
5241         * src/mcs51/main.c,
5242         * src/pic/main.c,
5243         * src/pic16/main.c,
5244         * src/xa51/main.c,
5245         * src/z80/main.c: changed appropriately to configure
5246         needLinkerScript flag
5247         * src/pic/gen.c,
5248         * src/pic16/gen.c (genAddrOf): fixed bug #863624
5249         * src/pic/glue.c: added variable udata_section_name to
5250         override default uninitialized data segment definition for
5251         devices only with SHAREBANK memory (reported from Erik Epetrich)
5252         * (pic14emitOverlay): modified to emit a commented overlay segment
5253         directive when no overlay data exist
5254         * (picglue): modified to emit uninitialized data segment
5255         according to udata_section_name
5256         * src/pic/main.c (_pic14_parseOptions): added command line
5257         options --udata-section-name=[name] to override default
5258         udata definition name
5259         * modified _linkCmd and _asmCmd to include compiler passed
5260         arguments via -W option
5261         * src/pic16/main.c: added $l in _asmCmd, changed extension for
5262         object file from '.rel' to '.o' in port->linker structure,
5263         changed size of fptr from 2 to 3 in port structure
5264
5265 2004-01-07  Borut Razem <borut.razem AT siol.net>
5266
5267         * support/scripts/sdcc.nsi: update PATH
5268         * support/scripts/sdcc.ico: craeted
5269
5270 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
5271
5272         * device/include/Makefile.in: fix install
5273         * doc/Makefile: fix install
5274
5275 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5276
5277         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
5278         in bug #860505
5279         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
5280         how the function variable allocation summary is displayed; also
5281         include information about variables allocated to the overlay
5282         segment
5283
5284 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5285
5286         * as/mcs51/lkmain.c: Help about -Y option
5287         * as/mcs51/lkarea.c: Fixed gcc warnings
5288
5289 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5290
5291         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
5292         fixed warning
5293         * support/valdiag/tests/overflow.c: added
5294         * src/SDCCast.c (decorateType),
5295         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
5296         LEFT_OP (left shift)
5297
5298 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5299
5300         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
5301         (default behaviour).
5302
5303 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5304
5305         A python script to validate compiler diagnostic messages. It can be
5306         used to verify that sdcc complains about bad c source code and
5307         gives a good location of the error.
5308         * support/valdiag/Makefile,
5309         * support/valdiag/valdiag.py,
5310         * support/valdiag/tests/*
5311
5312 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5313
5314         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
5315         * src/SDCCsymt.c (newEnumType),
5316         * src/SDCCsymt.h
5317         * support/Util/SDCCerr.c,
5318         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
5319         enum related bugs.
5320         * support/regression/tests/enum.c: added test for enum values that
5321         require at least 2 bytes of storage.
5322
5323 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5324
5325         * src/common.h: added ifndef/define/endif macros
5326         around the header file.
5327         Bug reported from Jesus Calvino-Fraga
5328
5329 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5330
5331         * sdcc.spec: updated
5332         * device/include/Makefile.in: don't install CVS directories
5333         * device/lib/Makefile.in: added removal of CVS directories after install
5334         * doc/Makefile: fixed install, added local_icons
5335         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
5336         * src/mcs51/gen.c (genRightShift): fixed bug #870788
5337         * src/ds390/gen.c (genRightShift): fixed bug #870788
5338         * src/SDCCast.c (decorateType): fixed bug #870781
5339
5340 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5341
5342         PIC16 port related changes:
5343         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
5344         added variable stackPos,
5345
5346         * gen.c: genCall, assignResultValue: added support for
5347         pushing/retrieving function parameters to/from stack,
5348         genFunction,genEndFunction: setup stack frame for the
5349         generated function,
5350         genAddrOf: will be changed according to bug 863624
5351
5352         * added files genutils.c and genutils.h which contain gen*
5353         debugged and optimised functions extracted from gen.c
5354
5355         * glue.c: added variable 'externs' which holds extern symbols,
5356         pic16emitRegularMap: is modified to properly handle relocatable
5357          symbols under the new scheme,
5358         pic16createInterruptVect: is modified
5359         pic16printPublics: is modified to emit 'global' assembler directives,
5360         added pic16_printExterns to print extern symbols,
5361         pic16glue: initializes stack/frame pointer in the beginning of
5362         the assembly output. Temporary hack, will be corrected later,
5363         because gplink yet does not support stack and SDCC does not
5364         yet support a type of crt0.o object to create the final binary.
5365
5366         * Removed many lines that contain 8051 legacy code.
5367         * The code is finally placed under a 'code' directive.
5368         * Added port specific options.
5369
5370         * _process_pragma: simplified since now we do not need *special*
5371         include file to define SFR registers. But a separate header
5372         will be needed. This will be developed later.
5373         * _pic16_parseOptions: added, parses port specific options:
5374         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
5375         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
5376         --preplace-udata-with=
5377
5378         * _pic16_setDefaultOptions: modified to initialize section names,
5379         but hack is temporarly out of order since it needs improvement.
5380         * _pic16_genAssemblerPreamble: configuration words are emitted by
5381         their address instead of their name. This part is incomplete and
5382         supports only the 18Fxx2 devices. Other devices will emit an error
5383         during assembly since they do not contain the same set of config
5384         registers
5385         * _pic16_genIVT: is modified,
5386
5387         * pcode.c: added definitions for some hardware registers that are needed
5388         for stack support
5389         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
5390         All PCI entries are updated. Now LFSR is supported.
5391         * Removed pic16_pciTRIS is mentioned by mdubuc in source
5392         * added pic16_newpCodeOpLit2 to support instructions with
5393         two literal arguments
5394         * pic16_pCode2str: corrected code that emits assembler instructions
5395         with two literal operands and those that have an access bit modifier
5396         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
5397         this fixes a bug which caused some labels to be lost, when an
5398         assembler directive was added, i.e. banksel,
5399         * pic16_FixRegisterBanking: improved logic that causes the insertion
5400         of bank switching,
5401         * InlineFunction: functions that are called once, are not any more
5402         inlined. This can be a port option in the future,
5403
5404         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
5405
5406         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
5407         hold the corresponding uninitialized symbols,
5408         * pic16_allocProcessorRegister: registers have explicit marked the
5409         accessBank field,
5410         * pic16_allocInternalRegister: registers are explicit marked as
5411         not used,
5412         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
5413         processing list, so bit registers were lost,
5414         *
5415
5416         * ralloc.h: added field 'accessBank' and original symbol operand
5417         in register definition,
5418         * removed the field isMapped from register definition,
5419
5420         ** Several functions have been removed from various sources:
5421         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
5422         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
5423         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
5424         pic16_assignRelocatableRegisters
5425
5426         ** others have been introduced:
5427         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
5428         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
5429
5430 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
5431
5432         * support/scripts/inc2h.pl: changed definition of BIT_AT
5433         to emit 'sbit at' instead of 'bit at'. This was a request.
5434
5435         PIC16 port related preliminary changes:
5436         * gen.c: prefixed function popRegFromString with
5437         pic16_ and all references to it corrected
5438         * pcode.c: all pic16_pc_* hardware registers prefixed
5439         with underscore (_),
5440         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
5441         * ralloc.c: newReg(): when register is REG_SFR then
5442         set address to rIdx,
5443         pic16_allocProcessorRegister(): marks register wasUsed=0
5444         pic16_writeUsedRegs(): added a call to assign processor
5445         registers via pic16_assignFixedRegisters
5446
5447 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5448
5449         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
5450         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
5451         variables in unused register banks.  Also the SSEG is placed
5452         wherever there is enough space for it, and IDATA can be anywhere
5453         in internal RAM.  For now compile using -Wl-Y[stack_size].
5454         The mem file is different for this option as well, since it
5455         makes no sense of talking about DSEG lenght.
5456
5457 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
5458
5459         * src/SDCClrange.c: fixed bug 869095 that caused segfault
5460         in certain cases, e.g. when ROM assignment, patch provided
5461         from Albert den Haan.
5462
5463 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
5464
5465         Many signedness and type propagation fixes:
5466         * src/SDCCicode.c: made geniCodeCast() static
5467         replaced SPEC_ by IS_ (cosmetic)
5468         (operandOperation): fixed div and mod operation
5469         (usualBinaryConversions): added support for promotion of char
5470         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
5471         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
5472         (geniCodeAdd): an array index will stay unsigned, even if promoted
5473         from char to int
5474         (geniCodeArray): ditto
5475         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
5476         * src/SDCCsymt.c (computeType): added more support for char;
5477         promotion of char is selectable by promoteCharToInt, fixed signedness
5478         for all cases
5479         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5480         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5481         * src/SDCCval (val*): replaced signedness calculation by
5482         computeType()
5483         rearranged if-branches (cosmetic)
5484         (valShift): added warning W_SHIFT_CHANGED
5485         (valCompare): fixed problem with different types
5486         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
5487         * support/regression/tests/literalop.c: added many cases
5488         * support/regression/tests/ast_constant_folding.c: changed finally to
5489         'unsigned int'
5490         * .version: new year, new version: 2.3.7
5491         * src/SDCCmain.c (main): applied patch #866468
5492         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
5493         provided by Scott Bronson
5494         * doc/sdccman.lyx: updated documentation for sdcdb
5495         updated and added chapter tips
5496
5497 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5498
5499         * src/SDCCsymt.h: missing from yesterday's commits
5500
5501 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5502
5503         * src/SDCC.y (struct_or_union_specifier),
5504         * support/Util/SDCCerr.c,
5505         * support/Util/SDCCerr.h: verify that struct & union tags are used
5506         as declared.
5507
5508 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5509
5510         * src/SDCCglobl.h: missing from yesterday's commits
5511
5512 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5513
5514         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
5515         sft_attributes, struct_declaration, parameter_declaration,
5516         type_name, start_block, declaration_list),
5517         * src/SDCC.lex (check_type): support redefinition of typedef names
5518
5519 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5520
5521         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
5522         aligned xdata arrays. Erik helped me with the if clause.
5523
5524 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5525
5526         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
5527         warning
5528
5529 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5530
5531         * src/SDCCast.h,
5532         * src/SDCCast.c (newAst_),
5533         * src/SDCCicode.h,
5534         * src/SDCCicode.c (ast2iCode, newiCode),
5535         * src/SDCCglobl.h,
5536         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
5537         expr, statement, expression_statement, selection_statement,
5538         iteration_statement, expr_opt, jump_statement): foundation for tracking
5539         sequence points
5540         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
5541         point code too)
5542
5543 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5544
5545         * support/Util/SDCCerr.c,
5546         * src/SDCCast.h,
5547         * src/SDCCast.c (createCase, createDefault, decorateType),
5548         * src/SDCClabel.c (labelUnreach),
5549         * src/SDCC.y (labeled_statement, jump_statement): More improvements
5550         to error messages.
5551         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
5552         (with thanks to Stas Sergeev)
5553         * device/include/time.h,
5554         * device/lib/time.c (CheckTime): suppress unreachable code warning
5555
5556 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5557
5558         * src/SDCCast.c (createIvalCharPtr),
5559         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
5560         bug #753752)
5561         * support/regression/tests/nullstring.c: tests for these two bugs
5562
5563 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5564
5565         * support/Util/SDCCerr.h,
5566         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
5567         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
5568         about storage class and 'at' used inside struct or union
5569         * src/SDCCBBlock.c (iCodeFromeBBlock),
5570         * src/SDCCcse.c (ifxOptimize),
5571         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
5572         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
5573         printIval, emitStaticSeg, emitOverlay),
5574         * src/SDCClabel.c (deleteIfx),
5575         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
5576         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
5577         gatherAutoInit, processParms),
5578         * support/Util/SDCCerr.h,
5579         * support/Util/SDCCerr.c (werrorfl): Support for better error location
5580         reporting for post-parse errors.
5581
5582 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5583
5584         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
5585         implicit casts via union; they don't work on big endian systems
5586         (possible fix for bug #861138)
5587
5588 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5589
5590         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
5591         * src/mcs51/main.c: fixed the fix for bug #737001
5592
5593 2003-12-15  Borut Razem <borut.razem AT siol.net>
5594
5595         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
5596
5597 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5598
5599         * support/makebin/makebin.c: put output in binary mode
5600
5601 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5602
5603         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
5604         xdata and data memory on startup. Set the environment variable
5605         SDCC_NOGENRAMCLEAR to disable this.
5606         * src/mcs51/peephole.def,
5607         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
5608         (allows non-interrupt and interrupt code to safely compete for a resource
5609         without the non-interrupt code having to disable interrupts)
5610
5611 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5612
5613         * src/SDCCicode.c (geniCodeAdd),
5614         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
5615         with valFromType if type might be a pointer and host is big endian).
5616         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
5617         types, not just integer types.
5618         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
5619         multiply defined with mismatching "at" address.
5620
5621 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5622
5623         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
5624         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
5625         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
5626         with embedded nulls (fixed bug #753752)
5627
5628 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5629
5630         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
5631         Apparently this did not see much testing (endless loop)
5632
5633 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5634
5635         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
5636
5637 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5638
5639         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
5640         gracefully handle NULL memmap pointers
5641
5642 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5643
5644         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
5645         instead of deleting the iCode when an operand is volatile
5646         * src/z80/gen.c (genDummyRead),
5647         * src/mcs51/gen.c (genDummyRead),
5648         * src/ds390/gen.c (genDummyRead),
5649         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
5650         not just IC_RIGHT
5651         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
5652         * src/SDCC.y: fixed bug #850420
5653
5654 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5655
5656         Applied z80 i/o port patch from Peter Townson and fixed some operators
5657         to better handle operands in A register.
5658         * device/include/z180.h
5659         * src/SDCC.y
5660         * src/SDCCglue.c
5661         * src/z80/gen.c
5662         * src/z80/gen.h
5663         * src/z80/main.c
5664         * src/z80/peeph-z80.def
5665         * src/z80/peeph.def
5666         * src/z80/z80.h
5667
5668 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5669
5670         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
5671
5672 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5673
5674         * device/lib/hc08/_mullong.c: Removed extra #endif
5675
5676 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5677
5678         * sim/ucsim/hc08.src/inst.cc,
5679         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
5680         carries from x to h
5681         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
5682         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
5683         * device/include/stdarg.h: fixed varargs for hc08
5684         * device/lib/Makefile.in,
5685         * device/lib/hc08/Makefile,
5686         * device/lib/hc08/_mulint.c,
5687         * device/lib/hc08/_mullong.c: fixed some endian problems
5688
5689 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5690
5691         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
5692         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
5693         * device/lib/_gptrget.c,
5694         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
5695
5696 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5697
5698         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
5699         * src/SDCCast.c (astErrors): fixed bug #846007
5700         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
5701
5702 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5703
5704         * src/SDCCast.c (decorateType): disabled a transformation I added in
5705         revision 1.188 (access to fields of a structure at an absolute address);
5706         it breaks with bitfields, extern declarations, and gcse analysis.
5707         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
5708         could be assigned through a pointer, so don't complain.
5709         * src/SDCCast.c (astErrors),
5710         * src/SDCCast.h,
5711         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
5712
5713 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
5714
5715         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
5716         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
5717         output of __config directives, since gpasm now supports them
5718         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
5719         pre-processor macro, i.e. -DMCU=p18f452
5720         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
5721         and modified to handle 'cast' icode similarly to '=' icode
5722         * src/pic16/device.h (typedef struct PIC_device): added field
5723         'extMIface' to indicate that chip has external memory interface
5724         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
5725         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
5726         18F8720
5727
5728 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5729
5730         * src/SDCC.y (pointer): fixed bug #846006
5731         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
5732         * src/SDCCast.c (decorateType): fixed bug #846009
5733         * src/ds390/peeph.def,
5734         * src/ds390/gen.c (genAnd, genOr),
5735         * src/mcs51/peeph.def,
5736         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
5737
5738 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5739
5740         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
5741         * src/SDCCdflow.c
5742         * src/SDCCcse.c
5743         * src/SDCCcse.h
5744         * src/SDCCBBlock.h
5745         * src/SDCCBBlock.c
5746
5747 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
5748
5749         fixed bug #845089
5750         * src/SDCCbitv.h,
5751         * src/SDCCbitv.c: added function to free a bitvector
5752         * src/SDCClrange.h,
5753         * src/SDCClrange.c: added function to recompute the liveranges
5754         * src/avr/ralloc.c,
5755         * src/ds390/ralloc.c,
5756         * src/hc08/ralloc.c,
5757         * src/mcs51/ralloc.c,
5758         * src/pic/ralloc.c,
5759         * src/pic16/ralloc.c,
5760         * src/xa51/ralloc.c,
5761         * src/z80/ralloc.c: recompute the liveranges after register packing
5762
5763 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
5764
5765         * src/SDCCloop.c (newInduction): fixed bug #845630
5766
5767 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5768
5769         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
5770         inadvertantly left behind from my 2003-11-12 change
5771
5772 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5773
5774         Updated headers I neglected to commit yesterday.
5775         * src/SDCClrange.h,
5776         * src/SDCCicode.h
5777
5778 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5779
5780         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
5781         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
5782         * src/SDCCopt.c (eBBlockFromiCode),
5783         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
5784         the creation of the key hash table from the sequencing so it can be used
5785         earlier (for some GCSE bug fixes still pending)
5786
5787 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5788
5789         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
5790         * support/regression/tests/addsub.c: testing genPlus shortcut
5791
5792 2003-11-15  Borut Razem <borut.razem AT siol.net>
5793
5794         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
5795
5796 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5797
5798         * src/SDCCcse.c (cseBBlock): fixed bug #527779
5799         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
5800         ordering is immaterial.
5801         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
5802
5803 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5804
5805         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
5806         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
5807         (SIGSEV) of bug #840381
5808         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
5809         unlink new file before rename if new and old filenames are the same)
5810
5811 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5812
5813         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
5814         uninitialized variables) for the mcs51. Set environment variable
5815         SDCC_GENRAMCLEAR to test.
5816         xdata initialization slightly shorter
5817
5818 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5819
5820         * src/SDCCsymt.h,
5821         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
5822         #838241 & 780691 (basicly the same bug)
5823         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
5824         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
5825
5826 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
5827
5828         * src/SDCCmain.c (linkEdit): "fix" #834252
5829
5830 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5831
5832         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
5833         * src/SDCCast.h,
5834         * src/SDCC.y: fixed bug #819403
5835
5836 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5837
5838         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
5839         the reentrant attribute.
5840         * src/hc08/gen.c (genPackBits): added missing stack readjustment
5841         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
5842         simulation
5843         * src/SDCCast.c (decorateType): fixed bug with storage class not being
5844         updated during pointer dereference; f.e. ~(((char *)1)*) was being
5845         erroneously reduced to a literal.
5846         * src/hc08/ralloc.c (packRegisters, rematStr),
5847         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
5848         some cases
5849
5850 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5851
5852         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
5853         * doc/sdccman.lyx: changed from 'article' to 'book'
5854         * doc/Makefile: readded test_suite_spec and cdbfileformat
5855
5856 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
5857
5858         * device/include/stdlib.h: include malloc.h to comply with ANSI
5859         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
5860
5861 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5862
5863         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
5864         * doc/clean.mk: also remove *.out files
5865         * doc/sdccman.lyx: some additions, larger top/bottom margins
5866
5867 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5868
5869         * src/SDCC.y: fixed bug #837365
5870         * support/regression/tests/bitopcse.c
5871         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
5872         a symbol (might be valop instead)
5873         * device/lib/Makefile.in: added errno.c to HC08SOURCES
5874         * device/lib/clean.mk: added hc08 to the cleaning list
5875
5876 2003-11-04  Borut Razem <borut.razem AT siol.net>
5877
5878         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
5879           made 2003-11-04
5880         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
5881           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
5882           malloc is declared in standard stdlib.h
5883
5884 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5885
5886         * device/lib/hc08/Makefile: need to clean .rel not .o files
5887         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
5888
5889 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5890
5891         * src/port.h,
5892         * src/hc08/main.c,
5893         * src/mcs51/main.c,
5894         * src/ds390/main.c,
5895         * src/z80/main.c,
5896         * src/avr/main.c,
5897         * src/pic/main.c,
5898         * src/pic16/main.c,
5899         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
5900         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
5901         tests (which uses the port's oclsExpense function)
5902         * src/SDCC.y,
5903         * src/SDCCast.c,
5904         * src/SDCCicode.c,
5905         * src/hc08/gen.c,
5906         * src/ds390/gen.c,
5907         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
5908
5909 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5910
5911         * src/SDCCcse.c (ifxOptimize),
5912         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
5913         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
5914         deleting the IFX iCode.
5915         * src/hc08/ralloc.c: reduced unneeded slocs
5916         * src/hc08/gen.c: fixed bug in asmopToBoolean
5917
5918 2003-11-04  Borut Razem <borut.razem AT siol.net>
5919
5920         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
5921           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
5922           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
5923           transferred to configure
5924
5925 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
5926
5927         Use headers defined in the C[++] standards:
5928         * sim/ucsim/gui.src/serio.src/fileio.cc
5929         * sim/ucsim/gui.src/serio.src/frontend.cc
5930         * sim/ucsim/gui.src/serio.src/main.cc
5931         * sim/ucsim/gui.src/serio.src/posix_signal.cc
5932         * support/Util/NewAlloc.c
5933         * as/hc08/lklibr.c
5934         * as/mcs51/lklibr.c
5935         * as/z80/aslist.c
5936         * as/z80/assym.c
5937
5938 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5939
5940         * Added MSVC projects for hc08 assembler and linker:
5941         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
5942         /as/hc08/link_hc08.dsp
5943
5944 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
5945
5946         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
5947
5948 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
5949
5950         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
5951
5952 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5953
5954         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
5955
5956 2003-10-31  Borut Razem <borut.razem AT siol.net>
5957
5958         * support/cpp2/cpplib.h,
5959           support/cpp2/cpplib.c,
5960           support/cpp2/cpplex.c,
5961           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
5962           to switch _asm block preprocessing on / off. Default is
5963           #pragma preproc_asm +
5964
5965 2003-10-31  Borut Razem <borut.razem AT siol.net>
5966
5967         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
5968           when outputting comment blocks (when executed with -C option) and
5969           _asm (SDCPP specific) blocks
5970
5971 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5972
5973         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
5974
5975 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
5976
5977         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
5978
5979 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
5980
5981         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
5982         * src/SDCCast.c (decorateType): fixed bug #832664
5983
5984 2003-10-31  Borut Razem <borut.razem AT siol.net>
5985
5986         * support\cpp2\cpplex.c: fixed for SDCPP:
5987           comments(when executed with -C option) and _asm blocks
5988           were included even if they where in skipped #if block.
5989           Applied solution from GCC cpp 3.3.2
5990
5991 2003-10-31  Borut Razem <borut.razem AT siol.net>
5992
5993         * src/SDCC.lex: sdcc now understands both formats:
5994           '# <line_number> <file_name>' and
5995           '#line <line_number> <file_name>'
5996         * support/cpp2/cppmain.c: sdcpp now generates the standard
5997           '# <line_number> <file_name>' instead of former
5998           '#line <line_number> <file_name>'
5999
6000 2003-10-30  Borut Razem <borut.razem AT siol.net>
6001
6002         * support/cpp2/cpphash.h,
6003         * support/cpp2/cpplib.h
6004         * support/cpp2/cpplex.c,
6005         * support/cpp2/cppmain.c,
6006         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
6007
6008 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6009
6010         Fixed a number of problems revealed by bug #827883.
6011         * src/SDCCloop.c (loopInvariants): Spill location of the
6012         result operand should be recomputed if extracted from
6013         a loop. Also, don't extract assignments of an iTemp
6014         from a literal.
6015         * src/SDCCast.c (isConformingBody): loop reversal should
6016         not occur if the control variable is involved with a
6017         relational operator.
6018
6019 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
6020
6021         * .version: bumped to 2.3.6 to reflect the big improvements
6022         made by Erik and Klaus. Thanks!
6023
6024 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
6025
6026         Replaced the livrange code.
6027         * src/SDCClrange.c: added new LR code
6028         * src/SDCCloop.c,
6029         * src/SDCCBBlock.h: removed remainig parts from old LR code
6030         * src/ds390/ralloc.c,
6031         * src/ds390/gen.c: minor fixes to make it work with new code
6032
6033 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6034
6035         * as/hc08/asm.h,
6036         * as/hc08/lkrloc.c,
6037         * src/hc08/gen.c,
6038         * src/hc08/ralloc.c: Fix various warnings related to the hc08
6039         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
6040         (tweaked fix for bug #818696)
6041
6042 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6043
6044         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
6045
6046 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6047
6048         * src/SDCCmain.c,
6049         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
6050         * src/mcs51/gen.c (gencjneshort),
6051         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
6052         more efficient (per Scott Bronson's suggestion)
6053
6054 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6055
6056         Extended the semantics of the critical keyword to include
6057         individual statements. See RFE #827755 and #799831
6058         * src/SDCC.y
6059         * src/SDCCicode.c
6060         * src/SDCCopt.c
6061         * src/SDCCast.c
6062         * support/Util/SDCCerr.c
6063         * support/Util/SDCCerr.h
6064         * src/mcs51/gen.c
6065         * src/ds390/gen.c
6066         * src/hc08/gen.c
6067
6068 2003-10-19  Borut Razem <borut.razem AT siol.net>
6069
6070         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
6071
6072 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6073
6074         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
6075         Fixed bug #818696
6076         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
6077         and predecrement operand is displayed
6078
6079 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6080
6081         * src/SDCCval.c (valMinus): fixed bug #826041
6082
6083 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6084
6085         Some hc08 related updates that I missed earlier
6086         * sim/ucsim/stypes.h
6087         * support/regression/ports/hc08/spec.mk
6088
6089 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6090
6091         New target "hc08" for the Motorola 68hc08 family of micros
6092
6093         * configure
6094         * configure.in
6095         * Makefile
6096         * src/hc08/*
6097         * src/SDCCmain.c
6098         * src/port.h
6099         * sim/ucsim/hc08.src/*
6100         * sim/ucsim/configure.in
6101         * src/ucsim/configure
6102         * sim/ucsim/packages_in.mk
6103         * as/hc08/*
6104         * as/Makefile
6105         * device/include/mc68hc908qy.h
6106         * device/lib/hc08/*
6107         * device/lib/Makefile.in
6108         * support/regression/ports/hc08/*
6109         * support/regression/Makefile
6110
6111 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6112
6113         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
6114         regression test
6115         * src/ds390/gen.c (genCast): fixed bug #821957
6116
6117 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6118
6119         * device/lib/logf.c: "fixed" overlay bug
6120         * support/regression/ports/host/spec.mk: added m library
6121         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
6122         * support/regression/tests/float_trans: added (for Eric)
6123
6124 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
6125
6126         * src/mcs51/gen.c (genCpl): fixed bug
6127         http://sf.net/mailarchive/message.php?msg_id=6263915
6128
6129 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
6130
6131         * src/SDCCast.c (decorateType): added extended constant folding
6132         * src/SDCCsymt.c (computeType): cleanup
6133         * src/SDCCval.c (valShift): minor optimization
6134         * support/regression/tests/ast_constant_folding.c: added
6135
6136 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6137
6138         * src/SDCCmain.c: removed some unintended changes
6139
6140 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6141
6142         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
6143         * src/z80/gen.c: fixed part of bug #817589
6144         * src/SDCCsymt.c (checkFunction): fixed bug #817895
6145
6146 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
6147
6148         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
6149         * src/SDCCcflow.c
6150         * src/SDCCcse.c
6151         * src/SDCCdflow.c
6152         * src/SDCClabel.c
6153         * src/SDCClrange.c
6154         * src/SDCCmem.c
6155         * src/SDCCopt.c
6156         * src/SDCCpeeph.c
6157         * src/SDCCset.c
6158         * src/avr/ralloc.c
6159         * src/ds390/ralloc.c
6160         * src/izt/ralloc.c
6161         * src/mcs51/ralloc.c
6162         * src/pic/ralloc.c
6163         * src/pic16/ralloc.c
6164         * src/xa51/ralloc.c
6165         * src/z80/ralloc.c
6166         * src/z80/gen.c: removed unused label "release:"
6167
6168 2003-10-06  Borut Razem <borut.razem AT siol.net>
6169
6170         * src/SDCC.lex: removed definition of unused variables
6171           save_optimize and save_options
6172
6173 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
6174
6175         * clean.mk: removed '=' in "-maxdepth=1"
6176         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
6177         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
6178
6179 2003-10-06  Borut Razem <borut.razem AT siol.net>
6180
6181         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
6182           my_unput() replaced by unput()
6183
6184 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
6185
6186         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
6187         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
6188         type-punned pointer will break strict-aliasing rules"
6189         Old LR behaviour is again default; Klaus' LR can be choosen by
6190         defining the environment variable LRKLAUS
6191         * src/SDCCBBlock.h
6192         * src/SDCCloop.c
6193         * src/SDCClrange.c
6194         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
6195         * clean.mk: fixed removal of files in bin/CVS/
6196         * device/lib/clean.mk: fixed removal of directories small and large
6197         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
6198         * src/SDCCicode.c,
6199         * src/SDCCval.c: removed superflous test for pedantic
6200
6201 2003-10-05  Borut Razem <borut.razem AT siol.net>
6202
6203         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
6204           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
6205           message "unmatched #pragma SAVE and #pragma RESTORE"
6206
6207 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6208
6209         * doc/sdccman.lyx: various additions and updates (interrupts, inline
6210           assembly, critical functions, atomic, nojtbound)
6211
6212 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
6213
6214         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
6215         * src/SDCCBBlock.h
6216         * src/SDCCloop.c
6217         * src/SDCCloop.h
6218         * src/SDCClrange.c
6219
6220 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6221
6222         * src/z80/gen.h,
6223         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6224         * src/mcs51/gen.h
6225         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6226         * src/ds390/gen.h
6227         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6228         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
6229         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
6230
6231 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6232
6233         * src/z80/gen.c (genRet): fixed bug #524753
6234         * src/z80/gen.c (genCast): fixed internal error on cast from
6235         pointer to long
6236         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
6237         fix for bug #477835 to the z80
6238         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
6239         for tracking iCodes in the peephole optimizer for z80
6240
6241 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6242
6243         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
6244         the other part of bug #814548
6245         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
6246
6247 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
6248
6249         * src/SDCCcse.c: fixed part of bug #814548
6250
6251 2003-09-28  Borut Razem <borut.razem AT siol.net>
6252
6253         * src/asm.c: rewrite of printILine() to use temporary file instead
6254           a pipe
6255         * src/xa51/main.c: commented out declaration of int rewinds
6256
6257 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6258
6259         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
6260
6261 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6262
6263         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
6264         * src/asm.c (printILine): Fixed bug #811015
6265
6266 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6267
6268         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
6269         freeing.
6270
6271 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6272
6273         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
6274         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
6275         to correctly handle general case of AOP_PAIRPTR
6276         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
6277
6278 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6279
6280         * src/mcs51/ralloc.c (fillGaps),
6281         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
6282         register positioning bug)
6283
6284 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
6285
6286         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
6287
6288 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6289
6290         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
6291         genCodePointerGet, genGenPointerGet, genFarPointerSet,
6292         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
6293         (ralloc doesn't intentionally do this now, but perhaps later)
6294         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
6295         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
6296         register positioning bugs (Fixed bug #762602 and #795325)
6297         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
6298         (Fixed bug #808779)
6299         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
6300         lines that --i-code-in-asm generates
6301
6302 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6303
6304         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
6305         trying to fclose a FILE* that was already closed.
6306
6307 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6308
6309         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
6310         of const struct should be treated as if const themselves)
6311
6312 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
6313
6314         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
6315
6316 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6317
6318         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
6319         Unix (/n) and DOS (/r/n) line terminations.
6320
6321 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6322
6323         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
6324         bug #613775
6325
6326 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6327
6328         * src/mcs51/gen.c (genFunction, genEndFunction),
6329         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
6330         and restore of EA so that stack offsets to parameters are
6331         correct when using both critical and reentrant/stack-auto.
6332         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
6333         size (can be triggered in error if sloc is shared between
6334         different sized objects)
6335         * device/include/float.h: fixed macros to explicitly use
6336         unsigned long where needed
6337
6338 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
6339
6340         Feature req. 799831: added code to allow nesting of critical functions
6341         * src/mcs51/gen.c (genFunction, genEndFunction)
6342         * src/ds390/gen.c (genFunction, genEndFunction)
6343
6344 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6345
6346         * src/SDCCsymt.c (sclsFromPtr),
6347         * src/SDCCsymt.h,
6348         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
6349         support for standard C idiom of memory mapped variables; for
6350         example, *((xdata int*)0x1234) = 1 is now internally equivalent
6351         to xdata int at 0x1234 tempvar = 1.
6352         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
6353         provided by Akiya ISHIDA
6354
6355 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
6356
6357         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
6358         * src/SDCCval.c (constVal): added reduction from int to char
6359         * src/SDCCval.c (valMult, valDiv): fixed sign handling
6360         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
6361         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
6362         to ignore the sign
6363         * support/regression/tests/shifts.c: fixed
6364
6365 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6366
6367         * src/z80/gen.c (genXor): Fixed bug #805445
6368
6369 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6370
6371         Fixed bug #621531 (const & volatile confusion in the type chain).
6372         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
6373         refer to the const or volatile state of the pointer itself.
6374
6375         * src/SDCCast.c
6376         * src/SDCCglue.c
6377         * src/SDCCicode.c
6378         * src/SDCCsymt.c
6379         * src/SDCCval.c
6380         * src/SDCC.y
6381         * src/SDCCsymt.h
6382         * src/pic/gen.c
6383         * src/pic/ralloc.c
6384         * src/pic16/gen.c
6385         * src/pic16/ralloc.c
6386         * support/regression/tests/const.c
6387
6388 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6389
6390         When checking for duplicated modules, use absolute paths
6391         instead of relative paths.  Files changed:
6392
6393         * as/mcs51/lklib.c
6394         * link/z80/lklib.c
6395
6396 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6397
6398         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
6399
6400 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6401
6402         * device/include/string.h: added size_t typedef, changed
6403         prototypes to use size_t, eliminated separate reentrant and
6404         non-reentrant declarations, added _memmove declaration
6405         * device/lib/_memcpy.c: changed to use size_t instead of int,
6406         changed /4 to >>2 to avoid division library call
6407         * device/lib/_memcmp.c,
6408         * device/lib/_memset.c,
6409         * device/lib/_strncat.c,
6410         * device/lib/_strncpy.c,
6411         * device/lib/_strncmp.c: changed to use size_t instead of int
6412         * device/lib/_memmove.c: new file (fixed bug #772294)
6413         * device/lib/Makefile.in: added _memmove.c
6414         * device/lib/z80/asm_strings.s: fixed bug #772290
6415         * support/regression/tests/bitfields.c: attempt to fix host assertion
6416         failure on amd64-unknown-linux2.2
6417
6418 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6419
6420         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
6421         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
6422         * as/z80/asmain.c (main): fixed bug #801766
6423
6424 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
6425
6426         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
6427         compilers
6428
6429 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6430
6431         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
6432         reported in bug #800609
6433
6434 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
6435
6436         * Top header beautifications in src/pic16 directory:
6437           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
6438           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
6439           pcoderegs.h, ralloc.c, ralloc.h
6440         * main.c: added top header and GPL license notice
6441         * pcode.c: fixed the if-conditional warning
6442
6443 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
6444
6445         * device/lib/_mullong.c: replaced int by short for gcc
6446
6447 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6448
6449         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
6450         and JUMPTABLE iCodes properly now (worked by accident before)
6451         * src/mcs51/gen.c (leftRightUseAcc),
6452         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
6453         iCode properly now. Use getSize instead of nRegs since a & b
6454         aren't part of the nRegs tally.
6455
6456 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
6457
6458         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
6459         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
6460           before instructions that use the _STATUS register
6461
6462 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
6463
6464         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
6465         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
6466         fetching of the pointer
6467         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
6468         copied from genNearPointerSet()
6469         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
6470         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
6471         If they pop r0/r1 they must be called in the opposite order than aopOp().
6472         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
6473         (resp. --stack-auto), prepared for --xstack
6474
6475 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6476
6477         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
6478
6479 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
6480
6481         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
6482         these ports have their own __sdcc_external_start()
6483
6484 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
6485
6486         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6487         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
6488         type for bits was changed. It resulted in bit variables becoming
6489         global, which is not permitted in PIC 14 assembly output.
6490
6491 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6492
6493         * doc/sdccman.lyx: various additions and updates. Rearranged sections
6494
6495 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6496
6497         Z80 and MCS51 linkers complaint if a public symbol is defined
6498         in more than one library module:
6499
6500         * as/mcs51/lklib.c
6501         * link/z80/lklib.c
6502         * as/mcs51/Makefile.in
6503
6504 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6505
6506         A few small changes that speed up the peephole optimizer.
6507
6508         * src/SDCCpeeph.c
6509
6510 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6511
6512         Try to make the peephole optimizer smarter by maintaining
6513         an association between the assembly source code and the
6514         iCodes that originated them. Put this information to use
6515         with a new peephole rule condition "notVolatile" so that
6516         the rules can be aggressive yet still safe.
6517
6518         * src/SDCCpeeph.c
6519         * src/SDCCpeeph.h
6520         * src/mcs51/gen.c
6521         * src/mcs51/peeph.def
6522
6523 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6524
6525         Fixed bug #741761
6526
6527         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
6528         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
6529         if the left or right operand symbols have the accuse flag set.
6530
6531 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6532
6533         Changed the type of the result of the ! (NOT) operator to char;
6534         previously it returned the same type as the source. This allows
6535         us to eliminate all the genFloatNot functions (all of its target
6536         implementations were very buggy) since !float can use the same
6537         code as !long now.
6538
6539         * src/SDCCicode.c (ast2iCode): ! returns char
6540         * src/mcs51/gen.c (genNot, genNotFloat),
6541         * src/ds390/gen.c (genNot, genNotFloat),
6542         * src/z80/gen.c (genNot, genNotFloat),
6543         * src/pic/gen.c (genNot, genNotFloat),
6544         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
6545
6546 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
6547
6548         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6549         1. Interrupt would not compile properly. Ensure PCLATH register is saved
6550            during interrupts. Ensure WSAVE is located at a shared bank address.
6551         2. Fixed page selection in some places
6552         3. Fixed BTFSS/C to where necessary use registers directly and not simply
6553            the registers name strings.
6554         4. Fixed "signed / unsigned compare" compiler warnings.
6555         5. The PIC port manages its own allocation of the general purpose
6556            registers, but makes no attempt to reuse them. As a result when
6557            compiling it soon runs out of general purpose registers. Some
6558            additional code was added to the files pcode.c and device.c to walk
6559            through the function call tree and rename the registers so that they
6560            get reused.
6561
6562         * src/pic/device.c
6563         * src/pic/gen.c
6564         * src/pic/glue.c
6565         * src/pic/pcode.c
6566         * src/pic/pcode.h
6567         * src/pic/ralloc.c
6568         * src/pic/ralloc.h
6569         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
6570         genPlus() & genMinus() when the result is the same as left or right
6571
6572 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6573
6574         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
6575
6576 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6577
6578         Made bitfield a distinct type from bit so that bitfields
6579         convert as per ANSI C and bits retain their traditional
6580         boolean style behaviour. Implemented bitfield support in
6581         the z80 port.
6582
6583         * src/SDCCsymt.h,
6584         * src/SDCCsymt.c,
6585         * src/SDCCast.c,
6586         * src/cdbFile.c,
6587         * src/mcs51/gen.c,
6588         * src/ds390/gen.c: bit v bitfield split
6589         * src/z80/gen.c: New support for bitfields
6590         * support/regression/tests/bitfields.c: reenabled z80,
6591         added more tests
6592
6593 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6594
6595         Rules 246.x, 247.x relate to bitfields, the others speed up
6596         access to xdata mapped I/O devices.
6597
6598         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
6599
6600 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6601
6602         Cleaned up genPackBits and genUnpackBits and added two helper
6603         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
6604         for literal assignments in genPackBits (thanks to Frieder for
6605         reminding me).
6606
6607         * src/mcs51/gen.c
6608         * src/ds390/gen.c
6609
6610 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6611
6612         Fixed bug #748310 (pointer to function type mishandled when the
6613         function name is omitted). Also fixed a SIGSEGV when a function
6614         attribute (reentrant, etc) is used on a non-function or on a
6615         function but misplaced before the parameter list.
6616
6617         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
6618         bug #748310
6619         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
6620         * support/Util/SDCCerr.h,
6621         * support/Util/SDCCerr.c: Added func attr misuse error msg
6622
6623 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
6624
6625         Fixed bug #787649 by anonymous
6626         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
6627         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
6628
6629 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6630
6631         Fixed numerous bitfield problems.
6632
6633         * src/SDCC.y: More bitfield related error checking
6634         * src/SDCCsymt.h,
6635         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
6636         * support/Util/SDCCerr.h,
6637         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
6638         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
6639         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
6640         * support/regression/tests/bitfields.c: tests added
6641
6642 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6643
6644         Made the constant following the "interrupt" keyword optional. If
6645         omitted, the function will not automatically be given an entry
6646         in the interrupt vector table (similar to #pragma NOIV, but
6647         less syntacticly kludgy). The interrupt number is also now
6648         range checked. Also fixed a bug in the high order bit example
6649         in the manual.
6650
6651         * src/SDCC.y
6652         * src/SDCCmem.c
6653         * src/SDCCglue.c
6654         * src/SDCCsymt.h
6655         * support/Util/SDCCerr.c
6656         * support/Util/SDCCerr.h
6657         * doc/sdccman.lyx
6658
6659 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
6660
6661         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
6662         * src/SDCCicode.c (operandOperation): rewritten some ops
6663         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
6664         * src/SDCCsymt.c (computeType): literals are handled the same way as any
6665         other type
6666         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
6667         be re-activated by defining REDUCE_LITERALS)
6668         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
6669         unsigned, but are signed by default
6670         * src/SDCCval.c (constVal): rearranged
6671         * src/SDCCval.c (valMod): preliminary fix
6672         * src/SDCCval.c (valCastLiteral): use TYPE_* types
6673         * support/regression/literalop.c: added, work in progress
6674
6675 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6676
6677         Generate warnings for useless declarations like "char data;"
6678         that don't do what new users expect.
6679
6680         * src/SDCC.y
6681         * support/Util/SDCCerr.h
6682         * support/Util/SDCCerr.c
6683
6684 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
6685
6686         * src/SDCCval.c (valMult): fix overflow detection of negative int
6687
6688 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6689
6690         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
6691
6692         Changes to support big endian targets:
6693
6694         * src/ports.h
6695         * src/SDCCglue.c
6696         * src/avr/main.c
6697         * src/ds390/main.c
6698         * src/izt/i186.c
6699         * src/mcs51/main.c
6700         * src/pic/main.c
6701         * src/pic16/main.c
6702         * src/xa51/main.c
6703         * src/z80/main.c
6704
6705 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
6706
6707         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
6708         * device/lib/time.c: fixed warning "integer overflow in expression"
6709
6710 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
6711
6712         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
6713         * src/SDCCval.c (constVal): changed default to signed; hex and octal
6714         constants are unsigned; added recognition of "u" flag for unsigned
6715         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
6716         * src/SDCCval.c (valDiv, valMod): fixed signdness
6717         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
6718         signedness of modulo, left and right shift
6719         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
6720         * support/Util/SDCCerr.h: added warning W_INT_OVL
6721         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
6722         * src/SDCCast.c (ast_print): improved output of constants
6723
6724 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6725
6726         Fixed some warnings when building with MSVC:
6727
6728         * as\mcs51\asdata.c
6729         * as\z80\asdata.c
6730         * as\mcs51\asm.h
6731         * as\z80\asm.h
6732         * link\z80\aslink.h
6733         * link\z80\lkdata.c
6734         * link\z80\lkeval.c
6735         * link\z80\lkgb.c
6736         * link\z80\lkihx.c
6737         * link\z80\lks19.c
6738         * link\z80\lksym.c
6739         * support\cpp2\cpplib.c
6740         * src\ds390\gen.c
6741         * src\mcs51\gen.c
6742
6743 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
6744
6745         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
6746
6747 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6748
6749         * support\librarian\clean.mk: Do not remove Makefile.
6750         * support\librarian\Makefile: added.
6751
6752 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6753
6754         Added librarian to MSVC build:
6755         * all.dsp
6756         * sdcc.dsw
6757         * support\librarian\librarian.dsp
6758
6759         'configure' not needed for librarian, removed:
6760         * support\librarian\configure
6761         * support\librarian\configure.in
6762         * support\librarian\config_in.h
6763         * support\librarian\Makefile.in
6764
6765         Hopefully these ones built the librarian and the rest of sdcc properly:
6766         * Makefile
6767         * Makefile.common.in
6768
6769         Messed up 'configure', so revert to previous version:
6770         * configure
6771         * configure.in
6772
6773 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
6774
6775         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
6776         there, while the mantissa of a double is "only" 53 bits wide.
6777
6778 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6779
6780         Adding sdcclib to the build.  MSVC project coming soon.
6781         Files added/changed:
6782
6783         * support\librarian\clean.mk
6784         * support\librarian\configure
6785         * support\librarian\configure.in
6786         * support\librarian\config_in.h
6787         * support\librarian\Makefile.bcc
6788         * support\librarian\Makefile.in
6789         * support\librarian\sdcclib.c
6790         * Makefile.bcc
6791         * Makefile
6792         * Makefile.common.in
6793         * configure
6794         * configure.in
6795
6796 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6797
6798         Linker now complaints if linked modules have conflicting options, for
6799         example, one compiled using --model-large and another one compiled with
6800         --model-small.  The following files were modified:
6801
6802         * as\mcs51\asdata.c
6803         * as\mcs51\aslink.h
6804         * as\mcs51\asm.h
6805         * as\mcs51\asmain.c
6806         * as\mcs51\asout.c
6807         * as\mcs51\i51pst.c
6808         * as\mcs51\lkdata.c
6809         * as\mcs51\lklibr.c
6810         * as\mcs51\lkmain.c
6811         * as\z80\asdata.c
6812         * as\z80\asm.h
6813         * as\z80\asmain.c
6814         * as\z80\asout.c
6815         * as\z80\z80pst.c
6816         * link\z80\aslink.h
6817         * link\z80\lkdata.c
6818         * link\z80\lklibr.c
6819         * link\z80\lkmain.c
6820         * src\SDCCglue.c
6821
6822 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6823
6824         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
6825         as/mcs51/lklibr.c: Generate a warning when a library is not found.
6826
6827 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
6828
6829         * src/z80/mappings.i: fix _mul[us][int,long] entries
6830
6831 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6832
6833         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
6834
6835 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
6836
6837         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
6838         * support/regression/tests/bitopcse.c: added
6839         fixed warning:
6840         * src/avr/gen.c:
6841         * src/pic/gen.c:
6842         * src/pic16/gen.c:
6843         * src/z80/gen.c:
6844         * src/xa51/gen.c:
6845
6846 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6847
6848         added support for new library format to z80, gbz80 linkers:
6849         *link/z80/aslink.h
6850         *link/z80/lklex.c
6851         *link/z80/lklib.c
6852         *link/z80/lklist.c
6853
6854 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
6855
6856         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
6857         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
6858
6859 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
6860
6861         added DUMMY_READ_VOLATILE:
6862         * src/SDCC.y:
6863         * src/avr/gen.c:
6864         * src/xa51/gen.c:
6865         * src/z80/gen.c:
6866         * src/pic/gen.c:
6867         * src/pic16/gen.c:
6868         * src/mcs51/gen.c:
6869         * src/ds390/gen.c:
6870         * src/SDCCcse.c (algebraicOpts): many improvements
6871         * src/SDCCcse.h: removed algebraicOpts()
6872         * src/SDCCicode.c (picDummyRead): added
6873
6874 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6875
6876         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
6877         "Insufficient space in data memory".
6878
6879 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6880
6881         * src/mcs51/gen.c: fixed bug #771358
6882         * src/z80/gen.c: fixed bug #759087
6883
6884 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
6885
6886         * src/pic16/glue.c: minor cleanup by Vangelis
6887
6888 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6889
6890         * device/include/regc515c.h: fixed #758477
6891         * device/lib/_gptrget.c: saving some cycles in generic pointer get
6892         * device/lib/_gptrput.c: saved a few bytes
6893         * my tab spacing is 8, yours too?)
6894         * device/lib/_ser.c: process RX bytes earlier than TX bytes
6895         * device/lib/serial.c: process RX bytes earlier than TX bytes
6896         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
6897
6898 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6899
6900         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
6901
6902 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6903
6904     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
6905
6906 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
6907
6908         * device/lib/Makefile.in: bad fix, reverted to 1.43
6909
6910 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
6911
6912         * device/lib/Makefile.in: added missing z80 object files
6913
6914 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
6915
6916         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
6917         pic16 progress by Vangelis:
6918         * src/SDCCglobl.h:
6919         * src/SDCCmain.c:
6920         * src/pic/Makefile:
6921         * src/pic:
6922         * pic/Makefile:
6923         * pic16/device.c:
6924         * pic16/device.h:
6925         * pic16/gen.c:
6926         * pic16/gen.h:
6927         * pic16/genarith.c:
6928         * pic16/glue.c:
6929         * pic16/main.c:
6930         * pic16/pcode.c:
6931         * pic16/pcode.h:
6932         * pic16/pcodepeep.c:
6933         * pic16/peeph.def:
6934
6935 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6936
6937     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
6938
6939 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6940
6941     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
6942     added gbz80 build to MSVC project.
6943     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
6944     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
6945     from 8051 stuff and setup so it links using a .lnk file.
6946
6947 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6948
6949     * support/librarian/sdcclib.c: sdcc librarian.
6950     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
6951     with sdcclib.
6952
6953 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6954
6955     * as/mcs51/lkmain.c: properly handle extensions in function afile.
6956
6957 2003-07-02  Borut Razem <borut.razem AT siol.net>
6958
6959         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
6960         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
6961         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
6962         src/xa51/main.c, src/z80/main.c:
6963         virtualization of glue() function: each port has it's own glue function,
6964         which is accessed by do_glue function pointer in PORT.general structure
6965
6966 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
6967
6968         * DS800C400 fun, improved ROM interface and tinibios.
6969
6970 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
6971
6972         * More support for DS80C400. Now includes beginning of interface to ROM.
6973
6974 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
6975
6976         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
6977
6978 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6979
6980         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
6981
6982 2003-06-19  Borut Razem <borut.razem AT siol.net>
6983
6984         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
6985
6986 2003-06-19  Borut Razem <borut.razem AT siol.net>
6987
6988         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
6989         fixed Z80 port - crt0.o: cannot open.
6990
6991 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
6992
6993         * support/Util/MySystem.c (merge_command): revert bad fix
6994
6995 2003-06-18  Borut Razem <borut.razem AT siol.net>
6996
6997         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
6998
6999 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7000
7001         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7002         option --use-stdout sends errors to stdout instead of stderr.
7003
7004 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
7005
7006         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
7007
7008 2003-06-15  Borut Razem <borut.razem AT siol.net>
7009
7010         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
7011         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
7012         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
7013         fixed width array of pointers replaced with sets;
7014         multiple include and lib paths ared transferred to preprocessor and linker
7015         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
7016         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
7017         fixed width array of pointers
7018         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
7019         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
7020         fixupPath(), getPathDifference()
7021         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
7022         fixed width array of pointers
7023
7024 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
7025
7026         * src/pic16/ralloc.c: fix warnings
7027         * src/pic16/pcode.c: fix warning
7028
7029 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
7030
7031          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
7032         know all the details, but essentially this set of changes enable
7033         the pic16 port to generate movff instructions and generate assembler
7034         directives,
7035         * src/SDCCmain.c:
7036         * src/pic16/gen.c:
7037         * src/pic16/glue.c:
7038         * src/pic16/pcode.c:
7039         * src/pic16/device.c:
7040         * src/pic16/main.c:
7041         * src/pic16/pcode.h:
7042         * src/pic16/pcoderegs.c:
7043         * src/pic16/ralloc.c:
7044         * src/pic16/ralloc.h:
7045
7046 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7047
7048         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7049         added option --vc, so sdcc errors and warnings are compatible with
7050         Microsoft Visual Studio.
7051
7052 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7053
7054         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
7055           device/lib/libfloat.lib: added atof function.
7056
7057 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
7058
7059         * doc/sdccman.lyx: updated to Lyx 1.3
7060         * doc/cdbfileformat.lyx: updated to Lyx 1.3
7061         * doc/test_suite_spec.lyx: updated to Lyx 1.3
7062         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
7063
7064 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
7065
7066         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
7067
7068 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7069
7070         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
7071           additions to the "related tools/documentation" section
7072
7073 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
7074
7075         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
7076
7077 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
7078
7079         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
7080         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
7081
7082 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
7083
7084         * doc/sdccman.lyx: fix double dash and other minor things
7085         * doc/Makefile: fix double dash
7086
7087 2003-05-28  Karl Bongers(patches from Martin Helmling)
7088         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
7089           condition and ignore commands.
7090
7091 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7092
7093         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
7094           is in parts still quite out of date, I did changes as far as I felt makes sense
7095           for a non-native english speaker.
7096           Please feel free to add to the manual or to correct my changes.
7097         * doc/Makefile: undid touching the date of intermediate tex files.
7098
7099 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7100
7101         * doc/sdccman.lyx: Manual has an index now
7102
7103 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
7104
7105         Finalize muluint/mulsint and mululong/mulslong merging:
7106         * device/lib/_mulint.c
7107         * device/lib/_mullong.c
7108         * device/lib/gbz80/mul.s
7109         * device/lib/gbz80/stubs.s
7110         * device/lib/z80/mul.s
7111         * device/lib/z80/stubs.s
7112         * src/SDCCsymt.c (initCSupport)
7113
7114 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7115
7116         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
7117         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
7118           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
7119           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
7120           instead of /Zm500.
7121
7122 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7123
7124         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
7125           the regression tests I'm not brave enough to enable 245.b, 245.c
7126         * doc/sdccman.lyx: added latex preamble for hyperref package.
7127           Using pdflatex this will give you a hyperlinked pdf file with
7128           bookmarks. (prepend '%' before /usepackage if this breaks something)
7129
7130 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7131
7132          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
7133
7134 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
7135
7136         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
7137
7138 2003-05-21    <johan AT balder>
7139
7140         * src/SDCCglue.c (printIval): fixed bug #739934
7141
7142 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7143
7144         Applied patch from bug 737905 (renamed yylineo to mylineno):
7145         * src/altlex.c
7146         * src/SDCCast.c
7147         * src/SDCglobl.h
7148         * src/SDCC.lex
7149         * src/SDCCsymt.c
7150         * src/SDCCval.c
7151         * src/pic16/pcode.c: Cleaned warnings
7152         * src/pic16/pcodeflow.c: Cleaned warnings
7153         * src/pic16/pcoderegs.c: Cleaned warnings
7154
7155 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
7156
7157         * src/pic16/pcode.c: Cleaned warnings
7158         * src/pic16/pcodepeep.c: Cleaned warnings
7159         * src/pic16/ralloc.c: Cleaned warnings
7160
7161 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7162
7163         * doc/sdccman.lyx: fixed bug 739745
7164         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
7165
7166 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
7167
7168         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
7169         it can be defined with CFLAGS when running configure
7170         * src/SDCCmain.c: fixed compiling + linking with object files
7171
7172 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
7173
7174         * configure.in: configure for pic16 port,
7175             added --disable-pic16-port
7176         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
7177         * src/SDCCmain.c: linkOptions is changed to set *,
7178             added if/endif conditional macros to remove options help
7179             messages from optionsTable when a port is not configured, added
7180             support for the PIc16 port in the ports table, when executing
7181             the compiler with no port specified on command line, a default
7182             port is selected with the new macro DEFAULT_PORT which is
7183             defined in port.h, in setDefaultOptions() linkOptions is removed
7184             from initialization assignment, since now it is a set,
7185             parseCmdLine uses setParseWithComma for linkOptions, in
7186             linkEdit() linkOptions are accessed with new function indexSet()
7187             which returns the i'th item of a set variable. See SDCCset.c, in
7188             linkEdit() when calling buildCmdLine(), added linkOptions as
7189             last argument. Now users can pass arguments to gplink via the
7190             -Wl option, main() uses pic16glue() to glue up pic16 programs
7191         * src/SDCCpeeph.c: various changes to support pic16
7192         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
7193             return the i'th item of the set
7194         * src/SDCCset.h: added function prototype for indexSet()
7195         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
7196         * src/clean.mk: added pic16 in CLEANALLPORTS variable
7197         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
7198             added macro DEFAULT_PORT
7199         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
7200         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
7201             generated
7202         * src/pic16/glue.c: commented out some error producing lines
7203         * src/pic16/main.c: __config directives are commented out to stop
7204             gpasm complaining and test the linkage with gplink, _linkCmd and
7205             _asmCmd changed to be more gplink and gpasm friendly
7206         * src/pic16/peeph.def: peep rule 3 is commented out, since it
7207             produced an error when parsed, peep rule 12 is added to utilize
7208             movff, but it is commented out since the pCode does not support
7209             yet a command with 2 address arguments
7210
7211 2003-05-18    <johan AT balder>
7212
7213         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7214         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7215 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
7216
7217         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
7218   Added feature to script commands from file.
7219
7220 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
7221
7222         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
7223         * src/SDCCutil.c: include ctype.h for win32
7224
7225 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
7226
7227         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
7228
7229 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
7230
7231         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
7232   Fixed so you can set breakpoints prior to run, run does not stop
7233   on entry now.  Add tbreak.  Other enhancements and fixes for use
7234   with ddd.
7235
7236 2003-05-12  Borut Razem <borut.razem AT siol.net>
7237
7238         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
7239
7240 2003-05-11  Borut Razem <borut.razem AT siol.net>
7241
7242         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
7243         the path of bin directory, so that PATH is the only env. variable, which has to be set
7244         in case of standard installation.
7245         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
7246         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
7247         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
7248
7249 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7250
7251         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
7252         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
7253         temp files are in the port dir; clean the gen/test directory when
7254         generating new test.c
7255         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
7256         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
7257         * support/regression/tests/zeropad.c: added
7258
7259 2003-05-09    <johan AT balder>
7260
7261         * src/SDCCglue.c: fixed bug #597940
7262
7263 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
7264
7265         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7266   cache sfr, optimize next,step, fix off by one sourceline,
7267   support ddd list function.
7268         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
7269
7270 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7271
7272         * support/regression/HTMLgen.py: added compare_s2f()
7273         * support/regression/Makefile: redo 1.27
7274         * support/regression/generate-cases.py: redo 1.5
7275
7276 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
7277
7278         * support/regression/tests/float.c: workaround 33 bit hex constant
7279         * support/regression/tests/simplefloat.c: fix division for host
7280
7281 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
7282
7283         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
7284         that tame's the PIC's over-aggressive optimizer.
7285
7286 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7287
7288          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
7289          support for MSVC.
7290
7291 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
7292
7293         Initial support for DS80C400. "Hello world" runs on TINIm400
7294         (with polled I/O).
7295
7296 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
7297
7298          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7299          * Some notes on ddd usage added in debugger/README
7300          Martin Helmling adding more features and fixes for ddd GUI debugger.
7301          Code added for nexti, stepi, up, down, and other adjustments.
7302
7303 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
7304
7305         * src/pic/pCodepeep.c non-wildcard asmops are now handled
7306         * src/pic/peeph.def Added two rules to optimize carry manipulation
7307         * src/pic/* removed debug printfs
7308
7309 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
7310
7311         * debugger/mcs51/cmd.c: added header newalloc.h
7312
7313 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
7314
7315         * as/Makefile: new EXEEXT
7316         * as/z80/Makefile: remove trailing slash of BUILDIR
7317         * as/z80/clean.mk: new EXEEXT
7318         * Makefile.common.in: add to CFLAGS (and others), don't replace it
7319         * support/cpp2/Makefile.in: new EXEEXT
7320         * src/pic/glue.c (pic14emitRegularMap): fixed warning
7321
7322 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
7323
7324         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
7325         EXEEXT was introduced to fix all related problems with targets
7326         "clean", "install" and "uninstall"; a couple of further flaws
7327         especially with "clean" have been fixed too
7328         * as/mcs51/Makefile.in
7329         * as/mcs51/clean.mk
7330         * as/z80/Makefile
7331         * Makefile
7332         * clean.mk
7333         * debugger/mcs51/Makefile.in
7334         * debugger/mcs51/clean.mk
7335         * link/z80/Makefile
7336         * link/z80/Makefile.in
7337         * link/z80/clean.mk
7338         * link/Makefile
7339         * packihx/Makefile.in
7340         * packihx/clean.mk
7341         * sim/ucsim/Makefile
7342         * sim/ucsim/clean.mk
7343         * sim/ucsim/avr.src/Makefile.in
7344         * sim/ucsim/avr.src/clean.mk
7345         * sim/ucsim/s51.src/Makefile.in
7346         * sim/ucsim/s51.src/clean.mk
7347         * sim/ucsim/xa.src/Makefile.in
7348         * sim/ucsim/xa.src/clean.mk
7349         * sim/ucsim/z80.src/Makefile.in
7350         * sim/ucsim/z80.src/clean.mk
7351         * sim/ucsim/main_in.mk
7352         * sim/ucsim/packages_in.mk
7353         * sim/ucsim/gui.src/Makefile.in
7354         * sim/ucsim/gui.src/serio.src/Makefile.in
7355         * sim/ucsim/gui.src/serio.src/clean.mk
7356         * src/Makefile.in
7357         * src/clean.mk
7358         * support/cpp2/Makefile.in
7359         * support/cpp2/clean.mk
7360         * support/makebin/Makefile
7361         * support/makebin/clean.mk
7362         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
7363         * doc/sdccman.lyx: --program-suffix no longer needed
7364
7365 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
7366
7367          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
7368          Martin Helmling added support for ddd GUI debugger.
7369          Code added to display assembly, set variables, and other commands
7370          to interface to ddd.
7371
7372 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
7373
7374         * as/Makefile: fix target clean
7375         * as/clean.mk: fix target clean
7376         * as/z80/clean.mk: fix target clean
7377
7378 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
7379
7380         * Makefile.common.in: added  AT EXEEXT AT
7381         * configure.in: removed all mingw32 stuff
7382         * configure: rebuilt from configure.in
7383         * doc/sdccman.lyx: updated section "installation"
7384         * support/scripts/sdcc_mingw32: adapted to configure
7385         * support/scripts/sdcc_cygwin_mingw32: added
7386
7387 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
7388
7389         * src/pic Added object file support for the PIC port
7390         * src/pic Applied patch from Craig Franklin (this started the object file support)
7391         * src/regression Updated the PIC regression tests for object files
7392
7393 2003-04-20  Borut Razem <borut.razem AT siol.net>
7394
7395         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
7396           lklex.c: In function `getfid':
7397           lklex.c:203: warning: array subscript has type `char'
7398         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
7399           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
7400         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
7401           stack handling macros
7402
7403 2003-04-19  Borut Razem <borut.razem AT siol.net>
7404
7405         * "handling space characters in file path" task:
7406         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
7407         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
7408         * support/Util/MySystem.h: make it self-sufficient
7409         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
7410           src/z80/main.c, sdcc/as/mcs51/lklex.c:
7411           handling space characters in file path
7412         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
7413           (it will be used by assemblers, which have their own includes, e.g. gpasm)
7414         * support/Util/MySystem.c: handling space characters in executable's path
7415
7416 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
7417
7418         * as/z80/Makefile: fix permanent rebuild of z80
7419         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
7420         * support/regression/tests/bitfields.c: added Johan's bitfields.c
7421
7422 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
7423
7424         * src/SDCCopt.c: add special case optimization to replace modulo by
7425           a power of two with a bitwise AND.
7426
7427 2003-04-18    <johan AT balder>
7428
7429         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
7430
7431 2003-04-17    <johan AT balder>
7432
7433         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
7434         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
7435
7436 2003-04-13  Borut Razem <borut.razem AT siol.net>
7437
7438         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
7439         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
7440           fixed mingw problem in adl_NORMALIZE_PATH
7441
7442 2003-04-12  Borut Razem <borut.razem AT siol.net>
7443
7444         * fixed "#pragma SAVE/RESTORE can not be nested":
7445         * src/SDCC.lex: reworked pragma handling functions
7446         * sdcc/src/SDCCglobl.h: reworked stack handling macros
7447         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
7448
7449 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7450
7451         * src/SDCCutil.c (pathEquivalent): defined but not used
7452         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
7453         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
7454         * configure: rebuilt from configure.in
7455         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7456         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7457         * device/include/Makefile.in: replace sdcc_datadir
7458         * device/lib/Makefile.in: replace sdcc_datadir
7459         * Makefile.common.in: add LDFLAGS from configure
7460         * packihx/Makefile.in: use LDFLAGS
7461         * src/Makefile.in: use LDFLAGS
7462         * support/cpp2/Makefile.in: add LDFLAGS from configure
7463         * support/makebin/Makefile: use LDFLAGS
7464         * .version: bumped version number to 2.3.5
7465
7466 2003-04-12  Borut Razem <borut.razem AT siol.net>
7467
7468         * completed "different paths" task:
7469         * src/SDCCmacro.c: fixed bug in handling quotes
7470         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
7471         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
7472
7473 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7474
7475         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
7476
7477 2003-04-11 kevin Vigor <kevin AT vigor.nu>
7478
7479         * ds390/gen.c ds390/peeph.def: fix bug 706781
7480
7481 2003-04-11  Borut Razem <borut.razem AT siol.net>
7482
7483         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
7484
7485 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
7486
7487         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
7488         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
7489          set - this bit used to not be set...).
7490         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
7491           bad code in PIC Port
7492         * src/regression/and2.c added to test bug 609268
7493         * src/regression/Makefile added and2.c to regression test
7494
7495
7496 2003-04-08    <johan AT CP255758-A>
7497
7498         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
7499         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
7500         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
7501
7502 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
7503
7504         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
7505         fix bug #487815
7506         * support/cpp2/Makefile.in: fix bug #487815
7507         * configure: rebuilt from configure.in
7508         * Makefile.common.in: docdir changed, new path suffixes
7509         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7510         * sdcc_vc_in.h: reflect changes from sdccconf.h
7511         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
7512         * src/SDCCutil.h: remove BINDIR hack
7513         * doc/sdccman.lyx: update new path hierarchy
7514
7515 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7516
7517         * src/SDCCpeeph.c: added okToRemoveSLOC test
7518
7519 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7520
7521         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
7522
7523 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7524
7525         * src/SDCCpeeph.c: added labelIsReturnOnly test
7526         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
7527
7528 2003-04-05    <johan AT balder>
7529
7530         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
7531         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
7532         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
7533         * src/SDCCast.c: fixed a warning
7534         * src/SDCCast.h: fixed a warning
7535         * src/SDCCicode.c (operandFromAst): fixed a warning
7536
7537 2003-04-04    <johan AT balder>
7538
7539         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
7540         * src/SDCCast.c (decorateType): fixed bug #715076
7541         * src/SDCC.y: fixed bug #702907
7542
7543 2003-04-03    <johan AT balder>
7544
7545         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
7546         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
7547         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
7548         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
7549         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
7550
7551 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
7552
7553         * _decdptr.c: fix return values
7554         * _gptrget.c: fix return values
7555         * _gptrgetc.c: fix return values
7556         * _gptrput.c: fix return values
7557         * _mulint.c: fix return values
7558         * as/z80/Makefile: fix 'make -j' problem
7559
7560 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
7561
7562         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
7563         * configure.in: big cleanup, updated to autoconf 2.5x
7564         * configure: rebuilt from configure.in
7565         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7566         * sdcc_vc_in.h: reflect changes from sdccconf.h
7567         * doc/Makefile: fixed a flaw in "make install"
7568
7569 2003-04-02    <johan AT balder>
7570
7571         * src/ds390/gen.c (genCmp): no comments
7572         * src/mcs51/gen.c (genCmp): no comments
7573         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
7574         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
7575
7576 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
7577
7578         * support/regression/generate-cases.py: place generated file in given sub directory
7579         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
7580         * support/regression/Makefile: improvements for 'make -j';
7581         side effect: it's simpler and faster now
7582
7583 2003-03-31  Borut Razem <borut.razem AT siol.net>
7584
7585         * src/z80/main.c: link-{port} and as-{port} defined without path
7586         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
7587
7588 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
7589
7590         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
7591
7592 2003-03-30  Borut Razem <borut.razem AT siol.net>
7593
7594         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
7595           changed type of list parameter to set
7596         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
7597         * src/port.h: changed type of do_assemble() parameter to set
7598         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
7599           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
7600           definition of "cppoutfilename" macro with NULL value in preProcess()
7601         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
7602         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
7603         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
7604           replaced with set *binPathSet
7605         * shash_add() deallocates the item, if allready exsists, before adding the new one
7606         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
7607
7608 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
7609
7610         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
7611           a nested for loop bug in the PIC port
7612         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
7613           for loops
7614
7615 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
7616
7617         * support/Util/dbuf.h: remove C++ stuff to make it portable
7618
7619 2003-03-28  Borut Razem <borut.razem AT siol.net>
7620
7621         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
7622           literal strings in stringLiteral()
7623         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
7624         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
7625           to the project
7626
7627 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
7628
7629         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
7630
7631 2003-03-26    <johan AT balder>
7632
7633         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
7634         * src/ds390/gen.c (saveRegisters): catched symbol abuse
7635         * src/SDCCast.c (decorateType): fixed " -v < 3"
7636
7637 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
7638
7639         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
7640         Added Lenny Story's debug infrastructure changes:
7641         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
7642         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
7643         * src/cdbFile.c: added
7644         * src/SDCCdebug.c: added
7645         * src/SDCCdebug.h: added
7646         * src/SDCCast.c (createFunction)
7647         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
7648         * src/SDCCmain.c (parseCmdLine, main)
7649         * src/SDCCmem.c (redoStackOffsets)
7650         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
7651         * src/SDCCsymt.h
7652         * src/common.h
7653         * src/avr/gen.c (genAVRCode)
7654         * src/ds390/gen.c (gen390Code)
7655         * src/mcs51/gen.c (gen51Code)
7656         * src/pic/gen.c (genpic14Code)
7657         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
7658         * src/xa51/gen.c (genXA51Code)
7659         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
7660
7661 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7662
7663         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
7664         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
7665
7666 2003-03-22    <johan AT balder>
7667
7668         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
7669
7670 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
7671
7672         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
7673         * doc/cdbfileformat.lyx: added, written by Lenny Story
7674         * doc/Makefile: added cdbfileformat.lyx
7675         * doc/clean.mk: added cdbfileformat.lyx
7676
7677 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
7678
7679         * src/mcs51/peeph.def: fix bug #705773
7680
7681 2003-03-20    <johan AT balder>
7682
7683         An sfr/sbit can have an "at #" AND an initializer
7684         * src/SDCCsymt.c (checkSClass):
7685         * src/SDCCmem.c (allocGlobal):
7686         * src/SDCCmem.c (allocLocal):
7687         * src/SDCCast.c (createBlock):
7688
7689 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
7690
7691         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
7692
7693 2003-03-16    <johan AT balder>
7694
7695         Undid the hackup of const and volatile, the problem is much bigger
7696         * src/SDCC.y:1.65
7697         * src/SDCCast.c:1.171
7698         * src/SDCCglue.c:1.138
7699         * src/SDCCicode.c:1.146
7700         * src/SDCCsymt.c:1.150
7701         * src/SDCCval.c:1.65
7702
7703 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
7704
7705         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
7706         * src/ds390/gen.c (genAddrOf): fixed bug #704087
7707
7708 2003-03-13    <johan AT balder>
7709
7710         Hackup const and volatile modifiers in type chains a bit:
7711         * src/SDCC.y:1.63
7712         * src/SDCCast.c:1.169
7713         * src/SDCCglue.c:1.136
7714         * src/SDCCicode.c:1.143
7715         * src/SDCCsymt.c1.146
7716         * src/SDCCsymt.h1.59
7717         * src/SDCCval.c:1.63
7718
7719 2003-03-12    <johan AT balder>
7720
7721         * src/SDCCBBlock.h: more LRH debugging junk
7722         * src/SDCCcflow.h: more LRH debugging junk
7723         * src/SDCCloop.c: more LRH debugging junk
7724         * src/SDCC.y (struct_declaration): fixed bug #697590
7725         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
7726         * src/ds390/gen.c (aopForRemat): fixed bug #700031
7727         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
7728
7729 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7730         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
7731         test function names must now match exactly).
7732         * src/SDCCcse.c: added special case in findCheaperOp to allow
7733         extending a short integer. Makes less awful code for bug 700121 test case.
7734
7735 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7736
7737         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
7738         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
7739
7740 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7741
7742         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
7743         actually called (operandsNotEqual() was called for all
7744         operandsNotEqualX tests).
7745
7746 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7747
7748         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
7749         with shorter literals. Fixes bug 700121.
7750
7751 2003-03-11    <johan AT balder>
7752
7753         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
7754
7755 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
7756
7757         * src/SDCCloop.c (mergeRegions): an evil beast is dead
7758         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
7759
7760 2003-03-10  Borut Razem <borut.razem AT siol.net>
7761
7762         * src/SDCCmain.c: pipe preprocessor's output
7763         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
7764         * sdcc_vc_in.h: define pclose as _pclose for WIN32
7765         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
7766         which closes all pipes in pipeSet set
7767         * src/SDCCset.c: free deleted item in function deleteSetItem()
7768         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
7769         moved from z80 to src subproject
7770         * .version: increased version number to 2.3.4
7771
7772 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
7773
7774         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
7775         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
7776         * support/regression/ports/xa51/spec.mk: fix typo
7777
7778 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
7779
7780         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
7781
7782 2003-03-09  Borut Razem <borut.razem AT siol.net>
7783
7784         * src/SDCCmain.c: pipe preprocessor's output
7785         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
7786         * sdcc_vc_in.h: define pclose as _pclose for WIN32
7787         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
7788         which closes all pipes in pipeSet set
7789         * src/SDCCset.c: free deleted item in function deleteSetItem()
7790         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
7791         moved from z80 to src subproject
7792
7793 2003-03-09  Borut Razem <borut.razem AT siol.net>
7794
7795         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
7796         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
7797         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
7798         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
7799         * src/SDCCglobl.h: unification of WIN32 native definitions
7800
7801 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7802
7803         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
7804
7805 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
7806
7807         * src/configure.in:   check for endianess (even while cross-compiling)
7808         * src/configure:      check for endianess (even while cross-compiling)
7809         * src/configure_in.h: check for endianess (even while cross-compiling)
7810         * src/avr/gen.c:        remove old endianess stuff
7811         * src/mcs51/gen.c:      remove old endianess stuff
7812         * src/ds390/gen.c:      remove old endianess stuff
7813         * src/pic/gen.c:        remove old endianess stuff
7814         * src/pic/genarith.c:   remove old endianess stuff
7815         * src/pic/glue.c:       fix endianess check
7816         * src/pic16/gen.c:      remove old endianess stuff
7817         * src/pic16/genarith.c: remove old endianess stuff
7818         * src/pic16/glue.c:     fix endianess check
7819         * src/xa51/gen.c:       remove old endianess stuff
7820         * src/z80/gen.c:        fix endianess check
7821         * src/SDCCglue.c:       fix endianess check
7822         * src/ds390/peeph.def: fix bug 700036
7823
7824 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
7825
7826         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
7827         * src/configure: find appropriate data-types on host for SDCC's int and long
7828         * src/configure.in: find appropriate data-types on host for SDCC's int and long
7829         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
7830         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
7831
7832 2003-03-07    <johan AT balder>
7833
7834         Just a big NOOP:
7835                 some minor cleanups before the big shot
7836                 OP_DEFS and OP_USES now use Kevin's protection
7837                 new option --nolabelopt
7838
7839         * src/SDCCBBlock.c:
7840         * src/SDCCast.c,:
7841         * src/SDCCcflow.c:
7842         * src/SDCCcse.c:
7843         * src/SDCCicode.c:
7844         * src/SDCCicode.h:
7845         * src/SDCClabel.c:
7846         * src/SDCCloop.c:
7847         * src/SDCCmain.c:
7848         * src/ds390/ralloc.c:
7849         * src/mcs51/ralloc.c:
7850         * src/pic/ralloc.c:
7851         * src/xa51/ralloc.c:
7852         * src/z80/ralloc.c:
7853
7854 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
7855
7856         * src/pic/pcode.c (get_op): fix 64 bit warnings
7857         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
7858         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
7859         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
7860         * support/regression/tests/malloc.c: fix 64 bit warnings
7861
7862 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
7863
7864         * src/mcs51/gen.c (genMinus): fixed bug 696436
7865
7866 2003-03-02  Borut Razem <borut.razem AT siol.net>
7867
7868         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
7869
7870 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
7871
7872         * configure.in: test for mkstemp
7873         * sdccconf_in.h: add HAVE_MKSTEMP
7874
7875 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
7876
7877         * device/include/ctype.h: removed warning while using --stack-auto
7878         * device/include/malloc.h: removed warning while using --stack-auto
7879         * device/include/string.h: removed warning while using --stack-auto
7880
7881 2003-02-23  Borut Razem <borut.razem AT siol.net>
7882
7883         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
7884         because NDEBUG is defined (see man assert)
7885         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
7886
7887 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7888
7889         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
7890         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
7891
7892 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7893
7894         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
7895         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
7896
7897 2003-02-18    <johan AT balder>
7898
7899         * as/mcs51/asmain.c (asmbl): module can start with a digit
7900         * as/z80/asmain.c (asmbl): module can start with a digit
7901
7902 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
7903
7904         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
7905         * src/asm.c: fix pipe() for Mingw32
7906
7907 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
7908
7909         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
7910         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
7911         make -V work again; --c1mode reads now from stdin
7912         * doc/sdccman.lyx: added --c1mode
7913         * support/Util/SDCCerr.c: new messages for c1 mode
7914         * support/Util/SDCCerr.h: new messages for c1 mode
7915         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
7916
7917 2003-02-15    <johan AT balder>
7918
7919         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
7920
7921 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
7922
7923         * doc/sdccman.lyx: Environment variables, -o and other minor things
7924
7925 2003-02-14    <johan AT balder>
7926
7927         * src/xa51/main.c: before anyone really tries to use it :)
7928
7929         * Install doc's in share/sdcc/doc
7930         * removed some obsolete files
7931         * Do a proper make distclean and uninstall
7932         M Makefile.common.in
7933         R sdccbuild.sh
7934         M as/Makefile
7935         M device/include/Makefile.in
7936         M device/lib/Makefile.in
7937         M doc/sdccman.lyx
7938         M link/Makefile
7939         M sim/ucsim/doc/Makefile.in
7940         M src/clean.mk
7941         R src/avr/peeph.rul
7942         R src/xa51/peeph.rul
7943         M support/cpp2/Makefile.in
7944         M support/makebin/Makefile
7945
7946
7947 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
7948
7949         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
7950
7951 2003-02-10  Borut Razem <borut.razem AT siol.net>
7952
7953         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
7954         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
7955         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
7956         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
7957         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
7958         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
7959         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
7960         src/z80/Makefile.bcc: Borland Makefile cleanup
7961         * as/z80/Makefile.bcc: Added Borland Makefile
7962         * support/cpp2/borland.h: Removed
7963
7964 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
7965
7966         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
7967         * src/SDCC.lex: new pragma NOIV
7968         * src/SDCCglobl.h: new pragma NOIV
7969         * src/SDCCmem.c: new pragma NOIV
7970
7971 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
7972
7973         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
7974
7975 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
7976
7977         * src/SDCCmain.c: signal handling is switched off by --debug
7978         * doc/Makefile: small fix for install; use clean.mk again
7979         * doc/clean.mk: clean *.pdf and *.html too
7980
7981 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
7982
7983         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
7984         * device/lib/printfl.c: fix a ds390 bug by making it portable
7985         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
7986         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
7987         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
7988         * debugger/mcs51/cmd.c: converted multi-line string literals
7989         * sim/ucsim/globals.cc: converted multi-line string literals
7990         * src/SDCCmain.c: introduced signal handler to remove temp files
7991         * doc/Makefile: small tweaks, implement clean
7992         * doc: removed generated files
7993
7994 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7995
7996         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
7997         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
7998         Address Record is not correctly generated for DS390."
7999
8000 2003-02-02  Borut Razem <borut.razem AT siol.net>
8001
8002         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
8003         * as/mcs51/asm.h: fixed compilation with Borland C
8004         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
8005         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
8006         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
8007         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
8008         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
8009         src/z80/Makefile.bcc: delete $(LIB) only if exist
8010         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
8011
8012 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
8013
8014         * device/include/malloc.h: introduced NULL
8015         * device/include/string.h: introduced NULL
8016         * device/include/stdlib.h: introduced NULL
8017         * device/lib/_memcpy.c: removed NULL
8018         * device/lib/_strcat.c: removed NULL
8019         * device/lib/_strchr.c: removed NULL
8020         * device/lib/_strcmp.c: removed NULL
8021         * device/lib/_strcpy.c: removed NULL
8022         * device/lib/_strcspn.c: removed NULL
8023         * device/lib/_strlen.c: removed NULL
8024         * device/lib/_strncat.c: removed NULL
8025         * device/lib/_strncmp.c: removed NULL
8026         * device/lib/_strncpy.c: removed NULL
8027         * device/lib/_strpbrk.c: removed NULL
8028         * device/lib/_strrchr.c: removed NULL
8029         * device/lib/_strspn.c: removed NULL
8030         * device/lib/_strstr.c: removed NULL
8031         * device/lib/_strtok.c: removed NULL
8032         * device/lib/malloc.c: removed NULL, include own header
8033
8034 2003-02-02    <johan AT balder>
8035
8036         * 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
8037         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
8038         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
8039         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
8040         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
8041         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
8042
8043 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8044
8045         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
8046         area 'DATA'"
8047
8048 2003-02-01    <johan AT balder>
8049
8050         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
8051
8052 2003-01-31    <johan AT CP255758-A>
8053
8054         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
8055
8056 2003-01-30    <johan AT balder>
8057
8058         * src/SDCCBBlock.c: automatic bug detection
8059         * src/SDCCicode.c: automatic bug detection
8060
8061 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8062
8063         * src/SDCCglobl.h:   now --xram-size 0 works
8064         * src/SDCCmain.c:    now --xram-size 0 works
8065
8066 2003-01-29    <johan AT balder>
8067
8068         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
8069
8070 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8071
8072         * as/mcs51/aslink.h: Added options --xram-size and --code-size
8073         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
8074         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
8075         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
8076         * src/SDCCglobl.h:   Added options --xram-size and --code-size
8077         * src/SDCCmain.c:    Added options --xram-size and --code-size
8078
8079 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
8080
8081         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
8082         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
8083
8084 2003-01-27    <johan AT balder>
8085
8086         * src/SDCC.y: fixed bug #613764
8087
8088 2003-01-26    <johan AT balder>
8089
8090         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
8091         * src/SDCCsymt.h: fixed bug #673374
8092         * src/SDCCglue.c: fixed bug #661910
8093         * src/SDCCast.c: fixed bug #458099 and 673374
8094
8095 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
8096
8097         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
8098         * as/mcs51/strcmpi.h: added
8099         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
8100         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
8101         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
8102         * as/mcs51/assym.c: strcmpi -> as_strcmpi
8103         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
8104         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
8105         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
8106         * as/mcs51/Makefile.aslink: new module strcmpi
8107         * as/mcs51/Makefile.asx8051: new module strcmpi
8108         * as/mcs51/Makefil.bcc: new module strcmpi
8109         * as/mcs51/Makefile.in: new module strcmpi
8110         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
8111
8112 2003-01-26    <johan AT balder>
8113
8114         * src/SDCCglue.c: reverted back to 1.124
8115         * src/SDCCast.c: reverted back to 1.156
8116         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
8117
8118 2003-01-25    <johan AT balder>
8119
8120         * src/SDCCglue.c: A better fix for bug #661910
8121         * src/SDCCast.c: A better fix for bug #661910
8122         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
8123
8124 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8125
8126         * src/Makefile.in: remove spawn.o
8127         * src/SDCCmain.c: remove spawn.h
8128         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
8129         * src/spawn.c: removed
8130         * src/spawn.h: removed
8131         * support/regression/ports/ds390/spec.mk: link with -r
8132
8133 2003-01-24    <johan AT CP255758-A>
8134
8135         * src/ds390/gen.c (aopOp): fixed bug #667458
8136         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
8137         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
8138         (createIvalCharPtr): an ival doesn't always have a storage class anymore
8139
8140 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8141
8142         * src/mcs51/peeph.def: better assembler identation by Frieder
8143         * src/mcs51/gen.c: better assembler identation by Frieder
8144
8145 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
8146
8147         * as/z80/string.h: removed for gcc 3.2
8148         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
8149         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
8150
8151 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8152
8153         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
8154         * src/SDCCpeeph.c (replaceRule): fix bug #663503
8155         * support/regression/Makefile: separate temp files for ports
8156         * support/regression/generate-cases.py: separate temp files for ports
8157         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8158         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8159
8160 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8161
8162         * moved tinitalk to device/examples/ds390
8163
8164 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
8165
8166         * as/mcs51/lkmem.c: rflag is for DS390
8167         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
8168         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
8169                          (linkEdit): move mem- and map-files the same way as ihx-files
8170         * src/z80/main.c (_setDefaultOptions): removed --generic
8171         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
8172         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
8173         * src/pic/glue.c (picglue): --c1mode works again
8174         * src/pic16/glue.c (pic16glue): --c1mode works again
8175         * src/asm.c (printCLine): fix #660034
8176
8177 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
8178
8179         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
8180         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
8181         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
8182         * as/mcs51/lkmem (summary): better fix for sp problem
8183         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
8184         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
8185         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
8186                                               remove --stack-after-data
8187
8188 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
8189
8190         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
8191         * src/SDCCutil.c (join): ugly bug: missing '\0'
8192         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
8193
8194 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8195
8196         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
8197         * src/port.h: typo
8198         * src/pic/main.c (_asmCmd): gpasm supports -o
8199         * src/z80/main.c: more general macros
8200         * device/lib/Makefile.in: remove intermediate files
8201
8202 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8203
8204         * .version: Bumped version number to 2.3.3
8205         * src/SDCCBBlock.c: new option -o
8206         * src/SDCCglobl.h: new option -o
8207         * src/SDCCglue.c: new option -o
8208         * src/SDCCmain.c: new option -o
8209         * src/asm.c: new option -o
8210         * src/ds390/main.c: new option -o
8211         * src/pic/glue.c: new option -o
8212         * src/pic/pcode.c: new option -o
8213         * src/pic/ralloc.c: new option -o
8214         * src/pic16/glue.c: new option -o
8215         * src/pic16/pcode.c: new option -o
8216         * src/pic16/ralloc.c: new option -o
8217         * src/z80/main.c: new option -o
8218         * device/lib/Makefile.in: use -o
8219         * support/regression/ports/ds390/spec.mk: use -o
8220         * support/regression/ports/gbz80/spec.mk: use -o
8221         * support/regression/ports/mcs51/spec.mk: use -o
8222         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
8223         * support/regression/ports/z80/spec.mk: use -o
8224         * support/regression/ports/ucz80/spec.mk: use -o
8225         * support/regression/ports/xa51/spec.mk: use -o
8226         * support/regression/fwk/lib/timeout.c: fix usage string
8227
8228 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
8229         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
8230
8231 2003-01-07    <johan AT balder>
8232
8233         * src/SDCCast.c (decorateType): fixed bug #600035
8234
8235 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
8236         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
8237         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
8238         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
8239         * src/pic/pcode.c: outcommented unused variable to remove warnings
8240         * src/pic/ralloc.c: outcommented unused variable to remove warnings
8241
8242 2003-01-06    <karl AT turbobit.com>
8243         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
8244    regression tests.
8245
8246 2003-01-06    <johan AT balder>
8247
8248         * src/SDCCicode.c: fixed array add
8249
8250 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
8251         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
8252         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
8253
8254 2003-01-04    <johan AT balder>
8255
8256         * src/SDCCval.c (getNelements): fixed the initialized array of structures
8257
8258 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8259         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
8260
8261 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8262         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
8263         * support/regression/tests/bug-524697.c: fit mem usage into 8032
8264
8265 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8266         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
8267
8268 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
8269         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
8270
8271 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
8272         * src/mcs51/main.c: removed {bindir}{sep} from aslink
8273
8274 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8275
8276     * in \sdcc\as\mcs51\ changed these files in order to create an
8277     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
8278     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
8279     following files to include the previous two files: aslink.dsp,
8280     Makefile.aslink, Makefile.bcc, and Makefile.in.
8281
8282     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
8283     .adb instead of .cdb
8284
8285 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8286
8287         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
8288         value from option --iram-size.
8289
8290 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8291
8292         * \sdcc\as\mcs51\lklist.c: added boundary check before using
8293         dram[] array.
8294
8295 2002-09-18    <wiml AT hhhh.org>
8296
8297         * SDCClrange.h: exposed setFromRange() and setToRange()
8298         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
8299           packRegsForAccUse() (bug 542397)
8300         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
8301           multiple times and emitting the fetch operations more than once
8302           added aopGetUsesAcc() function to allow binary operators to
8303           fetch their operands in the correct order; made genMinus() emit
8304           compact code for X = LITERAL - Y
8305
8306 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8307         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
8308         sprintf() in line 1267.
8309
8310 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8311         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
8312         like ports.
8313
8314 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8315         Changes to aslink (All the changes are marked with 'JCF'):
8316
8317         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
8318         summary().
8319
8320         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
8321         area BSEG.  Also moves, if possible, the DATA area down into the internal
8322         ram so more space is available.
8323
8324         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
8325         sflag.
8326
8327         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
8328         not bytes.  Function summary() which creates a memory usage summary
8329         file with extension .mem.  Reports of overlaping stack and small stack
8330         size.  If the space for the stack is less than 16 bytes aslink trows a
8331         warning.
8332
8333         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
8334         the 8051.  Option 'y' for memory summary output file.
8335
8336         Changes to sdcc (All the changes are marked with 'JCF'):
8337
8338         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
8339
8340         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
8341         overlaying area for it (uses RegBankUsed[4]).
8342
8343         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
8344         bank zero as used by default.  By default aslink locates the stack
8345         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
8346         the creation of the .mem file.  Delegates the allocation of data area
8347         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
8348         the begining of the stack area to aslink.
8349
8350         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
8351         glue() in SDCCglue.c creates an area for it.
8352
8353 2002-09-03  Borut Razem <borut.razem AT siol.net>
8354         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
8355         sdcc/src/pic/glue.c:
8356         introduced atexit() handler for teporay files removal in case of
8357         errors, assertions, ...
8358
8359 2002-08-29  Borut Razem <borut.razem AT siol.net>
8360         * sdcc/support/cpp2/auto-host_vc_in.h:
8361         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
8362         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
8363         Maybe there is a similar problem with BORLANDC? It should be checked!
8364
8365         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
8366         corrected improper use of assert: the assignment to clr variable was done inside the assert.
8367         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
8368         was not executed, and the compiler (cl) launched a warning:
8369         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
8370
8371 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8372         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
8373
8374 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
8375         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
8376
8377         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8378           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
8379           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
8380           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8381           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
8382           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
8383           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
8384         - added Release configuration in VS projects
8385         - review of compiler an linker options
8386         - VC .exe files are generated in bin_vc directory, not to interfere
8387           with binaries generated from other projects (cygwin, mingw, bcc ...)
8388
8389         * sdcc/src/yacc.dsp: added
8390
8391         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
8392         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
8393         and insert the version number definitions from .version
8394
8395         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
8396
8397         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
8398         added - genarate auto-host.h using auto-host_vc_in.h as template
8399
8400         * sdcc/sdcc_vc.h,
8401         removed from CVS, generated automatically
8402
8403 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
8404         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
8405
8406 2002-08-11  Borut Razem <borut.razem AT siol.net>
8407         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
8408
8409 2002-08-10  Borut Razem <borut.razem AT siol.net>
8410         * src/SDCCmain.c (main):
8411         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
8412         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
8413         The consequence was that some temporary files were not removed.
8414
8415         * src/SDCCglue.c:
8416         unification of code in functions tempfilename() and tempfile():
8417         function tempnam() is defined in Visual Studio 6.0 and .NET
8418
8419         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
8420
8421         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8422           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
8423         - removed compiler command line option /WX: Treats all warnings as errors
8424         - update a list of source files, included into the project
8425
8426         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8427           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
8428         changed project type to Generic Project so that can be correcly converted to VS.NET project
8429
8430         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
8431
8432         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
8433
8434         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
8435
8436         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
8437         added return 0 statements after assert() to make compiler happy
8438
8439         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
8440         added newline in the def file to keep MSC compiler satisfied
8441
8442         * sdcc/src/z80/gen.c:
8443         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
8444           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
8445         - solved MSC error in function aopDump()
8446
8447         * sdcc_vc.h: define PREFIX as "\\sdcc"
8448
8449 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
8450         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
8451
8452 2002-06-22  Scott Dattalo <scott AT dattalo.com>
8453         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
8454         - Rewrote the register banking algorithm.
8455         - Added pCode live-range analysis to registers (for now, only non-used and
8456         singly-used registers optimized away)
8457
8458         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
8459
8460         * 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.
8461
8462 2002-05-10  Scott Dattalo <scott AT dattalo.com>
8463         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
8464
8465 2002-04-22  Michael Hope  <michaelh AT vroom>
8466
8467         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
8468
8469         * configure.in (DD_COPT): Added include support required for gbdk.
8470
8471         * .version: Bumped version number just to increase it.
8472
8473         * src/SDCCmain.c: Added -nostdinc to the default options.
8474
8475 2002-04-15  Michael Hope  <michaelh AT vroom>
8476
8477         * device/lib/z80/printf.c (sprintf): Added.
8478
8479         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
8480
8481         * src/z80/peeph.def: Added transpose redundent load rule.
8482
8483         * src/z80/main.c: Added force callee saves for jaune.
8484
8485         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
8486
8487         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
8488
8489 2002-03-28  Johan Knol  <johan AT balder>
8490
8491         * src/SDCCval.c: fixed bug #532436
8492
8493 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8494         * /src/port.h:
8495         Added "char *Processor" field to the port structure.
8496
8497         * /src/SDCCmain.c:
8498         Added -p option. Allows port dependent processor to be specified.
8499
8500         * all ports:
8501         Initialized the new field char *Processor field to NULL in all ports
8502
8503         * /src/pic/*:
8504         Compiler generated registers for interrupt context saving
8505         were not getting allocated.
8506
8507 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
8508
8509         * /src/SDCCast.c:
8510         Fixed left shift. Will promote the left side of a left shift
8511         if a) left shifting more than size of operand or b) when assigned
8512         to something size > size of left side
8513
8514 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8515         * src/pic/*
8516         tons of changes. Register allocation has been
8517         rewritten. Added customization for the various PICs. Flow
8518         analysis is restructured. ...
8519
8520         * src/pic/device.h:
8521         Added
8522
8523         * src/pic/device.c:
8524         Added. device.c is a PIC port hack to accomodate variations
8525         in PIC devices.
8526
8527 2002-03-13  Michael Hope  <michaelh AT vroom>
8528
8529         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
8530
8531 2002-03-04  johanknol  <johanknol AT manik>
8532
8533         * /src/SDCCval.c: fixed
8534
8535         const unsigned char arr[][2] = { { 0, 1 } };
8536         t18.c:1: error: Initializer element is not constant
8537
8538 2002-03-04  bela  <bela AT manik>
8539
8540         * /device/include/mcs51reg.h:
8541         ds89c420 register definition update
8542
8543 2002-03-03    <johan AT FRIJA>
8544
8545         * support/Util/SDCCerr.c: did something, but don't no why anymore
8546
8547         * support/regression/tests/bug-524691.c: made it a little less shy
8548
8549         * src/SDCCast.c (decorateType): fixed bug #524697
8550
8551         * src/SDCCast.c: made some lineno improvements
8552
8553         * src/SDCCval.c (getNelements): changed warning to error
8554
8555         * src/SDCCglue.c (printIvalArray): changed warning to error
8556
8557         * src/SDCCicode.c: fixed a warning for mingw
8558
8559         * src/SDCCast.c (decorateType): fixed the << promotion for ops
8560
8561         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
8562
8563 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
8564
8565         * src/ds390/peeph.def:
8566         Added some more peephole rules
8567
8568         * src/ds390/gen.c: Various fixes & enhancements
8569
8570         * src/SDCClrange.c, src/SDCClrange.h:
8571         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
8572
8573         * src/ds390/ralloc.c:
8574         various fixes & enhancements (ds390) specific
8575
8576         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
8577         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
8578         from rallocs.
8579
8580         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
8581
8582 2002-03-02    <johan AT FRIJA>
8583
8584         * src/SDCCast.c (decorateType): fixed bug #524708
8585
8586         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
8587
8588         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
8589
8590 2002-03-01  Michael Hope  <michaelh AT vroom>
8591
8592         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
8593
8594         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
8595
8596 2002-03-01    <johan AT FRIJA>
8597
8598         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
8599
8600         * src/SDCCast.c (decorateType): fixed bug #524209
8601
8602         * src/SDCCval.c (valNot): fixed bug #524195
8603
8604 2002-02-26    <johan AT balder>
8605
8606         * src/xa51/gen.c: fixed a warning
8607
8608         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
8609
8610         * src/SDCCast.c (decorateType): fixed bug #522534
8611
8612 2002-02-23    <johan AT balder>
8613
8614         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
8615
8616 2002-02-22    <johan AT balder>
8617
8618         * src/SDCCast.c: fixed bug #514865
8619
8620         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
8621
8622 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
8623
8624         * sdcc/src/SDCCloop.c:
8625         Previous fix was not good. basic blocks that have "break" or "return" are
8626         not really partof a loop , but live ranges used in these blocks should
8627         be live thru the entire loop, so set partOfLoop but don't add them to
8628         loop region
8629
8630 2002-02-21    <johan AT FRIJA>
8631
8632         * src/SDCCcse.c: fixed bug #514308
8633
8634 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
8635
8636         * src/SDCCloop.c:
8637         Fixed BUG #519583. If a conditional block ended in a return/break
8638         statement inside a loop, it was not being considered part of the loop.
8639
8640         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
8641
8642 2002-02-10  Karl Bongers <karl AT turbobit.com>
8643
8644         * debugger/*:
8645         Fixed up SDCDB debugger somewhat.  Updated debugger/README
8646         with lots of comments and notes.
8647
8648         * device/examples/test2.c:
8649         Fix bug, "red" variable not being initialized(compiler complained).
8650
8651         * device/examples/Makefile, examples/test3.c:
8652         Add Makefile in device/examples folder, compiles test3.c
8653         for use as a multiple module SDCDB test case.
8654
8655         * sim/ucsim/cmd.src/cmdset.cc:
8656         Took out debug printfs in ucsim "next" command.
8657
8658         * sim/ucsim/xa.src:
8659         Karl and Johan start ucsim XA support.  Most dissassembly working,
8660         about 75% emulation done(plenty of work remaining).
8661
8662         * sim/ucsim/z80.src:
8663         Add Z80 support to ucsim, add test-ucz80 regression test,
8664         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
8665         Notice z80 compiler fails on examples/test3.c/crc code.
8666
8667 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
8668
8669         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
8670         Added support for --parms-in-bank1
8671
8672         * src/ds390/peeph.def:
8673         added a few more peephole optimzations
8674
8675         * src/ds390/main.c:
8676         1) added __builtin_inp & __builtin_outp used to read in data of given length
8677            from a memory mapped port
8678         2) added __builtin_memcmp
8679         3) added __builtin_swapw swap bytes of a short
8680
8681         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
8682         1) handle multiple send & receives from register bank1
8683         2) ralloc can now allocate DPTR1 to some liveRanges
8684
8685         * src/SDCCsymt.c, src/SDCCsymt.h:
8686         changes to handle multiple sends & receives
8687
8688         * src/SDCCptropt.h:
8689         added some pointer arithmetic optimization
8690
8691         * src/SDCCptropt.c:
8692         added some pointer arithmetic optimizations but not stable yet so not
8693         called from anywhere (will get this working shortly)
8694
8695         * src/SDCCopt.c: fixed for multiple sends & receives
8696
8697         * src/SDCCmain.c:
8698         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
8699         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
8700            set preprocessor defines (depending on options)
8701
8702         * src/SDCCicode.c, src/SDCCicode.h:
8703         changes made to handle multiple sends & receives
8704
8705         * src/SDCCglobl.h:
8706         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
8707
8708         * src/SDCCcse.c, src/SDCCcse.h:
8709         added function findbackward def (to be used in upcoming optimization)
8710
8711         * src/SDCCcflow.c, src/SDCCcflow.h:
8712         added function returnAtEnd - to determine if a basic block terminates with
8713         a RETURN iCode
8714
8715         * src/SDCCast.c, src/SDCCast.h:
8716         added option parms-in-bank1
8717
8718         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
8719         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
8720         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
8721         adjusted for --parms-in-bank1 option
8722
8723         * device/include/string.h:
8724         donot redefine "reentrant" keyword
8725
8726         * device/include/ds80c390.h: Added some more SFRs
8727
8728 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
8729
8730         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
8731
8732 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
8733
8734         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
8735
8736 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
8737
8738         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
8739
8740 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
8741
8742         * Added --xram-movc option
8743
8744 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
8745
8746         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
8747
8748 2002-01-11  Johan Knol
8749
8750         * Added math lib of Jesus Calvino-Fraga
8751
8752 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
8753
8754         * src/SDCCmain.c (processFile): fix processing of ../../src.c
8755         * support/regression/Makefile: new target test-mcs51-stack-auto
8756         * support/regression/ports/mcs51-stack-auto/spec.mk: added
8757
8758 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
8759
8760         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
8761
8762 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
8763
8764         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
8765
8766 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
8767
8768         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
8769
8770         * src/SDCCglue.h: add definition for printIvalChar()
8771
8772 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
8773
8774         * src/SDCCast.c: fix #498138 by Johan
8775
8776         * src/SDCCglue.c: fix #498138 by Johan
8777
8778 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
8779
8780         * support/regression/Makefile: fix clean
8781
8782         * support/regression/ports/ds390/support.c: fix transmission of last character
8783
8784 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
8785
8786         * /sdcc/src/ds390/gen.c:
8787         a) improved computing address of stack variable
8788         b) took out some #if 0 code
8789         c) improved parmBytes adjustment
8790         d) improved genPlusIncr & genMinusIncr
8791         e) genCmp could generate bad code (when left assigned to DPTR)
8792         f) Fixed bug in hasInc
8793
8794         * /sdcc/src/ds390/ralloc.c:
8795         a) packRegsForSupport could mess up live information (Fixed)
8796         b) packRegsDPTRuse could be incorrect for left & right shift
8797
8798         * /sdcc/src/mcs51/ralloc.c:
8799         packRegsForSupport could mess up the live information (Fixed)
8800
8801         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
8802
8803         * /sdcc/src/SDCCast.c:
8804         can reverse a loop even if function call is present as long
8805         as the loop control variable is local & is not passed as parameter
8806
8807 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
8808
8809         * /sdcc/ChangeLog: *** empty log message ***
8810
8811         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
8812         More builtin function additions for TININative
8813
8814         * /sdcc/src/ds390/ralloc.c:
8815         Had broken the regression testsuite
8816
8817         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
8818
8819         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
8820         Added funcattr hasStackParms will be set for reentrant functions when there
8821         are paramteres on the stack, this helps in minimizing frame pointer generation
8822         typeFromStr can handle function pointers now
8823
8824         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
8825         *** empty log message ***
8826
8827 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
8828
8829         * /src/ds390/gen.c, /src/ds390/main.c:
8830         More builtin function additions for TININative
8831
8832         * /src/ds390/ralloc.c:
8833         Had broken the regression testsuite
8834
8835         * /src/SDCCast.c: Fixed a bug in dumptree
8836
8837         * /src/SDCCsymt.c, /src/SDCCsymt.h:
8838         Added funcattr hasStackParms will be set for reentrant functions when there
8839         are paramteres on the stack, this helps in minimizing frame pointer generation
8840         typeFromStr can handle function pointers now
8841
8842         * /doc/builtins.txt, /doc/TININative.txt:
8843         *** empty log message ***
8844
8845
8846 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
8847
8848         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
8849         ALPHA version for -mTININative
8850
8851         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
8852         updated to reflect changes in the port structure
8853
8854         * /src/port.h:
8855         added function do_assemble (similar to do_link) if non-null this function
8856         will be called to do assembly (-mTININative) requires a multi command
8857         assembly
8858         added function genAssemblerEnd will be called to generate assembler Epilogue
8859
8860         * /src/SDCCsymt.c:
8861         added _JavaNative to debug info printing
8862
8863         * /src/SDCCmain.c: added option --tini-libid
8864         added port->do_assemble function (-mTININative) has a multi command assemble
8865
8866         * /src/SDCCglue.c: Disabled "constExpr" check
8867         added port->genAssemblerEnd function
8868
8869         * /src/SDCCglobl.h: Added option --tini-libid value
8870
8871         * /src/SDCCast.h:
8872         tookout optimizeCompare from the header (has no external references)
8873
8874         * /src/SDCCast.c: made one more function "static"
8875
8876 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
8877
8878         * src/z80/mappings.i: Added z80asm support.
8879
8880         * src/z80/main.c: Added z80asm support on --asm=z80asm
8881
8882         * src/z80/gen.c: Fixed asm portability issues.
8883
8884         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
8885
8886         * src/SDCCglue.c (printExterns): Added global/extern split.
8887
8888 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
8889
8890         * support/regression/Makefile: added test for mcs51 model large
8891
8892         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
8893
8894         * support/regression/ports/gbz80/spec.mk: added -mgbz80
8895
8896 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
8897
8898         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
8899
8900 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
8901
8902         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
8903
8904         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
8905
8906 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
8907
8908         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
8909
8910         * support/regression/tests/simplefloat.c: Port to mcs51.
8911
8912 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
8913         * support/regression/tests/bug-485362.c: Added.
8914
8915         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
8916
8917         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
8918
8919         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
8920
8921         * src/z80/gen.c (aopDump): Added a dump function.
8922
8923 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
8924         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
8925
8926         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
8927
8928         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
8929
8930         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
8931
8932         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
8933
8934         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
8935
8936         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
8937
8938         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
8939
8940         * support/regression/ports/ds390/support.c: Use tinibios.
8941
8942         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
8943
8944 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
8945
8946         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
8947         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
8948
8949         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
8950
8951         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
8952
8953 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
8954
8955         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
8956
8957         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
8958         (packRegsForIYUse): Created and optimised.
8959
8960 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
8961
8962         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
8963 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
8964
8965         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
8966
8967         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
8968
8969         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
8970
8971 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
8972
8973         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
8974
8975         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
8976
8977 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
8978
8979         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
8980
8981         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
8982
8983         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
8984
8985 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
8986
8987         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
8988         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
8989         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
8990
8991         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
8992
8993         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
8994         (genNotFloat): Added.
8995         (genUminusFloat): Added.
8996
8997         * device/lib/z80/Makefile: Added floating pt stubs.
8998
8999         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
9000
9001         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
9002
9003         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
9004
9005 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9006
9007         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
9008
9009         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
9010
9011         * sdcc/support/regression/Makefile: Add port ds390.
9012
9013         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
9014
9015         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
9016
9017         * sdcc/support/regression/ports/ds390/spec.mk: Added.
9018
9019         * sdcc/support/regression/ports/ds390/support.c: Added.
9020
9021         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
9022
9023         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
9024
9025         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
9026
9027 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9028
9029         * device/include/malloc.h: Added z80 and gbz80 support.
9030
9031         * device/lib/gbz80/heap.s: Added.
9032
9033         * device/lib/z80/heap.s: Added.
9034
9035         * device/lib/malloc.c: Added z80 and gbz80 support.
9036
9037         * support/regression/tests/malloc.c (testMalloc): Added.
9038
9039         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
9040
9041         * support/regression/tests/bug-478094.c: Added.
9042
9043         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
9044
9045 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
9046
9047         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
9048
9049         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
9050
9051         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
9052
9053         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
9054
9055         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
9056
9057 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9058
9059         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
9060
9061 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
9062
9063         * support/regression/tests/bug-477927.c: Added.
9064
9065         * src/z80/peeph.def: Added minor rules.
9066
9067         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
9068
9069         * src/z80/peeph.def: Added jump optimisation modification.
9070
9071 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
9072
9073         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
9074
9075 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
9076
9077         * support/regression/tests/funptrs.c: Added.
9078
9079 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
9080
9081         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
9082
9083 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
9084
9085         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
9086
9087         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
9088
9089         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
9090         (movLeft2ResultLong): Created.
9091
9092         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
9093         (joinPushes): Added.  Joins two char pushes into a word push.
9094
9095 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
9096
9097         * support/cpp2/Makefile.in (install): Added creation of dest dir.
9098
9099         * support/makebin/Makefile (install): Added creation of dest dir.
9100
9101 2001-10-24 Karl Bongers <karl AT turbobit.com>
9102
9103         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
9104
9105 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
9106
9107         * src/z80/ralloc.c: Turned off faulty pack for one use.
9108
9109         * src/z80/peeph-gbz80.def: Removed redundent restart options.
9110
9111         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
9112
9113 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
9114
9115         * support/regression/Makefile: Improved clean
9116
9117         * support/regression/ports/gbz80/spec.mk: Added clean
9118
9119         * support/regression/ports/host/spec.mk: Added clean
9120
9121         * support/regression/ports/z80/spec.mk: Added clean
9122
9123         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
9124
9125         * support/regression/ports/mcs51/timeout.c: little improvements
9126
9127 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
9128
9129         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
9130
9131         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
9132
9133         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
9134
9135 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
9136
9137         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
9138
9139         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
9140
9141 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
9142         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
9143
9144         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
9145
9146         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
9147
9148         * src/mcs51/main.c (_linkCmd): Added bin path to command.
9149
9150         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
9151
9152         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
9153
9154         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
9155
9156         * support/regression/tests/longor.c: Added.
9157
9158 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
9159
9160         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
9161
9162         * as/mcs51/aslink.h: define PATH_MAX
9163
9164         * as/mcs51/asm.h: define PATH_MAX
9165
9166         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
9167
9168         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
9169
9170         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
9171
9172         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
9173
9174         * src/SDCCglobl.h: define PATH_MAX
9175
9176         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
9177
9178         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
9179
9180 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
9181
9182         * src/z80/gen.c (gencjneshort): Fixed
9183
9184         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
9185
9186 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
9187
9188         * support/regression/tests/bug-469671.c: Added.
9189
9190         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
9191
9192 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
9193
9194         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
9195
9196         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
9197
9198 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
9199
9200         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
9201
9202         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
9203
9204         * src/device/lib/_mullong.c : removed hint: nooverlay bug
9205
9206         * src/device/lib/_divuint.c : removed hint: nooverlay bug
9207
9208         * src/device/lib/_divulong.c: removed hint: nooverlay bug
9209
9210         * src/device/lib/_moduint.c : removed hint: nooverlay bug
9211
9212         * src/device/lib/_modulong.c: removed hint: nooverlay bug
9213
9214 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
9215
9216         * 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.
9217
9218         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
9219
9220         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
9221
9222 2001-10-07    <johan AT FRIJA>
9223
9224         * device/lib/gets.c (gets): fixed the return value.
9225
9226 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
9227         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
9228
9229         * 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.
9230
9231         * 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.
9232
9233         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
9234
9235         * src/pic/gen.c: Removed Safe_strdup.
9236
9237         * configure.in: Added option to enable libgc support.
9238
9239         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
9240         (bitVectUnion): Optimised.
9241         (bitVectIntersect): Optimised.
9242         (bitVectBitsInCommon): Optimised.
9243         (bitVectCplAnd): Optimised.
9244
9245         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
9246
9247 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9248
9249         * src/SDCCmain.c: distinguish between assembler debug and plain options
9250
9251         * src/avr/main.c:   remove standard assembler options
9252
9253         * src/ds390/main.c: remove standard assembler options
9254
9255         * src/mcs51/main.c: remove standard assembler options
9256
9257         * src/port.h: removed "PENDING" comment
9258
9259 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9260
9261         * src/device/lib/_mulint.c  : new, with assember functions
9262
9263         * src/device/lib/_mullong.c : new, with assember functions
9264
9265         * src/device/lib/_divuint.c : with assember functions
9266
9267         * src/device/lib/_divsint.c : with assember functions
9268
9269         * src/device/lib/_divulong.c: with assember functions
9270
9271         * src/device/lib/_divslong.c: with assember functions
9272
9273         * src/device/lib/_moduint.c : with assember functions
9274
9275         * src/device/lib/_modsint.c : with assember functions
9276
9277         * src/device/lib/_modulong.c: with assember functions
9278
9279         * src/device/lib/_modslong.c: with assember functions
9280
9281         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
9282
9283         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
9284
9285         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
9286                                       replaced _mululong.c and _mulslong.c by _mullong.c
9287
9288 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9289
9290         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
9291
9292 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9293
9294         * src/SDCCglue.c: test, if win32api is available for MINGW
9295
9296 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9297
9298         * src/SDCCsymt.c: no more _modifier in printTypeChain()
9299         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
9300         * support/regression/ports/gbz80/spec.mk: removed GENERIC
9301         * support/regression/ports/host/spec.mk: removed GENERIC
9302         * support/regression/ports/mcs51/spec.mk: removed GENERIC
9303         * support/regression/ports/z80/spec.mk: removed GENERIC
9304
9305 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
9306
9307         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
9308
9309         * support/regression/tests/bug-467035.c: Created.
9310
9311 2001-10-01    <johan AT FRIJA>
9312
9313         * src/SDCC.y: fixed bug #466586 part 1
9314
9315 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
9316
9317         * SDCCicode.c: z80 has no generic pointers
9318         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
9319
9320 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
9321
9322         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
9323
9324 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
9325
9326         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
9327
9328         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
9329
9330 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
9331
9332         * configure.in: Fixed up so that ucsim is only configured once.
9333
9334         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
9335
9336         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
9337         (getPathDifference): As above.
9338
9339         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
9340
9341         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
9342
9343 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
9344         * .version: Updated to 2.3.1
9345
9346         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
9347         Added copyright header.
9348
9349         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
9350         (assemble): Added support for macro based assembler commands.
9351         (linkEdit): Added support for macro based linker commands.
9352         (preProcess): Changed the pre-processor to use macros.
9353         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
9354         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
9355
9356         * device/lib/z80/crt0.s: Added module name for debugging.
9357
9358 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
9359
9360         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9361
9362         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
9363
9364         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
9365
9366         * src/Makefile.in: Added SDCCmacro and SDCCutil
9367
9368 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
9369
9370         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9371
9372 2001-09-16    <johan AT FRIJA>
9373
9374         * 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.
9375
9376 2001-09-15    <johan AT FRIJA>
9377
9378         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
9379         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
9380
9381 2001-09-11    <johan AT FRIJA>
9382
9383         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
9384
9385 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
9386
9387         * support/regression/tests/bug-460444.c: Added test case.
9388
9389         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
9390         (genCast): Added justification for all of the asserts.
9391
9392 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
9393
9394         * support/regression/support.c: _xdata replaced by xdata
9395
9396         * support/regression/spec.mk: removed _generic
9397
9398 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
9399
9400         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
9401
9402         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
9403         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
9404
9405         * src/z80/peeph.def: Added a rule to optimise shift then compare.
9406
9407         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
9408
9409         * support/regression/tests/bug-460010.c: Added test case.
9410
9411         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
9412
9413 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
9414
9415         * support/regression/Makefile: inter-port-clean adjusted for mcs51
9416
9417         * support/regression/testfwk.c: removed workaround for bug #436344
9418
9419         * support/regression/tests/bp.c: use less memory with mcs51
9420
9421         * support/regression/tests/bug-441448.c: use less memory
9422
9423         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
9424
9425         * support/regression/collate-results.py: typo
9426
9427 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
9428
9429         * support/regression/tests/fetchoverlap.c: Added new test case.
9430
9431         * support/regression/tests/bp.c: Added new test case.
9432
9433         * support/regression/tests/bug-448984.c: Added new test case.
9434
9435         * support/regression/tests/pow2shifts.c: Added new test case.
9436
9437         * src/z80/gen.c: Turned off the noise it normally generates for the release.
9438         (genlshTwo): Fixed right shift for count > 8.
9439
9440         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
9441
9442 2001-09-08    <johan AT FRIJA>
9443
9444         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
9445
9446 2001-09-07    <johan AT FRIJA>
9447
9448         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
9449
9450         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
9451
9452 2001-09-06    <johan AT FRIJA>
9453
9454         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
9455         * bernhard noted me at this: "() equals to (void)" (1.38)
9456
9457 2001-09-05    <johan AT FRIJA>
9458
9459         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
9460
9461 2001-09-04    <johan AT FRIJA>
9462
9463         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
9464
9465
9466 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
9467
9468         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
9469
9470 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
9471
9472         * link/z80/aslink.h: Fixed path for PATH_MAX
9473
9474 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
9475
9476         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
9477
9478         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
9479
9480         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
9481
9482         * 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.
9483
9484 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
9485
9486         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
9487         (genCmp): Fixed up genCmp for the GB with longs.
9488
9489         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
9490
9491         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
9492
9493         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
9494
9495         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
9496
9497 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
9498
9499         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
9500
9501 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
9502
9503         * 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.
9504
9505         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
9506
9507 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
9508
9509         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
9510
9511         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
9512
9513 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
9514
9515   * sim/ucsim/configure:    little improvement of Cygwin-detection
9516   * sim/ucsim/configure.in: little improvement of Cygwin-detection
9517   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
9518   * support/regression/tests/bug-221100.c: small changes for mcs51
9519   * support/regression/tests/bug-221168.c: small changes for mcs51
9520   * support/regression/tests/bug-227710.c: small changes for mcs51
9521   * support/regression/tests/staticinit.c: small changes for mcs51
9522   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
9523   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9524   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9525
9526 $Revision$