5f503a63b48e1188b0e5dbb5494e9d233319e4ae
[fw/sdcc] / ChangeLog
1 2005-08-13 Raphael Neider <rneider AT web.de>
2
3         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
4           as it might be executed DURING a build (parallel make is wonderful)
5
6 2005-08-13 Raphael Neider <rneider AT web.de>
7
8         * device/lib/Makefile.in (port-specific-objects-pic16):
9           revert to cp $(PORT)/bin/*.* $(PORTDIR)
10         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
11           dependency
12         * device/lib/pic16/Makefile.rules: build subdirs before creating
13           the library, removed builddir rule, create $(builddir) early in
14           recurse rule, use empty recurse rule for leaf directories
15         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
16           mkdir errors (race condition), removed duplicate suffix "hex"
17           from clean rules
18         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
19         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
20           prevents mkdir -p from aborting on Alpha
21         
22 2005-08-12 Raphael Neider <rneider AT web.de>
23
24         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
25           db-statements in order to allow for arrays of pointers in code
26           sections to be placed without interspersed 0-padding, fixes
27           bug #1256215
28         * (emitStatistics): fixed division by zero for pic18f1220
29         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
30           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
31         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
32         * (pic16_pCodeConstString): keep track of already emitted string
33           literals to prevent "duplicate definitions of symbol _str_NR"
34         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
35           debug message
36         * device/lib/Makefile.in: ignore failing PIC16 library builds
37         * device/lib/pic16/Makefile: do not build if gputils are missing
38         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
39
40 2005-08-10 Raphael Neider <rneider AT web.de>
41
42         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
43           my last commit)
44
45 2005-08-10 Raphael Neider <rneider AT web.de>
46
47         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
48           Rokas' patch to add the new fixed point type "__fixed16x16"
49         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
50           functions for __fixed16x16 arithmetics
51         * device/lib/pic16: reimplemented the build system to support
52           a separate build directory, better handling of libio (create
53           the library in a separate subdir for each architecture) and
54           easier configuration (centralized in Makefile.common)
55
56 2005-08-07 Raphael Neider <rneider AT web.de>
57
58         * src/pic16/gen.c (genrshTwo): fixed sign extension
59         * src/pic16/device.c: added pic18f2320, 4220 and 4320
60         * device/include/pic16/pic18f2220.h: changed some bit definitions,
61           added T0CONbits
62         * device/include/pic16/pic18f4220.h: NEW, header for
63           pic18f4220 and pic18f4320
64         * device/include/pic16/pic18fregs.h: added new devices,
65           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
66         * device/include/pic16/signal.h: resolved name clashes
67           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
68           to also allow testing for interrupt enable bits, added
69           comments on how to use the macros
70         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
71         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
72           register definitions for the devices
73         * device/lib/pic16/pics.all: added new devices
74         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
75           allocated memory
76         * device/lib/pic16/libc/stdlib/memfree: do not count
77           the block header as free memory
78         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
79           simplified and added missing end-of-blocklist-marker
80           (reported by Peter Onion, fixes #1252814)
81         * (_mergeHeapBlock): fixed loop condition
82         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
83           len==0, restructured code
84         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
85           up a bit, reduced bitfield accesses, prevent endless loops
86           in case of heap corruption
87         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
88           "unreferenced arguments/must return a value" warnings
89         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
90           replaced BAUDREG with SPBRG
91         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
92           device/lib/pic16/debug/gstack/gstack.c: replaced
93           _naked, _asm, _endasm with __naked, __asm, __endasm
94
95 2005-08-05 Raphael Neider <rneider AT web.de>
96
97         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
98           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
99
100 2005-08-05 Borut Razem <borut.razem AT siol.net>
101
102         * device/lib/Makefile.in: added missing ';'
103         * configure: removed ^M characters
104
105 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
106
107         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
108           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
109           License
110
111 2005-08-04 Borut Razem <borut.razem AT siol.net>
112
113         * configure.in: pic16 libraries build 2nd try - enable running
114           configure in device/lib/pic16
115         * configure: regenerated from configure.in
116         * device/lib/Makefile.in: create $(PORT)/bin directory
117
118 2005-08-03 Raphael Neider <rneider AT web.de>
119
120         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
121           to get/set values via pointers
122         * (genUnpackBits,genPackBits): changed detection of
123           ptr->bitfield vs. sym.bitfield, fixed access via generic
124           pointers, removed dead (wrong) code for multibyte bitfields
125         * (genNearPointerGet, genGenPointerGet): removed useless code,
126           fixed bitfield detection, fixes #1250594
127         * (genNearPointerSet): removed useless code
128         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
129           and introduced macro pic16_emitpcode that conditionally emits
130           the origin of the following pCode (useful for debugging SDCC)
131         * src/pic16/pcode.c: changed (and disabled) some debug outputs
132         * (createDefmap): fixed handling of LFSR for --optimize-df
133
134 2005-08-02 Borut Razem <borut.razem AT siol.net>
135
136         * device/lib/Makefile.in: pic16 libraries build enabled since
137           gputils-0.13.2 are now localy installed at sourceforge's compile farm
138
139 2005-08-02 Raphael Neider <rneider AT web.de>
140
141         * src/pic16/gen.c (genPackBits): removed deprecated warning
142         * (genGenPointerSet): fixed bitfield detection
143
144 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
145
146         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
147
148 2005-07-31 Raphael Neider <rneider AT web.de>
149
150         * device/lib/pic16/libdev/pic18f458.c,
151           device/include/pic16/pic18f458.h: added missing T0CONbits
152
153 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
154
155         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
156
157 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
158
159         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
160
161 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
162
163         * device/include/mcs51/at89c51ed2.h: added.
164
165 2005-07-23 Raphael Neider <rneider AT web.de>
166
167         * src/pic/gen.h: added emitpcode macro for debugging
168         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
169           and replace by macro adding debug information on demand
170         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
171         * (gencjne): tried to fix; replaced with correct (slower) code
172         * (gen{Unp,P}ackBits): fixed single bit access
173         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
174         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
175           previous instruction
176         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
177           register has to be handled with care (forbidding movement
178           of assignments/uses, removing assignments completely, ...)
179         * (pCodeOptime2pCodes): make use of regIsSpecial
180         * added lots of debugging output (commented out)
181         * src/pic/rallloc.c (deassignLRs): prevent operand registers
182           from being reused as result UNLESS it is known to work
183
184 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
185
186         * support/Util/dbuf.h: include <stddef.h> for size_t
187         * .version: changed to version 2.5.2
188
189 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
190
191         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
192
193 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
194
195         * src/hc08/gen.c (genMinus): fixed bug #1241835,
196           (genModOneByte): removed needless psha/pula
197
198 2005-07-22 Raphael Neider <rneider AT web.de>
199
200         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
201           have PIC14 handled like PIC16, fixes broken pic14 linker calls
202         * src/pic/gen.c (resolveIfx): do not "invent" labels
203         * (genSkipc): changed to positive logic
204         * (genSkipCond): removed as no longer needed
205         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
206           backport from PIC16
207         * (genLeftShift): check operands are in different registers
208         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
209           INCF does not update CARRY...
210         * src/pic/main.c: fixed _linkCmd
211         * src/pic/pcode.c (unlinkpCode): added inactive code
212         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
213           alive (do not assign result and operand overlapping registers)
214
215 2005-07-22 Raphael Neider <rneider AT web.de>
216
217         * src/pic/device.c (dump_sfr): replaced register declaration with
218           call to emitSymbolToFile() to avoid duplicate symbols
219         * (assignRelocatableRegisters): do not declare external symbols
220         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
221           right (take size of type, not etype)
222         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
223         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
224         * (packRegsForAccUse): disabled assignment of WREG as
225           the result reg to prevent occurence of just fixed #1235003,
226           fixes #1242954
227         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
228           symbols (avoids duplicate symbols in .asm file)
229         * (pic14emitRegularMap): use emitSymbolToFile()
230         * src/pic/gen.c (aopOp): fixed spillLocation handling
231         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
232         * (genDataPointerSet): removed unneccessary variables/output
233
234 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
235
236         * as/mcs51/lkarea.c: enlarged codemap for banked memory
237         * device/lib/mcs51/crtbank.asm: added # to 0x0F
238
239 2005-07-21 Raphael Neider <rneider AT web.de>
240
241         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
242           architecture cannot handle them efficiently, fixes bug #1235003
243         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
244           check for empty sets before using them (fixes bug #1232190)
245
246 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
247
248         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
249           (lnksect2): generate warnings for memory overlap
250         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
251           constseg to set the name of these segments so you can instruct the linker
252           to place them in banks
253         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
254         * src/SDCCglobl.h: added MODEL_HUGE to enum,
255           added code_seg and const_seg to options
256         * src/SDCCglue.c (emitMaps): use options.const_seg,
257           (createInterruptVect): put interrupt vectors in segment HOME,
258           (glue): put HOME before static segment and put the main glue in HOME,
259           (glue): use options.code_seg
260         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
261         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
262           these segments so you can instruct the linker to place them in banks
263           (linkEdit): use code_loc for HOME segment which should be the first
264           segment in code memory now
265         * src/SDCCmem.c: fixed more stuff like bug 1238386
266         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
267           (changePointer): don't change function pointers to code pointers for
268           banked functions,
269           (compareType): added exceptional check for banked function pointers
270         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
271         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
272           after static in code memory
273         * src/mcs51/gen.c: added aopLiteralLong prototype,
274           (aopForSym): use getSize for functions,
275           (genCall): generate banked calls over one trampoline __sdcc_banked_call
276           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
277           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
278           the segment,
279           (genPcall): use call for literal function pointers and generate banked
280           calls over the one trampoline so there's only one place for the user to
281           modify according to his/hers hardware,
282           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
283           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
284         * src/mcs51/main.c: added keyword banked,
285           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
286         * support/Util/SDCCerr.c,
287         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
288           needed for passing the bank and address to the trampoline
289         * device/lib/mcs51/crtbank.asm: added for bankswitching
290         * device/lib/mcs51/Makefile: added crtbank
291
292 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
293
294         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
295           for fields at offset 0 of a struct or union as reported
296           on 2005-07-07 in the developer mailing list.
297
298 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
299
300         * src/SDCCmem.c: fixed bug 1238386
301
302 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
303
304         * src/mcs51/peeph.def: added labelrefcounting for peepholes
305           (patch #1144962), added peephole 300, enabled 259.x
306         * doc/sdccman.lyx: removed screenshot and provided link instead
307
308 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
309
310         * doc/sdccman.lyx: added section about debugging with ddd
311         * doc/figures/ddd_example.eps: screenshot of debugging session
312
313 2005-07-04 Raphael Neider <rneider AT web.de>
314
315         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
316           like CODE pointers, fixes #1115683
317         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
318           call, fixes bugs #1232211, #1228110,
319           fixed wrong casts to pCodeFlow from pCodeInstructions
320
321 2005-07-04 Raphael Neider <rneider AT web.de>
322
323         * src/pic/gen.c (popGet): changed assert to allow for
324           bit operands
325         * (popGetAddr): changed signature to provide
326           an additional index, patched all call sites
327         * (genCmpEq): handle literal-like operands correctly
328         * (genAddrOf): added sanity checks on __code/__data pointers
329         * (genAssign): added handling of symbols from __code section
330         * (gencjne): do not generate code for comparisons whose result
331           is neither stored nor used, fixes bug #1171114
332         * (AccLsh, AccRsh): operate on operand instead of WREG
333         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
334           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
335           by known count
336         * rewrote complete shift-by-literal logic, commented unused
337           functions out
338         * (genConstPointerGet): get multiple bytes (if result size > 1),
339           fixed handling of non-immediate addresses
340         * (genPointerGet): handle CODE pointers like CONST pointers
341         * (genpic14Code): insert C-SRC lines as Cource-pCodes
342         * ({aop,op}_isLitLike): NEW, single place to decide whether an
343           operand is to be treated as a literal or not
344         * (mov2w,genPcall,genCmpEq),
345           src/pic/genarith.c: use aop_isLitLike() to decide between
346           literal/register contents
347         * (addSign): added missing offset
348         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
349           only emit comment in debug-mode,
350           use {aop,op}_isLitLike throughout the file
351         * src/pic/glue.c: fix initializers for pointers (work in progress)
352         * src/pic/pcode.c (get_op): honor index on _const symbols
353         * ({reset,dump}pCodeStatistics): NEW, estimate code size
354         * (dumppBlock): added pCode size estimation
355         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
356           check for IS_SYMOP before OP_SYMBOL'ing
357         * fixed indentation, compacted switch-statements
358         * (allocReg): find free register and allocate it instead of
359           allocating new registers all the time
360         * (deassignLRs): prevent POINTER_GET's from being assigned the same
361           registers as its operands (necessary only for multibyte GETs)
362
363 2005-07-01 Raphael Neider <rneider AT web.de>
364
365         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
366           debugging .asm-output macros FENTRY + FEXIT
367         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
368           way... I wonder...
369         * (emitpComment): NEW, printf to pCode
370         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
371           offset handling
372         * (popGetAddr): NEW, variant of popGet to access an immediates
373           high(er) bytes instead of the n'th byte of memory they reference,
374           replaced popGet with popGetAddr where neccessary
375         * (genDataPointerGet): reactivated and fixed implementation
376         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
377           accesses
378         * (genDataPointerSet): fixed multibyte assignments
379         * (genpic14Code): fixed --i-code-in-asm handling
380         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
381         * (genPlus): fixed index-out-of-bounds error
382         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
383         * src/pic/ralloc.c: added debugging output macro FENTRY2
384         * (spillThis): fixed indentation, enbraced for-body for clarity
385         * (rematStr): commented out as now unused
386         * (regTypeNum): commented out special spill case (overwrites
387           arbitrary values)
388         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
389
390 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
391
392         * doc/sdccman.lyx: documented sfr16/sfr32,
393           added example for using storage class with function pointers
394         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
395
396 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
397
398         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
399         * device/lib/_itoa.c,
400         * device/lib/_ltoa.c: optimized codesize
401         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
402           but don't know how to suppress the double warning.
403         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
404         * support/Util/SDCCerr.c,
405         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
406
407 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
408
409         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
410           fixed old K&R prototypes
411         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
412         * device/lib/_gptrget.c,
413         * device/lib/_gptrgetc.c,
414         * device/lib/_gptrput.c: changed versions for new memory indicator values,
415           also new versions for small generic pointers and banked generic pointers
416         * src/port.h: added const_name
417         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
418         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
419         * src/SDCCcse.c (findPrevIc): check all associative operators
420         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
421         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
422         * src/SDCCmem.c: updated comments,
423           set far-space to 0 for pdata, results in optimized code
424         * src/SDCCmem.h: added macro CONST_NAME
425         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
426           moving the info into the highest bits, see also gptrget/gptrput
427         * src/src.dsp: added sdcc.ico to project files
428         * src/avr/gen.c (genCast): fixed bug 0x%d
429         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
430         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
431           relation between ptr_type and DCL_TYPE,
432           (genCast): fixed bug 0x%d
433         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
434           (CODE)" for const_name
435         * src/hc08/gen.c (genCast): fixed bug 0x%d
436         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
437           (hc08_port): added "CONST (CODE)" for const_name
438         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
439           (aopForRemat, adjustArithmeticResult): disconnected direct relation
440           between ptr_type and DCL_TYPE,
441           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
442           operand* and took AOP() inside function so sfr-ness can be checked,
443           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
444           new prototype,
445           (genFunction, genEndFunction): optimized stack setup,
446           (genMinus): optimized for literals with ending zeroes (in bytes),
447           (genCast): fixed bug 0x%d
448         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
449           (mcs51_port): added "CONST (CODE)" for const_name
450         * src/mcs51/peeph.def: made rule 226 more generic
451         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
452         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
453         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
454         * src/z80/main.c (z80_port): added NULL for const_name,
455           (gbz80_port): added NULL for const_name
456         * support/regression/tests/bug663539.c,
457         * support/regression/tests/sfr16.c: new tests
458
459 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
460
461         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
462
463 2005-06-24 Raphael Neider <rneider AT web.de>
464
465         * device/lib/pic16/libdev/pic18f[68][567]20.c:
466           corrected typos...
467         * device/include/pic16/signal.h: added USBIF
468           and SIG_USB
469
470 2005-06-24 Raphael Neider <rneider AT web.de>
471
472         * device/lib/pic16/libdev/pic18f2455.c,
473           device/include/pic16/pic18f2455.h: NEW
474         * device/include/pic16/pic18fregs.h,
475           device/lib/pic16/pics.all,
476           src/pic16/device.c: added 18f2455
477         * device/lib/pic16/libdev/pic18f[68][567]20.c,
478           device/include/pic16/{pic18f[68][567].h,usart.h}:
479           replaced MULTIPLE_USARTS define with more relaible
480           compatibility sfrs (for USART access)
481
482 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
483
484         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
485           and the output asm file line is printed on two lines.
486
487 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
488
489         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
490           BGT, BLE, BHI, and BLS instructions
491         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
492           genCmpEq): removed
493         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
494           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
495           fixes bug #1216342
496         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
497
498 2005-06-15 Raphael Neider <rneider AT web.de>
499
500         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
501         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
502         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
503           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
504           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
505
506 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
507
508         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
509           Marcel Telka in bug #1215704
510
511 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
512
513         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
514           located in shared memory bank.
515
516 2005-05-31 Raphael Neider <rneider AT web.de>
517
518         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
519           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
520           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
521
522 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
523
524         * device/lib/_strncpy.c: fixed the fix
525
526 2005-05-26 Raphael Neider <rneider AT web.de>
527
528         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
529           initializers with \0, bug #1208187
530         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
531           intializers with \0, bug #1208187
532
533 2005-05-26 Raphael Neider <rneider AT web.de>
534
535         * src/pic16/glue.c (pic16_printIvalChar): fixed string
536           initializers with \0, bug #1208187
537         * src/pic16/main.c (_process_pragma): added sanity checks
538           for stack position and size, emit warnings when appropriate
539
540 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
541
542         * device/lib/_strncpy.c: fixed not filling with \0
543
544 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
545
546         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
547           createFunction),
548         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
549           compound_statement),
550         * src/SDCCsymt.h,
551         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
552
553 2005-05-24 Raphael Neider <rneider AT web.de>
554
555         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
556
557 2005-05-24 Raphael Neider <rneider AT web.de>
558
559         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
560           TRISE definitions, closes bug #1162453
561
562 2005-05-22 Raphael Neider <rneider AT web.de>
563
564         * src/pic16/main.c (_process_pragma): check for missing
565           arguments to pragmas code and udata
566         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
567           consistency fixes to match other headers (thanks to Jim Paris)
568         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
569
570 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
571
572         * src/SDCCicode.c (isOperandEqual): fixed missing ;
573
574 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
575
576         * support/regression/tests/bug1198642.c: new test
577         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
578         * src/SDCCcse.c (findPrevIc): added comment, please have a look
579         * support/scripts/resource.h,
580         * support/scripts/resource.rc,
581         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
582         * support/scripts/sdcc.ico: added 32x32 icon
583
584 2005-05-18 Raphael Neider <rneider AT web.de>
585
586         * device/lib/pic16/libdev/pic18f*.c,
587         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
588           keywords to "__sfr" and "__at (X)"
589         * device/include/pic16/pic18fregs.h: added pic18f4520
590         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
591           #1203088 (MPLAB compatibility)
592
593 2005-05-17 Raphael Neider <rneider AT web.de>
594
595         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
596         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
597         * device/lib/pic16/pics.all: added new devices
598         * src/pic16/device.c: added support for pic18f4520
599
600 2005-05-16 Raphael Neider <rneider AT web.de>
601         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
602         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
603         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
604           convenience function for bit access
605
606 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
607
608         * device/lib/printf_large.c: fixed bug 1193299
609         * support/regression/tests/bug1057979.c: added test %3.3s
610
611 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
612
613         * device/include/mcs51/8051.h,
614         * device/include/mcs51/8052.h: made parseable with lint
615         * device/include/mcs51/lint.h: added include file for (sp)lint
616         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
617         * doc/cdbfileformat.lyx,
618         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
619
620 2005-05-14 Raphael Neider <rneider AT web.de>
621
622         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
623         * device/lib/pic16/libc/stdlib/itoa.c (new)
624         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
625         * device/lib/pic16/libio/Makefile: exclude subdir according to
626           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
627         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
628         * src/pic16/gen.c (genFunction): prevent annoying warning
629         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
630           nameclashes on BeOS
631         * support/cpp2/cppmain.c (cpp_output_string): new
632         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
633           fixes bug 1116802
634
635 2005-05-13 Borut Razem <borut.razem AT siol.net>
636
637         * src/SDCCmain.c (linkEdit): fixed bug 1195202
638
639 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
640
641         * .version: changed to version 2.5.1; back to bleeding edge development
642
643 2005-05-11 Borut Razem <borut.razem AT siol.net>
644
645         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
646           generate PDF version 1.3 documents
647
648 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
649
650         * .version: changed to version 2.5.0
651
652 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
653
654         * doc/sdccman.lyx: updated weblinks, index and smaller updates
655
656 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
657
658         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
659         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
660         well as many smaller updates.
661         * .version: changed to version 2.5.0-pre1
662
663 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
664
665         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
666
667 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
668
669         * support/regression/tests/bug1185672.c: added
670         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
671           bug 1185672
672         * src/mcs51/gen.c (genCall): added comments, made it look safer
673         * src/mcs51/gen.c (genEndFunction): simplified
674
675 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
676
677         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
678
679 2005-04-14 Borut Razem <borut.razem AT siol.net>
680
681         * fixed bug 1045046 - SIGSEGV with really simple code?:
682           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
683           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
684
685 2005-04-14 Borut Razem <borut.razem AT siol.net>
686
687         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
688           src/pic16/device.h: temporarily disabled experimental #inline pragma
689           for 2.5.0 release
690
691 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
692
693         * device/include/z80/stdio.h,
694         * device/include/z80/string.h: removed these highly incomplete files so
695           SDCC can use the default ones in device/include/
696
697 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
698
699         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
700         gcc warning.
701         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
702         fix sdcpp warnings.
703
704 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
705
706         * device/include/malloc.h: removed redundant __reentrant prototypes
707         * device/lib/_mullong.c: added working xstack variant in asm (C version
708           doesn't pass regression tests)
709         * device/lib/bpx.c: used __data and made bpx char for mcs51
710         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
711           (createFunction): fixed bug with xstackPtr
712         * src/SDCCcse.c: corrected comments
713         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
714           (killDeadCode, eBBlockFromiCode): removed unused code
715         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
716           corrected comments
717         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
718           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
719           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
720           (genModOneByte): fixed warning in MSVC
721         * src/mcs51/main.c (): added comments
722         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
723
724 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
725
726         * src/SDCCmain.c (linkEdit): oops, changed one line too many
727
728 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
729
730         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
731
732 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
733
734         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
735         characters arrays of larger size than the declared one.
736
737 2005-04-10 Borut Razem <borut.razem AT siol.net>
738
739         * src/pic/gen.c (genInline),
740           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
741           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
742           (findNextInstruction), (findPrevInstruction),
743           (findInstructionUsingLabel),
744           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
745         * src/pic/pcode.c (findLabel): added missing '\n'
746         * src/src.dsp: added SDCCdwarf2.c to the project
747
748 2005-04-09 Borut Razem <borut.razem AT siol.net>
749
750         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
751
752 2005-04-08 Raphael Neider <rneider AT web.de>
753
754         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
755           into the chain after a given one) and mergeDefmapSymbols (combine
756           defmap entries for each symbol per pcode)
757         * (createDefmap): have defmap entries merged in the end
758         * (defmapReplaceSymRef): split defmap entries covering two accesses to
759           a symbol before replacing one access type's symbol, merge symbols in
760           the end (replacement symbol might already have an entry)
761         * (assignValnums): keep reference to written WREG intact
762
763 2005-04-08 Raphael Neider <rneider AT web.de>
764
765         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
766           Alpha)
767
768 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
769
770         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
771         bytes
772
773 2005-04-07 Raphael Neider <rneider AT web.de>
774
775         * device/include/pic16/usart.h: added compatibility defines for
776           devices with more than one USART
777         * device/include/pic16/pic18f[68][567]20.h: activated above defines
778
779 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
780
781         * device/lib/Makefile.in: updated for port specific include
782
783 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
784
785         * support/regression/ports/mcs51/spec.mk: added mcs51 include
786
787 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
788
789         * device/include/8051.h,
790         * device/include/8052.h,
791         * device/include/at89S8252.h,
792         * device/include/at89c55.h,
793         * device/include/at89x051.h,
794         * device/include/at89x51.h,
795         * device/include/at89x52.h,
796         * device/include/mcs51reg.h,
797         * device/include/reg51.h,
798         * device/include/reg764.h,
799         * device/include/regc515c.h,
800         * device/include/sab80515.h: (re)moved these 12 files
801         * device/include/mcs51/8051.h,
802         * device/include/mcs51/8052.h,
803         * device/include/mcs51/at89S8252.h,
804         * device/include/mcs51/at89c55.h,
805         * device/include/mcs51/at89x051.h,
806         * device/include/mcs51/at89x51.h,
807         * device/include/mcs51/at89x52.h,
808         * device/include/mcs51/mcs51reg.h,
809         * device/include/mcs51/reg51.h,
810         * device/include/mcs51/reg764.h,
811         * device/include/mcs51/regc515c.h,
812         * device/include/mcs51/sab80515.h: and added them here
813
814 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
815
816         * device/include/stdarg.h: changed SDCC specific keywords to double
817           underlined form.
818         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
819           mcs51 and ds390.
820         * device/include/hc08/mc68hc908gp32.h,
821         * device/include/hc08/mc68hc908jb8.h,
822         * device/include/hc08/mc68hc908jkjl.h,
823         * device/include/hc08/mc68hc908qy.h: fixed comments
824         * device/include/mcs51/README: updated
825         * device/include/mcs51/c8051f120.h: added PINRSF
826         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
827         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
828           amidst code. Also inline is not supported.
829
830 2005-04-06 Raphael Neider <rneider AT web.de>
831
832         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
833         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
834           callers stack/frame pointers
835
836 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
837
838         * device/include/pic16/usart.h: added, missing in previous commit,
839         * device/include/pic16/adc.h: fixed typo,
840         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
841         commit,
842         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
843         <p18fxxx.inc>
844         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
845         uninitialized because a bug appears with gplink
846         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
847         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
848         complains for unrecognised option
849
850 2005-04-05 Raphael Neider <rneider AT web.de>
851
852         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
853           structs as well (using memcpy)
854         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
855           on ISRs (GOTO has no label)
856         * src/pic16/device.h: added OF_OPTIMIZE_DF
857         * src/pic16/main.c: added compiler switch --optimize-df to enable the
858           new data flow analysis/optimization
859         * src/pic16/pcode.c: added (prototypes for and implementation of)
860           dataflow analysis functions, fixed pCodeInstructions' inCond and
861           outCond values, made RCALL a branch instruction
862         * (pic16_unlinkpCode): keep C line if possible
863         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
864           C line moved if possible
865         * (pic16_getRegFrompCodeOp): NEW, improved version of...
866         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
867           to use new pic16_getRegFrompCodeOp (works for more SFRs)
868         * (pic16_BuildFlow): fixed skip instructions with label (did not start
869           new flow)
870         * (pic16_getJumptabpCode): NEW, needed in...
871         * (LinkFlow): fixed handling of jumptables, calls and conditional
872           branches
873         * (pic16_InsertCommentAfter): NEW
874         * (pic16_pCodeReplace): made verbose and flow preserving
875         * (AnalyzeFlow): added call to data flow analysis
876         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
877         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
878         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
879
880 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
881
882         * src/SDCCast.c (decorateType): fixed bug #1105626
883
884 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
885
886         * device/include/asm/pic16/features.h,
887         * pic18f*.h headers,
888         * device/include/pic16/adc.h,
889         * device/include/pic16/delay.h,
890         * device/include/pic16/i2c.h,
891         * device/include/pic16/malloc.h,
892         * device/include/pic16/stdio.h,
893         * device/include/pic16/stdlib.h,
894         * device/include/pic16/string.h,
895         * device/lib/pic16/libc/stdio/printf_tiny.c,
896         * device/lib/pic16/libc/stdio/printf_small.c,
897         * device/lib/pic16/libc/stdio/strmgpsim.c,
898         * device/lib/pic16/libc/stdio/strmmssp.c,
899         * device/lib/pic16/libc/stdio/strmusart.c,
900         * device/lib/pic16/libc/stdio/vfprintf.c,
901         * device/lib/pic16/libc/stdlib/ltoa.c,
902         * device/lib/pic16/libc/stdlib/putchar.c,
903         * device/lib/pic16/libc/stdlib/x_ftoa.c,
904         * device/lib/pic16/libc/stdlib/memchrpgm.c,
905         * device/lib/pic16/libc/stdlib/memchrram.c,
906         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
907         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
908         * device/lib/pic16/libio/adc/adcbusy.c,
909         * device/lib/pic16/libio/adc/adcread.c,
910         * device/lib/pic16/libio/adc/adcsetch.c,
911         * device/lib/pic16/libio/usart/ubaud.c,
912         * device/lib/pic16/libio/usart/ubusy.c,
913         * device/lib/pic16/libio/usart/udrdy.c,
914         * device/lib/pic16/libio/usart/uopen.c,
915         * device/lib/pic16/libio/usart/uputc.c,
916         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
917         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
918         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
919         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
920         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
921         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
922         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
923         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
924         specific keywords to double underlined form,
925         * device/lib/pic16/libc/Makefile.rules,
926         * device/lib/pic16/libsdcc/Makefile.rules,
927         * device/lib/pic16/libm/Makefile,
928         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
929         to compile with C standard set in Makefile.common
930         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
931         rand.c and crc.c in compilation process,
932         * device/lib/pic16/libsdcc/int/divuint.c,
933         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
934         `c' from signed to unsigned,
935         * device/lib/pic16/startup/crt0.c,
936         * device/lib/pic16/startup/crt0i.c,
937         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
938         keywords to double underlined form, bug fixes in _do_cinit function
939         which prevented the correct initialization of the .idata segment,
940         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
941         core to enter a infinite loop
942         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
943
944 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
945
946         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
947
948 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
949
950         * device/include/Makefile.in: add support for hc08 subdirectory
951         * device/include/hc08/: new subdirectory
952         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
953         Lucas Loizaga, thanks!
954         * device/include/hc08/mc68hc908qy.h,
955         * device/include/hc08/mc68hc908gp32.h,
956         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
957         their own directory. Changed internal macro names to use the compiler
958         reserved namespace. Changed SDCC specific keywords to double
959         underlined form.
960         * device/include/math.h,
961         * device/include/malloc.h,
962         * device/include/stdarg.h,
963         * device/include/stdbool.h
964         * device/include/string.h,
965         * device/include/tinibios.h,
966         * device/include/ds400rom.h,
967         * device/include/8051.h,
968         * device/include/8052.h,
969         * device/include/80c51xa.h,
970         * device/include/at89c55.h,
971         * device/include/at89S8252.h,
972         * device/include/at89x51.h,
973         * device/include/at89x52.h,
974         * device/include/ds80c390.h,
975         * device/include/reg764.h,
976         * device/include/regc515c.h,
977         * device/include/sab80515.h,
978         * device/include/mcs51/c8051f000.h,
979         * device/include/mcs51/c8051f018.h,
980         * device/include/mcs51/c8051f020.h,
981         * device/include/mcs51/c8051f040.h,
982         * device/include/mcs51/c8051f060.h,
983         * device/include/mcs51/c8051f120.h,
984         * device/include/mcs51/c8051f300.h,
985         * device/include/mcs51/c8051f310.h,
986         * device/include/mcs51/c8051f320.h,
987         * device/include/mcs51/c8051f330.h,
988         * device/include/mcs51/c8051f350.h,
989         * device/include/z180.h: Changed SDCC specific keywords to double
990         underlined form.
991
992 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
993
994         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
995         18F4455,
996         * (pic16_assignConfigWordValue): disable testing of configuration
997         register value with config mask,
998         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
999         function with port->fun_prefix,
1000         * (genFunction): when generating a naked interrupt function never
1001         create an absolute segment placed in interrupt vector address, place
1002         the actual interrupt function at IVA instead, when an interrupt
1003         function is generated with unspecified interrupt then do not create
1004         the absolute section,
1005         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
1006         code for generating a call to generic pointer get/put function with
1007         a call to function pic16_callGenericPointer(),
1008         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
1009         the call to the generic pointer get/put functions with prefixing the
1010         function name with port->fun_prefix,
1011         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
1012         * src/pic16/main.c (_process_pragma): prefix function with
1013         port->fun_prefix,
1014         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
1015         calling assembler, old 18Fxxxx macro is deprecated,
1016         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
1017         PC_ASMDIR in while condition,
1018         * (findInstruction): add PC_ASMDIR in while condition,
1019         * (buildCallTree): prefix main with port->fun_prefix,
1020         * (pic16_pCode2str): fixed bug that didn't emit the memory access
1021         identifier for variable with banked access in instructions BTFSS,
1022         BTFSC, BCF, BSF, BTG
1023         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
1024         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
1025         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
1026         perform optimization when enviroment variable NO_REG_OPT is set,
1027         * (insideLRBlock): NEW, return 1 if register is inside an
1028         INF_LOCALREGS block,
1029         * (RemoveRegFromLRBlock): remove a register that is completely
1030         eliminated by register optimization, but it is still left in local
1031         register store/restore in/from stack block,
1032         * (Remove2pcodes): after removing register, check to see if it
1033         should be removed from local register store/restore in/from stack
1034         block,
1035         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
1036         DUMMY_READ_VOLATILE,
1037
1038         * device/include/pic16/adc.h: minor prototype modifications and
1039         update,
1040         * device/include/pic16/malloc.h: added GPL notice various
1041         modifications,
1042         * device/include/pic16/stdint.h: NEW, standard header for ints
1043         * device/include/pic16/delay.h: NEW, header for delay functions,
1044         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
1045         delay1mtcy,
1046         * device/include/pic16/signal.h: NEW, header providing helper macros
1047         for implementing signal handlers,
1048         * device/include/pic16/stdio.h: added prototypes for functions,
1049         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
1050         prototypes for stdin and stdout, added macro PUTCHAR to
1051         automatically implement putchar function prototype,
1052         * device/include/pic16/usart.h: modified and updated USART library,
1053         * device/lib/pic16/libio/adc/,
1054         * device/lib/pic16/libio/i2c: some modifications to improve library
1055         performance,
1056         * device/lib/pic16/libc/stdio/: modifications for the new printf*
1057         family of functions,
1058         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
1059         family of functions and other sources,
1060         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
1061         of the PIC18Fxx[28] devices,
1062         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
1063         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
1064         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
1065         _do_cinit function, because the previous failed when local variables
1066         where not placed in the same memory bank,
1067         * device/lib/pic16/libsdcc/char/: various modifications to improve
1068         library performance,
1069         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
1070         information on the new functions of the c library and more...
1071
1072 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1073
1074         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
1075
1076 2005-03-26 Raphael Neider <rneider AT web.de>
1077
1078         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
1079           if condition == CARRY)
1080         * (genCmp): adapted to new genSkipc semantics
1081         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
1082           on rIfx (genCmp was broken)
1083
1084 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1085
1086         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
1087         * src/z80/main.c (_keywords[]),
1088         * src/SDCCglobal.h (struct options),
1089         * src/SDCC.y,
1090         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
1091         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
1092         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
1093         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
1094         always available in leading double underscore form. The C99 support is
1095         mostly missing, but it's a start.
1096         * support/regression/tests/bug-227710.c: fixed nonconforming use of
1097         reserved identifier "__data".
1098
1099 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
1100
1101         * src/mcs51/peeph.def: fixed bug 1170013
1102
1103 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
1104
1105         * device/include/mcs51reg.h: fixed bug 842007
1106
1107 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1108
1109         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
1110         last time.
1111
1112 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1113
1114         * src/port.h (struct PORT),
1115         * src/avr/ralloc.c (avr_assignRegisters),
1116         * src/avr/main.c,
1117         * src/ds390/ralloc.c (ds390_assignRegisters),
1118         * src/ds390/main.c,
1119         * src/hc08/ralloc.c (hc08_assignRegisters),
1120         * src/hc08/main.c,
1121         * src/mcs51/ralloc.c (mcs51_assignRegisters),
1122         * src/mcs51/main.c,
1123         * src/pic/ralloc.c (pic14_assignRegisters),
1124         * src/pic/main.c,
1125         * src/pic16/ralloc.c (pic16_assignRegisters),
1126         * src/pic16/main.c,
1127         * src/xa51/ralloc.c (xa51_assignRegisters),
1128         * src/xa51/main.c,
1129         * src/z80/ralloc.c (z80_assignRegisters),
1130         * src/z80/ralloc.h,
1131         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
1132         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
1133         * src/SDCCcse.h,
1134         * src/SDCCdflow.c (computeDataFlow),
1135         * src/SDCCdflow.h,
1136         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
1137         * src/SDCCloop.h,
1138         * src/SDCCcflow.c (*),
1139         * src/SDCCcflow.h,
1140         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
1141         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
1142         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
1143         immedDom() returning wrong block; probably fixes bug #1160833)
1144
1145 2005-03-20 Borut Razem <borut.razem AT siol.net>
1146
1147         * support/scripts/inc2h.pl: WIN32 port
1148
1149 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
1150
1151         * device/lib/makefile.in: added abs.c and labs.c
1152
1153 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
1154
1155         * device/include/stdint.h: added
1156         * device/lib/abs.c: added
1157         * device/lib/labs.c: added
1158         * device/include/stdlib.h: added abs() and labs() prototypes
1159         * device/lib/libsdcc.lib: added abs and labs
1160         * device/include/float.h,
1161         * device/lib/_fsmul.c,
1162         * device/lib/printf_fast.c,
1163         * device/lib/printf_tiny.c: updated comments
1164
1165 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1166
1167         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
1168         bug #1164313
1169
1170 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1171
1172         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
1173         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
1174
1175 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
1176
1177         * device/lib/printf_large.c: removed inline assembly for portability and
1178           readability. Use printf_fast if speed or size are more important.
1179         * src/pic16/gen.c: removed conditions around use of DEBUGpc
1180         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
1181
1182 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
1183
1184         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
1185         prevent compiler warning
1186
1187 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
1188
1189         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
1190         moved to level 0 and declared as static. Also they are explicit
1191         placed in access bank. This was necessery because some times they
1192         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
1193         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
1194         optimizations. Currently only compare to unsigned char is implemented,
1195         * src/pic16/gen.c: added fReturnIdx array,
1196         * (struct resolvedIfx) is moved to gen.h and made public,
1197         * (struct _G): added sregsAlloc and sregsAllocSet fields,
1198         * (aopForSym): added an optimization to directly store in stack of
1199         the operand of a SEND iCode,
1200         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
1201         but as registers instead (AOP_REG) using the fReturnIdx array,
1202         * (pic16_freeAsmop): remove the freed register from the
1203         _G.sregsAlloc field,
1204         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
1205         a compare of 'WREG',
1206         * (pic16_popGetTempRegCond): changed function prototype, now
1207         function takes also a bitVector argument v which holds the current
1208         set of registers that are allocated for stack access by aopForSym,
1209         registers allocated in aopForSym for accessing stack symbols are not
1210         any more part of the functions usedRegs field,
1211         * (genCall): some times aopOp is called for a stack variable to be
1212         send, aopForSym might perform the push, if this is true make sure
1213         that genCall doesn't push the variable twice by testing _G.resDirect,
1214         * (genFunction): changed testing for unspecified interrupt number
1215         from 256 to INTNO_UNSPEC,
1216         * modified selection scheme of frame pointer generation. Previously
1217         if function did use local registers a frame pointer was generated,
1218         now a frame pointer is generated only if function has arguments
1219         (that need PLUSW2 register access), or has stack arguments, or the
1220         compiler is not instructed to omit the frame pointer,
1221         * (genEndFunction): before restoring local registers that were saved
1222         in the function preamble, also restore the registers that *might*
1223         have been allocated for stack access,
1224         * (genRet): removed some old comments,
1225         * (genCmp, the active (RN's) version): added a call to the
1226         pic16_genCmp_special function to perform the compare with a more
1227         robust and optimized way,
1228         * (genInline): a feature has been added in inline code generation,
1229         which allows a wildcard variable substitution when writing inline
1230         assembly. Code is incomplete and experimental therefore undocumented,
1231         * (genCast): changed order of aopOp for result and right to allow
1232         aopForSym to directly load the result if possible,
1233         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
1234         perform an optimized compare on some selected special occasions,
1235         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
1236         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
1237         generate an IVT any more,
1238         * src/pic16/main.c (pic16_optionsTable): added command line option
1239         --optimize-cmp,
1240         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
1241         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
1242         macros,
1243         * src/pic16/NOTES: Raphael Neider added in list of active developers
1244         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
1245         jumptable_end to prevent bug #,
1246         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
1247         inCond and outCond fields,
1248         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
1249         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
1250         turn off register spilling,
1251         * (packRegsForOneUse): synced with other ports' versions although it
1252         is not used currently,
1253         * (pic16_packRegisters): added an optimization while reading
1254         structure bitfields, some registers may be saved (malloc code is
1255         decreased by 80 bytes)
1256
1257 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
1258
1259         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
1260         left is a bitfield, if yes, then don't optimize assignment. Perhaps
1261         this can be optimized more?
1262
1263 2005-03-10 Raphael Neider <rneider AT web.de>
1264
1265         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
1266           genNearPointerGet): (hopefully) fixed access to bitfields via
1267           pointers (p->bitN = x; and x = p->bitN; failed)
1268
1269 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
1270
1271         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
1272
1273 2005-03-09 Raphael Neider <rneider AT web.de>
1274
1275         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
1276
1277 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
1278
1279         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
1280         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
1281           (regTypeNum): set REG_BIT type if necessary
1282         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
1283         * support/regression/tests/critical.c: check bug 1144613
1284
1285 2005-03-02 Raphael Neider <rneider AT web.de>
1286
1287         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
1288
1289 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1290
1291         * src/avr/ralloc.c (serialRegAssign),
1292         * src/ds390/ralloc.c (serialRegAssign),
1293         * src/hc08/ralloc.c (serialRegAssign),
1294         * src/mcs51/ralloc.c (serialRegAssign),
1295         * src/pic/ralloc.c (serialRegAssign),
1296         * src/pic16/ralloc.c (serialRegAssign),
1297         * src/xa51/ralloc.c (serialRegAssign),
1298         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
1299
1300 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
1301
1302         * src/SDCCast.c (decorateType): fixed bug 1124787
1303
1304 2005-02-20 Hubert Sack <sack AT digiplan.de>
1305         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1306
1307         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
1308         patch #1121755
1309
1310 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1311
1312         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
1313         to keep the correct label reference count when adding/removing references
1314         to labels. A peephole file using this is appended to patch #1144962.
1315
1316 2005-02-14 Raphael Neider <rneider AT web.de>
1317
1318         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
1319         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
1320         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
1321           retrievals of result operand's value on assignment
1322
1323 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
1324
1325         * device/include/pic16/string.h: modified prototype for memccpy()
1326         to memccpy(void *, void *, char, size_t)
1327         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
1328         check whether to omit frame pointer or not,
1329         * (genInline): convert all occurences of "\n" to LF in inline
1330         assembler blocks, this helps formatting the inline text,
1331         * (pic16_loadFSR0): modified prototype,
1332         * (genNearPointerGet, genNearPointerSet): reorganization of code,
1333         removed some 8051 legacy code,
1334         * (genPackBits): enabled handling bitfields exceeding one byte in size,
1335         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
1336         before allocating temporary registers in functions,
1337
1338 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1339
1340         * support/regression/tests/bitvars.c: corrected the "fix"
1341
1342 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1343
1344         * support/regression/tests/bitvars.c,
1345         * support/regression/tests/bitwise.c,
1346         * support/regression/tests/rotate.c: "fixed" problems on Alpha
1347
1348 2005-02-10 Raphael Neider <rneider AT web.de>
1349
1350         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
1351           different size for Alpha
1352         * src/pic16/gen.c (genCmpEq) : improved compare with 0
1353
1354 2005-02-09 Raphael Neider <rneider AT web.de>
1355
1356         * src/SDCC.lex(doPragma) : save and restore warning options as well
1357           (also added new stack plus clone- and copyAndFreeSDCCERRG())
1358         * have #pragma less_pedantic set the errorlevel to WARNING
1359           (fixes #1117001)
1360         * (cloneOptimize) : fixed wrong malloc's size
1361         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
1362           facilitate correct handling of #pragma (save|restore)
1363
1364 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1365
1366         * src/mcs51/gen.c: removed non-standard C nameless struct/union
1367
1368 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
1369
1370         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
1371
1372 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
1373
1374         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
1375
1376 2005-02-02 Raphael Neider <rneider AT web.de>
1377
1378         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
1379         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
1380         * (pic16_storeForReturn): fixed to allow returning function pointers
1381         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
1382         * device/include/pic16/{stddef.h,stdbool.h}: added
1383
1384 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
1385
1386         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
1387
1388 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
1389
1390         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
1391         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
1392          appeared to be required
1393
1394 2005-01-31 Borut Razem <borut.razem AT siol.net>
1395
1396         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
1397           include/mcs51 and include/z80 directories to the package
1398
1399 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1400
1401         * src/hc08/gen.c (genFunction): fixed bug #1112752
1402
1403 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1404
1405         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
1406
1407 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1408
1409         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
1410
1411 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
1412
1413         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
1414
1415 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
1416
1417         * device/include/c8051fxxx.h: removed these 6 files
1418         * device/include/mcs51/c8051fxxx.h: added these 11 new files
1419
1420 2005-01-26 Raphael Neider <rneider AT web.de>
1421
1422         * src/pic16/gen.c (genAssign): fixed assignment from longs
1423           in codespace (were cut to three bytes)
1424         * (genDummyRead): implemented (except for CODESPACE...),
1425           fixed bug #1108575
1426         * src/pic16/glue.c (emitStatistics): beautified
1427         * device/lib/pic16/libm/Makefile: added include path
1428
1429 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1430
1431         * src/z80/gen.c (aopPut): fixed bug #1103902
1432
1433 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1434
1435         * device/lib/expf.c: fixed bug #1095792
1436
1437 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
1438
1439         * device/lib/pic16/libm: added Math library sources
1440
1441 2005-01-24 Raphael Neider <rneider AT web.de>
1442
1443         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
1444           to enable upcast to pCodeOpReg2 (there is no type tag to
1445           differenciate the two and pic16_popGet2p cast into PCOR2)
1446         * src/pic16/main.c (_process_pragma): fixed another malloc bug
1447           (sizeof(sectNames) changed to sizeof(sectName))
1448           Both patches fix segfaults under MinGW.
1449
1450 2005-01-23 Raphael Neider <rneider AT web.de>
1451
1452         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
1453           Safe_[mc]?alloc()'ed variables
1454         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
1455           of (byte sized) temporaries (assign them to WREG for now)
1456         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
1457           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
1458           this might fix SIGSEGVs on MinGW...
1459         * src/SDCCopt.c (killDeadCode): restored original behaviour
1460           (volatile operands might get thrown away though)
1461
1462 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
1463
1464         * src/pic16/gen.c: fixed bug #1106975,
1465         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
1466         pointer update, INTCON is saved, global interrupts are disabled and
1467         restored after updateing TOS.
1468         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
1469         * added function attribute 'shadowregs' to take advantage of shadow
1470         registers,
1471         * added function attribute 'wparam' as an alternative to the wparam
1472         pragma,
1473         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
1474         user declares a non-ISR function as 'shadowregs',
1475         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
1476
1477 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
1478
1479         * .version: bumped version number to 2.4.8
1480         * device/lib/pic16/pics.all: list of PIC18F devices supported by
1481         pic16 port,
1482         * device/lib/pic16/libio/i2c/: I2C module support library,
1483         * device/include/pic16/i2c.h: I2C support library header,
1484         * device/lib/pic16/libc/stdio/: standard IO support sources,
1485         * (printf_small.c): printf_small() source, supports float print,
1486         * (printf_tiny.c): printf_tiny() source, does not support floats,
1487         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
1488         enable global optimizations for entire library source, other
1489         Makefiles in the source tree are also modified to reflect this,
1490         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
1491         function,
1492         * doc/sdccman.lyx: updated to reflect new changes,
1493         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
1494         sym->onStack if-case,
1495         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
1496         sbit, idata, _idata, xdata, _xdata,
1497         * added pragma library, to link an external library, (see doc),
1498         * removed command line options, --pomit-config-words, --pomit-ivt,
1499         --pleave-reset-vector,
1500         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
1501         when calling assembler to reflect memory model used, also define
1502         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
1503         reflect stack model used,
1504         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
1505         on stack return NULL,
1506
1507 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1508
1509         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
1510           of the operands is volatile. Fixes #1020220
1511
1512 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1513
1514         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
1515         * (OptimizeRegUsage): make sure that there is really no other flow where
1516           the first pCode is used
1517
1518 2005-01-22 Raphael Neider <rneider AT web.de>
1519
1520         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
1521           to fix #1106967 (pCode->seq are not set up correctly)
1522
1523 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1524
1525         * src/SDCCglue.c (glue): make sure code area is declared before the
1526         static initialization area.
1527
1528 2005-01-21 Raphael Neider <rneider AT web.de>
1529
1530         * device/lib/Makefile.in: fixed test for pic16 install dir
1531         * device/lib/pic16/*/Makefile*: modified compile flags to enable
1532           optimizations
1533         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
1534           added --optimize-goto compiler switch and pragma wparam documentation
1535         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
1536         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
1537           and PRODH closing bug #1071770 (peephole optimizer)
1538
1539 2005-01-19 Raphael Neider <rneider AT web.de>
1540
1541         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
1542           cmdLine buffers (used when calling sdcpp...) are large enough
1543           (MAX_PATH=256 truncates arguments leading to system halts when
1544           used in MinGW...)
1545         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
1546         * (genUminus): rewritten to for efficiency
1547         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
1548           used uninitialized in some cases)
1549         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
1550           copy the third byte from the int -- now assumes 0x80 (data memory)
1551         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
1552           operands (genAddLit expects the iCode's operands to swapped as
1553           well), fixed leftover bytes (crashed for short left operands)
1554         * (pic16_genMinusDec): performance improvements, removed false
1555           PIC14 emitSKPNCs
1556         * (pic16_genMinus): fixed to cope with differently sized operands
1557         * src/pic16/glue.c (pic16_glue): added new banksel optimization
1558           for --obanksel > 1
1559         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
1560         * src/pic16/graph.[ch]: implementation of directed graphs, used by
1561           new banksel optimization
1562         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
1563           analysis for temporary registers (segfaults...)
1564         * src/pic16/peeph.def: added rule
1565
1566 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
1567
1568         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
1569         which converts a float number to its ASCII representation
1570         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
1571         functions to convert the fractional and integer part of a float to ASCII,
1572         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
1573         realloc.c): added _MALLOC_SPEC to explicit place variables in data
1574         ram
1575         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
1576         _STATMEM macros,
1577         * device/include/pic16/adc.h: added GPL info,
1578         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
1579         a pCodeOp as tested operand,
1580         * (genNearPointerGet): optimized bit testing, does not use
1581         intermediate register for bit value, test directly instead with
1582         BTFSS, BTFSC, works only for single bits,
1583         * (genpic16Code): dump the name of the iCode in the asm,
1584         * src/pic16/ralloc.c (decodeOp): removed static declaration and
1585         renamed to pic16_decodeOp,
1586         * (serialRegAssign): do not allocate a temporary register for iCode
1587         sequences that test a single bit for 1/0
1588
1589 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
1590
1591         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
1592         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
1593         access stack and frame pointers. They are initially assigned to
1594         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
1595         accessing SFRs. Updated all occurences of modification of stack or
1596         frame pointer in gen.c and pcode.c,
1597         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
1598         assigning of a literal value to pointers,
1599         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
1600         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
1601         selected
1602
1603 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
1604
1605         * doc/sdccman.lyx: update documentation about stack pragma, added
1606         some info for stack memory models
1607
1608 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1609
1610         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
1611
1612 2005-01-08 Raphael Neider <rneider AT web.de>
1613
1614         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
1615           udata sections to fix bug #1097823
1616
1617 2005-01-05 Raphael Neider <rneider AT web.de>
1618
1619         * src/pic16/gen.c (genGenericShift): added handling of differently
1620           sized left operand and result
1621
1622 2005-01-04 Raphael Neider <rneider AT web.de>
1623
1624         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
1625         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
1626           to hold the condition bit)
1627         * added new version of genCmp (old code available via #define)
1628         * added new version of genShiftLeft/genShiftRight in a generic
1629           way, now supports shifting by negative values
1630         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
1631           shiftCount (expected by genGenericShift)
1632         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
1633         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
1634           dump
1635         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
1636           is an invalid literal too...)
1637
1638 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
1639
1640         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
1641         from Raphael Neider,
1642         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
1643         for 8-bit literals. This fixes some literal operands which are sign
1644         extended to 16-bits ints when instruction needs only 8-bits.
1645
1646 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
1647
1648         * device/lib/logf.c: added mcs51 assembly version
1649         * device/lib/expf.c: added mcs51 assembly version
1650         * device/lib/_logexpf.c: new shared asm code for expf and logf
1651         * device/include/math.h: add defines for assembly math library
1652         * device/lib/Makefile.in: build new _logexpf.c
1653         * device/lib/libfloat.lib: use new _logexpf.c
1654
1655 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
1656
1657         * src/pic/device.c
1658         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
1659           device types which have less than 0x7f registers.
1660
1661 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
1662
1663         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
1664
1665 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
1666
1667         * device/lib/printf_fast.c: only build on supported arch.
1668         * device/lib/printf_tiny.c: only build on supported arch.
1669         * device/lib/printf_fast_f.c: only build if asm float lib
1670         * device/lib/_fsget1arg.c: only build if asm float lib
1671         * device/lib/_fsget2args.c: only build if asm float lib
1672         * device/lib/_fsnormalize.c: only build if asm float lib
1673         * device/lib/_fsreturnval.c: only build if asm float lib
1674         * device/lib/_fsrshift.c: only build if asm float lib
1675         * device/lib/_fsswapargs.c: only build if asm float lib
1676         * device/include/stdio.h: don't provide print_fast,
1677           print_fast_f, print_tiny prototypes if --xstack used
1678
1679 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
1680
1681         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
1682         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
1683           to the SOURCES
1684
1685 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
1686
1687         * device/lib/printf_fast_f.c: same as printf_fast, but
1688           with floating point enabled
1689         * device/lib/printf_fast.c: minor tweaks
1690         * device/include/stdio.h: add printf_fast_f
1691
1692 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
1693
1694         * src/SDCCmain.c: make --float-reent default for mcs51
1695         * device/lib/_fsadd.c: added mcs51 assembly version
1696         * device/lib/_fssub.c: added mcs51 assembly version
1697         * device/lib/_fsmul.c: added mcs51 assembly version
1698         * device/lib/_fsdiv.c: added mcs51 assembly version
1699         * device/lib/_fseq.c: added mcs51 assembly version
1700         * device/lib/_fsneq.c: added mcs51 assembly version
1701         * device/lib/_fsgt.c: added mcs51 assembly version
1702         * device/lib/_fslt.c: added mcs51 assembly version
1703         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
1704         * device/lib/Makefile.in: add _fscmp to build
1705         * device/lib/libfloat.lib: add _fscmp to build
1706
1707 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
1708
1709         * device/lib/_fs2slong.c: added mcs51 assembly version
1710         * device/lib/_fs2sint.c: added mcs51 assembly version
1711         * device/lib/_fs2schar.c: added mcs51 assembly version
1712         * device/lib/_fs2ulong.c: added mcs51 assembly version
1713         * device/lib/_fs2uint.c: added mcs51 assembly version
1714         * device/lib/_fs2uchar.c: added mcs51 assembly version
1715         * device/lib/_slong2fs.c: added mcs51 assembly version
1716         * device/lib/_sint2fs.c: added mcs51 assembly version
1717         * device/lib/_schar2fs.c: added mcs51 assembly version
1718         * device/lib/_ulong2fs.c: added mcs51 assembly version
1719         * device/lib/_uint2fs.c: added mcs51 assembly version
1720         * device/lib/_uchar2fs.c: added mcs51 assembly version
1721         * device/include/float.h: added #define to select asm vs c
1722
1723 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
1724
1725         * device/lib/printf_fast.c: improvements to float output
1726         * device/include/float.h: add defines for assembly float library
1727         * device/lib/_fsget1arg.c: receive 1 float arg
1728         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
1729         * device/lib/_fsnormalize.c: normalize a float
1730         * device/lib/_fsreturnval.c: return float, various helper routines
1731         * device/lib/_fsrshift.c: right shift a float's mantissa
1732         * device/lib/_fsswapargs.c: swap 2 floats
1733         * device/lib/Makefile.in: build these 6 new files for mcs51
1734         * device/lib/libfloat.lib: add these 6 files to the library
1735
1736 2004-12-26 Borut Razem <borut.razem AT siol.net>
1737
1738         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
1739           built by gcc 3.4.2
1740
1741 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
1742
1743         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
1744           and fully reentrant and register bank neutral.
1745         * device/lib/printf_fast.c: added float (not enabled by default),
1746           added compact/slower integer (also not enabled by default),
1747           improved size/speed of fast integer code, other minor changes
1748         * device/include/stdio.h, device/lib/Makefile.in,
1749           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
1750
1751 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
1752
1753         * src/pic16/pcode.c: declaring variables other than at the start of a
1754           block is not supported in C by VC6.
1755
1756 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
1757
1758         * applied a previous patch from Raphael Neider that wasn't included
1759         in the previous commits, which fixes infinite loops within jumptable
1760         improvements,
1761         * made some fixes that previous patches introduced
1762
1763 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
1764
1765         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
1766         that fixes an issue with AOP_PCODE asmop's offset,
1767         * (pic16_popCopyReg): update instance field too,
1768         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
1769         function of pic port,
1770         * (genCmp, genAnd, genAssign),
1771         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
1772
1773 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
1774
1775         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
1776         variables initial values to idata section,
1777         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
1778         variables in some functions. This utilizes parmBytes field of iCode
1779         structure to hold the offset of the variable in stack. (might be
1780         able to use the stack field too?)
1781         * applied patch from Raphael Neider # ### , # ###
1782         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
1783         variable initial values in idata section,
1784         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
1785         for static variables with initial value
1786         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
1787         applied fix in while loop from Raphael Neider.
1788
1789 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
1790
1791         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
1792         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
1793         * src/ds390/ralloc.c (serialRegAssign): spill bits
1794         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
1795         * support/Util/SDCCerr.c,
1796         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
1797         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
1798         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
1799
1800 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
1801
1802         * device/include/sdcc-lib.h: inserted LGPL, added includes
1803           asm/ds390/features.h and asm/mcs51/features.h
1804         * device/include/asm/default/features.h,
1805         * device/include/asm/gbz80/features.h,
1806         * device/include/asm/z80/features.h: added empty _AUTOMEM
1807           and _STATMEM
1808         * device/include/asm/ds390/features.h,
1809         * device/include/asm/mcs51/features.h: added files with defines for
1810           _AUTOMEM and _STATMEM indicating automatic and static storage class
1811         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
1812         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
1813         * src/SDCCicode.c (geniCodeCast),
1814         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
1815         * src/SDCCloop.c (loopInduction): removed unused variable lr
1816         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
1817           to convertToFcall to include char modulo (RFE 1065037), added check
1818           if left operand is unsigned and use abs of literal value
1819         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
1820           as it doesn't work after conversion from peephole.def to peephole.rul
1821         * src/mcs51/gen.c (toBoolean): added check for size,
1822           (genModOneByte): optimized code for signed char modulo a literal
1823           power of 2 (thanks to Hubert Sack),
1824           (genRRC): removed unnecessary "clr c",
1825           (genRLC): replaced "add a,acc" with cheaper "rlc a"
1826         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
1827           jump optimization,
1828           swapped rules 256.c and 256.d,
1829           extended 256.d by using new multiple checks (thanks Erik),
1830           added rules 256.e and 256.f,
1831           updated rule 261.a and 261.b to new generated code
1832         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
1833
1834 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1835
1836         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
1837           induction related bugs, including first part of bug #1074377
1838
1839 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
1840
1841         * applied patch from bug-report #1076292,
1842         * applied patches for genAnd and Goto-optimizations for Raphael
1843         Neider,
1844         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
1845         dump a less iCode information,
1846         * src/pic16/device.h (pic16_options_t): added field debgen,
1847         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
1848         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
1849         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
1850         puclic,
1851         * (various functions): added macros FENTRY and FENTRY2 to functions,
1852         to emit function prologue,
1853         * (various functions): fixed indentation,
1854         * (genNearPointerGet): fixed loading of FSR0,
1855         * (genPackBits): applied patch from Raphael Neider to fix updating
1856         of FSR0 and touching only the modified bits,
1857         * src/pic16/genarith.c (various functions): added macros FENTRY to
1858         emit function prologue in comments,
1859         * src/pic16/pcode.h: added functions debugf2, debugf3,
1860         * src/pic16/ralloc.c: partial fix for packForPush caused
1861         segmentation fault,
1862
1863 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1864
1865         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
1866           <stsp AT users.sourceforge.net> with reversed byte order
1867         * support/regression/tests/rotate.c: added (ds390 skips some tests)
1868
1869 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1870
1871         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
1872           bug #1074377
1873         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
1874         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
1875
1876 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
1877
1878         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
1879
1880 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1881
1882         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
1883           conditions,
1884           (setFromConditionArgs): friendly operand parser for peephole rules,
1885           (operandBaseName, operandsNotRelated): new peephole condition
1886           "operandsNotRelated" -- similar to "operandsNotSame", but takes
1887           architecture specific register naming into account, handles n-way
1888           comparisons, and supports quoted literals
1889         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
1890
1891 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1892
1893         * src/mcs51/peeph.def: fixed bug #1076940
1894
1895 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
1896
1897         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
1898
1899 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1900
1901         Adding support for replacing ljmps with sjmps in jumptables
1902         generated for switch statements. For now you need to set the
1903         environment variable SDCC_SJMP_JUMPTABLE to enable this.
1904         Now 4 algorithms for mcs51 jumptable generation are used:
1905         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
1906         addresses loaded pc-relative for up to 112 cases and stack-pushing
1907         target addresses loaded with offset from dptr for up to 256 cases.
1908
1909         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
1910         * src/mcs51/main.c: adapted constants for switch table generation
1911         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
1912
1913 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
1914
1915         * device/lib/printf_large.c (_print_format): fixed bug 1073386
1916         * support/regression/tests/bug1057979.c: added test for bug 1073386
1917
1918 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
1919
1920         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
1921         compilers
1922
1923 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
1924
1925         * src/pic16/device.h,
1926         * src/pic16/genarith.c,
1927         * src/pic16/glue.c,
1928         * src/pic16/main.c,
1929         * src/pic16/pcode.c: applied patches #1068154 and #1070213
1930
1931 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
1932
1933         Large cummulative patch for pic16 port.
1934         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
1935         to call when a stack overflow occurs,
1936         * (malloc.h): added CVS Id tag,
1937         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
1938         variable,
1939         * added libc directory. The current version of LibC contains string
1940         functions, ctype functions and macros and some functions of the
1941         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
1942         be extensively tested in the future. Standard disclaimer here.
1943         Library is not automatically build yet. But one can build it by
1944         invoking 'make' inside the libc directory.
1945         * added ADC library under libio. Preliminary version yet.
1946
1947         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
1948         * src/pic16/gen.c (aopForRemat): asmop size is filled by
1949         aopForRemat() now and not by pic16_aopOp(),
1950         * (pic16_popGetTempReg): removed warning messgae when allocating
1951         temporary registers, its a buggy feature and will be removed,
1952         * (pic16_popGet): set register instance field in AOP_CRY,
1953         * (pic16_outBitC): fixed for results in size greater than 1,
1954         * (genUminusFloat): fixed for pic16, ported code from mcs51,
1955         * (pic16_storeForReturn): optimized return of 0,
1956         * (genCmp): experimental code for new genCmp which uses PIC18's
1957         special compare&skip instructions. Initial tests fail some times
1958         with variables grater than 1 byte in size, so new code is disabled,
1959         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
1960         a single bit,
1961         * (genCast): began a fix to optimize the casting of a bit to another
1962         bit, now assigning a bitfield to another bitfield will fail, sorry,
1963         * src/pic16/main.c: disabled the use of lr-support feature,
1964         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
1965         * added some function prototypes, added function _debugf prototype,
1966         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
1967         bits with offset (case PO_GPR_BIT),
1968         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
1969         command line,
1970         * (isBankInstruction): modified to return 0 for no banking instruction,
1971         and 1 for banking instruction,
1972         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
1973         caused stop processing pCodes after a inline assembly block,
1974         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
1975         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
1976         registers when it shouldn't,
1977         * src/pic16/ralloc.c (allocReg): add preliminary support for
1978         supporting a limited set of temporary registers,
1979
1980 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1981
1982         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
1983           genDataPointerSet): ensure assignments always copy in MSB to LSB
1984           order,
1985           (loadRegFromAop): recognize CLRH optimization,
1986           (genFunction): optimize RECEIVE iCodes in reentrant functions
1987
1988 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1989
1990         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
1991           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
1992           selected.
1993         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
1994         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
1995           contiguous with data
1996
1997 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1998
1999         * device/lib/_gptrget.c (_gptrget),
2000         * device/lib/_gptrgetc.c (_gptrgetc),
2001         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
2002           instead of sjmp to ret
2003         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
2004           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
2005
2006 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
2007
2008         * .version: bumped version to 2.4.7
2009         * device/lib/_gptrget.c (_gptrget): is now _naked
2010         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
2011         * device/lib/_gptrput.c (_gptrput): is now _naked
2012         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
2013           (createFunction): fixed xstack
2014         * src/SDCCglue.c (emitMaps): set allocation required for bit area
2015         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
2016           or bit either,
2017           (geniCodeCritical): store original interrupt state in an iTemp bit
2018           var unless stack-auto
2019         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
2020         * src/SDCCmain.c (setIncludePath): added include/target to search path
2021         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
2022         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
2023           prototype,
2024           (processFuncArgs): put bit vars in bit area
2025         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
2026           unsaveRBank): fixed xstack,
2027           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
2028           (genFunction, genEndFunction): fixed xstack,
2029           (genAssign): optimization don't walk backwards through mem
2030         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
2031         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
2032         * support/regression/Makefile: also make library (for stack-auto) when
2033           making "all" and added "test-mcs51-xstack-auto"
2034         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
2035         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
2036         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
2037         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
2038         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
2039           make-library by MAKE_LIBRARY
2040         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
2041           regression tests for xstack
2042         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
2043         * support/regression/tests/critical.c: test for critical on mcs51
2044
2045 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2046
2047         * support/regression/ports/ucz80/spec.mk: use include and lib files from
2048           built version of sdcc instead of installed version
2049
2050 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
2051
2052         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
2053         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
2054           vprintf.c now
2055         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
2056         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
2057           WARNING: remove device/lib/build/z80/printf.o by hand when
2058           updating from previous build!
2059         * device/lib/z80/printf.c: updated comment
2060         * support/regression/tests/bug1057979.c: test all ports now
2061         * support/regression/tests/bug1065458.c: file added
2062
2063 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2064
2065         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
2066           *_start and *_end symbols for static functions
2067
2068 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
2069
2070         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
2071           and search crt0.o in all library paths,
2072           (setIncludePath): proper handling of --nostdinc,
2073           (setLibPath): proper handling of --nostdlib
2074         * support/regression/Makefile,
2075         * support/regression/ports/ds390/spec.mk,
2076         * support/regression/ports/gbz80/spec.mk,
2077         * support/regression/ports/hc08/spec.mk,
2078         * support/regression/ports/mcs51/spec.mk,
2079         * support/regression/ports/mcs51-large/spec.mk,
2080         * support/regression/ports/mcs51-stack-auto/spec.mk,
2081         * support/regression/ports/z80/spec.mk: use include and lib files from
2082           built version of sdcc instead of installed version
2083         * doc/sdccman.lyx: fixed typo in --nostdinc
2084
2085 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
2086
2087         * src/pic/pcode.c,
2088         * src/pic/device.c,
2089         * src/pic/ralloc.c,
2090         * src/pic/gen.c : added support to generate code for struct bit fields.
2091
2092 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
2093
2094         * as/xa51/xa_version.h,
2095         * device/include/errno.h,
2096         * device/include/regc515c.h,
2097         * device/lib/_itoa.c,
2098         * device/lib/_ltoa.c,
2099         * device/lib/ser_ir_cts_rts.c,
2100         * sim/ucsim/xa.src/glob.cc,
2101         * sim/ucsim/xa.src/inst_gen.cc,
2102         * sim/ucsim/xa.src/xa_bit.cc,
2103         * sim/ucsim/xa.src/xa_sfr.cc,
2104         * sim/ucsim/z80.src/inst_dd.cc,
2105         * sim/ucsim/z80.src/inst_fdcb.cc,
2106         * support/scripts/keil2sdcc.pl,
2107         * src/pic16/pic16.dsp,
2108         * src/pic16/pic16a.dsp: corrected cvs line endings
2109         * device/lib/printf_large.c: fixed bug 1057979
2110         * src/pic16/gen.c: fixed non-C standard code
2111         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
2112         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
2113         * support/regression/ports/mcs51/support.c: reload T1 asap
2114         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
2115           pdata use and clear idata startup behaviour
2116         * support/regression/tests/bug1057979.c: added
2117
2118 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
2119
2120         * device/examples/ds390/ow390/ad26.h,
2121         * device/examples/ds390/ow390/cnt1d.h,
2122         * device/examples/ds390/ow390/crcutil.c,
2123         * device/examples/ds390/ow390/ownet.h,
2124         * device/examples/ds390/ow390/owsesu.c,
2125         * device/examples/ds390/ow390/swt12.h,
2126         * device/examples/ds390/ow390/swtoper.c,
2127         * device/examples/ds390/ow390/temp10.h,
2128         * device/examples/ds390/ow390/thermodl.c,
2129         * device/examples/ds390/tinitalk/tinitalk.dsp,
2130         * device/examples/ds390/tinitalk/tinitalk.dsw,
2131         * device/examples/mcs51/clock/hw.h,
2132         * device/examples/mcs51/simple2/go.bat,
2133         * device/examples/serialcomm/windows/serial.h,
2134         * device/examples/xa51/dummy.c,
2135         * device/examples/xa51/hello.c,
2136         * device/include/80c51xa.h,
2137         * device/include/at89x051.h: corrected cvs line endings
2138
2139 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
2140
2141         * src/pic16/main.c (options): added command line --gstack, to trace
2142         stack over/under flows,
2143         * added pragma 'wparam' to allow passing first byte of function
2144         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
2145         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
2146         call to __gstack_test function and sets up the symbol as extern,
2147         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
2148         * popaop): added call to pic16_testStackOverflow,
2149         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
2150         wparamList list,
2151         * (genCall, genPcall): now all parameters are passed via stack
2152         except in functions that are pass to wparam pragma in which WREG is
2153         used too,
2154         * (genPcall): REENTRANT flag is checked to see if variable prototype
2155         contains reentrant keyword, don't call a non-reentrant function, via
2156         a reentrant function pointer or vice versa, functions are never
2157         passed via WREG,
2158         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
2159         D.Winkler,
2160         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
2161         SIGSEGV when accessing a NULL register stucture,
2162         * (pic16_printGPointerType): modified to handle UPPER modifier for
2163         function initializers, changed prototype of function to simpler one,
2164         * (pic16_printIvalFuncPtr): check to see if function is already
2165         added in externs list,
2166         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
2167         optimized a move from W to SFR with a move to the same register
2168         later after a CALL,
2169         * device/lib/pic16/debug: NEW directory, contains debug features
2170         which are enabled when linking with libdebug.lib, currently command
2171         line option --gstack enables stack pointer tracing for over/under
2172         flow, corresponding sources are in debug/gstack
2173
2174 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
2175
2176         * doc/sdccman.lyx: updated SDCC version,
2177         * (PIC16 port): update list of command line options,
2178         * src/pic16/device.h (structure pic16_options_t): added field gstack
2179         to enable stack overflow tracing on push/pops,
2180         * src/pic16/device.c (statistics structure): added statistics
2181         structure,
2182         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
2183         pic16_dump_int_registers): increase statistics counters for each
2184         * variable which is encountered
2185         * (pic16_dump_usection): emit each .udata variable to its own udata
2186         section,
2187         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
2188         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
2189         parameters via stack, otherwise use old scheme,
2190         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
2191         assembler output file,
2192         * src/pic16/main.c: added command line options --gstack to enable
2193         push/pop tracing for stack overflow,
2194         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
2195         instructions): added size of each instruction,
2196         * (pic16_countInstruction): estimate size of instructions in
2197         the_pFile list, inline assembly blocks are not counted,
2198         * (pic16_FixRegisterBanking): trace previous register usage, when
2199         banksel optimizations is greater than 0, don't emit a redudant
2200         banksel directive,
2201
2202 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
2203
2204         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
2205         * src/pic16/ralloc.c : applied same fix for pic16.
2206         * src/pic/gen.c : tidied it up a little.
2207
2208 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2209
2210         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
2211         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
2212
2213 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2214
2215         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
2216
2217 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2218
2219         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
2220         non-reentrant function __modsint in the interrupt function (thus
2221         corrupting math operations during serial I/O)
2222         * device/lib/ser_ir.c: as above, changed buffersize
2223         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
2224         256.c,d for zeroing
2225         * doc/Makefile: added option -t for rsync
2226
2227 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2228
2229         * src/SDCCast.h (struct ast),
2230         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
2231
2232 2004-10-20 Borut Razem <borut.razem AT siol.net>
2233
2234         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
2235         package
2236
2237 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
2238
2239         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
2240         makefile targets,
2241         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
2242         support functions to replace long sequences of MOVFF's from access
2243         bank registers to stack and vice versa,
2244         * src/pic16/device.h: added new field opt_flags, where optimization
2245         flags can be set to enable certain features,
2246         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
2247         * pBlock, (genFunction, genEndFunction): surroung loop for
2248         saving/loading used registers in stack with PC_INFO pCodes,
2249         INF_LREGS. Code in between can then be optimized by pCode optimizer
2250         to support function calls,
2251         * (genDataPointerSet): fixed bug which loaded float fields in
2252         structures with corrupt data,
2253         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
2254         in a standard way debug info on stderr. Feature used for developing
2255         and debugging only,
2256         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
2257         obsolete chunks of code,
2258         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
2259         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
2260         * pic16/src/pcode.c (pic16_newpCodeInfo,
2261         * (pic16_newpCodeOpLocalRegs),
2262         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
2263         feature,
2264         * (pic16_pCodeConstString): printing of the initial value of a
2265         symbol as a comment is inhibited since parsing was already done by
2266         copyStr and output is corrupt,
2267         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
2268
2269 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2270
2271         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
2272
2273 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
2274
2275         * as/mcs51/lkarea.c: removed old K&R style,
2276           (lnksect): changed check on boundary error,
2277           (lnksect2): changed check on boundary error,
2278           (lnksect2): extend XSTK to end of page if size = 1
2279         * as/mcs51/lkmain.c: removed old K&R style,
2280           (Areas51): create l_IRAM symbol
2281         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
2282         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
2283           model-mcs51-stack-auto, added model-mcs51-xstack-auto
2284         * device/lib/_mullong.c: added version to be compiled with xstack
2285         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
2286         * device/lib/mcs51/crtxclear.asm: clear pdata as well
2287         * device/lib/mcs51/crtxstack.asm: fixed comment
2288         * src/SDCCglue.c: maxInterrupts defaults to 0,
2289           (emitMaps): added pdata,
2290           (createInterruptVect): (re)moved default,
2291           (glue): added pdata,
2292           (glue): moved __start__xstack to XSTK with default size 1
2293         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
2294           and options.float_rent when options.stackAuto is set,
2295           (linkEdit): only write XDATA_NAME if provided on command line
2296         * src/SDCCmem.h,
2297         * src/SDCCmem.c: added pdata
2298         * src/port.h: added pdata_name to PORT
2299         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
2300           (saveRegisters, unsaveRegisters): removed usage of B,
2301           (genMinus): fixed accumulator clash,
2302           (genJumpTab): added comment, this needs another look
2303         * src/mcs51/gen.c: added check for "B in use" paranoia,
2304           added pushB() and popB()
2305         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
2306           chance
2307         * src/avr/main.c,
2308         * src/ds390/main.c,
2309         * src/hc08/main.c,
2310         * src/mcs51/main.c,
2311         * src/pic/main.c,
2312         * src/pic16/main.c,
2313         * src/xa51/main.c,
2314         * src/z80/main.c: (reset_regparms) made void parameter explicit and
2315           added PSEG (PAG,XDATA) or NULL to port specifier
2316         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
2317         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
2318           (_mcs51_genInitStartup): removed __start__xstack equ,
2319           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
2320         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
2321         * src/z80/gen.c (_rleAppend): fixed warnings
2322         * support/regression/tests/zeropad.c: added pdata test
2323         * .version: bumped to 2.4.6
2324
2325 2004-10-17 Borut Razem <borut.razem AT siol.net>
2326
2327         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
2328         as a part of nightly build
2329
2330 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
2331
2332         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
2333         WREG holds the first byte function parameters,
2334         * (aopForSym): take special case for symbols which are in FARSPACE
2335         but in CODESPACE too,
2336         * (assignResultValue): modified to take into account _G.useWreg,
2337         * (genCall): don't use wreg for parameter passing when function is
2338         declared as reentrant, too, added optimization INCF to stack
2339         pointer when stack parameter count is 1,
2340         * (genFunction, genEndFunction): refurnished and fixed to not using
2341         wreg for passing parameters when function has varargs or is
2342         reentrant, fixed bug with symbol name compare for generating
2343         functions in absolute address,
2344         * (pic16_storeForReturn): refurnished,
2345         * (genCmp): began writing a new version of the function, not ready
2346         yet, therefore it is disabled,
2347         * (genAssign): do not read code memory when assigning a function to
2348         a pointer function,
2349         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
2350         array of characters, not pointer,
2351         * (pic16initialComments): in debug mode emit an .ident directive for
2352         the assembler,
2353         * (_process_pragma): emit a new warning type (internal to pic16)
2354         when setting stack to default length, emit a similar warning when
2355         placing a function at absolute address and address is not word aligned
2356         * (_pic16_parseOptions): added 'return TRUE' statement,
2357         * (_pic16_linkEdit): if compiling a source, then add the source's
2358         file object, first in the list of objects to link,
2359
2360 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
2361
2362         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
2363         * src/pic/main.c : removed VC warning.
2364         * src/pic/gen.c : changed comment.
2365
2366 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
2367
2368         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
2369         reference to a deprecated symbol _GPTRREG was causing failure to
2370         link. Thanks G. M. Gallant for the info.
2371
2372 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
2373
2374         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
2375         comments for Bugs item #954788.
2376
2377 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
2378
2379         * src/pic16/device.c (pic16_dump_gsection,
2380         * pic16_groupRegistersInSection): handle symbols declared to be in
2381         access bank differently,
2382         * src/pic16/gen.c (struct _G): added field resDirect,
2383         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
2384         send values read from stack directly to result and don't allocate
2385         temporary values,
2386         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
2387         same registers,
2388         * (pic16_sameRegsOfs): NEW,
2389         * (freeAsmop): if _G.resDirect is set then do not mark registers as
2390         free because they were not allocated from temporary pool,
2391         * pic16_popRegFromString): workaround to fix a problem with
2392         allocating variables twice or never,
2393         * (genGenPointerGet): using PRODL instead of FSR0H,
2394         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
2395         instead of FSR0H,
2396         * (genAssign): take advantage of the _G.resDirect flag,
2397         * (genCast): around line 11844, use mov2f instead of directly
2398         MOVFF'ing between operands to account for literal values,
2399         * src/pic16/genutils.c: some new debug functions for gpsim have been
2400         added,
2401         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
2402         float with integer part only,
2403         * src/pic16/main.c (_process_pragma): handle pragma udata access to
2404         place variables in access bank
2405         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
2406         updated sources to reflect recent changes in gen.c
2407
2408 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
2409
2410         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
2411         sources that searched for headers in installation path, now the
2412         device/include/pic16 is used,
2413         * src/pic16/glue.c (pic16glue),
2414         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
2415         .line directives if not in debug mode, this suppresses assembler's
2416         warnings for ignored directives
2417
2418 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
2419
2420         * src/port.h: made reset_regparms prototype void parameter explicit.
2421         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
2422         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
2423         * doc/sdccman.lyx: documented warning disabling and how to use
2424           printf_large to make it print floats.
2425         * device/include/stdbool.h: NEW
2426         * device/lib/_atof.c,
2427         * device/lib/_divuint.c,
2428         * device/lib/_divulong.c,
2429         * device/lib/expf.c,
2430         * device/lib/printf_large.c,
2431         * device/lib/sincosf.c,
2432         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
2433         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
2434           a completely reentrant lib.
2435
2436 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
2437
2438         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
2439         * device/include/pic16/stdio.h: fixed bug with colon
2440
2441 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
2442
2443         * device/include/pic16/stdio.h,
2444         * device/include/pic16/stdlib.h,
2445         * device/include/pic16/math.h: NEW
2446         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
2447         declared as _naked to reduce overhead
2448         * device/lib/Makefile.in (target port-specific-objects-pic16):
2449         changed * to *.* so to ignore the CVS directory,
2450         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
2451         stacked variables back in stack,
2452         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
2453         corruption
2454
2455 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
2456
2457         * .version: bumped version number to 2.4.5
2458         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
2459         * support/Util/SDCCerr.c (messages structure): added entry for
2460         W_POSSBUG2
2461
2462         Large cumulative patch for pic16 port and libraries.
2463         * device/include/pic16/sdcc-lib.h,
2464         * device/include/pic16/stdarg.h,
2465         * device/include/asm/pic16/features.h,
2466         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
2467         * device/include/pic16/float.h: changes reentrant keyword with
2468         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
2469         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
2470         updated target build-libraries to include objects from gptr,
2471         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
2472         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
2473         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
2474         all function headings,
2475         * src/SDCCmain.c: added global parameter userIncDirsSet,
2476         * (parseCmdLine): when option -I is encountered add directory to
2477         userIncDirsSet too,
2478         * src/version.awk: added space between control and long,
2479         * src/pic16/NOTES: added some notes for the port,
2480         * src/pic16/gen.c: added prototype for mov2fp function,
2481         * (fReturnpic16[]): properly named return value registers,
2482         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
2483         * (aopForSym): added code to handle symbols with onStack flag set,
2484         symbols onStack are allocated PTRSIZE bytes,
2485         * (aopFreeAsmop): handles special case where asmops are stack objects,
2486         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
2487         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
2488         added argument lock to trace flaws in allocating temporary registers
2489         when developing port,
2490         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
2491         * (pic16_popRegFromString): reenabled allocating a direct register
2492         from string,
2493         * (assignResultValue): various beautifications,
2494         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
2495         referenced function argument,
2496         * (genIpush): reenabled to allow stacked arguments, handles only
2497         ic->parmPush iCodes,
2498         * (genCall, genPcall): major changes to allow for variable argument
2499         functions, fixed a bug with falsely restoring stack pointer after
2500         returning from call,
2501         * (genFunction): pending code for critical function,
2502         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
2503         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
2504         * (genNearPointerGet): fixed bug with indirect reading, was always
2505         reading from INDF0
2506         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
2507         pointers,
2508         * (genAddrOf): rewrote code to take address of a stacked function parameter
2509         * (genCast): fixed casting to generic pointer type,
2510         * src/pic16/gen.h: added AOP_STA,
2511         * (struct asmop): added field stk,
2512         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
2513         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
2514         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
2515         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
2516         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
2517         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
2518         generic pointers,
2519         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
2520         and library paths,
2521         * (pic16_port structure): generic pointer size is set to 3,
2522         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
2523         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
2524         compiler warning,
2525         * src/pic16/ralloc.c (allocReg): prevent allocating register when
2526         operand is an iTemp,
2527
2528 2004-09-24 Martin Helmling <mh AT octo-soft.de>
2529
2530         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
2531         * debugger/mcs51/simi.c: addapt new syntax of s51
2532
2533 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
2534
2535         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
2536         * src/pic16/pcode.c: commented out some calls to free() in order to
2537         fix bug #989576,
2538
2539 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2540
2541         * src/SDCCicode.h,
2542         * src/SDCCicode.c (isiCodeInFunctionCall),
2543         * src/avr/ralloc.c (selectSpil),
2544         * src/pic/ralloc.c (selectSpil),
2545         * src/pic16/ralloc.c (selectSpil),
2546         * src/ds390/ralloc.c (selectSpil),
2547         * src/hc08/ralloc.c (selectSpil),
2548         * src/xa51/ralloc.c (selectSpil),
2549         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
2550         stack in the middle of a function call sequence (fixes bug #1020268)
2551         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
2552         costs associated with the minimum switch case.
2553
2554 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2555
2556         * src/SDCC.lex: fixed bug #1030549
2557
2558 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2559
2560         * src/SDCCcse.h (struct cseDef),
2561         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
2562         over a function call if the CSE is derived from a symbol whose
2563         address has been taken (fixes bug #1029883)
2564         * support/regression/tests/bug-1029883: a new regression test for
2565         this bug
2566
2567 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2568
2569         * src/hc08/gen.c (emitinline): fixed bug #1029778
2570         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
2571         to a cast object is no longer a syntax error ("fixes" bug #1030006,
2572         and starts toward RFE #905167)
2573
2574 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
2575
2576         * src/pic16/gen.c (mov2f): New function to move an operand to
2577         another without considering if it is a literal or a register,
2578         * (pic16_sameRegs): don't check if they are both AOP_REG,
2579         * (AccRsh): removed andmask=0 lines,
2580         * (genLeftShift): duplicated to be improved in future versions,
2581         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
2582         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
2583         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
2584         * (pic16initMnemonics): added initialization for POC_INFSNZW,
2585         * (insertBankSwitch): fixed inserting banksel directives algorithm
2586         for instructions that follow a skip instruction, this fixes a report
2587         for broken subtraction code generation,
2588         * src/pic16/ralloc.c (deassignLRs): do not free register if current
2589         iCode is a left op, just in case result and right share the same
2590         registers
2591
2592 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2593
2594         * src/hc08/main.c,
2595         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
2596         preservation of HX
2597         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
2598         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
2599         on 2004-09-12; it was buggy
2600
2601 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
2602
2603         * src/SDCCsymt.h: removed RESULT_CHECK
2604         * src/SDCCast.c,
2605         * src/SDCCglue.c,
2606         * src/SDCCval.c,
2607         * src/pic/glue.c,
2608         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
2609
2610 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
2611
2612         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
2613         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
2614         configuration values no more rejected by compiler, they are assigned
2615         to configuration registers with a warning message instead,
2616         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
2617         the for-loop so last conf register is emitted too,
2618         * (_pic16_initPaths): link library libsdcc.lib by default,
2619         * (_hasNativeMulFor): modified test for multiplication according to
2620         Raphael Neider's remarks. Integer multiplication is also done with
2621         support functions,
2622         * device/include/pic16/pic18fregs.h: corrected type error in while
2623         testing and including 18f6720 header file
2624
2625 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
2626
2627         * src/pic16/device.h (pic16_options): removed field use_crt,
2628         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
2629         until an optimization to handle single bits is added,
2630         * (pic16_loadFSR0): moved before genUnpackBits,
2631         * (genAnd): some white lines removed,
2632         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
2633         leave_reset flags in pic16_options when using crt modules,
2634
2635 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
2636
2637         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
2638           for bugs 898889 & 979599. Also used some safer print instructions.
2639
2640 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
2641
2642         * src/pic16/device.h (pic16_options_t): added field use_crt,
2643         crt_name, no_crt,
2644         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
2645         catch a probable future bug,
2646         * src/pic16/gen.c: aopIdx function commented out,
2647         * (genAssign): commented out old code which used aopIdx,
2648         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
2649         code, added if conditionals to take into account the --use-crt
2650         command line options,
2651         * src/pic16/main.c (pic16_optionsTable): added new command line
2652         options, --use-crt= and --no-crt,
2653         * (_pic16_linkEdit): now the proper crt object is added in the
2654         linker command line except than when --no-crt is specified,
2655         * src/pic16/pcode.c,
2656         * src/pic16/pcode.h: added some structures and functions for a new
2657         optimization scheme to compansate for instruction overhead between
2658         same iCodes, this scheme is currently under development and is not
2659         working in any way,
2660         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
2661         to && operator,
2662         * device/lib/pic16/startup/crt0i.c,
2663         * device/lib/pic16/startup/crt0iz.c: added global char variable
2664         __uflags to force the generation of an idata section
2665
2666 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
2667
2668         * doc/Makefile,
2669         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
2670         * doc/sdccman.lyx: updated sdcc version to 2.4.4
2671
2672 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2673
2674         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
2675         Frieder) and clarified the default code optimization mode
2676
2677 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2678
2679         * src/SDCC.lex (doPragma, process_pragma),
2680         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
2681         "opt_code_size", and "opt_code_balanced"
2682         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
2683         regrouped options by category, added support for category headers
2684         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
2685         and "--opt-code-size"
2686         * doc/sdccman.lyx: documented these new options and pragmas
2687         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
2688         preference into account
2689
2690 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2691
2692         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
2693           geniCodePreDec): Fixed bug 904237 by generating a warning
2694         * src/SDCCerr.h,
2695         * src/SDCCerr.c: added warning W_SIZEOF_VOID
2696
2697 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
2698
2699         * src/pic/device.c : When no max ram set validate full memory range.
2700         * src/pic/pcode.c,
2701         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
2702
2703 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2704
2705         * device/lib/_gptrget.c,
2706         * device/lib/_gptrput.c: updated comment
2707         * device/lib/calloc.c,
2708         * device/lib/free.c,
2709         * device/lib/malloc.c,
2710         * device/lib/realloc.c: added LGPL, made them reentrant-safe
2711         * src/SDCCcse.c (cseBBlock),
2712         * src/SDCCicode.c (printOperand, geniCodeArray),
2713         * src/SDCCicode.h (struct operand): fixed bug 868103
2714         * support/regression/tests/bug-868103.c: added
2715         * src/SDCCast.c (searchLitOp),
2716         * src/SDCCcse.h (struct cseDef),
2717         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
2718         * src/SDCCicode.h (struct operand),
2719         * src/SDCCsymt.h (struct sym_link),
2720         * src/avr/gen.c (hasInc),
2721         * src/ds390/gen.c (hasInc),
2722         * src/hc08/gen.c (genPlusIncr, hasInc),
2723         * src/mcs51/gen.c (hasInc),
2724         * src/pic16/glue.c (pic16_printIvalChar),
2725         * src/pic16/ralloc.c (regWithIdx),
2726         * src/xa51/gen.c (hasInc) : removed warnings
2727         * src/SDCCast.c (createBlock): added comment ???
2728         * src/hc08/ralloc.c: updated comments
2729
2730 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2731
2732         * doc/sdccman.lyx: updated section on switch statements, added
2733         section about semaphore locking
2734         * doc/Makefile: added option -info for latex2html
2735         * device/lib/_gptrget.c,
2736         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
2737
2738 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
2739
2740         * src/pic/device.h,
2741         * src/pic/device.c,
2742         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
2743          maxram is less than 0x100.
2744
2745 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
2746
2747         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
2748
2749 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2750
2751         * src/port.h,
2752         * src/mcs51/main.c,
2753         * src/ds390/main.c,
2754         * src/z80/main.c,
2755         * src/hc08/main.c,
2756         * src/pic/main.c,
2757         * src/pic16/main.c,
2758         * src/avr/main.c,
2759         * src/xa51/main.c
2760         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
2761         a jump table is the best form for a switch statement, including
2762         automatic insertion of missing cases to make the case range
2763         continuous. Developed in collaboration with Frieder Ferlemann.
2764
2765 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2766
2767         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
2768         accumulator result if it needs sign extension
2769
2770 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2771
2772         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
2773
2774 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2775
2776         * device/lib/gbz80/printf.c,
2777         * device/lib/z80/printf.c: removed define for NULL
2778
2779 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2780
2781         * as/xa51/xa_link.c,
2782         * device/examples/ds390/ow390/ad26.c,
2783         * device/examples/ds390/ow390/cnt1d.c,
2784         * device/examples/ds390/ow390/counter.c,
2785         * device/examples/ds390/ow390/ds2480.h,
2786         * device/examples/ds390/ow390/ds2480ut.c,
2787         * device/examples/ds390/ow390/findtype.c,
2788         * device/examples/ds390/ow390/gethumd.c,
2789         * device/examples/ds390/ow390/owllu.c,
2790         * device/examples/ds390/ow390/ownetu.c,
2791         * device/examples/ds390/ow390/swt12.c,
2792         * device/examples/ds390/ow390/swtloop.c,
2793         * device/examples/ds390/ow390/temp.c,
2794         * device/examples/ds390/ow390/temp10.c,
2795         * device/examples/ds390/ow390/thermo21.c,
2796         * device/examples/ds390/ow390/tinilnk.c,
2797         * device/examples/ds390/ow390/tstfind.c,
2798         * device/examples/serialcomm/windows/serial.cpp,
2799         * device/examples/serialcomm/windows/test_serialcomm.cpp,
2800         * device/include/reg51.h: fixed line endings for cvs
2801
2802 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2803
2804         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
2805         packRegsForAccUse, packRegisters): new accumulator register
2806         packing algorithm
2807         * support/regression/ports/hc08/support.c (_putchar): suppress
2808         warning of unused variable
2809         * src/SDCCicode.c: added SWAP entry to codeTable
2810
2811 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
2812
2813         * device/lib/sprintf.c: forgot to add this file before previous commit
2814
2815 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
2816
2817         * src/pic16/gen.c (genPackBits): added operand right in function
2818         parameters, load result directly if p_type is POINTER (that is
2819         called by genNearPointerSet)
2820         * (genUnPackBits): added operand left in function parameters,
2821         * (genNearPointerGet, genNearPointerSet): prevent the loading of
2822         FSR0 if accessing bitfields,
2823
2824 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
2825
2826         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
2827           _print_format; updated printf, sprintf, vsprintf
2828         * device/include/asm/default/features.h: corrected comment/define
2829         * device/lib/Makefile.in: added sprintf.c
2830         * device/lib/libsdcc.lib: added sprintf module
2831         * device/lib/printf_large.c,
2832         * device/lib/vprintf.c,
2833         * device/lib/sprintf.c: totally refactored printf_large and vprintf
2834           into these 3 files
2835         * support/regression/Makefile: changed ALL_PORTS into a usefull default
2836         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
2837         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
2838           hc08 test
2839         * support/regression/tests/zeropad.c: define idata as data for hc08
2840
2841 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2842
2843         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
2844         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
2845         labels are referenced at least once (even if a reference is not found)
2846         * src/hc08/gen.c (emitcode): set isComment flag for comments
2847         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
2848         loads), rules 6a..6b (optimize jumps to return)
2849
2850 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2851
2852         * device/lib/acosf.c (acosf),
2853         * device/lib/asinf.c (asinf),
2854         * device/lib/atanf.c (atanf),
2855         * device/lib/ceilf.c (ceilf),
2856         * device/lib/cosf.c (cosf),
2857         * device/lib/coshf.c (coshf),
2858         * device/lib/cotf.c (cotf),
2859         * device/lib/fabsf.c (fabsf),
2860         * device/lib/floorf.c (floorf),
2861         * device/lib/log10f.c (log10f),
2862         * device/lib/logf.c (logf),
2863         * device/lib/sinf.c (sinf),
2864         * device/lib/sinhf.c (sinhf),
2865         * device/lib/sqrtf.c (sqrtf),
2866         * device/lib/tanf.c (tanf),
2867         * device/lib/tanhf.c (tanhf),
2868         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
2869         replaced all instances of "reentrant" in the library functions
2870         defined in math.h with this macro.
2871         * support/regression/tests/float_trans.c: reenabled test for hc08
2872
2873 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
2874
2875         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
2876         erroneously deleted
2877
2878 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2879
2880         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
2881         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
2882         multi-byte volatile operands are used
2883         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
2884         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
2885         initialization to area GSINIT0 so that it would always precede
2886         any static initializers in GSINIT
2887         * support/regression/tests/zeropad.c: fixed idata define for hc08
2888         * support/regression/tests/bug-927659.c,
2889         * support/regression/tests/float_trans.c: disabled tests for hc08
2890         pending missing library routines
2891         * .version: increased version number to 2.4.4 - hc08 port now passes
2892         regression tests
2893
2894
2895 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
2896
2897         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
2898         * Makefile.common.in,
2899         * as/Makefile,
2900         * as/hc08/Makefile.in,
2901         * as/mcs51/Makefile.in,
2902         * as/z80/Makefile.in,
2903         * debugger/mcs51/Makefile.in,
2904         * device/include/Makefile.in,
2905         * device/lib/Makefile.in,
2906         * doc/Makefile,
2907         * link/Makefile,
2908         * link/z80/Makefile.in,
2909         * packihx/Makefile.in,
2910         * sim/ucsim/main_in.mk,
2911         * sim/ucsim/avr.src/Makefile.in,
2912         * sim/ucsim/doc/Makefile.in,
2913         * sim/ucsim/gui.src/serio.src/Makefile.in,
2914         * sim/ucsim/hc08.src/Makefile.in,
2915         * sim/ucsim/s51.src/Makefile.in,
2916         * sim/ucsim/xa.src/Makefile.in,
2917         * sim/ucsim/z80.src/Makefile.in,
2918         * src/Makefile.in,
2919         * support/cpp2/Makefile.in,
2920         * support/librarian/Makefile,
2921         * support/makebin/Makefile: added DESTDIR to the install path proposed
2922         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
2923         * doc/sdccman.lyx: added DESTDIR documentation
2924
2925 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
2926
2927         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
2928         instruction for interrupt handlers, use fast returns when returning
2929         from high priority interrupts
2930
2931 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2932
2933         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
2934         code generation
2935         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
2936         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
2937         bugs, ported much of Bernhard's code from mcs51
2938         * src/mcs51/gen.c (genSend),
2939         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
2940         than one when calling a reentrant function
2941         * device/lib/_mullong.c: defined an alternate struct layout for big
2942         endian ports (hc08)
2943
2944 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2945
2946         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
2947         test
2948
2949 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2950
2951         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
2952         are sane and complete before asking the port its prefered parameter
2953         passing method (fixes bug #1017633)
2954         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
2955         and _ret3
2956
2957 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2958
2959         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
2960         problem in bitfields >= 8 bits.
2961
2962 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
2963
2964         * src/SDCCsymt.c: undid changes that were not meant to be committed
2965
2966 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
2967
2968         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
2969
2970 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
2971
2972         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
2973           copied and wrong bit got inverted
2974
2975 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2976
2977         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
2978         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
2979         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
2980         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
2981         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
2982         assignments to bitfields at known addresses
2983         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
2984         reads from bitfields at known addresses
2985         * src/hc08/ralloc.c (packRegisters),
2986         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
2987         genhc08Code): optimize pointer get values used as conditionals
2988         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
2989         and branch
2990
2991 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2992
2993         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
2994         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
2995         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
2996         as conditionals
2997
2998 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2999
3000         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
3001
3002 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3003
3004         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
3005         related problems
3006
3007 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
3008
3009         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
3010
3011 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3012
3013         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
3014         mcs51 port
3015
3016 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
3017
3018         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
3019
3020 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3021
3022         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
3023         cases use more compact code.
3024
3025 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
3026
3027         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
3028
3029 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3030
3031         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
3032
3033 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3034
3035         * src/SDCCsymt.h,
3036         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
3037         parameter of changePointer() from symbol* to sym_link*
3038         * src/SDCCast.c (decorateType): call changePointer() for CAST op
3039         * src/SDCCsymt.c (compareType): void* type is castable to other
3040         pointers, but not necesarily an exact match.
3041         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
3042         is no longer blindly treated as an exact match.
3043         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
3044
3045 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
3046
3047         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
3048
3049 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
3050
3051         * src/pic/gen.c,
3052         * src/pic/pcode.c,
3053         * src/pic/ralloc.h,
3054         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
3055
3056 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
3057
3058         * src/pic/device.c,
3059         * src/pic/device.h,
3060         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
3061
3062 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3063
3064         * src/mcs51/gen.c (emitcode): fixed bug #992819
3065
3066 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
3067
3068         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
3069           there's no need to make it worse
3070
3071 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3072
3073         * src/mcs51/ralloc.c (deassignLR),
3074         * src/ds390/ralloc.c (deassignLR),
3075         * src/hc08/ralloc.c (deassignLR),
3076         * src/z80/ralloc.c (deassignLR),
3077         * src/pic/ralloc.c (deassignLR),
3078         * src/pic16/ralloc.c (deassignLR),
3079         * src/avr/ralloc.c (deassignLR),
3080         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
3081         rlivePoint): fixed another part of bug #971834
3082
3083 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3084
3085         * src/z80/main.c: enabled "critical" keyword
3086         * src/z80/mappings.i,
3087         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
3088         functions (fixes bug #979646)
3089         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
3090
3091 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3092
3093         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
3094           such as c:\mydir.
3095
3096 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
3097
3098         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
3099           doesn't disable too much optimizations
3100
3101 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3102
3103         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
3104
3105 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
3106
3107         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
3108
3109 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3110
3111         * src/pic/gen.c tidied up tabs
3112         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
3113         * src/pic/main.c tidied up tabs
3114         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
3115         * src/pic/pcoderegs.c tidied up tabs
3116         * src/pic/ralloc.c tidied up tabs
3117
3118 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
3119
3120         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
3121         to S_FIXED for pic16 port and when symbol is not in level 0,
3122         allocate for S_REGISTER storage class and pic16 port, too,
3123         * src/pic16/device.h: prototype for checkSym,
3124         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
3125         * (pic16_assignConfigWordValue): test the value and the mask to
3126         validate that the value is suitable for the configuration word,
3127         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
3128         collect extern declared symbols, don't emit symbol twice, check
3129         first if symbol is in publics set first,
3130         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
3131         * added command line '--fstack' which enables an experimental
3132         feature for stack access, too buggy to be used yet...
3133         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
3134         * (pic16_allocDirReg): when register has storage class S_REGISTER
3135         allocate in pic16_dynAccessRegs,
3136         * device/include/pic16/pic18f????.h: modified configuration word
3137         naming convention, words started as CONFIG0H but should be CONFIG1H
3138
3139 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
3140
3141         * device/include/mcs51reg.h: fixed bug 970993
3142
3143 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
3144
3145         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
3146         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
3147         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
3148         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
3149         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
3150         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
3151           error/warning numbers,
3152           added function setWarningDisabled()
3153         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
3154         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
3155           _memcmp.c _memmove.c calloc.c realloc.c free.c
3156         * support/regression/tests/malloc.c: added tests for new functionality
3157         * support/regression/tests/zeropad.c: added tests for truncated initializers
3158           and initialized char arrays starting with '\x0'
3159         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
3160
3161 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
3162
3163         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
3164
3165 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3166
3167         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
3168         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
3169         peephole 177.e. Thanks to anonymous
3170
3171 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
3172
3173         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
3174         function isn't used in the source but referenced as a
3175         variable initializer then declare it as extern in .asm file
3176
3177 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
3178
3179         * .version: increased version number to 2.4.3
3180
3181         Adding version extension according to ChangeLog CVS revision
3182         * src/Makefile.in (target all): added dependency 'version.h'
3183         * (rule version.h): added rule to create version.h from ChangeLog,
3184         * (rule dep): added dependency version.h,
3185         * src/version.awk: AWK script to create version.h
3186         * src/SDCCdwarf2.c (dwWriteModule),
3187         * src/SDCCglue.c (initialComments),
3188         * src/SDCCmain.c (printVersionInfo): modified to write after
3189         version string the version extension number,
3190         * src/SDCCutil.c: included "version.h"
3191         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
3192         number,
3193         * src/SDCCutil.h: added prototype for getBuildNumber
3194
3195         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
3196         includeDirsSet, too,
3197         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
3198         const char [] is found in function prototype...
3199
3200         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
3201         moving to WREG with source is already in WREG,
3202         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
3203         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
3204         * (aopForSym): stack'ed symbols are partially supported, added
3205         if-clause to support symbols in FARSPACE,
3206         * (sameRegs): added test for AOP_ACC to see if registers are same,
3207         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
3208         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
3209         * (pic16_popRegFromString): will not allocate a new register if it
3210         doesn't find one by name, bug may have introduced...
3211         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
3212         * (genIpush): revived to use pic16 port's stack,
3213         * (genAddrOf): added incomplete case for stack'ed operand,
3214         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
3215         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
3216         can handle multibyte operands,
3217         * src/pic16/glue.c (pic16_printIval*): some debug info added,
3218         * (pic16initialComments): added message for MPLAB compatibility
3219         mode enabled,
3220         * src/pic16/main.h: prototype for pic16_mplab_comp,
3221         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
3222         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
3223         * (_pic16_linkEdit): NEW, handles link stage, transferred here
3224         because of increased complexity of procedure,
3225         * (_process_pragma): stack pragma changed to format 'stack pos len',
3226         emit symbol '_stack_end' to conform with gplink,
3227         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
3228         to search for register,
3229         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
3230         PO_GPR_REGISTER,
3231         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
3232         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
3233         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
3234         case for PO_GPR_REGISTER,
3235         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
3236         dies, the new era is ahead !...
3237         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
3238         pic16_dynInternalRegs,
3239         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
3240         * (pic16_allocDirReg): minor optimizations and bug fixes,
3241         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
3242
3243         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
3244         load stack and frame pointer with address of 'stack_end' symbol
3245
3246 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
3247
3248         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
3249         without source code but only variable initializers
3250
3251 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
3252
3253         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
3254         external are not declared as extern to reduce overhead while linking
3255
3256 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
3257
3258         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
3259
3260 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
3261
3262         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
3263           Yee Keat for the patch
3264         * src/SDCCast.c (decorateType): fixed bug #979599
3265         * src/ds390/gen.h: removed local fReturnSizeDS390
3266         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
3267         * src/ds390/gen.c (genAnd, genOr, genXor),
3268         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
3269
3270 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
3271
3272         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
3273         add relFilesSet to $3, manipulate $2 to handle linking of object
3274         files without source files in command line,
3275         * device/include/pic16 (all headers): added ID location macros,
3276         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
3277         entries for ID location bytes,
3278         * (pic16_assignIdByteValue): NEW,
3279         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
3280         added field dumpcalltree to pic16_options_t,
3281         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
3282         is used instead of pic16_Gstack_base_addr, check if (ifx) before
3283         emitting rFalseIfx label after check_carry label,
3284         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
3285         pic16_emitDIRegs), NEW
3286         * (pic16glue): dump .calltree file when option --calltree found,
3287         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
3288         * (_pic16_genAssemblerPreamble): emit ID locations after
3289         configuration registers,
3290         * (pic16_linkCmd): modifications of the link command,
3291         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
3292         * (pic16_pCodeInitRegisters): don't init stack registers,
3293         * (pic16_findPrevInstruction): fixed bug,
3294         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
3295         bug with immediate registers,
3296         * (buildCallTree): traces stack push and pop,
3297         * (pct2): dump also stack usage for each function,
3298         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
3299         * (pic16_allocDirReg): various modifications,
3300         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
3301         fixed to 1,
3302
3303 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
3304
3305         * src/pic16/pcode.c: removed buggy double colon
3306
3307 2004-07-01 Borut Razem <borut.razem AT siol.net>
3308
3309         * support/scripts/sdcc.nsi: added include/pic16 to setup
3310
3311 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
3312
3313         * device/lib/Makefile.in: fixed bug in target objects-pic16,
3314         * device/lib/pic16/Makefile: prefixed with dash (-) command under
3315         target 'clean',
3316         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
3317         specific command line arguments. Also added sample lkr script
3318         for placing a variable at a specific memory bank.
3319         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
3320         at a specific memory bank,
3321         * (pic16_dump_isection): fixed bug which caused string literals to
3322         be omitted when dumping idata section,
3323         * (pic16_groupRegistersInSection): added code to handle registers
3324         in specific memory banks,
3325         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
3326         public, all references are renamed too,
3327         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
3328         AOP_DPTR2,
3329         * (pic16_storeForReturn): added case to handle when dest is WREG,
3330         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
3331         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
3332         pic16_rel_udata, check to see if that register is marked as being
3333         a member of a specific memory bank,
3334         * (pic16_printIvalCharPtr): added code to add string literals either
3335         to code or the idata sections,
3336         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
3337         also accept the 'udata' pragma,
3338         * src/pic16/main.h: new structure types sectName and sectSym
3339         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
3340         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
3341         * (pic16_findPrevInstruction): fixed, it returned nothing,
3342         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
3343         instruction combinations,
3344         * (pic16_FixRegisterBanking): heavily reorganised,
3345         * (pic16_AnalyzeBanking): if generating banksel directives is
3346         disabled, then don't call FixRegisterBanking at all,
3347         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
3348         completely removed,
3349         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
3350
3351 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
3352
3353         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
3354         Phuah Yee Keat <yk.phuah AT nestac.com>
3355
3356 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3357
3358         * src/pic16/glue.c (pic16createInterruptVect): function now emits
3359         correctly the IVT even if it is relocated to some other location
3360
3361 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3362
3363         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
3364         * device/include/pic16/pic18f2220.h: NEW,
3365         * device/lib/pic16/libdev/pic18f2220.c: NEW,
3366         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
3367         * src/pic16/device.c (struct Pics16): added info for 18f2220,
3368         * src/pic16/device.h (struct pic16_options): added ivt_loc and
3369         nodefaultlibs, ivt_loc is the location of the interrupt vector
3370         table, and nodefaultlibs signs that default libraries should not be
3371         linked in link stage,
3372         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
3373         according to --ivt-loc argument,
3374         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
3375         when pragma stack is found,
3376
3377 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3378
3379         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
3380         256 (range check), 257 (do while), 258.a-f (bit banging
3381         f.e. on 3-wire SPI bus)
3382
3383 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3384
3385         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
3386         variables used exclusively within a loop
3387
3388 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
3389
3390         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
3391
3392 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3393
3394         * src/SDCClrange.c (computeClash): fixed bug #971834
3395
3396 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3397
3398         * src/mcs51/gen.c (genCmp): fixed bug #975903
3399         * src/hc08/gen.c (operandsEqu),
3400         * src/ds390/gen.c (operandsEqu),
3401         * src/z80/gen.c (operandsEqu),
3402         * src/pic/gen.c (operandsEqu),
3403         * src/pic16/gen.c (operandsEqu),
3404         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
3405         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
3406
3407 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3408
3409         * src/SDCCcse.c (cseBBlock): fixed bug #966963
3410
3411 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
3412
3413         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
3414         default case in switch statement,
3415         * glue.c (pic16_initPointer): expr is initialised via decoarteType
3416         to eliminate problem with initialisation of pointers, but problem
3417         still exists,
3418         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
3419         * (emitStaticSegment): removed various lines emitting debug info,
3420         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
3421         added processor registers for utilizing EEPROM,
3422         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
3423         configurable and set 8
3424
3425 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
3426
3427         * .version: increased version number to 2.4.2,
3428
3429         Cumulative patch for pic16 port
3430         * src/pic16/device.c: changed scheme to dump initial values for
3431         variables in idata segment, all print_idata* functions were removed,
3432         now the pic16_printIval* will be called,
3433         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
3434         * _pic16_printPointerType, pic16_printPointerType,
3435         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
3436         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
3437         NEW, similar to the respective functions in SDCCglue.c,
3438         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
3439         way, emitting hex bytes,
3440         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
3441
3442 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3443
3444         * src/avr/ralloc.c (serialRegAssign),
3445         * src/xa51/ralloc.c (serialRegAssign),
3446         * src/pic/ralloc.c (serialRegAssign),
3447         * src/pic16/ralloc.c (serialRegAssign),
3448         * src/hc08/ralloc.c (serialRegAssign),
3449         * src/z80/ralloc.c (serialRegAssign),
3450         * src/ds390/ralloc.c (serialRegAssign),
3451         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
3452
3453 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3454
3455         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
3456         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
3457
3458 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
3459
3460         Cumulative patch for pic16 port:
3461         * src/pic16/device.h (typedef PIC16_device) modified fields for
3462         defining microcontrollers,
3463         * src/pic16/device.c: added new info for all devices in Pics16 array,
3464         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
3465         to be optimised out by the pCode optimiser,
3466         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
3467         specially, bug reported by G.M. Gallant,
3468         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
3469         as force'd so that cannot be optimised out by pCode optimiser,
3470         * src/pic16/pcode.c,
3471         * src/pic16/pcodepeeph.c,
3472         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
3473         they are disabled by default, but can be enabled explicit with
3474         command argument --denable-peeps, for testing,
3475         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
3476         --pomit-ivt in COMPILE_FLAGS
3477
3478 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3479
3480         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
3481           compilation on MSVC
3482
3483 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3484
3485         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
3486
3487 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3488
3489         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
3490         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
3491
3492 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
3493
3494         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
3495         would only assign 0x300001 register.
3496
3497 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
3498
3499         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
3500         in COMPILE_FLAGS. Thanks to G. Gallant for report.
3501
3502 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3503
3504         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
3505         for ds80c400
3506         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
3507         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
3508         added peephole 254 (left shift), 255 (jump table)
3509
3510 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
3511
3512         * device/lib/Makefile.in: removed comment line with model-pic16,
3513         * (target port-specific-objects-pic16): the libraries and objects
3514         are copied to the build directory form the device/lib/pic16/bin
3515         directory
3516
3517         Cumulative patch concerning pic16 port:
3518         * library directory has been re-organized,
3519         * added support for PIC18F1220,
3520         * added headers and library sources for chips 18f1220,18f6520,
3521         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
3522
3523         * configuration registers setting has changed, now each supported
3524         device has a complete description of the registers it uses,
3525         * all initialisations are moved to idata sections, these section
3526         can be absolute or relocatable,
3527         * fixed initialisation of codespace variables,
3528         * fixed warning about PCLATU and gpsim,
3529         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
3530         * (genAssign): use table reads when assigning from variables in codespace,
3531         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
3532         char/int variables placed in codespace,
3533         * (pic16_emitConfigRegs): NEW, emits a list with configuration
3534         registers set in .asm file, no need for --pomit-config-words anymore,
3535         * (pic16glue): some 8051 legacy segments are commented out
3536         (to be removed completely),
3537         * added support for alternative assembler and linker with --asm=
3538         and --link= command line arguments,
3539         * peepholes are disabled automatically in the port, no need to
3540         specify on command line,
3541         * port supports natively char/int/long multiplication, but converts
3542         all divisions to support functions,
3543         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
3544         to the file set in variable $2,
3545         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
3546         strings in ASCII format and not in hex,
3547         * ralloc.c (serialRegAssign): added a triplet of conditional calls
3548         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
3549         allocate proper register if iCodes aren't temporary,
3550
3551 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
3552
3553         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
3554
3555 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
3556
3557         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
3558         is commented out
3559
3560 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3561
3562         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
3563         computed address is reused
3564         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
3565         multi-byte bitfields
3566
3567 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3568
3569         * src/z80/gen.c: (genArrayInit): must check for pointers too
3570
3571 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3572
3573         * support/regression/tests/zeropad.c: never meant to commit the
3574           nestedstruct test: removed, added check for GCC version
3575
3576 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
3577
3578         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
3579         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
3580         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
3581           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
3582           bugs 928906 and 954082 half-empty initializers
3583         * src/SDCCsymt.h,
3584         * src/SDCCsymt.c (getAllocSize): added for above fix
3585         * src/z80/gen.c (genArrayInit): fixed bug 741044
3586         * support/regression/tests/zeropad.c: added tests
3587
3588 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
3589
3590         * src/pic16/device.c (pic16_dump_section): corrected bug which
3591         caused some symbols of the libraries to be misplaced
3592
3593 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3594
3595         * src/pic16/glue.c,
3596         * src/pic16/ralloc.h,
3597         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
3598         to fix conflict with pic port
3599
3600 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3601
3602         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
3603         externs configuration variables,
3604         * src/pic16/ralloc.h,
3605         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
3606         prototype in header, commented out some debug messages
3607
3608 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
3609
3610         * src/pic16/glue.c,
3611         * src/pic16/main.c,
3612         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
3613         for gpasm COFF object generation. Thanks to D. Hawkins for
3614         his patch info
3615
3616 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3617
3618         * src/ds390/main.c,
3619         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
3620         Brock for spotting this)
3621         * src/ds390/gen.c (genEndFunction),
3622         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
3623         interrupt handler and critical. Disable push/pop optimizations when
3624         peephole optimizations disabled.
3625
3626 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
3627
3628         Updated pic16 library sources and headers.
3629         * device/lib/pic16/pic18f*/ ,
3630         * device/include/pic16/*.h: modified to handle structured SFR
3631         definitions
3632
3633 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
3634
3635         * src/port.h (PORT structure): added hook initPaths, now each
3636         port can declare its own default search paths,
3637         which can been seen with the --print-search-dirs option,
3638         see pic16 port for example,
3639         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
3640         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
3641         * (doPrintSearchDirs): NEW, replaces in a central manner the
3642         printing of search dirs which was split in set*Paths functions,
3643         * (main): added call to port->initPaths and doPrintSearchDirs,
3644         * src/avr/main.c,
3645         * src/ds390/main.c,
3646         * src/hc08/main.c,
3647         * src/izt/i186.c,
3648         * src/izt/tlcs900h.c,
3649         * src/mcs51/main.c,
3650         * src/pic/main.c,
3651         * src/pic16/main.c: modified port structures to reflect addition of
3652         initPaths hook,
3653
3654         * src/pic16/device.c (regCompare): registers are finally sorted by name,
3655         * (pic16_dump_section): for registers in same address reserve memory once,
3656         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
3657         to no_banksel,
3658         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
3659         result is greater in size than right or left,
3660         * (pic16_genUMult8X8_8): there are some cases where the result can
3661         be 16 bits size, so handle these,
3662         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
3663         * (pic16_outBitC): modified to emit pcodes,
3664         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
3665         or not,
3666         * (genDivOneByte): implemented algorithm to divide 8-bits,
3667         * (genCmp): uncommented goto, but issues still exist,
3668         * (genAnd): fixed a bug with variables >8bits,
3669         * (genPackBits): optimization added that uses BCF/BSF to change a
3670         single bit,
3671         * (genAssign): fixed bug when assigning floating point literals,
3672         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
3673         __sdcc_gsinit_startup label,
3674         * src/pic16/main.c (_pic16_init): removed search directory
3675         initialisations,
3676         * (_pic16_initPaths): NEW, used to initialise search directories,
3677         * (_hasNativeMulFor): support functions for all except char/int
3678         multiplication, and char division,
3679         * (PIC16_port struct): modified entry for native mul support,
3680         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
3681         no_banksel option,
3682         * (buildCallTree): call to register_usage is ifdef'ed out,
3683
3684 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3685
3686         * device/include/string.h: applied Stas Sergeev's patch to make this
3687         header file compatible with the preprocessor -Wundef option
3688         * src/SDCCmain.c (main): abort compilation if preprocessor reports
3689         failure (fixes bug #941458)
3690
3691 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3692
3693         * src/SDCCopt.c (killDeadCode): fixed bug #907733
3694         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
3695         that the variable, not the function, should be static
3696         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
3697         to be consistent with non-literal case
3698
3699 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3700
3701         * src/SDCCast.c (isConformingBody): fixed bug #949967
3702         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
3703         convilong): fixed bug #952086
3704
3705 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3706
3707         * src/SDCCmem.c (allocVariables): fixed bug #955321
3708
3709 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3710
3711         * src/hc08/main.c (_hc08_genAssemblerEnd),
3712         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
3713         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
3714         completely eliminated the use of a temporary file
3715         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
3716         when more than one file linked
3717         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
3718
3719 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3720
3721         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
3722         which fixes bug #543481
3723         * support/regression/tests/bug-751703.c: fixed comments left from a
3724         cut and paste error
3725         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
3726         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
3727         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
3728         scopes
3729         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
3730         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
3731         are now changed to underscores in moduleName
3732
3733 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3734
3735         * as/mcs51/lkmem.c: better fix for bug #954173
3736
3737 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
3738         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3739
3740         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
3741         * device/include/c8051f000.h,
3742         * device/include/c8051f120.h,
3743         * device/include/c8051f300.h,
3744         * device/include/c8051f310.h,
3745         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
3746         PWM16) and detab'ed
3747
3748 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3749
3750         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
3751         and mailing lists, doc'ed --no-peep-comments, removed reference
3752         to knoppix (newest version has no LyX/LaTeX), other minor changes
3753         * src/SDCCglue.c (glue): save 2 bytes stack space with
3754         option --main-return. The ljmp could probably be avoided too
3755
3756 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3757
3758         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
3759
3760 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3761
3762         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
3763         * src/SDCCopt.c (isLocalWithoutDef),
3764         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
3765         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
3766         (credit to Maarten Brock for patch #949363, on which this is based)
3767         * support/regression/tests/bug-751703.c: some test cases of extern used
3768         within inner scopes.
3769
3770 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3771
3772         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
3773         SPEC_STRUCT
3774         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
3775         struct definitions
3776         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
3777         dwWriteLabel): fix to create valid debugger symbols even when
3778         the module name has non-alphanumeric symbols in it
3779         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
3780         when a variable's allocation has been optimized away
3781
3782
3783 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3784
3785         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
3786         * src/hc08/main.c,
3787         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
3788         * src/mcs51/main.c,
3789         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
3790         * src/ds390/main.c,
3791         * src/z80/gen.c (z80_emitDebuggerSymbol),
3792         * src/z80/main.c,
3793         * src/pic/gen.c (pic14_emitDebuggerSymbol),
3794         * src/pic/main.c,
3795         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
3796         * src/pic16/main.c,
3797         * src/avr/gen.c (avr_emitDebuggerSymbol),
3798         * src/avr/main.c,
3799         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
3800         * src/xa51/main.c,
3801         * src/SDCCdebug.c (emitDebuggerSymbol),
3802         * src/SDCCdebug.h,
3803         * src/port.h: added a debugger struct to the port struct. Added a
3804         callback for defining debugger symbols
3805
3806         * src/SDCCast.c (createLabel),
3807         * src/SDCC.y (labeled_statement): mark all compiler generated labels
3808         with isitmp = 1
3809         * src/SDCCicode.h,
3810         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
3811         iCode back to the ast for the function
3812
3813         * src/hc08/ralloc.c (hc08_assignRegisters),
3814         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
3815         unneeded fields from the regs struct.
3816         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
3817         pushReg() & pullReg() functions instead of emitcode()
3818
3819         * src/hc08/gen.c (genLabel, genhc08Code),
3820         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
3821
3822         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
3823         debugger hooks
3824
3825         * src/hc08/gen.c (genEndFunction, genhc08Code),
3826         * src/hc08/gen.h,
3827         * src/mcs51/gen.c (genEndFunction, gen51Code),
3828         * src/mcs51/gen.h,
3829         * src/ds390/gen.c (genEndFunction, gen390Code),
3830         * src/ds390/gen.h,
3831         * src/z80/gen.c (genEndFunction, genZ80Code),
3832         * src/z80/gen.h,
3833         * src/z80/z80.h,
3834         * src/pic/gen.c (genEndFunction, genpic14Code),
3835         * src/pic/gen.h,
3836         * src/pic16/gen.c (genEndFunction, genpic16Code),
3837         * src/pic16/gen.h,
3838         * src/avr/gen.c (genEndFunction, genAVRCode),
3839         * src/avr/gen.h,
3840         * src/xa51/gen.c (genEndFunction, genXA51Code),
3841         * src/xa51/gen.h,
3842         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
3843         specific code to cdbFile.c and out of the backend code generators
3844
3845         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
3846         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
3847         starting address is now 0
3848
3849         * as/hc08/asm.h,
3850         * as/hc08/m08pst.c,
3851         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
3852         assembler directive for DWARF support
3853         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
3854
3855         * src/src.dsp,
3856         * src/Makefile.in,
3857         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
3858
3859 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3860
3861         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
3862         and inappropriate peephole optimization in jump tables
3863
3864 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3865
3866         * as/hc08/m08pst.c,
3867         * src/SDCCglue.c: sdccopt works for the hc08 port now
3868
3869 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
3870
3871         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
3872
3873 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3874
3875         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
3876
3877 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3878
3879         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
3880         rules
3881         * src/SDCCmain.c,
3882         * src/SDCCglobl.h,
3883         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
3884         comments from the peephole optimizer replacement rules
3885         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
3886         symbols
3887         * src/SDCCcse.c (updateSpillLocation),
3888         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
3889         equivalents
3890         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
3891         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
3892         objects far pointers
3893
3894 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3895
3896         * src/SDCCsymt.h: a missing part of my last change
3897         * src/pic/ralloc.c (regTypeNum),
3898         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
3899
3900 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3901
3902         * src/SDCCicode.h,
3903         * src/SDCCicode.c (aggrToPtrDclType),
3904         * src/SDCCptropt.h,
3905         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
3906         ptrPseudoSymConvert),
3907         * src/pic/ralloc.c (regTypeNum),
3908         * src/pic16/ralloc.c (regTypeNum),
3909         * src/hc08/ralloc.c (regTypeNum),
3910         * src/ds390/ralloc.c (regTypeNum),
3911         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
3912         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
3913
3914 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3915
3916         * link/z80/lkmain.c (afile),
3917         * as/hc08/lkmain.c (afile),
3918         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
3919         prevent a pointer problem when a filename has no directory and
3920         no extension specified.
3921
3922 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3923
3924         * link/z80/lkmain.c (afile): allow periods in directory names
3925         * link/z80/lkmain.c (afile),
3926         * as/mcs51/lkmain.c (afile),
3927         * as/hc08/lkmain.c (afile): allow linker script file to have an
3928         extension other than ".lnk"
3929         * link/z80/lklex.c (getfid),
3930         * link/z80/lkmain.c (parse),
3931         * as/mcs51/lklex.c (getfid),
3932         * as/mcs51/lkmain.c (parse),
3933         * as/hc08/lklex.c (getfid),
3934         * as/hc08/lkmain.c (parse): Support comments in the linker script
3935         file on lines by themselves and after filenames
3936
3937 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3938
3939         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
3940
3941 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3942
3943         * src/z80/peeph-z80.def: removed some peephole rules that don't
3944         work with multibyte arithmetic (fixed bug #937126)
3945         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
3946         to registers and not global variables
3947         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
3948         geniCodePreInc, geniCodePostDec, geniCodePreDec,
3949         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
3950         checking for assignments not internally generated (fixed bug #931895)
3951         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
3952         structure member (fixed bug #930072)
3953
3954 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3955
3956         * src/SDCCmain.c (linkEdit),
3957         * src/hc08/main.c (_hc08_parseOptions),
3958         * as/hc08/Makefile.in,
3959         * as/hc08/aslink.h,
3960         * as/hc08/asm.h,
3961         * as/hc08/m08pst.c,
3962         * as/hc08/lkrloc.c (relr, rele),
3963         * as/hc08/lkarea.c (lnkarea)
3964         * as/hc08/lkmain.c (afile, parse),
3965         * as/hc08/lkelf.c: support for ELF output
3966         * as/hc08/lks19.c (s19),
3967         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
3968
3969 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3970
3971         * as/mcs51/lkihx.c: Fixed bug #899105.
3972
3973 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3974
3975         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
3976         .dsp files from Unix to DOS.
3977
3978 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3979
3980         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
3981         function pointers; we have been compliant for several months now.
3982         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
3983         change that was accidently commented out
3984         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
3985         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
3986         bug #922319
3987
3988 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3989
3990         * src/hc08/gen.c: output of all of the internal debugging information
3991         is now controlled by the D() macro; it is disabled by default
3992
3993 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3994
3995         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
3996         harder to keep the same registers during a CAST iCode
3997         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
3998         long via int can be done in a single cast, if the signedness is
3999         correct.
4000         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
4001         putchar() in tinibios.c in ds390's library
4002
4003 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
4004
4005         * src/SDCCast.c (decorateType): fixed bug #898889,
4006         cast result of a literal complement too
4007         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
4008         fixed check for bitfields
4009
4010 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
4011
4012         * src/SDCCicode.c (geniCodeLogic): made it static,
4013         (geniCodeLogicAndOr): added in order to fix bug #905492,
4014         (ast2iCode): fixed bug #905492
4015         * support/regression/tests/bug-905492.c: added
4016         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
4017         (processParms): fixed bug #927659: don't copy parms, this will clear
4018         decorated flag
4019         * support/regression/tests/bug-927659.c: added
4020
4021 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
4022
4023         * src/SDCCast.c (addCast): don't cast float to char
4024         * device/lib/libsdcc.lib: added _memmove
4025
4026 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
4027
4028         * device/lib/large/Makefile: fixed parallel execution by
4029         replacing `make` by `$(MAKE)`
4030
4031 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4032
4033         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
4034         offsets (fixes bug #923936)
4035
4036 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
4037
4038         * device/lib/small/Makefile: fixed parallel execution by
4039         replacing `make` by `$(MAKE)`
4040
4041 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4042
4043         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
4044
4045 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
4046
4047         * src/pic/gen.c (genCpl): multi-byte complements were not working.
4048         * src/regression/Makefile: Regression test was not running.
4049
4050 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4051
4052         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
4053         complement if possible
4054         * src/SDCCval.c (valComplement),
4055         * src/SDCCicode.c (operandOperation): fixed complement of literal
4056         * support/regression/tests/onebyte.c (testComplement): added
4057
4058 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
4059
4060         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
4061         return an optimized tree; actually replace actParm with the new tree
4062         * src/SDCCast.h: added some parantheses to remove side effects
4063         * support/regression/tests/bug-920866.c
4064
4065 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
4066         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
4067         Bit operands were not being handled properly in the pic14 port.
4068         (now src/regression/add.c passes again).
4069
4070 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4071
4072         * src/SDCC.y (labeled_statement): case and default no longer require
4073         a following statement (RFE #893037)
4074
4075 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4076
4077         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
4078         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
4079         disabled (fixes bug #916294)
4080         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
4081         "mov a,acc"; patch provided by Lenny Story
4082         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
4083
4084 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4085
4086         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
4087         functions
4088         * src/ds390/gen.c (genFunction, genEndFunction),
4089         * src/ds390/ralloc.c (ds390_assignRegisters),
4090         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
4091         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
4092         pushed if there are parameters passed on the stack. Also, a cleaner
4093         way to decide if r0/r1 should be pushed/popped. (Together they fix
4094         bug #918693)
4095
4096 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4097
4098         * doc/sdccman.lyx,
4099         * device/lib/mcs51/crtpagesfr.asm,
4100         * device/lib/mcs51/crtxinit.asm,
4101         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
4102         to avoid confusion with Si Lab's SFRPAGE register.
4103
4104 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4105
4106         * src/SDCCglue.c (emitMaps): allow public sfr variables
4107         * src/SDCCglue.c (initialComments): include compiler build date
4108         with compiler version and put the timestamp of the generated
4109         assembly file on a serperate line to be less confusing.
4110         * src/port.h: added genInitStartup hook
4111         * src/avr/main.c,
4112         * src/ds390/main.c,
4113         * src/hc08/main.c,
4114         * src/pic/main.c,
4115         * src/pic16/main.c,
4116         * src/xa51/main.c,
4117         * src/z80/main.c: genInitStartup initialize as NULL (default to
4118         historical behaviour)
4119         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
4120         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
4121         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
4122         library instead of hard coding it into the compiler.
4123         * support/regression/ports/mcs51-stack-auto/spec.mk,
4124         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
4125         * device/lib/mcs51/Makefile,
4126         * device/lib/small/Makefile,
4127         * device/lib/large/Makefile,
4128         * device/lib/mcs51/crtpagesfr.asm,
4129         * device/lib/mcs51/crtstart.asm,
4130         * device/lib/mcs51/crtxclear.asm,
4131         * device/lib/mcs51/crtxinit.asm,
4132         * device/lib/mcs51/crtclear.asm,
4133         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
4134         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
4135         and into user configurable files.
4136         * device/lib/clean.mk: clean mcs51 directory too
4137         * support/regression/tests/longlit.c: added static to T1 declaration
4138         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
4139         accesses in the initialization code
4140
4141 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4142
4143         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
4144         OSCTRIMVAL as noted in bug #916008
4145
4146 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4147
4148         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
4149         in loops with multiple exits (reported as incorrect registers
4150         used by Martin Helmling in Sdcc-user list)
4151
4152 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4153
4154         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
4155         made ds390 register extensions look less like error messages
4156
4157 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4158
4159         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
4160         reported by Adam Wozniak in Sdcc-user list
4161
4162 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
4163
4164         * src/SDCCast.c (decorateType): fixed with bug and promotion in
4165         arithmetic optimizations, added debug output
4166
4167 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
4168
4169         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
4170         * sdcc.spec: updated and split sdcc into 3 rpms
4171         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
4172         needed for literals of LEFT_OP and '+'
4173         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
4174         introduced RESULT_TYPE_NOPROM
4175         (geniCodeMultiply): fixed logic for decision if mul is optimized to
4176         left shift
4177         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
4178         limited promotion to int only for '*'
4179         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
4180
4181 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
4182
4183         * src/pic16/gen.c (genSkip),
4184         (genc16bit2lit), (gencjneshort): commented out
4185         (is_LitOp): new helper function, checks operand type
4186         (genCmpEq): rewritten
4187
4188 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
4189
4190         * support/regression/tests/bug-908454.c: added
4191
4192 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
4193
4194         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
4195         * src/SDCCicode.c (usualBinaryConversions): op needs int type
4196         (geniCodeCast): cosmetic, don't preserve bit storage class
4197         (geniCodeLeftShift): added promotion
4198         (geniCodeLogic): fixed regression
4199         * src/SDCCsymt.c (computeTypeOr): accept bits too
4200         (compareType): 2nd part of fix for bug #908454, needed for bitfields
4201
4202 2004-03-07  Borut Razem <borut.razem AT siol.net>
4203
4204         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
4205
4206 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
4207
4208         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
4209         version of pic16_genPackRegisters which does not check if ic is a
4210         CAST operator,
4211         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
4212         function cause string1.c regression test fails
4213
4214 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
4215
4216         * sim/ucsim/configure.in,
4217         * sim/ucsim/configure,
4218         * sim/ucsim/doc/Makefile.in: use docdir
4219         * src/SDCC.y: fixed sbit atrributes
4220         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
4221         * src/SDCCast.c (decorateType): |^& need special promotion handling
4222         * src/SDCCast.h,
4223         * src/SDCCsymt.h: moved definition of RESULT_TYPE
4224         * src/SDCCsymt.h (computeType),
4225         * src/SDCCicode.c: computeType() needs op
4226         * src/SDCCsymt.c (checkTypeSanity),
4227         * doc/sddman.lyx: "plain" bitfields are unsigned
4228         * src/SDCCsymt.c (computeTypeOr): added
4229         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
4230         |^& ops
4231         * src/SDCCval.c (val*): computeType() needs op
4232         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
4233         * support/regression/tests/onebyte.c: added tests for |^&
4234
4235 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
4236
4237         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
4238         for writing icode into asm output.
4239
4240 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
4241
4242         * src/pic16/device.c: added some debug lines enabled
4243         with macro DEBUG_CHECK,
4244         * src/pic16/genarith.c: more debug in genPlus,
4245         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
4246         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
4247         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
4248         * (aopForSym): onStack symbols are re-placed in data memspace,
4249         and onStack flag is cleared,
4250         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
4251         copy temporary pcodeop,
4252         * (genPcall): added warning for not updating PCLATU,
4253         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
4254         always true for pic16 port,
4255         * (genMultOneWord): NEW, supports integer multiplication,
4256         * (genMult): modified to call genMultOneWord,
4257         * (ifxForOp): added warning when return NULL,
4258         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
4259         flag is set before call to operandFromSymbol for implicit
4260         added structures,
4261         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
4262         options.intlong_rent are set by default,
4263         * (_hasNativeMulFor): modified to allow port generation of integer
4264         multiplication,
4265         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
4266         set regtype to REG_SFR for all registers, restricting seting the
4267         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
4268
4269 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4270
4271         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
4272         more than 500 times in the regression tests
4273
4274 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4275
4276         * support/Util/SDCCerr.h,
4277         * support/Util/SDCCerr.c,
4278         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4279         enumerator_list),
4280         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
4281         for symbol conflicts.
4282         * support/valdiags/tests/enum.c,
4283         * support/valdiags/tests/tentdecl.c,
4284         * support/valdiags/tests/struct.c: expect possible error messages
4285         referring to original symbol definitions.
4286         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
4287         * src/SDCCsymt.h,
4288         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
4289
4290 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
4291
4292         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
4293
4294 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
4295
4296         * src/pic16/ralloc.c (newReg): fixed bug #908929
4297
4298 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4299
4300         * src/ds390/gen.c: added missing #include "main.h"
4301
4302 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
4303
4304         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
4305         checking if symbol is already in set,
4306         * src/pic16/device.h: prototype for checkAddSym,
4307         * src/pic16/gen.c: (_G): added entry interruptvector,
4308         * (assignResultValue): removed some commented out lines,
4309         * (genFunction): check for ISR via sym->type, absolute section for
4310         interrupt code is created via a new pBlock, the goto instruction is
4311         placed now correctly at the interrupt vector position, changed all
4312         references from ivec to _G.interruptvector,
4313         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
4314         is the interrupt is a high priority one, same for return from ISR,
4315         * src/pic16/glue.c: changed all calls of addSetHead for publics and
4316         externs to calls of checkAddSym,
4317         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
4318         pic16_pcode_verbose flag is set,
4319         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
4320         * src/pic16/pcoderegs.c: message about how many registers are saved
4321         will only be emitted if pic16_pcode_verbose flag is set,
4322
4323 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4324
4325         * src/ds390/ralloc.h,
4326         * src/ds390/ralloc.c (ds390_regWithIdx),
4327         * src/ds390/gen.c (emitcode),
4328         * src/ds390/main.h,
4329         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
4330         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4331         ds390operandCompare, getRegsRead, getRegsWritten,
4332         initializeAsmLineNode): customized instruction size calculation for
4333         ds390, started basis for some register optimizations
4334         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
4335         corresponding assembly output
4336         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
4337         missing push/pop of r0/r1. Optimized push/pops
4338
4339 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4340
4341         * src/mcs51/main.c (instructionSize): fixed ACALL size
4342         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
4343
4344 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
4345
4346         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
4347         the sorting of rlist with NULL elements
4348         * (print_idataType, print_idata): NEW to create idata sections
4349         * src/pic16/device.h: idataSymSet new variable
4350         * src/pic16/gen.c (genFunction): fixed some bugs in string
4351         comparing, improved the absolute section creation for ISRs,
4352         added FSR0L/FSR0H in registers that are saved in an ISR,
4353         * (genInline): fixed the processing of inline snippets,
4354         now they undergo no process by the peephole optimizer
4355         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
4356         are placed in idataSymSet,
4357         * (pic16emitStaticSeg): extern symbols are added in externs,
4358         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
4359         switching when aboslute variables are placed in access bank memory
4360         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
4361         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
4362         commented out with #if,
4363         * (pic16_packRegisters): reintroduce the check for CAST because some
4364         symbols are not correctly handled,
4365         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
4366         pCodeInstruction instead of pCode,
4367         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
4368         pCodeAsmDir definition,
4369         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
4370         directive, then the argument directive is emitted without the leading
4371         tab, hack for inline labels which must be in the first column,
4372         * (compareLabel,pic16_findNextInstruction),
4373         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
4374         * (insertBankSwitch): modified for the new pCodeAsmDir,
4375
4376 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4377         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
4378
4379         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
4380         instance,
4381         * (pushSide): commented out with #if,
4382         * (assignResultValue): fixed some typos in saving
4383         registers,
4384         * (genPcall): FIXED and sync'ed with genCall,
4385         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
4386         * (genNearPointerGet): fixed to handle some more cases,
4387         implementation scheme via table reads,
4388         * (genConstPointerGet): modified to access code memory correct,
4389         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
4390         and improved to handle some cases
4391         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
4392         instead of "RETLW" for init data
4393         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
4394         not IN_DIRSPACE, work around to reduce bank switching when aboslute
4395         variables are placed in access bank memory (<0x80 and >=0xf80),
4396         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
4397         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
4398         TBLWT_POSTDEC,TBLWT_PREINC
4399         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
4400         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
4401         directives
4402         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
4403         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
4404         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
4405         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
4406
4407 2004-02-29  Borut Razem <borut.razem AT siol.net>
4408
4409         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
4410         support/Util/findme.h, support/Util/system.h: enhance binary relative
4411         search for lib and include by using findProgramPath()
4412
4413 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4414
4415         * src/SDCCpeeph.h,
4416         * src/SDCCpeeph.c (pcDistance),
4417         * src/port.h,
4418         * src/mcs51/ralloc.h,
4419         * src/mcs51/ralloc.c (mcs51_regWithIdx),
4420         * src/mcs51/main.h,
4421         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
4422         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4423         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
4424         size calculation port specific, started basis for some register
4425         optimizations
4426         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
4427         missing push/pop of r0/r1. Optimized push/pops
4428         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
4429         * device/lib/_modsint.c (_modsint),
4430         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
4431         and stack version so regression tests pass
4432
4433 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
4434
4435         * src/Makefile.in (dep): include SLIBOBJS in dependency check
4436         * src/SDCCast.c (decorateType): catch another small optimization
4437         with '?' operator
4438         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
4439         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
4440         modified to finally use computeType() all over SDCC,
4441         see Feature Request #877103
4442         * src/SDCCval.h: cosmetic
4443         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
4444         valCompare(); regression tested in muldiv.c
4445         * support/regression/tests/muldiv.c (testMod): mod sign follows
4446         dividend only
4447
4448 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
4449
4450         * src/SDCCast.c (decorateType): fixed bug #902362
4451         * doc/INSTALL.txt: fixed install instructions for win32
4452
4453 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
4454
4455         * device/include/Makefile.in (install): fixed by replacing spaces
4456         by tabs
4457         * doc/README.txt,
4458         * doc/INSTALL.txt: updated for release
4459         * doc/sdccman.lyx: added warning for --xstack being buggy
4460
4461 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
4462
4463         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
4464         to eliminate build warnings.
4465         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
4466
4467 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
4468            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4469
4470         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
4471         removed -penable-stack, added comment for stack pragma, added
4472         warning for not initializing the stack/frame registers, removed
4473         comment at interrupts section
4474
4475         Stack is made permanent, there is no ability to disable stack usage.
4476         * src/pic16/device.h,
4477         * src/pic16/device.c: removed all references to USE_STACK macro,
4478         * src/pic16/device.c (pic16_dump_section): when no elements in
4479         rlist, free rlist before return,
4480         * (pic16_dump_int_registers): NEW, internal registers are a new set
4481         of general purpose registers reused by each function,
4482         * (checkAddReg): returns 1 if registers is added to set,
4483         * (pic16_groupRegistersInSection): when a registers is of type
4484         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
4485         * src/pic16/device.h: memRange and Assigned Memory are deleted,
4486         SRCASECMP macro is moved here from device.c
4487         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
4488         PO_PCLATU, PO_PRODL, PO_PRODH,
4489         * (pic16_pCodeOpType, genMinus,
4490         changed compares to "a" register, with AOP_ACC,
4491         * (pic16_genPlus): fixed some bugs and indented properly,
4492         * (pic16_addSign): changed size to size+offset in the MOVWF
4493         instruction,
4494         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
4495         multiply 8-bit operand by literal, result is 8-bit,
4496         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
4497         multiply 2 8-bit operand, result is 8-bit,
4498         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
4499         genUMult8X*_16,
4500         * src/pic16/gen.c: changed accUse to contain WREG only,
4501         * (pic16_emitcomment): renamed to pic16_emitpcomment,
4502         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
4503         true, do not use immediate addressing any more unless sym is a
4504         pointer in codespace,
4505         * (aopForRemat): do not use immediate addressing when symbol not in
4506         codespace and when symbol's address is requested,
4507         * (aopOp): for-loop in if(sym->accUse) is modified for the new
4508         accUse size (= 1),
4509         * (aopGet): added case for AOP_ACC and don't return "accumulator
4510         bug" but WREG instead,
4511         * (popGetTempReg): pushes contents of temporary register in stack,
4512         * (popReleaseTempReg): pops contents of temporary register from
4513         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
4514         * (pic16_popGet): separated case AOP_ACC to return register WREG
4515         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
4516         or PO_IMMEDIATE and initializes their instance/offset appropriately,
4517         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
4518         the use of immediate pointers to certain cases only.
4519
4520         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
4521         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
4522         * (assignResultValue, genCall, genRet): modified to use the new
4523         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
4524         genPcall is still broken,
4525         * (genFunction): added code to create 'A' type pBlocks when
4526         interrupt functions are generated, code not extensively tested yet,
4527         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
4528         * (genEndFunction): modified so ISRs pop stored registers from stack,
4529         * (genMultOneByte): cleanup,
4530         * (AccRsh): added flag andmask, to and result with appropriate mask,
4531         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
4532         * (genDataPointerGet): fixed and reenabled its use,
4533         * (genNearDataPointerGet): bugs fixed,
4534         * (genDataPointerSet): bugs fixed,
4535         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
4536         pic16_DumpSymbol, pic16_DumpOp,
4537         * src/pic16/genutils.h: function prototypes for the above functions,
4538         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
4539         pointers,
4540         * (pic16emitRegularMap): many many many improvements, but needs a
4541         major cleanup,
4542         * src/pic16/main.c: enable_stack in pic16_options is removed,
4543         * (_pic16_parseOptions): removed command line options -penable-stack,
4544         * (_process_pragma): emit stack symbol only when stack pragma is
4545         processed,
4546         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
4547         redirected to FSR0L/FSR0H pair,
4548         * (pic16_get_op, pic16_get_op2): modifications and improvements,
4549         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4550         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
4551         for immediates,
4552         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
4553         * (dumpPicOptype): NEW,
4554         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
4555         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
4556         with movff instruction,
4557         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
4558         added pic16_int_regs, some packRegsFor* functions are commented out,
4559         because produce errors,
4560         * src/pic16/NOTES: minor modifications
4561
4562 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4563
4564         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
4565         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
4566         --pack-iram.
4567         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
4568         * as/mcs51/lkaomf51.c: fixed bug #895763
4569
4570 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
4571
4572         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
4573
4574 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4575
4576         * doc/sdccman.lyx: added details about the HC08 storage classes and
4577         interrupts, fixed the register usage info for z80 & gbz80
4578
4579 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
4580
4581         * doc/sdccman.lyx: added more pic16 port documentation
4582         * device/include/pic16/: added header pic18fregs.h
4583
4584 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
4585
4586         * doc/sdccman.lyx: added Vangelis' contribution
4587
4588 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4589
4590         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
4591         extend to the next CALL or PCALL, not just to the next CALL.
4592
4593 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
4594
4595         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
4596
4597 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4598
4599         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
4600         bug #895752 and a better fix for bug #716790
4601
4602 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4603
4604         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
4605
4606 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4607
4608         * doc/sdccman.lyx: minor changes, minor changed
4609
4610 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
4611
4612         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
4613         which can't handle SDCC_NEWONEBYTEOPS,
4614         (geniCodeMultiply): removed conversion from mult to shift for pic14
4615         and pic16
4616
4617 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4618
4619         * src/hc08/gen.h,
4620         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
4621         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
4622         thus fixing bug #895406
4623
4624 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
4625
4626         * device/lib/_modsint.c,
4627         * device/lib/_modslong.c: sign follows divisor only
4628         * src/hc08/gen.c (genMultOneByte): if result size is 1,
4629         signs or signedness can be ignored
4630         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
4631         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
4632         added optimization for IFX,
4633         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
4634         arguments;
4635         reenabled optimization for IFX, which was removed on 2004-01-11
4636         * src/SDCCast.h: added return type IFX
4637         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
4638         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
4639         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
4640         SDCC_OLDONEBYTEOPS selects the old behaviour
4641         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
4642         changed again and commented promotion rule
4643         * src/SDCCval.c (valDiv): promotion no longer necessary
4644         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
4645         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
4646         rewritten
4647         * support/regression/tests/onebyte.c: added
4648
4649 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
4650
4651         * gen.c (genInline): reverted to old code for assemnling inline
4652         code because of bug reported James Chadd
4653
4654 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
4655
4656         * ralloc.h: missing declarations from previous patch,
4657         seems that patch for ralloc.h was never applied, fixed
4658
4659 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4660            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
4661
4662         * pcode.c,
4663         * pcode.h,
4664         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
4665         indirect addressing. Marked FSR0 as deprecated
4666         * gen.c (pointerCode): commented out, not needed now
4667         (pic16_popGet2p): new MOVFF helper function
4668         (genGenPointerGet),
4669         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
4670         (shiftRLong): removed duplicate debugging info
4671
4672 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4673
4674         * src/ds390/gen.c (genNearPointerGet),
4675         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
4676         optimization with bits, but not bitfields.
4677         * src/ds390/ralloc.c (packRegisters),
4678         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
4679
4680 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
4681
4682         * src/SDCCcse.c (algebraicOpts): copy operands before modification
4683
4684 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4685
4686         * src/SDCCsymt.h,
4687         * src/SDCCicode.c (operandFromSymbol),
4688         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
4689         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
4690         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
4691         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
4692         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
4693         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
4694         bug #892038
4695         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
4696         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
4697         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
4698         * src/SDCCsymt.c (newSymbol),
4699         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4700         enumerator_list),
4701         * src/SDCCval.h,
4702         * src/SDCCval.c (newiList): fixed bug #885705
4703
4704 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4705
4706         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
4707         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
4708
4709 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4710
4711         * device/include/c8051f120.h,
4712         * device/include/c8051f300.h,
4713         * device/include/c8051f310.h: added/updated header files for Silicon
4714         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
4715         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
4716         in new section Submitting patches
4717
4718 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4719
4720         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
4721         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4722         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4723         genGenPointerSet),
4724         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
4725         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4726         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4727         genGenPointerSet),
4728         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
4729         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4730         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4731         genGenPointerSet),
4732         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
4733         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4734         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4735         genGenPointerSet): fixed bug #892400
4736         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
4737         to eliminate build warnings.
4738         * src/SDCCast.c (processParms),
4739         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
4740         fixed bug 751859
4741         * support/valdiag/valdiag.py: added GCC to the list of defines active
4742         when compiling with gcc
4743
4744 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4745
4746         * support/Util/SDCCerr.h,
4747         * support/Util/SDCCerr.c,
4748         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
4749         with an incomplete type (fixed bug #883734)
4750         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
4751
4752 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4753
4754         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
4755
4756 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4757
4758         * src/SDCCast.c (decorateType),
4759         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
4760         function pointer implementation
4761         * support/regression/tests/funptrs.c: added tests to verify both forms
4762         of function pointers work correctly. Added tests to verify parameters
4763         are passed in the correct order.
4764
4765 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
4766
4767         * device.c (regCompare): registers are sorted by ascending
4768         address and increasing size,
4769         * main.c (_pic16_finaliseOptions): removed the declaration
4770         of compiler macro MCU. Now a macro of the format pic18fxxxx
4771         will be defined from the command line
4772
4773 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4774             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
4775
4776         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
4777         PCOP_RLCF was overwritten!
4778         * gen.c (genSkip): commented out calls to pic16_emitcode,
4779         * (genCmpEQ): fixed "long" compares, only high word did get compared,
4780         * (genlshTwo),
4781         * (genRRC): added debugging info,
4782         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
4783         overwritten while shifting,
4784         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
4785         overwritten while shifting,
4786         * (AccLsh),
4787         * (AccRsh),
4788         * (shiftLLeftOrResult),
4789         * (shiftRLeftOrResult),
4790         * (shiftRLong),
4791         * (shiftLLong): Implemented with pic16_emitpcode
4792         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
4793         * (genLeftShift): Fixed bug, operand for shift by variable always
4794         was "and"ed with 0x0f,
4795         * (genLeftShiftLiteral),
4796         * (genrshTwo),
4797         * (genRightShiftLiteral): added debugging info,
4798         * (genrshFour): added comment,
4799         * (genRightShift): determined signedness from operand "left"
4800         instead of "result"
4801
4802 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4803
4804         * src/SDCCicode.c (geniCodeParms),
4805         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
4806         function pointers, fixed function pointer bugs #861242 and #861896
4807
4808 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4809
4810         * device/include/c8051f000.h,
4811         * device/include/c8051f120.h,
4812         * device/include/c8051f300.h: added header files for Silicon
4813         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
4814
4815 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
4816
4817         * src/SDCCast.c (processParams): added new type flow and restructured
4818         (gatherAutoInit): added new type flow
4819         (addCast): cosmetic changes
4820         (getLeftResultType): added new type flow for array indices, patch
4821         provided by Stas, see FR #877103
4822         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
4823         array index patch by Stas
4824         * src/SDCCast.h: added prototype getResultTypeFromType()
4825         * src/SDCCval.h,
4826         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
4827         * src/pic/glue.c (pic14emitStaticSeg),
4828         * src/pic16/glue.c (pic16emitStaticSeg),
4829         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
4830         for initialization of symbols
4831         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
4832         * support/Util/SDCCerr.h:
4833         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
4834         * .version: bumped version number to 2.3.8
4835         * device/include/Makefile.in (install),
4836         * doc/Makefile (install): changed to 'rm `find ...`' construct to
4837         avoid warnings
4838
4839 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
4840
4841         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
4842         Slade Rich fixed an optimization bug
4843         * src/pic/pcodepeep.c,
4844         * src/pic/pcoderegs.c
4845         * doc/Makefile (install): added test for directory
4846
4847 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4848
4849         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
4850         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
4851         * src/pic/ralloc.c (getRegPtr, getRegGpr),
4852         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
4853         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
4854         * as/mcs51/asexpr.c (term),
4855         * as/hc08/asexpr.c (term): fixed bug #887146
4856
4857 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4858
4859         * src/z80/gen.c (genMult): handle single byte result product
4860         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
4861         DUMMY_READ_VOLATILE (fixed bug #886367)
4862
4863 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
4864
4865         * support/regression/tests/libmullong.c: fixed logic, on little endian
4866         hosts we ended without a mullong_wrapper()
4867
4868 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4869
4870         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
4871         virus/worm forged address usage.
4872
4873 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
4874
4875         Fixed promotion, it should be done on AST level:
4876         * src/SDCCast.c (addCast): added promotion to int
4877         (decorateType): updated call to upCast()
4878         * src/SDCCicode.c (geniCodeLeftShift): removed call to
4879         usualUnaryConversions()
4880
4881 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
4882
4883         * support/regression/tests/literalop.c (mulWrapper): Added a
4884         wrapper to remove integer overflow warnings.
4885
4886         * support/regression/tests/float_trans.c: Made work on host.
4887
4888         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
4889         location of sz80.
4890
4891         * support/regression/generate-cases.py (main): Changed from inline
4892         to a main method.
4893
4894         * doc/Makefile (install): Changed to depth first to get rid of
4895         missing directory install warning.
4896
4897         * as/Makefile (install-doc): Made work on Mac.
4898
4899 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
4900
4901         * src/SDCCast.c: added an additional type flow in decorateType() of
4902         opposite direction, see feature request #860006; it's enabled at runtime
4903         by setting the environment variable SDCC_NEWTYPEFLOW
4904         * src/SDCCast.h: changed prototype of decorateType()
4905         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
4906         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
4907         'char' to 'int' can be omitted, if both operands are 'unsigned char';
4908         see feature request #877103
4909         * src/SDCCval.c: updated call of decorateType()
4910         (valBitwise): fixed bug #882876
4911         (valMinus): added promotion
4912         (valLogicAndOr): result is unsigned
4913         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
4914         * src/SDCCsymt.c (computeType),
4915         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
4916         must not cause an unsigned operation
4917         * src/pic/glue (pic14emitRegularMap),
4918         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
4919
4920 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
4921
4922         * src/pic/pcode.c (PCodeID): commented out left over debug code
4923
4924 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
4925
4926         * support/valdiag/tests/overflow.c: added shift tests
4927         * src/pic/device.c,
4928         * src/pic/gen.c,
4929         * src/pic/gen.h,
4930         * src/pic/glue.c,
4931         * src/pic/main.c,
4932         * src/pic/pcode.c,
4933         * src/pic/pcode.h,
4934         * src/pic/pcodepeep.c,
4935         * src/pic/pcoderegs.c,
4936         * src/pic/ralloc.c,
4937         * src/pic/ralloc.h: applied patch from Slade Rich;
4938         added support for multiple code pages and multiple RAM banks on the
4939         PIC 14 port. The ASM files now no longer simply assume all the
4940         code / RAM are in the same page / bank. This means the linker can
4941         safely allocate code/RAM of separate ASM files to different pages/banks.
4942         * doc/sdccman.lyx: added Slade's tips
4943         * src/mcs51/peeph.def: fixed bug #880768
4944
4945 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4946
4947         * src/hc08/ralloc.c (rematStr): fixed bug #879282
4948         * src/SDCCast.c (decorateType): fixed bug #880197
4949
4950 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
4951
4952         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
4953         getopt.h.
4954
4955         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
4956         strtof is not part of C89 and isn't included with Mac OS X.
4957
4958 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4959
4960         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
4961         shiftL2Left2Result): fixed bug #879326
4962         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
4963         (genMultOneByte): fixed bug in signed vs unsigned multiplication
4964         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
4965         address fetch for clr instruction
4966         * device/lib/hc08/_mulint.c: created optimized assembly version
4967         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
4968
4969 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
4970
4971         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
4972         proposed in FR #877103
4973
4974 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
4975
4976         * src/SDCCval.c (cheapestVal): added missing checks
4977         * src/SDCCicode.c (usualBinaryConversions): fixed condition
4978         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
4979
4980 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
4981
4982         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
4983         equal operands
4984
4985 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
4986
4987         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
4988         loaded with the linker search paths (-L arguments) and the libraries
4989         to be linked with the current source (-l arguments). Changes
4990         currently will affect only the pic16 port.
4991         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
4992         include path the port specific paths and port specific libraries,
4993         * gplink command now contains the $3 argument,
4994         * src/pic16/device.h,
4995         * src/pic16/device.c,: structure PIC_device is made public and
4996         renamed to PIC16_device, the same for variable Pics which is renamed
4997         to Pics16. Updated all references to them.
4998         * src/pic16/glue.c (pic16glue): corrected bug with code
4999         initialization which bypassed the variable initializations block.
5000
5001         * device/lib/pic16/Makefile.rules: removed --penable-stack from
5002         COMPILE_FLAGS and added the --nostdinc option
5003
5004 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5005
5006         * device/include/mc68hc908jb8.h: Register defs for another member
5007         of the hc08 family. Contributed by Bjorn Bringert - thanks!
5008
5009 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
5010
5011         Documenting changes from previous commits.
5012         * configure.in (version 1.56),
5013         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
5014         when generating output files to configure the pic16 library,
5015         but now I've commented it out, since gputils aren't installed in the
5016         SF compile farm, so library won't compile
5017
5018         * device/lib/Makefile.in (version 1.56): initially I've added in
5019         target 'all' the prerequestive 'model-pic16' so it compiled the
5020         pic16 library, but now I've commented it out for the same reasons
5021         above,
5022         * added targets 'model-pic16' and 'objects-pic16' to compile the
5023         library
5024         * added target 'port-specific-objects-pic16' to handle the
5025         generated libraries and copy them into the build/ directory
5026         * added target 'clean-intermediate-pic16' to clean intermediate
5027         files into pic16 directory
5028         * in target 'installdirs' added line to create directory pic16 in
5029         the installation path
5030
5031         * device/include/Makefile.in (version 1.11): in target 'install'
5032         added lines to copy all header files to installation path,
5033         * in target 'installdirs' added line create directory for pic16
5034         headers in the installation path
5035
5036 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
5037
5038         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
5039          a function call
5040
5041 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
5042
5043         * configure,
5044         * device/lib/configure.in,
5045         * device/lib/configure: fixed for autoconf 2.57
5046
5047 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5048
5049         * src/z80/main.c (_parseOptions): fixed the portmode= command line
5050         option so that it actually works. Made it specific to the z80, since
5051         the gbz80 doesn't have these kinds of I/O ports.
5052
5053 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5054
5055         * device/include/z180.h,
5056         * device/lib/_memcpy.c,
5057         * device/lib/_memmove.c,
5058         * device/lib/_mulint.c,
5059         * device/lib/ser_ir.c,
5060         * device/lib/ser_ir_cts_rts.c,
5061         * device/lib/_strcmp.c,
5062         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
5063         * src/z80/main.c (_process_pragma): add support for pragmas bank and
5064         portmode; added deprecation warning for bank= and protmode= forms.
5065         Also, guard against buffer overflow.
5066         * src/z80/gen.c (aopGet): generate better code for sfr banked read
5067
5068 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5069
5070         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
5071         changed interrupt vector table generation to only emit declared vectors.
5072         * device/include/Makefile.in: added missing backslash
5073         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
5074
5075 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5076
5077         Mainly changes to support compilation of the device libraries
5078         * src/pic16/device.c: stack is allocated via symbol and not
5079         via literal number. The symbol is placed in the corresponding
5080         position of the data ram
5081         * (pic16_dump_section): relocatable and absolute uninitialized
5082         data are now emitted in sorted order to reduce section naming,
5083         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
5084         weren't marked as being in the access bank,
5085
5086 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5087
5088         Added portion of GNU PIC Library under the directory
5089         device/include/pic16 and device/lib/pic16. These files
5090         contain the declarations of SFRs for the PIC18Fxx2 devices.
5091         The directory is initialized via configure from toplevel.
5092
5093 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
5094
5095         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
5096         the spilllocations to be compared correctly
5097
5098 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5099
5100         * src/SDCCast.c (decorateType): fixed bug introduced today
5101
5102 2004-01-12  Borut Razem <borut.razem AT siol.net>
5103
5104         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
5105         doc/sdccman.lyx: upper case pragmas are deprecated
5106
5107 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5108
5109         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
5110         in simpler and even better code
5111
5112 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
5113
5114         * src/SDCCicode.c (operandOperation): fixed bug #874819
5115         * src/SDCCast.c (decorateType): fixed
5116         char foo (unsigned long ul) { return ul > 0; }
5117
5118 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5119
5120         * doc/sdccman.lyx: Moved and added some sections, small changes
5121         all over. Telling LaTeX to be less strict with word spacing
5122         to better keep the right margin. Changed some notes about
5123         maintainance of the ports in section 3.2.1 - is it OK like this?
5124
5125 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
5126
5127         SDCC source changes:
5128         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
5129         convilong): modified to inform the pic16 port that builtin functions
5130         are external
5131
5132         PIC16 PORT specific changes:
5133         * src/pic16/device.c pic16_dump_equates() added,
5134         processor registers declared internally by the port are emitted in
5135         the translation as equates,
5136         * src/pic16/gen.c: inline code is passed unprocessed to the
5137         translation,
5138         * (pic16_popGetLit2): fnuction modified to take second operand as
5139         pCodeOp pointer and not as literal,
5140         * (popRegFromIdx): prefixed with pic16_,
5141         * (pic16_popCombine2): modified to receive already allocated pCode
5142         operands,
5143         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
5144         * (genFunction): initializes local stack frame and pushes on stack
5145         all the registers used by this function,
5146         * (genEndFunction): restores all registers from stack and restores
5147         stack frame,
5148         * src/pic16/glue.c (pic16emitRegularMap): various changes and
5149         improvements,
5150         * (pic16glue): changed the program startup sequence,
5151         * added new dbName code 'A' for functions placed in absolute section
5152         * src/pic16/main.c: added function attribute _naked,
5153         * added pragma 'code' to place a fnuction at an absolute address,
5154         * added command line arguments --debug-ralloc and --pcode-verbose,
5155         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
5156         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
5157         * (pic16_newpCodeOpLit2): modified to take the second operand as
5158         pCodeOp pointer,
5159         * (pic16_printpBlock): modified to emit each function in a separate
5160         section,
5161         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
5162         UPPER for immediate operands,
5163         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
5164         instruction,
5165         * src/pic16/peeph.def: all peepholes with movff are commented out,
5166         because there is a problem in the pcode peep optimizer,
5167         * src/pic16/ralloc.c: the register allocator can now reuse local
5168         function symbols for another function. This saves register usage.
5169         * src/pic16/ralloc.h: added flag isLocal in structure regs,
5170
5171         Added file src/pic16/NOTES with information about program writing on
5172         the current port version.
5173
5174 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5175
5176         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
5177         and peephole 252 (array access)
5178
5179 2004-01-09  Borut Razem <borut.razem AT siol.net>
5180
5181         * src/SDCCmain.c : fixed #872250: -l command line defined library
5182           files are scanned before standard library files
5183
5184 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5185
5186         * src/SDCCast.c (decorateType): fixed bug #874046
5187
5188 2004-01-09  Borut Razem <borut.razem AT siol.net>
5189
5190         * support/scripts/sdcc.nsi: remove previous installation
5191
5192 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5193
5194         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
5195         bytes for last interrupt vector (mcs51)
5196         * sdcc.spec: fixed typo
5197
5198 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5199
5200         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
5201         gen51Code): more efficient parameter receive for --model-large
5202         ("bug" #845294)
5203
5204 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5205
5206         * src/ds390/main.c,
5207         * src/z80/main.c: added missed needLinkerScript flags (more than
5208         one port structure defined in these file)
5209         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
5210         bug #795325
5211
5212 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
5213
5214         * src/SDCCmain.c: removed various references to DEFAULT_PORT
5215         * src/port.h: added flag needLinkerScript in port->linker
5216         structure to inform whether to create a .lnk file or not,
5217         * src/avr/main.c,
5218         * src/ds390/main.c,
5219         * src/hc08/main.c,
5220         * src/mcs51/main.c,
5221         * src/pic/main.c,
5222         * src/pic16/main.c,
5223         * src/xa51/main.c,
5224         * src/z80/main.c: changed appropriately to configure
5225         needLinkerScript flag
5226         * src/pic/gen.c,
5227         * src/pic16/gen.c (genAddrOf): fixed bug #863624
5228         * src/pic/glue.c: added variable udata_section_name to
5229         override default uninitialized data segment definition for
5230         devices only with SHAREBANK memory (reported from Erik Epetrich)
5231         * (pic14emitOverlay): modified to emit a commented overlay segment
5232         directive when no overlay data exist
5233         * (picglue): modified to emit uninitialized data segment
5234         according to udata_section_name
5235         * src/pic/main.c (_pic14_parseOptions): added command line
5236         options --udata-section-name=[name] to override default
5237         udata definition name
5238         * modified _linkCmd and _asmCmd to include compiler passed
5239         arguments via -W option
5240         * src/pic16/main.c: added $l in _asmCmd, changed extension for
5241         object file from '.rel' to '.o' in port->linker structure,
5242         changed size of fptr from 2 to 3 in port structure
5243
5244 2004-01-07  Borut Razem <borut.razem AT siol.net>
5245
5246         * support/scripts/sdcc.nsi: update PATH
5247         * support/scripts/sdcc.ico: craeted
5248
5249 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
5250
5251         * device/include/Makefile.in: fix install
5252         * doc/Makefile: fix install
5253
5254 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5255
5256         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
5257         in bug #860505
5258         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
5259         how the function variable allocation summary is displayed; also
5260         include information about variables allocated to the overlay
5261         segment
5262
5263 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5264
5265         * as/mcs51/lkmain.c: Help about -Y option
5266         * as/mcs51/lkarea.c: Fixed gcc warnings
5267
5268 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5269
5270         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
5271         fixed warning
5272         * support/valdiag/tests/overflow.c: added
5273         * src/SDCCast.c (decorateType),
5274         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
5275         LEFT_OP (left shift)
5276
5277 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5278
5279         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
5280         (default behaviour).
5281
5282 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5283
5284         A python script to validate compiler diagnostic messages. It can be
5285         used to verify that sdcc complains about bad c source code and
5286         gives a good location of the error.
5287         * support/valdiag/Makefile,
5288         * support/valdiag/valdiag.py,
5289         * support/valdiag/tests/*
5290
5291 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5292
5293         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
5294         * src/SDCCsymt.c (newEnumType),
5295         * src/SDCCsymt.h
5296         * support/Util/SDCCerr.c,
5297         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
5298         enum related bugs.
5299         * support/regression/tests/enum.c: added test for enum values that
5300         require at least 2 bytes of storage.
5301
5302 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5303
5304         * src/common.h: added ifndef/define/endif macros
5305         around the header file.
5306         Bug reported from Jesus Calvino-Fraga
5307
5308 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5309
5310         * sdcc.spec: updated
5311         * device/include/Makefile.in: don't install CVS directories
5312         * device/lib/Makefile.in: added removal of CVS directories after install
5313         * doc/Makefile: fixed install, added local_icons
5314         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
5315         * src/mcs51/gen.c (genRightShift): fixed bug #870788
5316         * src/ds390/gen.c (genRightShift): fixed bug #870788
5317         * src/SDCCast.c (decorateType): fixed bug #870781
5318
5319 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5320
5321         PIC16 port related changes:
5322         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
5323         added variable stackPos,
5324
5325         * gen.c: genCall, assignResultValue: added support for
5326         pushing/retrieving function parameters to/from stack,
5327         genFunction,genEndFunction: setup stack frame for the
5328         generated function,
5329         genAddrOf: will be changed according to bug 863624
5330
5331         * added files genutils.c and genutils.h which contain gen*
5332         debugged and optimised functions extracted from gen.c
5333
5334         * glue.c: added variable 'externs' which holds extern symbols,
5335         pic16emitRegularMap: is modified to properly handle relocatable
5336          symbols under the new scheme,
5337         pic16createInterruptVect: is modified
5338         pic16printPublics: is modified to emit 'global' assembler directives,
5339         added pic16_printExterns to print extern symbols,
5340         pic16glue: initializes stack/frame pointer in the beginning of
5341         the assembly output. Temporary hack, will be corrected later,
5342         because gplink yet does not support stack and SDCC does not
5343         yet support a type of crt0.o object to create the final binary.
5344
5345         * Removed many lines that contain 8051 legacy code.
5346         * The code is finally placed under a 'code' directive.
5347         * Added port specific options.
5348
5349         * _process_pragma: simplified since now we do not need *special*
5350         include file to define SFR registers. But a separate header
5351         will be needed. This will be developed later.
5352         * _pic16_parseOptions: added, parses port specific options:
5353         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
5354         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
5355         --preplace-udata-with=
5356
5357         * _pic16_setDefaultOptions: modified to initialize section names,
5358         but hack is temporarly out of order since it needs improvement.
5359         * _pic16_genAssemblerPreamble: configuration words are emitted by
5360         their address instead of their name. This part is incomplete and
5361         supports only the 18Fxx2 devices. Other devices will emit an error
5362         during assembly since they do not contain the same set of config
5363         registers
5364         * _pic16_genIVT: is modified,
5365
5366         * pcode.c: added definitions for some hardware registers that are needed
5367         for stack support
5368         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
5369         All PCI entries are updated. Now LFSR is supported.
5370         * Removed pic16_pciTRIS is mentioned by mdubuc in source
5371         * added pic16_newpCodeOpLit2 to support instructions with
5372         two literal arguments
5373         * pic16_pCode2str: corrected code that emits assembler instructions
5374         with two literal operands and those that have an access bit modifier
5375         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
5376         this fixes a bug which caused some labels to be lost, when an
5377         assembler directive was added, i.e. banksel,
5378         * pic16_FixRegisterBanking: improved logic that causes the insertion
5379         of bank switching,
5380         * InlineFunction: functions that are called once, are not any more
5381         inlined. This can be a port option in the future,
5382
5383         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
5384
5385         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
5386         hold the corresponding uninitialized symbols,
5387         * pic16_allocProcessorRegister: registers have explicit marked the
5388         accessBank field,
5389         * pic16_allocInternalRegister: registers are explicit marked as
5390         not used,
5391         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
5392         processing list, so bit registers were lost,
5393         *
5394
5395         * ralloc.h: added field 'accessBank' and original symbol operand
5396         in register definition,
5397         * removed the field isMapped from register definition,
5398
5399         ** Several functions have been removed from various sources:
5400         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
5401         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
5402         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
5403         pic16_assignRelocatableRegisters
5404
5405         ** others have been introduced:
5406         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
5407         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
5408
5409 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
5410
5411         * support/scripts/inc2h.pl: changed definition of BIT_AT
5412         to emit 'sbit at' instead of 'bit at'. This was a request.
5413
5414         PIC16 port related preliminary changes:
5415         * gen.c: prefixed function popRegFromString with
5416         pic16_ and all references to it corrected
5417         * pcode.c: all pic16_pc_* hardware registers prefixed
5418         with underscore (_),
5419         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
5420         * ralloc.c: newReg(): when register is REG_SFR then
5421         set address to rIdx,
5422         pic16_allocProcessorRegister(): marks register wasUsed=0
5423         pic16_writeUsedRegs(): added a call to assign processor
5424         registers via pic16_assignFixedRegisters
5425
5426 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5427
5428         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
5429         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
5430         variables in unused register banks.  Also the SSEG is placed
5431         wherever there is enough space for it, and IDATA can be anywhere
5432         in internal RAM.  For now compile using -Wl-Y[stack_size].
5433         The mem file is different for this option as well, since it
5434         makes no sense of talking about DSEG lenght.
5435
5436 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
5437
5438         * src/SDCClrange.c: fixed bug 869095 that caused segfault
5439         in certain cases, e.g. when ROM assignment, patch provided
5440         from Albert den Haan.
5441
5442 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
5443
5444         Many signedness and type propagation fixes:
5445         * src/SDCCicode.c: made geniCodeCast() static
5446         replaced SPEC_ by IS_ (cosmetic)
5447         (operandOperation): fixed div and mod operation
5448         (usualBinaryConversions): added support for promotion of char
5449         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
5450         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
5451         (geniCodeAdd): an array index will stay unsigned, even if promoted
5452         from char to int
5453         (geniCodeArray): ditto
5454         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
5455         * src/SDCCsymt.c (computeType): added more support for char;
5456         promotion of char is selectable by promoteCharToInt, fixed signedness
5457         for all cases
5458         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5459         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5460         * src/SDCCval (val*): replaced signedness calculation by
5461         computeType()
5462         rearranged if-branches (cosmetic)
5463         (valShift): added warning W_SHIFT_CHANGED
5464         (valCompare): fixed problem with different types
5465         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
5466         * support/regression/tests/literalop.c: added many cases
5467         * support/regression/tests/ast_constant_folding.c: changed finally to
5468         'unsigned int'
5469         * .version: new year, new version: 2.3.7
5470         * src/SDCCmain.c (main): applied patch #866468
5471         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
5472         provided by Scott Bronson
5473         * doc/sdccman.lyx: updated documentation for sdcdb
5474         updated and added chapter tips
5475
5476 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5477
5478         * src/SDCCsymt.h: missing from yesterday's commits
5479
5480 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5481
5482         * src/SDCC.y (struct_or_union_specifier),
5483         * support/Util/SDCCerr.c,
5484         * support/Util/SDCCerr.h: verify that struct & union tags are used
5485         as declared.
5486
5487 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5488
5489         * src/SDCCglobl.h: missing from yesterday's commits
5490
5491 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5492
5493         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
5494         sft_attributes, struct_declaration, parameter_declaration,
5495         type_name, start_block, declaration_list),
5496         * src/SDCC.lex (check_type): support redefinition of typedef names
5497
5498 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5499
5500         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
5501         aligned xdata arrays. Erik helped me with the if clause.
5502
5503 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5504
5505         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
5506         warning
5507
5508 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5509
5510         * src/SDCCast.h,
5511         * src/SDCCast.c (newAst_),
5512         * src/SDCCicode.h,
5513         * src/SDCCicode.c (ast2iCode, newiCode),
5514         * src/SDCCglobl.h,
5515         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
5516         expr, statement, expression_statement, selection_statement,
5517         iteration_statement, expr_opt, jump_statement): foundation for tracking
5518         sequence points
5519         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
5520         point code too)
5521
5522 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5523
5524         * support/Util/SDCCerr.c,
5525         * src/SDCCast.h,
5526         * src/SDCCast.c (createCase, createDefault, decorateType),
5527         * src/SDCClabel.c (labelUnreach),
5528         * src/SDCC.y (labeled_statement, jump_statement): More improvements
5529         to error messages.
5530         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
5531         (with thanks to Stas Sergeev)
5532         * device/include/time.h,
5533         * device/lib/time.c (CheckTime): suppress unreachable code warning
5534
5535 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5536
5537         * src/SDCCast.c (createIvalCharPtr),
5538         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
5539         bug #753752)
5540         * support/regression/tests/nullstring.c: tests for these two bugs
5541
5542 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5543
5544         * support/Util/SDCCerr.h,
5545         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
5546         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
5547         about storage class and 'at' used inside struct or union
5548         * src/SDCCBBlock.c (iCodeFromeBBlock),
5549         * src/SDCCcse.c (ifxOptimize),
5550         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
5551         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
5552         printIval, emitStaticSeg, emitOverlay),
5553         * src/SDCClabel.c (deleteIfx),
5554         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
5555         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
5556         gatherAutoInit, processParms),
5557         * support/Util/SDCCerr.h,
5558         * support/Util/SDCCerr.c (werrorfl): Support for better error location
5559         reporting for post-parse errors.
5560
5561 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5562
5563         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
5564         implicit casts via union; they don't work on big endian systems
5565         (possible fix for bug #861138)
5566
5567 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5568
5569         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
5570         * src/mcs51/main.c: fixed the fix for bug #737001
5571
5572 2003-12-15  Borut Razem <borut.razem AT siol.net>
5573
5574         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
5575
5576 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5577
5578         * support/makebin/makebin.c: put output in binary mode
5579
5580 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5581
5582         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
5583         xdata and data memory on startup. Set the environment variable
5584         SDCC_NOGENRAMCLEAR to disable this.
5585         * src/mcs51/peephole.def,
5586         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
5587         (allows non-interrupt and interrupt code to safely compete for a resource
5588         without the non-interrupt code having to disable interrupts)
5589
5590 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5591
5592         * src/SDCCicode.c (geniCodeAdd),
5593         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
5594         with valFromType if type might be a pointer and host is big endian).
5595         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
5596         types, not just integer types.
5597         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
5598         multiply defined with mismatching "at" address.
5599
5600 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5601
5602         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
5603         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
5604         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
5605         with embedded nulls (fixed bug #753752)
5606
5607 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5608
5609         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
5610         Apparently this did not see much testing (endless loop)
5611
5612 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5613
5614         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
5615
5616 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5617
5618         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
5619         gracefully handle NULL memmap pointers
5620
5621 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5622
5623         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
5624         instead of deleting the iCode when an operand is volatile
5625         * src/z80/gen.c (genDummyRead),
5626         * src/mcs51/gen.c (genDummyRead),
5627         * src/ds390/gen.c (genDummyRead),
5628         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
5629         not just IC_RIGHT
5630         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
5631         * src/SDCC.y: fixed bug #850420
5632
5633 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5634
5635         Applied z80 i/o port patch from Peter Townson and fixed some operators
5636         to better handle operands in A register.
5637         * device/include/z180.h
5638         * src/SDCC.y
5639         * src/SDCCglue.c
5640         * src/z80/gen.c
5641         * src/z80/gen.h
5642         * src/z80/main.c
5643         * src/z80/peeph-z80.def
5644         * src/z80/peeph.def
5645         * src/z80/z80.h
5646
5647 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5648
5649         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
5650
5651 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5652
5653         * device/lib/hc08/_mullong.c: Removed extra #endif
5654
5655 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5656
5657         * sim/ucsim/hc08.src/inst.cc,
5658         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
5659         carries from x to h
5660         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
5661         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
5662         * device/include/stdarg.h: fixed varargs for hc08
5663         * device/lib/Makefile.in,
5664         * device/lib/hc08/Makefile,
5665         * device/lib/hc08/_mulint.c,
5666         * device/lib/hc08/_mullong.c: fixed some endian problems
5667
5668 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5669
5670         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
5671         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
5672         * device/lib/_gptrget.c,
5673         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
5674
5675 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5676
5677         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
5678         * src/SDCCast.c (astErrors): fixed bug #846007
5679         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
5680
5681 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5682
5683         * src/SDCCast.c (decorateType): disabled a transformation I added in
5684         revision 1.188 (access to fields of a structure at an absolute address);
5685         it breaks with bitfields, extern declarations, and gcse analysis.
5686         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
5687         could be assigned through a pointer, so don't complain.
5688         * src/SDCCast.c (astErrors),
5689         * src/SDCCast.h,
5690         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
5691
5692 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
5693
5694         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
5695         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
5696         output of __config directives, since gpasm now supports them
5697         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
5698         pre-processor macro, i.e. -DMCU=p18f452
5699         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
5700         and modified to handle 'cast' icode similarly to '=' icode
5701         * src/pic16/device.h (typedef struct PIC_device): added field
5702         'extMIface' to indicate that chip has external memory interface
5703         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
5704         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
5705         18F8720
5706
5707 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5708
5709         * src/SDCC.y (pointer): fixed bug #846006
5710         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
5711         * src/SDCCast.c (decorateType): fixed bug #846009
5712         * src/ds390/peeph.def,
5713         * src/ds390/gen.c (genAnd, genOr),
5714         * src/mcs51/peeph.def,
5715         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
5716
5717 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5718
5719         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
5720         * src/SDCCdflow.c
5721         * src/SDCCcse.c
5722         * src/SDCCcse.h
5723         * src/SDCCBBlock.h
5724         * src/SDCCBBlock.c
5725
5726 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
5727
5728         fixed bug #845089
5729         * src/SDCCbitv.h,
5730         * src/SDCCbitv.c: added function to free a bitvector
5731         * src/SDCClrange.h,
5732         * src/SDCClrange.c: added function to recompute the liveranges
5733         * src/avr/ralloc.c,
5734         * src/ds390/ralloc.c,
5735         * src/hc08/ralloc.c,
5736         * src/mcs51/ralloc.c,
5737         * src/pic/ralloc.c,
5738         * src/pic16/ralloc.c,
5739         * src/xa51/ralloc.c,
5740         * src/z80/ralloc.c: recompute the liveranges after register packing
5741
5742 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
5743
5744         * src/SDCCloop.c (newInduction): fixed bug #845630
5745
5746 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5747
5748         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
5749         inadvertantly left behind from my 2003-11-12 change
5750
5751 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5752
5753         Updated headers I neglected to commit yesterday.
5754         * src/SDCClrange.h,
5755         * src/SDCCicode.h
5756
5757 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5758
5759         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
5760         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
5761         * src/SDCCopt.c (eBBlockFromiCode),
5762         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
5763         the creation of the key hash table from the sequencing so it can be used
5764         earlier (for some GCSE bug fixes still pending)
5765
5766 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5767
5768         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
5769         * support/regression/tests/addsub.c: testing genPlus shortcut
5770
5771 2003-11-15  Borut Razem <borut.razem AT siol.net>
5772
5773         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
5774
5775 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5776
5777         * src/SDCCcse.c (cseBBlock): fixed bug #527779
5778         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
5779         ordering is immaterial.
5780         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
5781
5782 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5783
5784         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
5785         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
5786         (SIGSEV) of bug #840381
5787         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
5788         unlink new file before rename if new and old filenames are the same)
5789
5790 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5791
5792         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
5793         uninitialized variables) for the mcs51. Set environment variable
5794         SDCC_GENRAMCLEAR to test.
5795         xdata initialization slightly shorter
5796
5797 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5798
5799         * src/SDCCsymt.h,
5800         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
5801         #838241 & 780691 (basicly the same bug)
5802         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
5803         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
5804
5805 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
5806
5807         * src/SDCCmain.c (linkEdit): "fix" #834252
5808
5809 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5810
5811         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
5812         * src/SDCCast.h,
5813         * src/SDCC.y: fixed bug #819403
5814
5815 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5816
5817         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
5818         the reentrant attribute.
5819         * src/hc08/gen.c (genPackBits): added missing stack readjustment
5820         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
5821         simulation
5822         * src/SDCCast.c (decorateType): fixed bug with storage class not being
5823         updated during pointer dereference; f.e. ~(((char *)1)*) was being
5824         erroneously reduced to a literal.
5825         * src/hc08/ralloc.c (packRegisters, rematStr),
5826         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
5827         some cases
5828
5829 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5830
5831         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
5832         * doc/sdccman.lyx: changed from 'article' to 'book'
5833         * doc/Makefile: readded test_suite_spec and cdbfileformat
5834
5835 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
5836
5837         * device/include/stdlib.h: include malloc.h to comply with ANSI
5838         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
5839
5840 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5841
5842         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
5843         * doc/clean.mk: also remove *.out files
5844         * doc/sdccman.lyx: some additions, larger top/bottom margins
5845
5846 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5847
5848         * src/SDCC.y: fixed bug #837365
5849         * support/regression/tests/bitopcse.c
5850         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
5851         a symbol (might be valop instead)
5852         * device/lib/Makefile.in: added errno.c to HC08SOURCES
5853         * device/lib/clean.mk: added hc08 to the cleaning list
5854
5855 2003-11-04  Borut Razem <borut.razem AT siol.net>
5856
5857         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
5858           made 2003-11-04
5859         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
5860           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
5861           malloc is declared in standard stdlib.h
5862
5863 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5864
5865         * device/lib/hc08/Makefile: need to clean .rel not .o files
5866         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
5867
5868 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5869
5870         * src/port.h,
5871         * src/hc08/main.c,
5872         * src/mcs51/main.c,
5873         * src/ds390/main.c,
5874         * src/z80/main.c,
5875         * src/avr/main.c,
5876         * src/pic/main.c,
5877         * src/pic16/main.c,
5878         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
5879         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
5880         tests (which uses the port's oclsExpense function)
5881         * src/SDCC.y,
5882         * src/SDCCast.c,
5883         * src/SDCCicode.c,
5884         * src/hc08/gen.c,
5885         * src/ds390/gen.c,
5886         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
5887
5888 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5889
5890         * src/SDCCcse.c (ifxOptimize),
5891         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
5892         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
5893         deleting the IFX iCode.
5894         * src/hc08/ralloc.c: reduced unneeded slocs
5895         * src/hc08/gen.c: fixed bug in asmopToBoolean
5896
5897 2003-11-04  Borut Razem <borut.razem AT siol.net>
5898
5899         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
5900           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
5901           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
5902           transferred to configure
5903
5904 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
5905
5906         Use headers defined in the C[++] standards:
5907         * sim/ucsim/gui.src/serio.src/fileio.cc
5908         * sim/ucsim/gui.src/serio.src/frontend.cc
5909         * sim/ucsim/gui.src/serio.src/main.cc
5910         * sim/ucsim/gui.src/serio.src/posix_signal.cc
5911         * support/Util/NewAlloc.c
5912         * as/hc08/lklibr.c
5913         * as/mcs51/lklibr.c
5914         * as/z80/aslist.c
5915         * as/z80/assym.c
5916
5917 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5918
5919         * Added MSVC projects for hc08 assembler and linker:
5920         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
5921         /as/hc08/link_hc08.dsp
5922
5923 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
5924
5925         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
5926
5927 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
5928
5929         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
5930
5931 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5932
5933         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
5934
5935 2003-10-31  Borut Razem <borut.razem AT siol.net>
5936
5937         * support/cpp2/cpplib.h,
5938           support/cpp2/cpplib.c,
5939           support/cpp2/cpplex.c,
5940           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
5941           to switch _asm block preprocessing on / off. Default is
5942           #pragma preproc_asm +
5943
5944 2003-10-31  Borut Razem <borut.razem AT siol.net>
5945
5946         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
5947           when outputting comment blocks (when executed with -C option) and
5948           _asm (SDCPP specific) blocks
5949
5950 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5951
5952         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
5953
5954 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
5955
5956         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
5957
5958 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
5959
5960         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
5961         * src/SDCCast.c (decorateType): fixed bug #832664
5962
5963 2003-10-31  Borut Razem <borut.razem AT siol.net>
5964
5965         * support\cpp2\cpplex.c: fixed for SDCPP:
5966           comments(when executed with -C option) and _asm blocks
5967           were included even if they where in skipped #if block.
5968           Applied solution from GCC cpp 3.3.2
5969
5970 2003-10-31  Borut Razem <borut.razem AT siol.net>
5971
5972         * src/SDCC.lex: sdcc now understands both formats:
5973           '# <line_number> <file_name>' and
5974           '#line <line_number> <file_name>'
5975         * support/cpp2/cppmain.c: sdcpp now generates the standard
5976           '# <line_number> <file_name>' instead of former
5977           '#line <line_number> <file_name>'
5978
5979 2003-10-30  Borut Razem <borut.razem AT siol.net>
5980
5981         * support/cpp2/cpphash.h,
5982         * support/cpp2/cpplib.h
5983         * support/cpp2/cpplex.c,
5984         * support/cpp2/cppmain.c,
5985         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
5986
5987 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5988
5989         Fixed a number of problems revealed by bug #827883.
5990         * src/SDCCloop.c (loopInvariants): Spill location of the
5991         result operand should be recomputed if extracted from
5992         a loop. Also, don't extract assignments of an iTemp
5993         from a literal.
5994         * src/SDCCast.c (isConformingBody): loop reversal should
5995         not occur if the control variable is involved with a
5996         relational operator.
5997
5998 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
5999
6000         * .version: bumped to 2.3.6 to reflect the big improvements
6001         made by Erik and Klaus. Thanks!
6002
6003 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
6004
6005         Replaced the livrange code.
6006         * src/SDCClrange.c: added new LR code
6007         * src/SDCCloop.c,
6008         * src/SDCCBBlock.h: removed remainig parts from old LR code
6009         * src/ds390/ralloc.c,
6010         * src/ds390/gen.c: minor fixes to make it work with new code
6011
6012 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6013
6014         * as/hc08/asm.h,
6015         * as/hc08/lkrloc.c,
6016         * src/hc08/gen.c,
6017         * src/hc08/ralloc.c: Fix various warnings related to the hc08
6018         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
6019         (tweaked fix for bug #818696)
6020
6021 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6022
6023         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
6024
6025 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6026
6027         * src/SDCCmain.c,
6028         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
6029         * src/mcs51/gen.c (gencjneshort),
6030         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
6031         more efficient (per Scott Bronson's suggestion)
6032
6033 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6034
6035         Extended the semantics of the critical keyword to include
6036         individual statements. See RFE #827755 and #799831
6037         * src/SDCC.y
6038         * src/SDCCicode.c
6039         * src/SDCCopt.c
6040         * src/SDCCast.c
6041         * support/Util/SDCCerr.c
6042         * support/Util/SDCCerr.h
6043         * src/mcs51/gen.c
6044         * src/ds390/gen.c
6045         * src/hc08/gen.c
6046
6047 2003-10-19  Borut Razem <borut.razem AT siol.net>
6048
6049         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
6050
6051 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6052
6053         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
6054         Fixed bug #818696
6055         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
6056         and predecrement operand is displayed
6057
6058 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6059
6060         * src/SDCCval.c (valMinus): fixed bug #826041
6061
6062 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6063
6064         Some hc08 related updates that I missed earlier
6065         * sim/ucsim/stypes.h
6066         * support/regression/ports/hc08/spec.mk
6067
6068 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6069
6070         New target "hc08" for the Motorola 68hc08 family of micros
6071
6072         * configure
6073         * configure.in
6074         * Makefile
6075         * src/hc08/*
6076         * src/SDCCmain.c
6077         * src/port.h
6078         * sim/ucsim/hc08.src/*
6079         * sim/ucsim/configure.in
6080         * src/ucsim/configure
6081         * sim/ucsim/packages_in.mk
6082         * as/hc08/*
6083         * as/Makefile
6084         * device/include/mc68hc908qy.h
6085         * device/lib/hc08/*
6086         * device/lib/Makefile.in
6087         * support/regression/ports/hc08/*
6088         * support/regression/Makefile
6089
6090 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6091
6092         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
6093         regression test
6094         * src/ds390/gen.c (genCast): fixed bug #821957
6095
6096 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6097
6098         * device/lib/logf.c: "fixed" overlay bug
6099         * support/regression/ports/host/spec.mk: added m library
6100         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
6101         * support/regression/tests/float_trans: added (for Eric)
6102
6103 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
6104
6105         * src/mcs51/gen.c (genCpl): fixed bug
6106         http://sf.net/mailarchive/message.php?msg_id=6263915
6107
6108 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
6109
6110         * src/SDCCast.c (decorateType): added extended constant folding
6111         * src/SDCCsymt.c (computeType): cleanup
6112         * src/SDCCval.c (valShift): minor optimization
6113         * support/regression/tests/ast_constant_folding.c: added
6114
6115 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6116
6117         * src/SDCCmain.c: removed some unintended changes
6118
6119 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6120
6121         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
6122         * src/z80/gen.c: fixed part of bug #817589
6123         * src/SDCCsymt.c (checkFunction): fixed bug #817895
6124
6125 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
6126
6127         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
6128         * src/SDCCcflow.c
6129         * src/SDCCcse.c
6130         * src/SDCCdflow.c
6131         * src/SDCClabel.c
6132         * src/SDCClrange.c
6133         * src/SDCCmem.c
6134         * src/SDCCopt.c
6135         * src/SDCCpeeph.c
6136         * src/SDCCset.c
6137         * src/avr/ralloc.c
6138         * src/ds390/ralloc.c
6139         * src/izt/ralloc.c
6140         * src/mcs51/ralloc.c
6141         * src/pic/ralloc.c
6142         * src/pic16/ralloc.c
6143         * src/xa51/ralloc.c
6144         * src/z80/ralloc.c
6145         * src/z80/gen.c: removed unused label "release:"
6146
6147 2003-10-06  Borut Razem <borut.razem AT siol.net>
6148
6149         * src/SDCC.lex: removed definition of unused variables
6150           save_optimize and save_options
6151
6152 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
6153
6154         * clean.mk: removed '=' in "-maxdepth=1"
6155         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
6156         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
6157
6158 2003-10-06  Borut Razem <borut.razem AT siol.net>
6159
6160         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
6161           my_unput() replaced by unput()
6162
6163 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
6164
6165         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
6166         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
6167         type-punned pointer will break strict-aliasing rules"
6168         Old LR behaviour is again default; Klaus' LR can be choosen by
6169         defining the environment variable LRKLAUS
6170         * src/SDCCBBlock.h
6171         * src/SDCCloop.c
6172         * src/SDCClrange.c
6173         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
6174         * clean.mk: fixed removal of files in bin/CVS/
6175         * device/lib/clean.mk: fixed removal of directories small and large
6176         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
6177         * src/SDCCicode.c,
6178         * src/SDCCval.c: removed superflous test for pedantic
6179
6180 2003-10-05  Borut Razem <borut.razem AT siol.net>
6181
6182         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
6183           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
6184           message "unmatched #pragma SAVE and #pragma RESTORE"
6185
6186 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6187
6188         * doc/sdccman.lyx: various additions and updates (interrupts, inline
6189           assembly, critical functions, atomic, nojtbound)
6190
6191 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
6192
6193         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
6194         * src/SDCCBBlock.h
6195         * src/SDCCloop.c
6196         * src/SDCCloop.h
6197         * src/SDCClrange.c
6198
6199 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6200
6201         * src/z80/gen.h,
6202         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6203         * src/mcs51/gen.h
6204         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6205         * src/ds390/gen.h
6206         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6207         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
6208         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
6209
6210 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6211
6212         * src/z80/gen.c (genRet): fixed bug #524753
6213         * src/z80/gen.c (genCast): fixed internal error on cast from
6214         pointer to long
6215         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
6216         fix for bug #477835 to the z80
6217         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
6218         for tracking iCodes in the peephole optimizer for z80
6219
6220 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6221
6222         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
6223         the other part of bug #814548
6224         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
6225
6226 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
6227
6228         * src/SDCCcse.c: fixed part of bug #814548
6229
6230 2003-09-28  Borut Razem <borut.razem AT siol.net>
6231
6232         * src/asm.c: rewrite of printILine() to use temporary file instead
6233           a pipe
6234         * src/xa51/main.c: commented out declaration of int rewinds
6235
6236 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6237
6238         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
6239
6240 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6241
6242         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
6243         * src/asm.c (printILine): Fixed bug #811015
6244
6245 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6246
6247         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
6248         freeing.
6249
6250 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6251
6252         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
6253         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
6254         to correctly handle general case of AOP_PAIRPTR
6255         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
6256
6257 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6258
6259         * src/mcs51/ralloc.c (fillGaps),
6260         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
6261         register positioning bug)
6262
6263 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
6264
6265         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
6266
6267 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6268
6269         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
6270         genCodePointerGet, genGenPointerGet, genFarPointerSet,
6271         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
6272         (ralloc doesn't intentionally do this now, but perhaps later)
6273         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
6274         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
6275         register positioning bugs (Fixed bug #762602 and #795325)
6276         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
6277         (Fixed bug #808779)
6278         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
6279         lines that --i-code-in-asm generates
6280
6281 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6282
6283         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
6284         trying to fclose a FILE* that was already closed.
6285
6286 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6287
6288         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
6289         of const struct should be treated as if const themselves)
6290
6291 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
6292
6293         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
6294
6295 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6296
6297         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
6298         Unix (/n) and DOS (/r/n) line terminations.
6299
6300 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6301
6302         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
6303         bug #613775
6304
6305 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6306
6307         * src/mcs51/gen.c (genFunction, genEndFunction),
6308         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
6309         and restore of EA so that stack offsets to parameters are
6310         correct when using both critical and reentrant/stack-auto.
6311         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
6312         size (can be triggered in error if sloc is shared between
6313         different sized objects)
6314         * device/include/float.h: fixed macros to explicitly use
6315         unsigned long where needed
6316
6317 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
6318
6319         Feature req. 799831: added code to allow nesting of critical functions
6320         * src/mcs51/gen.c (genFunction, genEndFunction)
6321         * src/ds390/gen.c (genFunction, genEndFunction)
6322
6323 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6324
6325         * src/SDCCsymt.c (sclsFromPtr),
6326         * src/SDCCsymt.h,
6327         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
6328         support for standard C idiom of memory mapped variables; for
6329         example, *((xdata int*)0x1234) = 1 is now internally equivalent
6330         to xdata int at 0x1234 tempvar = 1.
6331         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
6332         provided by Akiya ISHIDA
6333
6334 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
6335
6336         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
6337         * src/SDCCval.c (constVal): added reduction from int to char
6338         * src/SDCCval.c (valMult, valDiv): fixed sign handling
6339         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
6340         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
6341         to ignore the sign
6342         * support/regression/tests/shifts.c: fixed
6343
6344 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6345
6346         * src/z80/gen.c (genXor): Fixed bug #805445
6347
6348 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6349
6350         Fixed bug #621531 (const & volatile confusion in the type chain).
6351         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
6352         refer to the const or volatile state of the pointer itself.
6353
6354         * src/SDCCast.c
6355         * src/SDCCglue.c
6356         * src/SDCCicode.c
6357         * src/SDCCsymt.c
6358         * src/SDCCval.c
6359         * src/SDCC.y
6360         * src/SDCCsymt.h
6361         * src/pic/gen.c
6362         * src/pic/ralloc.c
6363         * src/pic16/gen.c
6364         * src/pic16/ralloc.c
6365         * support/regression/tests/const.c
6366
6367 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6368
6369         When checking for duplicated modules, use absolute paths
6370         instead of relative paths.  Files changed:
6371
6372         * as/mcs51/lklib.c
6373         * link/z80/lklib.c
6374
6375 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6376
6377         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
6378
6379 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6380
6381         * device/include/string.h: added size_t typedef, changed
6382         prototypes to use size_t, eliminated separate reentrant and
6383         non-reentrant declarations, added _memmove declaration
6384         * device/lib/_memcpy.c: changed to use size_t instead of int,
6385         changed /4 to >>2 to avoid division library call
6386         * device/lib/_memcmp.c,
6387         * device/lib/_memset.c,
6388         * device/lib/_strncat.c,
6389         * device/lib/_strncpy.c,
6390         * device/lib/_strncmp.c: changed to use size_t instead of int
6391         * device/lib/_memmove.c: new file (fixed bug #772294)
6392         * device/lib/Makefile.in: added _memmove.c
6393         * device/lib/z80/asm_strings.s: fixed bug #772290
6394         * support/regression/tests/bitfields.c: attempt to fix host assertion
6395         failure on amd64-unknown-linux2.2
6396
6397 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6398
6399         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
6400         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
6401         * as/z80/asmain.c (main): fixed bug #801766
6402
6403 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
6404
6405         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
6406         compilers
6407
6408 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6409
6410         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
6411         reported in bug #800609
6412
6413 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
6414
6415         * Top header beautifications in src/pic16 directory:
6416           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
6417           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
6418           pcoderegs.h, ralloc.c, ralloc.h
6419         * main.c: added top header and GPL license notice
6420         * pcode.c: fixed the if-conditional warning
6421
6422 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
6423
6424         * device/lib/_mullong.c: replaced int by short for gcc
6425
6426 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6427
6428         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
6429         and JUMPTABLE iCodes properly now (worked by accident before)
6430         * src/mcs51/gen.c (leftRightUseAcc),
6431         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
6432         iCode properly now. Use getSize instead of nRegs since a & b
6433         aren't part of the nRegs tally.
6434
6435 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
6436
6437         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
6438         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
6439           before instructions that use the _STATUS register
6440
6441 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
6442
6443         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
6444         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
6445         fetching of the pointer
6446         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
6447         copied from genNearPointerSet()
6448         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
6449         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
6450         If they pop r0/r1 they must be called in the opposite order than aopOp().
6451         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
6452         (resp. --stack-auto), prepared for --xstack
6453
6454 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6455
6456         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
6457
6458 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
6459
6460         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
6461         these ports have their own __sdcc_external_start()
6462
6463 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
6464
6465         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6466         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
6467         type for bits was changed. It resulted in bit variables becoming
6468         global, which is not permitted in PIC 14 assembly output.
6469
6470 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6471
6472         * doc/sdccman.lyx: various additions and updates. Rearranged sections
6473
6474 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6475
6476         Z80 and MCS51 linkers complaint if a public symbol is defined
6477         in more than one library module:
6478
6479         * as/mcs51/lklib.c
6480         * link/z80/lklib.c
6481         * as/mcs51/Makefile.in
6482
6483 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6484
6485         A few small changes that speed up the peephole optimizer.
6486
6487         * src/SDCCpeeph.c
6488
6489 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6490
6491         Try to make the peephole optimizer smarter by maintaining
6492         an association between the assembly source code and the
6493         iCodes that originated them. Put this information to use
6494         with a new peephole rule condition "notVolatile" so that
6495         the rules can be aggressive yet still safe.
6496
6497         * src/SDCCpeeph.c
6498         * src/SDCCpeeph.h
6499         * src/mcs51/gen.c
6500         * src/mcs51/peeph.def
6501
6502 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6503
6504         Fixed bug #741761
6505
6506         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
6507         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
6508         if the left or right operand symbols have the accuse flag set.
6509
6510 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6511
6512         Changed the type of the result of the ! (NOT) operator to char;
6513         previously it returned the same type as the source. This allows
6514         us to eliminate all the genFloatNot functions (all of its target
6515         implementations were very buggy) since !float can use the same
6516         code as !long now.
6517
6518         * src/SDCCicode.c (ast2iCode): ! returns char
6519         * src/mcs51/gen.c (genNot, genNotFloat),
6520         * src/ds390/gen.c (genNot, genNotFloat),
6521         * src/z80/gen.c (genNot, genNotFloat),
6522         * src/pic/gen.c (genNot, genNotFloat),
6523         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
6524
6525 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
6526
6527         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6528         1. Interrupt would not compile properly. Ensure PCLATH register is saved
6529            during interrupts. Ensure WSAVE is located at a shared bank address.
6530         2. Fixed page selection in some places
6531         3. Fixed BTFSS/C to where necessary use registers directly and not simply
6532            the registers name strings.
6533         4. Fixed "signed / unsigned compare" compiler warnings.
6534         5. The PIC port manages its own allocation of the general purpose
6535            registers, but makes no attempt to reuse them. As a result when
6536            compiling it soon runs out of general purpose registers. Some
6537            additional code was added to the files pcode.c and device.c to walk
6538            through the function call tree and rename the registers so that they
6539            get reused.
6540
6541         * src/pic/device.c
6542         * src/pic/gen.c
6543         * src/pic/glue.c
6544         * src/pic/pcode.c
6545         * src/pic/pcode.h
6546         * src/pic/ralloc.c
6547         * src/pic/ralloc.h
6548         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
6549         genPlus() & genMinus() when the result is the same as left or right
6550
6551 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6552
6553         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
6554
6555 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6556
6557         Made bitfield a distinct type from bit so that bitfields
6558         convert as per ANSI C and bits retain their traditional
6559         boolean style behaviour. Implemented bitfield support in
6560         the z80 port.
6561
6562         * src/SDCCsymt.h,
6563         * src/SDCCsymt.c,
6564         * src/SDCCast.c,
6565         * src/cdbFile.c,
6566         * src/mcs51/gen.c,
6567         * src/ds390/gen.c: bit v bitfield split
6568         * src/z80/gen.c: New support for bitfields
6569         * support/regression/tests/bitfields.c: reenabled z80,
6570         added more tests
6571
6572 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6573
6574         Rules 246.x, 247.x relate to bitfields, the others speed up
6575         access to xdata mapped I/O devices.
6576
6577         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
6578
6579 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6580
6581         Cleaned up genPackBits and genUnpackBits and added two helper
6582         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
6583         for literal assignments in genPackBits (thanks to Frieder for
6584         reminding me).
6585
6586         * src/mcs51/gen.c
6587         * src/ds390/gen.c
6588
6589 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6590
6591         Fixed bug #748310 (pointer to function type mishandled when the
6592         function name is omitted). Also fixed a SIGSEGV when a function
6593         attribute (reentrant, etc) is used on a non-function or on a
6594         function but misplaced before the parameter list.
6595
6596         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
6597         bug #748310
6598         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
6599         * support/Util/SDCCerr.h,
6600         * support/Util/SDCCerr.c: Added func attr misuse error msg
6601
6602 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
6603
6604         Fixed bug #787649 by anonymous
6605         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
6606         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
6607
6608 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6609
6610         Fixed numerous bitfield problems.
6611
6612         * src/SDCC.y: More bitfield related error checking
6613         * src/SDCCsymt.h,
6614         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
6615         * support/Util/SDCCerr.h,
6616         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
6617         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
6618         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
6619         * support/regression/tests/bitfields.c: tests added
6620
6621 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6622
6623         Made the constant following the "interrupt" keyword optional. If
6624         omitted, the function will not automatically be given an entry
6625         in the interrupt vector table (similar to #pragma NOIV, but
6626         less syntacticly kludgy). The interrupt number is also now
6627         range checked. Also fixed a bug in the high order bit example
6628         in the manual.
6629
6630         * src/SDCC.y
6631         * src/SDCCmem.c
6632         * src/SDCCglue.c
6633         * src/SDCCsymt.h
6634         * support/Util/SDCCerr.c
6635         * support/Util/SDCCerr.h
6636         * doc/sdccman.lyx
6637
6638 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
6639
6640         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
6641         * src/SDCCicode.c (operandOperation): rewritten some ops
6642         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
6643         * src/SDCCsymt.c (computeType): literals are handled the same way as any
6644         other type
6645         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
6646         be re-activated by defining REDUCE_LITERALS)
6647         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
6648         unsigned, but are signed by default
6649         * src/SDCCval.c (constVal): rearranged
6650         * src/SDCCval.c (valMod): preliminary fix
6651         * src/SDCCval.c (valCastLiteral): use TYPE_* types
6652         * support/regression/literalop.c: added, work in progress
6653
6654 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6655
6656         Generate warnings for useless declarations like "char data;"
6657         that don't do what new users expect.
6658
6659         * src/SDCC.y
6660         * support/Util/SDCCerr.h
6661         * support/Util/SDCCerr.c
6662
6663 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
6664
6665         * src/SDCCval.c (valMult): fix overflow detection of negative int
6666
6667 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6668
6669         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
6670
6671         Changes to support big endian targets:
6672
6673         * src/ports.h
6674         * src/SDCCglue.c
6675         * src/avr/main.c
6676         * src/ds390/main.c
6677         * src/izt/i186.c
6678         * src/mcs51/main.c
6679         * src/pic/main.c
6680         * src/pic16/main.c
6681         * src/xa51/main.c
6682         * src/z80/main.c
6683
6684 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
6685
6686         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
6687         * device/lib/time.c: fixed warning "integer overflow in expression"
6688
6689 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
6690
6691         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
6692         * src/SDCCval.c (constVal): changed default to signed; hex and octal
6693         constants are unsigned; added recognition of "u" flag for unsigned
6694         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
6695         * src/SDCCval.c (valDiv, valMod): fixed signdness
6696         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
6697         signedness of modulo, left and right shift
6698         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
6699         * support/Util/SDCCerr.h: added warning W_INT_OVL
6700         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
6701         * src/SDCCast.c (ast_print): improved output of constants
6702
6703 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6704
6705         Fixed some warnings when building with MSVC:
6706
6707         * as\mcs51\asdata.c
6708         * as\z80\asdata.c
6709         * as\mcs51\asm.h
6710         * as\z80\asm.h
6711         * link\z80\aslink.h
6712         * link\z80\lkdata.c
6713         * link\z80\lkeval.c
6714         * link\z80\lkgb.c
6715         * link\z80\lkihx.c
6716         * link\z80\lks19.c
6717         * link\z80\lksym.c
6718         * support\cpp2\cpplib.c
6719         * src\ds390\gen.c
6720         * src\mcs51\gen.c
6721
6722 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
6723
6724         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
6725
6726 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6727
6728         * support\librarian\clean.mk: Do not remove Makefile.
6729         * support\librarian\Makefile: added.
6730
6731 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6732
6733         Added librarian to MSVC build:
6734         * all.dsp
6735         * sdcc.dsw
6736         * support\librarian\librarian.dsp
6737
6738         'configure' not needed for librarian, removed:
6739         * support\librarian\configure
6740         * support\librarian\configure.in
6741         * support\librarian\config_in.h
6742         * support\librarian\Makefile.in
6743
6744         Hopefully these ones built the librarian and the rest of sdcc properly:
6745         * Makefile
6746         * Makefile.common.in
6747
6748         Messed up 'configure', so revert to previous version:
6749         * configure
6750         * configure.in
6751
6752 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
6753
6754         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
6755         there, while the mantissa of a double is "only" 53 bits wide.
6756
6757 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6758
6759         Adding sdcclib to the build.  MSVC project coming soon.
6760         Files added/changed:
6761
6762         * support\librarian\clean.mk
6763         * support\librarian\configure
6764         * support\librarian\configure.in
6765         * support\librarian\config_in.h
6766         * support\librarian\Makefile.bcc
6767         * support\librarian\Makefile.in
6768         * support\librarian\sdcclib.c
6769         * Makefile.bcc
6770         * Makefile
6771         * Makefile.common.in
6772         * configure
6773         * configure.in
6774
6775 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6776
6777         Linker now complaints if linked modules have conflicting options, for
6778         example, one compiled using --model-large and another one compiled with
6779         --model-small.  The following files were modified:
6780
6781         * as\mcs51\asdata.c
6782         * as\mcs51\aslink.h
6783         * as\mcs51\asm.h
6784         * as\mcs51\asmain.c
6785         * as\mcs51\asout.c
6786         * as\mcs51\i51pst.c
6787         * as\mcs51\lkdata.c
6788         * as\mcs51\lklibr.c
6789         * as\mcs51\lkmain.c
6790         * as\z80\asdata.c
6791         * as\z80\asm.h
6792         * as\z80\asmain.c
6793         * as\z80\asout.c
6794         * as\z80\z80pst.c
6795         * link\z80\aslink.h
6796         * link\z80\lkdata.c
6797         * link\z80\lklibr.c
6798         * link\z80\lkmain.c
6799         * src\SDCCglue.c
6800
6801 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6802
6803         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
6804         as/mcs51/lklibr.c: Generate a warning when a library is not found.
6805
6806 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
6807
6808         * src/z80/mappings.i: fix _mul[us][int,long] entries
6809
6810 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6811
6812         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
6813
6814 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
6815
6816         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
6817         * support/regression/tests/bitopcse.c: added
6818         fixed warning:
6819         * src/avr/gen.c:
6820         * src/pic/gen.c:
6821         * src/pic16/gen.c:
6822         * src/z80/gen.c:
6823         * src/xa51/gen.c:
6824
6825 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6826
6827         added support for new library format to z80, gbz80 linkers:
6828         *link/z80/aslink.h
6829         *link/z80/lklex.c
6830         *link/z80/lklib.c
6831         *link/z80/lklist.c
6832
6833 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
6834
6835         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
6836         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
6837
6838 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
6839
6840         added DUMMY_READ_VOLATILE:
6841         * src/SDCC.y:
6842         * src/avr/gen.c:
6843         * src/xa51/gen.c:
6844         * src/z80/gen.c:
6845         * src/pic/gen.c:
6846         * src/pic16/gen.c:
6847         * src/mcs51/gen.c:
6848         * src/ds390/gen.c:
6849         * src/SDCCcse.c (algebraicOpts): many improvements
6850         * src/SDCCcse.h: removed algebraicOpts()
6851         * src/SDCCicode.c (picDummyRead): added
6852
6853 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6854
6855         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
6856         "Insufficient space in data memory".
6857
6858 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6859
6860         * src/mcs51/gen.c: fixed bug #771358
6861         * src/z80/gen.c: fixed bug #759087
6862
6863 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
6864
6865         * src/pic16/glue.c: minor cleanup by Vangelis
6866
6867 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6868
6869         * device/include/regc515c.h: fixed #758477
6870         * device/lib/_gptrget.c: saving some cycles in generic pointer get
6871         * device/lib/_gptrput.c: saved a few bytes
6872         * my tab spacing is 8, yours too?)
6873         * device/lib/_ser.c: process RX bytes earlier than TX bytes
6874         * device/lib/serial.c: process RX bytes earlier than TX bytes
6875         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
6876
6877 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6878
6879         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
6880
6881 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6882
6883     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
6884
6885 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
6886
6887         * device/lib/Makefile.in: bad fix, reverted to 1.43
6888
6889 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
6890
6891         * device/lib/Makefile.in: added missing z80 object files
6892
6893 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
6894
6895         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
6896         pic16 progress by Vangelis:
6897         * src/SDCCglobl.h:
6898         * src/SDCCmain.c:
6899         * src/pic/Makefile:
6900         * src/pic:
6901         * pic/Makefile:
6902         * pic16/device.c:
6903         * pic16/device.h:
6904         * pic16/gen.c:
6905         * pic16/gen.h:
6906         * pic16/genarith.c:
6907         * pic16/glue.c:
6908         * pic16/main.c:
6909         * pic16/pcode.c:
6910         * pic16/pcode.h:
6911         * pic16/pcodepeep.c:
6912         * pic16/peeph.def:
6913
6914 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6915
6916     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
6917
6918 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6919
6920     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
6921     added gbz80 build to MSVC project.
6922     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
6923     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
6924     from 8051 stuff and setup so it links using a .lnk file.
6925
6926 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6927
6928     * support/librarian/sdcclib.c: sdcc librarian.
6929     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
6930     with sdcclib.
6931
6932 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6933
6934     * as/mcs51/lkmain.c: properly handle extensions in function afile.
6935
6936 2003-07-02  Borut Razem <borut.razem AT siol.net>
6937
6938         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
6939         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
6940         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
6941         src/xa51/main.c, src/z80/main.c:
6942         virtualization of glue() function: each port has it's own glue function,
6943         which is accessed by do_glue function pointer in PORT.general structure
6944
6945 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
6946
6947         * DS800C400 fun, improved ROM interface and tinibios.
6948
6949 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
6950
6951         * More support for DS80C400. Now includes beginning of interface to ROM.
6952
6953 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
6954
6955         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
6956
6957 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6958
6959         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
6960
6961 2003-06-19  Borut Razem <borut.razem AT siol.net>
6962
6963         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
6964
6965 2003-06-19  Borut Razem <borut.razem AT siol.net>
6966
6967         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
6968         fixed Z80 port - crt0.o: cannot open.
6969
6970 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
6971
6972         * support/Util/MySystem.c (merge_command): revert bad fix
6973
6974 2003-06-18  Borut Razem <borut.razem AT siol.net>
6975
6976         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
6977
6978 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6979
6980         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
6981         option --use-stdout sends errors to stdout instead of stderr.
6982
6983 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
6984
6985         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
6986
6987 2003-06-15  Borut Razem <borut.razem AT siol.net>
6988
6989         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
6990         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
6991         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
6992         fixed width array of pointers replaced with sets;
6993         multiple include and lib paths ared transferred to preprocessor and linker
6994         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
6995         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
6996         fixed width array of pointers
6997         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
6998         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
6999         fixupPath(), getPathDifference()
7000         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
7001         fixed width array of pointers
7002
7003 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
7004
7005         * src/pic16/ralloc.c: fix warnings
7006         * src/pic16/pcode.c: fix warning
7007
7008 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
7009
7010          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
7011         know all the details, but essentially this set of changes enable
7012         the pic16 port to generate movff instructions and generate assembler
7013         directives,
7014         * src/SDCCmain.c:
7015         * src/pic16/gen.c:
7016         * src/pic16/glue.c:
7017         * src/pic16/pcode.c:
7018         * src/pic16/device.c:
7019         * src/pic16/main.c:
7020         * src/pic16/pcode.h:
7021         * src/pic16/pcoderegs.c:
7022         * src/pic16/ralloc.c:
7023         * src/pic16/ralloc.h:
7024
7025 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7026
7027         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7028         added option --vc, so sdcc errors and warnings are compatible with
7029         Microsoft Visual Studio.
7030
7031 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7032
7033         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
7034           device/lib/libfloat.lib: added atof function.
7035
7036 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
7037
7038         * doc/sdccman.lyx: updated to Lyx 1.3
7039         * doc/cdbfileformat.lyx: updated to Lyx 1.3
7040         * doc/test_suite_spec.lyx: updated to Lyx 1.3
7041         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
7042
7043 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
7044
7045         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
7046
7047 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7048
7049         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
7050           additions to the "related tools/documentation" section
7051
7052 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
7053
7054         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
7055
7056 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
7057
7058         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
7059         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
7060
7061 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
7062
7063         * doc/sdccman.lyx: fix double dash and other minor things
7064         * doc/Makefile: fix double dash
7065
7066 2003-05-28  Karl Bongers(patches from Martin Helmling)
7067         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
7068           condition and ignore commands.
7069
7070 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7071
7072         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
7073           is in parts still quite out of date, I did changes as far as I felt makes sense
7074           for a non-native english speaker.
7075           Please feel free to add to the manual or to correct my changes.
7076         * doc/Makefile: undid touching the date of intermediate tex files.
7077
7078 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7079
7080         * doc/sdccman.lyx: Manual has an index now
7081
7082 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
7083
7084         Finalize muluint/mulsint and mululong/mulslong merging:
7085         * device/lib/_mulint.c
7086         * device/lib/_mullong.c
7087         * device/lib/gbz80/mul.s
7088         * device/lib/gbz80/stubs.s
7089         * device/lib/z80/mul.s
7090         * device/lib/z80/stubs.s
7091         * src/SDCCsymt.c (initCSupport)
7092
7093 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7094
7095         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
7096         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
7097           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
7098           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
7099           instead of /Zm500.
7100
7101 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7102
7103         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
7104           the regression tests I'm not brave enough to enable 245.b, 245.c
7105         * doc/sdccman.lyx: added latex preamble for hyperref package.
7106           Using pdflatex this will give you a hyperlinked pdf file with
7107           bookmarks. (prepend '%' before /usepackage if this breaks something)
7108
7109 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7110
7111          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
7112
7113 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
7114
7115         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
7116
7117 2003-05-21    <johan AT balder>
7118
7119         * src/SDCCglue.c (printIval): fixed bug #739934
7120
7121 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7122
7123         Applied patch from bug 737905 (renamed yylineo to mylineno):
7124         * src/altlex.c
7125         * src/SDCCast.c
7126         * src/SDCglobl.h
7127         * src/SDCC.lex
7128         * src/SDCCsymt.c
7129         * src/SDCCval.c
7130         * src/pic16/pcode.c: Cleaned warnings
7131         * src/pic16/pcodeflow.c: Cleaned warnings
7132         * src/pic16/pcoderegs.c: Cleaned warnings
7133
7134 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
7135
7136         * src/pic16/pcode.c: Cleaned warnings
7137         * src/pic16/pcodepeep.c: Cleaned warnings
7138         * src/pic16/ralloc.c: Cleaned warnings
7139
7140 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7141
7142         * doc/sdccman.lyx: fixed bug 739745
7143         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
7144
7145 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
7146
7147         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
7148         it can be defined with CFLAGS when running configure
7149         * src/SDCCmain.c: fixed compiling + linking with object files
7150
7151 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
7152
7153         * configure.in: configure for pic16 port,
7154             added --disable-pic16-port
7155         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
7156         * src/SDCCmain.c: linkOptions is changed to set *,
7157             added if/endif conditional macros to remove options help
7158             messages from optionsTable when a port is not configured, added
7159             support for the PIc16 port in the ports table, when executing
7160             the compiler with no port specified on command line, a default
7161             port is selected with the new macro DEFAULT_PORT which is
7162             defined in port.h, in setDefaultOptions() linkOptions is removed
7163             from initialization assignment, since now it is a set,
7164             parseCmdLine uses setParseWithComma for linkOptions, in
7165             linkEdit() linkOptions are accessed with new function indexSet()
7166             which returns the i'th item of a set variable. See SDCCset.c, in
7167             linkEdit() when calling buildCmdLine(), added linkOptions as
7168             last argument. Now users can pass arguments to gplink via the
7169             -Wl option, main() uses pic16glue() to glue up pic16 programs
7170         * src/SDCCpeeph.c: various changes to support pic16
7171         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
7172             return the i'th item of the set
7173         * src/SDCCset.h: added function prototype for indexSet()
7174         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
7175         * src/clean.mk: added pic16 in CLEANALLPORTS variable
7176         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
7177             added macro DEFAULT_PORT
7178         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
7179         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
7180             generated
7181         * src/pic16/glue.c: commented out some error producing lines
7182         * src/pic16/main.c: __config directives are commented out to stop
7183             gpasm complaining and test the linkage with gplink, _linkCmd and
7184             _asmCmd changed to be more gplink and gpasm friendly
7185         * src/pic16/peeph.def: peep rule 3 is commented out, since it
7186             produced an error when parsed, peep rule 12 is added to utilize
7187             movff, but it is commented out since the pCode does not support
7188             yet a command with 2 address arguments
7189
7190 2003-05-18    <johan AT balder>
7191
7192         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7193         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7194 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
7195
7196         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
7197   Added feature to script commands from file.
7198
7199 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
7200
7201         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
7202         * src/SDCCutil.c: include ctype.h for win32
7203
7204 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
7205
7206         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
7207
7208 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
7209
7210         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
7211   Fixed so you can set breakpoints prior to run, run does not stop
7212   on entry now.  Add tbreak.  Other enhancements and fixes for use
7213   with ddd.
7214
7215 2003-05-12  Borut Razem <borut.razem AT siol.net>
7216
7217         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
7218
7219 2003-05-11  Borut Razem <borut.razem AT siol.net>
7220
7221         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
7222         the path of bin directory, so that PATH is the only env. variable, which has to be set
7223         in case of standard installation.
7224         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
7225         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
7226         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
7227
7228 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7229
7230         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
7231         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
7232         temp files are in the port dir; clean the gen/test directory when
7233         generating new test.c
7234         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
7235         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
7236         * support/regression/tests/zeropad.c: added
7237
7238 2003-05-09    <johan AT balder>
7239
7240         * src/SDCCglue.c: fixed bug #597940
7241
7242 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
7243
7244         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7245   cache sfr, optimize next,step, fix off by one sourceline,
7246   support ddd list function.
7247         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
7248
7249 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7250
7251         * support/regression/HTMLgen.py: added compare_s2f()
7252         * support/regression/Makefile: redo 1.27
7253         * support/regression/generate-cases.py: redo 1.5
7254
7255 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
7256
7257         * support/regression/tests/float.c: workaround 33 bit hex constant
7258         * support/regression/tests/simplefloat.c: fix division for host
7259
7260 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
7261
7262         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
7263         that tame's the PIC's over-aggressive optimizer.
7264
7265 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7266
7267          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
7268          support for MSVC.
7269
7270 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
7271
7272         Initial support for DS80C400. "Hello world" runs on TINIm400
7273         (with polled I/O).
7274
7275 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
7276
7277          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7278          * Some notes on ddd usage added in debugger/README
7279          Martin Helmling adding more features and fixes for ddd GUI debugger.
7280          Code added for nexti, stepi, up, down, and other adjustments.
7281
7282 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
7283
7284         * src/pic/pCodepeep.c non-wildcard asmops are now handled
7285         * src/pic/peeph.def Added two rules to optimize carry manipulation
7286         * src/pic/* removed debug printfs
7287
7288 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
7289
7290         * debugger/mcs51/cmd.c: added header newalloc.h
7291
7292 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
7293
7294         * as/Makefile: new EXEEXT
7295         * as/z80/Makefile: remove trailing slash of BUILDIR
7296         * as/z80/clean.mk: new EXEEXT
7297         * Makefile.common.in: add to CFLAGS (and others), don't replace it
7298         * support/cpp2/Makefile.in: new EXEEXT
7299         * src/pic/glue.c (pic14emitRegularMap): fixed warning
7300
7301 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
7302
7303         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
7304         EXEEXT was introduced to fix all related problems with targets
7305         "clean", "install" and "uninstall"; a couple of further flaws
7306         especially with "clean" have been fixed too
7307         * as/mcs51/Makefile.in
7308         * as/mcs51/clean.mk
7309         * as/z80/Makefile
7310         * Makefile
7311         * clean.mk
7312         * debugger/mcs51/Makefile.in
7313         * debugger/mcs51/clean.mk
7314         * link/z80/Makefile
7315         * link/z80/Makefile.in
7316         * link/z80/clean.mk
7317         * link/Makefile
7318         * packihx/Makefile.in
7319         * packihx/clean.mk
7320         * sim/ucsim/Makefile
7321         * sim/ucsim/clean.mk
7322         * sim/ucsim/avr.src/Makefile.in
7323         * sim/ucsim/avr.src/clean.mk
7324         * sim/ucsim/s51.src/Makefile.in
7325         * sim/ucsim/s51.src/clean.mk
7326         * sim/ucsim/xa.src/Makefile.in
7327         * sim/ucsim/xa.src/clean.mk
7328         * sim/ucsim/z80.src/Makefile.in
7329         * sim/ucsim/z80.src/clean.mk
7330         * sim/ucsim/main_in.mk
7331         * sim/ucsim/packages_in.mk
7332         * sim/ucsim/gui.src/Makefile.in
7333         * sim/ucsim/gui.src/serio.src/Makefile.in
7334         * sim/ucsim/gui.src/serio.src/clean.mk
7335         * src/Makefile.in
7336         * src/clean.mk
7337         * support/cpp2/Makefile.in
7338         * support/cpp2/clean.mk
7339         * support/makebin/Makefile
7340         * support/makebin/clean.mk
7341         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
7342         * doc/sdccman.lyx: --program-suffix no longer needed
7343
7344 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
7345
7346          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
7347          Martin Helmling added support for ddd GUI debugger.
7348          Code added to display assembly, set variables, and other commands
7349          to interface to ddd.
7350
7351 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
7352
7353         * as/Makefile: fix target clean
7354         * as/clean.mk: fix target clean
7355         * as/z80/clean.mk: fix target clean
7356
7357 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
7358
7359         * Makefile.common.in: added  AT EXEEXT AT
7360         * configure.in: removed all mingw32 stuff
7361         * configure: rebuilt from configure.in
7362         * doc/sdccman.lyx: updated section "installation"
7363         * support/scripts/sdcc_mingw32: adapted to configure
7364         * support/scripts/sdcc_cygwin_mingw32: added
7365
7366 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
7367
7368         * src/pic Added object file support for the PIC port
7369         * src/pic Applied patch from Craig Franklin (this started the object file support)
7370         * src/regression Updated the PIC regression tests for object files
7371
7372 2003-04-20  Borut Razem <borut.razem AT siol.net>
7373
7374         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
7375           lklex.c: In function `getfid':
7376           lklex.c:203: warning: array subscript has type `char'
7377         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
7378           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
7379         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
7380           stack handling macros
7381
7382 2003-04-19  Borut Razem <borut.razem AT siol.net>
7383
7384         * "handling space characters in file path" task:
7385         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
7386         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
7387         * support/Util/MySystem.h: make it self-sufficient
7388         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
7389           src/z80/main.c, sdcc/as/mcs51/lklex.c:
7390           handling space characters in file path
7391         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
7392           (it will be used by assemblers, which have their own includes, e.g. gpasm)
7393         * support/Util/MySystem.c: handling space characters in executable's path
7394
7395 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
7396
7397         * as/z80/Makefile: fix permanent rebuild of z80
7398         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
7399         * support/regression/tests/bitfields.c: added Johan's bitfields.c
7400
7401 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
7402
7403         * src/SDCCopt.c: add special case optimization to replace modulo by
7404           a power of two with a bitwise AND.
7405
7406 2003-04-18    <johan AT balder>
7407
7408         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
7409
7410 2003-04-17    <johan AT balder>
7411
7412         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
7413         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
7414
7415 2003-04-13  Borut Razem <borut.razem AT siol.net>
7416
7417         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
7418         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
7419           fixed mingw problem in adl_NORMALIZE_PATH
7420
7421 2003-04-12  Borut Razem <borut.razem AT siol.net>
7422
7423         * fixed "#pragma SAVE/RESTORE can not be nested":
7424         * src/SDCC.lex: reworked pragma handling functions
7425         * sdcc/src/SDCCglobl.h: reworked stack handling macros
7426         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
7427
7428 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7429
7430         * src/SDCCutil.c (pathEquivalent): defined but not used
7431         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
7432         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
7433         * configure: rebuilt from configure.in
7434         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7435         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7436         * device/include/Makefile.in: replace sdcc_datadir
7437         * device/lib/Makefile.in: replace sdcc_datadir
7438         * Makefile.common.in: add LDFLAGS from configure
7439         * packihx/Makefile.in: use LDFLAGS
7440         * src/Makefile.in: use LDFLAGS
7441         * support/cpp2/Makefile.in: add LDFLAGS from configure
7442         * support/makebin/Makefile: use LDFLAGS
7443         * .version: bumped version number to 2.3.5
7444
7445 2003-04-12  Borut Razem <borut.razem AT siol.net>
7446
7447         * completed "different paths" task:
7448         * src/SDCCmacro.c: fixed bug in handling quotes
7449         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
7450         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
7451
7452 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7453
7454         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
7455
7456 2003-04-11 kevin Vigor <kevin AT vigor.nu>
7457
7458         * ds390/gen.c ds390/peeph.def: fix bug 706781
7459
7460 2003-04-11  Borut Razem <borut.razem AT siol.net>
7461
7462         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
7463
7464 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
7465
7466         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
7467         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
7468          set - this bit used to not be set...).
7469         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
7470           bad code in PIC Port
7471         * src/regression/and2.c added to test bug 609268
7472         * src/regression/Makefile added and2.c to regression test
7473
7474
7475 2003-04-08    <johan AT CP255758-A>
7476
7477         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
7478         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
7479         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
7480
7481 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
7482
7483         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
7484         fix bug #487815
7485         * support/cpp2/Makefile.in: fix bug #487815
7486         * configure: rebuilt from configure.in
7487         * Makefile.common.in: docdir changed, new path suffixes
7488         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7489         * sdcc_vc_in.h: reflect changes from sdccconf.h
7490         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
7491         * src/SDCCutil.h: remove BINDIR hack
7492         * doc/sdccman.lyx: update new path hierarchy
7493
7494 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7495
7496         * src/SDCCpeeph.c: added okToRemoveSLOC test
7497
7498 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7499
7500         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
7501
7502 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7503
7504         * src/SDCCpeeph.c: added labelIsReturnOnly test
7505         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
7506
7507 2003-04-05    <johan AT balder>
7508
7509         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
7510         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
7511         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
7512         * src/SDCCast.c: fixed a warning
7513         * src/SDCCast.h: fixed a warning
7514         * src/SDCCicode.c (operandFromAst): fixed a warning
7515
7516 2003-04-04    <johan AT balder>
7517
7518         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
7519         * src/SDCCast.c (decorateType): fixed bug #715076
7520         * src/SDCC.y: fixed bug #702907
7521
7522 2003-04-03    <johan AT balder>
7523
7524         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
7525         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
7526         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
7527         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
7528         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
7529
7530 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
7531
7532         * _decdptr.c: fix return values
7533         * _gptrget.c: fix return values
7534         * _gptrgetc.c: fix return values
7535         * _gptrput.c: fix return values
7536         * _mulint.c: fix return values
7537         * as/z80/Makefile: fix 'make -j' problem
7538
7539 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
7540
7541         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
7542         * configure.in: big cleanup, updated to autoconf 2.5x
7543         * configure: rebuilt from configure.in
7544         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7545         * sdcc_vc_in.h: reflect changes from sdccconf.h
7546         * doc/Makefile: fixed a flaw in "make install"
7547
7548 2003-04-02    <johan AT balder>
7549
7550         * src/ds390/gen.c (genCmp): no comments
7551         * src/mcs51/gen.c (genCmp): no comments
7552         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
7553         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
7554
7555 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
7556
7557         * support/regression/generate-cases.py: place generated file in given sub directory
7558         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
7559         * support/regression/Makefile: improvements for 'make -j';
7560         side effect: it's simpler and faster now
7561
7562 2003-03-31  Borut Razem <borut.razem AT siol.net>
7563
7564         * src/z80/main.c: link-{port} and as-{port} defined without path
7565         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
7566
7567 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
7568
7569         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
7570
7571 2003-03-30  Borut Razem <borut.razem AT siol.net>
7572
7573         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
7574           changed type of list parameter to set
7575         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
7576         * src/port.h: changed type of do_assemble() parameter to set
7577         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
7578           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
7579           definition of "cppoutfilename" macro with NULL value in preProcess()
7580         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
7581         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
7582         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
7583           replaced with set *binPathSet
7584         * shash_add() deallocates the item, if allready exsists, before adding the new one
7585         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
7586
7587 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
7588
7589         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
7590           a nested for loop bug in the PIC port
7591         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
7592           for loops
7593
7594 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
7595
7596         * support/Util/dbuf.h: remove C++ stuff to make it portable
7597
7598 2003-03-28  Borut Razem <borut.razem AT siol.net>
7599
7600         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
7601           literal strings in stringLiteral()
7602         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
7603         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
7604           to the project
7605
7606 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
7607
7608         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
7609
7610 2003-03-26    <johan AT balder>
7611
7612         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
7613         * src/ds390/gen.c (saveRegisters): catched symbol abuse
7614         * src/SDCCast.c (decorateType): fixed " -v < 3"
7615
7616 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
7617
7618         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
7619         Added Lenny Story's debug infrastructure changes:
7620         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
7621         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
7622         * src/cdbFile.c: added
7623         * src/SDCCdebug.c: added
7624         * src/SDCCdebug.h: added
7625         * src/SDCCast.c (createFunction)
7626         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
7627         * src/SDCCmain.c (parseCmdLine, main)
7628         * src/SDCCmem.c (redoStackOffsets)
7629         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
7630         * src/SDCCsymt.h
7631         * src/common.h
7632         * src/avr/gen.c (genAVRCode)
7633         * src/ds390/gen.c (gen390Code)
7634         * src/mcs51/gen.c (gen51Code)
7635         * src/pic/gen.c (genpic14Code)
7636         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
7637         * src/xa51/gen.c (genXA51Code)
7638         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
7639
7640 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7641
7642         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
7643         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
7644
7645 2003-03-22    <johan AT balder>
7646
7647         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
7648
7649 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
7650
7651         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
7652         * doc/cdbfileformat.lyx: added, written by Lenny Story
7653         * doc/Makefile: added cdbfileformat.lyx
7654         * doc/clean.mk: added cdbfileformat.lyx
7655
7656 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
7657
7658         * src/mcs51/peeph.def: fix bug #705773
7659
7660 2003-03-20    <johan AT balder>
7661
7662         An sfr/sbit can have an "at #" AND an initializer
7663         * src/SDCCsymt.c (checkSClass):
7664         * src/SDCCmem.c (allocGlobal):
7665         * src/SDCCmem.c (allocLocal):
7666         * src/SDCCast.c (createBlock):
7667
7668 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
7669
7670         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
7671
7672 2003-03-16    <johan AT balder>
7673
7674         Undid the hackup of const and volatile, the problem is much bigger
7675         * src/SDCC.y:1.65
7676         * src/SDCCast.c:1.171
7677         * src/SDCCglue.c:1.138
7678         * src/SDCCicode.c:1.146
7679         * src/SDCCsymt.c:1.150
7680         * src/SDCCval.c:1.65
7681
7682 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
7683
7684         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
7685         * src/ds390/gen.c (genAddrOf): fixed bug #704087
7686
7687 2003-03-13    <johan AT balder>
7688
7689         Hackup const and volatile modifiers in type chains a bit:
7690         * src/SDCC.y:1.63
7691         * src/SDCCast.c:1.169
7692         * src/SDCCglue.c:1.136
7693         * src/SDCCicode.c:1.143
7694         * src/SDCCsymt.c1.146
7695         * src/SDCCsymt.h1.59
7696         * src/SDCCval.c:1.63
7697
7698 2003-03-12    <johan AT balder>
7699
7700         * src/SDCCBBlock.h: more LRH debugging junk
7701         * src/SDCCcflow.h: more LRH debugging junk
7702         * src/SDCCloop.c: more LRH debugging junk
7703         * src/SDCC.y (struct_declaration): fixed bug #697590
7704         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
7705         * src/ds390/gen.c (aopForRemat): fixed bug #700031
7706         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
7707
7708 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7709         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
7710         test function names must now match exactly).
7711         * src/SDCCcse.c: added special case in findCheaperOp to allow
7712         extending a short integer. Makes less awful code for bug 700121 test case.
7713
7714 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7715
7716         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
7717         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
7718
7719 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7720
7721         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
7722         actually called (operandsNotEqual() was called for all
7723         operandsNotEqualX tests).
7724
7725 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7726
7727         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
7728         with shorter literals. Fixes bug 700121.
7729
7730 2003-03-11    <johan AT balder>
7731
7732         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
7733
7734 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
7735
7736         * src/SDCCloop.c (mergeRegions): an evil beast is dead
7737         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
7738
7739 2003-03-10  Borut Razem <borut.razem AT siol.net>
7740
7741         * src/SDCCmain.c: pipe preprocessor's output
7742         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
7743         * sdcc_vc_in.h: define pclose as _pclose for WIN32
7744         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
7745         which closes all pipes in pipeSet set
7746         * src/SDCCset.c: free deleted item in function deleteSetItem()
7747         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
7748         moved from z80 to src subproject
7749         * .version: increased version number to 2.3.4
7750
7751 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
7752
7753         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
7754         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
7755         * support/regression/ports/xa51/spec.mk: fix typo
7756
7757 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
7758
7759         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
7760
7761 2003-03-09  Borut Razem <borut.razem AT siol.net>
7762
7763         * src/SDCCmain.c: pipe preprocessor's output
7764         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
7765         * sdcc_vc_in.h: define pclose as _pclose for WIN32
7766         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
7767         which closes all pipes in pipeSet set
7768         * src/SDCCset.c: free deleted item in function deleteSetItem()
7769         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
7770         moved from z80 to src subproject
7771
7772 2003-03-09  Borut Razem <borut.razem AT siol.net>
7773
7774         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
7775         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
7776         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
7777         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
7778         * src/SDCCglobl.h: unification of WIN32 native definitions
7779
7780 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7781
7782         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
7783
7784 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
7785
7786         * src/configure.in:   check for endianess (even while cross-compiling)
7787         * src/configure:      check for endianess (even while cross-compiling)
7788         * src/configure_in.h: check for endianess (even while cross-compiling)
7789         * src/avr/gen.c:        remove old endianess stuff
7790         * src/mcs51/gen.c:      remove old endianess stuff
7791         * src/ds390/gen.c:      remove old endianess stuff
7792         * src/pic/gen.c:        remove old endianess stuff
7793         * src/pic/genarith.c:   remove old endianess stuff
7794         * src/pic/glue.c:       fix endianess check
7795         * src/pic16/gen.c:      remove old endianess stuff
7796         * src/pic16/genarith.c: remove old endianess stuff
7797         * src/pic16/glue.c:     fix endianess check
7798         * src/xa51/gen.c:       remove old endianess stuff
7799         * src/z80/gen.c:        fix endianess check
7800         * src/SDCCglue.c:       fix endianess check
7801         * src/ds390/peeph.def: fix bug 700036
7802
7803 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
7804
7805         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
7806         * src/configure: find appropriate data-types on host for SDCC's int and long
7807         * src/configure.in: find appropriate data-types on host for SDCC's int and long
7808         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
7809         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
7810
7811 2003-03-07    <johan AT balder>
7812
7813         Just a big NOOP:
7814                 some minor cleanups before the big shot
7815                 OP_DEFS and OP_USES now use Kevin's protection
7816                 new option --nolabelopt
7817
7818         * src/SDCCBBlock.c:
7819         * src/SDCCast.c,:
7820         * src/SDCCcflow.c:
7821         * src/SDCCcse.c:
7822         * src/SDCCicode.c:
7823         * src/SDCCicode.h:
7824         * src/SDCClabel.c:
7825         * src/SDCCloop.c:
7826         * src/SDCCmain.c:
7827         * src/ds390/ralloc.c:
7828         * src/mcs51/ralloc.c:
7829         * src/pic/ralloc.c:
7830         * src/xa51/ralloc.c:
7831         * src/z80/ralloc.c:
7832
7833 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
7834
7835         * src/pic/pcode.c (get_op): fix 64 bit warnings
7836         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
7837         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
7838         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
7839         * support/regression/tests/malloc.c: fix 64 bit warnings
7840
7841 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
7842
7843         * src/mcs51/gen.c (genMinus): fixed bug 696436
7844
7845 2003-03-02  Borut Razem <borut.razem AT siol.net>
7846
7847         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
7848
7849 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
7850
7851         * configure.in: test for mkstemp
7852         * sdccconf_in.h: add HAVE_MKSTEMP
7853
7854 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
7855
7856         * device/include/ctype.h: removed warning while using --stack-auto
7857         * device/include/malloc.h: removed warning while using --stack-auto
7858         * device/include/string.h: removed warning while using --stack-auto
7859
7860 2003-02-23  Borut Razem <borut.razem AT siol.net>
7861
7862         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
7863         because NDEBUG is defined (see man assert)
7864         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
7865
7866 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7867
7868         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
7869         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
7870
7871 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7872
7873         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
7874         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
7875
7876 2003-02-18    <johan AT balder>
7877
7878         * as/mcs51/asmain.c (asmbl): module can start with a digit
7879         * as/z80/asmain.c (asmbl): module can start with a digit
7880
7881 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
7882
7883         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
7884         * src/asm.c: fix pipe() for Mingw32
7885
7886 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
7887
7888         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
7889         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
7890         make -V work again; --c1mode reads now from stdin
7891         * doc/sdccman.lyx: added --c1mode
7892         * support/Util/SDCCerr.c: new messages for c1 mode
7893         * support/Util/SDCCerr.h: new messages for c1 mode
7894         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
7895
7896 2003-02-15    <johan AT balder>
7897
7898         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
7899
7900 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
7901
7902         * doc/sdccman.lyx: Environment variables, -o and other minor things
7903
7904 2003-02-14    <johan AT balder>
7905
7906         * src/xa51/main.c: before anyone really tries to use it :)
7907
7908         * Install doc's in share/sdcc/doc
7909         * removed some obsolete files
7910         * Do a proper make distclean and uninstall
7911         M Makefile.common.in
7912         R sdccbuild.sh
7913         M as/Makefile
7914         M device/include/Makefile.in
7915         M device/lib/Makefile.in
7916         M doc/sdccman.lyx
7917         M link/Makefile
7918         M sim/ucsim/doc/Makefile.in
7919         M src/clean.mk
7920         R src/avr/peeph.rul
7921         R src/xa51/peeph.rul
7922         M support/cpp2/Makefile.in
7923         M support/makebin/Makefile
7924
7925
7926 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
7927
7928         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
7929
7930 2003-02-10  Borut Razem <borut.razem AT siol.net>
7931
7932         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
7933         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
7934         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
7935         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
7936         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
7937         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
7938         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
7939         src/z80/Makefile.bcc: Borland Makefile cleanup
7940         * as/z80/Makefile.bcc: Added Borland Makefile
7941         * support/cpp2/borland.h: Removed
7942
7943 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
7944
7945         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
7946         * src/SDCC.lex: new pragma NOIV
7947         * src/SDCCglobl.h: new pragma NOIV
7948         * src/SDCCmem.c: new pragma NOIV
7949
7950 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
7951
7952         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
7953
7954 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
7955
7956         * src/SDCCmain.c: signal handling is switched off by --debug
7957         * doc/Makefile: small fix for install; use clean.mk again
7958         * doc/clean.mk: clean *.pdf and *.html too
7959
7960 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
7961
7962         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
7963         * device/lib/printfl.c: fix a ds390 bug by making it portable
7964         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
7965         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
7966         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
7967         * debugger/mcs51/cmd.c: converted multi-line string literals
7968         * sim/ucsim/globals.cc: converted multi-line string literals
7969         * src/SDCCmain.c: introduced signal handler to remove temp files
7970         * doc/Makefile: small tweaks, implement clean
7971         * doc: removed generated files
7972
7973 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7974
7975         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
7976         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
7977         Address Record is not correctly generated for DS390."
7978
7979 2003-02-02  Borut Razem <borut.razem AT siol.net>
7980
7981         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
7982         * as/mcs51/asm.h: fixed compilation with Borland C
7983         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
7984         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
7985         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
7986         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
7987         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
7988         src/z80/Makefile.bcc: delete $(LIB) only if exist
7989         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
7990
7991 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
7992
7993         * device/include/malloc.h: introduced NULL
7994         * device/include/string.h: introduced NULL
7995         * device/include/stdlib.h: introduced NULL
7996         * device/lib/_memcpy.c: removed NULL
7997         * device/lib/_strcat.c: removed NULL
7998         * device/lib/_strchr.c: removed NULL
7999         * device/lib/_strcmp.c: removed NULL
8000         * device/lib/_strcpy.c: removed NULL
8001         * device/lib/_strcspn.c: removed NULL
8002         * device/lib/_strlen.c: removed NULL
8003         * device/lib/_strncat.c: removed NULL
8004         * device/lib/_strncmp.c: removed NULL
8005         * device/lib/_strncpy.c: removed NULL
8006         * device/lib/_strpbrk.c: removed NULL
8007         * device/lib/_strrchr.c: removed NULL
8008         * device/lib/_strspn.c: removed NULL
8009         * device/lib/_strstr.c: removed NULL
8010         * device/lib/_strtok.c: removed NULL
8011         * device/lib/malloc.c: removed NULL, include own header
8012
8013 2003-02-02    <johan AT balder>
8014
8015         * 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
8016         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
8017         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
8018         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
8019         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
8020         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
8021
8022 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8023
8024         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
8025         area 'DATA'"
8026
8027 2003-02-01    <johan AT balder>
8028
8029         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
8030
8031 2003-01-31    <johan AT CP255758-A>
8032
8033         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
8034
8035 2003-01-30    <johan AT balder>
8036
8037         * src/SDCCBBlock.c: automatic bug detection
8038         * src/SDCCicode.c: automatic bug detection
8039
8040 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8041
8042         * src/SDCCglobl.h:   now --xram-size 0 works
8043         * src/SDCCmain.c:    now --xram-size 0 works
8044
8045 2003-01-29    <johan AT balder>
8046
8047         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
8048
8049 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8050
8051         * as/mcs51/aslink.h: Added options --xram-size and --code-size
8052         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
8053         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
8054         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
8055         * src/SDCCglobl.h:   Added options --xram-size and --code-size
8056         * src/SDCCmain.c:    Added options --xram-size and --code-size
8057
8058 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
8059
8060         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
8061         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
8062
8063 2003-01-27    <johan AT balder>
8064
8065         * src/SDCC.y: fixed bug #613764
8066
8067 2003-01-26    <johan AT balder>
8068
8069         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
8070         * src/SDCCsymt.h: fixed bug #673374
8071         * src/SDCCglue.c: fixed bug #661910
8072         * src/SDCCast.c: fixed bug #458099 and 673374
8073
8074 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
8075
8076         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
8077         * as/mcs51/strcmpi.h: added
8078         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
8079         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
8080         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
8081         * as/mcs51/assym.c: strcmpi -> as_strcmpi
8082         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
8083         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
8084         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
8085         * as/mcs51/Makefile.aslink: new module strcmpi
8086         * as/mcs51/Makefile.asx8051: new module strcmpi
8087         * as/mcs51/Makefil.bcc: new module strcmpi
8088         * as/mcs51/Makefile.in: new module strcmpi
8089         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
8090
8091 2003-01-26    <johan AT balder>
8092
8093         * src/SDCCglue.c: reverted back to 1.124
8094         * src/SDCCast.c: reverted back to 1.156
8095         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
8096
8097 2003-01-25    <johan AT balder>
8098
8099         * src/SDCCglue.c: A better fix for bug #661910
8100         * src/SDCCast.c: A better fix for bug #661910
8101         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
8102
8103 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8104
8105         * src/Makefile.in: remove spawn.o
8106         * src/SDCCmain.c: remove spawn.h
8107         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
8108         * src/spawn.c: removed
8109         * src/spawn.h: removed
8110         * support/regression/ports/ds390/spec.mk: link with -r
8111
8112 2003-01-24    <johan AT CP255758-A>
8113
8114         * src/ds390/gen.c (aopOp): fixed bug #667458
8115         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
8116         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
8117         (createIvalCharPtr): an ival doesn't always have a storage class anymore
8118
8119 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8120
8121         * src/mcs51/peeph.def: better assembler identation by Frieder
8122         * src/mcs51/gen.c: better assembler identation by Frieder
8123
8124 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
8125
8126         * as/z80/string.h: removed for gcc 3.2
8127         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
8128         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
8129
8130 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8131
8132         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
8133         * src/SDCCpeeph.c (replaceRule): fix bug #663503
8134         * support/regression/Makefile: separate temp files for ports
8135         * support/regression/generate-cases.py: separate temp files for ports
8136         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8137         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8138
8139 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8140
8141         * moved tinitalk to device/examples/ds390
8142
8143 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
8144
8145         * as/mcs51/lkmem.c: rflag is for DS390
8146         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
8147         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
8148                          (linkEdit): move mem- and map-files the same way as ihx-files
8149         * src/z80/main.c (_setDefaultOptions): removed --generic
8150         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
8151         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
8152         * src/pic/glue.c (picglue): --c1mode works again
8153         * src/pic16/glue.c (pic16glue): --c1mode works again
8154         * src/asm.c (printCLine): fix #660034
8155
8156 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
8157
8158         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
8159         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
8160         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
8161         * as/mcs51/lkmem (summary): better fix for sp problem
8162         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
8163         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
8164         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
8165                                               remove --stack-after-data
8166
8167 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
8168
8169         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
8170         * src/SDCCutil.c (join): ugly bug: missing '\0'
8171         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
8172
8173 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8174
8175         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
8176         * src/port.h: typo
8177         * src/pic/main.c (_asmCmd): gpasm supports -o
8178         * src/z80/main.c: more general macros
8179         * device/lib/Makefile.in: remove intermediate files
8180
8181 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8182
8183         * .version: Bumped version number to 2.3.3
8184         * src/SDCCBBlock.c: new option -o
8185         * src/SDCCglobl.h: new option -o
8186         * src/SDCCglue.c: new option -o
8187         * src/SDCCmain.c: new option -o
8188         * src/asm.c: new option -o
8189         * src/ds390/main.c: new option -o
8190         * src/pic/glue.c: new option -o
8191         * src/pic/pcode.c: new option -o
8192         * src/pic/ralloc.c: new option -o
8193         * src/pic16/glue.c: new option -o
8194         * src/pic16/pcode.c: new option -o
8195         * src/pic16/ralloc.c: new option -o
8196         * src/z80/main.c: new option -o
8197         * device/lib/Makefile.in: use -o
8198         * support/regression/ports/ds390/spec.mk: use -o
8199         * support/regression/ports/gbz80/spec.mk: use -o
8200         * support/regression/ports/mcs51/spec.mk: use -o
8201         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
8202         * support/regression/ports/z80/spec.mk: use -o
8203         * support/regression/ports/ucz80/spec.mk: use -o
8204         * support/regression/ports/xa51/spec.mk: use -o
8205         * support/regression/fwk/lib/timeout.c: fix usage string
8206
8207 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
8208         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
8209
8210 2003-01-07    <johan AT balder>
8211
8212         * src/SDCCast.c (decorateType): fixed bug #600035
8213
8214 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
8215         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
8216         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
8217         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
8218         * src/pic/pcode.c: outcommented unused variable to remove warnings
8219         * src/pic/ralloc.c: outcommented unused variable to remove warnings
8220
8221 2003-01-06    <karl AT turbobit.com>
8222         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
8223    regression tests.
8224
8225 2003-01-06    <johan AT balder>
8226
8227         * src/SDCCicode.c: fixed array add
8228
8229 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
8230         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
8231         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
8232
8233 2003-01-04    <johan AT balder>
8234
8235         * src/SDCCval.c (getNelements): fixed the initialized array of structures
8236
8237 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8238         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
8239
8240 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8241         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
8242         * support/regression/tests/bug-524697.c: fit mem usage into 8032
8243
8244 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8245         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
8246
8247 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
8248         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
8249
8250 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
8251         * src/mcs51/main.c: removed {bindir}{sep} from aslink
8252
8253 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8254
8255     * in \sdcc\as\mcs51\ changed these files in order to create an
8256     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
8257     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
8258     following files to include the previous two files: aslink.dsp,
8259     Makefile.aslink, Makefile.bcc, and Makefile.in.
8260
8261     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
8262     .adb instead of .cdb
8263
8264 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8265
8266         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
8267         value from option --iram-size.
8268
8269 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8270
8271         * \sdcc\as\mcs51\lklist.c: added boundary check before using
8272         dram[] array.
8273
8274 2002-09-18    <wiml AT hhhh.org>
8275
8276         * SDCClrange.h: exposed setFromRange() and setToRange()
8277         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
8278           packRegsForAccUse() (bug 542397)
8279         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
8280           multiple times and emitting the fetch operations more than once
8281           added aopGetUsesAcc() function to allow binary operators to
8282           fetch their operands in the correct order; made genMinus() emit
8283           compact code for X = LITERAL - Y
8284
8285 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8286         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
8287         sprintf() in line 1267.
8288
8289 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8290         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
8291         like ports.
8292
8293 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8294         Changes to aslink (All the changes are marked with 'JCF'):
8295
8296         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
8297         summary().
8298
8299         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
8300         area BSEG.  Also moves, if possible, the DATA area down into the internal
8301         ram so more space is available.
8302
8303         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
8304         sflag.
8305
8306         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
8307         not bytes.  Function summary() which creates a memory usage summary
8308         file with extension .mem.  Reports of overlaping stack and small stack
8309         size.  If the space for the stack is less than 16 bytes aslink trows a
8310         warning.
8311
8312         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
8313         the 8051.  Option 'y' for memory summary output file.
8314
8315         Changes to sdcc (All the changes are marked with 'JCF'):
8316
8317         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
8318
8319         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
8320         overlaying area for it (uses RegBankUsed[4]).
8321
8322         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
8323         bank zero as used by default.  By default aslink locates the stack
8324         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
8325         the creation of the .mem file.  Delegates the allocation of data area
8326         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
8327         the begining of the stack area to aslink.
8328
8329         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
8330         glue() in SDCCglue.c creates an area for it.
8331
8332 2002-09-03  Borut Razem <borut.razem AT siol.net>
8333         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
8334         sdcc/src/pic/glue.c:
8335         introduced atexit() handler for teporay files removal in case of
8336         errors, assertions, ...
8337
8338 2002-08-29  Borut Razem <borut.razem AT siol.net>
8339         * sdcc/support/cpp2/auto-host_vc_in.h:
8340         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
8341         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
8342         Maybe there is a similar problem with BORLANDC? It should be checked!
8343
8344         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
8345         corrected improper use of assert: the assignment to clr variable was done inside the assert.
8346         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
8347         was not executed, and the compiler (cl) launched a warning:
8348         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
8349
8350 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8351         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
8352
8353 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
8354         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
8355
8356         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8357           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
8358           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
8359           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8360           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
8361           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
8362           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
8363         - added Release configuration in VS projects
8364         - review of compiler an linker options
8365         - VC .exe files are generated in bin_vc directory, not to interfere
8366           with binaries generated from other projects (cygwin, mingw, bcc ...)
8367
8368         * sdcc/src/yacc.dsp: added
8369
8370         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
8371         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
8372         and insert the version number definitions from .version
8373
8374         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
8375
8376         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
8377         added - genarate auto-host.h using auto-host_vc_in.h as template
8378
8379         * sdcc/sdcc_vc.h,
8380         removed from CVS, generated automatically
8381
8382 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
8383         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
8384
8385 2002-08-11  Borut Razem <borut.razem AT siol.net>
8386         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
8387
8388 2002-08-10  Borut Razem <borut.razem AT siol.net>
8389         * src/SDCCmain.c (main):
8390         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
8391         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
8392         The consequence was that some temporary files were not removed.
8393
8394         * src/SDCCglue.c:
8395         unification of code in functions tempfilename() and tempfile():
8396         function tempnam() is defined in Visual Studio 6.0 and .NET
8397
8398         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
8399
8400         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8401           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
8402         - removed compiler command line option /WX: Treats all warnings as errors
8403         - update a list of source files, included into the project
8404
8405         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8406           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
8407         changed project type to Generic Project so that can be correcly converted to VS.NET project
8408
8409         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
8410
8411         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
8412
8413         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
8414
8415         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
8416         added return 0 statements after assert() to make compiler happy
8417
8418         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
8419         added newline in the def file to keep MSC compiler satisfied
8420
8421         * sdcc/src/z80/gen.c:
8422         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
8423           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
8424         - solved MSC error in function aopDump()
8425
8426         * sdcc_vc.h: define PREFIX as "\\sdcc"
8427
8428 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
8429         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
8430
8431 2002-06-22  Scott Dattalo <scott AT dattalo.com>
8432         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
8433         - Rewrote the register banking algorithm.
8434         - Added pCode live-range analysis to registers (for now, only non-used and
8435         singly-used registers optimized away)
8436
8437         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
8438
8439         * 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.
8440
8441 2002-05-10  Scott Dattalo <scott AT dattalo.com>
8442         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
8443
8444 2002-04-22  Michael Hope  <michaelh AT vroom>
8445
8446         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
8447
8448         * configure.in (DD_COPT): Added include support required for gbdk.
8449
8450         * .version: Bumped version number just to increase it.
8451
8452         * src/SDCCmain.c: Added -nostdinc to the default options.
8453
8454 2002-04-15  Michael Hope  <michaelh AT vroom>
8455
8456         * device/lib/z80/printf.c (sprintf): Added.
8457
8458         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
8459
8460         * src/z80/peeph.def: Added transpose redundent load rule.
8461
8462         * src/z80/main.c: Added force callee saves for jaune.
8463
8464         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
8465
8466         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
8467
8468 2002-03-28  Johan Knol  <johan AT balder>
8469
8470         * src/SDCCval.c: fixed bug #532436
8471
8472 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8473         * /src/port.h:
8474         Added "char *Processor" field to the port structure.
8475
8476         * /src/SDCCmain.c:
8477         Added -p option. Allows port dependent processor to be specified.
8478
8479         * all ports:
8480         Initialized the new field char *Processor field to NULL in all ports
8481
8482         * /src/pic/*:
8483         Compiler generated registers for interrupt context saving
8484         were not getting allocated.
8485
8486 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
8487
8488         * /src/SDCCast.c:
8489         Fixed left shift. Will promote the left side of a left shift
8490         if a) left shifting more than size of operand or b) when assigned
8491         to something size > size of left side
8492
8493 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8494         * src/pic/*
8495         tons of changes. Register allocation has been
8496         rewritten. Added customization for the various PICs. Flow
8497         analysis is restructured. ...
8498
8499         * src/pic/device.h:
8500         Added
8501
8502         * src/pic/device.c:
8503         Added. device.c is a PIC port hack to accomodate variations
8504         in PIC devices.
8505
8506 2002-03-13  Michael Hope  <michaelh AT vroom>
8507
8508         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
8509
8510 2002-03-04  johanknol  <johanknol AT manik>
8511
8512         * /src/SDCCval.c: fixed
8513
8514         const unsigned char arr[][2] = { { 0, 1 } };
8515         t18.c:1: error: Initializer element is not constant
8516
8517 2002-03-04  bela  <bela AT manik>
8518
8519         * /device/include/mcs51reg.h:
8520         ds89c420 register definition update
8521
8522 2002-03-03    <johan AT FRIJA>
8523
8524         * support/Util/SDCCerr.c: did something, but don't no why anymore
8525
8526         * support/regression/tests/bug-524691.c: made it a little less shy
8527
8528         * src/SDCCast.c (decorateType): fixed bug #524697
8529
8530         * src/SDCCast.c: made some lineno improvements
8531
8532         * src/SDCCval.c (getNelements): changed warning to error
8533
8534         * src/SDCCglue.c (printIvalArray): changed warning to error
8535
8536         * src/SDCCicode.c: fixed a warning for mingw
8537
8538         * src/SDCCast.c (decorateType): fixed the << promotion for ops
8539
8540         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
8541
8542 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
8543
8544         * src/ds390/peeph.def:
8545         Added some more peephole rules
8546
8547         * src/ds390/gen.c: Various fixes & enhancements
8548
8549         * src/SDCClrange.c, src/SDCClrange.h:
8550         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
8551
8552         * src/ds390/ralloc.c:
8553         various fixes & enhancements (ds390) specific
8554
8555         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
8556         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
8557         from rallocs.
8558
8559         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
8560
8561 2002-03-02    <johan AT FRIJA>
8562
8563         * src/SDCCast.c (decorateType): fixed bug #524708
8564
8565         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
8566
8567         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
8568
8569 2002-03-01  Michael Hope  <michaelh AT vroom>
8570
8571         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
8572
8573         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
8574
8575 2002-03-01    <johan AT FRIJA>
8576
8577         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
8578
8579         * src/SDCCast.c (decorateType): fixed bug #524209
8580
8581         * src/SDCCval.c (valNot): fixed bug #524195
8582
8583 2002-02-26    <johan AT balder>
8584
8585         * src/xa51/gen.c: fixed a warning
8586
8587         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
8588
8589         * src/SDCCast.c (decorateType): fixed bug #522534
8590
8591 2002-02-23    <johan AT balder>
8592
8593         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
8594
8595 2002-02-22    <johan AT balder>
8596
8597         * src/SDCCast.c: fixed bug #514865
8598
8599         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
8600
8601 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
8602
8603         * sdcc/src/SDCCloop.c:
8604         Previous fix was not good. basic blocks that have "break" or "return" are
8605         not really partof a loop , but live ranges used in these blocks should
8606         be live thru the entire loop, so set partOfLoop but don't add them to
8607         loop region
8608
8609 2002-02-21    <johan AT FRIJA>
8610
8611         * src/SDCCcse.c: fixed bug #514308
8612
8613 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
8614
8615         * src/SDCCloop.c:
8616         Fixed BUG #519583. If a conditional block ended in a return/break
8617         statement inside a loop, it was not being considered part of the loop.
8618
8619         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
8620
8621 2002-02-10  Karl Bongers <karl AT turbobit.com>
8622
8623         * debugger/*:
8624         Fixed up SDCDB debugger somewhat.  Updated debugger/README
8625         with lots of comments and notes.
8626
8627         * device/examples/test2.c:
8628         Fix bug, "red" variable not being initialized(compiler complained).
8629
8630         * device/examples/Makefile, examples/test3.c:
8631         Add Makefile in device/examples folder, compiles test3.c
8632         for use as a multiple module SDCDB test case.
8633
8634         * sim/ucsim/cmd.src/cmdset.cc:
8635         Took out debug printfs in ucsim "next" command.
8636
8637         * sim/ucsim/xa.src:
8638         Karl and Johan start ucsim XA support.  Most dissassembly working,
8639         about 75% emulation done(plenty of work remaining).
8640
8641         * sim/ucsim/z80.src:
8642         Add Z80 support to ucsim, add test-ucz80 regression test,
8643         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
8644         Notice z80 compiler fails on examples/test3.c/crc code.
8645
8646 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
8647
8648         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
8649         Added support for --parms-in-bank1
8650
8651         * src/ds390/peeph.def:
8652         added a few more peephole optimzations
8653
8654         * src/ds390/main.c:
8655         1) added __builtin_inp & __builtin_outp used to read in data of given length
8656            from a memory mapped port
8657         2) added __builtin_memcmp
8658         3) added __builtin_swapw swap bytes of a short
8659
8660         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
8661         1) handle multiple send & receives from register bank1
8662         2) ralloc can now allocate DPTR1 to some liveRanges
8663
8664         * src/SDCCsymt.c, src/SDCCsymt.h:
8665         changes to handle multiple sends & receives
8666
8667         * src/SDCCptropt.h:
8668         added some pointer arithmetic optimization
8669
8670         * src/SDCCptropt.c:
8671         added some pointer arithmetic optimizations but not stable yet so not
8672         called from anywhere (will get this working shortly)
8673
8674         * src/SDCCopt.c: fixed for multiple sends & receives
8675
8676         * src/SDCCmain.c:
8677         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
8678         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
8679            set preprocessor defines (depending on options)
8680
8681         * src/SDCCicode.c, src/SDCCicode.h:
8682         changes made to handle multiple sends & receives
8683
8684         * src/SDCCglobl.h:
8685         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
8686
8687         * src/SDCCcse.c, src/SDCCcse.h:
8688         added function findbackward def (to be used in upcoming optimization)
8689
8690         * src/SDCCcflow.c, src/SDCCcflow.h:
8691         added function returnAtEnd - to determine if a basic block terminates with
8692         a RETURN iCode
8693
8694         * src/SDCCast.c, src/SDCCast.h:
8695         added option parms-in-bank1
8696
8697         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
8698         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
8699         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
8700         adjusted for --parms-in-bank1 option
8701
8702         * device/include/string.h:
8703         donot redefine "reentrant" keyword
8704
8705         * device/include/ds80c390.h: Added some more SFRs
8706
8707 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
8708
8709         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
8710
8711 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
8712
8713         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
8714
8715 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
8716
8717         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
8718
8719 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
8720
8721         * Added --xram-movc option
8722
8723 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
8724
8725         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
8726
8727 2002-01-11  Johan Knol
8728
8729         * Added math lib of Jesus Calvino-Fraga
8730
8731 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
8732
8733         * src/SDCCmain.c (processFile): fix processing of ../../src.c
8734         * support/regression/Makefile: new target test-mcs51-stack-auto
8735         * support/regression/ports/mcs51-stack-auto/spec.mk: added
8736
8737 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
8738
8739         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
8740
8741 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
8742
8743         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
8744
8745 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
8746
8747         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
8748
8749         * src/SDCCglue.h: add definition for printIvalChar()
8750
8751 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
8752
8753         * src/SDCCast.c: fix #498138 by Johan
8754
8755         * src/SDCCglue.c: fix #498138 by Johan
8756
8757 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
8758
8759         * support/regression/Makefile: fix clean
8760
8761         * support/regression/ports/ds390/support.c: fix transmission of last character
8762
8763 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
8764
8765         * /sdcc/src/ds390/gen.c:
8766         a) improved computing address of stack variable
8767         b) took out some #if 0 code
8768         c) improved parmBytes adjustment
8769         d) improved genPlusIncr & genMinusIncr
8770         e) genCmp could generate bad code (when left assigned to DPTR)
8771         f) Fixed bug in hasInc
8772
8773         * /sdcc/src/ds390/ralloc.c:
8774         a) packRegsForSupport could mess up live information (Fixed)
8775         b) packRegsDPTRuse could be incorrect for left & right shift
8776
8777         * /sdcc/src/mcs51/ralloc.c:
8778         packRegsForSupport could mess up the live information (Fixed)
8779
8780         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
8781
8782         * /sdcc/src/SDCCast.c:
8783         can reverse a loop even if function call is present as long
8784         as the loop control variable is local & is not passed as parameter
8785
8786 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
8787
8788         * /sdcc/ChangeLog: *** empty log message ***
8789
8790         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
8791         More builtin function additions for TININative
8792
8793         * /sdcc/src/ds390/ralloc.c:
8794         Had broken the regression testsuite
8795
8796         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
8797
8798         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
8799         Added funcattr hasStackParms will be set for reentrant functions when there
8800         are paramteres on the stack, this helps in minimizing frame pointer generation
8801         typeFromStr can handle function pointers now
8802
8803         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
8804         *** empty log message ***
8805
8806 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
8807
8808         * /src/ds390/gen.c, /src/ds390/main.c:
8809         More builtin function additions for TININative
8810
8811         * /src/ds390/ralloc.c:
8812         Had broken the regression testsuite
8813
8814         * /src/SDCCast.c: Fixed a bug in dumptree
8815
8816         * /src/SDCCsymt.c, /src/SDCCsymt.h:
8817         Added funcattr hasStackParms will be set for reentrant functions when there
8818         are paramteres on the stack, this helps in minimizing frame pointer generation
8819         typeFromStr can handle function pointers now
8820
8821         * /doc/builtins.txt, /doc/TININative.txt:
8822         *** empty log message ***
8823
8824
8825 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
8826
8827         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
8828         ALPHA version for -mTININative
8829
8830         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
8831         updated to reflect changes in the port structure
8832
8833         * /src/port.h:
8834         added function do_assemble (similar to do_link) if non-null this function
8835         will be called to do assembly (-mTININative) requires a multi command
8836         assembly
8837         added function genAssemblerEnd will be called to generate assembler Epilogue
8838
8839         * /src/SDCCsymt.c:
8840         added _JavaNative to debug info printing
8841
8842         * /src/SDCCmain.c: added option --tini-libid
8843         added port->do_assemble function (-mTININative) has a multi command assemble
8844
8845         * /src/SDCCglue.c: Disabled "constExpr" check
8846         added port->genAssemblerEnd function
8847
8848         * /src/SDCCglobl.h: Added option --tini-libid value
8849
8850         * /src/SDCCast.h:
8851         tookout optimizeCompare from the header (has no external references)
8852
8853         * /src/SDCCast.c: made one more function "static"
8854
8855 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
8856
8857         * src/z80/mappings.i: Added z80asm support.
8858
8859         * src/z80/main.c: Added z80asm support on --asm=z80asm
8860
8861         * src/z80/gen.c: Fixed asm portability issues.
8862
8863         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
8864
8865         * src/SDCCglue.c (printExterns): Added global/extern split.
8866
8867 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
8868
8869         * support/regression/Makefile: added test for mcs51 model large
8870
8871         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
8872
8873         * support/regression/ports/gbz80/spec.mk: added -mgbz80
8874
8875 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
8876
8877         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
8878
8879 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
8880
8881         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
8882
8883         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
8884
8885 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
8886
8887         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
8888
8889         * support/regression/tests/simplefloat.c: Port to mcs51.
8890
8891 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
8892         * support/regression/tests/bug-485362.c: Added.
8893
8894         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
8895
8896         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
8897
8898         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
8899
8900         * src/z80/gen.c (aopDump): Added a dump function.
8901
8902 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
8903         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
8904
8905         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
8906
8907         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
8908
8909         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
8910
8911         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
8912
8913         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
8914
8915         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
8916
8917         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
8918
8919         * support/regression/ports/ds390/support.c: Use tinibios.
8920
8921         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
8922
8923 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
8924
8925         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
8926         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
8927
8928         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
8929
8930         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
8931
8932 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
8933
8934         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
8935
8936         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
8937         (packRegsForIYUse): Created and optimised.
8938
8939 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
8940
8941         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
8942 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
8943
8944         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
8945
8946         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
8947
8948         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
8949
8950 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
8951
8952         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
8953
8954         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
8955
8956 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
8957
8958         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
8959
8960         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
8961
8962         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
8963
8964 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
8965
8966         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
8967         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
8968         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
8969
8970         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
8971
8972         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
8973         (genNotFloat): Added.
8974         (genUminusFloat): Added.
8975
8976         * device/lib/z80/Makefile: Added floating pt stubs.
8977
8978         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
8979
8980         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
8981
8982         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
8983
8984 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
8985
8986         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
8987
8988         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
8989
8990         * sdcc/support/regression/Makefile: Add port ds390.
8991
8992         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
8993
8994         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
8995
8996         * sdcc/support/regression/ports/ds390/spec.mk: Added.
8997
8998         * sdcc/support/regression/ports/ds390/support.c: Added.
8999
9000         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
9001
9002         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
9003
9004         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
9005
9006 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9007
9008         * device/include/malloc.h: Added z80 and gbz80 support.
9009
9010         * device/lib/gbz80/heap.s: Added.
9011
9012         * device/lib/z80/heap.s: Added.
9013
9014         * device/lib/malloc.c: Added z80 and gbz80 support.
9015
9016         * support/regression/tests/malloc.c (testMalloc): Added.
9017
9018         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
9019
9020         * support/regression/tests/bug-478094.c: Added.
9021
9022         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
9023
9024 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
9025
9026         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
9027
9028         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
9029
9030         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
9031
9032         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
9033
9034         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
9035
9036 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9037
9038         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
9039
9040 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
9041
9042         * support/regression/tests/bug-477927.c: Added.
9043
9044         * src/z80/peeph.def: Added minor rules.
9045
9046         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
9047
9048         * src/z80/peeph.def: Added jump optimisation modification.
9049
9050 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
9051
9052         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
9053
9054 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
9055
9056         * support/regression/tests/funptrs.c: Added.
9057
9058 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
9059
9060         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
9061
9062 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
9063
9064         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
9065
9066         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
9067
9068         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
9069         (movLeft2ResultLong): Created.
9070
9071         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
9072         (joinPushes): Added.  Joins two char pushes into a word push.
9073
9074 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
9075
9076         * support/cpp2/Makefile.in (install): Added creation of dest dir.
9077
9078         * support/makebin/Makefile (install): Added creation of dest dir.
9079
9080 2001-10-24 Karl Bongers <karl AT turbobit.com>
9081
9082         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
9083
9084 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
9085
9086         * src/z80/ralloc.c: Turned off faulty pack for one use.
9087
9088         * src/z80/peeph-gbz80.def: Removed redundent restart options.
9089
9090         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
9091
9092 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
9093
9094         * support/regression/Makefile: Improved clean
9095
9096         * support/regression/ports/gbz80/spec.mk: Added clean
9097
9098         * support/regression/ports/host/spec.mk: Added clean
9099
9100         * support/regression/ports/z80/spec.mk: Added clean
9101
9102         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
9103
9104         * support/regression/ports/mcs51/timeout.c: little improvements
9105
9106 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
9107
9108         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
9109
9110         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
9111
9112         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
9113
9114 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
9115
9116         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
9117
9118         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
9119
9120 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
9121         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
9122
9123         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
9124
9125         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
9126
9127         * src/mcs51/main.c (_linkCmd): Added bin path to command.
9128
9129         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
9130
9131         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
9132
9133         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
9134
9135         * support/regression/tests/longor.c: Added.
9136
9137 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
9138
9139         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
9140
9141         * as/mcs51/aslink.h: define PATH_MAX
9142
9143         * as/mcs51/asm.h: define PATH_MAX
9144
9145         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
9146
9147         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
9148
9149         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
9150
9151         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
9152
9153         * src/SDCCglobl.h: define PATH_MAX
9154
9155         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
9156
9157         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
9158
9159 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
9160
9161         * src/z80/gen.c (gencjneshort): Fixed
9162
9163         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
9164
9165 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
9166
9167         * support/regression/tests/bug-469671.c: Added.
9168
9169         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
9170
9171 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
9172
9173         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
9174
9175         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
9176
9177 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
9178
9179         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
9180
9181         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
9182
9183         * src/device/lib/_mullong.c : removed hint: nooverlay bug
9184
9185         * src/device/lib/_divuint.c : removed hint: nooverlay bug
9186
9187         * src/device/lib/_divulong.c: removed hint: nooverlay bug
9188
9189         * src/device/lib/_moduint.c : removed hint: nooverlay bug
9190
9191         * src/device/lib/_modulong.c: removed hint: nooverlay bug
9192
9193 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
9194
9195         * 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.
9196
9197         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
9198
9199         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
9200
9201 2001-10-07    <johan AT FRIJA>
9202
9203         * device/lib/gets.c (gets): fixed the return value.
9204
9205 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
9206         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
9207
9208         * 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.
9209
9210         * 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.
9211
9212         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
9213
9214         * src/pic/gen.c: Removed Safe_strdup.
9215
9216         * configure.in: Added option to enable libgc support.
9217
9218         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
9219         (bitVectUnion): Optimised.
9220         (bitVectIntersect): Optimised.
9221         (bitVectBitsInCommon): Optimised.
9222         (bitVectCplAnd): Optimised.
9223
9224         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
9225
9226 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9227
9228         * src/SDCCmain.c: distinguish between assembler debug and plain options
9229
9230         * src/avr/main.c:   remove standard assembler options
9231
9232         * src/ds390/main.c: remove standard assembler options
9233
9234         * src/mcs51/main.c: remove standard assembler options
9235
9236         * src/port.h: removed "PENDING" comment
9237
9238 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9239
9240         * src/device/lib/_mulint.c  : new, with assember functions
9241
9242         * src/device/lib/_mullong.c : new, with assember functions
9243
9244         * src/device/lib/_divuint.c : with assember functions
9245
9246         * src/device/lib/_divsint.c : with assember functions
9247
9248         * src/device/lib/_divulong.c: with assember functions
9249
9250         * src/device/lib/_divslong.c: with assember functions
9251
9252         * src/device/lib/_moduint.c : with assember functions
9253
9254         * src/device/lib/_modsint.c : with assember functions
9255
9256         * src/device/lib/_modulong.c: with assember functions
9257
9258         * src/device/lib/_modslong.c: with assember functions
9259
9260         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
9261
9262         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
9263
9264         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
9265                                       replaced _mululong.c and _mulslong.c by _mullong.c
9266
9267 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9268
9269         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
9270
9271 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9272
9273         * src/SDCCglue.c: test, if win32api is available for MINGW
9274
9275 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9276
9277         * src/SDCCsymt.c: no more _modifier in printTypeChain()
9278         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
9279         * support/regression/ports/gbz80/spec.mk: removed GENERIC
9280         * support/regression/ports/host/spec.mk: removed GENERIC
9281         * support/regression/ports/mcs51/spec.mk: removed GENERIC
9282         * support/regression/ports/z80/spec.mk: removed GENERIC
9283
9284 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
9285
9286         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
9287
9288         * support/regression/tests/bug-467035.c: Created.
9289
9290 2001-10-01    <johan AT FRIJA>
9291
9292         * src/SDCC.y: fixed bug #466586 part 1
9293
9294 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
9295
9296         * SDCCicode.c: z80 has no generic pointers
9297         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
9298
9299 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
9300
9301         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
9302
9303 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
9304
9305         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
9306
9307         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
9308
9309 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
9310
9311         * configure.in: Fixed up so that ucsim is only configured once.
9312
9313         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
9314
9315         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
9316         (getPathDifference): As above.
9317
9318         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
9319
9320         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
9321
9322 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
9323         * .version: Updated to 2.3.1
9324
9325         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
9326         Added copyright header.
9327
9328         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
9329         (assemble): Added support for macro based assembler commands.
9330         (linkEdit): Added support for macro based linker commands.
9331         (preProcess): Changed the pre-processor to use macros.
9332         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
9333         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
9334
9335         * device/lib/z80/crt0.s: Added module name for debugging.
9336
9337 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
9338
9339         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9340
9341         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
9342
9343         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
9344
9345         * src/Makefile.in: Added SDCCmacro and SDCCutil
9346
9347 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
9348
9349         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9350
9351 2001-09-16    <johan AT FRIJA>
9352
9353         * 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.
9354
9355 2001-09-15    <johan AT FRIJA>
9356
9357         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
9358         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
9359
9360 2001-09-11    <johan AT FRIJA>
9361
9362         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
9363
9364 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
9365
9366         * support/regression/tests/bug-460444.c: Added test case.
9367
9368         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
9369         (genCast): Added justification for all of the asserts.
9370
9371 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
9372
9373         * support/regression/support.c: _xdata replaced by xdata
9374
9375         * support/regression/spec.mk: removed _generic
9376
9377 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
9378
9379         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
9380
9381         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
9382         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
9383
9384         * src/z80/peeph.def: Added a rule to optimise shift then compare.
9385
9386         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
9387
9388         * support/regression/tests/bug-460010.c: Added test case.
9389
9390         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
9391
9392 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
9393
9394         * support/regression/Makefile: inter-port-clean adjusted for mcs51
9395
9396         * support/regression/testfwk.c: removed workaround for bug #436344
9397
9398         * support/regression/tests/bp.c: use less memory with mcs51
9399
9400         * support/regression/tests/bug-441448.c: use less memory
9401
9402         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
9403
9404         * support/regression/collate-results.py: typo
9405
9406 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
9407
9408         * support/regression/tests/fetchoverlap.c: Added new test case.
9409
9410         * support/regression/tests/bp.c: Added new test case.
9411
9412         * support/regression/tests/bug-448984.c: Added new test case.
9413
9414         * support/regression/tests/pow2shifts.c: Added new test case.
9415
9416         * src/z80/gen.c: Turned off the noise it normally generates for the release.
9417         (genlshTwo): Fixed right shift for count > 8.
9418
9419         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
9420
9421 2001-09-08    <johan AT FRIJA>
9422
9423         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
9424
9425 2001-09-07    <johan AT FRIJA>
9426
9427         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
9428
9429         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
9430
9431 2001-09-06    <johan AT FRIJA>
9432
9433         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
9434         * bernhard noted me at this: "() equals to (void)" (1.38)
9435
9436 2001-09-05    <johan AT FRIJA>
9437
9438         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
9439
9440 2001-09-04    <johan AT FRIJA>
9441
9442         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
9443
9444
9445 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
9446
9447         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
9448
9449 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
9450
9451         * link/z80/aslink.h: Fixed path for PATH_MAX
9452
9453 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
9454
9455         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
9456
9457         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
9458
9459         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
9460
9461         * 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.
9462
9463 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
9464
9465         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
9466         (genCmp): Fixed up genCmp for the GB with longs.
9467
9468         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
9469
9470         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
9471
9472         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
9473
9474         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
9475
9476 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
9477
9478         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
9479
9480 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
9481
9482         * 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.
9483
9484         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
9485
9486 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
9487
9488         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
9489
9490         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
9491
9492 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
9493
9494   * sim/ucsim/configure:    little improvement of Cygwin-detection
9495   * sim/ucsim/configure.in: little improvement of Cygwin-detection
9496   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
9497   * support/regression/tests/bug-221100.c: small changes for mcs51
9498   * support/regression/tests/bug-221168.c: small changes for mcs51
9499   * support/regression/tests/bug-227710.c: small changes for mcs51
9500   * support/regression/tests/staticinit.c: small changes for mcs51
9501   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
9502   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9503   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9504
9505 $Revision$