* src/pic16/glue.c (pic16_print(G)PointerType): do not flush
[fw/sdcc] / ChangeLog
1 2005-08-12 Raphael Neider <rneider AT web.de>
2
3         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
4           db-statements in order to allow for arrays of pointers in code
5           sections to be placed without interspersed 0-padding, fixes
6           bug #1256215
7         * (emitStatistics): fixed division by zero for pic18f1220
8         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
9           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
10         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
11         * (pic16_pCodeConstString): keep track of already emitted string
12           literals to prevent "duplicate definitions of symbol _str_NR"
13         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
14           debug message
15         * device/lib/Makefile.in: ignore failing PIC16 library builds
16         * device/lib/pic16/Makefile: do not build if gputils are missing
17         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
18
19 2005-08-10 Raphael Neider <rneider AT web.de>
20
21         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
22           my last commit)
23
24 2005-08-10 Raphael Neider <rneider AT web.de>
25
26         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
27           Rokas' patch to add the new fixed point type "__fixed16x16"
28         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
29           functions for __fixed16x16 arithmetics
30         * device/lib/pic16: reimplemented the build system to support
31           a separate build directory, better handling of libio (create
32           the library in a separate subdir for each architecture) and
33           easier configuration (centralized in Makefile.common)
34
35 2005-08-07 Raphael Neider <rneider AT web.de>
36
37         * src/pic16/gen.c (genrshTwo): fixed sign extension
38         * src/pic16/device.c: added pic18f2320, 4220 and 4320
39         * device/include/pic16/pic18f2220.h: changed some bit definitions,
40           added T0CONbits
41         * device/include/pic16/pic18f4220.h: NEW, header for
42           pic18f4220 and pic18f4320
43         * device/include/pic16/pic18fregs.h: added new devices,
44           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
45         * device/include/pic16/signal.h: resolved name clashes
46           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
47           to also allow testing for interrupt enable bits, added
48           comments on how to use the macros
49         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
50         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
51           register definitions for the devices
52         * device/lib/pic16/pics.all: added new devices
53         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
54           allocated memory
55         * device/lib/pic16/libc/stdlib/memfree: do not count
56           the block header as free memory
57         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
58           simplified and added missing end-of-blocklist-marker
59           (reported by Peter Onion, fixes #1252814)
60         * (_mergeHeapBlock): fixed loop condition
61         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
62           len==0, restructured code
63         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
64           up a bit, reduced bitfield accesses, prevent endless loops
65           in case of heap corruption
66         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
67           "unreferenced arguments/must return a value" warnings
68         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
69           replaced BAUDREG with SPBRG
70         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
71           device/lib/pic16/debug/gstack/gstack.c: replaced
72           _naked, _asm, _endasm with __naked, __asm, __endasm
73
74 2005-08-05 Raphael Neider <rneider AT web.de>
75
76         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
77           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
78
79 2005-08-05 Borut Razem <borut.razem AT siol.net>
80
81         * device/lib/Makefile.in: added missing ';'
82         * configure: removed ^M characters
83
84 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
85
86         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
87           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
88           License
89
90 2005-08-04 Borut Razem <borut.razem AT siol.net>
91
92         * configure.in: pic16 libraries build 2nd try - enable running
93           configure in device/lib/pic16
94         * configure: regenerated from configure.in
95         * device/lib/Makefile.in: create $(PORT)/bin directory
96
97 2005-08-03 Raphael Neider <rneider AT web.de>
98
99         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
100           to get/set values via pointers
101         * (genUnpackBits,genPackBits): changed detection of
102           ptr->bitfield vs. sym.bitfield, fixed access via generic
103           pointers, removed dead (wrong) code for multibyte bitfields
104         * (genNearPointerGet, genGenPointerGet): removed useless code,
105           fixed bitfield detection, fixes #1250594
106         * (genNearPointerSet): removed useless code
107         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
108           and introduced macro pic16_emitpcode that conditionally emits
109           the origin of the following pCode (useful for debugging SDCC)
110         * src/pic16/pcode.c: changed (and disabled) some debug outputs
111         * (createDefmap): fixed handling of LFSR for --optimize-df
112
113 2005-08-02 Borut Razem <borut.razem AT siol.net>
114
115         * device/lib/Makefile.in: pic16 libraries build enabled since
116           gputils-0.13.2 are now localy installed at sourceforge's compile farm
117
118 2005-08-02 Raphael Neider <rneider AT web.de>
119
120         * src/pic16/gen.c (genPackBits): removed deprecated warning
121         * (genGenPointerSet): fixed bitfield detection
122
123 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
124
125         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
126
127 2005-07-31 Raphael Neider <rneider AT web.de>
128
129         * device/lib/pic16/libdev/pic18f458.c,
130           device/include/pic16/pic18f458.h: added missing T0CONbits
131
132 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
133
134         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
135
136 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
137
138         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
139
140 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
141
142         * device/include/mcs51/at89c51ed2.h: added.
143
144 2005-07-23 Raphael Neider <rneider AT web.de>
145
146         * src/pic/gen.h: added emitpcode macro for debugging
147         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
148           and replace by macro adding debug information on demand
149         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
150         * (gencjne): tried to fix; replaced with correct (slower) code
151         * (gen{Unp,P}ackBits): fixed single bit access
152         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
153         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
154           previous instruction
155         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
156           register has to be handled with care (forbidding movement
157           of assignments/uses, removing assignments completely, ...)
158         * (pCodeOptime2pCodes): make use of regIsSpecial
159         * added lots of debugging output (commented out)
160         * src/pic/rallloc.c (deassignLRs): prevent operand registers
161           from being reused as result UNLESS it is known to work
162
163 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
164
165         * support/Util/dbuf.h: include <stddef.h> for size_t
166         * .version: changed to version 2.5.2
167
168 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
169
170         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
171
172 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
173
174         * src/hc08/gen.c (genMinus): fixed bug #1241835,
175           (genModOneByte): removed needless psha/pula
176
177 2005-07-22 Raphael Neider <rneider AT web.de>
178
179         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
180           have PIC14 handled like PIC16, fixes broken pic14 linker calls
181         * src/pic/gen.c (resolveIfx): do not "invent" labels
182         * (genSkipc): changed to positive logic
183         * (genSkipCond): removed as no longer needed
184         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
185           backport from PIC16
186         * (genLeftShift): check operands are in different registers
187         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
188           INCF does not update CARRY...
189         * src/pic/main.c: fixed _linkCmd
190         * src/pic/pcode.c (unlinkpCode): added inactive code
191         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
192           alive (do not assign result and operand overlapping registers)
193
194 2005-07-22 Raphael Neider <rneider AT web.de>
195
196         * src/pic/device.c (dump_sfr): replaced register declaration with
197           call to emitSymbolToFile() to avoid duplicate symbols
198         * (assignRelocatableRegisters): do not declare external symbols
199         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
200           right (take size of type, not etype)
201         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
202         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
203         * (packRegsForAccUse): disabled assignment of WREG as
204           the result reg to prevent occurence of just fixed #1235003,
205           fixes #1242954
206         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
207           symbols (avoids duplicate symbols in .asm file)
208         * (pic14emitRegularMap): use emitSymbolToFile()
209         * src/pic/gen.c (aopOp): fixed spillLocation handling
210         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
211         * (genDataPointerSet): removed unneccessary variables/output
212
213 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
214
215         * as/mcs51/lkarea.c: enlarged codemap for banked memory
216         * device/lib/mcs51/crtbank.asm: added # to 0x0F
217
218 2005-07-21 Raphael Neider <rneider AT web.de>
219
220         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
221           architecture cannot handle them efficiently, fixes bug #1235003
222         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
223           check for empty sets before using them (fixes bug #1232190)
224
225 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
226
227         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
228           (lnksect2): generate warnings for memory overlap
229         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
230           constseg to set the name of these segments so you can instruct the linker
231           to place them in banks
232         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
233         * src/SDCCglobl.h: added MODEL_HUGE to enum,
234           added code_seg and const_seg to options
235         * src/SDCCglue.c (emitMaps): use options.const_seg,
236           (createInterruptVect): put interrupt vectors in segment HOME,
237           (glue): put HOME before static segment and put the main glue in HOME,
238           (glue): use options.code_seg
239         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
240         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
241           these segments so you can instruct the linker to place them in banks
242           (linkEdit): use code_loc for HOME segment which should be the first
243           segment in code memory now
244         * src/SDCCmem.c: fixed more stuff like bug 1238386
245         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
246           (changePointer): don't change function pointers to code pointers for
247           banked functions,
248           (compareType): added exceptional check for banked function pointers
249         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
250         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
251           after static in code memory
252         * src/mcs51/gen.c: added aopLiteralLong prototype,
253           (aopForSym): use getSize for functions,
254           (genCall): generate banked calls over one trampoline __sdcc_banked_call
255           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
256           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
257           the segment,
258           (genPcall): use call for literal function pointers and generate banked
259           calls over the one trampoline so there's only one place for the user to
260           modify according to his/hers hardware,
261           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
262           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
263         * src/mcs51/main.c: added keyword banked,
264           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
265         * support/Util/SDCCerr.c,
266         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
267           needed for passing the bank and address to the trampoline
268         * device/lib/mcs51/crtbank.asm: added for bankswitching
269         * device/lib/mcs51/Makefile: added crtbank
270
271 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
272
273         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
274           for fields at offset 0 of a struct or union as reported
275           on 2005-07-07 in the developer mailing list.
276
277 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
278
279         * src/SDCCmem.c: fixed bug 1238386
280
281 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
282
283         * src/mcs51/peeph.def: added labelrefcounting for peepholes
284           (patch #1144962), added peephole 300, enabled 259.x
285         * doc/sdccman.lyx: removed screenshot and provided link instead
286
287 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
288
289         * doc/sdccman.lyx: added section about debugging with ddd
290         * doc/figures/ddd_example.eps: screenshot of debugging session
291
292 2005-07-04 Raphael Neider <rneider AT web.de>
293
294         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
295           like CODE pointers, fixes #1115683
296         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
297           call, fixes bugs #1232211, #1228110,
298           fixed wrong casts to pCodeFlow from pCodeInstructions
299
300 2005-07-04 Raphael Neider <rneider AT web.de>
301
302         * src/pic/gen.c (popGet): changed assert to allow for
303           bit operands
304         * (popGetAddr): changed signature to provide
305           an additional index, patched all call sites
306         * (genCmpEq): handle literal-like operands correctly
307         * (genAddrOf): added sanity checks on __code/__data pointers
308         * (genAssign): added handling of symbols from __code section
309         * (gencjne): do not generate code for comparisons whose result
310           is neither stored nor used, fixes bug #1171114
311         * (AccLsh, AccRsh): operate on operand instead of WREG
312         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
313           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
314           by known count
315         * rewrote complete shift-by-literal logic, commented unused
316           functions out
317         * (genConstPointerGet): get multiple bytes (if result size > 1),
318           fixed handling of non-immediate addresses
319         * (genPointerGet): handle CODE pointers like CONST pointers
320         * (genpic14Code): insert C-SRC lines as Cource-pCodes
321         * ({aop,op}_isLitLike): NEW, single place to decide whether an
322           operand is to be treated as a literal or not
323         * (mov2w,genPcall,genCmpEq),
324           src/pic/genarith.c: use aop_isLitLike() to decide between
325           literal/register contents
326         * (addSign): added missing offset
327         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
328           only emit comment in debug-mode,
329           use {aop,op}_isLitLike throughout the file
330         * src/pic/glue.c: fix initializers for pointers (work in progress)
331         * src/pic/pcode.c (get_op): honor index on _const symbols
332         * ({reset,dump}pCodeStatistics): NEW, estimate code size
333         * (dumppBlock): added pCode size estimation
334         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
335           check for IS_SYMOP before OP_SYMBOL'ing
336         * fixed indentation, compacted switch-statements
337         * (allocReg): find free register and allocate it instead of
338           allocating new registers all the time
339         * (deassignLRs): prevent POINTER_GET's from being assigned the same
340           registers as its operands (necessary only for multibyte GETs)
341
342 2005-07-01 Raphael Neider <rneider AT web.de>
343
344         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
345           debugging .asm-output macros FENTRY + FEXIT
346         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
347           way... I wonder...
348         * (emitpComment): NEW, printf to pCode
349         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
350           offset handling
351         * (popGetAddr): NEW, variant of popGet to access an immediates
352           high(er) bytes instead of the n'th byte of memory they reference,
353           replaced popGet with popGetAddr where neccessary
354         * (genDataPointerGet): reactivated and fixed implementation
355         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
356           accesses
357         * (genDataPointerSet): fixed multibyte assignments
358         * (genpic14Code): fixed --i-code-in-asm handling
359         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
360         * (genPlus): fixed index-out-of-bounds error
361         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
362         * src/pic/ralloc.c: added debugging output macro FENTRY2
363         * (spillThis): fixed indentation, enbraced for-body for clarity
364         * (rematStr): commented out as now unused
365         * (regTypeNum): commented out special spill case (overwrites
366           arbitrary values)
367         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
368
369 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
370
371         * doc/sdccman.lyx: documented sfr16/sfr32,
372           added example for using storage class with function pointers
373         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
374
375 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
376
377         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
378         * device/lib/_itoa.c,
379         * device/lib/_ltoa.c: optimized codesize
380         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
381           but don't know how to suppress the double warning.
382         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
383         * support/Util/SDCCerr.c,
384         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
385
386 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
387
388         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
389           fixed old K&R prototypes
390         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
391         * device/lib/_gptrget.c,
392         * device/lib/_gptrgetc.c,
393         * device/lib/_gptrput.c: changed versions for new memory indicator values,
394           also new versions for small generic pointers and banked generic pointers
395         * src/port.h: added const_name
396         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
397         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
398         * src/SDCCcse.c (findPrevIc): check all associative operators
399         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
400         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
401         * src/SDCCmem.c: updated comments,
402           set far-space to 0 for pdata, results in optimized code
403         * src/SDCCmem.h: added macro CONST_NAME
404         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
405           moving the info into the highest bits, see also gptrget/gptrput
406         * src/src.dsp: added sdcc.ico to project files
407         * src/avr/gen.c (genCast): fixed bug 0x%d
408         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
409         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
410           relation between ptr_type and DCL_TYPE,
411           (genCast): fixed bug 0x%d
412         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
413           (CODE)" for const_name
414         * src/hc08/gen.c (genCast): fixed bug 0x%d
415         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
416           (hc08_port): added "CONST (CODE)" for const_name
417         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
418           (aopForRemat, adjustArithmeticResult): disconnected direct relation
419           between ptr_type and DCL_TYPE,
420           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
421           operand* and took AOP() inside function so sfr-ness can be checked,
422           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
423           new prototype,
424           (genFunction, genEndFunction): optimized stack setup,
425           (genMinus): optimized for literals with ending zeroes (in bytes),
426           (genCast): fixed bug 0x%d
427         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
428           (mcs51_port): added "CONST (CODE)" for const_name
429         * src/mcs51/peeph.def: made rule 226 more generic
430         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
431         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
432         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
433         * src/z80/main.c (z80_port): added NULL for const_name,
434           (gbz80_port): added NULL for const_name
435         * support/regression/tests/bug663539.c,
436         * support/regression/tests/sfr16.c: new tests
437
438 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
439
440         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
441
442 2005-06-24 Raphael Neider <rneider AT web.de>
443
444         * device/lib/pic16/libdev/pic18f[68][567]20.c:
445           corrected typos...
446         * device/include/pic16/signal.h: added USBIF
447           and SIG_USB
448
449 2005-06-24 Raphael Neider <rneider AT web.de>
450
451         * device/lib/pic16/libdev/pic18f2455.c,
452           device/include/pic16/pic18f2455.h: NEW
453         * device/include/pic16/pic18fregs.h,
454           device/lib/pic16/pics.all,
455           src/pic16/device.c: added 18f2455
456         * device/lib/pic16/libdev/pic18f[68][567]20.c,
457           device/include/pic16/{pic18f[68][567].h,usart.h}:
458           replaced MULTIPLE_USARTS define with more relaible
459           compatibility sfrs (for USART access)
460
461 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
462
463         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
464           and the output asm file line is printed on two lines.
465
466 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
467
468         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
469           BGT, BLE, BHI, and BLS instructions
470         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
471           genCmpEq): removed
472         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
473           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
474           fixes bug #1216342
475         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
476
477 2005-06-15 Raphael Neider <rneider AT web.de>
478
479         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
480         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
481         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
482           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
483           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
484
485 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
486
487         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
488           Marcel Telka in bug #1215704
489
490 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
491
492         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
493           located in shared memory bank.
494
495 2005-05-31 Raphael Neider <rneider AT web.de>
496
497         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
498           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
499           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
500
501 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
502
503         * device/lib/_strncpy.c: fixed the fix
504
505 2005-05-26 Raphael Neider <rneider AT web.de>
506
507         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
508           initializers with \0, bug #1208187
509         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
510           intializers with \0, bug #1208187
511
512 2005-05-26 Raphael Neider <rneider AT web.de>
513
514         * src/pic16/glue.c (pic16_printIvalChar): fixed string
515           initializers with \0, bug #1208187
516         * src/pic16/main.c (_process_pragma): added sanity checks
517           for stack position and size, emit warnings when appropriate
518
519 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
520
521         * device/lib/_strncpy.c: fixed not filling with \0
522
523 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
524
525         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
526           createFunction),
527         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
528           compound_statement),
529         * src/SDCCsymt.h,
530         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
531
532 2005-05-24 Raphael Neider <rneider AT web.de>
533
534         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
535
536 2005-05-24 Raphael Neider <rneider AT web.de>
537
538         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
539           TRISE definitions, closes bug #1162453
540
541 2005-05-22 Raphael Neider <rneider AT web.de>
542
543         * src/pic16/main.c (_process_pragma): check for missing
544           arguments to pragmas code and udata
545         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
546           consistency fixes to match other headers (thanks to Jim Paris)
547         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
548
549 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
550
551         * src/SDCCicode.c (isOperandEqual): fixed missing ;
552
553 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
554
555         * support/regression/tests/bug1198642.c: new test
556         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
557         * src/SDCCcse.c (findPrevIc): added comment, please have a look
558         * support/scripts/resource.h,
559         * support/scripts/resource.rc,
560         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
561         * support/scripts/sdcc.ico: added 32x32 icon
562
563 2005-05-18 Raphael Neider <rneider AT web.de>
564
565         * device/lib/pic16/libdev/pic18f*.c,
566         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
567           keywords to "__sfr" and "__at (X)"
568         * device/include/pic16/pic18fregs.h: added pic18f4520
569         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
570           #1203088 (MPLAB compatibility)
571
572 2005-05-17 Raphael Neider <rneider AT web.de>
573
574         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
575         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
576         * device/lib/pic16/pics.all: added new devices
577         * src/pic16/device.c: added support for pic18f4520
578
579 2005-05-16 Raphael Neider <rneider AT web.de>
580         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
581         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
582         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
583           convenience function for bit access
584
585 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
586
587         * device/lib/printf_large.c: fixed bug 1193299
588         * support/regression/tests/bug1057979.c: added test %3.3s
589
590 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
591
592         * device/include/mcs51/8051.h,
593         * device/include/mcs51/8052.h: made parseable with lint
594         * device/include/mcs51/lint.h: added include file for (sp)lint
595         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
596         * doc/cdbfileformat.lyx,
597         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
598
599 2005-05-14 Raphael Neider <rneider AT web.de>
600
601         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
602         * device/lib/pic16/libc/stdlib/itoa.c (new)
603         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
604         * device/lib/pic16/libio/Makefile: exclude subdir according to
605           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
606         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
607         * src/pic16/gen.c (genFunction): prevent annoying warning
608         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
609           nameclashes on BeOS
610         * support/cpp2/cppmain.c (cpp_output_string): new
611         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
612           fixes bug 1116802
613
614 2005-05-13 Borut Razem <borut.razem AT siol.net>
615
616         * src/SDCCmain.c (linkEdit): fixed bug 1195202
617
618 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
619
620         * .version: changed to version 2.5.1; back to bleeding edge development
621
622 2005-05-11 Borut Razem <borut.razem AT siol.net>
623
624         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
625           generate PDF version 1.3 documents
626
627 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
628
629         * .version: changed to version 2.5.0
630
631 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
632
633         * doc/sdccman.lyx: updated weblinks, index and smaller updates
634
635 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
636
637         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
638         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
639         well as many smaller updates.
640         * .version: changed to version 2.5.0-pre1
641
642 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
643
644         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
645
646 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
647
648         * support/regression/tests/bug1185672.c: added
649         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
650           bug 1185672
651         * src/mcs51/gen.c (genCall): added comments, made it look safer
652         * src/mcs51/gen.c (genEndFunction): simplified
653
654 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
655
656         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
657
658 2005-04-14 Borut Razem <borut.razem AT siol.net>
659
660         * fixed bug 1045046 - SIGSEGV with really simple code?:
661           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
662           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
663
664 2005-04-14 Borut Razem <borut.razem AT siol.net>
665
666         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
667           src/pic16/device.h: temporarily disabled experimental #inline pragma
668           for 2.5.0 release
669
670 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
671
672         * device/include/z80/stdio.h,
673         * device/include/z80/string.h: removed these highly incomplete files so
674           SDCC can use the default ones in device/include/
675
676 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
677
678         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
679         gcc warning.
680         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
681         fix sdcpp warnings.
682
683 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
684
685         * device/include/malloc.h: removed redundant __reentrant prototypes
686         * device/lib/_mullong.c: added working xstack variant in asm (C version
687           doesn't pass regression tests)
688         * device/lib/bpx.c: used __data and made bpx char for mcs51
689         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
690           (createFunction): fixed bug with xstackPtr
691         * src/SDCCcse.c: corrected comments
692         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
693           (killDeadCode, eBBlockFromiCode): removed unused code
694         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
695           corrected comments
696         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
697           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
698           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
699           (genModOneByte): fixed warning in MSVC
700         * src/mcs51/main.c (): added comments
701         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
702
703 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
704
705         * src/SDCCmain.c (linkEdit): oops, changed one line too many
706
707 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
708
709         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
710
711 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
712
713         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
714         characters arrays of larger size than the declared one.
715
716 2005-04-10 Borut Razem <borut.razem AT siol.net>
717
718         * src/pic/gen.c (genInline),
719           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
720           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
721           (findNextInstruction), (findPrevInstruction),
722           (findInstructionUsingLabel),
723           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
724         * src/pic/pcode.c (findLabel): added missing '\n'
725         * src/src.dsp: added SDCCdwarf2.c to the project
726
727 2005-04-09 Borut Razem <borut.razem AT siol.net>
728
729         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
730
731 2005-04-08 Raphael Neider <rneider AT web.de>
732
733         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
734           into the chain after a given one) and mergeDefmapSymbols (combine
735           defmap entries for each symbol per pcode)
736         * (createDefmap): have defmap entries merged in the end
737         * (defmapReplaceSymRef): split defmap entries covering two accesses to
738           a symbol before replacing one access type's symbol, merge symbols in
739           the end (replacement symbol might already have an entry)
740         * (assignValnums): keep reference to written WREG intact
741
742 2005-04-08 Raphael Neider <rneider AT web.de>
743
744         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
745           Alpha)
746
747 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
748
749         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
750         bytes
751
752 2005-04-07 Raphael Neider <rneider AT web.de>
753
754         * device/include/pic16/usart.h: added compatibility defines for
755           devices with more than one USART
756         * device/include/pic16/pic18f[68][567]20.h: activated above defines
757
758 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
759
760         * device/lib/Makefile.in: updated for port specific include
761
762 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
763
764         * support/regression/ports/mcs51/spec.mk: added mcs51 include
765
766 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
767
768         * device/include/8051.h,
769         * device/include/8052.h,
770         * device/include/at89S8252.h,
771         * device/include/at89c55.h,
772         * device/include/at89x051.h,
773         * device/include/at89x51.h,
774         * device/include/at89x52.h,
775         * device/include/mcs51reg.h,
776         * device/include/reg51.h,
777         * device/include/reg764.h,
778         * device/include/regc515c.h,
779         * device/include/sab80515.h: (re)moved these 12 files
780         * device/include/mcs51/8051.h,
781         * device/include/mcs51/8052.h,
782         * device/include/mcs51/at89S8252.h,
783         * device/include/mcs51/at89c55.h,
784         * device/include/mcs51/at89x051.h,
785         * device/include/mcs51/at89x51.h,
786         * device/include/mcs51/at89x52.h,
787         * device/include/mcs51/mcs51reg.h,
788         * device/include/mcs51/reg51.h,
789         * device/include/mcs51/reg764.h,
790         * device/include/mcs51/regc515c.h,
791         * device/include/mcs51/sab80515.h: and added them here
792
793 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
794
795         * device/include/stdarg.h: changed SDCC specific keywords to double
796           underlined form.
797         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
798           mcs51 and ds390.
799         * device/include/hc08/mc68hc908gp32.h,
800         * device/include/hc08/mc68hc908jb8.h,
801         * device/include/hc08/mc68hc908jkjl.h,
802         * device/include/hc08/mc68hc908qy.h: fixed comments
803         * device/include/mcs51/README: updated
804         * device/include/mcs51/c8051f120.h: added PINRSF
805         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
806         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
807           amidst code. Also inline is not supported.
808
809 2005-04-06 Raphael Neider <rneider AT web.de>
810
811         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
812         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
813           callers stack/frame pointers
814
815 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
816
817         * device/include/pic16/usart.h: added, missing in previous commit,
818         * device/include/pic16/adc.h: fixed typo,
819         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
820         commit,
821         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
822         <p18fxxx.inc>
823         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
824         uninitialized because a bug appears with gplink
825         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
826         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
827         complains for unrecognised option
828
829 2005-04-05 Raphael Neider <rneider AT web.de>
830
831         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
832           structs as well (using memcpy)
833         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
834           on ISRs (GOTO has no label)
835         * src/pic16/device.h: added OF_OPTIMIZE_DF
836         * src/pic16/main.c: added compiler switch --optimize-df to enable the
837           new data flow analysis/optimization
838         * src/pic16/pcode.c: added (prototypes for and implementation of)
839           dataflow analysis functions, fixed pCodeInstructions' inCond and
840           outCond values, made RCALL a branch instruction
841         * (pic16_unlinkpCode): keep C line if possible
842         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
843           C line moved if possible
844         * (pic16_getRegFrompCodeOp): NEW, improved version of...
845         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
846           to use new pic16_getRegFrompCodeOp (works for more SFRs)
847         * (pic16_BuildFlow): fixed skip instructions with label (did not start
848           new flow)
849         * (pic16_getJumptabpCode): NEW, needed in...
850         * (LinkFlow): fixed handling of jumptables, calls and conditional
851           branches
852         * (pic16_InsertCommentAfter): NEW
853         * (pic16_pCodeReplace): made verbose and flow preserving
854         * (AnalyzeFlow): added call to data flow analysis
855         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
856         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
857         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
858
859 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
860
861         * src/SDCCast.c (decorateType): fixed bug #1105626
862
863 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
864
865         * device/include/asm/pic16/features.h,
866         * pic18f*.h headers,
867         * device/include/pic16/adc.h,
868         * device/include/pic16/delay.h,
869         * device/include/pic16/i2c.h,
870         * device/include/pic16/malloc.h,
871         * device/include/pic16/stdio.h,
872         * device/include/pic16/stdlib.h,
873         * device/include/pic16/string.h,
874         * device/lib/pic16/libc/stdio/printf_tiny.c,
875         * device/lib/pic16/libc/stdio/printf_small.c,
876         * device/lib/pic16/libc/stdio/strmgpsim.c,
877         * device/lib/pic16/libc/stdio/strmmssp.c,
878         * device/lib/pic16/libc/stdio/strmusart.c,
879         * device/lib/pic16/libc/stdio/vfprintf.c,
880         * device/lib/pic16/libc/stdlib/ltoa.c,
881         * device/lib/pic16/libc/stdlib/putchar.c,
882         * device/lib/pic16/libc/stdlib/x_ftoa.c,
883         * device/lib/pic16/libc/stdlib/memchrpgm.c,
884         * device/lib/pic16/libc/stdlib/memchrram.c,
885         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
886         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
887         * device/lib/pic16/libio/adc/adcbusy.c,
888         * device/lib/pic16/libio/adc/adcread.c,
889         * device/lib/pic16/libio/adc/adcsetch.c,
890         * device/lib/pic16/libio/usart/ubaud.c,
891         * device/lib/pic16/libio/usart/ubusy.c,
892         * device/lib/pic16/libio/usart/udrdy.c,
893         * device/lib/pic16/libio/usart/uopen.c,
894         * device/lib/pic16/libio/usart/uputc.c,
895         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
896         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
897         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
898         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
899         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
900         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
901         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
902         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
903         specific keywords to double underlined form,
904         * device/lib/pic16/libc/Makefile.rules,
905         * device/lib/pic16/libsdcc/Makefile.rules,
906         * device/lib/pic16/libm/Makefile,
907         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
908         to compile with C standard set in Makefile.common
909         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
910         rand.c and crc.c in compilation process,
911         * device/lib/pic16/libsdcc/int/divuint.c,
912         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
913         `c' from signed to unsigned,
914         * device/lib/pic16/startup/crt0.c,
915         * device/lib/pic16/startup/crt0i.c,
916         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
917         keywords to double underlined form, bug fixes in _do_cinit function
918         which prevented the correct initialization of the .idata segment,
919         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
920         core to enter a infinite loop
921         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
922
923 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
924
925         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
926
927 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
928
929         * device/include/Makefile.in: add support for hc08 subdirectory
930         * device/include/hc08/: new subdirectory
931         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
932         Lucas Loizaga, thanks!
933         * device/include/hc08/mc68hc908qy.h,
934         * device/include/hc08/mc68hc908gp32.h,
935         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
936         their own directory. Changed internal macro names to use the compiler
937         reserved namespace. Changed SDCC specific keywords to double
938         underlined form.
939         * device/include/math.h,
940         * device/include/malloc.h,
941         * device/include/stdarg.h,
942         * device/include/stdbool.h
943         * device/include/string.h,
944         * device/include/tinibios.h,
945         * device/include/ds400rom.h,
946         * device/include/8051.h,
947         * device/include/8052.h,
948         * device/include/80c51xa.h,
949         * device/include/at89c55.h,
950         * device/include/at89S8252.h,
951         * device/include/at89x51.h,
952         * device/include/at89x52.h,
953         * device/include/ds80c390.h,
954         * device/include/reg764.h,
955         * device/include/regc515c.h,
956         * device/include/sab80515.h,
957         * device/include/mcs51/c8051f000.h,
958         * device/include/mcs51/c8051f018.h,
959         * device/include/mcs51/c8051f020.h,
960         * device/include/mcs51/c8051f040.h,
961         * device/include/mcs51/c8051f060.h,
962         * device/include/mcs51/c8051f120.h,
963         * device/include/mcs51/c8051f300.h,
964         * device/include/mcs51/c8051f310.h,
965         * device/include/mcs51/c8051f320.h,
966         * device/include/mcs51/c8051f330.h,
967         * device/include/mcs51/c8051f350.h,
968         * device/include/z180.h: Changed SDCC specific keywords to double
969         underlined form.
970
971 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
972
973         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
974         18F4455,
975         * (pic16_assignConfigWordValue): disable testing of configuration
976         register value with config mask,
977         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
978         function with port->fun_prefix,
979         * (genFunction): when generating a naked interrupt function never
980         create an absolute segment placed in interrupt vector address, place
981         the actual interrupt function at IVA instead, when an interrupt
982         function is generated with unspecified interrupt then do not create
983         the absolute section,
984         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
985         code for generating a call to generic pointer get/put function with
986         a call to function pic16_callGenericPointer(),
987         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
988         the call to the generic pointer get/put functions with prefixing the
989         function name with port->fun_prefix,
990         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
991         * src/pic16/main.c (_process_pragma): prefix function with
992         port->fun_prefix,
993         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
994         calling assembler, old 18Fxxxx macro is deprecated,
995         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
996         PC_ASMDIR in while condition,
997         * (findInstruction): add PC_ASMDIR in while condition,
998         * (buildCallTree): prefix main with port->fun_prefix,
999         * (pic16_pCode2str): fixed bug that didn't emit the memory access
1000         identifier for variable with banked access in instructions BTFSS,
1001         BTFSC, BCF, BSF, BTG
1002         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
1003         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
1004         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
1005         perform optimization when enviroment variable NO_REG_OPT is set,
1006         * (insideLRBlock): NEW, return 1 if register is inside an
1007         INF_LOCALREGS block,
1008         * (RemoveRegFromLRBlock): remove a register that is completely
1009         eliminated by register optimization, but it is still left in local
1010         register store/restore in/from stack block,
1011         * (Remove2pcodes): after removing register, check to see if it
1012         should be removed from local register store/restore in/from stack
1013         block,
1014         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
1015         DUMMY_READ_VOLATILE,
1016
1017         * device/include/pic16/adc.h: minor prototype modifications and
1018         update,
1019         * device/include/pic16/malloc.h: added GPL notice various
1020         modifications,
1021         * device/include/pic16/stdint.h: NEW, standard header for ints
1022         * device/include/pic16/delay.h: NEW, header for delay functions,
1023         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
1024         delay1mtcy,
1025         * device/include/pic16/signal.h: NEW, header providing helper macros
1026         for implementing signal handlers,
1027         * device/include/pic16/stdio.h: added prototypes for functions,
1028         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
1029         prototypes for stdin and stdout, added macro PUTCHAR to
1030         automatically implement putchar function prototype,
1031         * device/include/pic16/usart.h: modified and updated USART library,
1032         * device/lib/pic16/libio/adc/,
1033         * device/lib/pic16/libio/i2c: some modifications to improve library
1034         performance,
1035         * device/lib/pic16/libc/stdio/: modifications for the new printf*
1036         family of functions,
1037         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
1038         family of functions and other sources,
1039         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
1040         of the PIC18Fxx[28] devices,
1041         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
1042         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
1043         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
1044         _do_cinit function, because the previous failed when local variables
1045         where not placed in the same memory bank,
1046         * device/lib/pic16/libsdcc/char/: various modifications to improve
1047         library performance,
1048         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
1049         information on the new functions of the c library and more...
1050
1051 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1052
1053         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
1054
1055 2005-03-26 Raphael Neider <rneider AT web.de>
1056
1057         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
1058           if condition == CARRY)
1059         * (genCmp): adapted to new genSkipc semantics
1060         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
1061           on rIfx (genCmp was broken)
1062
1063 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1064
1065         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
1066         * src/z80/main.c (_keywords[]),
1067         * src/SDCCglobal.h (struct options),
1068         * src/SDCC.y,
1069         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
1070         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
1071         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
1072         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
1073         always available in leading double underscore form. The C99 support is
1074         mostly missing, but it's a start.
1075         * support/regression/tests/bug-227710.c: fixed nonconforming use of
1076         reserved identifier "__data".
1077
1078 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
1079
1080         * src/mcs51/peeph.def: fixed bug 1170013
1081
1082 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
1083
1084         * device/include/mcs51reg.h: fixed bug 842007
1085
1086 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1087
1088         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
1089         last time.
1090
1091 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1092
1093         * src/port.h (struct PORT),
1094         * src/avr/ralloc.c (avr_assignRegisters),
1095         * src/avr/main.c,
1096         * src/ds390/ralloc.c (ds390_assignRegisters),
1097         * src/ds390/main.c,
1098         * src/hc08/ralloc.c (hc08_assignRegisters),
1099         * src/hc08/main.c,
1100         * src/mcs51/ralloc.c (mcs51_assignRegisters),
1101         * src/mcs51/main.c,
1102         * src/pic/ralloc.c (pic14_assignRegisters),
1103         * src/pic/main.c,
1104         * src/pic16/ralloc.c (pic16_assignRegisters),
1105         * src/pic16/main.c,
1106         * src/xa51/ralloc.c (xa51_assignRegisters),
1107         * src/xa51/main.c,
1108         * src/z80/ralloc.c (z80_assignRegisters),
1109         * src/z80/ralloc.h,
1110         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
1111         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
1112         * src/SDCCcse.h,
1113         * src/SDCCdflow.c (computeDataFlow),
1114         * src/SDCCdflow.h,
1115         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
1116         * src/SDCCloop.h,
1117         * src/SDCCcflow.c (*),
1118         * src/SDCCcflow.h,
1119         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
1120         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
1121         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
1122         immedDom() returning wrong block; probably fixes bug #1160833)
1123
1124 2005-03-20 Borut Razem <borut.razem AT siol.net>
1125
1126         * support/scripts/inc2h.pl: WIN32 port
1127
1128 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
1129
1130         * device/lib/makefile.in: added abs.c and labs.c
1131
1132 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
1133
1134         * device/include/stdint.h: added
1135         * device/lib/abs.c: added
1136         * device/lib/labs.c: added
1137         * device/include/stdlib.h: added abs() and labs() prototypes
1138         * device/lib/libsdcc.lib: added abs and labs
1139         * device/include/float.h,
1140         * device/lib/_fsmul.c,
1141         * device/lib/printf_fast.c,
1142         * device/lib/printf_tiny.c: updated comments
1143
1144 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1145
1146         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
1147         bug #1164313
1148
1149 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1150
1151         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
1152         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
1153
1154 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
1155
1156         * device/lib/printf_large.c: removed inline assembly for portability and
1157           readability. Use printf_fast if speed or size are more important.
1158         * src/pic16/gen.c: removed conditions around use of DEBUGpc
1159         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
1160
1161 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
1162
1163         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
1164         prevent compiler warning
1165
1166 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
1167
1168         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
1169         moved to level 0 and declared as static. Also they are explicit
1170         placed in access bank. This was necessery because some times they
1171         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
1172         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
1173         optimizations. Currently only compare to unsigned char is implemented,
1174         * src/pic16/gen.c: added fReturnIdx array,
1175         * (struct resolvedIfx) is moved to gen.h and made public,
1176         * (struct _G): added sregsAlloc and sregsAllocSet fields,
1177         * (aopForSym): added an optimization to directly store in stack of
1178         the operand of a SEND iCode,
1179         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
1180         but as registers instead (AOP_REG) using the fReturnIdx array,
1181         * (pic16_freeAsmop): remove the freed register from the
1182         _G.sregsAlloc field,
1183         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
1184         a compare of 'WREG',
1185         * (pic16_popGetTempRegCond): changed function prototype, now
1186         function takes also a bitVector argument v which holds the current
1187         set of registers that are allocated for stack access by aopForSym,
1188         registers allocated in aopForSym for accessing stack symbols are not
1189         any more part of the functions usedRegs field,
1190         * (genCall): some times aopOp is called for a stack variable to be
1191         send, aopForSym might perform the push, if this is true make sure
1192         that genCall doesn't push the variable twice by testing _G.resDirect,
1193         * (genFunction): changed testing for unspecified interrupt number
1194         from 256 to INTNO_UNSPEC,
1195         * modified selection scheme of frame pointer generation. Previously
1196         if function did use local registers a frame pointer was generated,
1197         now a frame pointer is generated only if function has arguments
1198         (that need PLUSW2 register access), or has stack arguments, or the
1199         compiler is not instructed to omit the frame pointer,
1200         * (genEndFunction): before restoring local registers that were saved
1201         in the function preamble, also restore the registers that *might*
1202         have been allocated for stack access,
1203         * (genRet): removed some old comments,
1204         * (genCmp, the active (RN's) version): added a call to the
1205         pic16_genCmp_special function to perform the compare with a more
1206         robust and optimized way,
1207         * (genInline): a feature has been added in inline code generation,
1208         which allows a wildcard variable substitution when writing inline
1209         assembly. Code is incomplete and experimental therefore undocumented,
1210         * (genCast): changed order of aopOp for result and right to allow
1211         aopForSym to directly load the result if possible,
1212         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
1213         perform an optimized compare on some selected special occasions,
1214         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
1215         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
1216         generate an IVT any more,
1217         * src/pic16/main.c (pic16_optionsTable): added command line option
1218         --optimize-cmp,
1219         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
1220         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
1221         macros,
1222         * src/pic16/NOTES: Raphael Neider added in list of active developers
1223         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
1224         jumptable_end to prevent bug #,
1225         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
1226         inCond and outCond fields,
1227         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
1228         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
1229         turn off register spilling,
1230         * (packRegsForOneUse): synced with other ports' versions although it
1231         is not used currently,
1232         * (pic16_packRegisters): added an optimization while reading
1233         structure bitfields, some registers may be saved (malloc code is
1234         decreased by 80 bytes)
1235
1236 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
1237
1238         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
1239         left is a bitfield, if yes, then don't optimize assignment. Perhaps
1240         this can be optimized more?
1241
1242 2005-03-10 Raphael Neider <rneider AT web.de>
1243
1244         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
1245           genNearPointerGet): (hopefully) fixed access to bitfields via
1246           pointers (p->bitN = x; and x = p->bitN; failed)
1247
1248 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
1249
1250         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
1251
1252 2005-03-09 Raphael Neider <rneider AT web.de>
1253
1254         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
1255
1256 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
1257
1258         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
1259         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
1260           (regTypeNum): set REG_BIT type if necessary
1261         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
1262         * support/regression/tests/critical.c: check bug 1144613
1263
1264 2005-03-02 Raphael Neider <rneider AT web.de>
1265
1266         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
1267
1268 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1269
1270         * src/avr/ralloc.c (serialRegAssign),
1271         * src/ds390/ralloc.c (serialRegAssign),
1272         * src/hc08/ralloc.c (serialRegAssign),
1273         * src/mcs51/ralloc.c (serialRegAssign),
1274         * src/pic/ralloc.c (serialRegAssign),
1275         * src/pic16/ralloc.c (serialRegAssign),
1276         * src/xa51/ralloc.c (serialRegAssign),
1277         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
1278
1279 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
1280
1281         * src/SDCCast.c (decorateType): fixed bug 1124787
1282
1283 2005-02-20 Hubert Sack <sack AT digiplan.de>
1284         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1285
1286         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
1287         patch #1121755
1288
1289 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1290
1291         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
1292         to keep the correct label reference count when adding/removing references
1293         to labels. A peephole file using this is appended to patch #1144962.
1294
1295 2005-02-14 Raphael Neider <rneider AT web.de>
1296
1297         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
1298         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
1299         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
1300           retrievals of result operand's value on assignment
1301
1302 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
1303
1304         * device/include/pic16/string.h: modified prototype for memccpy()
1305         to memccpy(void *, void *, char, size_t)
1306         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
1307         check whether to omit frame pointer or not,
1308         * (genInline): convert all occurences of "\n" to LF in inline
1309         assembler blocks, this helps formatting the inline text,
1310         * (pic16_loadFSR0): modified prototype,
1311         * (genNearPointerGet, genNearPointerSet): reorganization of code,
1312         removed some 8051 legacy code,
1313         * (genPackBits): enabled handling bitfields exceeding one byte in size,
1314         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
1315         before allocating temporary registers in functions,
1316
1317 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1318
1319         * support/regression/tests/bitvars.c: corrected the "fix"
1320
1321 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1322
1323         * support/regression/tests/bitvars.c,
1324         * support/regression/tests/bitwise.c,
1325         * support/regression/tests/rotate.c: "fixed" problems on Alpha
1326
1327 2005-02-10 Raphael Neider <rneider AT web.de>
1328
1329         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
1330           different size for Alpha
1331         * src/pic16/gen.c (genCmpEq) : improved compare with 0
1332
1333 2005-02-09 Raphael Neider <rneider AT web.de>
1334
1335         * src/SDCC.lex(doPragma) : save and restore warning options as well
1336           (also added new stack plus clone- and copyAndFreeSDCCERRG())
1337         * have #pragma less_pedantic set the errorlevel to WARNING
1338           (fixes #1117001)
1339         * (cloneOptimize) : fixed wrong malloc's size
1340         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
1341           facilitate correct handling of #pragma (save|restore)
1342
1343 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1344
1345         * src/mcs51/gen.c: removed non-standard C nameless struct/union
1346
1347 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
1348
1349         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
1350
1351 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
1352
1353         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
1354
1355 2005-02-02 Raphael Neider <rneider AT web.de>
1356
1357         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
1358         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
1359         * (pic16_storeForReturn): fixed to allow returning function pointers
1360         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
1361         * device/include/pic16/{stddef.h,stdbool.h}: added
1362
1363 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
1364
1365         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
1366
1367 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
1368
1369         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
1370         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
1371          appeared to be required
1372
1373 2005-01-31 Borut Razem <borut.razem AT siol.net>
1374
1375         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
1376           include/mcs51 and include/z80 directories to the package
1377
1378 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1379
1380         * src/hc08/gen.c (genFunction): fixed bug #1112752
1381
1382 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1383
1384         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
1385
1386 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1387
1388         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
1389
1390 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
1391
1392         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
1393
1394 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
1395
1396         * device/include/c8051fxxx.h: removed these 6 files
1397         * device/include/mcs51/c8051fxxx.h: added these 11 new files
1398
1399 2005-01-26 Raphael Neider <rneider AT web.de>
1400
1401         * src/pic16/gen.c (genAssign): fixed assignment from longs
1402           in codespace (were cut to three bytes)
1403         * (genDummyRead): implemented (except for CODESPACE...),
1404           fixed bug #1108575
1405         * src/pic16/glue.c (emitStatistics): beautified
1406         * device/lib/pic16/libm/Makefile: added include path
1407
1408 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1409
1410         * src/z80/gen.c (aopPut): fixed bug #1103902
1411
1412 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1413
1414         * device/lib/expf.c: fixed bug #1095792
1415
1416 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
1417
1418         * device/lib/pic16/libm: added Math library sources
1419
1420 2005-01-24 Raphael Neider <rneider AT web.de>
1421
1422         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
1423           to enable upcast to pCodeOpReg2 (there is no type tag to
1424           differenciate the two and pic16_popGet2p cast into PCOR2)
1425         * src/pic16/main.c (_process_pragma): fixed another malloc bug
1426           (sizeof(sectNames) changed to sizeof(sectName))
1427           Both patches fix segfaults under MinGW.
1428
1429 2005-01-23 Raphael Neider <rneider AT web.de>
1430
1431         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
1432           Safe_[mc]?alloc()'ed variables
1433         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
1434           of (byte sized) temporaries (assign them to WREG for now)
1435         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
1436           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
1437           this might fix SIGSEGVs on MinGW...
1438         * src/SDCCopt.c (killDeadCode): restored original behaviour
1439           (volatile operands might get thrown away though)
1440
1441 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
1442
1443         * src/pic16/gen.c: fixed bug #1106975,
1444         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
1445         pointer update, INTCON is saved, global interrupts are disabled and
1446         restored after updateing TOS.
1447         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
1448         * added function attribute 'shadowregs' to take advantage of shadow
1449         registers,
1450         * added function attribute 'wparam' as an alternative to the wparam
1451         pragma,
1452         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
1453         user declares a non-ISR function as 'shadowregs',
1454         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
1455
1456 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
1457
1458         * .version: bumped version number to 2.4.8
1459         * device/lib/pic16/pics.all: list of PIC18F devices supported by
1460         pic16 port,
1461         * device/lib/pic16/libio/i2c/: I2C module support library,
1462         * device/include/pic16/i2c.h: I2C support library header,
1463         * device/lib/pic16/libc/stdio/: standard IO support sources,
1464         * (printf_small.c): printf_small() source, supports float print,
1465         * (printf_tiny.c): printf_tiny() source, does not support floats,
1466         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
1467         enable global optimizations for entire library source, other
1468         Makefiles in the source tree are also modified to reflect this,
1469         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
1470         function,
1471         * doc/sdccman.lyx: updated to reflect new changes,
1472         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
1473         sym->onStack if-case,
1474         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
1475         sbit, idata, _idata, xdata, _xdata,
1476         * added pragma library, to link an external library, (see doc),
1477         * removed command line options, --pomit-config-words, --pomit-ivt,
1478         --pleave-reset-vector,
1479         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
1480         when calling assembler to reflect memory model used, also define
1481         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
1482         reflect stack model used,
1483         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
1484         on stack return NULL,
1485
1486 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1487
1488         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
1489           of the operands is volatile. Fixes #1020220
1490
1491 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1492
1493         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
1494         * (OptimizeRegUsage): make sure that there is really no other flow where
1495           the first pCode is used
1496
1497 2005-01-22 Raphael Neider <rneider AT web.de>
1498
1499         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
1500           to fix #1106967 (pCode->seq are not set up correctly)
1501
1502 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1503
1504         * src/SDCCglue.c (glue): make sure code area is declared before the
1505         static initialization area.
1506
1507 2005-01-21 Raphael Neider <rneider AT web.de>
1508
1509         * device/lib/Makefile.in: fixed test for pic16 install dir
1510         * device/lib/pic16/*/Makefile*: modified compile flags to enable
1511           optimizations
1512         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
1513           added --optimize-goto compiler switch and pragma wparam documentation
1514         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
1515         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
1516           and PRODH closing bug #1071770 (peephole optimizer)
1517
1518 2005-01-19 Raphael Neider <rneider AT web.de>
1519
1520         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
1521           cmdLine buffers (used when calling sdcpp...) are large enough
1522           (MAX_PATH=256 truncates arguments leading to system halts when
1523           used in MinGW...)
1524         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
1525         * (genUminus): rewritten to for efficiency
1526         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
1527           used uninitialized in some cases)
1528         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
1529           copy the third byte from the int -- now assumes 0x80 (data memory)
1530         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
1531           operands (genAddLit expects the iCode's operands to swapped as
1532           well), fixed leftover bytes (crashed for short left operands)
1533         * (pic16_genMinusDec): performance improvements, removed false
1534           PIC14 emitSKPNCs
1535         * (pic16_genMinus): fixed to cope with differently sized operands
1536         * src/pic16/glue.c (pic16_glue): added new banksel optimization
1537           for --obanksel > 1
1538         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
1539         * src/pic16/graph.[ch]: implementation of directed graphs, used by
1540           new banksel optimization
1541         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
1542           analysis for temporary registers (segfaults...)
1543         * src/pic16/peeph.def: added rule
1544
1545 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
1546
1547         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
1548         which converts a float number to its ASCII representation
1549         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
1550         functions to convert the fractional and integer part of a float to ASCII,
1551         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
1552         realloc.c): added _MALLOC_SPEC to explicit place variables in data
1553         ram
1554         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
1555         _STATMEM macros,
1556         * device/include/pic16/adc.h: added GPL info,
1557         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
1558         a pCodeOp as tested operand,
1559         * (genNearPointerGet): optimized bit testing, does not use
1560         intermediate register for bit value, test directly instead with
1561         BTFSS, BTFSC, works only for single bits,
1562         * (genpic16Code): dump the name of the iCode in the asm,
1563         * src/pic16/ralloc.c (decodeOp): removed static declaration and
1564         renamed to pic16_decodeOp,
1565         * (serialRegAssign): do not allocate a temporary register for iCode
1566         sequences that test a single bit for 1/0
1567
1568 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
1569
1570         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
1571         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
1572         access stack and frame pointers. They are initially assigned to
1573         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
1574         accessing SFRs. Updated all occurences of modification of stack or
1575         frame pointer in gen.c and pcode.c,
1576         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
1577         assigning of a literal value to pointers,
1578         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
1579         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
1580         selected
1581
1582 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
1583
1584         * doc/sdccman.lyx: update documentation about stack pragma, added
1585         some info for stack memory models
1586
1587 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1588
1589         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
1590
1591 2005-01-08 Raphael Neider <rneider AT web.de>
1592
1593         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
1594           udata sections to fix bug #1097823
1595
1596 2005-01-05 Raphael Neider <rneider AT web.de>
1597
1598         * src/pic16/gen.c (genGenericShift): added handling of differently
1599           sized left operand and result
1600
1601 2005-01-04 Raphael Neider <rneider AT web.de>
1602
1603         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
1604         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
1605           to hold the condition bit)
1606         * added new version of genCmp (old code available via #define)
1607         * added new version of genShiftLeft/genShiftRight in a generic
1608           way, now supports shifting by negative values
1609         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
1610           shiftCount (expected by genGenericShift)
1611         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
1612         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
1613           dump
1614         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
1615           is an invalid literal too...)
1616
1617 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
1618
1619         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
1620         from Raphael Neider,
1621         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
1622         for 8-bit literals. This fixes some literal operands which are sign
1623         extended to 16-bits ints when instruction needs only 8-bits.
1624
1625 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
1626
1627         * device/lib/logf.c: added mcs51 assembly version
1628         * device/lib/expf.c: added mcs51 assembly version
1629         * device/lib/_logexpf.c: new shared asm code for expf and logf
1630         * device/include/math.h: add defines for assembly math library
1631         * device/lib/Makefile.in: build new _logexpf.c
1632         * device/lib/libfloat.lib: use new _logexpf.c
1633
1634 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
1635
1636         * src/pic/device.c
1637         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
1638           device types which have less than 0x7f registers.
1639
1640 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
1641
1642         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
1643
1644 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
1645
1646         * device/lib/printf_fast.c: only build on supported arch.
1647         * device/lib/printf_tiny.c: only build on supported arch.
1648         * device/lib/printf_fast_f.c: only build if asm float lib
1649         * device/lib/_fsget1arg.c: only build if asm float lib
1650         * device/lib/_fsget2args.c: only build if asm float lib
1651         * device/lib/_fsnormalize.c: only build if asm float lib
1652         * device/lib/_fsreturnval.c: only build if asm float lib
1653         * device/lib/_fsrshift.c: only build if asm float lib
1654         * device/lib/_fsswapargs.c: only build if asm float lib
1655         * device/include/stdio.h: don't provide print_fast,
1656           print_fast_f, print_tiny prototypes if --xstack used
1657
1658 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
1659
1660         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
1661         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
1662           to the SOURCES
1663
1664 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
1665
1666         * device/lib/printf_fast_f.c: same as printf_fast, but
1667           with floating point enabled
1668         * device/lib/printf_fast.c: minor tweaks
1669         * device/include/stdio.h: add printf_fast_f
1670
1671 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
1672
1673         * src/SDCCmain.c: make --float-reent default for mcs51
1674         * device/lib/_fsadd.c: added mcs51 assembly version
1675         * device/lib/_fssub.c: added mcs51 assembly version
1676         * device/lib/_fsmul.c: added mcs51 assembly version
1677         * device/lib/_fsdiv.c: added mcs51 assembly version
1678         * device/lib/_fseq.c: added mcs51 assembly version
1679         * device/lib/_fsneq.c: added mcs51 assembly version
1680         * device/lib/_fsgt.c: added mcs51 assembly version
1681         * device/lib/_fslt.c: added mcs51 assembly version
1682         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
1683         * device/lib/Makefile.in: add _fscmp to build
1684         * device/lib/libfloat.lib: add _fscmp to build
1685
1686 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
1687
1688         * device/lib/_fs2slong.c: added mcs51 assembly version
1689         * device/lib/_fs2sint.c: added mcs51 assembly version
1690         * device/lib/_fs2schar.c: added mcs51 assembly version
1691         * device/lib/_fs2ulong.c: added mcs51 assembly version
1692         * device/lib/_fs2uint.c: added mcs51 assembly version
1693         * device/lib/_fs2uchar.c: added mcs51 assembly version
1694         * device/lib/_slong2fs.c: added mcs51 assembly version
1695         * device/lib/_sint2fs.c: added mcs51 assembly version
1696         * device/lib/_schar2fs.c: added mcs51 assembly version
1697         * device/lib/_ulong2fs.c: added mcs51 assembly version
1698         * device/lib/_uint2fs.c: added mcs51 assembly version
1699         * device/lib/_uchar2fs.c: added mcs51 assembly version
1700         * device/include/float.h: added #define to select asm vs c
1701
1702 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
1703
1704         * device/lib/printf_fast.c: improvements to float output
1705         * device/include/float.h: add defines for assembly float library
1706         * device/lib/_fsget1arg.c: receive 1 float arg
1707         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
1708         * device/lib/_fsnormalize.c: normalize a float
1709         * device/lib/_fsreturnval.c: return float, various helper routines
1710         * device/lib/_fsrshift.c: right shift a float's mantissa
1711         * device/lib/_fsswapargs.c: swap 2 floats
1712         * device/lib/Makefile.in: build these 6 new files for mcs51
1713         * device/lib/libfloat.lib: add these 6 files to the library
1714
1715 2004-12-26 Borut Razem <borut.razem AT siol.net>
1716
1717         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
1718           built by gcc 3.4.2
1719
1720 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
1721
1722         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
1723           and fully reentrant and register bank neutral.
1724         * device/lib/printf_fast.c: added float (not enabled by default),
1725           added compact/slower integer (also not enabled by default),
1726           improved size/speed of fast integer code, other minor changes
1727         * device/include/stdio.h, device/lib/Makefile.in,
1728           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
1729
1730 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
1731
1732         * src/pic16/pcode.c: declaring variables other than at the start of a
1733           block is not supported in C by VC6.
1734
1735 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
1736
1737         * applied a previous patch from Raphael Neider that wasn't included
1738         in the previous commits, which fixes infinite loops within jumptable
1739         improvements,
1740         * made some fixes that previous patches introduced
1741
1742 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
1743
1744         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
1745         that fixes an issue with AOP_PCODE asmop's offset,
1746         * (pic16_popCopyReg): update instance field too,
1747         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
1748         function of pic port,
1749         * (genCmp, genAnd, genAssign),
1750         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
1751
1752 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
1753
1754         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
1755         variables initial values to idata section,
1756         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
1757         variables in some functions. This utilizes parmBytes field of iCode
1758         structure to hold the offset of the variable in stack. (might be
1759         able to use the stack field too?)
1760         * applied patch from Raphael Neider # ### , # ###
1761         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
1762         variable initial values in idata section,
1763         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
1764         for static variables with initial value
1765         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
1766         applied fix in while loop from Raphael Neider.
1767
1768 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
1769
1770         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
1771         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
1772         * src/ds390/ralloc.c (serialRegAssign): spill bits
1773         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
1774         * support/Util/SDCCerr.c,
1775         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
1776         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
1777         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
1778
1779 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
1780
1781         * device/include/sdcc-lib.h: inserted LGPL, added includes
1782           asm/ds390/features.h and asm/mcs51/features.h
1783         * device/include/asm/default/features.h,
1784         * device/include/asm/gbz80/features.h,
1785         * device/include/asm/z80/features.h: added empty _AUTOMEM
1786           and _STATMEM
1787         * device/include/asm/ds390/features.h,
1788         * device/include/asm/mcs51/features.h: added files with defines for
1789           _AUTOMEM and _STATMEM indicating automatic and static storage class
1790         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
1791         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
1792         * src/SDCCicode.c (geniCodeCast),
1793         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
1794         * src/SDCCloop.c (loopInduction): removed unused variable lr
1795         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
1796           to convertToFcall to include char modulo (RFE 1065037), added check
1797           if left operand is unsigned and use abs of literal value
1798         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
1799           as it doesn't work after conversion from peephole.def to peephole.rul
1800         * src/mcs51/gen.c (toBoolean): added check for size,
1801           (genModOneByte): optimized code for signed char modulo a literal
1802           power of 2 (thanks to Hubert Sack),
1803           (genRRC): removed unnecessary "clr c",
1804           (genRLC): replaced "add a,acc" with cheaper "rlc a"
1805         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
1806           jump optimization,
1807           swapped rules 256.c and 256.d,
1808           extended 256.d by using new multiple checks (thanks Erik),
1809           added rules 256.e and 256.f,
1810           updated rule 261.a and 261.b to new generated code
1811         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
1812
1813 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1814
1815         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
1816           induction related bugs, including first part of bug #1074377
1817
1818 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
1819
1820         * applied patch from bug-report #1076292,
1821         * applied patches for genAnd and Goto-optimizations for Raphael
1822         Neider,
1823         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
1824         dump a less iCode information,
1825         * src/pic16/device.h (pic16_options_t): added field debgen,
1826         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
1827         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
1828         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
1829         puclic,
1830         * (various functions): added macros FENTRY and FENTRY2 to functions,
1831         to emit function prologue,
1832         * (various functions): fixed indentation,
1833         * (genNearPointerGet): fixed loading of FSR0,
1834         * (genPackBits): applied patch from Raphael Neider to fix updating
1835         of FSR0 and touching only the modified bits,
1836         * src/pic16/genarith.c (various functions): added macros FENTRY to
1837         emit function prologue in comments,
1838         * src/pic16/pcode.h: added functions debugf2, debugf3,
1839         * src/pic16/ralloc.c: partial fix for packForPush caused
1840         segmentation fault,
1841
1842 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1843
1844         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
1845           <stsp AT users.sourceforge.net> with reversed byte order
1846         * support/regression/tests/rotate.c: added (ds390 skips some tests)
1847
1848 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1849
1850         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
1851           bug #1074377
1852         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
1853         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
1854
1855 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
1856
1857         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
1858
1859 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1860
1861         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
1862           conditions,
1863           (setFromConditionArgs): friendly operand parser for peephole rules,
1864           (operandBaseName, operandsNotRelated): new peephole condition
1865           "operandsNotRelated" -- similar to "operandsNotSame", but takes
1866           architecture specific register naming into account, handles n-way
1867           comparisons, and supports quoted literals
1868         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
1869
1870 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1871
1872         * src/mcs51/peeph.def: fixed bug #1076940
1873
1874 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
1875
1876         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
1877
1878 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1879
1880         Adding support for replacing ljmps with sjmps in jumptables
1881         generated for switch statements. For now you need to set the
1882         environment variable SDCC_SJMP_JUMPTABLE to enable this.
1883         Now 4 algorithms for mcs51 jumptable generation are used:
1884         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
1885         addresses loaded pc-relative for up to 112 cases and stack-pushing
1886         target addresses loaded with offset from dptr for up to 256 cases.
1887
1888         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
1889         * src/mcs51/main.c: adapted constants for switch table generation
1890         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
1891
1892 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
1893
1894         * device/lib/printf_large.c (_print_format): fixed bug 1073386
1895         * support/regression/tests/bug1057979.c: added test for bug 1073386
1896
1897 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
1898
1899         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
1900         compilers
1901
1902 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
1903
1904         * src/pic16/device.h,
1905         * src/pic16/genarith.c,
1906         * src/pic16/glue.c,
1907         * src/pic16/main.c,
1908         * src/pic16/pcode.c: applied patches #1068154 and #1070213
1909
1910 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
1911
1912         Large cummulative patch for pic16 port.
1913         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
1914         to call when a stack overflow occurs,
1915         * (malloc.h): added CVS Id tag,
1916         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
1917         variable,
1918         * added libc directory. The current version of LibC contains string
1919         functions, ctype functions and macros and some functions of the
1920         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
1921         be extensively tested in the future. Standard disclaimer here.
1922         Library is not automatically build yet. But one can build it by
1923         invoking 'make' inside the libc directory.
1924         * added ADC library under libio. Preliminary version yet.
1925
1926         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
1927         * src/pic16/gen.c (aopForRemat): asmop size is filled by
1928         aopForRemat() now and not by pic16_aopOp(),
1929         * (pic16_popGetTempReg): removed warning messgae when allocating
1930         temporary registers, its a buggy feature and will be removed,
1931         * (pic16_popGet): set register instance field in AOP_CRY,
1932         * (pic16_outBitC): fixed for results in size greater than 1,
1933         * (genUminusFloat): fixed for pic16, ported code from mcs51,
1934         * (pic16_storeForReturn): optimized return of 0,
1935         * (genCmp): experimental code for new genCmp which uses PIC18's
1936         special compare&skip instructions. Initial tests fail some times
1937         with variables grater than 1 byte in size, so new code is disabled,
1938         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
1939         a single bit,
1940         * (genCast): began a fix to optimize the casting of a bit to another
1941         bit, now assigning a bitfield to another bitfield will fail, sorry,
1942         * src/pic16/main.c: disabled the use of lr-support feature,
1943         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
1944         * added some function prototypes, added function _debugf prototype,
1945         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
1946         bits with offset (case PO_GPR_BIT),
1947         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
1948         command line,
1949         * (isBankInstruction): modified to return 0 for no banking instruction,
1950         and 1 for banking instruction,
1951         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
1952         caused stop processing pCodes after a inline assembly block,
1953         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
1954         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
1955         registers when it shouldn't,
1956         * src/pic16/ralloc.c (allocReg): add preliminary support for
1957         supporting a limited set of temporary registers,
1958
1959 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1960
1961         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
1962           genDataPointerSet): ensure assignments always copy in MSB to LSB
1963           order,
1964           (loadRegFromAop): recognize CLRH optimization,
1965           (genFunction): optimize RECEIVE iCodes in reentrant functions
1966
1967 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1968
1969         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
1970           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
1971           selected.
1972         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
1973         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
1974           contiguous with data
1975
1976 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1977
1978         * device/lib/_gptrget.c (_gptrget),
1979         * device/lib/_gptrgetc.c (_gptrgetc),
1980         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
1981           instead of sjmp to ret
1982         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
1983           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
1984
1985 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
1986
1987         * .version: bumped version to 2.4.7
1988         * device/lib/_gptrget.c (_gptrget): is now _naked
1989         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
1990         * device/lib/_gptrput.c (_gptrput): is now _naked
1991         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
1992           (createFunction): fixed xstack
1993         * src/SDCCglue.c (emitMaps): set allocation required for bit area
1994         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
1995           or bit either,
1996           (geniCodeCritical): store original interrupt state in an iTemp bit
1997           var unless stack-auto
1998         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
1999         * src/SDCCmain.c (setIncludePath): added include/target to search path
2000         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
2001         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
2002           prototype,
2003           (processFuncArgs): put bit vars in bit area
2004         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
2005           unsaveRBank): fixed xstack,
2006           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
2007           (genFunction, genEndFunction): fixed xstack,
2008           (genAssign): optimization don't walk backwards through mem
2009         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
2010         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
2011         * support/regression/Makefile: also make library (for stack-auto) when
2012           making "all" and added "test-mcs51-xstack-auto"
2013         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
2014         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
2015         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
2016         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
2017         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
2018           make-library by MAKE_LIBRARY
2019         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
2020           regression tests for xstack
2021         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
2022         * support/regression/tests/critical.c: test for critical on mcs51
2023
2024 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2025
2026         * support/regression/ports/ucz80/spec.mk: use include and lib files from
2027           built version of sdcc instead of installed version
2028
2029 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
2030
2031         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
2032         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
2033           vprintf.c now
2034         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
2035         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
2036           WARNING: remove device/lib/build/z80/printf.o by hand when
2037           updating from previous build!
2038         * device/lib/z80/printf.c: updated comment
2039         * support/regression/tests/bug1057979.c: test all ports now
2040         * support/regression/tests/bug1065458.c: file added
2041
2042 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2043
2044         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
2045           *_start and *_end symbols for static functions
2046
2047 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
2048
2049         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
2050           and search crt0.o in all library paths,
2051           (setIncludePath): proper handling of --nostdinc,
2052           (setLibPath): proper handling of --nostdlib
2053         * support/regression/Makefile,
2054         * support/regression/ports/ds390/spec.mk,
2055         * support/regression/ports/gbz80/spec.mk,
2056         * support/regression/ports/hc08/spec.mk,
2057         * support/regression/ports/mcs51/spec.mk,
2058         * support/regression/ports/mcs51-large/spec.mk,
2059         * support/regression/ports/mcs51-stack-auto/spec.mk,
2060         * support/regression/ports/z80/spec.mk: use include and lib files from
2061           built version of sdcc instead of installed version
2062         * doc/sdccman.lyx: fixed typo in --nostdinc
2063
2064 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
2065
2066         * src/pic/pcode.c,
2067         * src/pic/device.c,
2068         * src/pic/ralloc.c,
2069         * src/pic/gen.c : added support to generate code for struct bit fields.
2070
2071 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
2072
2073         * as/xa51/xa_version.h,
2074         * device/include/errno.h,
2075         * device/include/regc515c.h,
2076         * device/lib/_itoa.c,
2077         * device/lib/_ltoa.c,
2078         * device/lib/ser_ir_cts_rts.c,
2079         * sim/ucsim/xa.src/glob.cc,
2080         * sim/ucsim/xa.src/inst_gen.cc,
2081         * sim/ucsim/xa.src/xa_bit.cc,
2082         * sim/ucsim/xa.src/xa_sfr.cc,
2083         * sim/ucsim/z80.src/inst_dd.cc,
2084         * sim/ucsim/z80.src/inst_fdcb.cc,
2085         * support/scripts/keil2sdcc.pl,
2086         * src/pic16/pic16.dsp,
2087         * src/pic16/pic16a.dsp: corrected cvs line endings
2088         * device/lib/printf_large.c: fixed bug 1057979
2089         * src/pic16/gen.c: fixed non-C standard code
2090         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
2091         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
2092         * support/regression/ports/mcs51/support.c: reload T1 asap
2093         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
2094           pdata use and clear idata startup behaviour
2095         * support/regression/tests/bug1057979.c: added
2096
2097 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
2098
2099         * device/examples/ds390/ow390/ad26.h,
2100         * device/examples/ds390/ow390/cnt1d.h,
2101         * device/examples/ds390/ow390/crcutil.c,
2102         * device/examples/ds390/ow390/ownet.h,
2103         * device/examples/ds390/ow390/owsesu.c,
2104         * device/examples/ds390/ow390/swt12.h,
2105         * device/examples/ds390/ow390/swtoper.c,
2106         * device/examples/ds390/ow390/temp10.h,
2107         * device/examples/ds390/ow390/thermodl.c,
2108         * device/examples/ds390/tinitalk/tinitalk.dsp,
2109         * device/examples/ds390/tinitalk/tinitalk.dsw,
2110         * device/examples/mcs51/clock/hw.h,
2111         * device/examples/mcs51/simple2/go.bat,
2112         * device/examples/serialcomm/windows/serial.h,
2113         * device/examples/xa51/dummy.c,
2114         * device/examples/xa51/hello.c,
2115         * device/include/80c51xa.h,
2116         * device/include/at89x051.h: corrected cvs line endings
2117
2118 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
2119
2120         * src/pic16/main.c (options): added command line --gstack, to trace
2121         stack over/under flows,
2122         * added pragma 'wparam' to allow passing first byte of function
2123         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
2124         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
2125         call to __gstack_test function and sets up the symbol as extern,
2126         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
2127         * popaop): added call to pic16_testStackOverflow,
2128         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
2129         wparamList list,
2130         * (genCall, genPcall): now all parameters are passed via stack
2131         except in functions that are pass to wparam pragma in which WREG is
2132         used too,
2133         * (genPcall): REENTRANT flag is checked to see if variable prototype
2134         contains reentrant keyword, don't call a non-reentrant function, via
2135         a reentrant function pointer or vice versa, functions are never
2136         passed via WREG,
2137         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
2138         D.Winkler,
2139         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
2140         SIGSEGV when accessing a NULL register stucture,
2141         * (pic16_printGPointerType): modified to handle UPPER modifier for
2142         function initializers, changed prototype of function to simpler one,
2143         * (pic16_printIvalFuncPtr): check to see if function is already
2144         added in externs list,
2145         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
2146         optimized a move from W to SFR with a move to the same register
2147         later after a CALL,
2148         * device/lib/pic16/debug: NEW directory, contains debug features
2149         which are enabled when linking with libdebug.lib, currently command
2150         line option --gstack enables stack pointer tracing for over/under
2151         flow, corresponding sources are in debug/gstack
2152
2153 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
2154
2155         * doc/sdccman.lyx: updated SDCC version,
2156         * (PIC16 port): update list of command line options,
2157         * src/pic16/device.h (structure pic16_options_t): added field gstack
2158         to enable stack overflow tracing on push/pops,
2159         * src/pic16/device.c (statistics structure): added statistics
2160         structure,
2161         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
2162         pic16_dump_int_registers): increase statistics counters for each
2163         * variable which is encountered
2164         * (pic16_dump_usection): emit each .udata variable to its own udata
2165         section,
2166         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
2167         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
2168         parameters via stack, otherwise use old scheme,
2169         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
2170         assembler output file,
2171         * src/pic16/main.c: added command line options --gstack to enable
2172         push/pop tracing for stack overflow,
2173         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
2174         instructions): added size of each instruction,
2175         * (pic16_countInstruction): estimate size of instructions in
2176         the_pFile list, inline assembly blocks are not counted,
2177         * (pic16_FixRegisterBanking): trace previous register usage, when
2178         banksel optimizations is greater than 0, don't emit a redudant
2179         banksel directive,
2180
2181 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
2182
2183         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
2184         * src/pic16/ralloc.c : applied same fix for pic16.
2185         * src/pic/gen.c : tidied it up a little.
2186
2187 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2188
2189         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
2190         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
2191
2192 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2193
2194         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
2195
2196 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2197
2198         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
2199         non-reentrant function __modsint in the interrupt function (thus
2200         corrupting math operations during serial I/O)
2201         * device/lib/ser_ir.c: as above, changed buffersize
2202         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
2203         256.c,d for zeroing
2204         * doc/Makefile: added option -t for rsync
2205
2206 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2207
2208         * src/SDCCast.h (struct ast),
2209         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
2210
2211 2004-10-20 Borut Razem <borut.razem AT siol.net>
2212
2213         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
2214         package
2215
2216 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
2217
2218         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
2219         makefile targets,
2220         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
2221         support functions to replace long sequences of MOVFF's from access
2222         bank registers to stack and vice versa,
2223         * src/pic16/device.h: added new field opt_flags, where optimization
2224         flags can be set to enable certain features,
2225         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
2226         * pBlock, (genFunction, genEndFunction): surroung loop for
2227         saving/loading used registers in stack with PC_INFO pCodes,
2228         INF_LREGS. Code in between can then be optimized by pCode optimizer
2229         to support function calls,
2230         * (genDataPointerSet): fixed bug which loaded float fields in
2231         structures with corrupt data,
2232         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
2233         in a standard way debug info on stderr. Feature used for developing
2234         and debugging only,
2235         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
2236         obsolete chunks of code,
2237         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
2238         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
2239         * pic16/src/pcode.c (pic16_newpCodeInfo,
2240         * (pic16_newpCodeOpLocalRegs),
2241         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
2242         feature,
2243         * (pic16_pCodeConstString): printing of the initial value of a
2244         symbol as a comment is inhibited since parsing was already done by
2245         copyStr and output is corrupt,
2246         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
2247
2248 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2249
2250         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
2251
2252 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
2253
2254         * as/mcs51/lkarea.c: removed old K&R style,
2255           (lnksect): changed check on boundary error,
2256           (lnksect2): changed check on boundary error,
2257           (lnksect2): extend XSTK to end of page if size = 1
2258         * as/mcs51/lkmain.c: removed old K&R style,
2259           (Areas51): create l_IRAM symbol
2260         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
2261         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
2262           model-mcs51-stack-auto, added model-mcs51-xstack-auto
2263         * device/lib/_mullong.c: added version to be compiled with xstack
2264         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
2265         * device/lib/mcs51/crtxclear.asm: clear pdata as well
2266         * device/lib/mcs51/crtxstack.asm: fixed comment
2267         * src/SDCCglue.c: maxInterrupts defaults to 0,
2268           (emitMaps): added pdata,
2269           (createInterruptVect): (re)moved default,
2270           (glue): added pdata,
2271           (glue): moved __start__xstack to XSTK with default size 1
2272         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
2273           and options.float_rent when options.stackAuto is set,
2274           (linkEdit): only write XDATA_NAME if provided on command line
2275         * src/SDCCmem.h,
2276         * src/SDCCmem.c: added pdata
2277         * src/port.h: added pdata_name to PORT
2278         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
2279           (saveRegisters, unsaveRegisters): removed usage of B,
2280           (genMinus): fixed accumulator clash,
2281           (genJumpTab): added comment, this needs another look
2282         * src/mcs51/gen.c: added check for "B in use" paranoia,
2283           added pushB() and popB()
2284         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
2285           chance
2286         * src/avr/main.c,
2287         * src/ds390/main.c,
2288         * src/hc08/main.c,
2289         * src/mcs51/main.c,
2290         * src/pic/main.c,
2291         * src/pic16/main.c,
2292         * src/xa51/main.c,
2293         * src/z80/main.c: (reset_regparms) made void parameter explicit and
2294           added PSEG (PAG,XDATA) or NULL to port specifier
2295         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
2296         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
2297           (_mcs51_genInitStartup): removed __start__xstack equ,
2298           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
2299         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
2300         * src/z80/gen.c (_rleAppend): fixed warnings
2301         * support/regression/tests/zeropad.c: added pdata test
2302         * .version: bumped to 2.4.6
2303
2304 2004-10-17 Borut Razem <borut.razem AT siol.net>
2305
2306         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
2307         as a part of nightly build
2308
2309 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
2310
2311         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
2312         WREG holds the first byte function parameters,
2313         * (aopForSym): take special case for symbols which are in FARSPACE
2314         but in CODESPACE too,
2315         * (assignResultValue): modified to take into account _G.useWreg,
2316         * (genCall): don't use wreg for parameter passing when function is
2317         declared as reentrant, too, added optimization INCF to stack
2318         pointer when stack parameter count is 1,
2319         * (genFunction, genEndFunction): refurnished and fixed to not using
2320         wreg for passing parameters when function has varargs or is
2321         reentrant, fixed bug with symbol name compare for generating
2322         functions in absolute address,
2323         * (pic16_storeForReturn): refurnished,
2324         * (genCmp): began writing a new version of the function, not ready
2325         yet, therefore it is disabled,
2326         * (genAssign): do not read code memory when assigning a function to
2327         a pointer function,
2328         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
2329         array of characters, not pointer,
2330         * (pic16initialComments): in debug mode emit an .ident directive for
2331         the assembler,
2332         * (_process_pragma): emit a new warning type (internal to pic16)
2333         when setting stack to default length, emit a similar warning when
2334         placing a function at absolute address and address is not word aligned
2335         * (_pic16_parseOptions): added 'return TRUE' statement,
2336         * (_pic16_linkEdit): if compiling a source, then add the source's
2337         file object, first in the list of objects to link,
2338
2339 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
2340
2341         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
2342         * src/pic/main.c : removed VC warning.
2343         * src/pic/gen.c : changed comment.
2344
2345 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
2346
2347         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
2348         reference to a deprecated symbol _GPTRREG was causing failure to
2349         link. Thanks G. M. Gallant for the info.
2350
2351 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
2352
2353         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
2354         comments for Bugs item #954788.
2355
2356 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
2357
2358         * src/pic16/device.c (pic16_dump_gsection,
2359         * pic16_groupRegistersInSection): handle symbols declared to be in
2360         access bank differently,
2361         * src/pic16/gen.c (struct _G): added field resDirect,
2362         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
2363         send values read from stack directly to result and don't allocate
2364         temporary values,
2365         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
2366         same registers,
2367         * (pic16_sameRegsOfs): NEW,
2368         * (freeAsmop): if _G.resDirect is set then do not mark registers as
2369         free because they were not allocated from temporary pool,
2370         * pic16_popRegFromString): workaround to fix a problem with
2371         allocating variables twice or never,
2372         * (genGenPointerGet): using PRODL instead of FSR0H,
2373         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
2374         instead of FSR0H,
2375         * (genAssign): take advantage of the _G.resDirect flag,
2376         * (genCast): around line 11844, use mov2f instead of directly
2377         MOVFF'ing between operands to account for literal values,
2378         * src/pic16/genutils.c: some new debug functions for gpsim have been
2379         added,
2380         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
2381         float with integer part only,
2382         * src/pic16/main.c (_process_pragma): handle pragma udata access to
2383         place variables in access bank
2384         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
2385         updated sources to reflect recent changes in gen.c
2386
2387 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
2388
2389         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
2390         sources that searched for headers in installation path, now the
2391         device/include/pic16 is used,
2392         * src/pic16/glue.c (pic16glue),
2393         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
2394         .line directives if not in debug mode, this suppresses assembler's
2395         warnings for ignored directives
2396
2397 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
2398
2399         * src/port.h: made reset_regparms prototype void parameter explicit.
2400         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
2401         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
2402         * doc/sdccman.lyx: documented warning disabling and how to use
2403           printf_large to make it print floats.
2404         * device/include/stdbool.h: NEW
2405         * device/lib/_atof.c,
2406         * device/lib/_divuint.c,
2407         * device/lib/_divulong.c,
2408         * device/lib/expf.c,
2409         * device/lib/printf_large.c,
2410         * device/lib/sincosf.c,
2411         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
2412         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
2413           a completely reentrant lib.
2414
2415 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
2416
2417         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
2418         * device/include/pic16/stdio.h: fixed bug with colon
2419
2420 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
2421
2422         * device/include/pic16/stdio.h,
2423         * device/include/pic16/stdlib.h,
2424         * device/include/pic16/math.h: NEW
2425         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
2426         declared as _naked to reduce overhead
2427         * device/lib/Makefile.in (target port-specific-objects-pic16):
2428         changed * to *.* so to ignore the CVS directory,
2429         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
2430         stacked variables back in stack,
2431         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
2432         corruption
2433
2434 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
2435
2436         * .version: bumped version number to 2.4.5
2437         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
2438         * support/Util/SDCCerr.c (messages structure): added entry for
2439         W_POSSBUG2
2440
2441         Large cumulative patch for pic16 port and libraries.
2442         * device/include/pic16/sdcc-lib.h,
2443         * device/include/pic16/stdarg.h,
2444         * device/include/asm/pic16/features.h,
2445         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
2446         * device/include/pic16/float.h: changes reentrant keyword with
2447         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
2448         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
2449         updated target build-libraries to include objects from gptr,
2450         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
2451         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
2452         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
2453         all function headings,
2454         * src/SDCCmain.c: added global parameter userIncDirsSet,
2455         * (parseCmdLine): when option -I is encountered add directory to
2456         userIncDirsSet too,
2457         * src/version.awk: added space between control and long,
2458         * src/pic16/NOTES: added some notes for the port,
2459         * src/pic16/gen.c: added prototype for mov2fp function,
2460         * (fReturnpic16[]): properly named return value registers,
2461         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
2462         * (aopForSym): added code to handle symbols with onStack flag set,
2463         symbols onStack are allocated PTRSIZE bytes,
2464         * (aopFreeAsmop): handles special case where asmops are stack objects,
2465         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
2466         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
2467         added argument lock to trace flaws in allocating temporary registers
2468         when developing port,
2469         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
2470         * (pic16_popRegFromString): reenabled allocating a direct register
2471         from string,
2472         * (assignResultValue): various beautifications,
2473         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
2474         referenced function argument,
2475         * (genIpush): reenabled to allow stacked arguments, handles only
2476         ic->parmPush iCodes,
2477         * (genCall, genPcall): major changes to allow for variable argument
2478         functions, fixed a bug with falsely restoring stack pointer after
2479         returning from call,
2480         * (genFunction): pending code for critical function,
2481         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
2482         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
2483         * (genNearPointerGet): fixed bug with indirect reading, was always
2484         reading from INDF0
2485         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
2486         pointers,
2487         * (genAddrOf): rewrote code to take address of a stacked function parameter
2488         * (genCast): fixed casting to generic pointer type,
2489         * src/pic16/gen.h: added AOP_STA,
2490         * (struct asmop): added field stk,
2491         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
2492         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
2493         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
2494         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
2495         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
2496         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
2497         generic pointers,
2498         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
2499         and library paths,
2500         * (pic16_port structure): generic pointer size is set to 3,
2501         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
2502         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
2503         compiler warning,
2504         * src/pic16/ralloc.c (allocReg): prevent allocating register when
2505         operand is an iTemp,
2506
2507 2004-09-24 Martin Helmling <mh AT octo-soft.de>
2508
2509         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
2510         * debugger/mcs51/simi.c: addapt new syntax of s51
2511
2512 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
2513
2514         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
2515         * src/pic16/pcode.c: commented out some calls to free() in order to
2516         fix bug #989576,
2517
2518 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2519
2520         * src/SDCCicode.h,
2521         * src/SDCCicode.c (isiCodeInFunctionCall),
2522         * src/avr/ralloc.c (selectSpil),
2523         * src/pic/ralloc.c (selectSpil),
2524         * src/pic16/ralloc.c (selectSpil),
2525         * src/ds390/ralloc.c (selectSpil),
2526         * src/hc08/ralloc.c (selectSpil),
2527         * src/xa51/ralloc.c (selectSpil),
2528         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
2529         stack in the middle of a function call sequence (fixes bug #1020268)
2530         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
2531         costs associated with the minimum switch case.
2532
2533 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2534
2535         * src/SDCC.lex: fixed bug #1030549
2536
2537 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2538
2539         * src/SDCCcse.h (struct cseDef),
2540         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
2541         over a function call if the CSE is derived from a symbol whose
2542         address has been taken (fixes bug #1029883)
2543         * support/regression/tests/bug-1029883: a new regression test for
2544         this bug
2545
2546 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2547
2548         * src/hc08/gen.c (emitinline): fixed bug #1029778
2549         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
2550         to a cast object is no longer a syntax error ("fixes" bug #1030006,
2551         and starts toward RFE #905167)
2552
2553 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
2554
2555         * src/pic16/gen.c (mov2f): New function to move an operand to
2556         another without considering if it is a literal or a register,
2557         * (pic16_sameRegs): don't check if they are both AOP_REG,
2558         * (AccRsh): removed andmask=0 lines,
2559         * (genLeftShift): duplicated to be improved in future versions,
2560         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
2561         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
2562         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
2563         * (pic16initMnemonics): added initialization for POC_INFSNZW,
2564         * (insertBankSwitch): fixed inserting banksel directives algorithm
2565         for instructions that follow a skip instruction, this fixes a report
2566         for broken subtraction code generation,
2567         * src/pic16/ralloc.c (deassignLRs): do not free register if current
2568         iCode is a left op, just in case result and right share the same
2569         registers
2570
2571 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2572
2573         * src/hc08/main.c,
2574         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
2575         preservation of HX
2576         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
2577         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
2578         on 2004-09-12; it was buggy
2579
2580 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
2581
2582         * src/SDCCsymt.h: removed RESULT_CHECK
2583         * src/SDCCast.c,
2584         * src/SDCCglue.c,
2585         * src/SDCCval.c,
2586         * src/pic/glue.c,
2587         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
2588
2589 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
2590
2591         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
2592         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
2593         configuration values no more rejected by compiler, they are assigned
2594         to configuration registers with a warning message instead,
2595         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
2596         the for-loop so last conf register is emitted too,
2597         * (_pic16_initPaths): link library libsdcc.lib by default,
2598         * (_hasNativeMulFor): modified test for multiplication according to
2599         Raphael Neider's remarks. Integer multiplication is also done with
2600         support functions,
2601         * device/include/pic16/pic18fregs.h: corrected type error in while
2602         testing and including 18f6720 header file
2603
2604 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
2605
2606         * src/pic16/device.h (pic16_options): removed field use_crt,
2607         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
2608         until an optimization to handle single bits is added,
2609         * (pic16_loadFSR0): moved before genUnpackBits,
2610         * (genAnd): some white lines removed,
2611         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
2612         leave_reset flags in pic16_options when using crt modules,
2613
2614 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
2615
2616         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
2617           for bugs 898889 & 979599. Also used some safer print instructions.
2618
2619 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
2620
2621         * src/pic16/device.h (pic16_options_t): added field use_crt,
2622         crt_name, no_crt,
2623         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
2624         catch a probable future bug,
2625         * src/pic16/gen.c: aopIdx function commented out,
2626         * (genAssign): commented out old code which used aopIdx,
2627         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
2628         code, added if conditionals to take into account the --use-crt
2629         command line options,
2630         * src/pic16/main.c (pic16_optionsTable): added new command line
2631         options, --use-crt= and --no-crt,
2632         * (_pic16_linkEdit): now the proper crt object is added in the
2633         linker command line except than when --no-crt is specified,
2634         * src/pic16/pcode.c,
2635         * src/pic16/pcode.h: added some structures and functions for a new
2636         optimization scheme to compansate for instruction overhead between
2637         same iCodes, this scheme is currently under development and is not
2638         working in any way,
2639         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
2640         to && operator,
2641         * device/lib/pic16/startup/crt0i.c,
2642         * device/lib/pic16/startup/crt0iz.c: added global char variable
2643         __uflags to force the generation of an idata section
2644
2645 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
2646
2647         * doc/Makefile,
2648         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
2649         * doc/sdccman.lyx: updated sdcc version to 2.4.4
2650
2651 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2652
2653         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
2654         Frieder) and clarified the default code optimization mode
2655
2656 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2657
2658         * src/SDCC.lex (doPragma, process_pragma),
2659         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
2660         "opt_code_size", and "opt_code_balanced"
2661         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
2662         regrouped options by category, added support for category headers
2663         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
2664         and "--opt-code-size"
2665         * doc/sdccman.lyx: documented these new options and pragmas
2666         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
2667         preference into account
2668
2669 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2670
2671         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
2672           geniCodePreDec): Fixed bug 904237 by generating a warning
2673         * src/SDCCerr.h,
2674         * src/SDCCerr.c: added warning W_SIZEOF_VOID
2675
2676 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
2677
2678         * src/pic/device.c : When no max ram set validate full memory range.
2679         * src/pic/pcode.c,
2680         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
2681
2682 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2683
2684         * device/lib/_gptrget.c,
2685         * device/lib/_gptrput.c: updated comment
2686         * device/lib/calloc.c,
2687         * device/lib/free.c,
2688         * device/lib/malloc.c,
2689         * device/lib/realloc.c: added LGPL, made them reentrant-safe
2690         * src/SDCCcse.c (cseBBlock),
2691         * src/SDCCicode.c (printOperand, geniCodeArray),
2692         * src/SDCCicode.h (struct operand): fixed bug 868103
2693         * support/regression/tests/bug-868103.c: added
2694         * src/SDCCast.c (searchLitOp),
2695         * src/SDCCcse.h (struct cseDef),
2696         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
2697         * src/SDCCicode.h (struct operand),
2698         * src/SDCCsymt.h (struct sym_link),
2699         * src/avr/gen.c (hasInc),
2700         * src/ds390/gen.c (hasInc),
2701         * src/hc08/gen.c (genPlusIncr, hasInc),
2702         * src/mcs51/gen.c (hasInc),
2703         * src/pic16/glue.c (pic16_printIvalChar),
2704         * src/pic16/ralloc.c (regWithIdx),
2705         * src/xa51/gen.c (hasInc) : removed warnings
2706         * src/SDCCast.c (createBlock): added comment ???
2707         * src/hc08/ralloc.c: updated comments
2708
2709 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2710
2711         * doc/sdccman.lyx: updated section on switch statements, added
2712         section about semaphore locking
2713         * doc/Makefile: added option -info for latex2html
2714         * device/lib/_gptrget.c,
2715         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
2716
2717 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
2718
2719         * src/pic/device.h,
2720         * src/pic/device.c,
2721         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
2722          maxram is less than 0x100.
2723
2724 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
2725
2726         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
2727
2728 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2729
2730         * src/port.h,
2731         * src/mcs51/main.c,
2732         * src/ds390/main.c,
2733         * src/z80/main.c,
2734         * src/hc08/main.c,
2735         * src/pic/main.c,
2736         * src/pic16/main.c,
2737         * src/avr/main.c,
2738         * src/xa51/main.c
2739         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
2740         a jump table is the best form for a switch statement, including
2741         automatic insertion of missing cases to make the case range
2742         continuous. Developed in collaboration with Frieder Ferlemann.
2743
2744 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2745
2746         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
2747         accumulator result if it needs sign extension
2748
2749 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2750
2751         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
2752
2753 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2754
2755         * device/lib/gbz80/printf.c,
2756         * device/lib/z80/printf.c: removed define for NULL
2757
2758 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2759
2760         * as/xa51/xa_link.c,
2761         * device/examples/ds390/ow390/ad26.c,
2762         * device/examples/ds390/ow390/cnt1d.c,
2763         * device/examples/ds390/ow390/counter.c,
2764         * device/examples/ds390/ow390/ds2480.h,
2765         * device/examples/ds390/ow390/ds2480ut.c,
2766         * device/examples/ds390/ow390/findtype.c,
2767         * device/examples/ds390/ow390/gethumd.c,
2768         * device/examples/ds390/ow390/owllu.c,
2769         * device/examples/ds390/ow390/ownetu.c,
2770         * device/examples/ds390/ow390/swt12.c,
2771         * device/examples/ds390/ow390/swtloop.c,
2772         * device/examples/ds390/ow390/temp.c,
2773         * device/examples/ds390/ow390/temp10.c,
2774         * device/examples/ds390/ow390/thermo21.c,
2775         * device/examples/ds390/ow390/tinilnk.c,
2776         * device/examples/ds390/ow390/tstfind.c,
2777         * device/examples/serialcomm/windows/serial.cpp,
2778         * device/examples/serialcomm/windows/test_serialcomm.cpp,
2779         * device/include/reg51.h: fixed line endings for cvs
2780
2781 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2782
2783         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
2784         packRegsForAccUse, packRegisters): new accumulator register
2785         packing algorithm
2786         * support/regression/ports/hc08/support.c (_putchar): suppress
2787         warning of unused variable
2788         * src/SDCCicode.c: added SWAP entry to codeTable
2789
2790 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
2791
2792         * device/lib/sprintf.c: forgot to add this file before previous commit
2793
2794 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
2795
2796         * src/pic16/gen.c (genPackBits): added operand right in function
2797         parameters, load result directly if p_type is POINTER (that is
2798         called by genNearPointerSet)
2799         * (genUnPackBits): added operand left in function parameters,
2800         * (genNearPointerGet, genNearPointerSet): prevent the loading of
2801         FSR0 if accessing bitfields,
2802
2803 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
2804
2805         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
2806           _print_format; updated printf, sprintf, vsprintf
2807         * device/include/asm/default/features.h: corrected comment/define
2808         * device/lib/Makefile.in: added sprintf.c
2809         * device/lib/libsdcc.lib: added sprintf module
2810         * device/lib/printf_large.c,
2811         * device/lib/vprintf.c,
2812         * device/lib/sprintf.c: totally refactored printf_large and vprintf
2813           into these 3 files
2814         * support/regression/Makefile: changed ALL_PORTS into a usefull default
2815         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
2816         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
2817           hc08 test
2818         * support/regression/tests/zeropad.c: define idata as data for hc08
2819
2820 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2821
2822         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
2823         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
2824         labels are referenced at least once (even if a reference is not found)
2825         * src/hc08/gen.c (emitcode): set isComment flag for comments
2826         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
2827         loads), rules 6a..6b (optimize jumps to return)
2828
2829 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2830
2831         * device/lib/acosf.c (acosf),
2832         * device/lib/asinf.c (asinf),
2833         * device/lib/atanf.c (atanf),
2834         * device/lib/ceilf.c (ceilf),
2835         * device/lib/cosf.c (cosf),
2836         * device/lib/coshf.c (coshf),
2837         * device/lib/cotf.c (cotf),
2838         * device/lib/fabsf.c (fabsf),
2839         * device/lib/floorf.c (floorf),
2840         * device/lib/log10f.c (log10f),
2841         * device/lib/logf.c (logf),
2842         * device/lib/sinf.c (sinf),
2843         * device/lib/sinhf.c (sinhf),
2844         * device/lib/sqrtf.c (sqrtf),
2845         * device/lib/tanf.c (tanf),
2846         * device/lib/tanhf.c (tanhf),
2847         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
2848         replaced all instances of "reentrant" in the library functions
2849         defined in math.h with this macro.
2850         * support/regression/tests/float_trans.c: reenabled test for hc08
2851
2852 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
2853
2854         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
2855         erroneously deleted
2856
2857 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2858
2859         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
2860         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
2861         multi-byte volatile operands are used
2862         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
2863         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
2864         initialization to area GSINIT0 so that it would always precede
2865         any static initializers in GSINIT
2866         * support/regression/tests/zeropad.c: fixed idata define for hc08
2867         * support/regression/tests/bug-927659.c,
2868         * support/regression/tests/float_trans.c: disabled tests for hc08
2869         pending missing library routines
2870         * .version: increased version number to 2.4.4 - hc08 port now passes
2871         regression tests
2872
2873
2874 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
2875
2876         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
2877         * Makefile.common.in,
2878         * as/Makefile,
2879         * as/hc08/Makefile.in,
2880         * as/mcs51/Makefile.in,
2881         * as/z80/Makefile.in,
2882         * debugger/mcs51/Makefile.in,
2883         * device/include/Makefile.in,
2884         * device/lib/Makefile.in,
2885         * doc/Makefile,
2886         * link/Makefile,
2887         * link/z80/Makefile.in,
2888         * packihx/Makefile.in,
2889         * sim/ucsim/main_in.mk,
2890         * sim/ucsim/avr.src/Makefile.in,
2891         * sim/ucsim/doc/Makefile.in,
2892         * sim/ucsim/gui.src/serio.src/Makefile.in,
2893         * sim/ucsim/hc08.src/Makefile.in,
2894         * sim/ucsim/s51.src/Makefile.in,
2895         * sim/ucsim/xa.src/Makefile.in,
2896         * sim/ucsim/z80.src/Makefile.in,
2897         * src/Makefile.in,
2898         * support/cpp2/Makefile.in,
2899         * support/librarian/Makefile,
2900         * support/makebin/Makefile: added DESTDIR to the install path proposed
2901         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
2902         * doc/sdccman.lyx: added DESTDIR documentation
2903
2904 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
2905
2906         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
2907         instruction for interrupt handlers, use fast returns when returning
2908         from high priority interrupts
2909
2910 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2911
2912         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
2913         code generation
2914         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
2915         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
2916         bugs, ported much of Bernhard's code from mcs51
2917         * src/mcs51/gen.c (genSend),
2918         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
2919         than one when calling a reentrant function
2920         * device/lib/_mullong.c: defined an alternate struct layout for big
2921         endian ports (hc08)
2922
2923 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2924
2925         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
2926         test
2927
2928 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2929
2930         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
2931         are sane and complete before asking the port its prefered parameter
2932         passing method (fixes bug #1017633)
2933         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
2934         and _ret3
2935
2936 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2937
2938         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
2939         problem in bitfields >= 8 bits.
2940
2941 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
2942
2943         * src/SDCCsymt.c: undid changes that were not meant to be committed
2944
2945 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
2946
2947         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
2948
2949 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
2950
2951         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
2952           copied and wrong bit got inverted
2953
2954 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2955
2956         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
2957         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
2958         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
2959         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
2960         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
2961         assignments to bitfields at known addresses
2962         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
2963         reads from bitfields at known addresses
2964         * src/hc08/ralloc.c (packRegisters),
2965         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
2966         genhc08Code): optimize pointer get values used as conditionals
2967         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
2968         and branch
2969
2970 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2971
2972         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
2973         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
2974         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
2975         as conditionals
2976
2977 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2978
2979         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
2980
2981 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2982
2983         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
2984         related problems
2985
2986 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
2987
2988         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
2989
2990 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2991
2992         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
2993         mcs51 port
2994
2995 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
2996
2997         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
2998
2999 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3000
3001         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
3002         cases use more compact code.
3003
3004 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
3005
3006         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
3007
3008 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3009
3010         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
3011
3012 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3013
3014         * src/SDCCsymt.h,
3015         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
3016         parameter of changePointer() from symbol* to sym_link*
3017         * src/SDCCast.c (decorateType): call changePointer() for CAST op
3018         * src/SDCCsymt.c (compareType): void* type is castable to other
3019         pointers, but not necesarily an exact match.
3020         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
3021         is no longer blindly treated as an exact match.
3022         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
3023
3024 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
3025
3026         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
3027
3028 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
3029
3030         * src/pic/gen.c,
3031         * src/pic/pcode.c,
3032         * src/pic/ralloc.h,
3033         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
3034
3035 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
3036
3037         * src/pic/device.c,
3038         * src/pic/device.h,
3039         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
3040
3041 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3042
3043         * src/mcs51/gen.c (emitcode): fixed bug #992819
3044
3045 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
3046
3047         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
3048           there's no need to make it worse
3049
3050 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3051
3052         * src/mcs51/ralloc.c (deassignLR),
3053         * src/ds390/ralloc.c (deassignLR),
3054         * src/hc08/ralloc.c (deassignLR),
3055         * src/z80/ralloc.c (deassignLR),
3056         * src/pic/ralloc.c (deassignLR),
3057         * src/pic16/ralloc.c (deassignLR),
3058         * src/avr/ralloc.c (deassignLR),
3059         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
3060         rlivePoint): fixed another part of bug #971834
3061
3062 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3063
3064         * src/z80/main.c: enabled "critical" keyword
3065         * src/z80/mappings.i,
3066         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
3067         functions (fixes bug #979646)
3068         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
3069
3070 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3071
3072         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
3073           such as c:\mydir.
3074
3075 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
3076
3077         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
3078           doesn't disable too much optimizations
3079
3080 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3081
3082         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
3083
3084 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
3085
3086         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
3087
3088 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3089
3090         * src/pic/gen.c tidied up tabs
3091         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
3092         * src/pic/main.c tidied up tabs
3093         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
3094         * src/pic/pcoderegs.c tidied up tabs
3095         * src/pic/ralloc.c tidied up tabs
3096
3097 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
3098
3099         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
3100         to S_FIXED for pic16 port and when symbol is not in level 0,
3101         allocate for S_REGISTER storage class and pic16 port, too,
3102         * src/pic16/device.h: prototype for checkSym,
3103         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
3104         * (pic16_assignConfigWordValue): test the value and the mask to
3105         validate that the value is suitable for the configuration word,
3106         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
3107         collect extern declared symbols, don't emit symbol twice, check
3108         first if symbol is in publics set first,
3109         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
3110         * added command line '--fstack' which enables an experimental
3111         feature for stack access, too buggy to be used yet...
3112         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
3113         * (pic16_allocDirReg): when register has storage class S_REGISTER
3114         allocate in pic16_dynAccessRegs,
3115         * device/include/pic16/pic18f????.h: modified configuration word
3116         naming convention, words started as CONFIG0H but should be CONFIG1H
3117
3118 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
3119
3120         * device/include/mcs51reg.h: fixed bug 970993
3121
3122 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
3123
3124         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
3125         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
3126         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
3127         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
3128         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
3129         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
3130           error/warning numbers,
3131           added function setWarningDisabled()
3132         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
3133         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
3134           _memcmp.c _memmove.c calloc.c realloc.c free.c
3135         * support/regression/tests/malloc.c: added tests for new functionality
3136         * support/regression/tests/zeropad.c: added tests for truncated initializers
3137           and initialized char arrays starting with '\x0'
3138         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
3139
3140 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
3141
3142         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
3143
3144 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3145
3146         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
3147         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
3148         peephole 177.e. Thanks to anonymous
3149
3150 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
3151
3152         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
3153         function isn't used in the source but referenced as a
3154         variable initializer then declare it as extern in .asm file
3155
3156 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
3157
3158         * .version: increased version number to 2.4.3
3159
3160         Adding version extension according to ChangeLog CVS revision
3161         * src/Makefile.in (target all): added dependency 'version.h'
3162         * (rule version.h): added rule to create version.h from ChangeLog,
3163         * (rule dep): added dependency version.h,
3164         * src/version.awk: AWK script to create version.h
3165         * src/SDCCdwarf2.c (dwWriteModule),
3166         * src/SDCCglue.c (initialComments),
3167         * src/SDCCmain.c (printVersionInfo): modified to write after
3168         version string the version extension number,
3169         * src/SDCCutil.c: included "version.h"
3170         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
3171         number,
3172         * src/SDCCutil.h: added prototype for getBuildNumber
3173
3174         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
3175         includeDirsSet, too,
3176         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
3177         const char [] is found in function prototype...
3178
3179         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
3180         moving to WREG with source is already in WREG,
3181         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
3182         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
3183         * (aopForSym): stack'ed symbols are partially supported, added
3184         if-clause to support symbols in FARSPACE,
3185         * (sameRegs): added test for AOP_ACC to see if registers are same,
3186         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
3187         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
3188         * (pic16_popRegFromString): will not allocate a new register if it
3189         doesn't find one by name, bug may have introduced...
3190         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
3191         * (genIpush): revived to use pic16 port's stack,
3192         * (genAddrOf): added incomplete case for stack'ed operand,
3193         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
3194         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
3195         can handle multibyte operands,
3196         * src/pic16/glue.c (pic16_printIval*): some debug info added,
3197         * (pic16initialComments): added message for MPLAB compatibility
3198         mode enabled,
3199         * src/pic16/main.h: prototype for pic16_mplab_comp,
3200         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
3201         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
3202         * (_pic16_linkEdit): NEW, handles link stage, transferred here
3203         because of increased complexity of procedure,
3204         * (_process_pragma): stack pragma changed to format 'stack pos len',
3205         emit symbol '_stack_end' to conform with gplink,
3206         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
3207         to search for register,
3208         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
3209         PO_GPR_REGISTER,
3210         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
3211         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
3212         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
3213         case for PO_GPR_REGISTER,
3214         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
3215         dies, the new era is ahead !...
3216         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
3217         pic16_dynInternalRegs,
3218         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
3219         * (pic16_allocDirReg): minor optimizations and bug fixes,
3220         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
3221
3222         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
3223         load stack and frame pointer with address of 'stack_end' symbol
3224
3225 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
3226
3227         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
3228         without source code but only variable initializers
3229
3230 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
3231
3232         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
3233         external are not declared as extern to reduce overhead while linking
3234
3235 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
3236
3237         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
3238
3239 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
3240
3241         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
3242           Yee Keat for the patch
3243         * src/SDCCast.c (decorateType): fixed bug #979599
3244         * src/ds390/gen.h: removed local fReturnSizeDS390
3245         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
3246         * src/ds390/gen.c (genAnd, genOr, genXor),
3247         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
3248
3249 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
3250
3251         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
3252         add relFilesSet to $3, manipulate $2 to handle linking of object
3253         files without source files in command line,
3254         * device/include/pic16 (all headers): added ID location macros,
3255         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
3256         entries for ID location bytes,
3257         * (pic16_assignIdByteValue): NEW,
3258         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
3259         added field dumpcalltree to pic16_options_t,
3260         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
3261         is used instead of pic16_Gstack_base_addr, check if (ifx) before
3262         emitting rFalseIfx label after check_carry label,
3263         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
3264         pic16_emitDIRegs), NEW
3265         * (pic16glue): dump .calltree file when option --calltree found,
3266         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
3267         * (_pic16_genAssemblerPreamble): emit ID locations after
3268         configuration registers,
3269         * (pic16_linkCmd): modifications of the link command,
3270         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
3271         * (pic16_pCodeInitRegisters): don't init stack registers,
3272         * (pic16_findPrevInstruction): fixed bug,
3273         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
3274         bug with immediate registers,
3275         * (buildCallTree): traces stack push and pop,
3276         * (pct2): dump also stack usage for each function,
3277         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
3278         * (pic16_allocDirReg): various modifications,
3279         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
3280         fixed to 1,
3281
3282 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
3283
3284         * src/pic16/pcode.c: removed buggy double colon
3285
3286 2004-07-01 Borut Razem <borut.razem AT siol.net>
3287
3288         * support/scripts/sdcc.nsi: added include/pic16 to setup
3289
3290 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
3291
3292         * device/lib/Makefile.in: fixed bug in target objects-pic16,
3293         * device/lib/pic16/Makefile: prefixed with dash (-) command under
3294         target 'clean',
3295         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
3296         specific command line arguments. Also added sample lkr script
3297         for placing a variable at a specific memory bank.
3298         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
3299         at a specific memory bank,
3300         * (pic16_dump_isection): fixed bug which caused string literals to
3301         be omitted when dumping idata section,
3302         * (pic16_groupRegistersInSection): added code to handle registers
3303         in specific memory banks,
3304         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
3305         public, all references are renamed too,
3306         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
3307         AOP_DPTR2,
3308         * (pic16_storeForReturn): added case to handle when dest is WREG,
3309         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
3310         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
3311         pic16_rel_udata, check to see if that register is marked as being
3312         a member of a specific memory bank,
3313         * (pic16_printIvalCharPtr): added code to add string literals either
3314         to code or the idata sections,
3315         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
3316         also accept the 'udata' pragma,
3317         * src/pic16/main.h: new structure types sectName and sectSym
3318         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
3319         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
3320         * (pic16_findPrevInstruction): fixed, it returned nothing,
3321         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
3322         instruction combinations,
3323         * (pic16_FixRegisterBanking): heavily reorganised,
3324         * (pic16_AnalyzeBanking): if generating banksel directives is
3325         disabled, then don't call FixRegisterBanking at all,
3326         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
3327         completely removed,
3328         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
3329
3330 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
3331
3332         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
3333         Phuah Yee Keat <yk.phuah AT nestac.com>
3334
3335 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3336
3337         * src/pic16/glue.c (pic16createInterruptVect): function now emits
3338         correctly the IVT even if it is relocated to some other location
3339
3340 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3341
3342         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
3343         * device/include/pic16/pic18f2220.h: NEW,
3344         * device/lib/pic16/libdev/pic18f2220.c: NEW,
3345         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
3346         * src/pic16/device.c (struct Pics16): added info for 18f2220,
3347         * src/pic16/device.h (struct pic16_options): added ivt_loc and
3348         nodefaultlibs, ivt_loc is the location of the interrupt vector
3349         table, and nodefaultlibs signs that default libraries should not be
3350         linked in link stage,
3351         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
3352         according to --ivt-loc argument,
3353         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
3354         when pragma stack is found,
3355
3356 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3357
3358         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
3359         256 (range check), 257 (do while), 258.a-f (bit banging
3360         f.e. on 3-wire SPI bus)
3361
3362 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3363
3364         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
3365         variables used exclusively within a loop
3366
3367 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
3368
3369         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
3370
3371 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3372
3373         * src/SDCClrange.c (computeClash): fixed bug #971834
3374
3375 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3376
3377         * src/mcs51/gen.c (genCmp): fixed bug #975903
3378         * src/hc08/gen.c (operandsEqu),
3379         * src/ds390/gen.c (operandsEqu),
3380         * src/z80/gen.c (operandsEqu),
3381         * src/pic/gen.c (operandsEqu),
3382         * src/pic16/gen.c (operandsEqu),
3383         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
3384         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
3385
3386 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3387
3388         * src/SDCCcse.c (cseBBlock): fixed bug #966963
3389
3390 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
3391
3392         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
3393         default case in switch statement,
3394         * glue.c (pic16_initPointer): expr is initialised via decoarteType
3395         to eliminate problem with initialisation of pointers, but problem
3396         still exists,
3397         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
3398         * (emitStaticSegment): removed various lines emitting debug info,
3399         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
3400         added processor registers for utilizing EEPROM,
3401         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
3402         configurable and set 8
3403
3404 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
3405
3406         * .version: increased version number to 2.4.2,
3407
3408         Cumulative patch for pic16 port
3409         * src/pic16/device.c: changed scheme to dump initial values for
3410         variables in idata segment, all print_idata* functions were removed,
3411         now the pic16_printIval* will be called,
3412         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
3413         * _pic16_printPointerType, pic16_printPointerType,
3414         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
3415         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
3416         NEW, similar to the respective functions in SDCCglue.c,
3417         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
3418         way, emitting hex bytes,
3419         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
3420
3421 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3422
3423         * src/avr/ralloc.c (serialRegAssign),
3424         * src/xa51/ralloc.c (serialRegAssign),
3425         * src/pic/ralloc.c (serialRegAssign),
3426         * src/pic16/ralloc.c (serialRegAssign),
3427         * src/hc08/ralloc.c (serialRegAssign),
3428         * src/z80/ralloc.c (serialRegAssign),
3429         * src/ds390/ralloc.c (serialRegAssign),
3430         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
3431
3432 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3433
3434         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
3435         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
3436
3437 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
3438
3439         Cumulative patch for pic16 port:
3440         * src/pic16/device.h (typedef PIC16_device) modified fields for
3441         defining microcontrollers,
3442         * src/pic16/device.c: added new info for all devices in Pics16 array,
3443         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
3444         to be optimised out by the pCode optimiser,
3445         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
3446         specially, bug reported by G.M. Gallant,
3447         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
3448         as force'd so that cannot be optimised out by pCode optimiser,
3449         * src/pic16/pcode.c,
3450         * src/pic16/pcodepeeph.c,
3451         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
3452         they are disabled by default, but can be enabled explicit with
3453         command argument --denable-peeps, for testing,
3454         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
3455         --pomit-ivt in COMPILE_FLAGS
3456
3457 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3458
3459         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
3460           compilation on MSVC
3461
3462 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3463
3464         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
3465
3466 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3467
3468         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
3469         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
3470
3471 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
3472
3473         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
3474         would only assign 0x300001 register.
3475
3476 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
3477
3478         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
3479         in COMPILE_FLAGS. Thanks to G. Gallant for report.
3480
3481 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3482
3483         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
3484         for ds80c400
3485         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
3486         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
3487         added peephole 254 (left shift), 255 (jump table)
3488
3489 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
3490
3491         * device/lib/Makefile.in: removed comment line with model-pic16,
3492         * (target port-specific-objects-pic16): the libraries and objects
3493         are copied to the build directory form the device/lib/pic16/bin
3494         directory
3495
3496         Cumulative patch concerning pic16 port:
3497         * library directory has been re-organized,
3498         * added support for PIC18F1220,
3499         * added headers and library sources for chips 18f1220,18f6520,
3500         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
3501
3502         * configuration registers setting has changed, now each supported
3503         device has a complete description of the registers it uses,
3504         * all initialisations are moved to idata sections, these section
3505         can be absolute or relocatable,
3506         * fixed initialisation of codespace variables,
3507         * fixed warning about PCLATU and gpsim,
3508         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
3509         * (genAssign): use table reads when assigning from variables in codespace,
3510         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
3511         char/int variables placed in codespace,
3512         * (pic16_emitConfigRegs): NEW, emits a list with configuration
3513         registers set in .asm file, no need for --pomit-config-words anymore,
3514         * (pic16glue): some 8051 legacy segments are commented out
3515         (to be removed completely),
3516         * added support for alternative assembler and linker with --asm=
3517         and --link= command line arguments,
3518         * peepholes are disabled automatically in the port, no need to
3519         specify on command line,
3520         * port supports natively char/int/long multiplication, but converts
3521         all divisions to support functions,
3522         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
3523         to the file set in variable $2,
3524         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
3525         strings in ASCII format and not in hex,
3526         * ralloc.c (serialRegAssign): added a triplet of conditional calls
3527         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
3528         allocate proper register if iCodes aren't temporary,
3529
3530 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
3531
3532         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
3533
3534 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
3535
3536         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
3537         is commented out
3538
3539 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3540
3541         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
3542         computed address is reused
3543         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
3544         multi-byte bitfields
3545
3546 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3547
3548         * src/z80/gen.c: (genArrayInit): must check for pointers too
3549
3550 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3551
3552         * support/regression/tests/zeropad.c: never meant to commit the
3553           nestedstruct test: removed, added check for GCC version
3554
3555 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
3556
3557         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
3558         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
3559         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
3560           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
3561           bugs 928906 and 954082 half-empty initializers
3562         * src/SDCCsymt.h,
3563         * src/SDCCsymt.c (getAllocSize): added for above fix
3564         * src/z80/gen.c (genArrayInit): fixed bug 741044
3565         * support/regression/tests/zeropad.c: added tests
3566
3567 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
3568
3569         * src/pic16/device.c (pic16_dump_section): corrected bug which
3570         caused some symbols of the libraries to be misplaced
3571
3572 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3573
3574         * src/pic16/glue.c,
3575         * src/pic16/ralloc.h,
3576         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
3577         to fix conflict with pic port
3578
3579 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3580
3581         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
3582         externs configuration variables,
3583         * src/pic16/ralloc.h,
3584         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
3585         prototype in header, commented out some debug messages
3586
3587 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
3588
3589         * src/pic16/glue.c,
3590         * src/pic16/main.c,
3591         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
3592         for gpasm COFF object generation. Thanks to D. Hawkins for
3593         his patch info
3594
3595 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3596
3597         * src/ds390/main.c,
3598         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
3599         Brock for spotting this)
3600         * src/ds390/gen.c (genEndFunction),
3601         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
3602         interrupt handler and critical. Disable push/pop optimizations when
3603         peephole optimizations disabled.
3604
3605 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
3606
3607         Updated pic16 library sources and headers.
3608         * device/lib/pic16/pic18f*/ ,
3609         * device/include/pic16/*.h: modified to handle structured SFR
3610         definitions
3611
3612 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
3613
3614         * src/port.h (PORT structure): added hook initPaths, now each
3615         port can declare its own default search paths,
3616         which can been seen with the --print-search-dirs option,
3617         see pic16 port for example,
3618         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
3619         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
3620         * (doPrintSearchDirs): NEW, replaces in a central manner the
3621         printing of search dirs which was split in set*Paths functions,
3622         * (main): added call to port->initPaths and doPrintSearchDirs,
3623         * src/avr/main.c,
3624         * src/ds390/main.c,
3625         * src/hc08/main.c,
3626         * src/izt/i186.c,
3627         * src/izt/tlcs900h.c,
3628         * src/mcs51/main.c,
3629         * src/pic/main.c,
3630         * src/pic16/main.c: modified port structures to reflect addition of
3631         initPaths hook,
3632
3633         * src/pic16/device.c (regCompare): registers are finally sorted by name,
3634         * (pic16_dump_section): for registers in same address reserve memory once,
3635         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
3636         to no_banksel,
3637         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
3638         result is greater in size than right or left,
3639         * (pic16_genUMult8X8_8): there are some cases where the result can
3640         be 16 bits size, so handle these,
3641         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
3642         * (pic16_outBitC): modified to emit pcodes,
3643         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
3644         or not,
3645         * (genDivOneByte): implemented algorithm to divide 8-bits,
3646         * (genCmp): uncommented goto, but issues still exist,
3647         * (genAnd): fixed a bug with variables >8bits,
3648         * (genPackBits): optimization added that uses BCF/BSF to change a
3649         single bit,
3650         * (genAssign): fixed bug when assigning floating point literals,
3651         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
3652         __sdcc_gsinit_startup label,
3653         * src/pic16/main.c (_pic16_init): removed search directory
3654         initialisations,
3655         * (_pic16_initPaths): NEW, used to initialise search directories,
3656         * (_hasNativeMulFor): support functions for all except char/int
3657         multiplication, and char division,
3658         * (PIC16_port struct): modified entry for native mul support,
3659         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
3660         no_banksel option,
3661         * (buildCallTree): call to register_usage is ifdef'ed out,
3662
3663 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3664
3665         * device/include/string.h: applied Stas Sergeev's patch to make this
3666         header file compatible with the preprocessor -Wundef option
3667         * src/SDCCmain.c (main): abort compilation if preprocessor reports
3668         failure (fixes bug #941458)
3669
3670 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3671
3672         * src/SDCCopt.c (killDeadCode): fixed bug #907733
3673         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
3674         that the variable, not the function, should be static
3675         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
3676         to be consistent with non-literal case
3677
3678 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3679
3680         * src/SDCCast.c (isConformingBody): fixed bug #949967
3681         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
3682         convilong): fixed bug #952086
3683
3684 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3685
3686         * src/SDCCmem.c (allocVariables): fixed bug #955321
3687
3688 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3689
3690         * src/hc08/main.c (_hc08_genAssemblerEnd),
3691         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
3692         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
3693         completely eliminated the use of a temporary file
3694         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
3695         when more than one file linked
3696         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
3697
3698 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3699
3700         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
3701         which fixes bug #543481
3702         * support/regression/tests/bug-751703.c: fixed comments left from a
3703         cut and paste error
3704         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
3705         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
3706         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
3707         scopes
3708         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
3709         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
3710         are now changed to underscores in moduleName
3711
3712 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3713
3714         * as/mcs51/lkmem.c: better fix for bug #954173
3715
3716 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
3717         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3718
3719         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
3720         * device/include/c8051f000.h,
3721         * device/include/c8051f120.h,
3722         * device/include/c8051f300.h,
3723         * device/include/c8051f310.h,
3724         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
3725         PWM16) and detab'ed
3726
3727 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3728
3729         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
3730         and mailing lists, doc'ed --no-peep-comments, removed reference
3731         to knoppix (newest version has no LyX/LaTeX), other minor changes
3732         * src/SDCCglue.c (glue): save 2 bytes stack space with
3733         option --main-return. The ljmp could probably be avoided too
3734
3735 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3736
3737         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
3738
3739 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3740
3741         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
3742         * src/SDCCopt.c (isLocalWithoutDef),
3743         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
3744         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
3745         (credit to Maarten Brock for patch #949363, on which this is based)
3746         * support/regression/tests/bug-751703.c: some test cases of extern used
3747         within inner scopes.
3748
3749 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3750
3751         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
3752         SPEC_STRUCT
3753         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
3754         struct definitions
3755         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
3756         dwWriteLabel): fix to create valid debugger symbols even when
3757         the module name has non-alphanumeric symbols in it
3758         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
3759         when a variable's allocation has been optimized away
3760
3761
3762 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3763
3764         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
3765         * src/hc08/main.c,
3766         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
3767         * src/mcs51/main.c,
3768         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
3769         * src/ds390/main.c,
3770         * src/z80/gen.c (z80_emitDebuggerSymbol),
3771         * src/z80/main.c,
3772         * src/pic/gen.c (pic14_emitDebuggerSymbol),
3773         * src/pic/main.c,
3774         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
3775         * src/pic16/main.c,
3776         * src/avr/gen.c (avr_emitDebuggerSymbol),
3777         * src/avr/main.c,
3778         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
3779         * src/xa51/main.c,
3780         * src/SDCCdebug.c (emitDebuggerSymbol),
3781         * src/SDCCdebug.h,
3782         * src/port.h: added a debugger struct to the port struct. Added a
3783         callback for defining debugger symbols
3784
3785         * src/SDCCast.c (createLabel),
3786         * src/SDCC.y (labeled_statement): mark all compiler generated labels
3787         with isitmp = 1
3788         * src/SDCCicode.h,
3789         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
3790         iCode back to the ast for the function
3791
3792         * src/hc08/ralloc.c (hc08_assignRegisters),
3793         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
3794         unneeded fields from the regs struct.
3795         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
3796         pushReg() & pullReg() functions instead of emitcode()
3797
3798         * src/hc08/gen.c (genLabel, genhc08Code),
3799         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
3800
3801         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
3802         debugger hooks
3803
3804         * src/hc08/gen.c (genEndFunction, genhc08Code),
3805         * src/hc08/gen.h,
3806         * src/mcs51/gen.c (genEndFunction, gen51Code),
3807         * src/mcs51/gen.h,
3808         * src/ds390/gen.c (genEndFunction, gen390Code),
3809         * src/ds390/gen.h,
3810         * src/z80/gen.c (genEndFunction, genZ80Code),
3811         * src/z80/gen.h,
3812         * src/z80/z80.h,
3813         * src/pic/gen.c (genEndFunction, genpic14Code),
3814         * src/pic/gen.h,
3815         * src/pic16/gen.c (genEndFunction, genpic16Code),
3816         * src/pic16/gen.h,
3817         * src/avr/gen.c (genEndFunction, genAVRCode),
3818         * src/avr/gen.h,
3819         * src/xa51/gen.c (genEndFunction, genXA51Code),
3820         * src/xa51/gen.h,
3821         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
3822         specific code to cdbFile.c and out of the backend code generators
3823
3824         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
3825         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
3826         starting address is now 0
3827
3828         * as/hc08/asm.h,
3829         * as/hc08/m08pst.c,
3830         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
3831         assembler directive for DWARF support
3832         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
3833
3834         * src/src.dsp,
3835         * src/Makefile.in,
3836         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
3837
3838 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3839
3840         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
3841         and inappropriate peephole optimization in jump tables
3842
3843 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3844
3845         * as/hc08/m08pst.c,
3846         * src/SDCCglue.c: sdccopt works for the hc08 port now
3847
3848 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
3849
3850         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
3851
3852 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3853
3854         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
3855
3856 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3857
3858         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
3859         rules
3860         * src/SDCCmain.c,
3861         * src/SDCCglobl.h,
3862         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
3863         comments from the peephole optimizer replacement rules
3864         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
3865         symbols
3866         * src/SDCCcse.c (updateSpillLocation),
3867         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
3868         equivalents
3869         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
3870         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
3871         objects far pointers
3872
3873 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3874
3875         * src/SDCCsymt.h: a missing part of my last change
3876         * src/pic/ralloc.c (regTypeNum),
3877         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
3878
3879 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3880
3881         * src/SDCCicode.h,
3882         * src/SDCCicode.c (aggrToPtrDclType),
3883         * src/SDCCptropt.h,
3884         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
3885         ptrPseudoSymConvert),
3886         * src/pic/ralloc.c (regTypeNum),
3887         * src/pic16/ralloc.c (regTypeNum),
3888         * src/hc08/ralloc.c (regTypeNum),
3889         * src/ds390/ralloc.c (regTypeNum),
3890         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
3891         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
3892
3893 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3894
3895         * link/z80/lkmain.c (afile),
3896         * as/hc08/lkmain.c (afile),
3897         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
3898         prevent a pointer problem when a filename has no directory and
3899         no extension specified.
3900
3901 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3902
3903         * link/z80/lkmain.c (afile): allow periods in directory names
3904         * link/z80/lkmain.c (afile),
3905         * as/mcs51/lkmain.c (afile),
3906         * as/hc08/lkmain.c (afile): allow linker script file to have an
3907         extension other than ".lnk"
3908         * link/z80/lklex.c (getfid),
3909         * link/z80/lkmain.c (parse),
3910         * as/mcs51/lklex.c (getfid),
3911         * as/mcs51/lkmain.c (parse),
3912         * as/hc08/lklex.c (getfid),
3913         * as/hc08/lkmain.c (parse): Support comments in the linker script
3914         file on lines by themselves and after filenames
3915
3916 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3917
3918         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
3919
3920 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3921
3922         * src/z80/peeph-z80.def: removed some peephole rules that don't
3923         work with multibyte arithmetic (fixed bug #937126)
3924         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
3925         to registers and not global variables
3926         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
3927         geniCodePreInc, geniCodePostDec, geniCodePreDec,
3928         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
3929         checking for assignments not internally generated (fixed bug #931895)
3930         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
3931         structure member (fixed bug #930072)
3932
3933 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3934
3935         * src/SDCCmain.c (linkEdit),
3936         * src/hc08/main.c (_hc08_parseOptions),
3937         * as/hc08/Makefile.in,
3938         * as/hc08/aslink.h,
3939         * as/hc08/asm.h,
3940         * as/hc08/m08pst.c,
3941         * as/hc08/lkrloc.c (relr, rele),
3942         * as/hc08/lkarea.c (lnkarea)
3943         * as/hc08/lkmain.c (afile, parse),
3944         * as/hc08/lkelf.c: support for ELF output
3945         * as/hc08/lks19.c (s19),
3946         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
3947
3948 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3949
3950         * as/mcs51/lkihx.c: Fixed bug #899105.
3951
3952 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3953
3954         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
3955         .dsp files from Unix to DOS.
3956
3957 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3958
3959         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
3960         function pointers; we have been compliant for several months now.
3961         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
3962         change that was accidently commented out
3963         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
3964         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
3965         bug #922319
3966
3967 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3968
3969         * src/hc08/gen.c: output of all of the internal debugging information
3970         is now controlled by the D() macro; it is disabled by default
3971
3972 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3973
3974         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
3975         harder to keep the same registers during a CAST iCode
3976         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
3977         long via int can be done in a single cast, if the signedness is
3978         correct.
3979         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
3980         putchar() in tinibios.c in ds390's library
3981
3982 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
3983
3984         * src/SDCCast.c (decorateType): fixed bug #898889,
3985         cast result of a literal complement too
3986         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
3987         fixed check for bitfields
3988
3989 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
3990
3991         * src/SDCCicode.c (geniCodeLogic): made it static,
3992         (geniCodeLogicAndOr): added in order to fix bug #905492,
3993         (ast2iCode): fixed bug #905492
3994         * support/regression/tests/bug-905492.c: added
3995         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
3996         (processParms): fixed bug #927659: don't copy parms, this will clear
3997         decorated flag
3998         * support/regression/tests/bug-927659.c: added
3999
4000 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
4001
4002         * src/SDCCast.c (addCast): don't cast float to char
4003         * device/lib/libsdcc.lib: added _memmove
4004
4005 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
4006
4007         * device/lib/large/Makefile: fixed parallel execution by
4008         replacing `make` by `$(MAKE)`
4009
4010 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4011
4012         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
4013         offsets (fixes bug #923936)
4014
4015 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
4016
4017         * device/lib/small/Makefile: fixed parallel execution by
4018         replacing `make` by `$(MAKE)`
4019
4020 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4021
4022         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
4023
4024 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
4025
4026         * src/pic/gen.c (genCpl): multi-byte complements were not working.
4027         * src/regression/Makefile: Regression test was not running.
4028
4029 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4030
4031         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
4032         complement if possible
4033         * src/SDCCval.c (valComplement),
4034         * src/SDCCicode.c (operandOperation): fixed complement of literal
4035         * support/regression/tests/onebyte.c (testComplement): added
4036
4037 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
4038
4039         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
4040         return an optimized tree; actually replace actParm with the new tree
4041         * src/SDCCast.h: added some parantheses to remove side effects
4042         * support/regression/tests/bug-920866.c
4043
4044 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
4045         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
4046         Bit operands were not being handled properly in the pic14 port.
4047         (now src/regression/add.c passes again).
4048
4049 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4050
4051         * src/SDCC.y (labeled_statement): case and default no longer require
4052         a following statement (RFE #893037)
4053
4054 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4055
4056         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
4057         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
4058         disabled (fixes bug #916294)
4059         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
4060         "mov a,acc"; patch provided by Lenny Story
4061         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
4062
4063 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4064
4065         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
4066         functions
4067         * src/ds390/gen.c (genFunction, genEndFunction),
4068         * src/ds390/ralloc.c (ds390_assignRegisters),
4069         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
4070         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
4071         pushed if there are parameters passed on the stack. Also, a cleaner
4072         way to decide if r0/r1 should be pushed/popped. (Together they fix
4073         bug #918693)
4074
4075 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4076
4077         * doc/sdccman.lyx,
4078         * device/lib/mcs51/crtpagesfr.asm,
4079         * device/lib/mcs51/crtxinit.asm,
4080         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
4081         to avoid confusion with Si Lab's SFRPAGE register.
4082
4083 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4084
4085         * src/SDCCglue.c (emitMaps): allow public sfr variables
4086         * src/SDCCglue.c (initialComments): include compiler build date
4087         with compiler version and put the timestamp of the generated
4088         assembly file on a serperate line to be less confusing.
4089         * src/port.h: added genInitStartup hook
4090         * src/avr/main.c,
4091         * src/ds390/main.c,
4092         * src/hc08/main.c,
4093         * src/pic/main.c,
4094         * src/pic16/main.c,
4095         * src/xa51/main.c,
4096         * src/z80/main.c: genInitStartup initialize as NULL (default to
4097         historical behaviour)
4098         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
4099         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
4100         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
4101         library instead of hard coding it into the compiler.
4102         * support/regression/ports/mcs51-stack-auto/spec.mk,
4103         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
4104         * device/lib/mcs51/Makefile,
4105         * device/lib/small/Makefile,
4106         * device/lib/large/Makefile,
4107         * device/lib/mcs51/crtpagesfr.asm,
4108         * device/lib/mcs51/crtstart.asm,
4109         * device/lib/mcs51/crtxclear.asm,
4110         * device/lib/mcs51/crtxinit.asm,
4111         * device/lib/mcs51/crtclear.asm,
4112         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
4113         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
4114         and into user configurable files.
4115         * device/lib/clean.mk: clean mcs51 directory too
4116         * support/regression/tests/longlit.c: added static to T1 declaration
4117         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
4118         accesses in the initialization code
4119
4120 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4121
4122         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
4123         OSCTRIMVAL as noted in bug #916008
4124
4125 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4126
4127         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
4128         in loops with multiple exits (reported as incorrect registers
4129         used by Martin Helmling in Sdcc-user list)
4130
4131 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4132
4133         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
4134         made ds390 register extensions look less like error messages
4135
4136 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4137
4138         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
4139         reported by Adam Wozniak in Sdcc-user list
4140
4141 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
4142
4143         * src/SDCCast.c (decorateType): fixed with bug and promotion in
4144         arithmetic optimizations, added debug output
4145
4146 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
4147
4148         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
4149         * sdcc.spec: updated and split sdcc into 3 rpms
4150         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
4151         needed for literals of LEFT_OP and '+'
4152         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
4153         introduced RESULT_TYPE_NOPROM
4154         (geniCodeMultiply): fixed logic for decision if mul is optimized to
4155         left shift
4156         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
4157         limited promotion to int only for '*'
4158         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
4159
4160 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
4161
4162         * src/pic16/gen.c (genSkip),
4163         (genc16bit2lit), (gencjneshort): commented out
4164         (is_LitOp): new helper function, checks operand type
4165         (genCmpEq): rewritten
4166
4167 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
4168
4169         * support/regression/tests/bug-908454.c: added
4170
4171 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
4172
4173         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
4174         * src/SDCCicode.c (usualBinaryConversions): op needs int type
4175         (geniCodeCast): cosmetic, don't preserve bit storage class
4176         (geniCodeLeftShift): added promotion
4177         (geniCodeLogic): fixed regression
4178         * src/SDCCsymt.c (computeTypeOr): accept bits too
4179         (compareType): 2nd part of fix for bug #908454, needed for bitfields
4180
4181 2004-03-07  Borut Razem <borut.razem AT siol.net>
4182
4183         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
4184
4185 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
4186
4187         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
4188         version of pic16_genPackRegisters which does not check if ic is a
4189         CAST operator,
4190         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
4191         function cause string1.c regression test fails
4192
4193 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
4194
4195         * sim/ucsim/configure.in,
4196         * sim/ucsim/configure,
4197         * sim/ucsim/doc/Makefile.in: use docdir
4198         * src/SDCC.y: fixed sbit atrributes
4199         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
4200         * src/SDCCast.c (decorateType): |^& need special promotion handling
4201         * src/SDCCast.h,
4202         * src/SDCCsymt.h: moved definition of RESULT_TYPE
4203         * src/SDCCsymt.h (computeType),
4204         * src/SDCCicode.c: computeType() needs op
4205         * src/SDCCsymt.c (checkTypeSanity),
4206         * doc/sddman.lyx: "plain" bitfields are unsigned
4207         * src/SDCCsymt.c (computeTypeOr): added
4208         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
4209         |^& ops
4210         * src/SDCCval.c (val*): computeType() needs op
4211         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
4212         * support/regression/tests/onebyte.c: added tests for |^&
4213
4214 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
4215
4216         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
4217         for writing icode into asm output.
4218
4219 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
4220
4221         * src/pic16/device.c: added some debug lines enabled
4222         with macro DEBUG_CHECK,
4223         * src/pic16/genarith.c: more debug in genPlus,
4224         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
4225         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
4226         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
4227         * (aopForSym): onStack symbols are re-placed in data memspace,
4228         and onStack flag is cleared,
4229         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
4230         copy temporary pcodeop,
4231         * (genPcall): added warning for not updating PCLATU,
4232         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
4233         always true for pic16 port,
4234         * (genMultOneWord): NEW, supports integer multiplication,
4235         * (genMult): modified to call genMultOneWord,
4236         * (ifxForOp): added warning when return NULL,
4237         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
4238         flag is set before call to operandFromSymbol for implicit
4239         added structures,
4240         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
4241         options.intlong_rent are set by default,
4242         * (_hasNativeMulFor): modified to allow port generation of integer
4243         multiplication,
4244         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
4245         set regtype to REG_SFR for all registers, restricting seting the
4246         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
4247
4248 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4249
4250         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
4251         more than 500 times in the regression tests
4252
4253 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4254
4255         * support/Util/SDCCerr.h,
4256         * support/Util/SDCCerr.c,
4257         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4258         enumerator_list),
4259         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
4260         for symbol conflicts.
4261         * support/valdiags/tests/enum.c,
4262         * support/valdiags/tests/tentdecl.c,
4263         * support/valdiags/tests/struct.c: expect possible error messages
4264         referring to original symbol definitions.
4265         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
4266         * src/SDCCsymt.h,
4267         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
4268
4269 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
4270
4271         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
4272
4273 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
4274
4275         * src/pic16/ralloc.c (newReg): fixed bug #908929
4276
4277 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4278
4279         * src/ds390/gen.c: added missing #include "main.h"
4280
4281 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
4282
4283         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
4284         checking if symbol is already in set,
4285         * src/pic16/device.h: prototype for checkAddSym,
4286         * src/pic16/gen.c: (_G): added entry interruptvector,
4287         * (assignResultValue): removed some commented out lines,
4288         * (genFunction): check for ISR via sym->type, absolute section for
4289         interrupt code is created via a new pBlock, the goto instruction is
4290         placed now correctly at the interrupt vector position, changed all
4291         references from ivec to _G.interruptvector,
4292         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
4293         is the interrupt is a high priority one, same for return from ISR,
4294         * src/pic16/glue.c: changed all calls of addSetHead for publics and
4295         externs to calls of checkAddSym,
4296         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
4297         pic16_pcode_verbose flag is set,
4298         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
4299         * src/pic16/pcoderegs.c: message about how many registers are saved
4300         will only be emitted if pic16_pcode_verbose flag is set,
4301
4302 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4303
4304         * src/ds390/ralloc.h,
4305         * src/ds390/ralloc.c (ds390_regWithIdx),
4306         * src/ds390/gen.c (emitcode),
4307         * src/ds390/main.h,
4308         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
4309         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4310         ds390operandCompare, getRegsRead, getRegsWritten,
4311         initializeAsmLineNode): customized instruction size calculation for
4312         ds390, started basis for some register optimizations
4313         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
4314         corresponding assembly output
4315         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
4316         missing push/pop of r0/r1. Optimized push/pops
4317
4318 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4319
4320         * src/mcs51/main.c (instructionSize): fixed ACALL size
4321         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
4322
4323 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
4324
4325         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
4326         the sorting of rlist with NULL elements
4327         * (print_idataType, print_idata): NEW to create idata sections
4328         * src/pic16/device.h: idataSymSet new variable
4329         * src/pic16/gen.c (genFunction): fixed some bugs in string
4330         comparing, improved the absolute section creation for ISRs,
4331         added FSR0L/FSR0H in registers that are saved in an ISR,
4332         * (genInline): fixed the processing of inline snippets,
4333         now they undergo no process by the peephole optimizer
4334         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
4335         are placed in idataSymSet,
4336         * (pic16emitStaticSeg): extern symbols are added in externs,
4337         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
4338         switching when aboslute variables are placed in access bank memory
4339         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
4340         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
4341         commented out with #if,
4342         * (pic16_packRegisters): reintroduce the check for CAST because some
4343         symbols are not correctly handled,
4344         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
4345         pCodeInstruction instead of pCode,
4346         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
4347         pCodeAsmDir definition,
4348         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
4349         directive, then the argument directive is emitted without the leading
4350         tab, hack for inline labels which must be in the first column,
4351         * (compareLabel,pic16_findNextInstruction),
4352         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
4353         * (insertBankSwitch): modified for the new pCodeAsmDir,
4354
4355 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4356         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
4357
4358         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
4359         instance,
4360         * (pushSide): commented out with #if,
4361         * (assignResultValue): fixed some typos in saving
4362         registers,
4363         * (genPcall): FIXED and sync'ed with genCall,
4364         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
4365         * (genNearPointerGet): fixed to handle some more cases,
4366         implementation scheme via table reads,
4367         * (genConstPointerGet): modified to access code memory correct,
4368         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
4369         and improved to handle some cases
4370         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
4371         instead of "RETLW" for init data
4372         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
4373         not IN_DIRSPACE, work around to reduce bank switching when aboslute
4374         variables are placed in access bank memory (<0x80 and >=0xf80),
4375         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
4376         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
4377         TBLWT_POSTDEC,TBLWT_PREINC
4378         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
4379         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
4380         directives
4381         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
4382         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
4383         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
4384         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
4385
4386 2004-02-29  Borut Razem <borut.razem AT siol.net>
4387
4388         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
4389         support/Util/findme.h, support/Util/system.h: enhance binary relative
4390         search for lib and include by using findProgramPath()
4391
4392 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4393
4394         * src/SDCCpeeph.h,
4395         * src/SDCCpeeph.c (pcDistance),
4396         * src/port.h,
4397         * src/mcs51/ralloc.h,
4398         * src/mcs51/ralloc.c (mcs51_regWithIdx),
4399         * src/mcs51/main.h,
4400         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
4401         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4402         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
4403         size calculation port specific, started basis for some register
4404         optimizations
4405         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
4406         missing push/pop of r0/r1. Optimized push/pops
4407         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
4408         * device/lib/_modsint.c (_modsint),
4409         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
4410         and stack version so regression tests pass
4411
4412 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
4413
4414         * src/Makefile.in (dep): include SLIBOBJS in dependency check
4415         * src/SDCCast.c (decorateType): catch another small optimization
4416         with '?' operator
4417         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
4418         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
4419         modified to finally use computeType() all over SDCC,
4420         see Feature Request #877103
4421         * src/SDCCval.h: cosmetic
4422         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
4423         valCompare(); regression tested in muldiv.c
4424         * support/regression/tests/muldiv.c (testMod): mod sign follows
4425         dividend only
4426
4427 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
4428
4429         * src/SDCCast.c (decorateType): fixed bug #902362
4430         * doc/INSTALL.txt: fixed install instructions for win32
4431
4432 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
4433
4434         * device/include/Makefile.in (install): fixed by replacing spaces
4435         by tabs
4436         * doc/README.txt,
4437         * doc/INSTALL.txt: updated for release
4438         * doc/sdccman.lyx: added warning for --xstack being buggy
4439
4440 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
4441
4442         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
4443         to eliminate build warnings.
4444         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
4445
4446 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
4447            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4448
4449         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
4450         removed -penable-stack, added comment for stack pragma, added
4451         warning for not initializing the stack/frame registers, removed
4452         comment at interrupts section
4453
4454         Stack is made permanent, there is no ability to disable stack usage.
4455         * src/pic16/device.h,
4456         * src/pic16/device.c: removed all references to USE_STACK macro,
4457         * src/pic16/device.c (pic16_dump_section): when no elements in
4458         rlist, free rlist before return,
4459         * (pic16_dump_int_registers): NEW, internal registers are a new set
4460         of general purpose registers reused by each function,
4461         * (checkAddReg): returns 1 if registers is added to set,
4462         * (pic16_groupRegistersInSection): when a registers is of type
4463         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
4464         * src/pic16/device.h: memRange and Assigned Memory are deleted,
4465         SRCASECMP macro is moved here from device.c
4466         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
4467         PO_PCLATU, PO_PRODL, PO_PRODH,
4468         * (pic16_pCodeOpType, genMinus,
4469         changed compares to "a" register, with AOP_ACC,
4470         * (pic16_genPlus): fixed some bugs and indented properly,
4471         * (pic16_addSign): changed size to size+offset in the MOVWF
4472         instruction,
4473         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
4474         multiply 8-bit operand by literal, result is 8-bit,
4475         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
4476         multiply 2 8-bit operand, result is 8-bit,
4477         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
4478         genUMult8X*_16,
4479         * src/pic16/gen.c: changed accUse to contain WREG only,
4480         * (pic16_emitcomment): renamed to pic16_emitpcomment,
4481         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
4482         true, do not use immediate addressing any more unless sym is a
4483         pointer in codespace,
4484         * (aopForRemat): do not use immediate addressing when symbol not in
4485         codespace and when symbol's address is requested,
4486         * (aopOp): for-loop in if(sym->accUse) is modified for the new
4487         accUse size (= 1),
4488         * (aopGet): added case for AOP_ACC and don't return "accumulator
4489         bug" but WREG instead,
4490         * (popGetTempReg): pushes contents of temporary register in stack,
4491         * (popReleaseTempReg): pops contents of temporary register from
4492         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
4493         * (pic16_popGet): separated case AOP_ACC to return register WREG
4494         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
4495         or PO_IMMEDIATE and initializes their instance/offset appropriately,
4496         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
4497         the use of immediate pointers to certain cases only.
4498
4499         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
4500         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
4501         * (assignResultValue, genCall, genRet): modified to use the new
4502         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
4503         genPcall is still broken,
4504         * (genFunction): added code to create 'A' type pBlocks when
4505         interrupt functions are generated, code not extensively tested yet,
4506         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
4507         * (genEndFunction): modified so ISRs pop stored registers from stack,
4508         * (genMultOneByte): cleanup,
4509         * (AccRsh): added flag andmask, to and result with appropriate mask,
4510         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
4511         * (genDataPointerGet): fixed and reenabled its use,
4512         * (genNearDataPointerGet): bugs fixed,
4513         * (genDataPointerSet): bugs fixed,
4514         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
4515         pic16_DumpSymbol, pic16_DumpOp,
4516         * src/pic16/genutils.h: function prototypes for the above functions,
4517         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
4518         pointers,
4519         * (pic16emitRegularMap): many many many improvements, but needs a
4520         major cleanup,
4521         * src/pic16/main.c: enable_stack in pic16_options is removed,
4522         * (_pic16_parseOptions): removed command line options -penable-stack,
4523         * (_process_pragma): emit stack symbol only when stack pragma is
4524         processed,
4525         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
4526         redirected to FSR0L/FSR0H pair,
4527         * (pic16_get_op, pic16_get_op2): modifications and improvements,
4528         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4529         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
4530         for immediates,
4531         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
4532         * (dumpPicOptype): NEW,
4533         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
4534         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
4535         with movff instruction,
4536         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
4537         added pic16_int_regs, some packRegsFor* functions are commented out,
4538         because produce errors,
4539         * src/pic16/NOTES: minor modifications
4540
4541 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4542
4543         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
4544         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
4545         --pack-iram.
4546         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
4547         * as/mcs51/lkaomf51.c: fixed bug #895763
4548
4549 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
4550
4551         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
4552
4553 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4554
4555         * doc/sdccman.lyx: added details about the HC08 storage classes and
4556         interrupts, fixed the register usage info for z80 & gbz80
4557
4558 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
4559
4560         * doc/sdccman.lyx: added more pic16 port documentation
4561         * device/include/pic16/: added header pic18fregs.h
4562
4563 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
4564
4565         * doc/sdccman.lyx: added Vangelis' contribution
4566
4567 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4568
4569         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
4570         extend to the next CALL or PCALL, not just to the next CALL.
4571
4572 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
4573
4574         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
4575
4576 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4577
4578         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
4579         bug #895752 and a better fix for bug #716790
4580
4581 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4582
4583         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
4584
4585 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4586
4587         * doc/sdccman.lyx: minor changes, minor changed
4588
4589 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
4590
4591         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
4592         which can't handle SDCC_NEWONEBYTEOPS,
4593         (geniCodeMultiply): removed conversion from mult to shift for pic14
4594         and pic16
4595
4596 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4597
4598         * src/hc08/gen.h,
4599         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
4600         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
4601         thus fixing bug #895406
4602
4603 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
4604
4605         * device/lib/_modsint.c,
4606         * device/lib/_modslong.c: sign follows divisor only
4607         * src/hc08/gen.c (genMultOneByte): if result size is 1,
4608         signs or signedness can be ignored
4609         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
4610         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
4611         added optimization for IFX,
4612         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
4613         arguments;
4614         reenabled optimization for IFX, which was removed on 2004-01-11
4615         * src/SDCCast.h: added return type IFX
4616         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
4617         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
4618         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
4619         SDCC_OLDONEBYTEOPS selects the old behaviour
4620         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
4621         changed again and commented promotion rule
4622         * src/SDCCval.c (valDiv): promotion no longer necessary
4623         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
4624         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
4625         rewritten
4626         * support/regression/tests/onebyte.c: added
4627
4628 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
4629
4630         * gen.c (genInline): reverted to old code for assemnling inline
4631         code because of bug reported James Chadd
4632
4633 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
4634
4635         * ralloc.h: missing declarations from previous patch,
4636         seems that patch for ralloc.h was never applied, fixed
4637
4638 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4639            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
4640
4641         * pcode.c,
4642         * pcode.h,
4643         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
4644         indirect addressing. Marked FSR0 as deprecated
4645         * gen.c (pointerCode): commented out, not needed now
4646         (pic16_popGet2p): new MOVFF helper function
4647         (genGenPointerGet),
4648         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
4649         (shiftRLong): removed duplicate debugging info
4650
4651 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4652
4653         * src/ds390/gen.c (genNearPointerGet),
4654         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
4655         optimization with bits, but not bitfields.
4656         * src/ds390/ralloc.c (packRegisters),
4657         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
4658
4659 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
4660
4661         * src/SDCCcse.c (algebraicOpts): copy operands before modification
4662
4663 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4664
4665         * src/SDCCsymt.h,
4666         * src/SDCCicode.c (operandFromSymbol),
4667         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
4668         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
4669         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
4670         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
4671         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
4672         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
4673         bug #892038
4674         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
4675         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
4676         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
4677         * src/SDCCsymt.c (newSymbol),
4678         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4679         enumerator_list),
4680         * src/SDCCval.h,
4681         * src/SDCCval.c (newiList): fixed bug #885705
4682
4683 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4684
4685         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
4686         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
4687
4688 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4689
4690         * device/include/c8051f120.h,
4691         * device/include/c8051f300.h,
4692         * device/include/c8051f310.h: added/updated header files for Silicon
4693         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
4694         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
4695         in new section Submitting patches
4696
4697 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4698
4699         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
4700         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4701         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4702         genGenPointerSet),
4703         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
4704         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4705         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4706         genGenPointerSet),
4707         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
4708         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4709         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4710         genGenPointerSet),
4711         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
4712         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4713         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4714         genGenPointerSet): fixed bug #892400
4715         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
4716         to eliminate build warnings.
4717         * src/SDCCast.c (processParms),
4718         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
4719         fixed bug 751859
4720         * support/valdiag/valdiag.py: added GCC to the list of defines active
4721         when compiling with gcc
4722
4723 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4724
4725         * support/Util/SDCCerr.h,
4726         * support/Util/SDCCerr.c,
4727         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
4728         with an incomplete type (fixed bug #883734)
4729         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
4730
4731 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4732
4733         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
4734
4735 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4736
4737         * src/SDCCast.c (decorateType),
4738         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
4739         function pointer implementation
4740         * support/regression/tests/funptrs.c: added tests to verify both forms
4741         of function pointers work correctly. Added tests to verify parameters
4742         are passed in the correct order.
4743
4744 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
4745
4746         * device.c (regCompare): registers are sorted by ascending
4747         address and increasing size,
4748         * main.c (_pic16_finaliseOptions): removed the declaration
4749         of compiler macro MCU. Now a macro of the format pic18fxxxx
4750         will be defined from the command line
4751
4752 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4753             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
4754
4755         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
4756         PCOP_RLCF was overwritten!
4757         * gen.c (genSkip): commented out calls to pic16_emitcode,
4758         * (genCmpEQ): fixed "long" compares, only high word did get compared,
4759         * (genlshTwo),
4760         * (genRRC): added debugging info,
4761         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
4762         overwritten while shifting,
4763         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
4764         overwritten while shifting,
4765         * (AccLsh),
4766         * (AccRsh),
4767         * (shiftLLeftOrResult),
4768         * (shiftRLeftOrResult),
4769         * (shiftRLong),
4770         * (shiftLLong): Implemented with pic16_emitpcode
4771         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
4772         * (genLeftShift): Fixed bug, operand for shift by variable always
4773         was "and"ed with 0x0f,
4774         * (genLeftShiftLiteral),
4775         * (genrshTwo),
4776         * (genRightShiftLiteral): added debugging info,
4777         * (genrshFour): added comment,
4778         * (genRightShift): determined signedness from operand "left"
4779         instead of "result"
4780
4781 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4782
4783         * src/SDCCicode.c (geniCodeParms),
4784         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
4785         function pointers, fixed function pointer bugs #861242 and #861896
4786
4787 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4788
4789         * device/include/c8051f000.h,
4790         * device/include/c8051f120.h,
4791         * device/include/c8051f300.h: added header files for Silicon
4792         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
4793
4794 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
4795
4796         * src/SDCCast.c (processParams): added new type flow and restructured
4797         (gatherAutoInit): added new type flow
4798         (addCast): cosmetic changes
4799         (getLeftResultType): added new type flow for array indices, patch
4800         provided by Stas, see FR #877103
4801         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
4802         array index patch by Stas
4803         * src/SDCCast.h: added prototype getResultTypeFromType()
4804         * src/SDCCval.h,
4805         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
4806         * src/pic/glue.c (pic14emitStaticSeg),
4807         * src/pic16/glue.c (pic16emitStaticSeg),
4808         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
4809         for initialization of symbols
4810         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
4811         * support/Util/SDCCerr.h:
4812         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
4813         * .version: bumped version number to 2.3.8
4814         * device/include/Makefile.in (install),
4815         * doc/Makefile (install): changed to 'rm `find ...`' construct to
4816         avoid warnings
4817
4818 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
4819
4820         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
4821         Slade Rich fixed an optimization bug
4822         * src/pic/pcodepeep.c,
4823         * src/pic/pcoderegs.c
4824         * doc/Makefile (install): added test for directory
4825
4826 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4827
4828         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
4829         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
4830         * src/pic/ralloc.c (getRegPtr, getRegGpr),
4831         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
4832         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
4833         * as/mcs51/asexpr.c (term),
4834         * as/hc08/asexpr.c (term): fixed bug #887146
4835
4836 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4837
4838         * src/z80/gen.c (genMult): handle single byte result product
4839         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
4840         DUMMY_READ_VOLATILE (fixed bug #886367)
4841
4842 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
4843
4844         * support/regression/tests/libmullong.c: fixed logic, on little endian
4845         hosts we ended without a mullong_wrapper()
4846
4847 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4848
4849         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
4850         virus/worm forged address usage.
4851
4852 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
4853
4854         Fixed promotion, it should be done on AST level:
4855         * src/SDCCast.c (addCast): added promotion to int
4856         (decorateType): updated call to upCast()
4857         * src/SDCCicode.c (geniCodeLeftShift): removed call to
4858         usualUnaryConversions()
4859
4860 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
4861
4862         * support/regression/tests/literalop.c (mulWrapper): Added a
4863         wrapper to remove integer overflow warnings.
4864
4865         * support/regression/tests/float_trans.c: Made work on host.
4866
4867         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
4868         location of sz80.
4869
4870         * support/regression/generate-cases.py (main): Changed from inline
4871         to a main method.
4872
4873         * doc/Makefile (install): Changed to depth first to get rid of
4874         missing directory install warning.
4875
4876         * as/Makefile (install-doc): Made work on Mac.
4877
4878 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
4879
4880         * src/SDCCast.c: added an additional type flow in decorateType() of
4881         opposite direction, see feature request #860006; it's enabled at runtime
4882         by setting the environment variable SDCC_NEWTYPEFLOW
4883         * src/SDCCast.h: changed prototype of decorateType()
4884         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
4885         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
4886         'char' to 'int' can be omitted, if both operands are 'unsigned char';
4887         see feature request #877103
4888         * src/SDCCval.c: updated call of decorateType()
4889         (valBitwise): fixed bug #882876
4890         (valMinus): added promotion
4891         (valLogicAndOr): result is unsigned
4892         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
4893         * src/SDCCsymt.c (computeType),
4894         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
4895         must not cause an unsigned operation
4896         * src/pic/glue (pic14emitRegularMap),
4897         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
4898
4899 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
4900
4901         * src/pic/pcode.c (PCodeID): commented out left over debug code
4902
4903 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
4904
4905         * support/valdiag/tests/overflow.c: added shift tests
4906         * src/pic/device.c,
4907         * src/pic/gen.c,
4908         * src/pic/gen.h,
4909         * src/pic/glue.c,
4910         * src/pic/main.c,
4911         * src/pic/pcode.c,
4912         * src/pic/pcode.h,
4913         * src/pic/pcodepeep.c,
4914         * src/pic/pcoderegs.c,
4915         * src/pic/ralloc.c,
4916         * src/pic/ralloc.h: applied patch from Slade Rich;
4917         added support for multiple code pages and multiple RAM banks on the
4918         PIC 14 port. The ASM files now no longer simply assume all the
4919         code / RAM are in the same page / bank. This means the linker can
4920         safely allocate code/RAM of separate ASM files to different pages/banks.
4921         * doc/sdccman.lyx: added Slade's tips
4922         * src/mcs51/peeph.def: fixed bug #880768
4923
4924 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4925
4926         * src/hc08/ralloc.c (rematStr): fixed bug #879282
4927         * src/SDCCast.c (decorateType): fixed bug #880197
4928
4929 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
4930
4931         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
4932         getopt.h.
4933
4934         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
4935         strtof is not part of C89 and isn't included with Mac OS X.
4936
4937 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4938
4939         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
4940         shiftL2Left2Result): fixed bug #879326
4941         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
4942         (genMultOneByte): fixed bug in signed vs unsigned multiplication
4943         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
4944         address fetch for clr instruction
4945         * device/lib/hc08/_mulint.c: created optimized assembly version
4946         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
4947
4948 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
4949
4950         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
4951         proposed in FR #877103
4952
4953 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
4954
4955         * src/SDCCval.c (cheapestVal): added missing checks
4956         * src/SDCCicode.c (usualBinaryConversions): fixed condition
4957         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
4958
4959 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
4960
4961         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
4962         equal operands
4963
4964 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
4965
4966         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
4967         loaded with the linker search paths (-L arguments) and the libraries
4968         to be linked with the current source (-l arguments). Changes
4969         currently will affect only the pic16 port.
4970         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
4971         include path the port specific paths and port specific libraries,
4972         * gplink command now contains the $3 argument,
4973         * src/pic16/device.h,
4974         * src/pic16/device.c,: structure PIC_device is made public and
4975         renamed to PIC16_device, the same for variable Pics which is renamed
4976         to Pics16. Updated all references to them.
4977         * src/pic16/glue.c (pic16glue): corrected bug with code
4978         initialization which bypassed the variable initializations block.
4979
4980         * device/lib/pic16/Makefile.rules: removed --penable-stack from
4981         COMPILE_FLAGS and added the --nostdinc option
4982
4983 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4984
4985         * device/include/mc68hc908jb8.h: Register defs for another member
4986         of the hc08 family. Contributed by Bjorn Bringert - thanks!
4987
4988 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
4989
4990         Documenting changes from previous commits.
4991         * configure.in (version 1.56),
4992         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
4993         when generating output files to configure the pic16 library,
4994         but now I've commented it out, since gputils aren't installed in the
4995         SF compile farm, so library won't compile
4996
4997         * device/lib/Makefile.in (version 1.56): initially I've added in
4998         target 'all' the prerequestive 'model-pic16' so it compiled the
4999         pic16 library, but now I've commented it out for the same reasons
5000         above,
5001         * added targets 'model-pic16' and 'objects-pic16' to compile the
5002         library
5003         * added target 'port-specific-objects-pic16' to handle the
5004         generated libraries and copy them into the build/ directory
5005         * added target 'clean-intermediate-pic16' to clean intermediate
5006         files into pic16 directory
5007         * in target 'installdirs' added line to create directory pic16 in
5008         the installation path
5009
5010         * device/include/Makefile.in (version 1.11): in target 'install'
5011         added lines to copy all header files to installation path,
5012         * in target 'installdirs' added line create directory for pic16
5013         headers in the installation path
5014
5015 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
5016
5017         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
5018          a function call
5019
5020 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
5021
5022         * configure,
5023         * device/lib/configure.in,
5024         * device/lib/configure: fixed for autoconf 2.57
5025
5026 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5027
5028         * src/z80/main.c (_parseOptions): fixed the portmode= command line
5029         option so that it actually works. Made it specific to the z80, since
5030         the gbz80 doesn't have these kinds of I/O ports.
5031
5032 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5033
5034         * device/include/z180.h,
5035         * device/lib/_memcpy.c,
5036         * device/lib/_memmove.c,
5037         * device/lib/_mulint.c,
5038         * device/lib/ser_ir.c,
5039         * device/lib/ser_ir_cts_rts.c,
5040         * device/lib/_strcmp.c,
5041         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
5042         * src/z80/main.c (_process_pragma): add support for pragmas bank and
5043         portmode; added deprecation warning for bank= and protmode= forms.
5044         Also, guard against buffer overflow.
5045         * src/z80/gen.c (aopGet): generate better code for sfr banked read
5046
5047 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5048
5049         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
5050         changed interrupt vector table generation to only emit declared vectors.
5051         * device/include/Makefile.in: added missing backslash
5052         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
5053
5054 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5055
5056         Mainly changes to support compilation of the device libraries
5057         * src/pic16/device.c: stack is allocated via symbol and not
5058         via literal number. The symbol is placed in the corresponding
5059         position of the data ram
5060         * (pic16_dump_section): relocatable and absolute uninitialized
5061         data are now emitted in sorted order to reduce section naming,
5062         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
5063         weren't marked as being in the access bank,
5064
5065 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5066
5067         Added portion of GNU PIC Library under the directory
5068         device/include/pic16 and device/lib/pic16. These files
5069         contain the declarations of SFRs for the PIC18Fxx2 devices.
5070         The directory is initialized via configure from toplevel.
5071
5072 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
5073
5074         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
5075         the spilllocations to be compared correctly
5076
5077 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5078
5079         * src/SDCCast.c (decorateType): fixed bug introduced today
5080
5081 2004-01-12  Borut Razem <borut.razem AT siol.net>
5082
5083         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
5084         doc/sdccman.lyx: upper case pragmas are deprecated
5085
5086 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5087
5088         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
5089         in simpler and even better code
5090
5091 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
5092
5093         * src/SDCCicode.c (operandOperation): fixed bug #874819
5094         * src/SDCCast.c (decorateType): fixed
5095         char foo (unsigned long ul) { return ul > 0; }
5096
5097 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5098
5099         * doc/sdccman.lyx: Moved and added some sections, small changes
5100         all over. Telling LaTeX to be less strict with word spacing
5101         to better keep the right margin. Changed some notes about
5102         maintainance of the ports in section 3.2.1 - is it OK like this?
5103
5104 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
5105
5106         SDCC source changes:
5107         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
5108         convilong): modified to inform the pic16 port that builtin functions
5109         are external
5110
5111         PIC16 PORT specific changes:
5112         * src/pic16/device.c pic16_dump_equates() added,
5113         processor registers declared internally by the port are emitted in
5114         the translation as equates,
5115         * src/pic16/gen.c: inline code is passed unprocessed to the
5116         translation,
5117         * (pic16_popGetLit2): fnuction modified to take second operand as
5118         pCodeOp pointer and not as literal,
5119         * (popRegFromIdx): prefixed with pic16_,
5120         * (pic16_popCombine2): modified to receive already allocated pCode
5121         operands,
5122         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
5123         * (genFunction): initializes local stack frame and pushes on stack
5124         all the registers used by this function,
5125         * (genEndFunction): restores all registers from stack and restores
5126         stack frame,
5127         * src/pic16/glue.c (pic16emitRegularMap): various changes and
5128         improvements,
5129         * (pic16glue): changed the program startup sequence,
5130         * added new dbName code 'A' for functions placed in absolute section
5131         * src/pic16/main.c: added function attribute _naked,
5132         * added pragma 'code' to place a fnuction at an absolute address,
5133         * added command line arguments --debug-ralloc and --pcode-verbose,
5134         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
5135         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
5136         * (pic16_newpCodeOpLit2): modified to take the second operand as
5137         pCodeOp pointer,
5138         * (pic16_printpBlock): modified to emit each function in a separate
5139         section,
5140         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
5141         UPPER for immediate operands,
5142         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
5143         instruction,
5144         * src/pic16/peeph.def: all peepholes with movff are commented out,
5145         because there is a problem in the pcode peep optimizer,
5146         * src/pic16/ralloc.c: the register allocator can now reuse local
5147         function symbols for another function. This saves register usage.
5148         * src/pic16/ralloc.h: added flag isLocal in structure regs,
5149
5150         Added file src/pic16/NOTES with information about program writing on
5151         the current port version.
5152
5153 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5154
5155         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
5156         and peephole 252 (array access)
5157
5158 2004-01-09  Borut Razem <borut.razem AT siol.net>
5159
5160         * src/SDCCmain.c : fixed #872250: -l command line defined library
5161           files are scanned before standard library files
5162
5163 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5164
5165         * src/SDCCast.c (decorateType): fixed bug #874046
5166
5167 2004-01-09  Borut Razem <borut.razem AT siol.net>
5168
5169         * support/scripts/sdcc.nsi: remove previous installation
5170
5171 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5172
5173         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
5174         bytes for last interrupt vector (mcs51)
5175         * sdcc.spec: fixed typo
5176
5177 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5178
5179         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
5180         gen51Code): more efficient parameter receive for --model-large
5181         ("bug" #845294)
5182
5183 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5184
5185         * src/ds390/main.c,
5186         * src/z80/main.c: added missed needLinkerScript flags (more than
5187         one port structure defined in these file)
5188         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
5189         bug #795325
5190
5191 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
5192
5193         * src/SDCCmain.c: removed various references to DEFAULT_PORT
5194         * src/port.h: added flag needLinkerScript in port->linker
5195         structure to inform whether to create a .lnk file or not,
5196         * src/avr/main.c,
5197         * src/ds390/main.c,
5198         * src/hc08/main.c,
5199         * src/mcs51/main.c,
5200         * src/pic/main.c,
5201         * src/pic16/main.c,
5202         * src/xa51/main.c,
5203         * src/z80/main.c: changed appropriately to configure
5204         needLinkerScript flag
5205         * src/pic/gen.c,
5206         * src/pic16/gen.c (genAddrOf): fixed bug #863624
5207         * src/pic/glue.c: added variable udata_section_name to
5208         override default uninitialized data segment definition for
5209         devices only with SHAREBANK memory (reported from Erik Epetrich)
5210         * (pic14emitOverlay): modified to emit a commented overlay segment
5211         directive when no overlay data exist
5212         * (picglue): modified to emit uninitialized data segment
5213         according to udata_section_name
5214         * src/pic/main.c (_pic14_parseOptions): added command line
5215         options --udata-section-name=[name] to override default
5216         udata definition name
5217         * modified _linkCmd and _asmCmd to include compiler passed
5218         arguments via -W option
5219         * src/pic16/main.c: added $l in _asmCmd, changed extension for
5220         object file from '.rel' to '.o' in port->linker structure,
5221         changed size of fptr from 2 to 3 in port structure
5222
5223 2004-01-07  Borut Razem <borut.razem AT siol.net>
5224
5225         * support/scripts/sdcc.nsi: update PATH
5226         * support/scripts/sdcc.ico: craeted
5227
5228 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
5229
5230         * device/include/Makefile.in: fix install
5231         * doc/Makefile: fix install
5232
5233 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5234
5235         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
5236         in bug #860505
5237         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
5238         how the function variable allocation summary is displayed; also
5239         include information about variables allocated to the overlay
5240         segment
5241
5242 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5243
5244         * as/mcs51/lkmain.c: Help about -Y option
5245         * as/mcs51/lkarea.c: Fixed gcc warnings
5246
5247 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5248
5249         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
5250         fixed warning
5251         * support/valdiag/tests/overflow.c: added
5252         * src/SDCCast.c (decorateType),
5253         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
5254         LEFT_OP (left shift)
5255
5256 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5257
5258         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
5259         (default behaviour).
5260
5261 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5262
5263         A python script to validate compiler diagnostic messages. It can be
5264         used to verify that sdcc complains about bad c source code and
5265         gives a good location of the error.
5266         * support/valdiag/Makefile,
5267         * support/valdiag/valdiag.py,
5268         * support/valdiag/tests/*
5269
5270 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5271
5272         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
5273         * src/SDCCsymt.c (newEnumType),
5274         * src/SDCCsymt.h
5275         * support/Util/SDCCerr.c,
5276         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
5277         enum related bugs.
5278         * support/regression/tests/enum.c: added test for enum values that
5279         require at least 2 bytes of storage.
5280
5281 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5282
5283         * src/common.h: added ifndef/define/endif macros
5284         around the header file.
5285         Bug reported from Jesus Calvino-Fraga
5286
5287 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5288
5289         * sdcc.spec: updated
5290         * device/include/Makefile.in: don't install CVS directories
5291         * device/lib/Makefile.in: added removal of CVS directories after install
5292         * doc/Makefile: fixed install, added local_icons
5293         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
5294         * src/mcs51/gen.c (genRightShift): fixed bug #870788
5295         * src/ds390/gen.c (genRightShift): fixed bug #870788
5296         * src/SDCCast.c (decorateType): fixed bug #870781
5297
5298 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5299
5300         PIC16 port related changes:
5301         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
5302         added variable stackPos,
5303
5304         * gen.c: genCall, assignResultValue: added support for
5305         pushing/retrieving function parameters to/from stack,
5306         genFunction,genEndFunction: setup stack frame for the
5307         generated function,
5308         genAddrOf: will be changed according to bug 863624
5309
5310         * added files genutils.c and genutils.h which contain gen*
5311         debugged and optimised functions extracted from gen.c
5312
5313         * glue.c: added variable 'externs' which holds extern symbols,
5314         pic16emitRegularMap: is modified to properly handle relocatable
5315          symbols under the new scheme,
5316         pic16createInterruptVect: is modified
5317         pic16printPublics: is modified to emit 'global' assembler directives,
5318         added pic16_printExterns to print extern symbols,
5319         pic16glue: initializes stack/frame pointer in the beginning of
5320         the assembly output. Temporary hack, will be corrected later,
5321         because gplink yet does not support stack and SDCC does not
5322         yet support a type of crt0.o object to create the final binary.
5323
5324         * Removed many lines that contain 8051 legacy code.
5325         * The code is finally placed under a 'code' directive.
5326         * Added port specific options.
5327
5328         * _process_pragma: simplified since now we do not need *special*
5329         include file to define SFR registers. But a separate header
5330         will be needed. This will be developed later.
5331         * _pic16_parseOptions: added, parses port specific options:
5332         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
5333         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
5334         --preplace-udata-with=
5335
5336         * _pic16_setDefaultOptions: modified to initialize section names,
5337         but hack is temporarly out of order since it needs improvement.
5338         * _pic16_genAssemblerPreamble: configuration words are emitted by
5339         their address instead of their name. This part is incomplete and
5340         supports only the 18Fxx2 devices. Other devices will emit an error
5341         during assembly since they do not contain the same set of config
5342         registers
5343         * _pic16_genIVT: is modified,
5344
5345         * pcode.c: added definitions for some hardware registers that are needed
5346         for stack support
5347         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
5348         All PCI entries are updated. Now LFSR is supported.
5349         * Removed pic16_pciTRIS is mentioned by mdubuc in source
5350         * added pic16_newpCodeOpLit2 to support instructions with
5351         two literal arguments
5352         * pic16_pCode2str: corrected code that emits assembler instructions
5353         with two literal operands and those that have an access bit modifier
5354         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
5355         this fixes a bug which caused some labels to be lost, when an
5356         assembler directive was added, i.e. banksel,
5357         * pic16_FixRegisterBanking: improved logic that causes the insertion
5358         of bank switching,
5359         * InlineFunction: functions that are called once, are not any more
5360         inlined. This can be a port option in the future,
5361
5362         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
5363
5364         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
5365         hold the corresponding uninitialized symbols,
5366         * pic16_allocProcessorRegister: registers have explicit marked the
5367         accessBank field,
5368         * pic16_allocInternalRegister: registers are explicit marked as
5369         not used,
5370         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
5371         processing list, so bit registers were lost,
5372         *
5373
5374         * ralloc.h: added field 'accessBank' and original symbol operand
5375         in register definition,
5376         * removed the field isMapped from register definition,
5377
5378         ** Several functions have been removed from various sources:
5379         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
5380         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
5381         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
5382         pic16_assignRelocatableRegisters
5383
5384         ** others have been introduced:
5385         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
5386         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
5387
5388 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
5389
5390         * support/scripts/inc2h.pl: changed definition of BIT_AT
5391         to emit 'sbit at' instead of 'bit at'. This was a request.
5392
5393         PIC16 port related preliminary changes:
5394         * gen.c: prefixed function popRegFromString with
5395         pic16_ and all references to it corrected
5396         * pcode.c: all pic16_pc_* hardware registers prefixed
5397         with underscore (_),
5398         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
5399         * ralloc.c: newReg(): when register is REG_SFR then
5400         set address to rIdx,
5401         pic16_allocProcessorRegister(): marks register wasUsed=0
5402         pic16_writeUsedRegs(): added a call to assign processor
5403         registers via pic16_assignFixedRegisters
5404
5405 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5406
5407         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
5408         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
5409         variables in unused register banks.  Also the SSEG is placed
5410         wherever there is enough space for it, and IDATA can be anywhere
5411         in internal RAM.  For now compile using -Wl-Y[stack_size].
5412         The mem file is different for this option as well, since it
5413         makes no sense of talking about DSEG lenght.
5414
5415 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
5416
5417         * src/SDCClrange.c: fixed bug 869095 that caused segfault
5418         in certain cases, e.g. when ROM assignment, patch provided
5419         from Albert den Haan.
5420
5421 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
5422
5423         Many signedness and type propagation fixes:
5424         * src/SDCCicode.c: made geniCodeCast() static
5425         replaced SPEC_ by IS_ (cosmetic)
5426         (operandOperation): fixed div and mod operation
5427         (usualBinaryConversions): added support for promotion of char
5428         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
5429         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
5430         (geniCodeAdd): an array index will stay unsigned, even if promoted
5431         from char to int
5432         (geniCodeArray): ditto
5433         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
5434         * src/SDCCsymt.c (computeType): added more support for char;
5435         promotion of char is selectable by promoteCharToInt, fixed signedness
5436         for all cases
5437         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5438         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5439         * src/SDCCval (val*): replaced signedness calculation by
5440         computeType()
5441         rearranged if-branches (cosmetic)
5442         (valShift): added warning W_SHIFT_CHANGED
5443         (valCompare): fixed problem with different types
5444         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
5445         * support/regression/tests/literalop.c: added many cases
5446         * support/regression/tests/ast_constant_folding.c: changed finally to
5447         'unsigned int'
5448         * .version: new year, new version: 2.3.7
5449         * src/SDCCmain.c (main): applied patch #866468
5450         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
5451         provided by Scott Bronson
5452         * doc/sdccman.lyx: updated documentation for sdcdb
5453         updated and added chapter tips
5454
5455 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5456
5457         * src/SDCCsymt.h: missing from yesterday's commits
5458
5459 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5460
5461         * src/SDCC.y (struct_or_union_specifier),
5462         * support/Util/SDCCerr.c,
5463         * support/Util/SDCCerr.h: verify that struct & union tags are used
5464         as declared.
5465
5466 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5467
5468         * src/SDCCglobl.h: missing from yesterday's commits
5469
5470 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5471
5472         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
5473         sft_attributes, struct_declaration, parameter_declaration,
5474         type_name, start_block, declaration_list),
5475         * src/SDCC.lex (check_type): support redefinition of typedef names
5476
5477 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5478
5479         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
5480         aligned xdata arrays. Erik helped me with the if clause.
5481
5482 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5483
5484         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
5485         warning
5486
5487 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5488
5489         * src/SDCCast.h,
5490         * src/SDCCast.c (newAst_),
5491         * src/SDCCicode.h,
5492         * src/SDCCicode.c (ast2iCode, newiCode),
5493         * src/SDCCglobl.h,
5494         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
5495         expr, statement, expression_statement, selection_statement,
5496         iteration_statement, expr_opt, jump_statement): foundation for tracking
5497         sequence points
5498         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
5499         point code too)
5500
5501 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5502
5503         * support/Util/SDCCerr.c,
5504         * src/SDCCast.h,
5505         * src/SDCCast.c (createCase, createDefault, decorateType),
5506         * src/SDCClabel.c (labelUnreach),
5507         * src/SDCC.y (labeled_statement, jump_statement): More improvements
5508         to error messages.
5509         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
5510         (with thanks to Stas Sergeev)
5511         * device/include/time.h,
5512         * device/lib/time.c (CheckTime): suppress unreachable code warning
5513
5514 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5515
5516         * src/SDCCast.c (createIvalCharPtr),
5517         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
5518         bug #753752)
5519         * support/regression/tests/nullstring.c: tests for these two bugs
5520
5521 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5522
5523         * support/Util/SDCCerr.h,
5524         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
5525         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
5526         about storage class and 'at' used inside struct or union
5527         * src/SDCCBBlock.c (iCodeFromeBBlock),
5528         * src/SDCCcse.c (ifxOptimize),
5529         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
5530         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
5531         printIval, emitStaticSeg, emitOverlay),
5532         * src/SDCClabel.c (deleteIfx),
5533         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
5534         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
5535         gatherAutoInit, processParms),
5536         * support/Util/SDCCerr.h,
5537         * support/Util/SDCCerr.c (werrorfl): Support for better error location
5538         reporting for post-parse errors.
5539
5540 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5541
5542         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
5543         implicit casts via union; they don't work on big endian systems
5544         (possible fix for bug #861138)
5545
5546 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5547
5548         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
5549         * src/mcs51/main.c: fixed the fix for bug #737001
5550
5551 2003-12-15  Borut Razem <borut.razem AT siol.net>
5552
5553         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
5554
5555 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5556
5557         * support/makebin/makebin.c: put output in binary mode
5558
5559 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5560
5561         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
5562         xdata and data memory on startup. Set the environment variable
5563         SDCC_NOGENRAMCLEAR to disable this.
5564         * src/mcs51/peephole.def,
5565         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
5566         (allows non-interrupt and interrupt code to safely compete for a resource
5567         without the non-interrupt code having to disable interrupts)
5568
5569 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5570
5571         * src/SDCCicode.c (geniCodeAdd),
5572         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
5573         with valFromType if type might be a pointer and host is big endian).
5574         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
5575         types, not just integer types.
5576         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
5577         multiply defined with mismatching "at" address.
5578
5579 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5580
5581         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
5582         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
5583         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
5584         with embedded nulls (fixed bug #753752)
5585
5586 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5587
5588         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
5589         Apparently this did not see much testing (endless loop)
5590
5591 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5592
5593         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
5594
5595 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5596
5597         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
5598         gracefully handle NULL memmap pointers
5599
5600 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5601
5602         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
5603         instead of deleting the iCode when an operand is volatile
5604         * src/z80/gen.c (genDummyRead),
5605         * src/mcs51/gen.c (genDummyRead),
5606         * src/ds390/gen.c (genDummyRead),
5607         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
5608         not just IC_RIGHT
5609         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
5610         * src/SDCC.y: fixed bug #850420
5611
5612 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5613
5614         Applied z80 i/o port patch from Peter Townson and fixed some operators
5615         to better handle operands in A register.
5616         * device/include/z180.h
5617         * src/SDCC.y
5618         * src/SDCCglue.c
5619         * src/z80/gen.c
5620         * src/z80/gen.h
5621         * src/z80/main.c
5622         * src/z80/peeph-z80.def
5623         * src/z80/peeph.def
5624         * src/z80/z80.h
5625
5626 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5627
5628         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
5629
5630 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5631
5632         * device/lib/hc08/_mullong.c: Removed extra #endif
5633
5634 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5635
5636         * sim/ucsim/hc08.src/inst.cc,
5637         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
5638         carries from x to h
5639         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
5640         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
5641         * device/include/stdarg.h: fixed varargs for hc08
5642         * device/lib/Makefile.in,
5643         * device/lib/hc08/Makefile,
5644         * device/lib/hc08/_mulint.c,
5645         * device/lib/hc08/_mullong.c: fixed some endian problems
5646
5647 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5648
5649         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
5650         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
5651         * device/lib/_gptrget.c,
5652         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
5653
5654 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5655
5656         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
5657         * src/SDCCast.c (astErrors): fixed bug #846007
5658         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
5659
5660 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5661
5662         * src/SDCCast.c (decorateType): disabled a transformation I added in
5663         revision 1.188 (access to fields of a structure at an absolute address);
5664         it breaks with bitfields, extern declarations, and gcse analysis.
5665         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
5666         could be assigned through a pointer, so don't complain.
5667         * src/SDCCast.c (astErrors),
5668         * src/SDCCast.h,
5669         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
5670
5671 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
5672
5673         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
5674         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
5675         output of __config directives, since gpasm now supports them
5676         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
5677         pre-processor macro, i.e. -DMCU=p18f452
5678         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
5679         and modified to handle 'cast' icode similarly to '=' icode
5680         * src/pic16/device.h (typedef struct PIC_device): added field
5681         'extMIface' to indicate that chip has external memory interface
5682         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
5683         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
5684         18F8720
5685
5686 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5687
5688         * src/SDCC.y (pointer): fixed bug #846006
5689         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
5690         * src/SDCCast.c (decorateType): fixed bug #846009
5691         * src/ds390/peeph.def,
5692         * src/ds390/gen.c (genAnd, genOr),
5693         * src/mcs51/peeph.def,
5694         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
5695
5696 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5697
5698         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
5699         * src/SDCCdflow.c
5700         * src/SDCCcse.c
5701         * src/SDCCcse.h
5702         * src/SDCCBBlock.h
5703         * src/SDCCBBlock.c
5704
5705 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
5706
5707         fixed bug #845089
5708         * src/SDCCbitv.h,
5709         * src/SDCCbitv.c: added function to free a bitvector
5710         * src/SDCClrange.h,
5711         * src/SDCClrange.c: added function to recompute the liveranges
5712         * src/avr/ralloc.c,
5713         * src/ds390/ralloc.c,
5714         * src/hc08/ralloc.c,
5715         * src/mcs51/ralloc.c,
5716         * src/pic/ralloc.c,
5717         * src/pic16/ralloc.c,
5718         * src/xa51/ralloc.c,
5719         * src/z80/ralloc.c: recompute the liveranges after register packing
5720
5721 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
5722
5723         * src/SDCCloop.c (newInduction): fixed bug #845630
5724
5725 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5726
5727         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
5728         inadvertantly left behind from my 2003-11-12 change
5729
5730 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5731
5732         Updated headers I neglected to commit yesterday.
5733         * src/SDCClrange.h,
5734         * src/SDCCicode.h
5735
5736 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5737
5738         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
5739         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
5740         * src/SDCCopt.c (eBBlockFromiCode),
5741         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
5742         the creation of the key hash table from the sequencing so it can be used
5743         earlier (for some GCSE bug fixes still pending)
5744
5745 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5746
5747         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
5748         * support/regression/tests/addsub.c: testing genPlus shortcut
5749
5750 2003-11-15  Borut Razem <borut.razem AT siol.net>
5751
5752         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
5753
5754 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5755
5756         * src/SDCCcse.c (cseBBlock): fixed bug #527779
5757         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
5758         ordering is immaterial.
5759         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
5760
5761 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5762
5763         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
5764         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
5765         (SIGSEV) of bug #840381
5766         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
5767         unlink new file before rename if new and old filenames are the same)
5768
5769 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5770
5771         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
5772         uninitialized variables) for the mcs51. Set environment variable
5773         SDCC_GENRAMCLEAR to test.
5774         xdata initialization slightly shorter
5775
5776 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5777
5778         * src/SDCCsymt.h,
5779         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
5780         #838241 & 780691 (basicly the same bug)
5781         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
5782         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
5783
5784 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
5785
5786         * src/SDCCmain.c (linkEdit): "fix" #834252
5787
5788 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5789
5790         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
5791         * src/SDCCast.h,
5792         * src/SDCC.y: fixed bug #819403
5793
5794 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5795
5796         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
5797         the reentrant attribute.
5798         * src/hc08/gen.c (genPackBits): added missing stack readjustment
5799         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
5800         simulation
5801         * src/SDCCast.c (decorateType): fixed bug with storage class not being
5802         updated during pointer dereference; f.e. ~(((char *)1)*) was being
5803         erroneously reduced to a literal.
5804         * src/hc08/ralloc.c (packRegisters, rematStr),
5805         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
5806         some cases
5807
5808 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5809
5810         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
5811         * doc/sdccman.lyx: changed from 'article' to 'book'
5812         * doc/Makefile: readded test_suite_spec and cdbfileformat
5813
5814 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
5815
5816         * device/include/stdlib.h: include malloc.h to comply with ANSI
5817         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
5818
5819 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5820
5821         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
5822         * doc/clean.mk: also remove *.out files
5823         * doc/sdccman.lyx: some additions, larger top/bottom margins
5824
5825 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5826
5827         * src/SDCC.y: fixed bug #837365
5828         * support/regression/tests/bitopcse.c
5829         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
5830         a symbol (might be valop instead)
5831         * device/lib/Makefile.in: added errno.c to HC08SOURCES
5832         * device/lib/clean.mk: added hc08 to the cleaning list
5833
5834 2003-11-04  Borut Razem <borut.razem AT siol.net>
5835
5836         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
5837           made 2003-11-04
5838         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
5839           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
5840           malloc is declared in standard stdlib.h
5841
5842 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5843
5844         * device/lib/hc08/Makefile: need to clean .rel not .o files
5845         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
5846
5847 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5848
5849         * src/port.h,
5850         * src/hc08/main.c,
5851         * src/mcs51/main.c,
5852         * src/ds390/main.c,
5853         * src/z80/main.c,
5854         * src/avr/main.c,
5855         * src/pic/main.c,
5856         * src/pic16/main.c,
5857         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
5858         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
5859         tests (which uses the port's oclsExpense function)
5860         * src/SDCC.y,
5861         * src/SDCCast.c,
5862         * src/SDCCicode.c,
5863         * src/hc08/gen.c,
5864         * src/ds390/gen.c,
5865         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
5866
5867 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5868
5869         * src/SDCCcse.c (ifxOptimize),
5870         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
5871         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
5872         deleting the IFX iCode.
5873         * src/hc08/ralloc.c: reduced unneeded slocs
5874         * src/hc08/gen.c: fixed bug in asmopToBoolean
5875
5876 2003-11-04  Borut Razem <borut.razem AT siol.net>
5877
5878         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
5879           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
5880           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
5881           transferred to configure
5882
5883 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
5884
5885         Use headers defined in the C[++] standards:
5886         * sim/ucsim/gui.src/serio.src/fileio.cc
5887         * sim/ucsim/gui.src/serio.src/frontend.cc
5888         * sim/ucsim/gui.src/serio.src/main.cc
5889         * sim/ucsim/gui.src/serio.src/posix_signal.cc
5890         * support/Util/NewAlloc.c
5891         * as/hc08/lklibr.c
5892         * as/mcs51/lklibr.c
5893         * as/z80/aslist.c
5894         * as/z80/assym.c
5895
5896 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5897
5898         * Added MSVC projects for hc08 assembler and linker:
5899         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
5900         /as/hc08/link_hc08.dsp
5901
5902 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
5903
5904         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
5905
5906 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
5907
5908         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
5909
5910 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5911
5912         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
5913
5914 2003-10-31  Borut Razem <borut.razem AT siol.net>
5915
5916         * support/cpp2/cpplib.h,
5917           support/cpp2/cpplib.c,
5918           support/cpp2/cpplex.c,
5919           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
5920           to switch _asm block preprocessing on / off. Default is
5921           #pragma preproc_asm +
5922
5923 2003-10-31  Borut Razem <borut.razem AT siol.net>
5924
5925         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
5926           when outputting comment blocks (when executed with -C option) and
5927           _asm (SDCPP specific) blocks
5928
5929 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5930
5931         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
5932
5933 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
5934
5935         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
5936
5937 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
5938
5939         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
5940         * src/SDCCast.c (decorateType): fixed bug #832664
5941
5942 2003-10-31  Borut Razem <borut.razem AT siol.net>
5943
5944         * support\cpp2\cpplex.c: fixed for SDCPP:
5945           comments(when executed with -C option) and _asm blocks
5946           were included even if they where in skipped #if block.
5947           Applied solution from GCC cpp 3.3.2
5948
5949 2003-10-31  Borut Razem <borut.razem AT siol.net>
5950
5951         * src/SDCC.lex: sdcc now understands both formats:
5952           '# <line_number> <file_name>' and
5953           '#line <line_number> <file_name>'
5954         * support/cpp2/cppmain.c: sdcpp now generates the standard
5955           '# <line_number> <file_name>' instead of former
5956           '#line <line_number> <file_name>'
5957
5958 2003-10-30  Borut Razem <borut.razem AT siol.net>
5959
5960         * support/cpp2/cpphash.h,
5961         * support/cpp2/cpplib.h
5962         * support/cpp2/cpplex.c,
5963         * support/cpp2/cppmain.c,
5964         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
5965
5966 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5967
5968         Fixed a number of problems revealed by bug #827883.
5969         * src/SDCCloop.c (loopInvariants): Spill location of the
5970         result operand should be recomputed if extracted from
5971         a loop. Also, don't extract assignments of an iTemp
5972         from a literal.
5973         * src/SDCCast.c (isConformingBody): loop reversal should
5974         not occur if the control variable is involved with a
5975         relational operator.
5976
5977 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
5978
5979         * .version: bumped to 2.3.6 to reflect the big improvements
5980         made by Erik and Klaus. Thanks!
5981
5982 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
5983
5984         Replaced the livrange code.
5985         * src/SDCClrange.c: added new LR code
5986         * src/SDCCloop.c,
5987         * src/SDCCBBlock.h: removed remainig parts from old LR code
5988         * src/ds390/ralloc.c,
5989         * src/ds390/gen.c: minor fixes to make it work with new code
5990
5991 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5992
5993         * as/hc08/asm.h,
5994         * as/hc08/lkrloc.c,
5995         * src/hc08/gen.c,
5996         * src/hc08/ralloc.c: Fix various warnings related to the hc08
5997         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
5998         (tweaked fix for bug #818696)
5999
6000 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6001
6002         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
6003
6004 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6005
6006         * src/SDCCmain.c,
6007         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
6008         * src/mcs51/gen.c (gencjneshort),
6009         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
6010         more efficient (per Scott Bronson's suggestion)
6011
6012 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6013
6014         Extended the semantics of the critical keyword to include
6015         individual statements. See RFE #827755 and #799831
6016         * src/SDCC.y
6017         * src/SDCCicode.c
6018         * src/SDCCopt.c
6019         * src/SDCCast.c
6020         * support/Util/SDCCerr.c
6021         * support/Util/SDCCerr.h
6022         * src/mcs51/gen.c
6023         * src/ds390/gen.c
6024         * src/hc08/gen.c
6025
6026 2003-10-19  Borut Razem <borut.razem AT siol.net>
6027
6028         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
6029
6030 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6031
6032         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
6033         Fixed bug #818696
6034         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
6035         and predecrement operand is displayed
6036
6037 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6038
6039         * src/SDCCval.c (valMinus): fixed bug #826041
6040
6041 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6042
6043         Some hc08 related updates that I missed earlier
6044         * sim/ucsim/stypes.h
6045         * support/regression/ports/hc08/spec.mk
6046
6047 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6048
6049         New target "hc08" for the Motorola 68hc08 family of micros
6050
6051         * configure
6052         * configure.in
6053         * Makefile
6054         * src/hc08/*
6055         * src/SDCCmain.c
6056         * src/port.h
6057         * sim/ucsim/hc08.src/*
6058         * sim/ucsim/configure.in
6059         * src/ucsim/configure
6060         * sim/ucsim/packages_in.mk
6061         * as/hc08/*
6062         * as/Makefile
6063         * device/include/mc68hc908qy.h
6064         * device/lib/hc08/*
6065         * device/lib/Makefile.in
6066         * support/regression/ports/hc08/*
6067         * support/regression/Makefile
6068
6069 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6070
6071         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
6072         regression test
6073         * src/ds390/gen.c (genCast): fixed bug #821957
6074
6075 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6076
6077         * device/lib/logf.c: "fixed" overlay bug
6078         * support/regression/ports/host/spec.mk: added m library
6079         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
6080         * support/regression/tests/float_trans: added (for Eric)
6081
6082 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
6083
6084         * src/mcs51/gen.c (genCpl): fixed bug
6085         http://sf.net/mailarchive/message.php?msg_id=6263915
6086
6087 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
6088
6089         * src/SDCCast.c (decorateType): added extended constant folding
6090         * src/SDCCsymt.c (computeType): cleanup
6091         * src/SDCCval.c (valShift): minor optimization
6092         * support/regression/tests/ast_constant_folding.c: added
6093
6094 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6095
6096         * src/SDCCmain.c: removed some unintended changes
6097
6098 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6099
6100         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
6101         * src/z80/gen.c: fixed part of bug #817589
6102         * src/SDCCsymt.c (checkFunction): fixed bug #817895
6103
6104 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
6105
6106         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
6107         * src/SDCCcflow.c
6108         * src/SDCCcse.c
6109         * src/SDCCdflow.c
6110         * src/SDCClabel.c
6111         * src/SDCClrange.c
6112         * src/SDCCmem.c
6113         * src/SDCCopt.c
6114         * src/SDCCpeeph.c
6115         * src/SDCCset.c
6116         * src/avr/ralloc.c
6117         * src/ds390/ralloc.c
6118         * src/izt/ralloc.c
6119         * src/mcs51/ralloc.c
6120         * src/pic/ralloc.c
6121         * src/pic16/ralloc.c
6122         * src/xa51/ralloc.c
6123         * src/z80/ralloc.c
6124         * src/z80/gen.c: removed unused label "release:"
6125
6126 2003-10-06  Borut Razem <borut.razem AT siol.net>
6127
6128         * src/SDCC.lex: removed definition of unused variables
6129           save_optimize and save_options
6130
6131 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
6132
6133         * clean.mk: removed '=' in "-maxdepth=1"
6134         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
6135         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
6136
6137 2003-10-06  Borut Razem <borut.razem AT siol.net>
6138
6139         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
6140           my_unput() replaced by unput()
6141
6142 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
6143
6144         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
6145         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
6146         type-punned pointer will break strict-aliasing rules"
6147         Old LR behaviour is again default; Klaus' LR can be choosen by
6148         defining the environment variable LRKLAUS
6149         * src/SDCCBBlock.h
6150         * src/SDCCloop.c
6151         * src/SDCClrange.c
6152         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
6153         * clean.mk: fixed removal of files in bin/CVS/
6154         * device/lib/clean.mk: fixed removal of directories small and large
6155         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
6156         * src/SDCCicode.c,
6157         * src/SDCCval.c: removed superflous test for pedantic
6158
6159 2003-10-05  Borut Razem <borut.razem AT siol.net>
6160
6161         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
6162           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
6163           message "unmatched #pragma SAVE and #pragma RESTORE"
6164
6165 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6166
6167         * doc/sdccman.lyx: various additions and updates (interrupts, inline
6168           assembly, critical functions, atomic, nojtbound)
6169
6170 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
6171
6172         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
6173         * src/SDCCBBlock.h
6174         * src/SDCCloop.c
6175         * src/SDCCloop.h
6176         * src/SDCClrange.c
6177
6178 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6179
6180         * src/z80/gen.h,
6181         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6182         * src/mcs51/gen.h
6183         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6184         * src/ds390/gen.h
6185         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6186         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
6187         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
6188
6189 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6190
6191         * src/z80/gen.c (genRet): fixed bug #524753
6192         * src/z80/gen.c (genCast): fixed internal error on cast from
6193         pointer to long
6194         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
6195         fix for bug #477835 to the z80
6196         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
6197         for tracking iCodes in the peephole optimizer for z80
6198
6199 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6200
6201         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
6202         the other part of bug #814548
6203         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
6204
6205 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
6206
6207         * src/SDCCcse.c: fixed part of bug #814548
6208
6209 2003-09-28  Borut Razem <borut.razem AT siol.net>
6210
6211         * src/asm.c: rewrite of printILine() to use temporary file instead
6212           a pipe
6213         * src/xa51/main.c: commented out declaration of int rewinds
6214
6215 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6216
6217         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
6218
6219 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6220
6221         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
6222         * src/asm.c (printILine): Fixed bug #811015
6223
6224 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6225
6226         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
6227         freeing.
6228
6229 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6230
6231         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
6232         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
6233         to correctly handle general case of AOP_PAIRPTR
6234         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
6235
6236 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6237
6238         * src/mcs51/ralloc.c (fillGaps),
6239         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
6240         register positioning bug)
6241
6242 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
6243
6244         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
6245
6246 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6247
6248         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
6249         genCodePointerGet, genGenPointerGet, genFarPointerSet,
6250         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
6251         (ralloc doesn't intentionally do this now, but perhaps later)
6252         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
6253         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
6254         register positioning bugs (Fixed bug #762602 and #795325)
6255         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
6256         (Fixed bug #808779)
6257         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
6258         lines that --i-code-in-asm generates
6259
6260 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6261
6262         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
6263         trying to fclose a FILE* that was already closed.
6264
6265 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6266
6267         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
6268         of const struct should be treated as if const themselves)
6269
6270 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
6271
6272         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
6273
6274 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6275
6276         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
6277         Unix (/n) and DOS (/r/n) line terminations.
6278
6279 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6280
6281         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
6282         bug #613775
6283
6284 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6285
6286         * src/mcs51/gen.c (genFunction, genEndFunction),
6287         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
6288         and restore of EA so that stack offsets to parameters are
6289         correct when using both critical and reentrant/stack-auto.
6290         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
6291         size (can be triggered in error if sloc is shared between
6292         different sized objects)
6293         * device/include/float.h: fixed macros to explicitly use
6294         unsigned long where needed
6295
6296 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
6297
6298         Feature req. 799831: added code to allow nesting of critical functions
6299         * src/mcs51/gen.c (genFunction, genEndFunction)
6300         * src/ds390/gen.c (genFunction, genEndFunction)
6301
6302 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6303
6304         * src/SDCCsymt.c (sclsFromPtr),
6305         * src/SDCCsymt.h,
6306         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
6307         support for standard C idiom of memory mapped variables; for
6308         example, *((xdata int*)0x1234) = 1 is now internally equivalent
6309         to xdata int at 0x1234 tempvar = 1.
6310         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
6311         provided by Akiya ISHIDA
6312
6313 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
6314
6315         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
6316         * src/SDCCval.c (constVal): added reduction from int to char
6317         * src/SDCCval.c (valMult, valDiv): fixed sign handling
6318         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
6319         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
6320         to ignore the sign
6321         * support/regression/tests/shifts.c: fixed
6322
6323 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6324
6325         * src/z80/gen.c (genXor): Fixed bug #805445
6326
6327 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6328
6329         Fixed bug #621531 (const & volatile confusion in the type chain).
6330         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
6331         refer to the const or volatile state of the pointer itself.
6332
6333         * src/SDCCast.c
6334         * src/SDCCglue.c
6335         * src/SDCCicode.c
6336         * src/SDCCsymt.c
6337         * src/SDCCval.c
6338         * src/SDCC.y
6339         * src/SDCCsymt.h
6340         * src/pic/gen.c
6341         * src/pic/ralloc.c
6342         * src/pic16/gen.c
6343         * src/pic16/ralloc.c
6344         * support/regression/tests/const.c
6345
6346 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6347
6348         When checking for duplicated modules, use absolute paths
6349         instead of relative paths.  Files changed:
6350
6351         * as/mcs51/lklib.c
6352         * link/z80/lklib.c
6353
6354 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6355
6356         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
6357
6358 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6359
6360         * device/include/string.h: added size_t typedef, changed
6361         prototypes to use size_t, eliminated separate reentrant and
6362         non-reentrant declarations, added _memmove declaration
6363         * device/lib/_memcpy.c: changed to use size_t instead of int,
6364         changed /4 to >>2 to avoid division library call
6365         * device/lib/_memcmp.c,
6366         * device/lib/_memset.c,
6367         * device/lib/_strncat.c,
6368         * device/lib/_strncpy.c,
6369         * device/lib/_strncmp.c: changed to use size_t instead of int
6370         * device/lib/_memmove.c: new file (fixed bug #772294)
6371         * device/lib/Makefile.in: added _memmove.c
6372         * device/lib/z80/asm_strings.s: fixed bug #772290
6373         * support/regression/tests/bitfields.c: attempt to fix host assertion
6374         failure on amd64-unknown-linux2.2
6375
6376 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6377
6378         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
6379         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
6380         * as/z80/asmain.c (main): fixed bug #801766
6381
6382 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
6383
6384         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
6385         compilers
6386
6387 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6388
6389         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
6390         reported in bug #800609
6391
6392 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
6393
6394         * Top header beautifications in src/pic16 directory:
6395           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
6396           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
6397           pcoderegs.h, ralloc.c, ralloc.h
6398         * main.c: added top header and GPL license notice
6399         * pcode.c: fixed the if-conditional warning
6400
6401 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
6402
6403         * device/lib/_mullong.c: replaced int by short for gcc
6404
6405 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6406
6407         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
6408         and JUMPTABLE iCodes properly now (worked by accident before)
6409         * src/mcs51/gen.c (leftRightUseAcc),
6410         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
6411         iCode properly now. Use getSize instead of nRegs since a & b
6412         aren't part of the nRegs tally.
6413
6414 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
6415
6416         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
6417         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
6418           before instructions that use the _STATUS register
6419
6420 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
6421
6422         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
6423         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
6424         fetching of the pointer
6425         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
6426         copied from genNearPointerSet()
6427         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
6428         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
6429         If they pop r0/r1 they must be called in the opposite order than aopOp().
6430         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
6431         (resp. --stack-auto), prepared for --xstack
6432
6433 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6434
6435         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
6436
6437 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
6438
6439         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
6440         these ports have their own __sdcc_external_start()
6441
6442 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
6443
6444         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6445         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
6446         type for bits was changed. It resulted in bit variables becoming
6447         global, which is not permitted in PIC 14 assembly output.
6448
6449 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6450
6451         * doc/sdccman.lyx: various additions and updates. Rearranged sections
6452
6453 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6454
6455         Z80 and MCS51 linkers complaint if a public symbol is defined
6456         in more than one library module:
6457
6458         * as/mcs51/lklib.c
6459         * link/z80/lklib.c
6460         * as/mcs51/Makefile.in
6461
6462 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6463
6464         A few small changes that speed up the peephole optimizer.
6465
6466         * src/SDCCpeeph.c
6467
6468 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6469
6470         Try to make the peephole optimizer smarter by maintaining
6471         an association between the assembly source code and the
6472         iCodes that originated them. Put this information to use
6473         with a new peephole rule condition "notVolatile" so that
6474         the rules can be aggressive yet still safe.
6475
6476         * src/SDCCpeeph.c
6477         * src/SDCCpeeph.h
6478         * src/mcs51/gen.c
6479         * src/mcs51/peeph.def
6480
6481 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6482
6483         Fixed bug #741761
6484
6485         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
6486         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
6487         if the left or right operand symbols have the accuse flag set.
6488
6489 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6490
6491         Changed the type of the result of the ! (NOT) operator to char;
6492         previously it returned the same type as the source. This allows
6493         us to eliminate all the genFloatNot functions (all of its target
6494         implementations were very buggy) since !float can use the same
6495         code as !long now.
6496
6497         * src/SDCCicode.c (ast2iCode): ! returns char
6498         * src/mcs51/gen.c (genNot, genNotFloat),
6499         * src/ds390/gen.c (genNot, genNotFloat),
6500         * src/z80/gen.c (genNot, genNotFloat),
6501         * src/pic/gen.c (genNot, genNotFloat),
6502         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
6503
6504 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
6505
6506         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6507         1. Interrupt would not compile properly. Ensure PCLATH register is saved
6508            during interrupts. Ensure WSAVE is located at a shared bank address.
6509         2. Fixed page selection in some places
6510         3. Fixed BTFSS/C to where necessary use registers directly and not simply
6511            the registers name strings.
6512         4. Fixed "signed / unsigned compare" compiler warnings.
6513         5. The PIC port manages its own allocation of the general purpose
6514            registers, but makes no attempt to reuse them. As a result when
6515            compiling it soon runs out of general purpose registers. Some
6516            additional code was added to the files pcode.c and device.c to walk
6517            through the function call tree and rename the registers so that they
6518            get reused.
6519
6520         * src/pic/device.c
6521         * src/pic/gen.c
6522         * src/pic/glue.c
6523         * src/pic/pcode.c
6524         * src/pic/pcode.h
6525         * src/pic/ralloc.c
6526         * src/pic/ralloc.h
6527         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
6528         genPlus() & genMinus() when the result is the same as left or right
6529
6530 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6531
6532         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
6533
6534 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6535
6536         Made bitfield a distinct type from bit so that bitfields
6537         convert as per ANSI C and bits retain their traditional
6538         boolean style behaviour. Implemented bitfield support in
6539         the z80 port.
6540
6541         * src/SDCCsymt.h,
6542         * src/SDCCsymt.c,
6543         * src/SDCCast.c,
6544         * src/cdbFile.c,
6545         * src/mcs51/gen.c,
6546         * src/ds390/gen.c: bit v bitfield split
6547         * src/z80/gen.c: New support for bitfields
6548         * support/regression/tests/bitfields.c: reenabled z80,
6549         added more tests
6550
6551 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6552
6553         Rules 246.x, 247.x relate to bitfields, the others speed up
6554         access to xdata mapped I/O devices.
6555
6556         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
6557
6558 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6559
6560         Cleaned up genPackBits and genUnpackBits and added two helper
6561         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
6562         for literal assignments in genPackBits (thanks to Frieder for
6563         reminding me).
6564
6565         * src/mcs51/gen.c
6566         * src/ds390/gen.c
6567
6568 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6569
6570         Fixed bug #748310 (pointer to function type mishandled when the
6571         function name is omitted). Also fixed a SIGSEGV when a function
6572         attribute (reentrant, etc) is used on a non-function or on a
6573         function but misplaced before the parameter list.
6574
6575         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
6576         bug #748310
6577         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
6578         * support/Util/SDCCerr.h,
6579         * support/Util/SDCCerr.c: Added func attr misuse error msg
6580
6581 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
6582
6583         Fixed bug #787649 by anonymous
6584         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
6585         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
6586
6587 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6588
6589         Fixed numerous bitfield problems.
6590
6591         * src/SDCC.y: More bitfield related error checking
6592         * src/SDCCsymt.h,
6593         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
6594         * support/Util/SDCCerr.h,
6595         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
6596         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
6597         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
6598         * support/regression/tests/bitfields.c: tests added
6599
6600 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6601
6602         Made the constant following the "interrupt" keyword optional. If
6603         omitted, the function will not automatically be given an entry
6604         in the interrupt vector table (similar to #pragma NOIV, but
6605         less syntacticly kludgy). The interrupt number is also now
6606         range checked. Also fixed a bug in the high order bit example
6607         in the manual.
6608
6609         * src/SDCC.y
6610         * src/SDCCmem.c
6611         * src/SDCCglue.c
6612         * src/SDCCsymt.h
6613         * support/Util/SDCCerr.c
6614         * support/Util/SDCCerr.h
6615         * doc/sdccman.lyx
6616
6617 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
6618
6619         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
6620         * src/SDCCicode.c (operandOperation): rewritten some ops
6621         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
6622         * src/SDCCsymt.c (computeType): literals are handled the same way as any
6623         other type
6624         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
6625         be re-activated by defining REDUCE_LITERALS)
6626         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
6627         unsigned, but are signed by default
6628         * src/SDCCval.c (constVal): rearranged
6629         * src/SDCCval.c (valMod): preliminary fix
6630         * src/SDCCval.c (valCastLiteral): use TYPE_* types
6631         * support/regression/literalop.c: added, work in progress
6632
6633 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6634
6635         Generate warnings for useless declarations like "char data;"
6636         that don't do what new users expect.
6637
6638         * src/SDCC.y
6639         * support/Util/SDCCerr.h
6640         * support/Util/SDCCerr.c
6641
6642 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
6643
6644         * src/SDCCval.c (valMult): fix overflow detection of negative int
6645
6646 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6647
6648         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
6649
6650         Changes to support big endian targets:
6651
6652         * src/ports.h
6653         * src/SDCCglue.c
6654         * src/avr/main.c
6655         * src/ds390/main.c
6656         * src/izt/i186.c
6657         * src/mcs51/main.c
6658         * src/pic/main.c
6659         * src/pic16/main.c
6660         * src/xa51/main.c
6661         * src/z80/main.c
6662
6663 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
6664
6665         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
6666         * device/lib/time.c: fixed warning "integer overflow in expression"
6667
6668 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
6669
6670         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
6671         * src/SDCCval.c (constVal): changed default to signed; hex and octal
6672         constants are unsigned; added recognition of "u" flag for unsigned
6673         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
6674         * src/SDCCval.c (valDiv, valMod): fixed signdness
6675         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
6676         signedness of modulo, left and right shift
6677         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
6678         * support/Util/SDCCerr.h: added warning W_INT_OVL
6679         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
6680         * src/SDCCast.c (ast_print): improved output of constants
6681
6682 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6683
6684         Fixed some warnings when building with MSVC:
6685
6686         * as\mcs51\asdata.c
6687         * as\z80\asdata.c
6688         * as\mcs51\asm.h
6689         * as\z80\asm.h
6690         * link\z80\aslink.h
6691         * link\z80\lkdata.c
6692         * link\z80\lkeval.c
6693         * link\z80\lkgb.c
6694         * link\z80\lkihx.c
6695         * link\z80\lks19.c
6696         * link\z80\lksym.c
6697         * support\cpp2\cpplib.c
6698         * src\ds390\gen.c
6699         * src\mcs51\gen.c
6700
6701 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
6702
6703         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
6704
6705 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6706
6707         * support\librarian\clean.mk: Do not remove Makefile.
6708         * support\librarian\Makefile: added.
6709
6710 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6711
6712         Added librarian to MSVC build:
6713         * all.dsp
6714         * sdcc.dsw
6715         * support\librarian\librarian.dsp
6716
6717         'configure' not needed for librarian, removed:
6718         * support\librarian\configure
6719         * support\librarian\configure.in
6720         * support\librarian\config_in.h
6721         * support\librarian\Makefile.in
6722
6723         Hopefully these ones built the librarian and the rest of sdcc properly:
6724         * Makefile
6725         * Makefile.common.in
6726
6727         Messed up 'configure', so revert to previous version:
6728         * configure
6729         * configure.in
6730
6731 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
6732
6733         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
6734         there, while the mantissa of a double is "only" 53 bits wide.
6735
6736 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6737
6738         Adding sdcclib to the build.  MSVC project coming soon.
6739         Files added/changed:
6740
6741         * support\librarian\clean.mk
6742         * support\librarian\configure
6743         * support\librarian\configure.in
6744         * support\librarian\config_in.h
6745         * support\librarian\Makefile.bcc
6746         * support\librarian\Makefile.in
6747         * support\librarian\sdcclib.c
6748         * Makefile.bcc
6749         * Makefile
6750         * Makefile.common.in
6751         * configure
6752         * configure.in
6753
6754 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6755
6756         Linker now complaints if linked modules have conflicting options, for
6757         example, one compiled using --model-large and another one compiled with
6758         --model-small.  The following files were modified:
6759
6760         * as\mcs51\asdata.c
6761         * as\mcs51\aslink.h
6762         * as\mcs51\asm.h
6763         * as\mcs51\asmain.c
6764         * as\mcs51\asout.c
6765         * as\mcs51\i51pst.c
6766         * as\mcs51\lkdata.c
6767         * as\mcs51\lklibr.c
6768         * as\mcs51\lkmain.c
6769         * as\z80\asdata.c
6770         * as\z80\asm.h
6771         * as\z80\asmain.c
6772         * as\z80\asout.c
6773         * as\z80\z80pst.c
6774         * link\z80\aslink.h
6775         * link\z80\lkdata.c
6776         * link\z80\lklibr.c
6777         * link\z80\lkmain.c
6778         * src\SDCCglue.c
6779
6780 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6781
6782         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
6783         as/mcs51/lklibr.c: Generate a warning when a library is not found.
6784
6785 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
6786
6787         * src/z80/mappings.i: fix _mul[us][int,long] entries
6788
6789 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6790
6791         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
6792
6793 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
6794
6795         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
6796         * support/regression/tests/bitopcse.c: added
6797         fixed warning:
6798         * src/avr/gen.c:
6799         * src/pic/gen.c:
6800         * src/pic16/gen.c:
6801         * src/z80/gen.c:
6802         * src/xa51/gen.c:
6803
6804 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6805
6806         added support for new library format to z80, gbz80 linkers:
6807         *link/z80/aslink.h
6808         *link/z80/lklex.c
6809         *link/z80/lklib.c
6810         *link/z80/lklist.c
6811
6812 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
6813
6814         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
6815         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
6816
6817 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
6818
6819         added DUMMY_READ_VOLATILE:
6820         * src/SDCC.y:
6821         * src/avr/gen.c:
6822         * src/xa51/gen.c:
6823         * src/z80/gen.c:
6824         * src/pic/gen.c:
6825         * src/pic16/gen.c:
6826         * src/mcs51/gen.c:
6827         * src/ds390/gen.c:
6828         * src/SDCCcse.c (algebraicOpts): many improvements
6829         * src/SDCCcse.h: removed algebraicOpts()
6830         * src/SDCCicode.c (picDummyRead): added
6831
6832 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6833
6834         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
6835         "Insufficient space in data memory".
6836
6837 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6838
6839         * src/mcs51/gen.c: fixed bug #771358
6840         * src/z80/gen.c: fixed bug #759087
6841
6842 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
6843
6844         * src/pic16/glue.c: minor cleanup by Vangelis
6845
6846 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6847
6848         * device/include/regc515c.h: fixed #758477
6849         * device/lib/_gptrget.c: saving some cycles in generic pointer get
6850         * device/lib/_gptrput.c: saved a few bytes
6851         * my tab spacing is 8, yours too?)
6852         * device/lib/_ser.c: process RX bytes earlier than TX bytes
6853         * device/lib/serial.c: process RX bytes earlier than TX bytes
6854         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
6855
6856 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6857
6858         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
6859
6860 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6861
6862     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
6863
6864 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
6865
6866         * device/lib/Makefile.in: bad fix, reverted to 1.43
6867
6868 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
6869
6870         * device/lib/Makefile.in: added missing z80 object files
6871
6872 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
6873
6874         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
6875         pic16 progress by Vangelis:
6876         * src/SDCCglobl.h:
6877         * src/SDCCmain.c:
6878         * src/pic/Makefile:
6879         * src/pic:
6880         * pic/Makefile:
6881         * pic16/device.c:
6882         * pic16/device.h:
6883         * pic16/gen.c:
6884         * pic16/gen.h:
6885         * pic16/genarith.c:
6886         * pic16/glue.c:
6887         * pic16/main.c:
6888         * pic16/pcode.c:
6889         * pic16/pcode.h:
6890         * pic16/pcodepeep.c:
6891         * pic16/peeph.def:
6892
6893 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6894
6895     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
6896
6897 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6898
6899     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
6900     added gbz80 build to MSVC project.
6901     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
6902     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
6903     from 8051 stuff and setup so it links using a .lnk file.
6904
6905 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6906
6907     * support/librarian/sdcclib.c: sdcc librarian.
6908     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
6909     with sdcclib.
6910
6911 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6912
6913     * as/mcs51/lkmain.c: properly handle extensions in function afile.
6914
6915 2003-07-02  Borut Razem <borut.razem AT siol.net>
6916
6917         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
6918         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
6919         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
6920         src/xa51/main.c, src/z80/main.c:
6921         virtualization of glue() function: each port has it's own glue function,
6922         which is accessed by do_glue function pointer in PORT.general structure
6923
6924 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
6925
6926         * DS800C400 fun, improved ROM interface and tinibios.
6927
6928 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
6929
6930         * More support for DS80C400. Now includes beginning of interface to ROM.
6931
6932 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
6933
6934         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
6935
6936 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6937
6938         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
6939
6940 2003-06-19  Borut Razem <borut.razem AT siol.net>
6941
6942         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
6943
6944 2003-06-19  Borut Razem <borut.razem AT siol.net>
6945
6946         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
6947         fixed Z80 port - crt0.o: cannot open.
6948
6949 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
6950
6951         * support/Util/MySystem.c (merge_command): revert bad fix
6952
6953 2003-06-18  Borut Razem <borut.razem AT siol.net>
6954
6955         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
6956
6957 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6958
6959         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
6960         option --use-stdout sends errors to stdout instead of stderr.
6961
6962 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
6963
6964         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
6965
6966 2003-06-15  Borut Razem <borut.razem AT siol.net>
6967
6968         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
6969         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
6970         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
6971         fixed width array of pointers replaced with sets;
6972         multiple include and lib paths ared transferred to preprocessor and linker
6973         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
6974         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
6975         fixed width array of pointers
6976         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
6977         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
6978         fixupPath(), getPathDifference()
6979         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
6980         fixed width array of pointers
6981
6982 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
6983
6984         * src/pic16/ralloc.c: fix warnings
6985         * src/pic16/pcode.c: fix warning
6986
6987 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
6988
6989          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
6990         know all the details, but essentially this set of changes enable
6991         the pic16 port to generate movff instructions and generate assembler
6992         directives,
6993         * src/SDCCmain.c:
6994         * src/pic16/gen.c:
6995         * src/pic16/glue.c:
6996         * src/pic16/pcode.c:
6997         * src/pic16/device.c:
6998         * src/pic16/main.c:
6999         * src/pic16/pcode.h:
7000         * src/pic16/pcoderegs.c:
7001         * src/pic16/ralloc.c:
7002         * src/pic16/ralloc.h:
7003
7004 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7005
7006         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7007         added option --vc, so sdcc errors and warnings are compatible with
7008         Microsoft Visual Studio.
7009
7010 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7011
7012         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
7013           device/lib/libfloat.lib: added atof function.
7014
7015 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
7016
7017         * doc/sdccman.lyx: updated to Lyx 1.3
7018         * doc/cdbfileformat.lyx: updated to Lyx 1.3
7019         * doc/test_suite_spec.lyx: updated to Lyx 1.3
7020         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
7021
7022 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
7023
7024         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
7025
7026 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7027
7028         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
7029           additions to the "related tools/documentation" section
7030
7031 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
7032
7033         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
7034
7035 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
7036
7037         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
7038         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
7039
7040 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
7041
7042         * doc/sdccman.lyx: fix double dash and other minor things
7043         * doc/Makefile: fix double dash
7044
7045 2003-05-28  Karl Bongers(patches from Martin Helmling)
7046         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
7047           condition and ignore commands.
7048
7049 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7050
7051         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
7052           is in parts still quite out of date, I did changes as far as I felt makes sense
7053           for a non-native english speaker.
7054           Please feel free to add to the manual or to correct my changes.
7055         * doc/Makefile: undid touching the date of intermediate tex files.
7056
7057 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7058
7059         * doc/sdccman.lyx: Manual has an index now
7060
7061 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
7062
7063         Finalize muluint/mulsint and mululong/mulslong merging:
7064         * device/lib/_mulint.c
7065         * device/lib/_mullong.c
7066         * device/lib/gbz80/mul.s
7067         * device/lib/gbz80/stubs.s
7068         * device/lib/z80/mul.s
7069         * device/lib/z80/stubs.s
7070         * src/SDCCsymt.c (initCSupport)
7071
7072 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7073
7074         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
7075         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
7076           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
7077           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
7078           instead of /Zm500.
7079
7080 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7081
7082         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
7083           the regression tests I'm not brave enough to enable 245.b, 245.c
7084         * doc/sdccman.lyx: added latex preamble for hyperref package.
7085           Using pdflatex this will give you a hyperlinked pdf file with
7086           bookmarks. (prepend '%' before /usepackage if this breaks something)
7087
7088 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7089
7090          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
7091
7092 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
7093
7094         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
7095
7096 2003-05-21    <johan AT balder>
7097
7098         * src/SDCCglue.c (printIval): fixed bug #739934
7099
7100 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7101
7102         Applied patch from bug 737905 (renamed yylineo to mylineno):
7103         * src/altlex.c
7104         * src/SDCCast.c
7105         * src/SDCglobl.h
7106         * src/SDCC.lex
7107         * src/SDCCsymt.c
7108         * src/SDCCval.c
7109         * src/pic16/pcode.c: Cleaned warnings
7110         * src/pic16/pcodeflow.c: Cleaned warnings
7111         * src/pic16/pcoderegs.c: Cleaned warnings
7112
7113 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
7114
7115         * src/pic16/pcode.c: Cleaned warnings
7116         * src/pic16/pcodepeep.c: Cleaned warnings
7117         * src/pic16/ralloc.c: Cleaned warnings
7118
7119 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7120
7121         * doc/sdccman.lyx: fixed bug 739745
7122         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
7123
7124 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
7125
7126         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
7127         it can be defined with CFLAGS when running configure
7128         * src/SDCCmain.c: fixed compiling + linking with object files
7129
7130 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
7131
7132         * configure.in: configure for pic16 port,
7133             added --disable-pic16-port
7134         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
7135         * src/SDCCmain.c: linkOptions is changed to set *,
7136             added if/endif conditional macros to remove options help
7137             messages from optionsTable when a port is not configured, added
7138             support for the PIc16 port in the ports table, when executing
7139             the compiler with no port specified on command line, a default
7140             port is selected with the new macro DEFAULT_PORT which is
7141             defined in port.h, in setDefaultOptions() linkOptions is removed
7142             from initialization assignment, since now it is a set,
7143             parseCmdLine uses setParseWithComma for linkOptions, in
7144             linkEdit() linkOptions are accessed with new function indexSet()
7145             which returns the i'th item of a set variable. See SDCCset.c, in
7146             linkEdit() when calling buildCmdLine(), added linkOptions as
7147             last argument. Now users can pass arguments to gplink via the
7148             -Wl option, main() uses pic16glue() to glue up pic16 programs
7149         * src/SDCCpeeph.c: various changes to support pic16
7150         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
7151             return the i'th item of the set
7152         * src/SDCCset.h: added function prototype for indexSet()
7153         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
7154         * src/clean.mk: added pic16 in CLEANALLPORTS variable
7155         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
7156             added macro DEFAULT_PORT
7157         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
7158         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
7159             generated
7160         * src/pic16/glue.c: commented out some error producing lines
7161         * src/pic16/main.c: __config directives are commented out to stop
7162             gpasm complaining and test the linkage with gplink, _linkCmd and
7163             _asmCmd changed to be more gplink and gpasm friendly
7164         * src/pic16/peeph.def: peep rule 3 is commented out, since it
7165             produced an error when parsed, peep rule 12 is added to utilize
7166             movff, but it is commented out since the pCode does not support
7167             yet a command with 2 address arguments
7168
7169 2003-05-18    <johan AT balder>
7170
7171         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7172         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7173 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
7174
7175         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
7176   Added feature to script commands from file.
7177
7178 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
7179
7180         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
7181         * src/SDCCutil.c: include ctype.h for win32
7182
7183 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
7184
7185         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
7186
7187 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
7188
7189         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
7190   Fixed so you can set breakpoints prior to run, run does not stop
7191   on entry now.  Add tbreak.  Other enhancements and fixes for use
7192   with ddd.
7193
7194 2003-05-12  Borut Razem <borut.razem AT siol.net>
7195
7196         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
7197
7198 2003-05-11  Borut Razem <borut.razem AT siol.net>
7199
7200         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
7201         the path of bin directory, so that PATH is the only env. variable, which has to be set
7202         in case of standard installation.
7203         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
7204         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
7205         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
7206
7207 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7208
7209         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
7210         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
7211         temp files are in the port dir; clean the gen/test directory when
7212         generating new test.c
7213         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
7214         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
7215         * support/regression/tests/zeropad.c: added
7216
7217 2003-05-09    <johan AT balder>
7218
7219         * src/SDCCglue.c: fixed bug #597940
7220
7221 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
7222
7223         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7224   cache sfr, optimize next,step, fix off by one sourceline,
7225   support ddd list function.
7226         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
7227
7228 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7229
7230         * support/regression/HTMLgen.py: added compare_s2f()
7231         * support/regression/Makefile: redo 1.27
7232         * support/regression/generate-cases.py: redo 1.5
7233
7234 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
7235
7236         * support/regression/tests/float.c: workaround 33 bit hex constant
7237         * support/regression/tests/simplefloat.c: fix division for host
7238
7239 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
7240
7241         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
7242         that tame's the PIC's over-aggressive optimizer.
7243
7244 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7245
7246          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
7247          support for MSVC.
7248
7249 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
7250
7251         Initial support for DS80C400. "Hello world" runs on TINIm400
7252         (with polled I/O).
7253
7254 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
7255
7256          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7257          * Some notes on ddd usage added in debugger/README
7258          Martin Helmling adding more features and fixes for ddd GUI debugger.
7259          Code added for nexti, stepi, up, down, and other adjustments.
7260
7261 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
7262
7263         * src/pic/pCodepeep.c non-wildcard asmops are now handled
7264         * src/pic/peeph.def Added two rules to optimize carry manipulation
7265         * src/pic/* removed debug printfs
7266
7267 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
7268
7269         * debugger/mcs51/cmd.c: added header newalloc.h
7270
7271 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
7272
7273         * as/Makefile: new EXEEXT
7274         * as/z80/Makefile: remove trailing slash of BUILDIR
7275         * as/z80/clean.mk: new EXEEXT
7276         * Makefile.common.in: add to CFLAGS (and others), don't replace it
7277         * support/cpp2/Makefile.in: new EXEEXT
7278         * src/pic/glue.c (pic14emitRegularMap): fixed warning
7279
7280 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
7281
7282         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
7283         EXEEXT was introduced to fix all related problems with targets
7284         "clean", "install" and "uninstall"; a couple of further flaws
7285         especially with "clean" have been fixed too
7286         * as/mcs51/Makefile.in
7287         * as/mcs51/clean.mk
7288         * as/z80/Makefile
7289         * Makefile
7290         * clean.mk
7291         * debugger/mcs51/Makefile.in
7292         * debugger/mcs51/clean.mk
7293         * link/z80/Makefile
7294         * link/z80/Makefile.in
7295         * link/z80/clean.mk
7296         * link/Makefile
7297         * packihx/Makefile.in
7298         * packihx/clean.mk
7299         * sim/ucsim/Makefile
7300         * sim/ucsim/clean.mk
7301         * sim/ucsim/avr.src/Makefile.in
7302         * sim/ucsim/avr.src/clean.mk
7303         * sim/ucsim/s51.src/Makefile.in
7304         * sim/ucsim/s51.src/clean.mk
7305         * sim/ucsim/xa.src/Makefile.in
7306         * sim/ucsim/xa.src/clean.mk
7307         * sim/ucsim/z80.src/Makefile.in
7308         * sim/ucsim/z80.src/clean.mk
7309         * sim/ucsim/main_in.mk
7310         * sim/ucsim/packages_in.mk
7311         * sim/ucsim/gui.src/Makefile.in
7312         * sim/ucsim/gui.src/serio.src/Makefile.in
7313         * sim/ucsim/gui.src/serio.src/clean.mk
7314         * src/Makefile.in
7315         * src/clean.mk
7316         * support/cpp2/Makefile.in
7317         * support/cpp2/clean.mk
7318         * support/makebin/Makefile
7319         * support/makebin/clean.mk
7320         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
7321         * doc/sdccman.lyx: --program-suffix no longer needed
7322
7323 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
7324
7325          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
7326          Martin Helmling added support for ddd GUI debugger.
7327          Code added to display assembly, set variables, and other commands
7328          to interface to ddd.
7329
7330 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
7331
7332         * as/Makefile: fix target clean
7333         * as/clean.mk: fix target clean
7334         * as/z80/clean.mk: fix target clean
7335
7336 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
7337
7338         * Makefile.common.in: added  AT EXEEXT AT
7339         * configure.in: removed all mingw32 stuff
7340         * configure: rebuilt from configure.in
7341         * doc/sdccman.lyx: updated section "installation"
7342         * support/scripts/sdcc_mingw32: adapted to configure
7343         * support/scripts/sdcc_cygwin_mingw32: added
7344
7345 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
7346
7347         * src/pic Added object file support for the PIC port
7348         * src/pic Applied patch from Craig Franklin (this started the object file support)
7349         * src/regression Updated the PIC regression tests for object files
7350
7351 2003-04-20  Borut Razem <borut.razem AT siol.net>
7352
7353         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
7354           lklex.c: In function `getfid':
7355           lklex.c:203: warning: array subscript has type `char'
7356         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
7357           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
7358         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
7359           stack handling macros
7360
7361 2003-04-19  Borut Razem <borut.razem AT siol.net>
7362
7363         * "handling space characters in file path" task:
7364         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
7365         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
7366         * support/Util/MySystem.h: make it self-sufficient
7367         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
7368           src/z80/main.c, sdcc/as/mcs51/lklex.c:
7369           handling space characters in file path
7370         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
7371           (it will be used by assemblers, which have their own includes, e.g. gpasm)
7372         * support/Util/MySystem.c: handling space characters in executable's path
7373
7374 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
7375
7376         * as/z80/Makefile: fix permanent rebuild of z80
7377         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
7378         * support/regression/tests/bitfields.c: added Johan's bitfields.c
7379
7380 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
7381
7382         * src/SDCCopt.c: add special case optimization to replace modulo by
7383           a power of two with a bitwise AND.
7384
7385 2003-04-18    <johan AT balder>
7386
7387         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
7388
7389 2003-04-17    <johan AT balder>
7390
7391         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
7392         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
7393
7394 2003-04-13  Borut Razem <borut.razem AT siol.net>
7395
7396         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
7397         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
7398           fixed mingw problem in adl_NORMALIZE_PATH
7399
7400 2003-04-12  Borut Razem <borut.razem AT siol.net>
7401
7402         * fixed "#pragma SAVE/RESTORE can not be nested":
7403         * src/SDCC.lex: reworked pragma handling functions
7404         * sdcc/src/SDCCglobl.h: reworked stack handling macros
7405         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
7406
7407 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7408
7409         * src/SDCCutil.c (pathEquivalent): defined but not used
7410         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
7411         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
7412         * configure: rebuilt from configure.in
7413         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7414         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7415         * device/include/Makefile.in: replace sdcc_datadir
7416         * device/lib/Makefile.in: replace sdcc_datadir
7417         * Makefile.common.in: add LDFLAGS from configure
7418         * packihx/Makefile.in: use LDFLAGS
7419         * src/Makefile.in: use LDFLAGS
7420         * support/cpp2/Makefile.in: add LDFLAGS from configure
7421         * support/makebin/Makefile: use LDFLAGS
7422         * .version: bumped version number to 2.3.5
7423
7424 2003-04-12  Borut Razem <borut.razem AT siol.net>
7425
7426         * completed "different paths" task:
7427         * src/SDCCmacro.c: fixed bug in handling quotes
7428         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
7429         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
7430
7431 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7432
7433         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
7434
7435 2003-04-11 kevin Vigor <kevin AT vigor.nu>
7436
7437         * ds390/gen.c ds390/peeph.def: fix bug 706781
7438
7439 2003-04-11  Borut Razem <borut.razem AT siol.net>
7440
7441         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
7442
7443 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
7444
7445         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
7446         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
7447          set - this bit used to not be set...).
7448         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
7449           bad code in PIC Port
7450         * src/regression/and2.c added to test bug 609268
7451         * src/regression/Makefile added and2.c to regression test
7452
7453
7454 2003-04-08    <johan AT CP255758-A>
7455
7456         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
7457         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
7458         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
7459
7460 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
7461
7462         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
7463         fix bug #487815
7464         * support/cpp2/Makefile.in: fix bug #487815
7465         * configure: rebuilt from configure.in
7466         * Makefile.common.in: docdir changed, new path suffixes
7467         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7468         * sdcc_vc_in.h: reflect changes from sdccconf.h
7469         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
7470         * src/SDCCutil.h: remove BINDIR hack
7471         * doc/sdccman.lyx: update new path hierarchy
7472
7473 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7474
7475         * src/SDCCpeeph.c: added okToRemoveSLOC test
7476
7477 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7478
7479         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
7480
7481 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7482
7483         * src/SDCCpeeph.c: added labelIsReturnOnly test
7484         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
7485
7486 2003-04-05    <johan AT balder>
7487
7488         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
7489         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
7490         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
7491         * src/SDCCast.c: fixed a warning
7492         * src/SDCCast.h: fixed a warning
7493         * src/SDCCicode.c (operandFromAst): fixed a warning
7494
7495 2003-04-04    <johan AT balder>
7496
7497         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
7498         * src/SDCCast.c (decorateType): fixed bug #715076
7499         * src/SDCC.y: fixed bug #702907
7500
7501 2003-04-03    <johan AT balder>
7502
7503         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
7504         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
7505         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
7506         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
7507         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
7508
7509 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
7510
7511         * _decdptr.c: fix return values
7512         * _gptrget.c: fix return values
7513         * _gptrgetc.c: fix return values
7514         * _gptrput.c: fix return values
7515         * _mulint.c: fix return values
7516         * as/z80/Makefile: fix 'make -j' problem
7517
7518 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
7519
7520         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
7521         * configure.in: big cleanup, updated to autoconf 2.5x
7522         * configure: rebuilt from configure.in
7523         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7524         * sdcc_vc_in.h: reflect changes from sdccconf.h
7525         * doc/Makefile: fixed a flaw in "make install"
7526
7527 2003-04-02    <johan AT balder>
7528
7529         * src/ds390/gen.c (genCmp): no comments
7530         * src/mcs51/gen.c (genCmp): no comments
7531         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
7532         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
7533
7534 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
7535
7536         * support/regression/generate-cases.py: place generated file in given sub directory
7537         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
7538         * support/regression/Makefile: improvements for 'make -j';
7539         side effect: it's simpler and faster now
7540
7541 2003-03-31  Borut Razem <borut.razem AT siol.net>
7542
7543         * src/z80/main.c: link-{port} and as-{port} defined without path
7544         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
7545
7546 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
7547
7548         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
7549
7550 2003-03-30  Borut Razem <borut.razem AT siol.net>
7551
7552         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
7553           changed type of list parameter to set
7554         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
7555         * src/port.h: changed type of do_assemble() parameter to set
7556         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
7557           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
7558           definition of "cppoutfilename" macro with NULL value in preProcess()
7559         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
7560         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
7561         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
7562           replaced with set *binPathSet
7563         * shash_add() deallocates the item, if allready exsists, before adding the new one
7564         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
7565
7566 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
7567
7568         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
7569           a nested for loop bug in the PIC port
7570         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
7571           for loops
7572
7573 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
7574
7575         * support/Util/dbuf.h: remove C++ stuff to make it portable
7576
7577 2003-03-28  Borut Razem <borut.razem AT siol.net>
7578
7579         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
7580           literal strings in stringLiteral()
7581         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
7582         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
7583           to the project
7584
7585 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
7586
7587         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
7588
7589 2003-03-26    <johan AT balder>
7590
7591         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
7592         * src/ds390/gen.c (saveRegisters): catched symbol abuse
7593         * src/SDCCast.c (decorateType): fixed " -v < 3"
7594
7595 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
7596
7597         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
7598         Added Lenny Story's debug infrastructure changes:
7599         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
7600         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
7601         * src/cdbFile.c: added
7602         * src/SDCCdebug.c: added
7603         * src/SDCCdebug.h: added
7604         * src/SDCCast.c (createFunction)
7605         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
7606         * src/SDCCmain.c (parseCmdLine, main)
7607         * src/SDCCmem.c (redoStackOffsets)
7608         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
7609         * src/SDCCsymt.h
7610         * src/common.h
7611         * src/avr/gen.c (genAVRCode)
7612         * src/ds390/gen.c (gen390Code)
7613         * src/mcs51/gen.c (gen51Code)
7614         * src/pic/gen.c (genpic14Code)
7615         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
7616         * src/xa51/gen.c (genXA51Code)
7617         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
7618
7619 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7620
7621         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
7622         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
7623
7624 2003-03-22    <johan AT balder>
7625
7626         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
7627
7628 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
7629
7630         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
7631         * doc/cdbfileformat.lyx: added, written by Lenny Story
7632         * doc/Makefile: added cdbfileformat.lyx
7633         * doc/clean.mk: added cdbfileformat.lyx
7634
7635 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
7636
7637         * src/mcs51/peeph.def: fix bug #705773
7638
7639 2003-03-20    <johan AT balder>
7640
7641         An sfr/sbit can have an "at #" AND an initializer
7642         * src/SDCCsymt.c (checkSClass):
7643         * src/SDCCmem.c (allocGlobal):
7644         * src/SDCCmem.c (allocLocal):
7645         * src/SDCCast.c (createBlock):
7646
7647 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
7648
7649         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
7650
7651 2003-03-16    <johan AT balder>
7652
7653         Undid the hackup of const and volatile, the problem is much bigger
7654         * src/SDCC.y:1.65
7655         * src/SDCCast.c:1.171
7656         * src/SDCCglue.c:1.138
7657         * src/SDCCicode.c:1.146
7658         * src/SDCCsymt.c:1.150
7659         * src/SDCCval.c:1.65
7660
7661 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
7662
7663         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
7664         * src/ds390/gen.c (genAddrOf): fixed bug #704087
7665
7666 2003-03-13    <johan AT balder>
7667
7668         Hackup const and volatile modifiers in type chains a bit:
7669         * src/SDCC.y:1.63
7670         * src/SDCCast.c:1.169
7671         * src/SDCCglue.c:1.136
7672         * src/SDCCicode.c:1.143
7673         * src/SDCCsymt.c1.146
7674         * src/SDCCsymt.h1.59
7675         * src/SDCCval.c:1.63
7676
7677 2003-03-12    <johan AT balder>
7678
7679         * src/SDCCBBlock.h: more LRH debugging junk
7680         * src/SDCCcflow.h: more LRH debugging junk
7681         * src/SDCCloop.c: more LRH debugging junk
7682         * src/SDCC.y (struct_declaration): fixed bug #697590
7683         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
7684         * src/ds390/gen.c (aopForRemat): fixed bug #700031
7685         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
7686
7687 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7688         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
7689         test function names must now match exactly).
7690         * src/SDCCcse.c: added special case in findCheaperOp to allow
7691         extending a short integer. Makes less awful code for bug 700121 test case.
7692
7693 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7694
7695         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
7696         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
7697
7698 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7699
7700         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
7701         actually called (operandsNotEqual() was called for all
7702         operandsNotEqualX tests).
7703
7704 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7705
7706         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
7707         with shorter literals. Fixes bug 700121.
7708
7709 2003-03-11    <johan AT balder>
7710
7711         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
7712
7713 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
7714
7715         * src/SDCCloop.c (mergeRegions): an evil beast is dead
7716         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
7717
7718 2003-03-10  Borut Razem <borut.razem AT siol.net>
7719
7720         * src/SDCCmain.c: pipe preprocessor's output
7721         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
7722         * sdcc_vc_in.h: define pclose as _pclose for WIN32
7723         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
7724         which closes all pipes in pipeSet set
7725         * src/SDCCset.c: free deleted item in function deleteSetItem()
7726         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
7727         moved from z80 to src subproject
7728         * .version: increased version number to 2.3.4
7729
7730 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
7731
7732         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
7733         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
7734         * support/regression/ports/xa51/spec.mk: fix typo
7735
7736 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
7737
7738         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
7739
7740 2003-03-09  Borut Razem <borut.razem AT siol.net>
7741
7742         * src/SDCCmain.c: pipe preprocessor's output
7743         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
7744         * sdcc_vc_in.h: define pclose as _pclose for WIN32
7745         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
7746         which closes all pipes in pipeSet set
7747         * src/SDCCset.c: free deleted item in function deleteSetItem()
7748         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
7749         moved from z80 to src subproject
7750
7751 2003-03-09  Borut Razem <borut.razem AT siol.net>
7752
7753         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
7754         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
7755         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
7756         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
7757         * src/SDCCglobl.h: unification of WIN32 native definitions
7758
7759 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7760
7761         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
7762
7763 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
7764
7765         * src/configure.in:   check for endianess (even while cross-compiling)
7766         * src/configure:      check for endianess (even while cross-compiling)
7767         * src/configure_in.h: check for endianess (even while cross-compiling)
7768         * src/avr/gen.c:        remove old endianess stuff
7769         * src/mcs51/gen.c:      remove old endianess stuff
7770         * src/ds390/gen.c:      remove old endianess stuff
7771         * src/pic/gen.c:        remove old endianess stuff
7772         * src/pic/genarith.c:   remove old endianess stuff
7773         * src/pic/glue.c:       fix endianess check
7774         * src/pic16/gen.c:      remove old endianess stuff
7775         * src/pic16/genarith.c: remove old endianess stuff
7776         * src/pic16/glue.c:     fix endianess check
7777         * src/xa51/gen.c:       remove old endianess stuff
7778         * src/z80/gen.c:        fix endianess check
7779         * src/SDCCglue.c:       fix endianess check
7780         * src/ds390/peeph.def: fix bug 700036
7781
7782 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
7783
7784         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
7785         * src/configure: find appropriate data-types on host for SDCC's int and long
7786         * src/configure.in: find appropriate data-types on host for SDCC's int and long
7787         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
7788         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
7789
7790 2003-03-07    <johan AT balder>
7791
7792         Just a big NOOP:
7793                 some minor cleanups before the big shot
7794                 OP_DEFS and OP_USES now use Kevin's protection
7795                 new option --nolabelopt
7796
7797         * src/SDCCBBlock.c:
7798         * src/SDCCast.c,:
7799         * src/SDCCcflow.c:
7800         * src/SDCCcse.c:
7801         * src/SDCCicode.c:
7802         * src/SDCCicode.h:
7803         * src/SDCClabel.c:
7804         * src/SDCCloop.c:
7805         * src/SDCCmain.c:
7806         * src/ds390/ralloc.c:
7807         * src/mcs51/ralloc.c:
7808         * src/pic/ralloc.c:
7809         * src/xa51/ralloc.c:
7810         * src/z80/ralloc.c:
7811
7812 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
7813
7814         * src/pic/pcode.c (get_op): fix 64 bit warnings
7815         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
7816         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
7817         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
7818         * support/regression/tests/malloc.c: fix 64 bit warnings
7819
7820 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
7821
7822         * src/mcs51/gen.c (genMinus): fixed bug 696436
7823
7824 2003-03-02  Borut Razem <borut.razem AT siol.net>
7825
7826         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
7827
7828 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
7829
7830         * configure.in: test for mkstemp
7831         * sdccconf_in.h: add HAVE_MKSTEMP
7832
7833 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
7834
7835         * device/include/ctype.h: removed warning while using --stack-auto
7836         * device/include/malloc.h: removed warning while using --stack-auto
7837         * device/include/string.h: removed warning while using --stack-auto
7838
7839 2003-02-23  Borut Razem <borut.razem AT siol.net>
7840
7841         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
7842         because NDEBUG is defined (see man assert)
7843         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
7844
7845 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7846
7847         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
7848         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
7849
7850 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7851
7852         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
7853         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
7854
7855 2003-02-18    <johan AT balder>
7856
7857         * as/mcs51/asmain.c (asmbl): module can start with a digit
7858         * as/z80/asmain.c (asmbl): module can start with a digit
7859
7860 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
7861
7862         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
7863         * src/asm.c: fix pipe() for Mingw32
7864
7865 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
7866
7867         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
7868         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
7869         make -V work again; --c1mode reads now from stdin
7870         * doc/sdccman.lyx: added --c1mode
7871         * support/Util/SDCCerr.c: new messages for c1 mode
7872         * support/Util/SDCCerr.h: new messages for c1 mode
7873         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
7874
7875 2003-02-15    <johan AT balder>
7876
7877         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
7878
7879 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
7880
7881         * doc/sdccman.lyx: Environment variables, -o and other minor things
7882
7883 2003-02-14    <johan AT balder>
7884
7885         * src/xa51/main.c: before anyone really tries to use it :)
7886
7887         * Install doc's in share/sdcc/doc
7888         * removed some obsolete files
7889         * Do a proper make distclean and uninstall
7890         M Makefile.common.in
7891         R sdccbuild.sh
7892         M as/Makefile
7893         M device/include/Makefile.in
7894         M device/lib/Makefile.in
7895         M doc/sdccman.lyx
7896         M link/Makefile
7897         M sim/ucsim/doc/Makefile.in
7898         M src/clean.mk
7899         R src/avr/peeph.rul
7900         R src/xa51/peeph.rul
7901         M support/cpp2/Makefile.in
7902         M support/makebin/Makefile
7903
7904
7905 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
7906
7907         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
7908
7909 2003-02-10  Borut Razem <borut.razem AT siol.net>
7910
7911         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
7912         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
7913         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
7914         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
7915         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
7916         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
7917         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
7918         src/z80/Makefile.bcc: Borland Makefile cleanup
7919         * as/z80/Makefile.bcc: Added Borland Makefile
7920         * support/cpp2/borland.h: Removed
7921
7922 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
7923
7924         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
7925         * src/SDCC.lex: new pragma NOIV
7926         * src/SDCCglobl.h: new pragma NOIV
7927         * src/SDCCmem.c: new pragma NOIV
7928
7929 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
7930
7931         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
7932
7933 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
7934
7935         * src/SDCCmain.c: signal handling is switched off by --debug
7936         * doc/Makefile: small fix for install; use clean.mk again
7937         * doc/clean.mk: clean *.pdf and *.html too
7938
7939 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
7940
7941         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
7942         * device/lib/printfl.c: fix a ds390 bug by making it portable
7943         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
7944         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
7945         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
7946         * debugger/mcs51/cmd.c: converted multi-line string literals
7947         * sim/ucsim/globals.cc: converted multi-line string literals
7948         * src/SDCCmain.c: introduced signal handler to remove temp files
7949         * doc/Makefile: small tweaks, implement clean
7950         * doc: removed generated files
7951
7952 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7953
7954         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
7955         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
7956         Address Record is not correctly generated for DS390."
7957
7958 2003-02-02  Borut Razem <borut.razem AT siol.net>
7959
7960         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
7961         * as/mcs51/asm.h: fixed compilation with Borland C
7962         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
7963         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
7964         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
7965         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
7966         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
7967         src/z80/Makefile.bcc: delete $(LIB) only if exist
7968         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
7969
7970 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
7971
7972         * device/include/malloc.h: introduced NULL
7973         * device/include/string.h: introduced NULL
7974         * device/include/stdlib.h: introduced NULL
7975         * device/lib/_memcpy.c: removed NULL
7976         * device/lib/_strcat.c: removed NULL
7977         * device/lib/_strchr.c: removed NULL
7978         * device/lib/_strcmp.c: removed NULL
7979         * device/lib/_strcpy.c: removed NULL
7980         * device/lib/_strcspn.c: removed NULL
7981         * device/lib/_strlen.c: removed NULL
7982         * device/lib/_strncat.c: removed NULL
7983         * device/lib/_strncmp.c: removed NULL
7984         * device/lib/_strncpy.c: removed NULL
7985         * device/lib/_strpbrk.c: removed NULL
7986         * device/lib/_strrchr.c: removed NULL
7987         * device/lib/_strspn.c: removed NULL
7988         * device/lib/_strstr.c: removed NULL
7989         * device/lib/_strtok.c: removed NULL
7990         * device/lib/malloc.c: removed NULL, include own header
7991
7992 2003-02-02    <johan AT balder>
7993
7994         * 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
7995         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
7996         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
7997         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
7998         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
7999         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
8000
8001 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8002
8003         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
8004         area 'DATA'"
8005
8006 2003-02-01    <johan AT balder>
8007
8008         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
8009
8010 2003-01-31    <johan AT CP255758-A>
8011
8012         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
8013
8014 2003-01-30    <johan AT balder>
8015
8016         * src/SDCCBBlock.c: automatic bug detection
8017         * src/SDCCicode.c: automatic bug detection
8018
8019 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8020
8021         * src/SDCCglobl.h:   now --xram-size 0 works
8022         * src/SDCCmain.c:    now --xram-size 0 works
8023
8024 2003-01-29    <johan AT balder>
8025
8026         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
8027
8028 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8029
8030         * as/mcs51/aslink.h: Added options --xram-size and --code-size
8031         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
8032         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
8033         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
8034         * src/SDCCglobl.h:   Added options --xram-size and --code-size
8035         * src/SDCCmain.c:    Added options --xram-size and --code-size
8036
8037 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
8038
8039         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
8040         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
8041
8042 2003-01-27    <johan AT balder>
8043
8044         * src/SDCC.y: fixed bug #613764
8045
8046 2003-01-26    <johan AT balder>
8047
8048         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
8049         * src/SDCCsymt.h: fixed bug #673374
8050         * src/SDCCglue.c: fixed bug #661910
8051         * src/SDCCast.c: fixed bug #458099 and 673374
8052
8053 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
8054
8055         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
8056         * as/mcs51/strcmpi.h: added
8057         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
8058         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
8059         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
8060         * as/mcs51/assym.c: strcmpi -> as_strcmpi
8061         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
8062         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
8063         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
8064         * as/mcs51/Makefile.aslink: new module strcmpi
8065         * as/mcs51/Makefile.asx8051: new module strcmpi
8066         * as/mcs51/Makefil.bcc: new module strcmpi
8067         * as/mcs51/Makefile.in: new module strcmpi
8068         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
8069
8070 2003-01-26    <johan AT balder>
8071
8072         * src/SDCCglue.c: reverted back to 1.124
8073         * src/SDCCast.c: reverted back to 1.156
8074         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
8075
8076 2003-01-25    <johan AT balder>
8077
8078         * src/SDCCglue.c: A better fix for bug #661910
8079         * src/SDCCast.c: A better fix for bug #661910
8080         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
8081
8082 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8083
8084         * src/Makefile.in: remove spawn.o
8085         * src/SDCCmain.c: remove spawn.h
8086         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
8087         * src/spawn.c: removed
8088         * src/spawn.h: removed
8089         * support/regression/ports/ds390/spec.mk: link with -r
8090
8091 2003-01-24    <johan AT CP255758-A>
8092
8093         * src/ds390/gen.c (aopOp): fixed bug #667458
8094         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
8095         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
8096         (createIvalCharPtr): an ival doesn't always have a storage class anymore
8097
8098 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8099
8100         * src/mcs51/peeph.def: better assembler identation by Frieder
8101         * src/mcs51/gen.c: better assembler identation by Frieder
8102
8103 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
8104
8105         * as/z80/string.h: removed for gcc 3.2
8106         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
8107         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
8108
8109 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8110
8111         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
8112         * src/SDCCpeeph.c (replaceRule): fix bug #663503
8113         * support/regression/Makefile: separate temp files for ports
8114         * support/regression/generate-cases.py: separate temp files for ports
8115         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8116         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8117
8118 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8119
8120         * moved tinitalk to device/examples/ds390
8121
8122 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
8123
8124         * as/mcs51/lkmem.c: rflag is for DS390
8125         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
8126         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
8127                          (linkEdit): move mem- and map-files the same way as ihx-files
8128         * src/z80/main.c (_setDefaultOptions): removed --generic
8129         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
8130         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
8131         * src/pic/glue.c (picglue): --c1mode works again
8132         * src/pic16/glue.c (pic16glue): --c1mode works again
8133         * src/asm.c (printCLine): fix #660034
8134
8135 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
8136
8137         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
8138         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
8139         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
8140         * as/mcs51/lkmem (summary): better fix for sp problem
8141         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
8142         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
8143         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
8144                                               remove --stack-after-data
8145
8146 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
8147
8148         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
8149         * src/SDCCutil.c (join): ugly bug: missing '\0'
8150         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
8151
8152 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8153
8154         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
8155         * src/port.h: typo
8156         * src/pic/main.c (_asmCmd): gpasm supports -o
8157         * src/z80/main.c: more general macros
8158         * device/lib/Makefile.in: remove intermediate files
8159
8160 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8161
8162         * .version: Bumped version number to 2.3.3
8163         * src/SDCCBBlock.c: new option -o
8164         * src/SDCCglobl.h: new option -o
8165         * src/SDCCglue.c: new option -o
8166         * src/SDCCmain.c: new option -o
8167         * src/asm.c: new option -o
8168         * src/ds390/main.c: new option -o
8169         * src/pic/glue.c: new option -o
8170         * src/pic/pcode.c: new option -o
8171         * src/pic/ralloc.c: new option -o
8172         * src/pic16/glue.c: new option -o
8173         * src/pic16/pcode.c: new option -o
8174         * src/pic16/ralloc.c: new option -o
8175         * src/z80/main.c: new option -o
8176         * device/lib/Makefile.in: use -o
8177         * support/regression/ports/ds390/spec.mk: use -o
8178         * support/regression/ports/gbz80/spec.mk: use -o
8179         * support/regression/ports/mcs51/spec.mk: use -o
8180         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
8181         * support/regression/ports/z80/spec.mk: use -o
8182         * support/regression/ports/ucz80/spec.mk: use -o
8183         * support/regression/ports/xa51/spec.mk: use -o
8184         * support/regression/fwk/lib/timeout.c: fix usage string
8185
8186 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
8187         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
8188
8189 2003-01-07    <johan AT balder>
8190
8191         * src/SDCCast.c (decorateType): fixed bug #600035
8192
8193 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
8194         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
8195         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
8196         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
8197         * src/pic/pcode.c: outcommented unused variable to remove warnings
8198         * src/pic/ralloc.c: outcommented unused variable to remove warnings
8199
8200 2003-01-06    <karl AT turbobit.com>
8201         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
8202    regression tests.
8203
8204 2003-01-06    <johan AT balder>
8205
8206         * src/SDCCicode.c: fixed array add
8207
8208 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
8209         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
8210         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
8211
8212 2003-01-04    <johan AT balder>
8213
8214         * src/SDCCval.c (getNelements): fixed the initialized array of structures
8215
8216 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8217         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
8218
8219 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8220         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
8221         * support/regression/tests/bug-524697.c: fit mem usage into 8032
8222
8223 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8224         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
8225
8226 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
8227         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
8228
8229 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
8230         * src/mcs51/main.c: removed {bindir}{sep} from aslink
8231
8232 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8233
8234     * in \sdcc\as\mcs51\ changed these files in order to create an
8235     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
8236     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
8237     following files to include the previous two files: aslink.dsp,
8238     Makefile.aslink, Makefile.bcc, and Makefile.in.
8239
8240     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
8241     .adb instead of .cdb
8242
8243 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8244
8245         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
8246         value from option --iram-size.
8247
8248 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8249
8250         * \sdcc\as\mcs51\lklist.c: added boundary check before using
8251         dram[] array.
8252
8253 2002-09-18    <wiml AT hhhh.org>
8254
8255         * SDCClrange.h: exposed setFromRange() and setToRange()
8256         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
8257           packRegsForAccUse() (bug 542397)
8258         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
8259           multiple times and emitting the fetch operations more than once
8260           added aopGetUsesAcc() function to allow binary operators to
8261           fetch their operands in the correct order; made genMinus() emit
8262           compact code for X = LITERAL - Y
8263
8264 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8265         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
8266         sprintf() in line 1267.
8267
8268 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8269         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
8270         like ports.
8271
8272 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8273         Changes to aslink (All the changes are marked with 'JCF'):
8274
8275         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
8276         summary().
8277
8278         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
8279         area BSEG.  Also moves, if possible, the DATA area down into the internal
8280         ram so more space is available.
8281
8282         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
8283         sflag.
8284
8285         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
8286         not bytes.  Function summary() which creates a memory usage summary
8287         file with extension .mem.  Reports of overlaping stack and small stack
8288         size.  If the space for the stack is less than 16 bytes aslink trows a
8289         warning.
8290
8291         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
8292         the 8051.  Option 'y' for memory summary output file.
8293
8294         Changes to sdcc (All the changes are marked with 'JCF'):
8295
8296         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
8297
8298         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
8299         overlaying area for it (uses RegBankUsed[4]).
8300
8301         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
8302         bank zero as used by default.  By default aslink locates the stack
8303         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
8304         the creation of the .mem file.  Delegates the allocation of data area
8305         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
8306         the begining of the stack area to aslink.
8307
8308         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
8309         glue() in SDCCglue.c creates an area for it.
8310
8311 2002-09-03  Borut Razem <borut.razem AT siol.net>
8312         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
8313         sdcc/src/pic/glue.c:
8314         introduced atexit() handler for teporay files removal in case of
8315         errors, assertions, ...
8316
8317 2002-08-29  Borut Razem <borut.razem AT siol.net>
8318         * sdcc/support/cpp2/auto-host_vc_in.h:
8319         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
8320         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
8321         Maybe there is a similar problem with BORLANDC? It should be checked!
8322
8323         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
8324         corrected improper use of assert: the assignment to clr variable was done inside the assert.
8325         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
8326         was not executed, and the compiler (cl) launched a warning:
8327         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
8328
8329 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8330         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
8331
8332 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
8333         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
8334
8335         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8336           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
8337           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
8338           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8339           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
8340           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
8341           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
8342         - added Release configuration in VS projects
8343         - review of compiler an linker options
8344         - VC .exe files are generated in bin_vc directory, not to interfere
8345           with binaries generated from other projects (cygwin, mingw, bcc ...)
8346
8347         * sdcc/src/yacc.dsp: added
8348
8349         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
8350         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
8351         and insert the version number definitions from .version
8352
8353         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
8354
8355         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
8356         added - genarate auto-host.h using auto-host_vc_in.h as template
8357
8358         * sdcc/sdcc_vc.h,
8359         removed from CVS, generated automatically
8360
8361 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
8362         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
8363
8364 2002-08-11  Borut Razem <borut.razem AT siol.net>
8365         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
8366
8367 2002-08-10  Borut Razem <borut.razem AT siol.net>
8368         * src/SDCCmain.c (main):
8369         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
8370         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
8371         The consequence was that some temporary files were not removed.
8372
8373         * src/SDCCglue.c:
8374         unification of code in functions tempfilename() and tempfile():
8375         function tempnam() is defined in Visual Studio 6.0 and .NET
8376
8377         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
8378
8379         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8380           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
8381         - removed compiler command line option /WX: Treats all warnings as errors
8382         - update a list of source files, included into the project
8383
8384         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8385           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
8386         changed project type to Generic Project so that can be correcly converted to VS.NET project
8387
8388         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
8389
8390         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
8391
8392         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
8393
8394         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
8395         added return 0 statements after assert() to make compiler happy
8396
8397         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
8398         added newline in the def file to keep MSC compiler satisfied
8399
8400         * sdcc/src/z80/gen.c:
8401         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
8402           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
8403         - solved MSC error in function aopDump()
8404
8405         * sdcc_vc.h: define PREFIX as "\\sdcc"
8406
8407 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
8408         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
8409
8410 2002-06-22  Scott Dattalo <scott AT dattalo.com>
8411         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
8412         - Rewrote the register banking algorithm.
8413         - Added pCode live-range analysis to registers (for now, only non-used and
8414         singly-used registers optimized away)
8415
8416         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
8417
8418         * 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.
8419
8420 2002-05-10  Scott Dattalo <scott AT dattalo.com>
8421         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
8422
8423 2002-04-22  Michael Hope  <michaelh AT vroom>
8424
8425         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
8426
8427         * configure.in (DD_COPT): Added include support required for gbdk.
8428
8429         * .version: Bumped version number just to increase it.
8430
8431         * src/SDCCmain.c: Added -nostdinc to the default options.
8432
8433 2002-04-15  Michael Hope  <michaelh AT vroom>
8434
8435         * device/lib/z80/printf.c (sprintf): Added.
8436
8437         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
8438
8439         * src/z80/peeph.def: Added transpose redundent load rule.
8440
8441         * src/z80/main.c: Added force callee saves for jaune.
8442
8443         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
8444
8445         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
8446
8447 2002-03-28  Johan Knol  <johan AT balder>
8448
8449         * src/SDCCval.c: fixed bug #532436
8450
8451 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8452         * /src/port.h:
8453         Added "char *Processor" field to the port structure.
8454
8455         * /src/SDCCmain.c:
8456         Added -p option. Allows port dependent processor to be specified.
8457
8458         * all ports:
8459         Initialized the new field char *Processor field to NULL in all ports
8460
8461         * /src/pic/*:
8462         Compiler generated registers for interrupt context saving
8463         were not getting allocated.
8464
8465 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
8466
8467         * /src/SDCCast.c:
8468         Fixed left shift. Will promote the left side of a left shift
8469         if a) left shifting more than size of operand or b) when assigned
8470         to something size > size of left side
8471
8472 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8473         * src/pic/*
8474         tons of changes. Register allocation has been
8475         rewritten. Added customization for the various PICs. Flow
8476         analysis is restructured. ...
8477
8478         * src/pic/device.h:
8479         Added
8480
8481         * src/pic/device.c:
8482         Added. device.c is a PIC port hack to accomodate variations
8483         in PIC devices.
8484
8485 2002-03-13  Michael Hope  <michaelh AT vroom>
8486
8487         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
8488
8489 2002-03-04  johanknol  <johanknol AT manik>
8490
8491         * /src/SDCCval.c: fixed
8492
8493         const unsigned char arr[][2] = { { 0, 1 } };
8494         t18.c:1: error: Initializer element is not constant
8495
8496 2002-03-04  bela  <bela AT manik>
8497
8498         * /device/include/mcs51reg.h:
8499         ds89c420 register definition update
8500
8501 2002-03-03    <johan AT FRIJA>
8502
8503         * support/Util/SDCCerr.c: did something, but don't no why anymore
8504
8505         * support/regression/tests/bug-524691.c: made it a little less shy
8506
8507         * src/SDCCast.c (decorateType): fixed bug #524697
8508
8509         * src/SDCCast.c: made some lineno improvements
8510
8511         * src/SDCCval.c (getNelements): changed warning to error
8512
8513         * src/SDCCglue.c (printIvalArray): changed warning to error
8514
8515         * src/SDCCicode.c: fixed a warning for mingw
8516
8517         * src/SDCCast.c (decorateType): fixed the << promotion for ops
8518
8519         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
8520
8521 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
8522
8523         * src/ds390/peeph.def:
8524         Added some more peephole rules
8525
8526         * src/ds390/gen.c: Various fixes & enhancements
8527
8528         * src/SDCClrange.c, src/SDCClrange.h:
8529         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
8530
8531         * src/ds390/ralloc.c:
8532         various fixes & enhancements (ds390) specific
8533
8534         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
8535         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
8536         from rallocs.
8537
8538         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
8539
8540 2002-03-02    <johan AT FRIJA>
8541
8542         * src/SDCCast.c (decorateType): fixed bug #524708
8543
8544         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
8545
8546         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
8547
8548 2002-03-01  Michael Hope  <michaelh AT vroom>
8549
8550         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
8551
8552         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
8553
8554 2002-03-01    <johan AT FRIJA>
8555
8556         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
8557
8558         * src/SDCCast.c (decorateType): fixed bug #524209
8559
8560         * src/SDCCval.c (valNot): fixed bug #524195
8561
8562 2002-02-26    <johan AT balder>
8563
8564         * src/xa51/gen.c: fixed a warning
8565
8566         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
8567
8568         * src/SDCCast.c (decorateType): fixed bug #522534
8569
8570 2002-02-23    <johan AT balder>
8571
8572         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
8573
8574 2002-02-22    <johan AT balder>
8575
8576         * src/SDCCast.c: fixed bug #514865
8577
8578         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
8579
8580 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
8581
8582         * sdcc/src/SDCCloop.c:
8583         Previous fix was not good. basic blocks that have "break" or "return" are
8584         not really partof a loop , but live ranges used in these blocks should
8585         be live thru the entire loop, so set partOfLoop but don't add them to
8586         loop region
8587
8588 2002-02-21    <johan AT FRIJA>
8589
8590         * src/SDCCcse.c: fixed bug #514308
8591
8592 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
8593
8594         * src/SDCCloop.c:
8595         Fixed BUG #519583. If a conditional block ended in a return/break
8596         statement inside a loop, it was not being considered part of the loop.
8597
8598         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
8599
8600 2002-02-10  Karl Bongers <karl AT turbobit.com>
8601
8602         * debugger/*:
8603         Fixed up SDCDB debugger somewhat.  Updated debugger/README
8604         with lots of comments and notes.
8605
8606         * device/examples/test2.c:
8607         Fix bug, "red" variable not being initialized(compiler complained).
8608
8609         * device/examples/Makefile, examples/test3.c:
8610         Add Makefile in device/examples folder, compiles test3.c
8611         for use as a multiple module SDCDB test case.
8612
8613         * sim/ucsim/cmd.src/cmdset.cc:
8614         Took out debug printfs in ucsim "next" command.
8615
8616         * sim/ucsim/xa.src:
8617         Karl and Johan start ucsim XA support.  Most dissassembly working,
8618         about 75% emulation done(plenty of work remaining).
8619
8620         * sim/ucsim/z80.src:
8621         Add Z80 support to ucsim, add test-ucz80 regression test,
8622         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
8623         Notice z80 compiler fails on examples/test3.c/crc code.
8624
8625 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
8626
8627         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
8628         Added support for --parms-in-bank1
8629
8630         * src/ds390/peeph.def:
8631         added a few more peephole optimzations
8632
8633         * src/ds390/main.c:
8634         1) added __builtin_inp & __builtin_outp used to read in data of given length
8635            from a memory mapped port
8636         2) added __builtin_memcmp
8637         3) added __builtin_swapw swap bytes of a short
8638
8639         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
8640         1) handle multiple send & receives from register bank1
8641         2) ralloc can now allocate DPTR1 to some liveRanges
8642
8643         * src/SDCCsymt.c, src/SDCCsymt.h:
8644         changes to handle multiple sends & receives
8645
8646         * src/SDCCptropt.h:
8647         added some pointer arithmetic optimization
8648
8649         * src/SDCCptropt.c:
8650         added some pointer arithmetic optimizations but not stable yet so not
8651         called from anywhere (will get this working shortly)
8652
8653         * src/SDCCopt.c: fixed for multiple sends & receives
8654
8655         * src/SDCCmain.c:
8656         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
8657         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
8658            set preprocessor defines (depending on options)
8659
8660         * src/SDCCicode.c, src/SDCCicode.h:
8661         changes made to handle multiple sends & receives
8662
8663         * src/SDCCglobl.h:
8664         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
8665
8666         * src/SDCCcse.c, src/SDCCcse.h:
8667         added function findbackward def (to be used in upcoming optimization)
8668
8669         * src/SDCCcflow.c, src/SDCCcflow.h:
8670         added function returnAtEnd - to determine if a basic block terminates with
8671         a RETURN iCode
8672
8673         * src/SDCCast.c, src/SDCCast.h:
8674         added option parms-in-bank1
8675
8676         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
8677         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
8678         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
8679         adjusted for --parms-in-bank1 option
8680
8681         * device/include/string.h:
8682         donot redefine "reentrant" keyword
8683
8684         * device/include/ds80c390.h: Added some more SFRs
8685
8686 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
8687
8688         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
8689
8690 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
8691
8692         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
8693
8694 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
8695
8696         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
8697
8698 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
8699
8700         * Added --xram-movc option
8701
8702 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
8703
8704         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
8705
8706 2002-01-11  Johan Knol
8707
8708         * Added math lib of Jesus Calvino-Fraga
8709
8710 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
8711
8712         * src/SDCCmain.c (processFile): fix processing of ../../src.c
8713         * support/regression/Makefile: new target test-mcs51-stack-auto
8714         * support/regression/ports/mcs51-stack-auto/spec.mk: added
8715
8716 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
8717
8718         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
8719
8720 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
8721
8722         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
8723
8724 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
8725
8726         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
8727
8728         * src/SDCCglue.h: add definition for printIvalChar()
8729
8730 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
8731
8732         * src/SDCCast.c: fix #498138 by Johan
8733
8734         * src/SDCCglue.c: fix #498138 by Johan
8735
8736 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
8737
8738         * support/regression/Makefile: fix clean
8739
8740         * support/regression/ports/ds390/support.c: fix transmission of last character
8741
8742 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
8743
8744         * /sdcc/src/ds390/gen.c:
8745         a) improved computing address of stack variable
8746         b) took out some #if 0 code
8747         c) improved parmBytes adjustment
8748         d) improved genPlusIncr & genMinusIncr
8749         e) genCmp could generate bad code (when left assigned to DPTR)
8750         f) Fixed bug in hasInc
8751
8752         * /sdcc/src/ds390/ralloc.c:
8753         a) packRegsForSupport could mess up live information (Fixed)
8754         b) packRegsDPTRuse could be incorrect for left & right shift
8755
8756         * /sdcc/src/mcs51/ralloc.c:
8757         packRegsForSupport could mess up the live information (Fixed)
8758
8759         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
8760
8761         * /sdcc/src/SDCCast.c:
8762         can reverse a loop even if function call is present as long
8763         as the loop control variable is local & is not passed as parameter
8764
8765 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
8766
8767         * /sdcc/ChangeLog: *** empty log message ***
8768
8769         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
8770         More builtin function additions for TININative
8771
8772         * /sdcc/src/ds390/ralloc.c:
8773         Had broken the regression testsuite
8774
8775         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
8776
8777         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
8778         Added funcattr hasStackParms will be set for reentrant functions when there
8779         are paramteres on the stack, this helps in minimizing frame pointer generation
8780         typeFromStr can handle function pointers now
8781
8782         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
8783         *** empty log message ***
8784
8785 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
8786
8787         * /src/ds390/gen.c, /src/ds390/main.c:
8788         More builtin function additions for TININative
8789
8790         * /src/ds390/ralloc.c:
8791         Had broken the regression testsuite
8792
8793         * /src/SDCCast.c: Fixed a bug in dumptree
8794
8795         * /src/SDCCsymt.c, /src/SDCCsymt.h:
8796         Added funcattr hasStackParms will be set for reentrant functions when there
8797         are paramteres on the stack, this helps in minimizing frame pointer generation
8798         typeFromStr can handle function pointers now
8799
8800         * /doc/builtins.txt, /doc/TININative.txt:
8801         *** empty log message ***
8802
8803
8804 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
8805
8806         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
8807         ALPHA version for -mTININative
8808
8809         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
8810         updated to reflect changes in the port structure
8811
8812         * /src/port.h:
8813         added function do_assemble (similar to do_link) if non-null this function
8814         will be called to do assembly (-mTININative) requires a multi command
8815         assembly
8816         added function genAssemblerEnd will be called to generate assembler Epilogue
8817
8818         * /src/SDCCsymt.c:
8819         added _JavaNative to debug info printing
8820
8821         * /src/SDCCmain.c: added option --tini-libid
8822         added port->do_assemble function (-mTININative) has a multi command assemble
8823
8824         * /src/SDCCglue.c: Disabled "constExpr" check
8825         added port->genAssemblerEnd function
8826
8827         * /src/SDCCglobl.h: Added option --tini-libid value
8828
8829         * /src/SDCCast.h:
8830         tookout optimizeCompare from the header (has no external references)
8831
8832         * /src/SDCCast.c: made one more function "static"
8833
8834 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
8835
8836         * src/z80/mappings.i: Added z80asm support.
8837
8838         * src/z80/main.c: Added z80asm support on --asm=z80asm
8839
8840         * src/z80/gen.c: Fixed asm portability issues.
8841
8842         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
8843
8844         * src/SDCCglue.c (printExterns): Added global/extern split.
8845
8846 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
8847
8848         * support/regression/Makefile: added test for mcs51 model large
8849
8850         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
8851
8852         * support/regression/ports/gbz80/spec.mk: added -mgbz80
8853
8854 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
8855
8856         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
8857
8858 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
8859
8860         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
8861
8862         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
8863
8864 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
8865
8866         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
8867
8868         * support/regression/tests/simplefloat.c: Port to mcs51.
8869
8870 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
8871         * support/regression/tests/bug-485362.c: Added.
8872
8873         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
8874
8875         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
8876
8877         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
8878
8879         * src/z80/gen.c (aopDump): Added a dump function.
8880
8881 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
8882         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
8883
8884         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
8885
8886         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
8887
8888         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
8889
8890         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
8891
8892         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
8893
8894         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
8895
8896         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
8897
8898         * support/regression/ports/ds390/support.c: Use tinibios.
8899
8900         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
8901
8902 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
8903
8904         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
8905         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
8906
8907         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
8908
8909         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
8910
8911 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
8912
8913         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
8914
8915         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
8916         (packRegsForIYUse): Created and optimised.
8917
8918 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
8919
8920         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
8921 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
8922
8923         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
8924
8925         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
8926
8927         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
8928
8929 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
8930
8931         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
8932
8933         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
8934
8935 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
8936
8937         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
8938
8939         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
8940
8941         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
8942
8943 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
8944
8945         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
8946         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
8947         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
8948
8949         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
8950
8951         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
8952         (genNotFloat): Added.
8953         (genUminusFloat): Added.
8954
8955         * device/lib/z80/Makefile: Added floating pt stubs.
8956
8957         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
8958
8959         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
8960
8961         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
8962
8963 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
8964
8965         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
8966
8967         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
8968
8969         * sdcc/support/regression/Makefile: Add port ds390.
8970
8971         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
8972
8973         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
8974
8975         * sdcc/support/regression/ports/ds390/spec.mk: Added.
8976
8977         * sdcc/support/regression/ports/ds390/support.c: Added.
8978
8979         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
8980
8981         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
8982
8983         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
8984
8985 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
8986
8987         * device/include/malloc.h: Added z80 and gbz80 support.
8988
8989         * device/lib/gbz80/heap.s: Added.
8990
8991         * device/lib/z80/heap.s: Added.
8992
8993         * device/lib/malloc.c: Added z80 and gbz80 support.
8994
8995         * support/regression/tests/malloc.c (testMalloc): Added.
8996
8997         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
8998
8999         * support/regression/tests/bug-478094.c: Added.
9000
9001         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
9002
9003 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
9004
9005         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
9006
9007         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
9008
9009         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
9010
9011         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
9012
9013         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
9014
9015 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9016
9017         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
9018
9019 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
9020
9021         * support/regression/tests/bug-477927.c: Added.
9022
9023         * src/z80/peeph.def: Added minor rules.
9024
9025         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
9026
9027         * src/z80/peeph.def: Added jump optimisation modification.
9028
9029 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
9030
9031         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
9032
9033 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
9034
9035         * support/regression/tests/funptrs.c: Added.
9036
9037 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
9038
9039         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
9040
9041 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
9042
9043         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
9044
9045         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
9046
9047         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
9048         (movLeft2ResultLong): Created.
9049
9050         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
9051         (joinPushes): Added.  Joins two char pushes into a word push.
9052
9053 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
9054
9055         * support/cpp2/Makefile.in (install): Added creation of dest dir.
9056
9057         * support/makebin/Makefile (install): Added creation of dest dir.
9058
9059 2001-10-24 Karl Bongers <karl AT turbobit.com>
9060
9061         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
9062
9063 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
9064
9065         * src/z80/ralloc.c: Turned off faulty pack for one use.
9066
9067         * src/z80/peeph-gbz80.def: Removed redundent restart options.
9068
9069         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
9070
9071 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
9072
9073         * support/regression/Makefile: Improved clean
9074
9075         * support/regression/ports/gbz80/spec.mk: Added clean
9076
9077         * support/regression/ports/host/spec.mk: Added clean
9078
9079         * support/regression/ports/z80/spec.mk: Added clean
9080
9081         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
9082
9083         * support/regression/ports/mcs51/timeout.c: little improvements
9084
9085 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
9086
9087         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
9088
9089         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
9090
9091         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
9092
9093 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
9094
9095         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
9096
9097         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
9098
9099 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
9100         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
9101
9102         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
9103
9104         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
9105
9106         * src/mcs51/main.c (_linkCmd): Added bin path to command.
9107
9108         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
9109
9110         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
9111
9112         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
9113
9114         * support/regression/tests/longor.c: Added.
9115
9116 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
9117
9118         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
9119
9120         * as/mcs51/aslink.h: define PATH_MAX
9121
9122         * as/mcs51/asm.h: define PATH_MAX
9123
9124         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
9125
9126         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
9127
9128         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
9129
9130         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
9131
9132         * src/SDCCglobl.h: define PATH_MAX
9133
9134         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
9135
9136         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
9137
9138 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
9139
9140         * src/z80/gen.c (gencjneshort): Fixed
9141
9142         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
9143
9144 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
9145
9146         * support/regression/tests/bug-469671.c: Added.
9147
9148         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
9149
9150 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
9151
9152         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
9153
9154         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
9155
9156 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
9157
9158         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
9159
9160         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
9161
9162         * src/device/lib/_mullong.c : removed hint: nooverlay bug
9163
9164         * src/device/lib/_divuint.c : removed hint: nooverlay bug
9165
9166         * src/device/lib/_divulong.c: removed hint: nooverlay bug
9167
9168         * src/device/lib/_moduint.c : removed hint: nooverlay bug
9169
9170         * src/device/lib/_modulong.c: removed hint: nooverlay bug
9171
9172 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
9173
9174         * 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.
9175
9176         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
9177
9178         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
9179
9180 2001-10-07    <johan AT FRIJA>
9181
9182         * device/lib/gets.c (gets): fixed the return value.
9183
9184 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
9185         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
9186
9187         * 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.
9188
9189         * 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.
9190
9191         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
9192
9193         * src/pic/gen.c: Removed Safe_strdup.
9194
9195         * configure.in: Added option to enable libgc support.
9196
9197         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
9198         (bitVectUnion): Optimised.
9199         (bitVectIntersect): Optimised.
9200         (bitVectBitsInCommon): Optimised.
9201         (bitVectCplAnd): Optimised.
9202
9203         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
9204
9205 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9206
9207         * src/SDCCmain.c: distinguish between assembler debug and plain options
9208
9209         * src/avr/main.c:   remove standard assembler options
9210
9211         * src/ds390/main.c: remove standard assembler options
9212
9213         * src/mcs51/main.c: remove standard assembler options
9214
9215         * src/port.h: removed "PENDING" comment
9216
9217 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9218
9219         * src/device/lib/_mulint.c  : new, with assember functions
9220
9221         * src/device/lib/_mullong.c : new, with assember functions
9222
9223         * src/device/lib/_divuint.c : with assember functions
9224
9225         * src/device/lib/_divsint.c : with assember functions
9226
9227         * src/device/lib/_divulong.c: with assember functions
9228
9229         * src/device/lib/_divslong.c: with assember functions
9230
9231         * src/device/lib/_moduint.c : with assember functions
9232
9233         * src/device/lib/_modsint.c : with assember functions
9234
9235         * src/device/lib/_modulong.c: with assember functions
9236
9237         * src/device/lib/_modslong.c: with assember functions
9238
9239         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
9240
9241         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
9242
9243         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
9244                                       replaced _mululong.c and _mulslong.c by _mullong.c
9245
9246 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9247
9248         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
9249
9250 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9251
9252         * src/SDCCglue.c: test, if win32api is available for MINGW
9253
9254 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9255
9256         * src/SDCCsymt.c: no more _modifier in printTypeChain()
9257         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
9258         * support/regression/ports/gbz80/spec.mk: removed GENERIC
9259         * support/regression/ports/host/spec.mk: removed GENERIC
9260         * support/regression/ports/mcs51/spec.mk: removed GENERIC
9261         * support/regression/ports/z80/spec.mk: removed GENERIC
9262
9263 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
9264
9265         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
9266
9267         * support/regression/tests/bug-467035.c: Created.
9268
9269 2001-10-01    <johan AT FRIJA>
9270
9271         * src/SDCC.y: fixed bug #466586 part 1
9272
9273 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
9274
9275         * SDCCicode.c: z80 has no generic pointers
9276         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
9277
9278 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
9279
9280         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
9281
9282 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
9283
9284         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
9285
9286         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
9287
9288 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
9289
9290         * configure.in: Fixed up so that ucsim is only configured once.
9291
9292         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
9293
9294         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
9295         (getPathDifference): As above.
9296
9297         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
9298
9299         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
9300
9301 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
9302         * .version: Updated to 2.3.1
9303
9304         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
9305         Added copyright header.
9306
9307         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
9308         (assemble): Added support for macro based assembler commands.
9309         (linkEdit): Added support for macro based linker commands.
9310         (preProcess): Changed the pre-processor to use macros.
9311         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
9312         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
9313
9314         * device/lib/z80/crt0.s: Added module name for debugging.
9315
9316 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
9317
9318         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9319
9320         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
9321
9322         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
9323
9324         * src/Makefile.in: Added SDCCmacro and SDCCutil
9325
9326 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
9327
9328         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9329
9330 2001-09-16    <johan AT FRIJA>
9331
9332         * 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.
9333
9334 2001-09-15    <johan AT FRIJA>
9335
9336         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
9337         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
9338
9339 2001-09-11    <johan AT FRIJA>
9340
9341         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
9342
9343 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
9344
9345         * support/regression/tests/bug-460444.c: Added test case.
9346
9347         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
9348         (genCast): Added justification for all of the asserts.
9349
9350 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
9351
9352         * support/regression/support.c: _xdata replaced by xdata
9353
9354         * support/regression/spec.mk: removed _generic
9355
9356 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
9357
9358         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
9359
9360         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
9361         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
9362
9363         * src/z80/peeph.def: Added a rule to optimise shift then compare.
9364
9365         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
9366
9367         * support/regression/tests/bug-460010.c: Added test case.
9368
9369         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
9370
9371 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
9372
9373         * support/regression/Makefile: inter-port-clean adjusted for mcs51
9374
9375         * support/regression/testfwk.c: removed workaround for bug #436344
9376
9377         * support/regression/tests/bp.c: use less memory with mcs51
9378
9379         * support/regression/tests/bug-441448.c: use less memory
9380
9381         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
9382
9383         * support/regression/collate-results.py: typo
9384
9385 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
9386
9387         * support/regression/tests/fetchoverlap.c: Added new test case.
9388
9389         * support/regression/tests/bp.c: Added new test case.
9390
9391         * support/regression/tests/bug-448984.c: Added new test case.
9392
9393         * support/regression/tests/pow2shifts.c: Added new test case.
9394
9395         * src/z80/gen.c: Turned off the noise it normally generates for the release.
9396         (genlshTwo): Fixed right shift for count > 8.
9397
9398         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
9399
9400 2001-09-08    <johan AT FRIJA>
9401
9402         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
9403
9404 2001-09-07    <johan AT FRIJA>
9405
9406         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
9407
9408         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
9409
9410 2001-09-06    <johan AT FRIJA>
9411
9412         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
9413         * bernhard noted me at this: "() equals to (void)" (1.38)
9414
9415 2001-09-05    <johan AT FRIJA>
9416
9417         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
9418
9419 2001-09-04    <johan AT FRIJA>
9420
9421         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
9422
9423
9424 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
9425
9426         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
9427
9428 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
9429
9430         * link/z80/aslink.h: Fixed path for PATH_MAX
9431
9432 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
9433
9434         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
9435
9436         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
9437
9438         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
9439
9440         * 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.
9441
9442 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
9443
9444         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
9445         (genCmp): Fixed up genCmp for the GB with longs.
9446
9447         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
9448
9449         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
9450
9451         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
9452
9453         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
9454
9455 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
9456
9457         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
9458
9459 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
9460
9461         * 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.
9462
9463         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
9464
9465 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
9466
9467         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
9468
9469         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
9470
9471 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
9472
9473   * sim/ucsim/configure:    little improvement of Cygwin-detection
9474   * sim/ucsim/configure.in: little improvement of Cygwin-detection
9475   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
9476   * support/regression/tests/bug-221100.c: small changes for mcs51
9477   * support/regression/tests/bug-221168.c: small changes for mcs51
9478   * support/regression/tests/bug-227710.c: small changes for mcs51
9479   * support/regression/tests/staticinit.c: small changes for mcs51
9480   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
9481   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9482   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9483
9484 $Revision$